gdb/mi: add a '--force-condition' flag to the '-break-insert' cmd
[deliverable/binutils-gdb.git] / gdb / doc / gdb.texinfo
CommitLineData
c906108c 1\input texinfo @c -*-texinfo-*-
3666a048 2@c Copyright (C) 1988--2021 Free Software Foundation, Inc.
c906108c 3@c
5d161b24 4@c %**start of header
c906108c
SS
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
43662968 9@c man begin INCLUDE
c906108c 10@include gdb-cfg.texi
43662968 11@c man end
c906108c 12@c
c906108c 13@settitle Debugging with @value{GDBN}
c906108c
SS
14@setchapternewpage odd
15@c %**end of header
16
17@iftex
18@c @smallbook
19@c @cropmarks
20@end iftex
21
22@finalout
00595b5e
EZ
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
c906108c 29
41afff9a 30@c readline appendices use @vindex, @findex and @ftable,
48e934c6 31@c annotate.texi and gdbmi use @findex.
00595b5e 32@syncodeindex vr fn
c906108c
SS
33
34@c !!set GDB manual's edition---not the same as GDB version!
9fe8321b 35@c This is updated by GNU Press.
26829f2b 36@set EDITION Tenth
c906108c 37
87885426
FN
38@c !!set GDB edit command default editor
39@set EDITOR /bin/ex
c906108c 40
6c0e9fb3 41@c THIS MANUAL REQUIRES TEXINFO 4.0 OR LATER.
c906108c 42
c906108c 43@c This is a dir.info fragment to support semi-automated addition of
6d2ebf8b 44@c manuals to an info tree.
03727ca6 45@dircategory Software development
96a2c332 46@direntry
03727ca6 47* Gdb: (gdb). The GNU debugger.
6cb999f8 48* gdbserver: (gdb) Server. The GNU debugging server.
96a2c332
SS
49@end direntry
50
a67ec3f4 51@copying
43662968 52@c man begin COPYRIGHT
b5b5650a 53Copyright @copyright{} 1988-2021 Free Software Foundation, Inc.
c906108c 54
e9c75b65 55Permission is granted to copy, distribute and/or modify this document
4f5d9f07 56under the terms of the GNU Free Documentation License, Version 1.3 or
e9c75b65 57any later version published by the Free Software Foundation; with the
959acfd1
EZ
58Invariant Sections being ``Free Software'' and ``Free Software Needs
59Free Documentation'', with the Front-Cover Texts being ``A GNU Manual,''
60and with the Back-Cover Texts as in (a) below.
c906108c 61
b8533aec
DJ
62(a) The FSF's Back-Cover Text is: ``You are free to copy and modify
63this GNU Manual. Buying copies from GNU Press supports the FSF in
64developing GNU and promoting software freedom.''
43662968 65@c man end
a67ec3f4
JM
66@end copying
67
68@ifnottex
69This file documents the @sc{gnu} debugger @value{GDBN}.
70
71This 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
76Version @value{GDBVN}.
77
78@insertcopying
79@end ifnottex
c906108c
SS
80
81@titlepage
82@title Debugging with @value{GDBN}
83@subtitle The @sc{gnu} Source-Level Debugger
c906108c 84@sp 1
c906108c 85@subtitle @value{EDITION} Edition, for @value{GDBN} version @value{GDBVN}
c16158bc
JM
86@ifset VERSION_PACKAGE
87@sp 1
88@subtitle @value{VERSION_PACKAGE}
89@end ifset
9e9c5ae7 90@author Richard Stallman, Roland Pesch, Stan Shebs, et al.
c906108c 91@page
c906108c
SS
92@tex
93{\parskip=0pt
c16158bc 94\hfill (Send bugs and comments on @value{GDBN} to @value{BUGURL}.)\par
c906108c
SS
95\hfill {\it Debugging with @value{GDBN}}\par
96\hfill \TeX{}info \texinfoversion\par
97}
98@end tex
53a5351d 99
c906108c 100@vskip 0pt plus 1filll
c906108c 101Published by the Free Software Foundation @*
c02a867d
EZ
10251 Franklin Street, Fifth Floor,
103Boston, MA 02110-1301, USA@*
26829f2b 104ISBN 978-0-9831592-3-0 @*
e9c75b65 105
a67ec3f4 106@insertcopying
c906108c
SS
107@end titlepage
108@page
109
6c0e9fb3 110@ifnottex
c5a6a07f 111@node Top, Summary
6d2ebf8b 112
c906108c
SS
113@top Debugging with @value{GDBN}
114
115This file describes @value{GDBN}, the @sc{gnu} symbolic debugger.
116
c16158bc
JM
117This is the @value{EDITION} Edition, for @value{GDBN}
118@ifset VERSION_PACKAGE
119@value{VERSION_PACKAGE}
120@end ifset
121Version @value{GDBVN}.
c906108c 122
b5b5650a 123Copyright (C) 1988-2021 Free Software Foundation, Inc.
6d2ebf8b 124
3fb6a982
JB
125This edition of the GDB manual is dedicated to the memory of Fred
126Fish. Fred was a long-standing contributor to GDB and to Free
127software in general. We will miss him.
128
6d2ebf8b
SS
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
bacec72f 137* Reverse Execution:: Running programs backward
a2311334 138* Process Record and Replay:: Recording inferior's execution and replaying it
6d2ebf8b
SS
139* Stack:: Examining the stack
140* Source:: Examining source files
141* Data:: Examining data
edb3359d 142* Optimized Code:: Debugging optimized code
e2e0bcd1 143* Macros:: Preprocessor Macros
b37052ae 144* Tracepoints:: Debugging remote targets non-intrusively
df0cd8c5 145* Overlays:: Debugging programs that use overlays
6d2ebf8b
SS
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
6b2f586d 153* Remote Debugging:: Debugging remote programs
6d2ebf8b
SS
154* Configurations:: Configuration-specific information
155* Controlling GDB:: Controlling @value{GDBN}
d57a3c85 156* Extending GDB:: Extending @value{GDBN}
21c294e6 157* Interpreters:: Command Interpreters
c8f4133a 158* TUI:: @value{GDBN} Text User Interface
6d2ebf8b 159* Emacs:: Using @value{GDBN} under @sc{gnu} Emacs
7162c0ca 160* GDB/MI:: @value{GDBN}'s Machine Interface.
c8f4133a 161* Annotations:: @value{GDBN}'s annotation interface.
4efc6507 162* JIT Interface:: Using the JIT debugging interface.
d1feda86 163* In-Process Agent:: In-Process Agent
6d2ebf8b
SS
164
165* GDB Bugs:: Reporting bugs in @value{GDBN}
6d2ebf8b 166
39037522
TT
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
6d2ebf8b
SS
172* Command Line Editing:: Command Line Editing
173* Using History Interactively:: Using History Interactively
39037522 174@end ifclear
4ceed123 175* In Memoriam:: In Memoriam
0869d01b 176* Formatting Documentation:: How to format and print @value{GDBN} documentation
6d2ebf8b 177* Installing GDB:: Installing GDB
eb12ee30 178* Maintenance Commands:: Maintenance Commands
e0ce93ac 179* Remote Protocol:: GDB Remote Serial Protocol
f418dd93 180* Agent Expressions:: The GDB Agent Expression Mechanism
23181151
DJ
181* Target Descriptions:: How targets can describe themselves to
182 @value{GDBN}
07e059b5
VP
183* Operating System Information:: Getting additional information from
184 the operating system
00bf0b85 185* Trace File Format:: GDB trace file format
90476074 186* Index Section Format:: .gdb_index section format
43662968 187* Man Pages:: Manual pages
aab4e0ec
AC
188* Copying:: GNU General Public License says
189 how you can copy and share GDB
6826cf00 190* GNU Free Documentation License:: The license for this documentation
00595b5e
EZ
191* Concept Index:: Index of @value{GDBN} concepts
192* Command and Variable Index:: Index of @value{GDBN} commands, variables,
193 functions, and Python data types
6d2ebf8b
SS
194@end menu
195
6c0e9fb3 196@end ifnottex
c906108c 197
449f3b6c 198@contents
449f3b6c 199
6d2ebf8b 200@node Summary
c906108c
SS
201@unnumbered Summary of @value{GDBN}
202
203The purpose of a debugger such as @value{GDBN} is to allow you to see what is
204going on ``inside'' another program while it executes---or what another
205program was doing at the moment it crashed.
206
207@value{GDBN} can do four main kinds of things (plus other things in support of
208these) to help you catch bugs in the act:
209
210@itemize @bullet
211@item
212Start your program, specifying anything that might affect its behavior.
213
214@item
215Make your program stop on specified conditions.
216
217@item
218Examine what has happened, when your program has stopped.
219
220@item
221Change things in your program, so you can experiment with correcting the
222effects of one bug and go on to learn about another.
223@end itemize
224
49efadf5 225You can use @value{GDBN} to debug programs written in C and C@t{++}.
79a6e687 226For more information, see @ref{Supported Languages,,Supported Languages}.
c906108c
SS
227For more information, see @ref{C,,C and C++}.
228
6aecb9c2
JB
229Support for D is partial. For information on D, see
230@ref{D,,D}.
231
cce74817 232@cindex Modula-2
e632838e
AC
233Support for Modula-2 is partial. For information on Modula-2, see
234@ref{Modula-2,,Modula-2}.
c906108c 235
f4b8a18d
KW
236Support for OpenCL C is partial. For information on OpenCL C, see
237@ref{OpenCL C,,OpenCL C}.
238
cce74817
JM
239@cindex Pascal
240Debugging Pascal programs which use sets, subranges, file variables, or
241nested functions does not currently work. @value{GDBN} does not support
242entering expressions, printing values, or similar features using Pascal
243syntax.
c906108c 244
c906108c
SS
245@cindex Fortran
246@value{GDBN} can be used to debug programs written in Fortran, although
53a5351d 247it may be necessary to refer to some variables with a trailing
cce74817 248underscore.
c906108c 249
b37303ee
AF
250@value{GDBN} can be used to debug programs written in Objective-C,
251using either the Apple/NeXT or the GNU Objective-C runtime.
252
c906108c
SS
253@menu
254* Free Software:: Freely redistributable software
984359d2 255* Free Documentation:: Free Software Needs Free Documentation
c906108c
SS
256* Contributors:: Contributors to GDB
257@end menu
258
6d2ebf8b 259@node Free Software
79a6e687 260@unnumberedsec Free Software
c906108c 261
5d161b24 262@value{GDBN} is @dfn{free software}, protected by the @sc{gnu}
c906108c
SS
263General Public License
264(GPL). The GPL gives you the freedom to copy or adapt a licensed
265program---but every person getting a copy also gets with it the
266freedom to modify that copy (which means that they must get access to
267the source code), and the freedom to distribute further copies.
268Typical software companies use copyrights to limit your freedoms; the
269Free Software Foundation uses the GPL to preserve these freedoms.
270
271Fundamentally, the General Public License is a license which says that
272you have these freedoms and that you cannot take these freedoms away
273from anyone else.
274
984359d2 275@node Free Documentation
2666264b 276@unnumberedsec Free Software Needs Free Documentation
959acfd1
EZ
277
278The biggest deficiency in the free software community today is not in
279the software---it is the lack of good free documentation that we can
280include with the free software. Many of our most important
281programs do not come with free reference manuals and free introductory
282texts. Documentation is an essential part of any software package;
283when an important free software package does not come with a free
284manual and a free tutorial, that is a major gap. We have many such
285gaps today.
286
287Consider Perl, for instance. The tutorial manuals that people
288normally use are non-free. How did this come about? Because the
289authors of those manuals published them with restrictive terms---no
290copying, no modification, source files not available---which exclude
291them from the free software world.
292
293That wasn't the first time this sort of thing happened, and it was far
294from the last. Many times we have heard a GNU user eagerly describe a
295manual that he is writing, his intended contribution to the community,
296only to learn that he had ruined everything by signing a publication
297contract to make it non-free.
298
299Free documentation, like free software, is a matter of freedom, not
300price. The problem with the non-free manual is not that publishers
301charge a price for printed copies---that in itself is fine. (The Free
302Software Foundation sells printed copies of manuals, too.) The
303problem is the restrictions on the use of the manual. Free manuals
304are available in source code form, and give you permission to copy and
305modify. Non-free manuals do not allow this.
306
307The criteria of freedom for a free manual are roughly the same as for
308free software. Redistribution (including the normal kinds of
309commercial redistribution) must be permitted, so that the manual can
310accompany every copy of the program, both on-line and on paper.
311
312Permission for modification of the technical content is crucial too.
313When people modify the software, adding or changing features, if they
314are conscientious they will change the manual too---so they can
315provide accurate and clear documentation for the modified program. A
316manual that leaves you no choice but to write a new manual to document
317a changed version of the program is not really available to our
318community.
319
320Some kinds of limits on the way modification is handled are
321acceptable. For example, requirements to preserve the original
322author's copyright notice, the distribution terms, or the list of
323authors, are ok. It is also no problem to require modified versions
324to include notice that they were modified. Even entire sections that
325may not be deleted or changed are acceptable, as long as they deal
326with nontechnical topics (like this one). These kinds of restrictions
327are acceptable because they don't obstruct the community's normal use
328of the manual.
329
330However, it must be possible to modify all the @emph{technical}
331content of the manual, and then distribute the result in all the usual
332media, through all the usual channels. Otherwise, the restrictions
333obstruct the use of the manual, it is not free, and we need another
334manual to replace it.
335
336Please spread the word about this issue. Our community continues to
337lose manuals to proprietary publishing. If we spread the word that
338free software needs free reference manuals and free tutorials, perhaps
339the next person who wants to contribute by writing documentation will
340realize, before it is too late, that only free manuals contribute to
341the free software community.
342
343If you are writing documentation, please insist on publishing it under
344the GNU Free Documentation License or another free documentation
345license. Remember that this decision requires your approval---you
346don't have to let the publisher decide. Some commercial publishers
347will use a free license if you insist, but they will not propose the
348option; it is up to you to raise the issue and say firmly that this is
349what you want. If the publisher you are dealing with refuses, please
350try other publishers. If you're not sure whether a proposed license
42584a72 351is free, write to @email{licensing@@gnu.org}.
959acfd1
EZ
352
353You can encourage commercial publishers to sell more free, copylefted
354manuals and tutorials by buying them, and particularly by buying
355copies from the publishers that paid for their writing or for major
356improvements. Meanwhile, try to avoid buying non-free documentation
357at all. Check the distribution terms of a manual before you buy it,
358and insist that whoever seeks your business must respect your freedom.
72c9928d
EZ
359Check the history of the book, and try to reward the publishers that
360have paid or pay the authors to work on it.
959acfd1
EZ
361
362The Free Software Foundation maintains a list of free documentation
363published by other publishers, at
364@url{http://www.fsf.org/doc/other-free-books.html}.
365
6d2ebf8b 366@node Contributors
96a2c332
SS
367@unnumberedsec Contributors to @value{GDBN}
368
369Richard Stallman was the original author of @value{GDBN}, and of many
370other @sc{gnu} programs. Many others have contributed to its
371development. This section attempts to credit major contributors. One
372of the virtues of free software is that everyone is free to contribute
373to it; with regret, we cannot actually acknowledge everyone here. The
374file @file{ChangeLog} in the @value{GDBN} distribution approximates a
c906108c
SS
375blow-by-blow account.
376
377Changes much prior to version 2.0 are lost in the mists of time.
378
379@quotation
380@emph{Plea:} Additions to this section are particularly welcome. If you
381or your friends (or enemies, to be evenhanded) have been unfairly
382omitted from this list, we would like to add your names!
383@end quotation
384
385So that they may not regard their many labors as thankless, we
386particularly thank those who shepherded @value{GDBN} through major
387releases:
7ba3cf9c 388Andrew Cagney (releases 6.3, 6.2, 6.1, 6.0, 5.3, 5.2, 5.1 and 5.0);
c906108c
SS
389Jim Blandy (release 4.18);
390Jason Molenda (release 4.17);
391Stan Shebs (release 4.14);
392Fred Fish (releases 4.16, 4.15, 4.13, 4.12, 4.11, 4.10, and 4.9);
393Stu Grossman and John Gilmore (releases 4.8, 4.7, 4.6, 4.5, and 4.4);
394John Gilmore (releases 4.3, 4.2, 4.1, 4.0, and 3.9);
395Jim Kingdon (releases 3.5, 3.4, and 3.3);
396and Randy Smith (releases 3.2, 3.1, and 3.0).
397
398Richard Stallman, assisted at various times by Peter TerMaat, Chris
399Hanson, and Richard Mlynarik, handled releases through 2.8.
400
b37052ae
EZ
401Michael Tiemann is the author of most of the @sc{gnu} C@t{++} support
402in @value{GDBN}, with significant additional contributions from Per
403Bothner and Daniel Berlin. James Clark wrote the @sc{gnu} C@t{++}
404demangler. Early work on C@t{++} was by Peter TerMaat (who also did
405much general update work leading to release 3.0).
c906108c 406
b37052ae 407@value{GDBN} uses the BFD subroutine library to examine multiple
c906108c
SS
408object-file formats; BFD was a joint project of David V.
409Henkel-Wallace, Rich Pixley, Steve Chamberlain, and John Gilmore.
410
411David Johnson wrote the original COFF support; Pace Willison did
412the original support for encapsulated COFF.
413
0179ffac 414Brent Benson of Harris Computer Systems contributed DWARF 2 support.
c906108c
SS
415
416Adam de Boor and Bradley Davis contributed the ISI Optimum V support.
417Per Bothner, Noboyuki Hikichi, and Alessandro Forin contributed MIPS
418support.
419Jean-Daniel Fekete contributed Sun 386i support.
420Chris Hanson improved the HP9000 support.
421Noboyuki Hikichi and Tomoyuki Hasei contributed Sony/News OS 3 support.
422David Johnson contributed Encore Umax support.
423Jyrki Kuoppala contributed Altos 3068 support.
424Jeff Law contributed HP PA and SOM support.
425Keith Packard contributed NS32K support.
426Doug Rabson contributed Acorn Risc Machine support.
427Bob Rusk contributed Harris Nighthawk CX-UX support.
428Chris Smith contributed Convex support (and Fortran debugging).
429Jonathan Stone contributed Pyramid support.
430Michael Tiemann contributed SPARC support.
431Tim Tucker contributed support for the Gould NP1 and Gould Powernode.
432Pace Willison contributed Intel 386 support.
433Jay Vosburgh contributed Symmetry support.
a37295f9 434Marko Mlinar contributed OpenRISC 1000 support.
c906108c 435
1104b9e7 436Andreas Schwab contributed M68K @sc{gnu}/Linux support.
c906108c
SS
437
438Rich Schaefer and Peter Schauer helped with support of SunOS shared
439libraries.
440
441Jay Fenlason and Roland McGrath ensured that @value{GDBN} and GAS agree
442about several machine instruction sets.
443
444Patrick Duval, Ted Goldstein, Vikram Koka and Glenn Engel helped develop
445remote debugging. Intel Corporation, Wind River Systems, AMD, and ARM
446contributed remote debugging modules for the i960, VxWorks, A29K UDI,
447and RDI targets, respectively.
448
449Brian Fox is the author of the readline libraries providing
450command-line editing and command history.
451
7a292a7a
SS
452Andrew Beers of SUNY Buffalo wrote the language-switching code, the
453Modula-2 support, and contributed the Languages chapter of this manual.
c906108c 454
5d161b24 455Fred Fish wrote most of the support for Unix System Vr4.
b37052ae 456He also enhanced the command-completion support to cover C@t{++} overloaded
c906108c 457symbols.
c906108c 458
f24c5e49
KI
459Hitachi America (now Renesas America), Ltd. sponsored the support for
460H8/300, H8/500, and Super-H processors.
c906108c
SS
461
462NEC sponsored the support for the v850, Vr4xxx, and Vr5xxx processors.
463
f24c5e49
KI
464Mitsubishi (now Renesas) sponsored the support for D10V, D30V, and M32R/D
465processors.
c906108c
SS
466
467Toshiba sponsored the support for the TX39 Mips processor.
468
469Matsushita sponsored the support for the MN10200 and MN10300 processors.
470
96a2c332 471Fujitsu sponsored the support for SPARClite and FR30 processors.
c906108c
SS
472
473Kung Hsu, Jeff Law, and Rick Sladkey added support for hardware
474watchpoints.
475
476Michael Snyder added support for tracepoints.
477
478Stu Grossman wrote gdbserver.
479
480Jim Kingdon, Peter Schauer, Ian Taylor, and Stu Grossman made
96a2c332 481nearly innumerable bug fixes and cleanups throughout @value{GDBN}.
c906108c
SS
482
483The following people at the Hewlett-Packard Company contributed
484support for the PA-RISC 2.0 architecture, HP-UX 10.20, 10.30, and 11.0
b37052ae 485(narrow mode), HP's implementation of kernel threads, HP's aC@t{++}
d0d5df6f
AC
486compiler, and the Text User Interface (nee Terminal User Interface):
487Ben Krepp, Richard Title, John Bishop, Susan Macchia, Kathy Mann,
488Satish Pai, India Paul, Steve Rehrauer, and Elena Zannoni. Kim Haase
489provided HP-specific information in this manual.
c906108c 490
b37052ae
EZ
491DJ Delorie ported @value{GDBN} to MS-DOS, for the DJGPP project.
492Robert Hoehne made significant contributions to the DJGPP port.
493
96a2c332
SS
494Cygnus Solutions has sponsored @value{GDBN} maintenance and much of its
495development since 1991. Cygnus engineers who have worked on @value{GDBN}
2df3850c
JM
496fulltime include Mark Alexander, Jim Blandy, Per Bothner, Kevin
497Buettner, Edith Epstein, Chris Faylor, Fred Fish, Martin Hunt, Jim
498Ingham, John Gilmore, Stu Grossman, Kung Hsu, Jim Kingdon, John Metzler,
499Fernando Nasser, Geoffrey Noer, Dawn Perchik, Rich Pixley, Zdenek
500Radouch, Keith Seitz, Stan Shebs, David Taylor, and Elena Zannoni. In
501addition, Dave Brolley, Ian Carmichael, Steve Chamberlain, Nick Clifton,
502JT Conklin, Stan Cox, DJ Delorie, Ulrich Drepper, Frank Eigler, Doug
503Evans, Sean Fagan, David Henkel-Wallace, Richard Henderson, Jeff
504Holcomb, Jeff Law, Jim Lemke, Tom Lord, Bob Manson, Michael Meissner,
505Jason Merrill, Catherine Moore, Drew Moseley, Ken Raeburn, Gavin
506Romig-Koch, Rob Savoye, Jamie Smith, Mike Stump, Ian Taylor, Angela
507Thomas, Michael Tiemann, Tom Tromey, Ron Unrau, Jim Wilson, and David
508Zuhn have made contributions both large and small.
c906108c 509
ffed4509
AC
510Andrew Cagney, Fernando Nasser, and Elena Zannoni, while working for
511Cygnus Solutions, implemented the original @sc{gdb/mi} interface.
512
e2e0bcd1
JB
513Jim Blandy added support for preprocessor macros, while working for Red
514Hat.
c906108c 515
a9967aef
AC
516Andrew Cagney designed @value{GDBN}'s architecture vector. Many
517people including Andrew Cagney, Stephane Carrez, Randolph Chung, Nick
518Duffek, Richard Henderson, Mark Kettenis, Grace Sainsbury, Kei
519Sakamoto, Yoshinori Sato, Michael Snyder, Andreas Schwab, Jason
520Thorpe, Corinna Vinschen, Ulrich Weigand, and Elena Zannoni, helped
521with the migration of old architectures to this new framework.
522
c5e30d01
AC
523Andrew Cagney completely re-designed and re-implemented @value{GDBN}'s
524unwinder framework, this consisting of a fresh new design featuring
525frame IDs, independent frame sniffers, and the sentinel frame. Mark
526Kettenis implemented the @sc{dwarf 2} unwinder, Jeff Johnston the
527libunwind unwinder, and Andrew Cagney the dummy, sentinel, tramp, and
db2e3e2e 528trad unwinders. The architecture-specific changes, each involving a
c5e30d01
AC
529complete rewrite of the architecture's frame code, were carried out by
530Jim Blandy, Joel Brobecker, Kevin Buettner, Andrew Cagney, Stephane
531Carrez, Randolph Chung, Orjan Friberg, Richard Henderson, Daniel
532Jacobowitz, Jeff Johnston, Mark Kettenis, Theodore A. Roth, Kei
533Sakamoto, Yoshinori Sato, Michael Snyder, Corinna Vinschen, and Ulrich
534Weigand.
535
ca3bf3bd
DJ
536Christian Zankel, Ross Morley, Bob Wilson, and Maxim Grigoriev from
537Tensilica, Inc.@: contributed support for Xtensa processors. Others
538who have worked on the Xtensa port of @value{GDBN} in the past include
539Steve Tjiang, John Newlin, and Scott Foehner.
540
08be9d71
ME
541Michael Eager and staff of Xilinx, Inc., contributed support for the
542Xilinx MicroBlaze architecture.
543
387360da
JB
544Initial support for the FreeBSD/mips target and native configuration
545was developed by SRI International and the University of Cambridge
546Computer Laboratory under DARPA/AFRL contract FA8750-10-C-0237
547("CTSRD"), as part of the DARPA CRASH research programme.
548
74792ff7
JB
549Initial support for the FreeBSD/riscv target and native configuration
550was developed by SRI International and the University of Cambridge
551Computer Laboratory (Department of Computer Science and Technology)
552under DARPA contract HR0011-18-C-0016 ("ECATS"), as part of the DARPA
553SSITH research programme.
554
a994fec4
FJ
555The original port to the OpenRISC 1000 is believed to be due to
556Alessandro Forin and Per Bothner. More recent ports have been the work
557of Jeremy Bennett, Franck Jullien, Stefan Wallentowitz and
558Stafford Horne.
559
39791af2
JM
560Weimin Pan, David Faust and Jose E. Marchesi contributed support for
561the Linux kernel BPF virtual architecture. This work was sponsored by
562Oracle.
563
6d2ebf8b 564@node Sample Session
c906108c
SS
565@chapter A Sample @value{GDBN} Session
566
567You can use this manual at your leisure to read all about @value{GDBN}.
568However, a handful of commands are enough to get started using the
569debugger. This chapter illustrates those commands.
570
571@iftex
572In this sample session, we emphasize user input like this: @b{input},
573to make it easier to pick out from the surrounding output.
574@end iftex
575
576@c FIXME: this example may not be appropriate for some configs, where
577@c FIXME...primary interest is in remote use.
578
579One of the preliminary versions of @sc{gnu} @code{m4} (a generic macro
580processor) exhibits the following bug: sometimes, when we change its
581quote strings from the default, the commands used to capture one macro
582definition within another stop working. In the following short @code{m4}
583session, we define a macro @code{foo} which expands to @code{0000}; we
584then use the @code{m4} built-in @code{defn} to define @code{bar} as the
585same thing. However, when we change the open quote string to
586@code{<QUOTE>} and the close quote string to @code{<UNQUOTE>}, the same
587procedure fails to define a new synonym @code{baz}:
588
589@smallexample
590$ @b{cd gnu/m4}
591$ @b{./m4}
592@b{define(foo,0000)}
593
594@b{foo}
5950000
596@b{define(bar,defn(`foo'))}
597
598@b{bar}
5990000
600@b{changequote(<QUOTE>,<UNQUOTE>)}
601
602@b{define(baz,defn(<QUOTE>foo<UNQUOTE>))}
603@b{baz}
c8aa23ab 604@b{Ctrl-d}
c906108c
SS
605m4: End of input: 0: fatal error: EOF in string
606@end smallexample
607
608@noindent
609Let us use @value{GDBN} to try to see what is going on.
610
c906108c
SS
611@smallexample
612$ @b{@value{GDBP} m4}
613@c FIXME: this falsifies the exact text played out, to permit smallbook
614@c FIXME... format to come out better.
615@value{GDBN} is free software and you are welcome to distribute copies
5d161b24 616 of it under certain conditions; type "show copying" to see
c906108c 617 the conditions.
5d161b24 618There is absolutely no warranty for @value{GDBN}; type "show warranty"
c906108c
SS
619 for details.
620
621@value{GDBN} @value{GDBVN}, Copyright 1999 Free Software Foundation, Inc...
622(@value{GDBP})
623@end smallexample
c906108c
SS
624
625@noindent
626@value{GDBN} reads only enough symbol data to know where to find the
627rest when needed; as a result, the first prompt comes up very quickly.
628We now tell @value{GDBN} to use a narrower display width than usual, so
629that examples fit in this manual.
630
631@smallexample
632(@value{GDBP}) @b{set width 70}
633@end smallexample
634
635@noindent
636We need to see how the @code{m4} built-in @code{changequote} works.
637Having looked at the source, we know the relevant subroutine is
638@code{m4_changequote}, so we set a breakpoint there with the @value{GDBN}
639@code{break} command.
640
641@smallexample
642(@value{GDBP}) @b{break m4_changequote}
643Breakpoint 1 at 0x62f4: file builtin.c, line 879.
644@end smallexample
645
646@noindent
647Using the @code{run} command, we start @code{m4} running under @value{GDBN}
648control; as long as control does not reach the @code{m4_changequote}
649subroutine, the program runs as usual:
650
651@smallexample
652(@value{GDBP}) @b{run}
653Starting program: /work/Editorial/gdb/gnu/m4/m4
654@b{define(foo,0000)}
655
656@b{foo}
6570000
658@end smallexample
659
660@noindent
661To trigger the breakpoint, we call @code{changequote}. @value{GDBN}
662suspends execution of @code{m4}, displaying information about the
663context where it stops.
664
665@smallexample
666@b{changequote(<QUOTE>,<UNQUOTE>)}
667
5d161b24 668Breakpoint 1, m4_changequote (argc=3, argv=0x33c70)
c906108c
SS
669 at builtin.c:879
670879 if (bad_argc(TOKEN_DATA_TEXT(argv[0]),argc,1,3))
671@end smallexample
672
673@noindent
674Now we use the command @code{n} (@code{next}) to advance execution to
675the next line of the current function.
676
677@smallexample
678(@value{GDBP}) @b{n}
679882 set_quotes((argc >= 2) ? TOKEN_DATA_TEXT(argv[1])\
680 : nil,
681@end smallexample
682
683@noindent
684@code{set_quotes} looks like a promising subroutine. We can go into it
685by using the command @code{s} (@code{step}) instead of @code{next}.
686@code{step} goes to the next line to be executed in @emph{any}
687subroutine, so it steps into @code{set_quotes}.
688
689@smallexample
690(@value{GDBP}) @b{s}
691set_quotes (lq=0x34c78 "<QUOTE>", rq=0x34c88 "<UNQUOTE>")
692 at input.c:530
693530 if (lquote != def_lquote)
694@end smallexample
695
696@noindent
697The display that shows the subroutine where @code{m4} is now
698suspended (and its arguments) is called a stack frame display. It
699shows a summary of the stack. We can use the @code{backtrace}
700command (which can also be spelled @code{bt}), to see where we are
701in the stack as a whole: the @code{backtrace} command displays a
702stack frame for each active subroutine.
703
704@smallexample
705(@value{GDBP}) @b{bt}
706#0 set_quotes (lq=0x34c78 "<QUOTE>", rq=0x34c88 "<UNQUOTE>")
707 at input.c:530
5d161b24 708#1 0x6344 in m4_changequote (argc=3, argv=0x33c70)
c906108c
SS
709 at builtin.c:882
710#2 0x8174 in expand_macro (sym=0x33320) at macro.c:242
711#3 0x7a88 in expand_token (obs=0x0, t=209696, td=0xf7fffa30)
712 at macro.c:71
713#4 0x79dc in expand_input () at macro.c:40
714#5 0x2930 in main (argc=0, argv=0xf7fffb20) at m4.c:195
715@end smallexample
716
717@noindent
718We step through a few more lines to see what happens. The first two
719times, we can use @samp{s}; the next two times we use @code{n} to avoid
720falling into the @code{xstrdup} subroutine.
721
722@smallexample
723(@value{GDBP}) @b{s}
7240x3b5c 532 if (rquote != def_rquote)
725(@value{GDBP}) @b{s}
7260x3b80 535 lquote = (lq == nil || *lq == '\0') ? \
727def_lquote : xstrdup(lq);
728(@value{GDBP}) @b{n}
729536 rquote = (rq == nil || *rq == '\0') ? def_rquote\
730 : xstrdup(rq);
731(@value{GDBP}) @b{n}
732538 len_lquote = strlen(rquote);
733@end smallexample
734
735@noindent
736The last line displayed looks a little odd; we can examine the variables
737@code{lquote} and @code{rquote} to see if they are in fact the new left
738and right quotes we specified. We use the command @code{p}
739(@code{print}) to see their values.
740
741@smallexample
742(@value{GDBP}) @b{p lquote}
743$1 = 0x35d40 "<QUOTE>"
744(@value{GDBP}) @b{p rquote}
745$2 = 0x35d50 "<UNQUOTE>"
746@end smallexample
747
748@noindent
749@code{lquote} and @code{rquote} are indeed the new left and right quotes.
750To look at some context, we can display ten lines of source
751surrounding the current line with the @code{l} (@code{list}) command.
752
753@smallexample
754(@value{GDBP}) @b{l}
755533 xfree(rquote);
756534
757535 lquote = (lq == nil || *lq == '\0') ? def_lquote\
758 : xstrdup (lq);
759536 rquote = (rq == nil || *rq == '\0') ? def_rquote\
760 : xstrdup (rq);
761537
762538 len_lquote = strlen(rquote);
763539 len_rquote = strlen(lquote);
764540 @}
765541
766542 void
767@end smallexample
768
769@noindent
770Let us step past the two lines that set @code{len_lquote} and
771@code{len_rquote}, and then examine the values of those variables.
772
773@smallexample
774(@value{GDBP}) @b{n}
775539 len_rquote = strlen(lquote);
776(@value{GDBP}) @b{n}
777540 @}
778(@value{GDBP}) @b{p len_lquote}
779$3 = 9
780(@value{GDBP}) @b{p len_rquote}
781$4 = 7
782@end smallexample
783
784@noindent
785That certainly looks wrong, assuming @code{len_lquote} and
786@code{len_rquote} are meant to be the lengths of @code{lquote} and
787@code{rquote} respectively. We can set them to better values using
788the @code{p} command, since it can print the value of
789any expression---and that expression can include subroutine calls and
790assignments.
791
792@smallexample
793(@value{GDBP}) @b{p len_lquote=strlen(lquote)}
794$5 = 7
795(@value{GDBP}) @b{p len_rquote=strlen(rquote)}
796$6 = 9
797@end smallexample
798
799@noindent
800Is that enough to fix the problem of using the new quotes with the
801@code{m4} built-in @code{defn}? We can allow @code{m4} to continue
802executing with the @code{c} (@code{continue}) command, and then try the
803example that caused trouble initially:
804
805@smallexample
806(@value{GDBP}) @b{c}
807Continuing.
808
809@b{define(baz,defn(<QUOTE>foo<UNQUOTE>))}
810
811baz
8120000
813@end smallexample
814
815@noindent
816Success! The new quotes now work just as well as the default ones. The
817problem seems to have been just the two typos defining the wrong
818lengths. We allow @code{m4} exit by giving it an EOF as input:
819
820@smallexample
c8aa23ab 821@b{Ctrl-d}
c906108c
SS
822Program exited normally.
823@end smallexample
824
825@noindent
826The message @samp{Program exited normally.} is from @value{GDBN}; it
827indicates @code{m4} has finished executing. We can end our @value{GDBN}
828session with the @value{GDBN} @code{quit} command.
829
830@smallexample
831(@value{GDBP}) @b{quit}
832@end smallexample
c906108c 833
6d2ebf8b 834@node Invocation
c906108c
SS
835@chapter Getting In and Out of @value{GDBN}
836
837This chapter discusses how to start @value{GDBN}, and how to get out of it.
5d161b24 838The essentials are:
c906108c 839@itemize @bullet
5d161b24 840@item
53a5351d 841type @samp{@value{GDBP}} to start @value{GDBN}.
5d161b24 842@item
c8aa23ab 843type @kbd{quit} or @kbd{Ctrl-d} to exit.
c906108c
SS
844@end itemize
845
846@menu
847* Invoking GDB:: How to start @value{GDBN}
848* Quitting GDB:: How to quit @value{GDBN}
849* Shell Commands:: How to use shell commands inside @value{GDBN}
79a6e687 850* Logging Output:: How to log @value{GDBN}'s output to a file
c906108c
SS
851@end menu
852
6d2ebf8b 853@node Invoking GDB
c906108c
SS
854@section Invoking @value{GDBN}
855
c906108c
SS
856Invoke @value{GDBN} by running the program @code{@value{GDBP}}. Once started,
857@value{GDBN} reads commands from the terminal until you tell it to exit.
858
859You can also run @code{@value{GDBP}} with a variety of arguments and options,
860to specify more of your debugging environment at the outset.
861
c906108c
SS
862The command-line options described here are designed
863to cover a variety of situations; in some environments, some of these
5d161b24 864options may effectively be unavailable.
c906108c
SS
865
866The most usual way to start @value{GDBN} is with one argument,
867specifying an executable program:
868
474c8240 869@smallexample
c906108c 870@value{GDBP} @var{program}
474c8240 871@end smallexample
c906108c 872
c906108c
SS
873@noindent
874You can also start with both an executable program and a core file
875specified:
876
474c8240 877@smallexample
c906108c 878@value{GDBP} @var{program} @var{core}
474c8240 879@end smallexample
c906108c 880
4ed4690f
SM
881You can, instead, specify a process ID as a second argument or use option
882@code{-p}, if you want to debug a running process:
c906108c 883
474c8240 884@smallexample
c906108c 885@value{GDBP} @var{program} 1234
4ed4690f 886@value{GDBP} -p 1234
474c8240 887@end smallexample
c906108c
SS
888
889@noindent
4ed4690f
SM
890would attach @value{GDBN} to process @code{1234}. With option @option{-p} you
891can omit the @var{program} filename.
c906108c 892
c906108c 893Taking advantage of the second command-line argument requires a fairly
2df3850c
JM
894complete operating system; when you use @value{GDBN} as a remote
895debugger attached to a bare board, there may not be any notion of
896``process'', and there is often no way to get a core dump. @value{GDBN}
897will warn you if it is unable to attach or to read core dumps.
c906108c 898
aa26fa3a
TT
899You can optionally have @code{@value{GDBP}} pass any arguments after the
900executable file to the inferior using @code{--args}. This option stops
901option processing.
474c8240 902@smallexample
3f94c067 903@value{GDBP} --args gcc -O2 -c foo.c
474c8240 904@end smallexample
aa26fa3a
TT
905This will cause @code{@value{GDBP}} to debug @code{gcc}, and to set
906@code{gcc}'s command-line arguments (@pxref{Arguments}) to @samp{-O2 -c foo.c}.
907
96a2c332 908You can run @code{@value{GDBP}} without printing the front material, which describes
adcc0a31 909@value{GDBN}'s non-warranty, by specifying @code{--silent}
910(or @code{-q}/@code{--quiet}):
c906108c
SS
911
912@smallexample
adcc0a31 913@value{GDBP} --silent
c906108c
SS
914@end smallexample
915
916@noindent
917You can further control how @value{GDBN} starts up by using command-line
918options. @value{GDBN} itself can remind you of the options available.
919
920@noindent
921Type
922
474c8240 923@smallexample
c906108c 924@value{GDBP} -help
474c8240 925@end smallexample
c906108c
SS
926
927@noindent
928to display all available options and briefly describe their use
929(@samp{@value{GDBP} -h} is a shorter equivalent).
930
931All options and command line arguments you give are processed
932in sequential order. The order makes a difference when the
933@samp{-x} option is used.
934
935
936@menu
c906108c
SS
937* File Options:: Choosing files
938* Mode Options:: Choosing modes
6fc08d32 939* Startup:: What @value{GDBN} does during startup
64aaad63 940* Initialization Files:: Initialization Files
c906108c
SS
941@end menu
942
6d2ebf8b 943@node File Options
79a6e687 944@subsection Choosing Files
c906108c 945
2df3850c 946When @value{GDBN} starts, it reads any arguments other than options as
c906108c
SS
947specifying an executable file and core file (or process ID). This is
948the same as if the arguments were specified by the @samp{-se} and
d52fb0e9 949@samp{-c} (or @samp{-p}) options respectively. (@value{GDBN} reads the
19837790
MS
950first argument that does not have an associated option flag as
951equivalent to the @samp{-se} option followed by that argument; and the
952second argument that does not have an associated option flag, if any, as
953equivalent to the @samp{-c}/@samp{-p} option followed by that argument.)
954If the second argument begins with a decimal digit, @value{GDBN} will
955first attempt to attach to it as a process, and if that fails, attempt
956to open it as a corefile. If you have a corefile whose name begins with
b383017d 957a digit, you can prevent @value{GDBN} from treating it as a pid by
c1468174 958prefixing it with @file{./}, e.g.@: @file{./12345}.
7a292a7a
SS
959
960If @value{GDBN} has not been configured to included core file support,
961such as for most embedded targets, then it will complain about a second
962argument and ignore it.
c906108c
SS
963
964Many options have both long and short forms; both are shown in the
965following list. @value{GDBN} also recognizes the long forms if you truncate
966them, so long as enough of the option is present to be unambiguous.
967(If you prefer, you can flag option arguments with @samp{--} rather
968than @samp{-}, though we illustrate the more usual convention.)
969
d700128c
EZ
970@c NOTE: the @cindex entries here use double dashes ON PURPOSE. This
971@c way, both those who look for -foo and --foo in the index, will find
972@c it.
973
c906108c
SS
974@table @code
975@item -symbols @var{file}
976@itemx -s @var{file}
d700128c
EZ
977@cindex @code{--symbols}
978@cindex @code{-s}
c906108c
SS
979Read symbol table from file @var{file}.
980
981@item -exec @var{file}
982@itemx -e @var{file}
d700128c
EZ
983@cindex @code{--exec}
984@cindex @code{-e}
7a292a7a
SS
985Use file @var{file} as the executable file to execute when appropriate,
986and for examining pure data in conjunction with a core dump.
c906108c
SS
987
988@item -se @var{file}
d700128c 989@cindex @code{--se}
c906108c
SS
990Read symbol table from file @var{file} and use it as the executable
991file.
992
c906108c
SS
993@item -core @var{file}
994@itemx -c @var{file}
d700128c
EZ
995@cindex @code{--core}
996@cindex @code{-c}
b383017d 997Use file @var{file} as a core dump to examine.
c906108c 998
19837790
MS
999@item -pid @var{number}
1000@itemx -p @var{number}
1001@cindex @code{--pid}
1002@cindex @code{-p}
1003Connect to process ID @var{number}, as with the @code{attach} command.
c906108c
SS
1004
1005@item -command @var{file}
1006@itemx -x @var{file}
d700128c
EZ
1007@cindex @code{--command}
1008@cindex @code{-x}
95433b34
JB
1009Execute commands from file @var{file}. The contents of this file is
1010evaluated exactly as the @code{source} command would.
8150ff9c 1011@xref{Command Files,, Command files}.
c906108c 1012
8a5a3c82
AS
1013@item -eval-command @var{command}
1014@itemx -ex @var{command}
1015@cindex @code{--eval-command}
1016@cindex @code{-ex}
1017Execute a single @value{GDBN} command.
1018
1019This option may be used multiple times to call multiple commands. It may
1020also be interleaved with @samp{-command} as required.
1021
1022@smallexample
1023@value{GDBP} -ex 'target sim' -ex 'load' \
1024 -x setbreakpoints -ex 'run' a.out
1025@end smallexample
1026
8320cc4f
JK
1027@item -init-command @var{file}
1028@itemx -ix @var{file}
1029@cindex @code{--init-command}
1030@cindex @code{-ix}
2d7b58e8
JK
1031Execute commands from file @var{file} before loading the inferior (but
1032after loading gdbinit files).
8320cc4f
JK
1033@xref{Startup}.
1034
1035@item -init-eval-command @var{command}
1036@itemx -iex @var{command}
1037@cindex @code{--init-eval-command}
1038@cindex @code{-iex}
2d7b58e8
JK
1039Execute a single @value{GDBN} command before loading the inferior (but
1040after loading gdbinit files).
8320cc4f
JK
1041@xref{Startup}.
1042
92e4e97a
AB
1043@item -early-init-command @var{file}
1044@itemx -eix @var{file}
1045@cindex @code{--early-init-command}
1046@cindex @code{-eix}
1047Execute commands from @var{file} very early in the initialization
1048process, before any output is produced. @xref{Startup}.
1049
1050@item -early-init-eval-command @var{command}
1051@itemx -eiex @var{command}
1052@cindex @code{--early-init-eval-command}
1053@cindex @code{-eiex}
1054Execute a single @value{GDBN} command very early in the initialization
1055process, before any output is produced.
1056
c906108c
SS
1057@item -directory @var{directory}
1058@itemx -d @var{directory}
d700128c
EZ
1059@cindex @code{--directory}
1060@cindex @code{-d}
4b505b12 1061Add @var{directory} to the path to search for source and script files.
c906108c 1062
c906108c
SS
1063@item -r
1064@itemx -readnow
d700128c
EZ
1065@cindex @code{--readnow}
1066@cindex @code{-r}
c906108c
SS
1067Read each symbol file's entire symbol table immediately, rather than
1068the default, which is to read it incrementally as it is needed.
1069This makes startup slower, but makes future operations faster.
53a5351d 1070
97cbe998
SDJ
1071@item --readnever
1072@anchor{--readnever}
1073@cindex @code{--readnever}, command-line option
1074Do not read each symbol file's symbolic debug information. This makes
1075startup faster but at the expense of not being able to perform
1076symbolic debugging. DWARF unwind information is also not read,
1077meaning backtraces may become incomplete or inaccurate. One use of
1078this is when a user simply wants to do the following sequence: attach,
1079dump core, detach. Loading the debugging information in this case is
1080an unnecessary cause of delay.
c906108c
SS
1081@end table
1082
6d2ebf8b 1083@node Mode Options
79a6e687 1084@subsection Choosing Modes
c906108c
SS
1085
1086You can run @value{GDBN} in various alternative modes---for example, in
1087batch mode or quiet mode.
1088
1089@table @code
bf88dd68 1090@anchor{-nx}
c906108c
SS
1091@item -nx
1092@itemx -n
d700128c
EZ
1093@cindex @code{--nx}
1094@cindex @code{-n}
64aaad63
AB
1095Do not execute commands found in any initialization files
1096(@pxref{Initialization Files}).
07540c15
DE
1097
1098@anchor{-nh}
1099@item -nh
1100@cindex @code{--nh}
64aaad63
AB
1101Do not execute commands found in any home directory initialization
1102file (@pxref{Initialization Files,,Home directory initialization
1103file}). The system wide and current directory initialization files
1104are still loaded.
c906108c
SS
1105
1106@item -quiet
d700128c 1107@itemx -silent
c906108c 1108@itemx -q
d700128c
EZ
1109@cindex @code{--quiet}
1110@cindex @code{--silent}
1111@cindex @code{-q}
c906108c
SS
1112``Quiet''. Do not print the introductory and copyright messages. These
1113messages are also suppressed in batch mode.
1114
5809fbf2
TT
1115@kindex set startup-quietly
1116@kindex show startup-quietly
1117This can also be enabled using @code{set startup-quietly on}. The
1118default is @code{off}. Use @code{show startup-quietly} to see the
1119current setting. Place @code{set startup-quietly on} into your early
1120initialization file (@pxref{Initialization Files,,Initialization
1121Files}) to have future @value{GDBN} sessions startup quietly.
1122
c906108c 1123@item -batch
d700128c 1124@cindex @code{--batch}
c906108c
SS
1125Run in batch mode. Exit with status @code{0} after processing all the
1126command files specified with @samp{-x} (and all commands from
1127initialization files, if not inhibited with @samp{-n}). Exit with
1128nonzero status if an error occurs in executing the @value{GDBN} commands
5da1313b
JK
1129in the command files. Batch mode also disables pagination, sets unlimited
1130terminal width and height @pxref{Screen Size}, and acts as if @kbd{set confirm
1131off} were in effect (@pxref{Messages/Warnings}).
c906108c 1132
2df3850c
JM
1133Batch mode may be useful for running @value{GDBN} as a filter, for
1134example to download and run a program on another computer; in order to
1135make this more useful, the message
c906108c 1136
474c8240 1137@smallexample
c906108c 1138Program exited normally.
474c8240 1139@end smallexample
c906108c
SS
1140
1141@noindent
2df3850c
JM
1142(which is ordinarily issued whenever a program running under
1143@value{GDBN} control terminates) is not issued when running in batch
1144mode.
1145
1a088d06
AS
1146@item -batch-silent
1147@cindex @code{--batch-silent}
1148Run in batch mode exactly like @samp{-batch}, but totally silently. All
1149@value{GDBN} output to @code{stdout} is prevented (@code{stderr} is
1150unaffected). This is much quieter than @samp{-silent} and would be useless
1151for an interactive session.
1152
1153This is particularly useful when using targets that give @samp{Loading section}
1154messages, for example.
1155
1156Note that targets that give their output via @value{GDBN}, as opposed to
1157writing directly to @code{stdout}, will also be made silent.
1158
4b0ad762
AS
1159@item -return-child-result
1160@cindex @code{--return-child-result}
1161The return code from @value{GDBN} will be the return code from the child
1162process (the process being debugged), with the following exceptions:
1163
1164@itemize @bullet
1165@item
1166@value{GDBN} exits abnormally. E.g., due to an incorrect argument or an
1167internal error. In this case the exit code is the same as it would have been
1168without @samp{-return-child-result}.
1169@item
1170The user quits with an explicit value. E.g., @samp{quit 1}.
1171@item
1172The child process never runs, or is not allowed to terminate, in which case
1173the exit code will be -1.
1174@end itemize
1175
1176This option is useful in conjunction with @samp{-batch} or @samp{-batch-silent},
1177when @value{GDBN} is being used as a remote program loader or simulator
1178interface.
1179
2df3850c
JM
1180@item -nowindows
1181@itemx -nw
d700128c
EZ
1182@cindex @code{--nowindows}
1183@cindex @code{-nw}
2df3850c 1184``No windows''. If @value{GDBN} comes with a graphical user interface
96a2c332 1185(GUI) built in, then this option tells @value{GDBN} to only use the command-line
2df3850c
JM
1186interface. If no GUI is available, this option has no effect.
1187
1188@item -windows
1189@itemx -w
d700128c
EZ
1190@cindex @code{--windows}
1191@cindex @code{-w}
2df3850c
JM
1192If @value{GDBN} includes a GUI, then this option requires it to be
1193used if possible.
c906108c
SS
1194
1195@item -cd @var{directory}
d700128c 1196@cindex @code{--cd}
c906108c
SS
1197Run @value{GDBN} using @var{directory} as its working directory,
1198instead of the current directory.
1199
aae1c79a 1200@item -data-directory @var{directory}
8d551b02 1201@itemx -D @var{directory}
aae1c79a 1202@cindex @code{--data-directory}
8d551b02 1203@cindex @code{-D}
aae1c79a
DE
1204Run @value{GDBN} using @var{directory} as its data directory.
1205The data directory is where @value{GDBN} searches for its
1206auxiliary files. @xref{Data Files}.
1207
c906108c
SS
1208@item -fullname
1209@itemx -f
d700128c
EZ
1210@cindex @code{--fullname}
1211@cindex @code{-f}
7a292a7a
SS
1212@sc{gnu} Emacs sets this option when it runs @value{GDBN} as a
1213subprocess. It tells @value{GDBN} to output the full file name and line
1214number in a standard, recognizable fashion each time a stack frame is
1215displayed (which includes each time your program stops). This
1216recognizable format looks like two @samp{\032} characters, followed by
1217the file name, line number and character position separated by colons,
1218and a newline. The Emacs-to-@value{GDBN} interface program uses the two
1219@samp{\032} characters as a signal to display the source code for the
1220frame.
c906108c 1221
d700128c
EZ
1222@item -annotate @var{level}
1223@cindex @code{--annotate}
1224This option sets the @dfn{annotation level} inside @value{GDBN}. Its
1225effect is identical to using @samp{set annotate @var{level}}
086432e2
AC
1226(@pxref{Annotations}). The annotation @var{level} controls how much
1227information @value{GDBN} prints together with its prompt, values of
1228expressions, source lines, and other types of output. Level 0 is the
1229normal, level 1 is for use when @value{GDBN} is run as a subprocess of
1230@sc{gnu} Emacs, level 3 is the maximum annotation suitable for programs
1231that control @value{GDBN}, and level 2 has been deprecated.
1232
265eeb58 1233The annotation mechanism has largely been superseded by @sc{gdb/mi}
086432e2 1234(@pxref{GDB/MI}).
d700128c 1235
aa26fa3a
TT
1236@item --args
1237@cindex @code{--args}
1238Change interpretation of command line so that arguments following the
1239executable file are passed as command line arguments to the inferior.
1240This option stops option processing.
1241
2df3850c
JM
1242@item -baud @var{bps}
1243@itemx -b @var{bps}
d700128c
EZ
1244@cindex @code{--baud}
1245@cindex @code{-b}
c906108c
SS
1246Set the line speed (baud rate or bits per second) of any serial
1247interface used by @value{GDBN} for remote debugging.
c906108c 1248
f47b1503
AS
1249@item -l @var{timeout}
1250@cindex @code{-l}
1251Set the timeout (in seconds) of any communication used by @value{GDBN}
1252for remote debugging.
1253
c906108c 1254@item -tty @var{device}
d700128c
EZ
1255@itemx -t @var{device}
1256@cindex @code{--tty}
1257@cindex @code{-t}
c906108c
SS
1258Run using @var{device} for your program's standard input and output.
1259@c FIXME: kingdon thinks there is more to -tty. Investigate.
c906108c 1260
53a5351d 1261@c resolve the situation of these eventually
c4555f82
SC
1262@item -tui
1263@cindex @code{--tui}
d0d5df6f
AC
1264Activate the @dfn{Text User Interface} when starting. The Text User
1265Interface manages several text windows on the terminal, showing
1266source, assembly, registers and @value{GDBN} command outputs
217bff3e
JK
1267(@pxref{TUI, ,@value{GDBN} Text User Interface}). Do not use this
1268option if you run @value{GDBN} from Emacs (@pxref{Emacs, ,
1269Using @value{GDBN} under @sc{gnu} Emacs}).
53a5351d 1270
d700128c
EZ
1271@item -interpreter @var{interp}
1272@cindex @code{--interpreter}
1273Use the interpreter @var{interp} for interface with the controlling
1274program or device. This option is meant to be set by programs which
94bbb2c0 1275communicate with @value{GDBN} using it as a back end.
21c294e6 1276@xref{Interpreters, , Command Interpreters}.
94bbb2c0 1277
b4be1b06
SM
1278@samp{--interpreter=mi} (or @samp{--interpreter=mi3}) causes
1279@value{GDBN} to use the @dfn{@sc{gdb/mi} interface} version 3 (@pxref{GDB/MI, ,
1280The @sc{gdb/mi} Interface}) included since @value{GDBN} version 9.1. @sc{gdb/mi}
1281version 2 (@code{mi2}), included in @value{GDBN} 6.0 and version 1 (@code{mi1}),
1282included in @value{GDBN} 5.3, are also available. Earlier @sc{gdb/mi}
1283interfaces are no longer supported.
d700128c
EZ
1284
1285@item -write
1286@cindex @code{--write}
1287Open the executable and core files for both reading and writing. This
1288is equivalent to the @samp{set write on} command inside @value{GDBN}
1289(@pxref{Patching}).
1290
1291@item -statistics
1292@cindex @code{--statistics}
1293This option causes @value{GDBN} to print statistics about time and
1294memory usage after it completes each command and returns to the prompt.
1295
1296@item -version
1297@cindex @code{--version}
1298This option causes @value{GDBN} to print its version number and
1299no-warranty blurb, and exit.
1300
6eaaf48b
EZ
1301@item -configuration
1302@cindex @code{--configuration}
1303This option causes @value{GDBN} to print details about its build-time
1304configuration parameters, and then exit. These details can be
1305important when reporting @value{GDBN} bugs (@pxref{GDB Bugs}).
1306
c906108c
SS
1307@end table
1308
6fc08d32 1309@node Startup
79a6e687 1310@subsection What @value{GDBN} Does During Startup
6fc08d32
EZ
1311@cindex @value{GDBN} startup
1312
1313Here's the description of what @value{GDBN} does during session startup:
1314
1315@enumerate
92e4e97a
AB
1316
1317@item
1318Performs minimal setup required to initialize basic internal state.
1319
1320@item
1321@cindex early initialization file
1322Reads commands from the early initialization file (if any) in your
1323home directory. Only a restricted set of commands can be placed into
1324an early initialization file, see @ref{Initialization Files}, for
1325details.
1326
1327@item
1328Executes commands and command files specified by the @samp{-eiex} and
1329@samp{-eix} command line options in their specified order. Only a
1330restricted set of commands can be used with @samp{-eiex} and
1331@samp{eix}, see @ref{Initialization Files}, for details.
1332
6fc08d32
EZ
1333@item
1334Sets up the command interpreter as specified by the command line
1335(@pxref{Mode Options, interpreter}).
1336
1337@item
1338@cindex init file
64aaad63
AB
1339Reads the system wide initialization file and the files from the
1340system wide initialization directory, @pxref{System Wide Init Files}.
098b41a6
JG
1341
1342@item
64aaad63
AB
1343Reads the initialization file (if any) in your home directory and
1344executes all the commands in that file, @pxref{Home Directory Init
1345File}.
6fc08d32 1346
2d7b58e8
JK
1347@anchor{Option -init-eval-command}
1348@item
1349Executes commands and command files specified by the @samp{-iex} and
1350@samp{-ix} options in their specified order. Usually you should use the
1351@samp{-ex} and @samp{-x} options instead, but this way you can apply
1352settings before @value{GDBN} init files get executed and before inferior
1353gets loaded.
1354
6fc08d32
EZ
1355@item
1356Processes command line options and operands.
1357
1358@item
64aaad63
AB
1359Reads and executes the commands from the initialization file (if any)
1360in the current working directory as long as @samp{set auto-load
1361local-gdbinit} is set to @samp{on} (@pxref{Init File in the Current
1362Directory}). This is only done if the current directory is different
1363from your home directory. Thus, you can have more than one init file,
1364one generic in your home directory, and another, specific to the
1365program you are debugging, in the directory where you invoke
1366@value{GDBN}. @xref{Init File in the Current Directory during
1367Startup}.
6fc08d32 1368
a86caf66
DE
1369@item
1370If the command line specified a program to debug, or a process to
1371attach to, or a core file, @value{GDBN} loads any auto-loaded
1372scripts provided for the program or for its loaded shared libraries.
1373@xref{Auto-loading}.
1374
1375If you wish to disable the auto-loading during startup,
1376you must do something like the following:
1377
1378@smallexample
bf88dd68 1379$ gdb -iex "set auto-load python-scripts off" myprogram
a86caf66
DE
1380@end smallexample
1381
8320cc4f
JK
1382Option @samp{-ex} does not work because the auto-loading is then turned
1383off too late.
a86caf66 1384
6fc08d32 1385@item
6fe37d23
JK
1386Executes commands and command files specified by the @samp{-ex} and
1387@samp{-x} options in their specified order. @xref{Command Files}, for
1388more details about @value{GDBN} command files.
6fc08d32
EZ
1389
1390@item
1391Reads the command history recorded in the @dfn{history file}.
d620b259 1392@xref{Command History}, for more details about the command history and the
6fc08d32
EZ
1393files where @value{GDBN} records it.
1394@end enumerate
1395
64aaad63
AB
1396@node Initialization Files
1397@subsection Initialization Files
1398@cindex init file name
6fc08d32 1399
64aaad63
AB
1400During startup (@pxref{Startup}) @value{GDBN} will execute commands
1401from several initialization files. These initialization files use the
1402same syntax as @dfn{command files} (@pxref{Command Files}) and are
1403processed by @value{GDBN} in the same way.
098b41a6 1404
64aaad63
AB
1405To display the list of initialization files loaded by @value{GDBN} at
1406startup, in the order they will be loaded, you can use @kbd{gdb
1407--help}.
1408
92e4e97a
AB
1409@cindex early initialization
1410The @dfn{early initialization} file is loaded very early in
1411@value{GDBN}'s initialization process, before the interpreter
1412(@pxref{Interpreters}) has been initialized, and before the default
1413target (@pxref{Targets}) is initialized. Only @code{set} or
1414@code{source} commands should be placed into an early initialization
1415file, and the only @code{set} commands that can be used are those that
1416control how @value{GDBN} starts up.
1417
1418Commands that can be placed into an early initialization file will be
1419documented as such throughout this manual. Any command that is not
1420documented as being suitable for an early initialization file should
1421instead be placed into a general initialization file. Command files
1422passed to @code{--early-init-command} or @code{-eix} are also early
1423initialization files, with the same command restrictions. Only
1424commands that can appear in an early initialization file should be
1425passed to @code{--early-init-eval-command} or @code{-eiex}.
1426
1427@cindex general initialization
1428In contrast, the @dfn{general initialization} files are processed
1429later, after @value{GDBN} has finished its own internal initialization
1430process, any valid command can be used in these files.
1431
1432@cindex initialization file
1433Throughout the rest of this document the term @dfn{initialization
1434file} refers to one of the general initialization files, not the early
1435initialization file. Any discussion of the early initialization file
1436will specifically mention that it is the early initialization file
1437being discussed.
1438
64aaad63
AB
1439As the system wide and home directory initialization files are
1440processed before most command line options, changes to settings
1441(e.g. @samp{set complaints}) can affect subsequent processing of
1442command line options and operands.
1443
92e4e97a
AB
1444The following sections describe where @value{GDBN} looks for the early
1445initialization and initialization files, and the order that the files
1446are searched for.
1447
1448@subsubsection Home directory early initialization files
1449
1450@value{GDBN} initially looks for an early initialization file in the
1451users home directory@footnote{On DOS/Windows systems, the home
e43c3e2a 1452directory is the one pointed to by the @env{HOME} environment
92e4e97a
AB
1453variable.}. There are a number of locations that @value{GDBN} will
1454search in the home directory, these locations are searched in order
1455and @value{GDBN} will load the first file that it finds, and
1456subsequent locations will not be checked.
1457
1458On non-macOS hosts the locations searched are:
1459@itemize
1460@item
1461The file @file{gdb/gdbearlyinit} within the directory pointed to by the
1462environment variable @env{XDG_CONFIG_HOME}, if it is defined.
1463@item
1464The file @file{.config/gdb/gdbearlyinit} within the directory pointed to
1465by the environment variable @env{HOME}, if it is defined.
1466@item
1467The file @file{.gdbearlyinit} within the directory pointed to by the
1468environment variable @env{HOME}, if it is defined.
1469@end itemize
1470
1471By contrast, on macOS hosts the locations searched are:
1472@itemize
1473@item
1474The file @file{Library/Preferences/gdb/gdbearlyinit} within the
1475directory pointed to by the environment variable @env{HOME}, if it is
1476defined.
1477@item
1478The file @file{.gdbearlyinit} within the directory pointed to by the
1479environment variable @env{HOME}, if it is defined.
1480@end itemize
1481
1482It is possible to prevent the home directory early initialization file
1483from being loaded using the @samp{-nx} or @samp{-nh} command line
1484options, @pxref{Mode Options,,Choosing Modes}.
64aaad63
AB
1485
1486@anchor{System Wide Init Files}
1487@subsubsection System wide initialization files
1488
1489There are two locations that are searched for system wide
1490initialization files. Both of these locations are always checked:
1491
1492@table @code
1493
1494@item @file{system.gdbinit}
1495This is a single system-wide initialization file. Its location is
1496specified with the @code{--with-system-gdbinit} configure option
1497(@pxref{System-wide configuration}). It is loaded first when
1498@value{GDBN} starts, before command line options have been processed.
1499
1500@item @file{system.gdbinit.d}
1501This is the system-wide initialization directory. Its location is
1502specified with the @code{--with-system-gdbinit-dir} configure option
1503(@pxref{System-wide configuration}). Files in this directory are
1504loaded in alphabetical order immediately after @file{system.gdbinit}
1505(if enabled) when @value{GDBN} starts, before command line options
1506have been processed. Files need to have a recognized scripting
1507language extension (@file{.py}/@file{.scm}) or be named with a
1508@file{.gdb} extension to be interpreted as regular @value{GDBN}
1509commands. @value{GDBN} will not recurse into any subdirectories of
1510this directory.
1511
1512@end table
1513
1514It is possible to prevent the system wide initialization files from
1515being loaded using the @samp{-nx} command line option, @pxref{Mode
1516Options,,Choosing Modes}.
1517
1518@anchor{Home Directory Init File}
1519@subsubsection Home directory initialization file
1520@cindex @file{gdbinit}
6fc08d32 1521@cindex @file{.gdbinit}
119b882a 1522@cindex @file{gdb.ini}
119b882a 1523
64aaad63
AB
1524After loading the system wide initialization files @value{GDBN} will
1525look for an initialization file in the users home
1526directory@footnote{On DOS/Windows systems, the home directory is the
e43c3e2a 1527one pointed to by the @env{HOME} environment variable.}. There are a
64aaad63
AB
1528number of locations that @value{GDBN} will search in the home
1529directory, these locations are searched in order and @value{GDBN} will
1530load the first file that it finds, and subsequent locations will not
1531be checked.
1532
1533On non-Apple hosts the locations searched are:
1534@table @file
1535@item $XDG_CONFIG_HOME/gdb/gdbinit
1536@item $HOME/.config/gdb/gdbinit
1537@item $HOME/.gdbinit
1538@end table
1539
1540While on Apple hosts the locations searched are:
1541@table @file
1542@item $HOME/Library/Preferences/gdb/gdbinit
1543@item $HOME/.gdbinit
1544@end table
1545
1546It is possible to prevent the home directory initialization file from
1547being loaded using the @samp{-nx} or @samp{-nh} command line options,
1548@pxref{Mode Options,,Choosing Modes}.
1549
1550The DJGPP port of @value{GDBN} uses the name @file{gdb.ini} instead of
1551@file{.gdbinit} or @file{gdbinit}, due to the limitations of file
1552names imposed by DOS filesystems. The Windows port of @value{GDBN}
1553uses the standard name, but if it finds a @file{gdb.ini} file in your
1554home directory, it warns you about that and suggests to rename the
1555file to the standard name.
1556
1557@anchor{Init File in the Current Directory during Startup}
1558@subsubsection Local directory initialization file
1559
1560@value{GDBN} will check the current directory for a file called
1561@file{.gdbinit}. It is loaded last, after command line options
1562other than @samp{-x} and @samp{-ex} have been processed. The command
1563line options @samp{-x} and @samp{-ex} are processed last, after
1564@file{.gdbinit} has been loaded, @pxref{File Options,,Choosing
1565Files}.
1566
1567If the file in the current directory was already loaded as the home
1568directory initialization file then it will not be loaded a second
1569time.
1570
1571It is possible to prevent the local directory initialization file from
1572being loaded using the @samp{-nx} command line option, @pxref{Mode
1573Options,,Choosing Modes}.
6fc08d32 1574
6d2ebf8b 1575@node Quitting GDB
c906108c
SS
1576@section Quitting @value{GDBN}
1577@cindex exiting @value{GDBN}
1578@cindex leaving @value{GDBN}
1579
1580@table @code
1581@kindex quit @r{[}@var{expression}@r{]}
41afff9a 1582@kindex q @r{(@code{quit})}
96a2c332
SS
1583@item quit @r{[}@var{expression}@r{]}
1584@itemx q
1585To exit @value{GDBN}, use the @code{quit} command (abbreviated
c8aa23ab 1586@code{q}), or type an end-of-file character (usually @kbd{Ctrl-d}). If you
96a2c332
SS
1587do not supply @var{expression}, @value{GDBN} will terminate normally;
1588otherwise it will terminate using the result of @var{expression} as the
1589error code.
c906108c
SS
1590@end table
1591
1592@cindex interrupt
c8aa23ab 1593An interrupt (often @kbd{Ctrl-c}) does not exit from @value{GDBN}, but rather
c906108c
SS
1594terminates the action of any @value{GDBN} command that is in progress and
1595returns to @value{GDBN} command level. It is safe to type the interrupt
1596character at any time because @value{GDBN} does not allow it to take effect
1597until a time when it is safe.
1598
c906108c
SS
1599If you have been using @value{GDBN} to control an attached process or
1600device, you can release it with the @code{detach} command
79a6e687 1601(@pxref{Attach, ,Debugging an Already-running Process}).
c906108c 1602
6d2ebf8b 1603@node Shell Commands
79a6e687 1604@section Shell Commands
c906108c
SS
1605
1606If you need to execute occasional shell commands during your
1607debugging session, there is no need to leave or suspend @value{GDBN}; you can
1608just use the @code{shell} command.
1609
1610@table @code
1611@kindex shell
ed59ded5 1612@kindex !
c906108c 1613@cindex shell escape
ed59ded5
DE
1614@item shell @var{command-string}
1615@itemx !@var{command-string}
1616Invoke a standard shell to execute @var{command-string}.
1617Note that no space is needed between @code{!} and @var{command-string}.
e43c3e2a 1618On GNU and Unix systems, the environment variable @env{SHELL}, if it
edf92af0
EZ
1619exists, determines which shell to run. Otherwise @value{GDBN} uses
1620the default shell (@file{/bin/sh} on GNU and Unix systems,
1621@file{cmd.exe} on MS-Windows, @file{COMMAND.COM} on MS-DOS, etc.).
c906108c
SS
1622@end table
1623
1624The utility @code{make} is often needed in development environments.
1625You do not have to use the @code{shell} command for this purpose in
1626@value{GDBN}:
1627
1628@table @code
1629@kindex make
1630@cindex calling make
1631@item make @var{make-args}
1632Execute the @code{make} program with the specified
1633arguments. This is equivalent to @samp{shell make @var{make-args}}.
1634@end table
1635
e2c52041
PW
1636@table @code
1637@kindex pipe
1638@kindex |
1639@cindex send the output of a gdb command to a shell command
1640@anchor{pipe}
1641@item pipe [@var{command}] | @var{shell_command}
1642@itemx | [@var{command}] | @var{shell_command}
1643@itemx pipe -d @var{delim} @var{command} @var{delim} @var{shell_command}
1644@itemx | -d @var{delim} @var{command} @var{delim} @var{shell_command}
1645Executes @var{command} and sends its output to @var{shell_command}.
1646Note that no space is needed around @code{|}.
1647If no @var{command} is provided, the last command executed is repeated.
1648
1649In case the @var{command} contains a @code{|}, the option @code{-d @var{delim}}
1650can be used to specify an alternate delimiter string @var{delim} that separates
1651the @var{command} from the @var{shell_command}.
1652
1653Example:
1654@smallexample
1655@group
1656(gdb) p var
1657$1 = @{
1658 black = 144,
1659 red = 233,
1660 green = 377,
1661 blue = 610,
1662 white = 987
1663@}
1664@end group
1665@group
1666(gdb) pipe p var|wc
1667 7 19 80
1668(gdb) |p var|wc -l
16697
1670@end group
1671@group
1672(gdb) p /x var
1673$4 = @{
1674 black = 0x90,
1675 red = 0xe9,
1676 green = 0x179,
1677 blue = 0x262,
1678 white = 0x3db
1679@}
1680(gdb) ||grep red
1681 red => 0xe9,
1682@end group
1683@group
1684(gdb) | -d ! echo this contains a | char\n ! sed -e 's/|/PIPE/'
1685this contains a PIPE char
1686(gdb) | -d xxx echo this contains a | char!\n xxx sed -e 's/|/PIPE/'
1687this contains a PIPE char!
1688(gdb)
1689@end group
1690@end smallexample
1691@end table
1692
1693The convenience variables @code{$_shell_exitcode} and @code{$_shell_exitsignal}
1694can be used to examine the exit status of the last shell command launched
1695by @code{shell}, @code{make}, @code{pipe} and @code{|}.
1696@xref{Convenience Vars,, Convenience Variables}.
1697
79a6e687
BW
1698@node Logging Output
1699@section Logging Output
0fac0b41 1700@cindex logging @value{GDBN} output
9c16f35a 1701@cindex save @value{GDBN} output to a file
0fac0b41
DJ
1702
1703You may want to save the output of @value{GDBN} commands to a file.
1704There are several commands to control @value{GDBN}'s logging.
1705
1706@table @code
1707@kindex set logging
1708@item set logging on
1709Enable logging.
1710@item set logging off
1711Disable logging.
9c16f35a 1712@cindex logging file name
0fac0b41
DJ
1713@item set logging file @var{file}
1714Change the name of the current logfile. The default logfile is @file{gdb.txt}.
1715@item set logging overwrite [on|off]
1716By default, @value{GDBN} will append to the logfile. Set @code{overwrite} if
1717you want @code{set logging on} to overwrite the logfile instead.
1718@item set logging redirect [on|off]
1719By default, @value{GDBN} output will go to both the terminal and the logfile.
1720Set @code{redirect} if you want output to go only to the log file.
b7060614
AH
1721@item set logging debugredirect [on|off]
1722By default, @value{GDBN} debug output will go to both the terminal and the logfile.
1723Set @code{debugredirect} if you want debug output to go only to the log file.
0fac0b41
DJ
1724@kindex show logging
1725@item show logging
1726Show the current values of the logging settings.
1727@end table
1728
e2c52041
PW
1729You can also redirect the output of a @value{GDBN} command to a
1730shell command. @xref{pipe}.
6d2ebf8b 1731@node Commands
c906108c
SS
1732@chapter @value{GDBN} Commands
1733
1734You can abbreviate a @value{GDBN} command to the first few letters of the command
1735name, if that abbreviation is unambiguous; and you can repeat certain
1736@value{GDBN} commands by typing just @key{RET}. You can also use the @key{TAB}
1737key to get @value{GDBN} to fill out the rest of a word in a command (or to
1738show you the alternatives available, if there is more than one possibility).
1739
1740@menu
1741* Command Syntax:: How to give commands to @value{GDBN}
fdbc9870 1742* Command Settings:: How to change default behavior of commands
c906108c 1743* Completion:: Command completion
3345721a 1744* Command Options:: Command options
c906108c
SS
1745* Help:: How to ask @value{GDBN} for help
1746@end menu
1747
6d2ebf8b 1748@node Command Syntax
79a6e687 1749@section Command Syntax
c906108c
SS
1750
1751A @value{GDBN} command is a single line of input. There is no limit on
1752how long it can be. It starts with a command name, which is followed by
1753arguments whose meaning depends on the command name. For example, the
1754command @code{step} accepts an argument which is the number of times to
1755step, as in @samp{step 5}. You can also use the @code{step} command
96a2c332 1756with no arguments. Some commands do not allow any arguments.
c906108c
SS
1757
1758@cindex abbreviation
1759@value{GDBN} command names may always be truncated if that abbreviation is
1760unambiguous. Other possible command abbreviations are listed in the
1761documentation for individual commands. In some cases, even ambiguous
1762abbreviations are allowed; for example, @code{s} is specially defined as
1763equivalent to @code{step} even though there are other commands whose
1764names start with @code{s}. You can test abbreviations by using them as
1765arguments to the @code{help} command.
1766
1767@cindex repeating commands
41afff9a 1768@kindex RET @r{(repeat last command)}
c906108c 1769A blank line as input to @value{GDBN} (typing just @key{RET}) means to
96a2c332 1770repeat the previous command. Certain commands (for example, @code{run})
c906108c
SS
1771will not repeat this way; these are commands whose unintentional
1772repetition might cause trouble and which you are unlikely to want to
c45da7e6
EZ
1773repeat. User-defined commands can disable this feature; see
1774@ref{Define, dont-repeat}.
c906108c
SS
1775
1776The @code{list} and @code{x} commands, when you repeat them with
1777@key{RET}, construct new arguments rather than repeating
1778exactly as typed. This permits easy scanning of source or memory.
1779
1780@value{GDBN} can also use @key{RET} in another way: to partition lengthy
1781output, in a way similar to the common utility @code{more}
79a6e687 1782(@pxref{Screen Size,,Screen Size}). Since it is easy to press one
c906108c
SS
1783@key{RET} too many in this situation, @value{GDBN} disables command
1784repetition after any command that generates this sort of display.
1785
41afff9a 1786@kindex # @r{(a comment)}
c906108c
SS
1787@cindex comment
1788Any text from a @kbd{#} to the end of the line is a comment; it does
1789nothing. This is useful mainly in command files (@pxref{Command
79a6e687 1790Files,,Command Files}).
c906108c 1791
88118b3a 1792@cindex repeating command sequences
c8aa23ab
EZ
1793@kindex Ctrl-o @r{(operate-and-get-next)}
1794The @kbd{Ctrl-o} binding is useful for repeating a complex sequence of
7f9087cb 1795commands. This command accepts the current line, like @key{RET}, and
88118b3a
TT
1796then fetches the next line relative to the current line from the history
1797for editing.
1798
fdbc9870
PA
1799
1800@node Command Settings
1801@section Command Settings
1802@cindex default behavior of commands, changing
1803@cindex default settings, changing
1804
1805Many commands change their behavior according to command-specific
1806variables or settings. These settings can be changed with the
1807@code{set} subcommands. For example, the @code{print} command
1808(@pxref{Data, ,Examining Data}) prints arrays differently depending on
1809settings changeable with the commands @code{set print elements
1810NUMBER-OF-ELEMENTS} and @code{set print array-indexes}, among others.
1811
1812You can change these settings to your preference in the gdbinit files
1813loaded at @value{GDBN} startup. @xref{Startup}.
1814
1815The settings can also be changed interactively during the debugging
1816session. For example, to change the limit of array elements to print,
1817you can do the following:
1818@smallexample
1819(@value{GDBN}) set print elements 10
1820(@value{GDBN}) print some_array
1821$1 = @{0, 10, 20, 30, 40, 50, 60, 70, 80, 90...@}
1822@end smallexample
1823
1824The above @code{set print elements 10} command changes the number of
1825elements to print from the default of 200 to 10. If you only intend
1826this limit of 10 to be used for printing @code{some_array}, then you
1827must restore the limit back to 200, with @code{set print elements
1828200}.
1829
1830Some commands allow overriding settings with command options. For
1831example, the @code{print} command supports a number of options that
1832allow overriding relevant global print settings as set by @code{set
1833print} subcommands. @xref{print options}. The example above could be
1834rewritten as:
1835@smallexample
1836(@value{GDBN}) print -elements 10 -- some_array
1837$1 = @{0, 10, 20, 30, 40, 50, 60, 70, 80, 90...@}
1838@end smallexample
1839
1840Alternatively, you can use the @code{with} command to change a setting
1841temporarily, for the duration of a command invocation.
1842
1843@table @code
1844@kindex with command
1845@kindex w @r{(@code{with})}
1846@cindex settings
1847@cindex temporarily change settings
1848@item with @var{setting} [@var{value}] [-- @var{command}]
1849@itemx w @var{setting} [@var{value}] [-- @var{command}]
1850Temporarily set @var{setting} to @var{value} for the duration of
1851@var{command}.
1852
1853@var{setting} is any setting you can change with the @code{set}
1854subcommands. @var{value} is the value to assign to @code{setting}
1855while running @code{command}.
1856
1857If no @var{command} is provided, the last command executed is
1858repeated.
1859
1860If a @var{command} is provided, it must be preceded by a double dash
1861(@code{--}) separator. This is required because some settings accept
1862free-form arguments, such as expressions or filenames.
1863
1864For example, the command
1865@smallexample
1866(@value{GDBN}) with print array on -- print some_array
1867@end smallexample
1868@noindent
1869is equivalent to the following 3 commands:
1870@smallexample
1871(@value{GDBN}) set print array on
1872(@value{GDBN}) print some_array
1873(@value{GDBN}) set print array off
1874@end smallexample
1875
1876The @code{with} command is particularly useful when you want to
1877override a setting while running user-defined commands, or commands
1878defined in Python or Guile. @xref{Extending GDB,, Extending GDB}.
1879
1880@smallexample
1881(@value{GDBN}) with print pretty on -- my_complex_command
1882@end smallexample
1883
1884To change several settings for the same command, you can nest
1885@code{with} commands. For example, @code{with language ada -- with
1886print elements 10} temporarily changes the language to Ada and sets a
1887limit of 10 elements to print for arrays and strings.
1888
1889@end table
1890
6d2ebf8b 1891@node Completion
79a6e687 1892@section Command Completion
c906108c
SS
1893
1894@cindex completion
1895@cindex word completion
1896@value{GDBN} can fill in the rest of a word in a command for you, if there is
1897only one possibility; it can also show you what the valid possibilities
1898are for the next word in a command, at any time. This works for @value{GDBN}
3345721a
PA
1899commands, @value{GDBN} subcommands, command options, and the names of symbols
1900in your program.
c906108c
SS
1901
1902Press the @key{TAB} key whenever you want @value{GDBN} to fill out the rest
1903of a word. If there is only one possibility, @value{GDBN} fills in the
1904word, and waits for you to finish the command (or press @key{RET} to
1905enter it). For example, if you type
1906
1907@c FIXME "@key" does not distinguish its argument sufficiently to permit
1908@c complete accuracy in these examples; space introduced for clarity.
1909@c If texinfo enhancements make it unnecessary, it would be nice to
1910@c replace " @key" by "@key" in the following...
474c8240 1911@smallexample
c906108c 1912(@value{GDBP}) info bre @key{TAB}
474c8240 1913@end smallexample
c906108c
SS
1914
1915@noindent
1916@value{GDBN} fills in the rest of the word @samp{breakpoints}, since that is
1917the only @code{info} subcommand beginning with @samp{bre}:
1918
474c8240 1919@smallexample
c906108c 1920(@value{GDBP}) info breakpoints
474c8240 1921@end smallexample
c906108c
SS
1922
1923@noindent
1924You can either press @key{RET} at this point, to run the @code{info
1925breakpoints} command, or backspace and enter something else, if
1926@samp{breakpoints} does not look like the command you expected. (If you
1927were sure you wanted @code{info breakpoints} in the first place, you
1928might as well just type @key{RET} immediately after @samp{info bre},
1929to exploit command abbreviations rather than command completion).
1930
1931If there is more than one possibility for the next word when you press
1932@key{TAB}, @value{GDBN} sounds a bell. You can either supply more
1933characters and try again, or just press @key{TAB} a second time;
1934@value{GDBN} displays all the possible completions for that word. For
1935example, you might want to set a breakpoint on a subroutine whose name
1936begins with @samp{make_}, but when you type @kbd{b make_@key{TAB}} @value{GDBN}
1937just sounds the bell. Typing @key{TAB} again displays all the
1938function names in your program that begin with those characters, for
1939example:
1940
474c8240 1941@smallexample
c906108c
SS
1942(@value{GDBP}) b make_ @key{TAB}
1943@exdent @value{GDBN} sounds bell; press @key{TAB} again, to see:
5d161b24
DB
1944make_a_section_from_file make_environ
1945make_abs_section make_function_type
1946make_blockvector make_pointer_type
1947make_cleanup make_reference_type
c906108c
SS
1948make_command make_symbol_completion_list
1949(@value{GDBP}) b make_
474c8240 1950@end smallexample
c906108c
SS
1951
1952@noindent
1953After displaying the available possibilities, @value{GDBN} copies your
1954partial input (@samp{b make_} in the example) so you can finish the
1955command.
1956
1957If you just want to see the list of alternatives in the first place, you
b37052ae 1958can press @kbd{M-?} rather than pressing @key{TAB} twice. @kbd{M-?}
7a292a7a 1959means @kbd{@key{META} ?}. You can type this either by holding down a
c906108c 1960key designated as the @key{META} shift on your keyboard (if there is
7a292a7a 1961one) while typing @kbd{?}, or as @key{ESC} followed by @kbd{?}.
c906108c 1962
ef0b411a
GB
1963If the number of possible completions is large, @value{GDBN} will
1964print as much of the list as it has collected, as well as a message
1965indicating that the list may be truncated.
1966
1967@smallexample
1968(@value{GDBP}) b m@key{TAB}@key{TAB}
1969main
1970<... the rest of the possible completions ...>
1971*** List may be truncated, max-completions reached. ***
1972(@value{GDBP}) b m
1973@end smallexample
1974
1975@noindent
1976This behavior can be controlled with the following commands:
1977
1978@table @code
1979@kindex set max-completions
1980@item set max-completions @var{limit}
1981@itemx set max-completions unlimited
1982Set the maximum number of completion candidates. @value{GDBN} will
1983stop looking for more completions once it collects this many candidates.
1984This is useful when completing on things like function names as collecting
1985all the possible candidates can be time consuming.
1986The default value is 200. A value of zero disables tab-completion.
1987Note that setting either no limit or a very large limit can make
1988completion slow.
1989@kindex show max-completions
1990@item show max-completions
1991Show the maximum number of candidates that @value{GDBN} will collect and show
1992during completion.
1993@end table
1994
c906108c
SS
1995@cindex quotes in commands
1996@cindex completion of quoted strings
1997Sometimes the string you need, while logically a ``word'', may contain
7a292a7a
SS
1998parentheses or other characters that @value{GDBN} normally excludes from
1999its notion of a word. To permit word completion to work in this
2000situation, you may enclose words in @code{'} (single quote marks) in
2001@value{GDBN} commands.
c906108c 2002
d044bac8
PA
2003A likely situation where you might need this is in typing an
2004expression that involves a C@t{++} symbol name with template
2005parameters. This is because when completing expressions, GDB treats
2006the @samp{<} character as word delimiter, assuming that it's the
2007less-than comparison operator (@pxref{C Operators, , C and C@t{++}
2008Operators}).
2009
2010For example, when you want to call a C@t{++} template function
2011interactively using the @code{print} or @code{call} commands, you may
2012need to distinguish whether you mean the version of @code{name} that
2013was specialized for @code{int}, @code{name<int>()}, or the version
2014that was specialized for @code{float}, @code{name<float>()}. To use
2015the word-completion facilities in this situation, type a single quote
b37052ae
EZ
2016@code{'} at the beginning of the function name. This alerts
2017@value{GDBN} that it may need to consider more information than usual
2018when you press @key{TAB} or @kbd{M-?} to request word completion:
c906108c 2019
474c8240 2020@smallexample
d044bac8
PA
2021(@value{GDBP}) p 'func< @kbd{M-?}
2022func<int>() func<float>()
2023(@value{GDBP}) p 'func<
474c8240 2024@end smallexample
c906108c 2025
d044bac8
PA
2026When setting breakpoints however (@pxref{Specify Location}), you don't
2027usually need to type a quote before the function name, because
2028@value{GDBN} understands that you want to set a breakpoint on a
2029function:
c906108c 2030
474c8240 2031@smallexample
d044bac8
PA
2032(@value{GDBP}) b func< @kbd{M-?}
2033func<int>() func<float>()
2034(@value{GDBP}) b func<
474c8240 2035@end smallexample
c906108c 2036
d044bac8
PA
2037This is true even in the case of typing the name of C@t{++} overloaded
2038functions (multiple definitions of the same function, distinguished by
2039argument type). For example, when you want to set a breakpoint you
2040don't need to distinguish whether you mean the version of @code{name}
2041that takes an @code{int} parameter, @code{name(int)}, or the version
2042that takes a @code{float} parameter, @code{name(float)}.
2043
2044@smallexample
2045(@value{GDBP}) b bubble( @kbd{M-?}
2046bubble(int) bubble(double)
2047(@value{GDBP}) b bubble(dou @kbd{M-?}
2048bubble(double)
2049@end smallexample
2050
2051See @ref{quoting names} for a description of other scenarios that
2052require quoting.
c906108c 2053
79a6e687
BW
2054For more information about overloaded functions, see @ref{C Plus Plus
2055Expressions, ,C@t{++} Expressions}. You can use the command @code{set
c906108c 2056overload-resolution off} to disable overload resolution;
79a6e687 2057see @ref{Debugging C Plus Plus, ,@value{GDBN} Features for C@t{++}}.
c906108c 2058
65d12d83
TT
2059@cindex completion of structure field names
2060@cindex structure field name completion
2061@cindex completion of union field names
2062@cindex union field name completion
2063When completing in an expression which looks up a field in a
2064structure, @value{GDBN} also tries@footnote{The completer can be
2065confused by certain kinds of invalid expressions. Also, it only
2066examines the static type of the expression, not the dynamic type.} to
2067limit completions to the field names available in the type of the
2068left-hand-side:
2069
2070@smallexample
2071(@value{GDBP}) p gdb_stdout.@kbd{M-?}
01124a23
DE
2072magic to_fputs to_rewind
2073to_data to_isatty to_write
2074to_delete to_put to_write_async_safe
2075to_flush to_read
65d12d83
TT
2076@end smallexample
2077
2078@noindent
2079This is because the @code{gdb_stdout} is a variable of the type
2080@code{struct ui_file} that is defined in @value{GDBN} sources as
2081follows:
2082
2083@smallexample
2084struct ui_file
2085@{
2086 int *magic;
2087 ui_file_flush_ftype *to_flush;
2088 ui_file_write_ftype *to_write;
01124a23 2089 ui_file_write_async_safe_ftype *to_write_async_safe;
65d12d83
TT
2090 ui_file_fputs_ftype *to_fputs;
2091 ui_file_read_ftype *to_read;
2092 ui_file_delete_ftype *to_delete;
2093 ui_file_isatty_ftype *to_isatty;
2094 ui_file_rewind_ftype *to_rewind;
2095 ui_file_put_ftype *to_put;
2096 void *to_data;
2097@}
2098@end smallexample
2099
3345721a
PA
2100@node Command Options
2101@section Command options
2102
2103@cindex command options
2104Some commands accept options starting with a leading dash. For
2105example, @code{print -pretty}. Similarly to command names, you can
2106abbreviate a @value{GDBN} option to the first few letters of the
2107option name, if that abbreviation is unambiguous, and you can also use
2108the @key{TAB} key to get @value{GDBN} to fill out the rest of a word
2109in an option (or to show you the alternatives available, if there is
2110more than one possibility).
2111
2112@cindex command options, raw input
2113Some commands take raw input as argument. For example, the print
2114command processes arbitrary expressions in any of the languages
2115supported by @value{GDBN}. With such commands, because raw input may
2116start with a leading dash that would be confused with an option or any
d8edc8b7
PW
2117of its abbreviations, e.g.@: @code{print -p} (short for @code{print
2118-pretty} or printing negative @code{p}?), if you specify any command
3345721a
PA
2119option, then you must use a double-dash (@code{--}) delimiter to
2120indicate the end of options.
2121
2122@cindex command options, boolean
2123
2124Some options are described as accepting an argument which can be
2125either @code{on} or @code{off}. These are known as @dfn{boolean
2126options}. Similarly to boolean settings commands---@code{on} and
2127@code{off} are the typical values, but any of @code{1}, @code{yes} and
2128@code{enable} can also be used as ``true'' value, and any of @code{0},
2129@code{no} and @code{disable} can also be used as ``false'' value. You
2130can also omit a ``true'' value, as it is implied by default.
2131
2132For example, these are equivalent:
2133
2134@smallexample
2135(@value{GDBP}) print -object on -pretty off -element unlimited -- *myptr
2136(@value{GDBP}) p -o -p 0 -e u -- *myptr
2137@end smallexample
2138
2139You can discover the set of options some command accepts by completing
2140on @code{-} after the command name. For example:
2141
2142@smallexample
2143(@value{GDBP}) print -@key{TAB}@key{TAB}
d8edc8b7
PW
2144-address -max-depth -raw-values -union
2145-array -null-stop -repeats -vtbl
2146-array-indexes -object -static-members
2147-elements -pretty -symbol
3345721a
PA
2148@end smallexample
2149
2150Completion will in some cases guide you with a suggestion of what kind
2151of argument an option expects. For example:
2152
2153@smallexample
2154(@value{GDBP}) print -elements @key{TAB}@key{TAB}
2155NUMBER unlimited
2156@end smallexample
2157
2158Here, the option expects a number (e.g., @code{100}), not literal
2159@code{NUMBER}. Such metasyntactical arguments are always presented in
2160uppercase.
2161
2162(For more on using the @code{print} command, see @ref{Data, ,Examining
2163Data}.)
c906108c 2164
6d2ebf8b 2165@node Help
79a6e687 2166@section Getting Help
c906108c
SS
2167@cindex online documentation
2168@kindex help
2169
5d161b24 2170You can always ask @value{GDBN} itself for information on its commands,
c906108c
SS
2171using the command @code{help}.
2172
2173@table @code
41afff9a 2174@kindex h @r{(@code{help})}
c906108c
SS
2175@item help
2176@itemx h
2177You can use @code{help} (abbreviated @code{h}) with no arguments to
2178display a short list of named classes of commands:
2179
2180@smallexample
2181(@value{GDBP}) help
2182List of classes of commands:
2183
5b860c93 2184aliases -- User-defined aliases of other commands
c906108c 2185breakpoints -- Making program stop at certain points
2df3850c 2186data -- Examining data
c906108c 2187files -- Specifying and examining files
2df3850c
JM
2188internals -- Maintenance commands
2189obscure -- Obscure features
2190running -- Running the program
2191stack -- Examining the stack
c906108c
SS
2192status -- Status inquiries
2193support -- Support facilities
12c27660 2194tracepoints -- Tracing of program execution without
96a2c332 2195 stopping the program
c906108c 2196user-defined -- User-defined commands
c906108c 2197
5d161b24 2198Type "help" followed by a class name for a list of
c906108c 2199commands in that class.
5d161b24 2200Type "help" followed by command name for full
c906108c
SS
2201documentation.
2202Command name abbreviations are allowed if unambiguous.
2203(@value{GDBP})
2204@end smallexample
96a2c332 2205@c the above line break eliminates huge line overfull...
c906108c
SS
2206
2207@item help @var{class}
2208Using one of the general help classes as an argument, you can get a
5b4a1a8d
PW
2209list of the individual commands in that class. If a command has
2210aliases, the aliases are given after the command name, separated by
5b860c93
PW
2211commas. If an alias has default arguments, the full definition of
2212the alias is given after the first line.
2213For example, here is the help display for the class @code{status}:
c906108c
SS
2214
2215@smallexample
2216(@value{GDBP}) help status
2217Status inquiries.
2218
2219List of commands:
2220
2221@c Line break in "show" line falsifies real output, but needed
2222@c to fit in smallbook page size.
5b4a1a8d 2223info, inf, i -- Generic command for showing things
12c27660 2224 about the program being debugged
5b860c93
PW
2225info address, iamain -- Describe where symbol SYM is stored.
2226 alias iamain = info address main
2227info all-registers -- List of all registers and their contents,
2228 for selected stack frame.
5b4a1a8d
PW
2229...
2230show, info set -- Generic command for showing things
12c27660 2231 about the debugger
c906108c 2232
5d161b24 2233Type "help" followed by command name for full
c906108c
SS
2234documentation.
2235Command name abbreviations are allowed if unambiguous.
2236(@value{GDBP})
2237@end smallexample
2238
2239@item help @var{command}
2240With a command name as @code{help} argument, @value{GDBN} displays a
5b4a1a8d
PW
2241short paragraph on how to use that command. If that command has
2242one or more aliases, @value{GDBN} will display a first line with
2243the command name and all its aliases separated by commas.
5b860c93
PW
2244This first line will be followed by the full definition of all aliases
2245having default arguments.
c906108c 2246
6837a0a2 2247@kindex apropos
e664d728 2248@item apropos [-v] @var{regexp}
09d4efe1 2249The @code{apropos} command searches through all of the @value{GDBN}
6837a0a2 2250commands, and their documentation, for the regular expression specified in
e664d728
PW
2251@var{args}. It prints out all matches found. The optional flag @samp{-v},
2252which stands for @samp{verbose}, indicates to output the full documentation
2253of the matching commands and highlight the parts of the documentation
2254matching @var{regexp}. For example:
6837a0a2
DB
2255
2256@smallexample
16899756 2257apropos alias
6837a0a2
DB
2258@end smallexample
2259
b37052ae
EZ
2260@noindent
2261results in:
6837a0a2
DB
2262
2263@smallexample
e664d728 2264@group
16899756 2265alias -- Define a new command that is an alias of an existing command
5b860c93 2266aliases -- User-defined aliases of other commands
e664d728
PW
2267@end group
2268@end smallexample
2269
2270@noindent
2271while
2272
2273@smallexample
2274apropos -v cut.*thread apply
2275@end smallexample
2276
2277@noindent
2278results in the below output, where @samp{cut for 'thread apply}
2279is highlighted if styling is enabled.
2280
2281@smallexample
2282@group
2283taas -- Apply a command to all threads (ignoring errors
2284and empty output).
2285Usage: taas COMMAND
2286shortcut for 'thread apply all -s COMMAND'
2287
2288tfaas -- Apply a command to all frames of all threads
2289(ignoring errors and empty output).
2290Usage: tfaas COMMAND
2291shortcut for 'thread apply all -s frame apply all -s COMMAND'
2292@end group
6837a0a2
DB
2293@end smallexample
2294
c906108c
SS
2295@kindex complete
2296@item complete @var{args}
2297The @code{complete @var{args}} command lists all the possible completions
2298for the beginning of a command. Use @var{args} to specify the beginning of the
2299command you want completed. For example:
2300
2301@smallexample
2302complete i
2303@end smallexample
2304
2305@noindent results in:
2306
2307@smallexample
2308@group
2df3850c
JM
2309if
2310ignore
c906108c
SS
2311info
2312inspect
c906108c
SS
2313@end group
2314@end smallexample
2315
2316@noindent This is intended for use by @sc{gnu} Emacs.
2317@end table
2318
2319In addition to @code{help}, you can use the @value{GDBN} commands @code{info}
2320and @code{show} to inquire about the state of your program, or the state
2321of @value{GDBN} itself. Each command supports many topics of inquiry; this
2322manual introduces each of them in the appropriate context. The listings
00595b5e
EZ
2323under @code{info} and under @code{show} in the Command, Variable, and
2324Function Index point to all the sub-commands. @xref{Command and Variable
2325Index}.
c906108c
SS
2326
2327@c @group
2328@table @code
2329@kindex info
41afff9a 2330@kindex i @r{(@code{info})}
c906108c
SS
2331@item info
2332This command (abbreviated @code{i}) is for describing the state of your
cda4ce5a 2333program. For example, you can show the arguments passed to a function
c906108c
SS
2334with @code{info args}, list the registers currently in use with @code{info
2335registers}, or list the breakpoints you have set with @code{info breakpoints}.
2336You can get a complete list of the @code{info} sub-commands with
2337@w{@code{help info}}.
2338
2339@kindex set
2340@item set
5d161b24 2341You can assign the result of an expression to an environment variable with
c906108c
SS
2342@code{set}. For example, you can set the @value{GDBN} prompt to a $-sign with
2343@code{set prompt $}.
2344
2345@kindex show
2346@item show
5d161b24 2347In contrast to @code{info}, @code{show} is for describing the state of
c906108c
SS
2348@value{GDBN} itself.
2349You can change most of the things you can @code{show}, by using the
2350related command @code{set}; for example, you can control what number
2351system is used for displays with @code{set radix}, or simply inquire
2352which is currently in use with @code{show radix}.
2353
2354@kindex info set
2355To display all the settable parameters and their current
2356values, you can use @code{show} with no arguments; you may also use
2357@code{info set}. Both commands produce the same display.
2358@c FIXME: "info set" violates the rule that "info" is for state of
2359@c FIXME...program. Ck w/ GNU: "info set" to be called something else,
2360@c FIXME...or change desc of rule---eg "state of prog and debugging session"?
2361@end table
2362@c @end group
2363
6eaaf48b 2364Here are several miscellaneous @code{show} subcommands, all of which are
c906108c
SS
2365exceptional in lacking corresponding @code{set} commands:
2366
2367@table @code
2368@kindex show version
9c16f35a 2369@cindex @value{GDBN} version number
c906108c
SS
2370@item show version
2371Show what version of @value{GDBN} is running. You should include this
2df3850c
JM
2372information in @value{GDBN} bug-reports. If multiple versions of
2373@value{GDBN} are in use at your site, you may need to determine which
2374version of @value{GDBN} you are running; as @value{GDBN} evolves, new
2375commands are introduced, and old ones may wither away. Also, many
2376system vendors ship variant versions of @value{GDBN}, and there are
96a2c332 2377variant versions of @value{GDBN} in @sc{gnu}/Linux distributions as well.
2df3850c
JM
2378The version number is the same as the one announced when you start
2379@value{GDBN}.
c906108c
SS
2380
2381@kindex show copying
09d4efe1 2382@kindex info copying
9c16f35a 2383@cindex display @value{GDBN} copyright
c906108c 2384@item show copying
09d4efe1 2385@itemx info copying
c906108c
SS
2386Display information about permission for copying @value{GDBN}.
2387
2388@kindex show warranty
09d4efe1 2389@kindex info warranty
c906108c 2390@item show warranty
09d4efe1 2391@itemx info warranty
2df3850c 2392Display the @sc{gnu} ``NO WARRANTY'' statement, or a warranty,
96a2c332 2393if your version of @value{GDBN} comes with one.
2df3850c 2394
6eaaf48b
EZ
2395@kindex show configuration
2396@item show configuration
2397Display detailed information about the way @value{GDBN} was configured
2398when it was built. This displays the optional arguments passed to the
2399@file{configure} script and also configuration parameters detected
2400automatically by @command{configure}. When reporting a @value{GDBN}
2401bug (@pxref{GDB Bugs}), it is important to include this information in
2402your report.
2403
c906108c
SS
2404@end table
2405
6d2ebf8b 2406@node Running
c906108c
SS
2407@chapter Running Programs Under @value{GDBN}
2408
2409When you run a program under @value{GDBN}, you must first generate
2410debugging information when you compile it.
7a292a7a
SS
2411
2412You may start @value{GDBN} with its arguments, if any, in an environment
2413of your choice. If you are doing native debugging, you may redirect
2414your program's input and output, debug an already running process, or
2415kill a child process.
c906108c
SS
2416
2417@menu
2418* Compilation:: Compiling for debugging
2419* Starting:: Starting your program
c906108c
SS
2420* Arguments:: Your program's arguments
2421* Environment:: Your program's environment
c906108c
SS
2422
2423* Working Directory:: Your program's working directory
2424* Input/Output:: Your program's input and output
2425* Attach:: Debugging an already-running process
2426* Kill Process:: Killing the child process
65c574f6
PA
2427* Inferiors Connections and Programs:: Debugging multiple inferiors
2428 connections and programs
c906108c 2429* Threads:: Debugging programs with multiple threads
6c95b8df 2430* Forks:: Debugging forks
5c95884b 2431* Checkpoint/Restart:: Setting a @emph{bookmark} to return to later
c906108c
SS
2432@end menu
2433
6d2ebf8b 2434@node Compilation
79a6e687 2435@section Compiling for Debugging
c906108c
SS
2436
2437In order to debug a program effectively, you need to generate
2438debugging information when you compile it. This debugging information
2439is stored in the object file; it describes the data type of each
2440variable or function and the correspondence between source line numbers
2441and addresses in the executable code.
2442
2443To request debugging information, specify the @samp{-g} option when you run
2444the compiler.
2445
514c4d71 2446Programs that are to be shipped to your customers are compiled with
edb3359d 2447optimizations, using the @samp{-O} compiler option. However, some
514c4d71
EZ
2448compilers are unable to handle the @samp{-g} and @samp{-O} options
2449together. Using those compilers, you cannot generate optimized
c906108c
SS
2450executables containing debugging information.
2451
514c4d71 2452@value{NGCC}, the @sc{gnu} C/C@t{++} compiler, supports @samp{-g} with or
53a5351d
JM
2453without @samp{-O}, making it possible to debug optimized code. We
2454recommend that you @emph{always} use @samp{-g} whenever you compile a
2455program. You may think your program is correct, but there is no sense
edb3359d 2456in pushing your luck. For more information, see @ref{Optimized Code}.
c906108c
SS
2457
2458Older versions of the @sc{gnu} C compiler permitted a variant option
2459@w{@samp{-gg}} for debugging information. @value{GDBN} no longer supports this
2460format; if your @sc{gnu} C compiler has this option, do not use it.
2461
514c4d71
EZ
2462@value{GDBN} knows about preprocessor macros and can show you their
2463expansion (@pxref{Macros}). Most compilers do not include information
2464about preprocessor macros in the debugging information if you specify
e0f8f636
TT
2465the @option{-g} flag alone. Version 3.1 and later of @value{NGCC},
2466the @sc{gnu} C compiler, provides macro information if you are using
2467the DWARF debugging format, and specify the option @option{-g3}.
2468
2469@xref{Debugging Options,,Options for Debugging Your Program or GCC,
f5a476a7 2470gcc, Using the @sc{gnu} Compiler Collection (GCC)}, for more
e0f8f636
TT
2471information on @value{NGCC} options affecting debug information.
2472
2473You will have the best debugging experience if you use the latest
2474version of the DWARF debugging format that your compiler supports.
2475DWARF is currently the most expressive and best supported debugging
2476format in @value{GDBN}.
514c4d71 2477
c906108c 2478@need 2000
6d2ebf8b 2479@node Starting
79a6e687 2480@section Starting your Program
c906108c
SS
2481@cindex starting
2482@cindex running
2483
2484@table @code
2485@kindex run
41afff9a 2486@kindex r @r{(@code{run})}
c906108c
SS
2487@item run
2488@itemx r
7a292a7a 2489Use the @code{run} command to start your program under @value{GDBN}.
deb8ff2b
PA
2490You must first specify the program name with an argument to
2491@value{GDBN} (@pxref{Invocation, ,Getting In and Out of
2492@value{GDBN}}), or by using the @code{file} or @code{exec-file}
2493command (@pxref{Files, ,Commands to Specify Files}).
c906108c
SS
2494
2495@end table
2496
c906108c
SS
2497If you are running your program in an execution environment that
2498supports processes, @code{run} creates an inferior process and makes
8edfe269
DJ
2499that process run your program. In some environments without processes,
2500@code{run} jumps to the start of your program. Other targets,
2501like @samp{remote}, are always running. If you get an error
2502message like this one:
2503
2504@smallexample
2505The "remote" target does not support "run".
2506Try "help target" or "continue".
2507@end smallexample
2508
2509@noindent
2510then use @code{continue} to run your program. You may need @code{load}
2511first (@pxref{load}).
c906108c
SS
2512
2513The execution of a program is affected by certain information it
2514receives from its superior. @value{GDBN} provides ways to specify this
2515information, which you must do @emph{before} starting your program. (You
2516can change it after starting your program, but such changes only affect
2517your program the next time you start it.) This information may be
2518divided into four categories:
2519
2520@table @asis
2521@item The @emph{arguments.}
2522Specify the arguments to give your program as the arguments of the
2523@code{run} command. If a shell is available on your target, the shell
2524is used to pass the arguments, so that you may use normal conventions
2525(such as wildcard expansion or variable substitution) in describing
2526the arguments.
2527In Unix systems, you can control which shell is used with the
e43c3e2a 2528@env{SHELL} environment variable. If you do not define @env{SHELL},
98882a26
PA
2529@value{GDBN} uses the default shell (@file{/bin/sh}). You can disable
2530use of any shell with the @code{set startup-with-shell} command (see
2531below for details).
c906108c
SS
2532
2533@item The @emph{environment.}
2534Your program normally inherits its environment from @value{GDBN}, but you can
2535use the @value{GDBN} commands @code{set environment} and @code{unset
2536environment} to change parts of the environment that affect
79a6e687 2537your program. @xref{Environment, ,Your Program's Environment}.
c906108c
SS
2538
2539@item The @emph{working directory.}
d092c5a2
SDJ
2540You can set your program's working directory with the command
2541@kbd{set cwd}. If you do not set any working directory with this
bc3b087d
SDJ
2542command, your program will inherit @value{GDBN}'s working directory if
2543native debugging, or the remote server's working directory if remote
2544debugging. @xref{Working Directory, ,Your Program's Working
2545Directory}.
c906108c
SS
2546
2547@item The @emph{standard input and output.}
2548Your program normally uses the same device for standard input and
2549standard output as @value{GDBN} is using. You can redirect input and output
2550in the @code{run} command line, or you can use the @code{tty} command to
2551set a different device for your program.
79a6e687 2552@xref{Input/Output, ,Your Program's Input and Output}.
c906108c
SS
2553
2554@cindex pipes
2555@emph{Warning:} While input and output redirection work, you cannot use
2556pipes to pass the output of the program you are debugging to another
2557program; if you attempt this, @value{GDBN} is likely to wind up debugging the
2558wrong program.
2559@end table
c906108c
SS
2560
2561When you issue the @code{run} command, your program begins to execute
79a6e687 2562immediately. @xref{Stopping, ,Stopping and Continuing}, for discussion
c906108c
SS
2563of how to arrange for your program to stop. Once your program has
2564stopped, you may call functions in your program, using the @code{print}
2565or @code{call} commands. @xref{Data, ,Examining Data}.
2566
2567If the modification time of your symbol file has changed since the last
2568time @value{GDBN} read its symbols, @value{GDBN} discards its symbol
2569table, and reads it again. When it does this, @value{GDBN} tries to retain
2570your current breakpoints.
2571
4e8b0763
JB
2572@table @code
2573@kindex start
2574@item start
2575@cindex run to main procedure
2576The name of the main procedure can vary from language to language.
2577With C or C@t{++}, the main procedure name is always @code{main}, but
2578other languages such as Ada do not require a specific name for their
2579main procedure. The debugger provides a convenient way to start the
2580execution of the program and to stop at the beginning of the main
2581procedure, depending on the language used.
2582
2583The @samp{start} command does the equivalent of setting a temporary
2584breakpoint at the beginning of the main procedure and then invoking
2585the @samp{run} command.
2586
f018e82f
EZ
2587@cindex elaboration phase
2588Some programs contain an @dfn{elaboration} phase where some startup code is
2589executed before the main procedure is called. This depends on the
2590languages used to write your program. In C@t{++}, for instance,
4e8b0763
JB
2591constructors for static and global objects are executed before
2592@code{main} is called. It is therefore possible that the debugger stops
2593before reaching the main procedure. However, the temporary breakpoint
2594will remain to halt execution.
2595
2596Specify the arguments to give to your program as arguments to the
2597@samp{start} command. These arguments will be given verbatim to the
2598underlying @samp{run} command. Note that the same arguments will be
2599reused if no argument is provided during subsequent calls to
2600@samp{start} or @samp{run}.
2601
2602It is sometimes necessary to debug the program during elaboration. In
4e5a4f58
JB
2603these cases, using the @code{start} command would stop the execution
2604of your program too late, as the program would have already completed
2605the elaboration phase. Under these circumstances, either insert
2606breakpoints in your elaboration code before running your program or
2607use the @code{starti} command.
2608
2609@kindex starti
2610@item starti
2611@cindex run to first instruction
2612The @samp{starti} command does the equivalent of setting a temporary
2613breakpoint at the first instruction of a program's execution and then
2614invoking the @samp{run} command. For programs containing an
2615elaboration phase, the @code{starti} command will stop execution at
2616the start of the elaboration phase.
ccd213ac 2617
41ef2965 2618@anchor{set exec-wrapper}
ccd213ac
DJ
2619@kindex set exec-wrapper
2620@item set exec-wrapper @var{wrapper}
2621@itemx show exec-wrapper
2622@itemx unset exec-wrapper
2623When @samp{exec-wrapper} is set, the specified wrapper is used to
2624launch programs for debugging. @value{GDBN} starts your program
2625with a shell command of the form @kbd{exec @var{wrapper}
2626@var{program}}. Quoting is added to @var{program} and its
2627arguments, but not to @var{wrapper}, so you should add quotes if
2628appropriate for your shell. The wrapper runs until it executes
2629your program, and then @value{GDBN} takes control.
2630
2631You can use any program that eventually calls @code{execve} with
2632its arguments as a wrapper. Several standard Unix utilities do
2633this, e.g.@: @code{env} and @code{nohup}. Any Unix shell script ending
2634with @code{exec "$@@"} will also work.
2635
2636For example, you can use @code{env} to pass an environment variable to
2637the debugged program, without setting the variable in your shell's
2638environment:
2639
2640@smallexample
2641(@value{GDBP}) set exec-wrapper env 'LD_PRELOAD=libtest.so'
2642(@value{GDBP}) run
2643@end smallexample
2644
2645This command is available when debugging locally on most targets, excluding
2646@sc{djgpp}, Cygwin, MS Windows, and QNX Neutrino.
2647
98882a26 2648@kindex set startup-with-shell
aefd8b33 2649@anchor{set startup-with-shell}
98882a26
PA
2650@item set startup-with-shell
2651@itemx set startup-with-shell on
2652@itemx set startup-with-shell off
ca145713 2653@itemx show startup-with-shell
98882a26
PA
2654On Unix systems, by default, if a shell is available on your target,
2655@value{GDBN}) uses it to start your program. Arguments of the
2656@code{run} command are passed to the shell, which does variable
2657substitution, expands wildcard characters and performs redirection of
2658I/O. In some circumstances, it may be useful to disable such use of a
2659shell, for example, when debugging the shell itself or diagnosing
2660startup failures such as:
2661
2662@smallexample
2663(@value{GDBP}) run
2664Starting program: ./a.out
2665During startup program terminated with signal SIGSEGV, Segmentation fault.
2666@end smallexample
2667
2668@noindent
2669which indicates the shell or the wrapper specified with
2670@samp{exec-wrapper} crashed, not your program. Most often, this is
afa332ce
PA
2671caused by something odd in your shell's non-interactive mode
2672initialization file---such as @file{.cshrc} for C-shell,
2673$@file{.zshenv} for the Z shell, or the file specified in the
e43c3e2a 2674@env{BASH_ENV} environment variable for BASH.
98882a26 2675
6a3cb8e8
PA
2676@anchor{set auto-connect-native-target}
2677@kindex set auto-connect-native-target
2678@item set auto-connect-native-target
2679@itemx set auto-connect-native-target on
2680@itemx set auto-connect-native-target off
2681@itemx show auto-connect-native-target
2682
65c574f6
PA
2683By default, if the current inferior is not connected to any target yet
2684(e.g., with @code{target remote}), the @code{run} command starts your
2685program as a native process under @value{GDBN}, on your local machine.
2686If you're sure you don't want to debug programs on your local machine,
2687you can tell @value{GDBN} to not connect to the native target
2688automatically with the @code{set auto-connect-native-target off}
2689command.
6a3cb8e8 2690
65c574f6 2691If @code{on}, which is the default, and if the current inferior is not
6a3cb8e8
PA
2692connected to a target already, the @code{run} command automaticaly
2693connects to the native target, if one is available.
2694
65c574f6
PA
2695If @code{off}, and if the current inferior is not connected to a
2696target already, the @code{run} command fails with an error:
6a3cb8e8
PA
2697
2698@smallexample
2699(@value{GDBP}) run
2700Don't know how to run. Try "help target".
2701@end smallexample
2702
65c574f6
PA
2703If the current inferior is already connected to a target, @value{GDBN}
2704always uses it with the @code{run} command.
6a3cb8e8
PA
2705
2706In any case, you can explicitly connect to the native target with the
2707@code{target native} command. For example,
2708
2709@smallexample
2710(@value{GDBP}) set auto-connect-native-target off
2711(@value{GDBP}) run
2712Don't know how to run. Try "help target".
2713(@value{GDBP}) target native
2714(@value{GDBP}) run
2715Starting program: ./a.out
2716[Inferior 1 (process 10421) exited normally]
2717@end smallexample
2718
2719In case you connected explicitly to the @code{native} target,
2720@value{GDBN} remains connected even if all inferiors exit, ready for
2721the next @code{run} command. Use the @code{disconnect} command to
2722disconnect.
2723
2724Examples of other commands that likewise respect the
2725@code{auto-connect-native-target} setting: @code{attach}, @code{info
2726proc}, @code{info os}.
2727
10568435
JK
2728@kindex set disable-randomization
2729@item set disable-randomization
2730@itemx set disable-randomization on
2731This option (enabled by default in @value{GDBN}) will turn off the native
2732randomization of the virtual address space of the started program. This option
2733is useful for multiple debugging sessions to make the execution better
2734reproducible and memory addresses reusable across debugging sessions.
2735
03583c20
UW
2736This feature is implemented only on certain targets, including @sc{gnu}/Linux.
2737On @sc{gnu}/Linux you can get the same behavior using
10568435
JK
2738
2739@smallexample
2740(@value{GDBP}) set exec-wrapper setarch `uname -m` -R
2741@end smallexample
2742
2743@item set disable-randomization off
2744Leave the behavior of the started executable unchanged. Some bugs rear their
2745ugly heads only when the program is loaded at certain addresses. If your bug
2746disappears when you run the program under @value{GDBN}, that might be because
2747@value{GDBN} by default disables the address randomization on platforms, such
2748as @sc{gnu}/Linux, which do that for stand-alone programs. Use @kbd{set
2749disable-randomization off} to try to reproduce such elusive bugs.
2750
03583c20
UW
2751On targets where it is available, virtual address space randomization
2752protects the programs against certain kinds of security attacks. In these
10568435
JK
2753cases the attacker needs to know the exact location of a concrete executable
2754code. Randomizing its location makes it impossible to inject jumps misusing
2755a code at its expected addresses.
2756
2757Prelinking shared libraries provides a startup performance advantage but it
2758makes addresses in these libraries predictable for privileged processes by
2759having just unprivileged access at the target system. Reading the shared
2760library binary gives enough information for assembling the malicious code
2761misusing it. Still even a prelinked shared library can get loaded at a new
2762random address just requiring the regular relocation process during the
2763startup. Shared libraries not already prelinked are always loaded at
2764a randomly chosen address.
2765
2766Position independent executables (PIE) contain position independent code
2767similar to the shared libraries and therefore such executables get loaded at
2768a randomly chosen address upon startup. PIE executables always load even
2769already prelinked shared libraries at a random address. You can build such
2770executable using @command{gcc -fPIE -pie}.
2771
2772Heap (malloc storage), stack and custom mmap areas are always placed randomly
2773(as long as the randomization is enabled).
2774
2775@item show disable-randomization
2776Show the current setting of the explicit disable of the native randomization of
2777the virtual address space of the started program.
2778
4e8b0763
JB
2779@end table
2780
6d2ebf8b 2781@node Arguments
79a6e687 2782@section Your Program's Arguments
c906108c
SS
2783
2784@cindex arguments (to your program)
2785The arguments to your program can be specified by the arguments of the
5d161b24 2786@code{run} command.
c906108c
SS
2787They are passed to a shell, which expands wildcard characters and
2788performs redirection of I/O, and thence to your program. Your
e43c3e2a
AB
2789@env{SHELL} environment variable (if it exists) specifies what shell
2790@value{GDBN} uses. If you do not define @env{SHELL}, @value{GDBN} uses
d4f3574e
SS
2791the default shell (@file{/bin/sh} on Unix).
2792
2793On non-Unix systems, the program is usually invoked directly by
2794@value{GDBN}, which emulates I/O redirection via the appropriate system
2795calls, and the wildcard characters are expanded by the startup code of
2796the program, not by the shell.
c906108c
SS
2797
2798@code{run} with no arguments uses the same arguments used by the previous
2799@code{run}, or those set by the @code{set args} command.
2800
c906108c 2801@table @code
41afff9a 2802@kindex set args
c906108c
SS
2803@item set args
2804Specify the arguments to be used the next time your program is run. If
2805@code{set args} has no arguments, @code{run} executes your program
2806with no arguments. Once you have run your program with arguments,
2807using @code{set args} before the next @code{run} is the only way to run
2808it again without arguments.
2809
2810@kindex show args
2811@item show args
2812Show the arguments to give your program when it is started.
2813@end table
2814
6d2ebf8b 2815@node Environment
79a6e687 2816@section Your Program's Environment
c906108c
SS
2817
2818@cindex environment (of your program)
2819The @dfn{environment} consists of a set of environment variables and
2820their values. Environment variables conventionally record such things as
2821your user name, your home directory, your terminal type, and your search
2822path for programs to run. Usually you set up environment variables with
2823the shell and they are inherited by all the other programs you run. When
2824debugging, it can be useful to try running your program with a modified
2825environment without having to start @value{GDBN} over again.
2826
2827@table @code
2828@kindex path
2829@item path @var{directory}
e43c3e2a 2830Add @var{directory} to the front of the @env{PATH} environment variable
17cc6a06 2831(the search path for executables) that will be passed to your program.
e43c3e2a 2832The value of @env{PATH} used by @value{GDBN} does not change.
d4f3574e
SS
2833You may specify several directory names, separated by whitespace or by a
2834system-dependent separator character (@samp{:} on Unix, @samp{;} on
2835MS-DOS and MS-Windows). If @var{directory} is already in the path, it
2836is moved to the front, so it is searched sooner.
c906108c
SS
2837
2838You can use the string @samp{$cwd} to refer to whatever is the current
2839working directory at the time @value{GDBN} searches the path. If you
2840use @samp{.} instead, it refers to the directory where you executed the
2841@code{path} command. @value{GDBN} replaces @samp{.} in the
2842@var{directory} argument (with the current path) before adding
2843@var{directory} to the search path.
2844@c 'path' is explicitly nonrepeatable, but RMS points out it is silly to
2845@c document that, since repeating it would be a no-op.
2846
2847@kindex show paths
2848@item show paths
e43c3e2a 2849Display the list of search paths for executables (the @env{PATH}
c906108c
SS
2850environment variable).
2851
2852@kindex show environment
2853@item show environment @r{[}@var{varname}@r{]}
2854Print the value of environment variable @var{varname} to be given to
2855your program when it starts. If you do not supply @var{varname},
2856print the names and values of all environment variables to be given to
2857your program. You can abbreviate @code{environment} as @code{env}.
2858
2859@kindex set environment
0a2dde4a 2860@anchor{set environment}
53a5351d 2861@item set environment @var{varname} @r{[}=@var{value}@r{]}
c906108c 2862Set environment variable @var{varname} to @var{value}. The value
41ef2965 2863changes for your program (and the shell @value{GDBN} uses to launch
697aa1b7 2864it), not for @value{GDBN} itself. The @var{value} may be any string; the
41ef2965
PA
2865values of environment variables are just strings, and any
2866interpretation is supplied by your program itself. The @var{value}
c906108c
SS
2867parameter is optional; if it is eliminated, the variable is set to a
2868null value.
2869@c "any string" here does not include leading, trailing
2870@c blanks. Gnu asks: does anyone care?
2871
2872For example, this command:
2873
474c8240 2874@smallexample
c906108c 2875set env USER = foo
474c8240 2876@end smallexample
c906108c
SS
2877
2878@noindent
d4f3574e 2879tells the debugged program, when subsequently run, that its user is named
c906108c
SS
2880@samp{foo}. (The spaces around @samp{=} are used for clarity here; they
2881are not actually required.)
2882
41ef2965
PA
2883Note that on Unix systems, @value{GDBN} runs your program via a shell,
2884which also inherits the environment set with @code{set environment}.
2885If necessary, you can avoid that by using the @samp{env} program as a
2886wrapper instead of using @code{set environment}. @xref{set
2887exec-wrapper}, for an example doing just that.
2888
0a2dde4a
SDJ
2889Environment variables that are set by the user are also transmitted to
2890@command{gdbserver} to be used when starting the remote inferior.
2891@pxref{QEnvironmentHexEncoded}.
2892
c906108c 2893@kindex unset environment
0a2dde4a 2894@anchor{unset environment}
c906108c
SS
2895@item unset environment @var{varname}
2896Remove variable @var{varname} from the environment to be passed to your
2897program. This is different from @samp{set env @var{varname} =};
2898@code{unset environment} removes the variable from the environment,
2899rather than assigning it an empty value.
0a2dde4a
SDJ
2900
2901Environment variables that are unset by the user are also unset on
2902@command{gdbserver} when starting the remote inferior.
2903@pxref{QEnvironmentUnset}.
c906108c
SS
2904@end table
2905
d4f3574e 2906@emph{Warning:} On Unix systems, @value{GDBN} runs your program using
e43c3e2a
AB
2907the shell indicated by your @env{SHELL} environment variable if it
2908exists (or @code{/bin/sh} if not). If your @env{SHELL} variable
afa332ce
PA
2909names a shell that runs an initialization file when started
2910non-interactively---such as @file{.cshrc} for C-shell, $@file{.zshenv}
e43c3e2a 2911for the Z shell, or the file specified in the @env{BASH_ENV}
afa332ce
PA
2912environment variable for BASH---any variables you set in that file
2913affect your program. You may wish to move setting of environment
2914variables to files that are only run when you sign on, such as
2915@file{.login} or @file{.profile}.
c906108c 2916
6d2ebf8b 2917@node Working Directory
79a6e687 2918@section Your Program's Working Directory
c906108c
SS
2919
2920@cindex working directory (of your program)
d092c5a2
SDJ
2921Each time you start your program with @code{run}, the inferior will be
2922initialized with the current working directory specified by the
2923@kbd{set cwd} command. If no directory has been specified by this
2924command, then the inferior will inherit @value{GDBN}'s current working
bc3b087d
SDJ
2925directory as its working directory if native debugging, or it will
2926inherit the remote server's current working directory if remote
2927debugging.
c906108c
SS
2928
2929@table @code
d092c5a2
SDJ
2930@kindex set cwd
2931@cindex change inferior's working directory
2932@anchor{set cwd command}
2933@item set cwd @r{[}@var{directory}@r{]}
2934Set the inferior's working directory to @var{directory}, which will be
2935@code{glob}-expanded in order to resolve tildes (@file{~}). If no
2936argument has been specified, the command clears the setting and resets
2937it to an empty state. This setting has no effect on @value{GDBN}'s
2938working directory, and it only takes effect the next time you start
2939the inferior. The @file{~} in @var{directory} is a short for the
2940@dfn{home directory}, usually pointed to by the @env{HOME} environment
2941variable. On MS-Windows, if @env{HOME} is not defined, @value{GDBN}
2942uses the concatenation of @env{HOMEDRIVE} and @env{HOMEPATH} as
2943fallback.
2944
2945You can also change @value{GDBN}'s current working directory by using
2946the @code{cd} command.
dbfa4523 2947@xref{cd command}.
d092c5a2
SDJ
2948
2949@kindex show cwd
2950@cindex show inferior's working directory
2951@item show cwd
2952Show the inferior's working directory. If no directory has been
2953specified by @kbd{set cwd}, then the default inferior's working
2954directory is the same as @value{GDBN}'s working directory.
2955
c906108c 2956@kindex cd
d092c5a2
SDJ
2957@cindex change @value{GDBN}'s working directory
2958@anchor{cd command}
f3c8a52a
JK
2959@item cd @r{[}@var{directory}@r{]}
2960Set the @value{GDBN} working directory to @var{directory}. If not
2961given, @var{directory} uses @file{'~'}.
c906108c 2962
d092c5a2
SDJ
2963The @value{GDBN} working directory serves as a default for the
2964commands that specify files for @value{GDBN} to operate on.
2965@xref{Files, ,Commands to Specify Files}.
dbfa4523 2966@xref{set cwd command}.
d092c5a2 2967
c906108c
SS
2968@kindex pwd
2969@item pwd
2970Print the @value{GDBN} working directory.
2971@end table
2972
60bf7e09
EZ
2973It is generally impossible to find the current working directory of
2974the process being debugged (since a program can change its directory
2d97a5d9 2975during its run). If you work on a system where @value{GDBN} supports
754452f0 2976the @code{info proc} command (@pxref{Process Information}), you can
2d97a5d9 2977use the @code{info proc} command to find out the
60bf7e09
EZ
2978current working directory of the debuggee.
2979
6d2ebf8b 2980@node Input/Output
79a6e687 2981@section Your Program's Input and Output
c906108c
SS
2982
2983@cindex redirection
2984@cindex i/o
2985@cindex terminal
2986By default, the program you run under @value{GDBN} does input and output to
5d161b24 2987the same terminal that @value{GDBN} uses. @value{GDBN} switches the terminal
c906108c
SS
2988to its own terminal modes to interact with you, but it records the terminal
2989modes your program was using and switches back to them when you continue
2990running your program.
2991
2992@table @code
2993@kindex info terminal
2994@item info terminal
2995Displays information recorded by @value{GDBN} about the terminal modes your
2996program is using.
2997@end table
2998
2999You can redirect your program's input and/or output using shell
3000redirection with the @code{run} command. For example,
3001
474c8240 3002@smallexample
c906108c 3003run > outfile
474c8240 3004@end smallexample
c906108c
SS
3005
3006@noindent
3007starts your program, diverting its output to the file @file{outfile}.
3008
3009@kindex tty
3010@cindex controlling terminal
3011Another way to specify where your program should do input and output is
3012with the @code{tty} command. This command accepts a file name as
3013argument, and causes this file to be the default for future @code{run}
3014commands. It also resets the controlling terminal for the child
3015process, for future @code{run} commands. For example,
3016
474c8240 3017@smallexample
c906108c 3018tty /dev/ttyb
474c8240 3019@end smallexample
c906108c
SS
3020
3021@noindent
3022directs that processes started with subsequent @code{run} commands
3023default to do input and output on the terminal @file{/dev/ttyb} and have
3024that as their controlling terminal.
3025
3026An explicit redirection in @code{run} overrides the @code{tty} command's
3027effect on the input/output device, but not its effect on the controlling
3028terminal.
3029
3030When you use the @code{tty} command or redirect input in the @code{run}
3031command, only the input @emph{for your program} is affected. The input
3cb3b8df
BR
3032for @value{GDBN} still comes from your terminal. @code{tty} is an alias
3033for @code{set inferior-tty}.
3034
3035@cindex inferior tty
3036@cindex set inferior controlling terminal
3037You can use the @code{show inferior-tty} command to tell @value{GDBN} to
3038display the name of the terminal that will be used for future runs of your
3039program.
3040
3041@table @code
0a1ddfa6 3042@item set inferior-tty [ @var{tty} ]
3cb3b8df 3043@kindex set inferior-tty
0a1ddfa6
SM
3044Set the tty for the program being debugged to @var{tty}. Omitting @var{tty}
3045restores the default behavior, which is to use the same terminal as
3046@value{GDBN}.
3cb3b8df
BR
3047
3048@item show inferior-tty
3049@kindex show inferior-tty
3050Show the current tty for the program being debugged.
3051@end table
c906108c 3052
6d2ebf8b 3053@node Attach
79a6e687 3054@section Debugging an Already-running Process
c906108c
SS
3055@kindex attach
3056@cindex attach
3057
3058@table @code
3059@item attach @var{process-id}
3060This command attaches to a running process---one that was started
3061outside @value{GDBN}. (@code{info files} shows your active
3062targets.) The command takes as argument a process ID. The usual way to
09d4efe1 3063find out the @var{process-id} of a Unix process is with the @code{ps} utility,
c906108c
SS
3064or with the @samp{jobs -l} shell command.
3065
3066@code{attach} does not repeat if you press @key{RET} a second time after
3067executing the command.
3068@end table
3069
3070To use @code{attach}, your program must be running in an environment
3071which supports processes; for example, @code{attach} does not work for
3072programs on bare-board targets that lack an operating system. You must
3073also have permission to send the process a signal.
3074
3075When you use @code{attach}, the debugger finds the program running in
3076the process first by looking in the current working directory, then (if
3077the program is not found) by using the source file search path
79a6e687 3078(@pxref{Source Path, ,Specifying Source Directories}). You can also use
c906108c
SS
3079the @code{file} command to load the program. @xref{Files, ,Commands to
3080Specify Files}.
3081
e47e48f6 3082@anchor{set exec-file-mismatch}
98c59b52
PA
3083If the debugger can determine that the executable file running in the
3084process it is attaching to does not match the current exec-file loaded
3085by @value{GDBN}, the option @code{exec-file-mismatch} specifies how to
3086handle the mismatch. @value{GDBN} tries to compare the files by
3087comparing their build IDs (@pxref{build ID}), if available.
e47e48f6
PW
3088
3089@table @code
3090@kindex exec-file-mismatch
3091@cindex set exec-file-mismatch
3092@item set exec-file-mismatch @samp{ask|warn|off}
3093
98c59b52
PA
3094Whether to detect mismatch between the current executable file loaded
3095by @value{GDBN} and the executable file used to start the process. If
3096@samp{ask}, the default, display a warning and ask the user whether to
3097load the process executable file; if @samp{warn}, just display a
3098warning; if @samp{off}, don't attempt to detect a mismatch.
0a278aa7
PW
3099If the user confirms loading the process executable file, then its symbols
3100will be loaded as well.
e47e48f6
PW
3101
3102@cindex show exec-file-mismatch
3103@item show exec-file-mismatch
3104Show the current value of @code{exec-file-mismatch}.
3105
3106@end table
3107
c906108c
SS
3108The first thing @value{GDBN} does after arranging to debug the specified
3109process is to stop it. You can examine and modify an attached process
53a5351d
JM
3110with all the @value{GDBN} commands that are ordinarily available when
3111you start processes with @code{run}. You can insert breakpoints; you
3112can step and continue; you can modify storage. If you would rather the
3113process continue running, you may use the @code{continue} command after
c906108c
SS
3114attaching @value{GDBN} to the process.
3115
3116@table @code
3117@kindex detach
3118@item detach
3119When you have finished debugging the attached process, you can use the
3120@code{detach} command to release it from @value{GDBN} control. Detaching
3121the process continues its execution. After the @code{detach} command,
3122that process and @value{GDBN} become completely independent once more, and you
3123are ready to @code{attach} another process or start one with @code{run}.
3124@code{detach} does not repeat if you press @key{RET} again after
3125executing the command.
3126@end table
3127
159fcc13
JK
3128If you exit @value{GDBN} while you have an attached process, you detach
3129that process. If you use the @code{run} command, you kill that process.
3130By default, @value{GDBN} asks for confirmation if you try to do either of these
3131things; you can control whether or not you need to confirm by using the
3132@code{set confirm} command (@pxref{Messages/Warnings, ,Optional Warnings and
79a6e687 3133Messages}).
c906108c 3134
6d2ebf8b 3135@node Kill Process
79a6e687 3136@section Killing the Child Process
c906108c
SS
3137
3138@table @code
3139@kindex kill
3140@item kill
3141Kill the child process in which your program is running under @value{GDBN}.
3142@end table
3143
3144This command is useful if you wish to debug a core dump instead of a
3145running process. @value{GDBN} ignores any core dump file while your program
3146is running.
3147
3148On some operating systems, a program cannot be executed outside @value{GDBN}
3149while you have breakpoints set on it inside @value{GDBN}. You can use the
3150@code{kill} command in this situation to permit running your program
3151outside the debugger.
3152
3153The @code{kill} command is also useful if you wish to recompile and
3154relink your program, since on many systems it is impossible to modify an
3155executable file while it is running in a process. In this case, when you
3156next type @code{run}, @value{GDBN} notices that the file has changed, and
3157reads the symbol table again (while trying to preserve your current
3158breakpoint settings).
3159
65c574f6
PA
3160@node Inferiors Connections and Programs
3161@section Debugging Multiple Inferiors Connections and Programs
b77209e0 3162
6c95b8df
PA
3163@value{GDBN} lets you run and debug multiple programs in a single
3164session. In addition, @value{GDBN} on some systems may let you run
3165several programs simultaneously (otherwise you have to exit from one
65c574f6
PA
3166before starting another). On some systems @value{GDBN} may even let
3167you debug several programs simultaneously on different remote systems.
3168In the most general case, you can have multiple threads of execution
3169in each of multiple processes, launched from multiple executables,
3170running on different machines.
b77209e0
PA
3171
3172@cindex inferior
3173@value{GDBN} represents the state of each program execution with an
3174object called an @dfn{inferior}. An inferior typically corresponds to
3175a process, but is more general and applies also to targets that do not
3176have processes. Inferiors may be created before a process runs, and
6c95b8df
PA
3177may be retained after a process exits. Inferiors have unique
3178identifiers that are different from process ids. Usually each
3179inferior will also have its own distinct address space, although some
3180embedded targets may have several inferiors running in different parts
3181of a single address space. Each inferior may in turn have multiple
3182threads running in it.
b77209e0 3183
6c95b8df
PA
3184To find out what inferiors exist at any moment, use @w{@code{info
3185inferiors}}:
b77209e0
PA
3186
3187@table @code
a3c25011 3188@kindex info inferiors [ @var{id}@dots{} ]
b77209e0
PA
3189@item info inferiors
3190Print a list of all inferiors currently being managed by @value{GDBN}.
a3c25011
TT
3191By default all inferiors are printed, but the argument @var{id}@dots{}
3192-- a space separated list of inferior numbers -- can be used to limit
3193the display to just the requested inferiors.
3a1ff0b6
PA
3194
3195@value{GDBN} displays for each inferior (in this order):
3196
3197@enumerate
3198@item
3199the inferior number assigned by @value{GDBN}
3200
3201@item
3202the target system's inferior identifier
6c95b8df 3203
65c574f6
PA
3204@item
3205the target connection the inferior is bound to, including the unique
3206connection number assigned by @value{GDBN}, and the protocol used by
3207the connection.
3208
6c95b8df
PA
3209@item
3210the name of the executable the inferior is running.
3211
3a1ff0b6
PA
3212@end enumerate
3213
3214@noindent
3215An asterisk @samp{*} preceding the @value{GDBN} inferior number
3216indicates the current inferior.
3217
3218For example,
2277426b 3219@end table
3a1ff0b6
PA
3220@c end table here to get a little more width for example
3221
3222@smallexample
3223(@value{GDBP}) info inferiors
65c574f6
PA
3224 Num Description Connection Executable
3225* 1 process 3401 1 (native) goodbye
3226 2 process 2307 2 (extended-remote host:10000) hello
3227@end smallexample
3228
2e3773ff
LS
3229To get informations about the current inferior, use @code{inferior}:
3230
3231@table @code
3232@kindex inferior
3233@item inferior
3234Shows information about the current inferior.
3235
3236For example,
3237@end table
3238@c end table here to get a little more width for example
3239
3240@smallexample
3241(@value{GDBP}) inferior
3242[Current inferior is 1 [process 3401] (helloworld)]
3243@end smallexample
3244
65c574f6
PA
3245To find out what open target connections exist at any moment, use
3246@w{@code{info connections}}:
3247
3248@table @code
3249@kindex info connections [ @var{id}@dots{} ]
3250@item info connections
3251Print a list of all open target connections currently being managed by
3252@value{GDBN}. By default all connections are printed, but the
3253argument @var{id}@dots{} -- a space separated list of connections
3254numbers -- can be used to limit the display to just the requested
3255connections.
3256
3257@value{GDBN} displays for each connection (in this order):
3258
3259@enumerate
3260@item
3261the connection number assigned by @value{GDBN}.
3262
3263@item
3264the protocol used by the connection.
3265
3266@item
3267a textual description of the protocol used by the connection.
3268
3269@end enumerate
3270
3271@noindent
3272An asterisk @samp{*} preceding the connection number indicates the
3273connection of the current inferior.
3274
3275For example,
3276@end table
3277@c end table here to get a little more width for example
3278
3279@smallexample
3280(@value{GDBP}) info connections
3281 Num What Description
3282* 1 extended-remote host:10000 Extended remote serial target in gdb-specific protocol
3283 2 native Native process
3284 3 core Local core dump file
3a1ff0b6 3285@end smallexample
2277426b
PA
3286
3287To switch focus between inferiors, use the @code{inferior} command:
3288
3289@table @code
3a1ff0b6
PA
3290@kindex inferior @var{infno}
3291@item inferior @var{infno}
3292Make inferior number @var{infno} the current inferior. The argument
3293@var{infno} is the inferior number assigned by @value{GDBN}, as shown
3294in the first field of the @samp{info inferiors} display.
2277426b
PA
3295@end table
3296
e3940304
PA
3297@vindex $_inferior@r{, convenience variable}
3298The debugger convenience variable @samp{$_inferior} contains the
3299number of the current inferior. You may find this useful in writing
3300breakpoint conditional expressions, command scripts, and so forth.
3301@xref{Convenience Vars,, Convenience Variables}, for general
3302information on convenience variables.
6c95b8df
PA
3303
3304You can get multiple executables into a debugging session via the
3305@code{add-inferior} and @w{@code{clone-inferior}} commands. On some
3306systems @value{GDBN} can add inferiors to the debug session
3307automatically by following calls to @code{fork} and @code{exec}. To
3308remove inferiors from the debugging session use the
af624141 3309@w{@code{remove-inferiors}} command.
6c95b8df
PA
3310
3311@table @code
3312@kindex add-inferior
65c574f6 3313@item add-inferior [ -copies @var{n} ] [ -exec @var{executable} ] [-no-connection ]
6c95b8df 3314Adds @var{n} inferiors to be run using @var{executable} as the
697aa1b7 3315executable; @var{n} defaults to 1. If no executable is specified,
6c95b8df
PA
3316the inferiors begins empty, with no program. You can still assign or
3317change the program assigned to the inferior at any time by using the
3318@code{file} command with the executable name as its argument.
3319
65c574f6
PA
3320By default, the new inferior begins connected to the same target
3321connection as the current inferior. For example, if the current
3322inferior was connected to @code{gdbserver} with @code{target remote},
3323then the new inferior will be connected to the same @code{gdbserver}
3324instance. The @samp{-no-connection} option starts the new inferior
3325with no connection yet. You can then for example use the @code{target
3326remote} command to connect to some other @code{gdbserver} instance,
3327use @code{run} to spawn a local program, etc.
3328
6c95b8df
PA
3329@kindex clone-inferior
3330@item clone-inferior [ -copies @var{n} ] [ @var{infno} ]
3331Adds @var{n} inferiors ready to execute the same program as inferior
697aa1b7 3332@var{infno}; @var{n} defaults to 1, and @var{infno} defaults to the
6c95b8df
PA
3333number of the current inferior. This is a convenient command when you
3334want to run another instance of the inferior you are debugging.
3335
3336@smallexample
3337(@value{GDBP}) info inferiors
65c574f6
PA
3338 Num Description Connection Executable
3339* 1 process 29964 1 (native) helloworld
6c95b8df
PA
3340(@value{GDBP}) clone-inferior
3341Added inferior 2.
33421 inferiors added.
3343(@value{GDBP}) info inferiors
65c574f6
PA
3344 Num Description Connection Executable
3345* 1 process 29964 1 (native) helloworld
3346 2 <null> 1 (native) helloworld
6c95b8df
PA
3347@end smallexample
3348
3349You can now simply switch focus to inferior 2 and run it.
3350
af624141
MS
3351@kindex remove-inferiors
3352@item remove-inferiors @var{infno}@dots{}
3353Removes the inferior or inferiors @var{infno}@dots{}. It is not
3354possible to remove an inferior that is running with this command. For
3355those, use the @code{kill} or @code{detach} command first.
6c95b8df
PA
3356
3357@end table
3358
3359To quit debugging one of the running inferiors that is not the current
3360inferior, you can either detach from it by using the @w{@code{detach
3361inferior}} command (allowing it to run independently), or kill it
af624141 3362using the @w{@code{kill inferiors}} command:
2277426b
PA
3363
3364@table @code
af624141
MS
3365@kindex detach inferiors @var{infno}@dots{}
3366@item detach inferior @var{infno}@dots{}
3367Detach from the inferior or inferiors identified by @value{GDBN}
5e30da2c 3368inferior number(s) @var{infno}@dots{}. Note that the inferior's entry
af624141
MS
3369still stays on the list of inferiors shown by @code{info inferiors},
3370but its Description will show @samp{<null>}.
3371
3372@kindex kill inferiors @var{infno}@dots{}
3373@item kill inferiors @var{infno}@dots{}
3374Kill the inferior or inferiors identified by @value{GDBN} inferior
3375number(s) @var{infno}@dots{}. Note that the inferior's entry still
3376stays on the list of inferiors shown by @code{info inferiors}, but its
3377Description will show @samp{<null>}.
2277426b
PA
3378@end table
3379
6c95b8df 3380After the successful completion of a command such as @code{detach},
af624141 3381@code{detach inferiors}, @code{kill} or @code{kill inferiors}, or after
6c95b8df
PA
3382a normal process exit, the inferior is still valid and listed with
3383@code{info inferiors}, ready to be restarted.
3384
3385
2277426b
PA
3386To be notified when inferiors are started or exit under @value{GDBN}'s
3387control use @w{@code{set print inferior-events}}:
b77209e0 3388
2277426b 3389@table @code
b77209e0
PA
3390@kindex set print inferior-events
3391@cindex print messages on inferior start and exit
3392@item set print inferior-events
3393@itemx set print inferior-events on
3394@itemx set print inferior-events off
3395The @code{set print inferior-events} command allows you to enable or
3396disable printing of messages when @value{GDBN} notices that new
3397inferiors have started or that inferiors have exited or have been
3398detached. By default, these messages will not be printed.
3399
3400@kindex show print inferior-events
3401@item show print inferior-events
3402Show whether messages will be printed when @value{GDBN} detects that
3403inferiors have started, exited or have been detached.
3404@end table
3405
6c95b8df
PA
3406Many commands will work the same with multiple programs as with a
3407single program: e.g., @code{print myglobal} will simply display the
3408value of @code{myglobal} in the current inferior.
3409
3410
6b92c0d3 3411Occasionally, when debugging @value{GDBN} itself, it may be useful to
6c95b8df
PA
3412get more info about the relationship of inferiors, programs, address
3413spaces in a debug session. You can do that with the @w{@code{maint
3414info program-spaces}} command.
3415
3416@table @code
3417@kindex maint info program-spaces
3418@item maint info program-spaces
3419Print a list of all program spaces currently being managed by
3420@value{GDBN}.
3421
3422@value{GDBN} displays for each program space (in this order):
3423
3424@enumerate
3425@item
3426the program space number assigned by @value{GDBN}
3427
3428@item
3429the name of the executable loaded into the program space, with e.g.,
3430the @code{file} command.
3431
3432@end enumerate
3433
3434@noindent
3435An asterisk @samp{*} preceding the @value{GDBN} program space number
3436indicates the current program space.
3437
3438In addition, below each program space line, @value{GDBN} prints extra
3439information that isn't suitable to display in tabular form. For
3440example, the list of inferiors bound to the program space.
3441
3442@smallexample
3443(@value{GDBP}) maint info program-spaces
3444 Id Executable
b05b1202 3445* 1 hello
6c95b8df
PA
3446 2 goodbye
3447 Bound inferiors: ID 1 (process 21561)
6c95b8df
PA
3448@end smallexample
3449
3450Here we can see that no inferior is running the program @code{hello},
3451while @code{process 21561} is running the program @code{goodbye}. On
3452some targets, it is possible that multiple inferiors are bound to the
3453same program space. The most common example is that of debugging both
3454the parent and child processes of a @code{vfork} call. For example,
3455
3456@smallexample
3457(@value{GDBP}) maint info program-spaces
3458 Id Executable
3459* 1 vfork-test
3460 Bound inferiors: ID 2 (process 18050), ID 1 (process 18045)
3461@end smallexample
3462
3463Here, both inferior 2 and inferior 1 are running in the same program
3464space as a result of inferior 1 having executed a @code{vfork} call.
3465@end table
3466
6d2ebf8b 3467@node Threads
79a6e687 3468@section Debugging Programs with Multiple Threads
c906108c
SS
3469
3470@cindex threads of execution
3471@cindex multiple threads
3472@cindex switching threads
b1236ac3 3473In some operating systems, such as GNU/Linux and Solaris, a single program
c906108c
SS
3474may have more than one @dfn{thread} of execution. The precise semantics
3475of threads differ from one operating system to another, but in general
3476the threads of a single program are akin to multiple processes---except
3477that they share one address space (that is, they can all examine and
3478modify the same variables). On the other hand, each thread has its own
3479registers and execution stack, and perhaps private memory.
3480
3481@value{GDBN} provides these facilities for debugging multi-thread
3482programs:
3483
3484@itemize @bullet
3485@item automatic notification of new threads
5d5658a1 3486@item @samp{thread @var{thread-id}}, a command to switch among threads
c906108c 3487@item @samp{info threads}, a command to inquire about existing threads
0a232300 3488@item @samp{thread apply [@var{thread-id-list} | all] @var{args}},
c906108c
SS
3489a command to apply a command to a list of threads
3490@item thread-specific breakpoints
93815fbf
VP
3491@item @samp{set print thread-events}, which controls printing of
3492messages on thread start and exit.
17a37d48
PP
3493@item @samp{set libthread-db-search-path @var{path}}, which lets
3494the user specify which @code{libthread_db} to use if the default choice
3495isn't compatible with the program.
c906108c
SS
3496@end itemize
3497
c906108c
SS
3498@cindex focus of debugging
3499@cindex current thread
3500The @value{GDBN} thread debugging facility allows you to observe all
3501threads while your program runs---but whenever @value{GDBN} takes
3502control, one thread in particular is always the focus of debugging.
3503This thread is called the @dfn{current thread}. Debugging commands show
3504program information from the perspective of the current thread.
3505
41afff9a 3506@cindex @code{New} @var{systag} message
c906108c
SS
3507@cindex thread identifier (system)
3508@c FIXME-implementors!! It would be more helpful if the [New...] message
3509@c included GDB's numeric thread handle, so you could just go to that
3510@c thread without first checking `info threads'.
3511Whenever @value{GDBN} detects a new thread in your program, it displays
3512the target system's identification for the thread with a message in the
697aa1b7 3513form @samp{[New @var{systag}]}, where @var{systag} is a thread identifier
c906108c 3514whose form varies depending on the particular system. For example, on
8807d78b 3515@sc{gnu}/Linux, you might see
c906108c 3516
474c8240 3517@smallexample
08e796bc 3518[New Thread 0x41e02940 (LWP 25582)]
474c8240 3519@end smallexample
c906108c
SS
3520
3521@noindent
b1236ac3 3522when @value{GDBN} notices a new thread. In contrast, on other systems,
c906108c
SS
3523the @var{systag} is simply something like @samp{process 368}, with no
3524further qualifier.
3525
3526@c FIXME!! (1) Does the [New...] message appear even for the very first
3527@c thread of a program, or does it only appear for the
6ca652b0 3528@c second---i.e.@: when it becomes obvious we have a multithread
c906108c
SS
3529@c program?
3530@c (2) *Is* there necessarily a first thread always? Or do some
3531@c multithread systems permit starting a program with multiple
5d161b24 3532@c threads ab initio?
c906108c 3533
5d5658a1
PA
3534@anchor{thread numbers}
3535@cindex thread number, per inferior
c906108c 3536@cindex thread identifier (GDB)
5d5658a1
PA
3537For debugging purposes, @value{GDBN} associates its own thread number
3538---always a single integer---with each thread of an inferior. This
3539number is unique between all threads of an inferior, but not unique
3540between threads of different inferiors.
3541
3542@cindex qualified thread ID
3543You can refer to a given thread in an inferior using the qualified
3544@var{inferior-num}.@var{thread-num} syntax, also known as
3545@dfn{qualified thread ID}, with @var{inferior-num} being the inferior
3546number and @var{thread-num} being the thread number of the given
3547inferior. For example, thread @code{2.3} refers to thread number 3 of
3548inferior 2. If you omit @var{inferior-num} (e.g., @code{thread 3}),
3549then @value{GDBN} infers you're referring to a thread of the current
3550inferior.
3551
3552Until you create a second inferior, @value{GDBN} does not show the
3553@var{inferior-num} part of thread IDs, even though you can always use
3554the full @var{inferior-num}.@var{thread-num} form to refer to threads
3555of inferior 1, the initial inferior.
3556
3557@anchor{thread ID lists}
3558@cindex thread ID lists
3559Some commands accept a space-separated @dfn{thread ID list} as
71ef29a8
PA
3560argument. A list element can be:
3561
3562@enumerate
3563@item
3564A thread ID as shown in the first field of the @samp{info threads}
3565display, with or without an inferior qualifier. E.g., @samp{2.1} or
3566@samp{1}.
3567
3568@item
3569A range of thread numbers, again with or without an inferior
3570qualifier, as in @var{inf}.@var{thr1}-@var{thr2} or
3571@var{thr1}-@var{thr2}. E.g., @samp{1.2-4} or @samp{2-4}.
3572
3573@item
3574All threads of an inferior, specified with a star wildcard, with or
3575without an inferior qualifier, as in @var{inf}.@code{*} (e.g.,
3576@samp{1.*}) or @code{*}. The former refers to all threads of the
3577given inferior, and the latter form without an inferior qualifier
3578refers to all threads of the current inferior.
3579
3580@end enumerate
3581
3582For example, if the current inferior is 1, and inferior 7 has one
3583thread with ID 7.1, the thread list @samp{1 2-3 4.5 6.7-9 7.*}
3584includes threads 1 to 3 of inferior 1, thread 5 of inferior 4, threads
35857 to 9 of inferior 6 and all threads of inferior 7. That is, in
3586expanded qualified form, the same as @samp{1.1 1.2 1.3 4.5 6.7 6.8 6.9
35877.1}.
3588
5d5658a1
PA
3589
3590@anchor{global thread numbers}
3591@cindex global thread number
3592@cindex global thread identifier (GDB)
3593In addition to a @emph{per-inferior} number, each thread is also
3594assigned a unique @emph{global} number, also known as @dfn{global
3595thread ID}, a single integer. Unlike the thread number component of
3596the thread ID, no two threads have the same global ID, even when
3597you're debugging multiple inferiors.
c906108c 3598
f4f4330e
PA
3599From @value{GDBN}'s perspective, a process always has at least one
3600thread. In other words, @value{GDBN} assigns a thread number to the
3601program's ``main thread'' even if the program is not multi-threaded.
3602
5d5658a1 3603@vindex $_thread@r{, convenience variable}
663f6d42
PA
3604@vindex $_gthread@r{, convenience variable}
3605The debugger convenience variables @samp{$_thread} and
3606@samp{$_gthread} contain, respectively, the per-inferior thread number
3607and the global thread number of the current thread. You may find this
5d5658a1
PA
3608useful in writing breakpoint conditional expressions, command scripts,
3609and so forth. @xref{Convenience Vars,, Convenience Variables}, for
3610general information on convenience variables.
3611
f303dbd6
PA
3612If @value{GDBN} detects the program is multi-threaded, it augments the
3613usual message about stopping at a breakpoint with the ID and name of
3614the thread that hit the breakpoint.
3615
3616@smallexample
3617Thread 2 "client" hit Breakpoint 1, send_message () at client.c:68
3618@end smallexample
3619
3620Likewise when the program receives a signal:
3621
3622@smallexample
3623Thread 1 "main" received signal SIGINT, Interrupt.
3624@end smallexample
3625
c906108c
SS
3626@table @code
3627@kindex info threads
5d5658a1
PA
3628@item info threads @r{[}@var{thread-id-list}@r{]}
3629
3630Display information about one or more threads. With no arguments
3631displays information about all threads. You can specify the list of
3632threads that you want to display using the thread ID list syntax
3633(@pxref{thread ID lists}).
3634
60f98dde 3635@value{GDBN} displays for each thread (in this order):
c906108c
SS
3636
3637@enumerate
09d4efe1 3638@item
5d5658a1 3639the per-inferior thread number assigned by @value{GDBN}
c906108c 3640
c84f6bbf
PA
3641@item
3642the global thread number assigned by @value{GDBN}, if the @samp{-gid}
3643option was specified
3644
09d4efe1
EZ
3645@item
3646the target system's thread identifier (@var{systag})
c906108c 3647
4694da01
TT
3648@item
3649the thread's name, if one is known. A thread can either be named by
3650the user (see @code{thread name}, below), or, in some cases, by the
3651program itself.
3652
09d4efe1
EZ
3653@item
3654the current stack frame summary for that thread
c906108c
SS
3655@end enumerate
3656
3657@noindent
3658An asterisk @samp{*} to the left of the @value{GDBN} thread number
3659indicates the current thread.
3660
5d161b24 3661For example,
c906108c
SS
3662@end table
3663@c end table here to get a little more width for example
3664
3665@smallexample
3666(@value{GDBP}) info threads
e56d7f1e 3667 Id Target Id Frame
c0ecb95f 3668* 1 process 35 thread 13 main (argc=1, argv=0x7ffffff8)
b05b1202
PA
3669 2 process 35 thread 23 0x34e5 in sigpause ()
3670 3 process 35 thread 27 0x34e5 in sigpause ()
c906108c
SS
3671 at threadtest.c:68
3672@end smallexample
53a5351d 3673
5d5658a1
PA
3674If you're debugging multiple inferiors, @value{GDBN} displays thread
3675IDs using the qualified @var{inferior-num}.@var{thread-num} format.
c84f6bbf
PA
3676Otherwise, only @var{thread-num} is shown.
3677
3678If you specify the @samp{-gid} option, @value{GDBN} displays a column
3679indicating each thread's global thread ID:
5d5658a1
PA
3680
3681@smallexample
3682(@value{GDBP}) info threads
c84f6bbf
PA
3683 Id GId Target Id Frame
3684 1.1 1 process 35 thread 13 main (argc=1, argv=0x7ffffff8)
3685 1.2 3 process 35 thread 23 0x34e5 in sigpause ()
3686 1.3 4 process 35 thread 27 0x34e5 in sigpause ()
3687* 2.1 2 process 65 thread 1 main (argc=1, argv=0x7ffffff8)
5d5658a1
PA
3688@end smallexample
3689
c45da7e6
EZ
3690On Solaris, you can display more information about user threads with a
3691Solaris-specific command:
3692
3693@table @code
3694@item maint info sol-threads
3695@kindex maint info sol-threads
3696@cindex thread info (Solaris)
3697Display info on Solaris user threads.
3698@end table
3699
c906108c 3700@table @code
5d5658a1
PA
3701@kindex thread @var{thread-id}
3702@item thread @var{thread-id}
3703Make thread ID @var{thread-id} the current thread. The command
3704argument @var{thread-id} is the @value{GDBN} thread ID, as shown in
3705the first field of the @samp{info threads} display, with or without an
3706inferior qualifier (e.g., @samp{2.1} or @samp{1}).
3707
3708@value{GDBN} responds by displaying the system identifier of the
3709thread you selected, and its current stack frame summary:
c906108c
SS
3710
3711@smallexample
c906108c 3712(@value{GDBP}) thread 2
13fd8b81
TT
3713[Switching to thread 2 (Thread 0xb7fdab70 (LWP 12747))]
3714#0 some_function (ignore=0x0) at example.c:8
37158 printf ("hello\n");
c906108c
SS
3716@end smallexample
3717
3718@noindent
3719As with the @samp{[New @dots{}]} message, the form of the text after
3720@samp{Switching to} depends on your system's conventions for identifying
5d161b24 3721threads.
c906108c 3722
3345721a 3723@anchor{thread apply all}
9c16f35a 3724@kindex thread apply
638ac427 3725@cindex apply command to several threads
0a232300 3726@item thread apply [@var{thread-id-list} | all [-ascending]] [@var{flag}]@dots{} @var{command}
839c27b7 3727The @code{thread apply} command allows you to apply the named
5d5658a1
PA
3728@var{command} to one or more threads. Specify the threads that you
3729want affected using the thread ID list syntax (@pxref{thread ID
3730lists}), or specify @code{all} to apply to all threads. To apply a
3731command to all threads in descending order, type @kbd{thread apply all
253828f1
JK
3732@var{command}}. To apply a command to all threads in ascending order,
3733type @kbd{thread apply all -ascending @var{command}}.
3734
0a232300
PW
3735The @var{flag} arguments control what output to produce and how to handle
3736errors raised when applying @var{command} to a thread. @var{flag}
3737must start with a @code{-} directly followed by one letter in
3738@code{qcs}. If several flags are provided, they must be given
3739individually, such as @code{-c -q}.
3740
3741By default, @value{GDBN} displays some thread information before the
3742output produced by @var{command}, and an error raised during the
3743execution of a @var{command} will abort @code{thread apply}. The
3744following flags can be used to fine-tune this behavior:
3745
3746@table @code
3747@item -c
3748The flag @code{-c}, which stands for @samp{continue}, causes any
3749errors in @var{command} to be displayed, and the execution of
3750@code{thread apply} then continues.
3751@item -s
3752The flag @code{-s}, which stands for @samp{silent}, causes any errors
3753or empty output produced by a @var{command} to be silently ignored.
3754That is, the execution continues, but the thread information and errors
3755are not printed.
3756@item -q
3757The flag @code{-q} (@samp{quiet}) disables printing the thread
3758information.
3759@end table
3760
3761Flags @code{-c} and @code{-s} cannot be used together.
3762
3763@kindex taas
3764@cindex apply command to all threads (ignoring errors and empty output)
3345721a
PA
3765@item taas [@var{option}]@dots{} @var{command}
3766Shortcut for @code{thread apply all -s [@var{option}]@dots{} @var{command}}.
0a232300
PW
3767Applies @var{command} on all threads, ignoring errors and empty output.
3768
3345721a
PA
3769The @code{taas} command accepts the same options as the @code{thread
3770apply all} command. @xref{thread apply all}.
3771
0a232300
PW
3772@kindex tfaas
3773@cindex apply a command to all frames of all threads (ignoring errors and empty output)
3345721a
PA
3774@item tfaas [@var{option}]@dots{} @var{command}
3775Shortcut for @code{thread apply all -s -- frame apply all -s [@var{option}]@dots{} @var{command}}.
0a232300
PW
3776Applies @var{command} on all frames of all threads, ignoring errors
3777and empty output. Note that the flag @code{-s} is specified twice:
3778The first @code{-s} ensures that @code{thread apply} only shows the thread
3779information of the threads for which @code{frame apply} produces
3780some output. The second @code{-s} is needed to ensure that @code{frame
3781apply} shows the frame information of a frame only if the
3782@var{command} successfully produced some output.
3783
3784It can for example be used to print a local variable or a function
3785argument without knowing the thread or frame where this variable or argument
3786is, using:
3787@smallexample
3788(@value{GDBP}) tfaas p some_local_var_i_do_not_remember_where_it_is
3789@end smallexample
3790
3345721a 3791The @code{tfaas} command accepts the same options as the @code{frame
ed788fee 3792apply} command. @xref{Frame Apply,,frame apply}.
93815fbf 3793
4694da01
TT
3794@kindex thread name
3795@cindex name a thread
3796@item thread name [@var{name}]
3797This command assigns a name to the current thread. If no argument is
3798given, any existing user-specified name is removed. The thread name
3799appears in the @samp{info threads} display.
3800
3801On some systems, such as @sc{gnu}/Linux, @value{GDBN} is able to
3802determine the name of the thread as given by the OS. On these
3803systems, a name specified with @samp{thread name} will override the
3804system-give name, and removing the user-specified name will cause
3805@value{GDBN} to once again display the system-specified name.
3806
60f98dde
MS
3807@kindex thread find
3808@cindex search for a thread
3809@item thread find [@var{regexp}]
3810Search for and display thread ids whose name or @var{systag}
3811matches the supplied regular expression.
3812
3813As well as being the complement to the @samp{thread name} command,
3814this command also allows you to identify a thread by its target
3815@var{systag}. For instance, on @sc{gnu}/Linux, the target @var{systag}
3816is the LWP id.
3817
3818@smallexample
3819(@value{GDBN}) thread find 26688
3820Thread 4 has target id 'Thread 0x41e02940 (LWP 26688)'
3821(@value{GDBN}) info thread 4
3822 Id Target Id Frame
3823 4 Thread 0x41e02940 (LWP 26688) 0x00000031ca6cd372 in select ()
3824@end smallexample
3825
93815fbf
VP
3826@kindex set print thread-events
3827@cindex print messages on thread start and exit
3828@item set print thread-events
3829@itemx set print thread-events on
3830@itemx set print thread-events off
3831The @code{set print thread-events} command allows you to enable or
3832disable printing of messages when @value{GDBN} notices that new threads have
3833started or that threads have exited. By default, these messages will
3834be printed if detection of these events is supported by the target.
3835Note that these messages cannot be disabled on all targets.
3836
3837@kindex show print thread-events
3838@item show print thread-events
3839Show whether messages will be printed when @value{GDBN} detects that threads
3840have started and exited.
c906108c
SS
3841@end table
3842
79a6e687 3843@xref{Thread Stops,,Stopping and Starting Multi-thread Programs}, for
c906108c
SS
3844more information about how @value{GDBN} behaves when you stop and start
3845programs with multiple threads.
3846
79a6e687 3847@xref{Set Watchpoints,,Setting Watchpoints}, for information about
c906108c 3848watchpoints in programs with multiple threads.
c906108c 3849
bf88dd68 3850@anchor{set libthread-db-search-path}
17a37d48
PP
3851@table @code
3852@kindex set libthread-db-search-path
3853@cindex search path for @code{libthread_db}
3854@item set libthread-db-search-path @r{[}@var{path}@r{]}
3855If this variable is set, @var{path} is a colon-separated list of
3856directories @value{GDBN} will use to search for @code{libthread_db}.
3857If you omit @var{path}, @samp{libthread-db-search-path} will be reset to
98a5dd13 3858its default value (@code{$sdir:$pdir} on @sc{gnu}/Linux and Solaris systems).
7e0396aa
DE
3859Internally, the default value comes from the @code{LIBTHREAD_DB_SEARCH_PATH}
3860macro.
17a37d48
PP
3861
3862On @sc{gnu}/Linux and Solaris systems, @value{GDBN} uses a ``helper''
3863@code{libthread_db} library to obtain information about threads in the
3864inferior process. @value{GDBN} will use @samp{libthread-db-search-path}
bf88dd68
JK
3865to find @code{libthread_db}. @value{GDBN} also consults first if inferior
3866specific thread debugging library loading is enabled
3867by @samp{set auto-load libthread-db} (@pxref{libthread_db.so.1 file}).
98a5dd13
DE
3868
3869A special entry @samp{$sdir} for @samp{libthread-db-search-path}
3870refers to the default system directories that are
bf88dd68
JK
3871normally searched for loading shared libraries. The @samp{$sdir} entry
3872is the only kind not needing to be enabled by @samp{set auto-load libthread-db}
3873(@pxref{libthread_db.so.1 file}).
98a5dd13
DE
3874
3875A special entry @samp{$pdir} for @samp{libthread-db-search-path}
3876refers to the directory from which @code{libpthread}
3877was loaded in the inferior process.
17a37d48
PP
3878
3879For any @code{libthread_db} library @value{GDBN} finds in above directories,
3880@value{GDBN} attempts to initialize it with the current inferior process.
3881If this initialization fails (which could happen because of a version
3882mismatch between @code{libthread_db} and @code{libpthread}), @value{GDBN}
3883will unload @code{libthread_db}, and continue with the next directory.
3884If none of @code{libthread_db} libraries initialize successfully,
3885@value{GDBN} will issue a warning and thread debugging will be disabled.
3886
3887Setting @code{libthread-db-search-path} is currently implemented
3888only on some platforms.
3889
3890@kindex show libthread-db-search-path
3891@item show libthread-db-search-path
3892Display current libthread_db search path.
02d868e8
PP
3893
3894@kindex set debug libthread-db
3895@kindex show debug libthread-db
3896@cindex debugging @code{libthread_db}
3897@item set debug libthread-db
3898@itemx show debug libthread-db
3899Turns on or off display of @code{libthread_db}-related events.
3900Use @code{1} to enable, @code{0} to disable.
17a37d48
PP
3901@end table
3902
6c95b8df
PA
3903@node Forks
3904@section Debugging Forks
c906108c
SS
3905
3906@cindex fork, debugging programs which call
3907@cindex multiple processes
3908@cindex processes, multiple
53a5351d
JM
3909On most systems, @value{GDBN} has no special support for debugging
3910programs which create additional processes using the @code{fork}
3911function. When a program forks, @value{GDBN} will continue to debug the
3912parent process and the child process will run unimpeded. If you have
3913set a breakpoint in any code which the child then executes, the child
3914will get a @code{SIGTRAP} signal which (unless it catches the signal)
3915will cause it to terminate.
c906108c
SS
3916
3917However, if you want to debug the child process there is a workaround
3918which isn't too painful. Put a call to @code{sleep} in the code which
3919the child process executes after the fork. It may be useful to sleep
3920only if a certain environment variable is set, or a certain file exists,
3921so that the delay need not occur when you don't want to run @value{GDBN}
3922on the child. While the child is sleeping, use the @code{ps} program to
3923get its process ID. Then tell @value{GDBN} (a new invocation of
3924@value{GDBN} if you are also debugging the parent process) to attach to
d4f3574e 3925the child process (@pxref{Attach}). From that point on you can debug
c906108c 3926the child process just like any other process which you attached to.
c906108c 3927
b1236ac3
PA
3928On some systems, @value{GDBN} provides support for debugging programs
3929that create additional processes using the @code{fork} or @code{vfork}
3930functions. On @sc{gnu}/Linux platforms, this feature is supported
19d9d4ef 3931with kernel version 2.5.46 and later.
c906108c 3932
19d9d4ef
DB
3933The fork debugging commands are supported in native mode and when
3934connected to @code{gdbserver} in either @code{target remote} mode or
3935@code{target extended-remote} mode.
0d71eef5 3936
c906108c
SS
3937By default, when a program forks, @value{GDBN} will continue to debug
3938the parent process and the child process will run unimpeded.
3939
3940If you want to follow the child process instead of the parent process,
3941use the command @w{@code{set follow-fork-mode}}.
3942
3943@table @code
3944@kindex set follow-fork-mode
3945@item set follow-fork-mode @var{mode}
3946Set the debugger response to a program call of @code{fork} or
3947@code{vfork}. A call to @code{fork} or @code{vfork} creates a new
9c16f35a 3948process. The @var{mode} argument can be:
c906108c
SS
3949
3950@table @code
3951@item parent
3952The original process is debugged after a fork. The child process runs
2df3850c 3953unimpeded. This is the default.
c906108c
SS
3954
3955@item child
3956The new process is debugged after a fork. The parent process runs
3957unimpeded.
3958
c906108c
SS
3959@end table
3960
9c16f35a 3961@kindex show follow-fork-mode
c906108c 3962@item show follow-fork-mode
2df3850c 3963Display the current debugger response to a @code{fork} or @code{vfork} call.
c906108c
SS
3964@end table
3965
5c95884b
MS
3966@cindex debugging multiple processes
3967On Linux, if you want to debug both the parent and child processes, use the
3968command @w{@code{set detach-on-fork}}.
3969
3970@table @code
3971@kindex set detach-on-fork
3972@item set detach-on-fork @var{mode}
3973Tells gdb whether to detach one of the processes after a fork, or
3974retain debugger control over them both.
3975
3976@table @code
3977@item on
3978The child process (or parent process, depending on the value of
3979@code{follow-fork-mode}) will be detached and allowed to run
3980independently. This is the default.
3981
3982@item off
3983Both processes will be held under the control of @value{GDBN}.
3984One process (child or parent, depending on the value of
3985@code{follow-fork-mode}) is debugged as usual, while the other
3986is held suspended.
3987
3988@end table
3989
11310833
NR
3990@kindex show detach-on-fork
3991@item show detach-on-fork
3992Show whether detach-on-fork mode is on/off.
5c95884b
MS
3993@end table
3994
2277426b
PA
3995If you choose to set @samp{detach-on-fork} mode off, then @value{GDBN}
3996will retain control of all forked processes (including nested forks).
3997You can list the forked processes under the control of @value{GDBN} by
3998using the @w{@code{info inferiors}} command, and switch from one fork
65c574f6
PA
3999to another by using the @code{inferior} command (@pxref{Inferiors Connections and
4000Programs, ,Debugging Multiple Inferiors Connections and Programs}).
5c95884b
MS
4001
4002To quit debugging one of the forked processes, you can either detach
af624141
MS
4003from it by using the @w{@code{detach inferiors}} command (allowing it
4004to run independently), or kill it using the @w{@code{kill inferiors}}
65c574f6
PA
4005command. @xref{Inferiors Connections and Programs, ,Debugging
4006Multiple Inferiors Connections and Programs}.
5c95884b 4007
c906108c
SS
4008If you ask to debug a child process and a @code{vfork} is followed by an
4009@code{exec}, @value{GDBN} executes the new target up to the first
4010breakpoint in the new target. If you have a breakpoint set on
4011@code{main} in your original program, the breakpoint will also be set on
4012the child process's @code{main}.
4013
2277426b
PA
4014On some systems, when a child process is spawned by @code{vfork}, you
4015cannot debug the child or parent until an @code{exec} call completes.
c906108c
SS
4016
4017If you issue a @code{run} command to @value{GDBN} after an @code{exec}
6c95b8df
PA
4018call executes, the new target restarts. To restart the parent
4019process, use the @code{file} command with the parent executable name
4020as its argument. By default, after an @code{exec} call executes,
4021@value{GDBN} discards the symbols of the previous executable image.
4022You can change this behaviour with the @w{@code{set follow-exec-mode}}
4023command.
4024
4025@table @code
4026@kindex set follow-exec-mode
4027@item set follow-exec-mode @var{mode}
4028
4029Set debugger response to a program call of @code{exec}. An
4030@code{exec} call replaces the program image of a process.
4031
4032@code{follow-exec-mode} can be:
4033
4034@table @code
4035@item new
4036@value{GDBN} creates a new inferior and rebinds the process to this
4037new inferior. The program the process was running before the
4038@code{exec} call can be restarted afterwards by restarting the
4039original inferior.
4040
4041For example:
4042
4043@smallexample
4044(@value{GDBP}) info inferiors
4045(gdb) info inferior
4046 Id Description Executable
4047* 1 <null> prog1
4048(@value{GDBP}) run
4049process 12020 is executing new program: prog2
4050Program exited normally.
4051(@value{GDBP}) info inferiors
4052 Id Description Executable
c0ecb95f 4053 1 <null> prog1
b05b1202 4054* 2 <null> prog2
6c95b8df
PA
4055@end smallexample
4056
4057@item same
4058@value{GDBN} keeps the process bound to the same inferior. The new
4059executable image replaces the previous executable loaded in the
4060inferior. Restarting the inferior after the @code{exec} call, with
4061e.g., the @code{run} command, restarts the executable the process was
4062running after the @code{exec} call. This is the default mode.
4063
4064For example:
4065
4066@smallexample
4067(@value{GDBP}) info inferiors
4068 Id Description Executable
4069* 1 <null> prog1
4070(@value{GDBP}) run
4071process 12020 is executing new program: prog2
4072Program exited normally.
4073(@value{GDBP}) info inferiors
4074 Id Description Executable
4075* 1 <null> prog2
4076@end smallexample
4077
4078@end table
4079@end table
c906108c 4080
19d9d4ef
DB
4081@code{follow-exec-mode} is supported in native mode and
4082@code{target extended-remote} mode.
4083
c906108c
SS
4084You can use the @code{catch} command to make @value{GDBN} stop whenever
4085a @code{fork}, @code{vfork}, or @code{exec} call is made. @xref{Set
79a6e687 4086Catchpoints, ,Setting Catchpoints}.
c906108c 4087
5c95884b 4088@node Checkpoint/Restart
79a6e687 4089@section Setting a @emph{Bookmark} to Return to Later
5c95884b
MS
4090
4091@cindex checkpoint
4092@cindex restart
4093@cindex bookmark
4094@cindex snapshot of a process
4095@cindex rewind program state
4096
4097On certain operating systems@footnote{Currently, only
4098@sc{gnu}/Linux.}, @value{GDBN} is able to save a @dfn{snapshot} of a
4099program's state, called a @dfn{checkpoint}, and come back to it
4100later.
4101
4102Returning to a checkpoint effectively undoes everything that has
4103happened in the program since the @code{checkpoint} was saved. This
4104includes changes in memory, registers, and even (within some limits)
4105system state. Effectively, it is like going back in time to the
4106moment when the checkpoint was saved.
4107
4108Thus, if you're stepping thru a program and you think you're
4109getting close to the point where things go wrong, you can save
4110a checkpoint. Then, if you accidentally go too far and miss
4111the critical statement, instead of having to restart your program
4112from the beginning, you can just go back to the checkpoint and
4113start again from there.
4114
4115This can be especially useful if it takes a lot of time or
4116steps to reach the point where you think the bug occurs.
4117
4118To use the @code{checkpoint}/@code{restart} method of debugging:
4119
4120@table @code
4121@kindex checkpoint
4122@item checkpoint
4123Save a snapshot of the debugged program's current execution state.
4124The @code{checkpoint} command takes no arguments, but each checkpoint
4125is assigned a small integer id, similar to a breakpoint id.
4126
4127@kindex info checkpoints
4128@item info checkpoints
4129List the checkpoints that have been saved in the current debugging
4130session. For each checkpoint, the following information will be
4131listed:
4132
4133@table @code
4134@item Checkpoint ID
4135@item Process ID
4136@item Code Address
4137@item Source line, or label
4138@end table
4139
4140@kindex restart @var{checkpoint-id}
4141@item restart @var{checkpoint-id}
4142Restore the program state that was saved as checkpoint number
4143@var{checkpoint-id}. All program variables, registers, stack frames
4144etc.@: will be returned to the values that they had when the checkpoint
4145was saved. In essence, gdb will ``wind back the clock'' to the point
4146in time when the checkpoint was saved.
4147
4148Note that breakpoints, @value{GDBN} variables, command history etc.
4149are not affected by restoring a checkpoint. In general, a checkpoint
4150only restores things that reside in the program being debugged, not in
4151the debugger.
4152
b8db102d
MS
4153@kindex delete checkpoint @var{checkpoint-id}
4154@item delete checkpoint @var{checkpoint-id}
5c95884b
MS
4155Delete the previously-saved checkpoint identified by @var{checkpoint-id}.
4156
4157@end table
4158
4159Returning to a previously saved checkpoint will restore the user state
4160of the program being debugged, plus a significant subset of the system
4161(OS) state, including file pointers. It won't ``un-write'' data from
4162a file, but it will rewind the file pointer to the previous location,
4163so that the previously written data can be overwritten. For files
4164opened in read mode, the pointer will also be restored so that the
4165previously read data can be read again.
4166
4167Of course, characters that have been sent to a printer (or other
4168external device) cannot be ``snatched back'', and characters received
4169from eg.@: a serial device can be removed from internal program buffers,
4170but they cannot be ``pushed back'' into the serial pipeline, ready to
4171be received again. Similarly, the actual contents of files that have
4172been changed cannot be restored (at this time).
4173
4174However, within those constraints, you actually can ``rewind'' your
4175program to a previously saved point in time, and begin debugging it
4176again --- and you can change the course of events so as to debug a
4177different execution path this time.
4178
4179@cindex checkpoints and process id
4180Finally, there is one bit of internal program state that will be
4181different when you return to a checkpoint --- the program's process
4182id. Each checkpoint will have a unique process id (or @var{pid}),
4183and each will be different from the program's original @var{pid}.
4184If your program has saved a local copy of its process id, this could
4185potentially pose a problem.
4186
79a6e687 4187@subsection A Non-obvious Benefit of Using Checkpoints
5c95884b
MS
4188
4189On some systems such as @sc{gnu}/Linux, address space randomization
4190is performed on new processes for security reasons. This makes it
4191difficult or impossible to set a breakpoint, or watchpoint, on an
4192absolute address if you have to restart the program, since the
4193absolute location of a symbol will change from one execution to the
4194next.
4195
4196A checkpoint, however, is an @emph{identical} copy of a process.
4197Therefore if you create a checkpoint at (eg.@:) the start of main,
4198and simply return to that checkpoint instead of restarting the
4199process, you can avoid the effects of address randomization and
4200your symbols will all stay in the same place.
4201
6d2ebf8b 4202@node Stopping
c906108c
SS
4203@chapter Stopping and Continuing
4204
4205The principal purposes of using a debugger are so that you can stop your
4206program before it terminates; or so that, if your program runs into
4207trouble, you can investigate and find out why.
4208
7a292a7a
SS
4209Inside @value{GDBN}, your program may stop for any of several reasons,
4210such as a signal, a breakpoint, or reaching a new line after a
4211@value{GDBN} command such as @code{step}. You may then examine and
4212change variables, set new breakpoints or remove old ones, and then
4213continue execution. Usually, the messages shown by @value{GDBN} provide
4214ample explanation of the status of your program---but you can also
4215explicitly request this information at any time.
c906108c
SS
4216
4217@table @code
4218@kindex info program
4219@item info program
4220Display information about the status of your program: whether it is
7a292a7a 4221running or not, what process it is, and why it stopped.
c906108c
SS
4222@end table
4223
4224@menu
4225* Breakpoints:: Breakpoints, watchpoints, and catchpoints
4226* Continuing and Stepping:: Resuming execution
aad1c02c
TT
4227* Skipping Over Functions and Files::
4228 Skipping over functions and files
c906108c 4229* Signals:: Signals
c906108c 4230* Thread Stops:: Stopping and starting multi-thread programs
c906108c
SS
4231@end menu
4232
6d2ebf8b 4233@node Breakpoints
79a6e687 4234@section Breakpoints, Watchpoints, and Catchpoints
c906108c
SS
4235
4236@cindex breakpoints
4237A @dfn{breakpoint} makes your program stop whenever a certain point in
4238the program is reached. For each breakpoint, you can add conditions to
4239control in finer detail whether your program stops. You can set
4240breakpoints with the @code{break} command and its variants (@pxref{Set
79a6e687 4241Breaks, ,Setting Breakpoints}), to specify the place where your program
c906108c
SS
4242should stop by line number, function name or exact address in the
4243program.
4244
09d4efe1 4245On some systems, you can set breakpoints in shared libraries before
b1236ac3 4246the executable is run.
c906108c
SS
4247
4248@cindex watchpoints
fd60e0df 4249@cindex data breakpoints
c906108c
SS
4250@cindex memory tracing
4251@cindex breakpoint on memory address
4252@cindex breakpoint on variable modification
4253A @dfn{watchpoint} is a special breakpoint that stops your program
fd60e0df 4254when the value of an expression changes. The expression may be a value
0ced0c34 4255of a variable, or it could involve values of one or more variables
fd60e0df
EZ
4256combined by operators, such as @samp{a + b}. This is sometimes called
4257@dfn{data breakpoints}. You must use a different command to set
79a6e687 4258watchpoints (@pxref{Set Watchpoints, ,Setting Watchpoints}), but aside
fd60e0df
EZ
4259from that, you can manage a watchpoint like any other breakpoint: you
4260enable, disable, and delete both breakpoints and watchpoints using the
4261same commands.
c906108c
SS
4262
4263You can arrange to have values from your program displayed automatically
4264whenever @value{GDBN} stops at a breakpoint. @xref{Auto Display,,
79a6e687 4265Automatic Display}.
c906108c
SS
4266
4267@cindex catchpoints
4268@cindex breakpoint on events
4269A @dfn{catchpoint} is another special breakpoint that stops your program
b37052ae 4270when a certain kind of event occurs, such as the throwing of a C@t{++}
c906108c
SS
4271exception or the loading of a library. As with watchpoints, you use a
4272different command to set a catchpoint (@pxref{Set Catchpoints, ,Setting
79a6e687 4273Catchpoints}), but aside from that, you can manage a catchpoint like any
c906108c 4274other breakpoint. (To stop when your program receives a signal, use the
d4f3574e 4275@code{handle} command; see @ref{Signals, ,Signals}.)
c906108c
SS
4276
4277@cindex breakpoint numbers
4278@cindex numbers for breakpoints
4279@value{GDBN} assigns a number to each breakpoint, watchpoint, or
4280catchpoint when you create it; these numbers are successive integers
4281starting with one. In many of the commands for controlling various
4282features of breakpoints you use the breakpoint number to say which
4283breakpoint you want to change. Each breakpoint may be @dfn{enabled} or
4284@dfn{disabled}; if disabled, it has no effect on your program until you
4285enable it again.
4286
c5394b80 4287@cindex breakpoint ranges
18da0c51 4288@cindex breakpoint lists
c5394b80 4289@cindex ranges of breakpoints
18da0c51
MG
4290@cindex lists of breakpoints
4291Some @value{GDBN} commands accept a space-separated list of breakpoints
4292on which to operate. A list element can be either a single breakpoint number,
4293like @samp{5}, or a range of such numbers, like @samp{5-7}.
4294When a breakpoint list is given to a command, all breakpoints in that list
4295are operated on.
c5394b80 4296
c906108c
SS
4297@menu
4298* Set Breaks:: Setting breakpoints
4299* Set Watchpoints:: Setting watchpoints
4300* Set Catchpoints:: Setting catchpoints
4301* Delete Breaks:: Deleting breakpoints
4302* Disabling:: Disabling breakpoints
4303* Conditions:: Break conditions
4304* Break Commands:: Breakpoint command lists
e7e0cddf 4305* Dynamic Printf:: Dynamic printf
6149aea9 4306* Save Breakpoints:: How to save breakpoints in a file
62e5f89c 4307* Static Probe Points:: Listing static probe points
d4f3574e 4308* Error in Breakpoints:: ``Cannot insert breakpoints''
79a6e687 4309* Breakpoint-related Warnings:: ``Breakpoint address adjusted...''
c906108c
SS
4310@end menu
4311
6d2ebf8b 4312@node Set Breaks
79a6e687 4313@subsection Setting Breakpoints
c906108c 4314
5d161b24 4315@c FIXME LMB what does GDB do if no code on line of breakpt?
c906108c
SS
4316@c consider in particular declaration with/without initialization.
4317@c
4318@c FIXME 2 is there stuff on this already? break at fun start, already init?
4319
4320@kindex break
41afff9a
EZ
4321@kindex b @r{(@code{break})}
4322@vindex $bpnum@r{, convenience variable}
c906108c
SS
4323@cindex latest breakpoint
4324Breakpoints are set with the @code{break} command (abbreviated
5d161b24 4325@code{b}). The debugger convenience variable @samp{$bpnum} records the
f3b28801 4326number of the breakpoint you've set most recently; see @ref{Convenience
79a6e687 4327Vars,, Convenience Variables}, for a discussion of what you can do with
c906108c
SS
4328convenience variables.
4329
c906108c 4330@table @code
2a25a5ba
EZ
4331@item break @var{location}
4332Set a breakpoint at the given @var{location}, which can specify a
4333function name, a line number, or an address of an instruction.
4334(@xref{Specify Location}, for a list of all the possible ways to
4335specify a @var{location}.) The breakpoint will stop your program just
4336before it executes any of the code in the specified @var{location}.
4337
c906108c 4338When using source languages that permit overloading of symbols, such as
2a25a5ba 4339C@t{++}, a function name may refer to more than one possible place to break.
6ba66d6a
JB
4340@xref{Ambiguous Expressions,,Ambiguous Expressions}, for a discussion of
4341that situation.
c906108c 4342
45ac276d 4343It is also possible to insert a breakpoint that will stop the program
2c88c651
JB
4344only if a specific thread (@pxref{Thread-Specific Breakpoints})
4345or a specific task (@pxref{Ada Tasks}) hits that breakpoint.
45ac276d 4346
c906108c
SS
4347@item break
4348When called without any arguments, @code{break} sets a breakpoint at
4349the next instruction to be executed in the selected stack frame
4350(@pxref{Stack, ,Examining the Stack}). In any selected frame but the
4351innermost, this makes your program stop as soon as control
4352returns to that frame. This is similar to the effect of a
4353@code{finish} command in the frame inside the selected frame---except
4354that @code{finish} does not leave an active breakpoint. If you use
4355@code{break} without an argument in the innermost frame, @value{GDBN} stops
4356the next time it reaches the current location; this may be useful
4357inside loops.
4358
4359@value{GDBN} normally ignores breakpoints when it resumes execution, until at
4360least one instruction has been executed. If it did not do this, you
4361would be unable to proceed past a breakpoint without first disabling the
4362breakpoint. This rule applies whether or not the breakpoint already
4363existed when your program stopped.
4364
4365@item break @dots{} if @var{cond}
4366Set a breakpoint with condition @var{cond}; evaluate the expression
4367@var{cond} each time the breakpoint is reached, and stop only if the
4368value is nonzero---that is, if @var{cond} evaluates as true.
4369@samp{@dots{}} stands for one of the possible arguments described
4370above (or no argument) specifying where to break. @xref{Conditions,
79a6e687 4371,Break Conditions}, for more information on breakpoint conditions.
c906108c 4372
b5fa468f
TBA
4373The breakpoint may be mapped to multiple locations. If the breakpoint
4374condition @var{cond} is invalid at some but not all of the locations,
4375the locations for which the condition is invalid are disabled. For
4376example, @value{GDBN} reports below that two of the three locations
4377are disabled.
4378
4379@smallexample
4380(@value{GDBP}) break func if a == 10
4381warning: failed to validate condition at location 0x11ce, disabling:
4382 No symbol "a" in current context.
4383warning: failed to validate condition at location 0x11b6, disabling:
4384 No symbol "a" in current context.
4385Breakpoint 1 at 0x11b6: func. (3 locations)
4386@end smallexample
4387
4388Locations that are disabled because of the condition are denoted by an
4389uppercase @code{N} in the output of the @code{info breakpoints}
4390command:
4391
4392@smallexample
4393(@value{GDBP}) info breakpoints
4394Num Type Disp Enb Address What
43951 breakpoint keep y <MULTIPLE>
4396 stop only if a == 10
43971.1 N* 0x00000000000011b6 in ...
43981.2 y 0x00000000000011c2 in ...
43991.3 N* 0x00000000000011ce in ...
4400(*): Breakpoint condition is invalid at this location.
4401@end smallexample
4402
4403If the breakpoint condition @var{cond} is invalid in the context of
4404@emph{all} the locations of the breakpoint, @value{GDBN} refuses to
4405define the breakpoint. For example, if variable @code{foo} is an
4406undefined variable:
4407
4408@smallexample
4409(@value{GDBP}) break func if foo
4410No symbol "foo" in current context.
4411@end smallexample
4412
733d554a
TBA
4413@item break @dots{} -force-condition if @var{cond}
4414There may be cases where the condition @var{cond} is invalid at all
4415the current locations, but the user knows that it will be valid at a
4416future location; for example, because of a library load. In such
4417cases, by using the @code{-force-condition} keyword before @samp{if},
4418@value{GDBN} can be forced to define the breakpoint with the given
4419condition expression instead of refusing it.
4420
4421@smallexample
4422(@value{GDBP}) break func -force-condition if foo
4423warning: failed to validate condition at location 1, disabling:
4424 No symbol "foo" in current context.
4425warning: failed to validate condition at location 2, disabling:
4426 No symbol "foo" in current context.
4427warning: failed to validate condition at location 3, disabling:
4428 No symbol "foo" in current context.
4429Breakpoint 1 at 0x1158: test.c:18. (3 locations)
4430@end smallexample
4431
4432This causes all the present locations where the breakpoint would
4433otherwise be inserted, to be disabled, as seen in the example above.
4434However, if there exist locations at which the condition is valid, the
4435@code{-force-condition} keyword has no effect.
4436
c906108c
SS
4437@kindex tbreak
4438@item tbreak @var{args}
697aa1b7 4439Set a breakpoint enabled only for one stop. The @var{args} are the
c906108c
SS
4440same as for the @code{break} command, and the breakpoint is set in the same
4441way, but the breakpoint is automatically deleted after the first time your
79a6e687 4442program stops there. @xref{Disabling, ,Disabling Breakpoints}.
c906108c 4443
c906108c 4444@kindex hbreak
ba04e063 4445@cindex hardware breakpoints
c906108c 4446@item hbreak @var{args}
697aa1b7 4447Set a hardware-assisted breakpoint. The @var{args} are the same as for the
d4f3574e 4448@code{break} command and the breakpoint is set in the same way, but the
c906108c
SS
4449breakpoint requires hardware support and some target hardware may not
4450have this support. The main purpose of this is EPROM/ROM code
d4f3574e
SS
4451debugging, so you can set a breakpoint at an instruction without
4452changing the instruction. This can be used with the new trap-generation
09d4efe1 4453provided by SPARClite DSU and most x86-based targets. These targets
d4f3574e
SS
4454will generate traps when a program accesses some data or instruction
4455address that is assigned to the debug registers. However the hardware
4456breakpoint registers can take a limited number of breakpoints. For
4457example, on the DSU, only two data breakpoints can be set at a time, and
4458@value{GDBN} will reject this command if more than two are used. Delete
4459or disable unused hardware breakpoints before setting new ones
79a6e687
BW
4460(@pxref{Disabling, ,Disabling Breakpoints}).
4461@xref{Conditions, ,Break Conditions}.
9c16f35a
EZ
4462For remote targets, you can restrict the number of hardware
4463breakpoints @value{GDBN} will use, see @ref{set remote
4464hardware-breakpoint-limit}.
501eef12 4465
c906108c
SS
4466@kindex thbreak
4467@item thbreak @var{args}
697aa1b7 4468Set a hardware-assisted breakpoint enabled only for one stop. The @var{args}
c906108c 4469are the same as for the @code{hbreak} command and the breakpoint is set in
5d161b24 4470the same way. However, like the @code{tbreak} command,
c906108c
SS
4471the breakpoint is automatically deleted after the
4472first time your program stops there. Also, like the @code{hbreak}
5d161b24 4473command, the breakpoint requires hardware support and some target hardware
79a6e687
BW
4474may not have this support. @xref{Disabling, ,Disabling Breakpoints}.
4475See also @ref{Conditions, ,Break Conditions}.
c906108c
SS
4476
4477@kindex rbreak
4478@cindex regular expression
8bd10a10 4479@cindex breakpoints at functions matching a regexp
c45da7e6 4480@cindex set breakpoints in many functions
c906108c 4481@item rbreak @var{regex}
c906108c 4482Set breakpoints on all functions matching the regular expression
11cf8741
JM
4483@var{regex}. This command sets an unconditional breakpoint on all
4484matches, printing a list of all breakpoints it set. Once these
4485breakpoints are set, they are treated just like the breakpoints set with
4486the @code{break} command. You can delete them, disable them, or make
4487them conditional the same way as any other breakpoint.
4488
20813a0b
PW
4489In programs using different languages, @value{GDBN} chooses the syntax
4490to print the list of all breakpoints it sets according to the
4491@samp{set language} value: using @samp{set language auto}
4492(see @ref{Automatically, ,Set Language Automatically}) means to use the
4493language of the breakpoint's function, other values mean to use
4494the manually specified language (see @ref{Manually, ,Set Language Manually}).
4495
11cf8741
JM
4496The syntax of the regular expression is the standard one used with tools
4497like @file{grep}. Note that this is different from the syntax used by
4498shells, so for instance @code{foo*} matches all functions that include
4499an @code{fo} followed by zero or more @code{o}s. There is an implicit
4500@code{.*} leading and trailing the regular expression you supply, so to
4501match only functions that begin with @code{foo}, use @code{^foo}.
c906108c 4502
f7dc1244 4503@cindex non-member C@t{++} functions, set breakpoint in
b37052ae 4504When debugging C@t{++} programs, @code{rbreak} is useful for setting
c906108c
SS
4505breakpoints on overloaded functions that are not members of any special
4506classes.
c906108c 4507
f7dc1244
EZ
4508@cindex set breakpoints on all functions
4509The @code{rbreak} command can be used to set breakpoints in
4510@strong{all} the functions in a program, like this:
4511
4512@smallexample
4513(@value{GDBP}) rbreak .
4514@end smallexample
4515
8bd10a10
CM
4516@item rbreak @var{file}:@var{regex}
4517If @code{rbreak} is called with a filename qualification, it limits
4518the search for functions matching the given regular expression to the
4519specified @var{file}. This can be used, for example, to set breakpoints on
4520every function in a given file:
4521
4522@smallexample
4523(@value{GDBP}) rbreak file.c:.
4524@end smallexample
4525
4526The colon separating the filename qualifier from the regex may
4527optionally be surrounded by spaces.
4528
c906108c
SS
4529@kindex info breakpoints
4530@cindex @code{$_} and @code{info breakpoints}
18da0c51
MG
4531@item info breakpoints @r{[}@var{list}@dots{}@r{]}
4532@itemx info break @r{[}@var{list}@dots{}@r{]}
c906108c 4533Print a table of all breakpoints, watchpoints, and catchpoints set and
45ac1734 4534not deleted. Optional argument @var{n} means print information only
e5a67952
MS
4535about the specified breakpoint(s) (or watchpoint(s) or catchpoint(s)).
4536For each breakpoint, following columns are printed:
c906108c
SS
4537
4538@table @emph
4539@item Breakpoint Numbers
4540@item Type
4541Breakpoint, watchpoint, or catchpoint.
4542@item Disposition
4543Whether the breakpoint is marked to be disabled or deleted when hit.
4544@item Enabled or Disabled
4545Enabled breakpoints are marked with @samp{y}. @samp{n} marks breakpoints
b3db7447 4546that are not enabled.
c906108c 4547@item Address
fe6fbf8b 4548Where the breakpoint is in your program, as a memory address. For a
b3db7447
NR
4549pending breakpoint whose address is not yet known, this field will
4550contain @samp{<PENDING>}. Such breakpoint won't fire until a shared
4551library that has the symbol or line referred by breakpoint is loaded.
4552See below for details. A breakpoint with several locations will
3b784c4f 4553have @samp{<MULTIPLE>} in this field---see below for details.
c906108c
SS
4554@item What
4555Where the breakpoint is in the source for your program, as a file and
2650777c
JJ
4556line number. For a pending breakpoint, the original string passed to
4557the breakpoint command will be listed as it cannot be resolved until
4558the appropriate shared library is loaded in the future.
c906108c
SS
4559@end table
4560
4561@noindent
83364271
LM
4562If a breakpoint is conditional, there are two evaluation modes: ``host'' and
4563``target''. If mode is ``host'', breakpoint condition evaluation is done by
4564@value{GDBN} on the host's side. If it is ``target'', then the condition
4565is evaluated by the target. The @code{info break} command shows
4566the condition on the line following the affected breakpoint, together with
4567its condition evaluation mode in between parentheses.
4568
4569Breakpoint commands, if any, are listed after that. A pending breakpoint is
4570allowed to have a condition specified for it. The condition is not parsed for
4571validity until a shared library is loaded that allows the pending
4572breakpoint to resolve to a valid location.
c906108c
SS
4573
4574@noindent
4575@code{info break} with a breakpoint
4576number @var{n} as argument lists only that breakpoint. The
4577convenience variable @code{$_} and the default examining-address for
4578the @code{x} command are set to the address of the last breakpoint
79a6e687 4579listed (@pxref{Memory, ,Examining Memory}).
c906108c
SS
4580
4581@noindent
4582@code{info break} displays a count of the number of times the breakpoint
4583has been hit. This is especially useful in conjunction with the
4584@code{ignore} command. You can ignore a large number of breakpoint
4585hits, look at the breakpoint info to see how many times the breakpoint
4586was hit, and then run again, ignoring one less than that number. This
4587will get you quickly to the last hit of that breakpoint.
816338b5
SS
4588
4589@noindent
4590For a breakpoints with an enable count (xref) greater than 1,
4591@code{info break} also displays that count.
4592
c906108c
SS
4593@end table
4594
4595@value{GDBN} allows you to set any number of breakpoints at the same place in
4596your program. There is nothing silly or meaningless about this. When
4597the breakpoints are conditional, this is even useful
79a6e687 4598(@pxref{Conditions, ,Break Conditions}).
c906108c 4599
2e9132cc
EZ
4600@cindex multiple locations, breakpoints
4601@cindex breakpoints, multiple locations
fcda367b 4602It is possible that a breakpoint corresponds to several locations
fe6fbf8b
VP
4603in your program. Examples of this situation are:
4604
4605@itemize @bullet
f8eba3c6
TT
4606@item
4607Multiple functions in the program may have the same name.
4608
fe6fbf8b
VP
4609@item
4610For a C@t{++} constructor, the @value{NGCC} compiler generates several
4611instances of the function body, used in different cases.
4612
4613@item
4614For a C@t{++} template function, a given line in the function can
4615correspond to any number of instantiations.
4616
4617@item
4618For an inlined function, a given source line can correspond to
4619several places where that function is inlined.
fe6fbf8b
VP
4620@end itemize
4621
4622In all those cases, @value{GDBN} will insert a breakpoint at all
f8eba3c6 4623the relevant locations.
fe6fbf8b 4624
3b784c4f
EZ
4625A breakpoint with multiple locations is displayed in the breakpoint
4626table using several rows---one header row, followed by one row for
4627each breakpoint location. The header row has @samp{<MULTIPLE>} in the
4628address column. The rows for individual locations contain the actual
4629addresses for locations, and show the functions to which those
4630locations belong. The number column for a location is of the form
fe6fbf8b
VP
4631@var{breakpoint-number}.@var{location-number}.
4632
4633For example:
3b784c4f 4634
fe6fbf8b
VP
4635@smallexample
4636Num Type Disp Enb Address What
46371 breakpoint keep y <MULTIPLE>
4638 stop only if i==1
4639 breakpoint already hit 1 time
46401.1 y 0x080486a2 in void foo<int>() at t.cc:8
46411.2 y 0x080486ca in void foo<double>() at t.cc:8
4642@end smallexample
4643
d0fe4701
XR
4644You cannot delete the individual locations from a breakpoint. However,
4645each location can be individually enabled or disabled by passing
fe6fbf8b 4646@var{breakpoint-number}.@var{location-number} as argument to the
d0fe4701
XR
4647@code{enable} and @code{disable} commands. It's also possible to
4648@code{enable} and @code{disable} a range of @var{location-number}
4649locations using a @var{breakpoint-number} and two @var{location-number}s,
4650in increasing order, separated by a hyphen, like
4651@kbd{@var{breakpoint-number}.@var{location-number1}-@var{location-number2}},
4652in which case @value{GDBN} acts on all the locations in the range (inclusive).
4653Disabling or enabling the parent breakpoint (@pxref{Disabling}) affects
4654all of the locations that belong to that breakpoint.
fe6fbf8b 4655
2650777c 4656@cindex pending breakpoints
fe6fbf8b 4657It's quite common to have a breakpoint inside a shared library.
3b784c4f 4658Shared libraries can be loaded and unloaded explicitly,
fe6fbf8b
VP
4659and possibly repeatedly, as the program is executed. To support
4660this use case, @value{GDBN} updates breakpoint locations whenever
4661any shared library is loaded or unloaded. Typically, you would
fcda367b 4662set a breakpoint in a shared library at the beginning of your
fe6fbf8b
VP
4663debugging session, when the library is not loaded, and when the
4664symbols from the library are not available. When you try to set
4665breakpoint, @value{GDBN} will ask you if you want to set
3b784c4f 4666a so called @dfn{pending breakpoint}---breakpoint whose address
fe6fbf8b
VP
4667is not yet resolved.
4668
4669After the program is run, whenever a new shared library is loaded,
4670@value{GDBN} reevaluates all the breakpoints. When a newly loaded
4671shared library contains the symbol or line referred to by some
4672pending breakpoint, that breakpoint is resolved and becomes an
4673ordinary breakpoint. When a library is unloaded, all breakpoints
4674that refer to its symbols or source lines become pending again.
4675
4676This logic works for breakpoints with multiple locations, too. For
4677example, if you have a breakpoint in a C@t{++} template function, and
4678a newly loaded shared library has an instantiation of that template,
4679a new location is added to the list of locations for the breakpoint.
4680
4681Except for having unresolved address, pending breakpoints do not
4682differ from regular breakpoints. You can set conditions or commands,
4683enable and disable them and perform other breakpoint operations.
4684
4685@value{GDBN} provides some additional commands for controlling what
4686happens when the @samp{break} command cannot resolve breakpoint
4687address specification to an address:
dd79a6cf
JJ
4688
4689@kindex set breakpoint pending
4690@kindex show breakpoint pending
4691@table @code
4692@item set breakpoint pending auto
4693This is the default behavior. When @value{GDBN} cannot find the breakpoint
4694location, it queries you whether a pending breakpoint should be created.
4695
4696@item set breakpoint pending on
4697This indicates that an unrecognized breakpoint location should automatically
4698result in a pending breakpoint being created.
4699
4700@item set breakpoint pending off
4701This indicates that pending breakpoints are not to be created. Any
4702unrecognized breakpoint location results in an error. This setting does
4703not affect any pending breakpoints previously created.
4704
4705@item show breakpoint pending
4706Show the current behavior setting for creating pending breakpoints.
4707@end table
2650777c 4708
fe6fbf8b
VP
4709The settings above only affect the @code{break} command and its
4710variants. Once breakpoint is set, it will be automatically updated
4711as shared libraries are loaded and unloaded.
2650777c 4712
765dc015
VP
4713@cindex automatic hardware breakpoints
4714For some targets, @value{GDBN} can automatically decide if hardware or
4715software breakpoints should be used, depending on whether the
4716breakpoint address is read-only or read-write. This applies to
4717breakpoints set with the @code{break} command as well as to internal
4718breakpoints set by commands like @code{next} and @code{finish}. For
fcda367b 4719breakpoints set with @code{hbreak}, @value{GDBN} will always use hardware
765dc015
VP
4720breakpoints.
4721
18da0c51 4722You can control this automatic behaviour with the following commands:
765dc015
VP
4723
4724@kindex set breakpoint auto-hw
4725@kindex show breakpoint auto-hw
4726@table @code
4727@item set breakpoint auto-hw on
4728This is the default behavior. When @value{GDBN} sets a breakpoint, it
4729will try to use the target memory map to decide if software or hardware
4730breakpoint must be used.
4731
4732@item set breakpoint auto-hw off
4733This indicates @value{GDBN} should not automatically select breakpoint
4734type. If the target provides a memory map, @value{GDBN} will warn when
4735trying to set software breakpoint at a read-only address.
4736@end table
4737
74960c60
VP
4738@value{GDBN} normally implements breakpoints by replacing the program code
4739at the breakpoint address with a special instruction, which, when
4740executed, given control to the debugger. By default, the program
4741code is so modified only when the program is resumed. As soon as
4742the program stops, @value{GDBN} restores the original instructions. This
4743behaviour guards against leaving breakpoints inserted in the
4744target should gdb abrubptly disconnect. However, with slow remote
4745targets, inserting and removing breakpoint can reduce the performance.
4746This behavior can be controlled with the following commands::
4747
4748@kindex set breakpoint always-inserted
4749@kindex show breakpoint always-inserted
4750@table @code
4751@item set breakpoint always-inserted off
33e5cbd6
PA
4752All breakpoints, including newly added by the user, are inserted in
4753the target only when the target is resumed. All breakpoints are
a25a5a45 4754removed from the target when it stops. This is the default mode.
74960c60
VP
4755
4756@item set breakpoint always-inserted on
4757Causes all breakpoints to be inserted in the target at all times. If
4758the user adds a new breakpoint, or changes an existing breakpoint, the
4759breakpoints in the target are updated immediately. A breakpoint is
a25a5a45 4760removed from the target only when breakpoint itself is deleted.
342cc091 4761@end table
765dc015 4762
83364271
LM
4763@value{GDBN} handles conditional breakpoints by evaluating these conditions
4764when a breakpoint breaks. If the condition is true, then the process being
4765debugged stops, otherwise the process is resumed.
4766
4767If the target supports evaluating conditions on its end, @value{GDBN} may
4768download the breakpoint, together with its conditions, to it.
4769
4770This feature can be controlled via the following commands:
4771
4772@kindex set breakpoint condition-evaluation
4773@kindex show breakpoint condition-evaluation
4774@table @code
4775@item set breakpoint condition-evaluation host
4776This option commands @value{GDBN} to evaluate the breakpoint
4777conditions on the host's side. Unconditional breakpoints are sent to
4778the target which in turn receives the triggers and reports them back to GDB
4779for condition evaluation. This is the standard evaluation mode.
4780
4781@item set breakpoint condition-evaluation target
4782This option commands @value{GDBN} to download breakpoint conditions
4783to the target at the moment of their insertion. The target
4784is responsible for evaluating the conditional expression and reporting
4785breakpoint stop events back to @value{GDBN} whenever the condition
4786is true. Due to limitations of target-side evaluation, some conditions
4787cannot be evaluated there, e.g., conditions that depend on local data
4788that is only known to the host. Examples include
4789conditional expressions involving convenience variables, complex types
4790that cannot be handled by the agent expression parser and expressions
4791that are too long to be sent over to the target, specially when the
4792target is a remote system. In these cases, the conditions will be
4793evaluated by @value{GDBN}.
4794
4795@item set breakpoint condition-evaluation auto
4796This is the default mode. If the target supports evaluating breakpoint
4797conditions on its end, @value{GDBN} will download breakpoint conditions to
4798the target (limitations mentioned previously apply). If the target does
4799not support breakpoint condition evaluation, then @value{GDBN} will fallback
4800to evaluating all these conditions on the host's side.
4801@end table
4802
4803
c906108c
SS
4804@cindex negative breakpoint numbers
4805@cindex internal @value{GDBN} breakpoints
eb12ee30
AC
4806@value{GDBN} itself sometimes sets breakpoints in your program for
4807special purposes, such as proper handling of @code{longjmp} (in C
4808programs). These internal breakpoints are assigned negative numbers,
4809starting with @code{-1}; @samp{info breakpoints} does not display them.
c906108c 4810You can see these breakpoints with the @value{GDBN} maintenance command
eb12ee30 4811@samp{maint info breakpoints} (@pxref{maint info breakpoints}).
c906108c
SS
4812
4813
6d2ebf8b 4814@node Set Watchpoints
79a6e687 4815@subsection Setting Watchpoints
c906108c
SS
4816
4817@cindex setting watchpoints
c906108c
SS
4818You can use a watchpoint to stop execution whenever the value of an
4819expression changes, without having to predict a particular place where
fd60e0df
EZ
4820this may happen. (This is sometimes called a @dfn{data breakpoint}.)
4821The expression may be as simple as the value of a single variable, or
4822as complex as many variables combined by operators. Examples include:
4823
4824@itemize @bullet
4825@item
4826A reference to the value of a single variable.
4827
4828@item
4829An address cast to an appropriate data type. For example,
4830@samp{*(int *)0x12345678} will watch a 4-byte region at the specified
4831address (assuming an @code{int} occupies 4 bytes).
4832
4833@item
4834An arbitrarily complex expression, such as @samp{a*b + c/d}. The
4835expression can use any operators valid in the program's native
4836language (@pxref{Languages}).
4837@end itemize
c906108c 4838
fa4727a6
DJ
4839You can set a watchpoint on an expression even if the expression can
4840not be evaluated yet. For instance, you can set a watchpoint on
4841@samp{*global_ptr} before @samp{global_ptr} is initialized.
4842@value{GDBN} will stop when your program sets @samp{global_ptr} and
4843the expression produces a valid value. If the expression becomes
4844valid in some other way than changing a variable (e.g.@: if the memory
4845pointed to by @samp{*global_ptr} becomes readable as the result of a
4846@code{malloc} call), @value{GDBN} may not stop until the next time
4847the expression changes.
4848
82f2d802
EZ
4849@cindex software watchpoints
4850@cindex hardware watchpoints
c906108c 4851Depending on your system, watchpoints may be implemented in software or
2df3850c 4852hardware. @value{GDBN} does software watchpointing by single-stepping your
c906108c
SS
4853program and testing the variable's value each time, which is hundreds of
4854times slower than normal execution. (But this may still be worth it, to
4855catch errors where you have no clue what part of your program is the
4856culprit.)
4857
b1236ac3
PA
4858On some systems, such as most PowerPC or x86-based targets,
4859@value{GDBN} includes support for hardware watchpoints, which do not
4860slow down the running of your program.
c906108c
SS
4861
4862@table @code
4863@kindex watch
5d5658a1 4864@item watch @r{[}-l@r{|}-location@r{]} @var{expr} @r{[}thread @var{thread-id}@r{]} @r{[}mask @var{maskvalue}@r{]}
fd60e0df
EZ
4865Set a watchpoint for an expression. @value{GDBN} will break when the
4866expression @var{expr} is written into by the program and its value
4867changes. The simplest (and the most popular) use of this command is
4868to watch the value of a single variable:
4869
4870@smallexample
4871(@value{GDBP}) watch foo
4872@end smallexample
c906108c 4873
5d5658a1 4874If the command includes a @code{@r{[}thread @var{thread-id}@r{]}}
9c06b0b4 4875argument, @value{GDBN} breaks only when the thread identified by
5d5658a1 4876@var{thread-id} changes the value of @var{expr}. If any other threads
d8b2a693
JB
4877change the value of @var{expr}, @value{GDBN} will not break. Note
4878that watchpoints restricted to a single thread in this way only work
4879with Hardware Watchpoints.
4880
06a64a0b
TT
4881Ordinarily a watchpoint respects the scope of variables in @var{expr}
4882(see below). The @code{-location} argument tells @value{GDBN} to
4883instead watch the memory referred to by @var{expr}. In this case,
4884@value{GDBN} will evaluate @var{expr}, take the address of the result,
4885and watch the memory at that address. The type of the result is used
4886to determine the size of the watched memory. If the expression's
4887result does not have an address, then @value{GDBN} will print an
4888error.
4889
9c06b0b4
TJB
4890The @code{@r{[}mask @var{maskvalue}@r{]}} argument allows creation
4891of masked watchpoints, if the current architecture supports this
4892feature (e.g., PowerPC Embedded architecture, see @ref{PowerPC
4893Embedded}.) A @dfn{masked watchpoint} specifies a mask in addition
4894to an address to watch. The mask specifies that some bits of an address
4895(the bits which are reset in the mask) should be ignored when matching
4896the address accessed by the inferior against the watchpoint address.
4897Thus, a masked watchpoint watches many addresses simultaneously---those
4898addresses whose unmasked bits are identical to the unmasked bits in the
4899watchpoint address. The @code{mask} argument implies @code{-location}.
4900Examples:
4901
4902@smallexample
4903(@value{GDBP}) watch foo mask 0xffff00ff
4904(@value{GDBP}) watch *0xdeadbeef mask 0xffffff00
4905@end smallexample
4906
c906108c 4907@kindex rwatch
5d5658a1 4908@item rwatch @r{[}-l@r{|}-location@r{]} @var{expr} @r{[}thread @var{thread-id}@r{]} @r{[}mask @var{maskvalue}@r{]}
09d4efe1
EZ
4909Set a watchpoint that will break when the value of @var{expr} is read
4910by the program.
c906108c
SS
4911
4912@kindex awatch
5d5658a1 4913@item awatch @r{[}-l@r{|}-location@r{]} @var{expr} @r{[}thread @var{thread-id}@r{]} @r{[}mask @var{maskvalue}@r{]}
09d4efe1
EZ
4914Set a watchpoint that will break when @var{expr} is either read from
4915or written into by the program.
c906108c 4916
18da0c51
MG
4917@kindex info watchpoints @r{[}@var{list}@dots{}@r{]}
4918@item info watchpoints @r{[}@var{list}@dots{}@r{]}
d77f58be
SS
4919This command prints a list of watchpoints, using the same format as
4920@code{info break} (@pxref{Set Breaks}).
c906108c
SS
4921@end table
4922
65d79d4b
SDJ
4923If you watch for a change in a numerically entered address you need to
4924dereference it, as the address itself is just a constant number which will
4925never change. @value{GDBN} refuses to create a watchpoint that watches
4926a never-changing value:
4927
4928@smallexample
4929(@value{GDBP}) watch 0x600850
4930Cannot watch constant value 0x600850.
4931(@value{GDBP}) watch *(int *) 0x600850
4932Watchpoint 1: *(int *) 6293584
4933@end smallexample
4934
c906108c
SS
4935@value{GDBN} sets a @dfn{hardware watchpoint} if possible. Hardware
4936watchpoints execute very quickly, and the debugger reports a change in
4937value at the exact instruction where the change occurs. If @value{GDBN}
4938cannot set a hardware watchpoint, it sets a software watchpoint, which
4939executes more slowly and reports the change in value at the next
82f2d802
EZ
4940@emph{statement}, not the instruction, after the change occurs.
4941
82f2d802
EZ
4942@cindex use only software watchpoints
4943You can force @value{GDBN} to use only software watchpoints with the
4944@kbd{set can-use-hw-watchpoints 0} command. With this variable set to
4945zero, @value{GDBN} will never try to use hardware watchpoints, even if
4946the underlying system supports them. (Note that hardware-assisted
4947watchpoints that were set @emph{before} setting
4948@code{can-use-hw-watchpoints} to zero will still use the hardware
d3e8051b 4949mechanism of watching expression values.)
c906108c 4950
9c16f35a
EZ
4951@table @code
4952@item set can-use-hw-watchpoints
4953@kindex set can-use-hw-watchpoints
4954Set whether or not to use hardware watchpoints.
4955
4956@item show can-use-hw-watchpoints
4957@kindex show can-use-hw-watchpoints
4958Show the current mode of using hardware watchpoints.
4959@end table
4960
4961For remote targets, you can restrict the number of hardware
4962watchpoints @value{GDBN} will use, see @ref{set remote
4963hardware-breakpoint-limit}.
4964
c906108c
SS
4965When you issue the @code{watch} command, @value{GDBN} reports
4966
474c8240 4967@smallexample
c906108c 4968Hardware watchpoint @var{num}: @var{expr}
474c8240 4969@end smallexample
c906108c
SS
4970
4971@noindent
4972if it was able to set a hardware watchpoint.
4973
7be570e7
JM
4974Currently, the @code{awatch} and @code{rwatch} commands can only set
4975hardware watchpoints, because accesses to data that don't change the
4976value of the watched expression cannot be detected without examining
4977every instruction as it is being executed, and @value{GDBN} does not do
4978that currently. If @value{GDBN} finds that it is unable to set a
4979hardware breakpoint with the @code{awatch} or @code{rwatch} command, it
4980will print a message like this:
4981
4982@smallexample
4983Expression cannot be implemented with read/access watchpoint.
4984@end smallexample
4985
4986Sometimes, @value{GDBN} cannot set a hardware watchpoint because the
4987data type of the watched expression is wider than what a hardware
4988watchpoint on the target machine can handle. For example, some systems
4989can only watch regions that are up to 4 bytes wide; on such systems you
4990cannot set hardware watchpoints for an expression that yields a
4991double-precision floating-point number (which is typically 8 bytes
4992wide). As a work-around, it might be possible to break the large region
4993into a series of smaller ones and watch them with separate watchpoints.
4994
4995If you set too many hardware watchpoints, @value{GDBN} might be unable
4996to insert all of them when you resume the execution of your program.
4997Since the precise number of active watchpoints is unknown until such
4998time as the program is about to be resumed, @value{GDBN} might not be
4999able to warn you about this when you set the watchpoints, and the
5000warning will be printed only when the program is resumed:
5001
5002@smallexample
5003Hardware watchpoint @var{num}: Could not insert watchpoint
5004@end smallexample
5005
5006@noindent
5007If this happens, delete or disable some of the watchpoints.
5008
fd60e0df
EZ
5009Watching complex expressions that reference many variables can also
5010exhaust the resources available for hardware-assisted watchpoints.
5011That's because @value{GDBN} needs to watch every variable in the
5012expression with separately allocated resources.
5013
c906108c 5014If you call a function interactively using @code{print} or @code{call},
2df3850c 5015any watchpoints you have set will be inactive until @value{GDBN} reaches another
c906108c
SS
5016kind of breakpoint or the call completes.
5017
7be570e7
JM
5018@value{GDBN} automatically deletes watchpoints that watch local
5019(automatic) variables, or expressions that involve such variables, when
5020they go out of scope, that is, when the execution leaves the block in
5021which these variables were defined. In particular, when the program
5022being debugged terminates, @emph{all} local variables go out of scope,
5023and so only watchpoints that watch global variables remain set. If you
5024rerun the program, you will need to set all such watchpoints again. One
5025way of doing that would be to set a code breakpoint at the entry to the
5026@code{main} function and when it breaks, set all the watchpoints.
5027
c906108c
SS
5028@cindex watchpoints and threads
5029@cindex threads and watchpoints
d983da9c
DJ
5030In multi-threaded programs, watchpoints will detect changes to the
5031watched expression from every thread.
5032
5033@quotation
5034@emph{Warning:} In multi-threaded programs, software watchpoints
53a5351d
JM
5035have only limited usefulness. If @value{GDBN} creates a software
5036watchpoint, it can only watch the value of an expression @emph{in a
5037single thread}. If you are confident that the expression can only
5038change due to the current thread's activity (and if you are also
5039confident that no other thread can become current), then you can use
5040software watchpoints as usual. However, @value{GDBN} may not notice
5041when a non-current thread's activity changes the expression. (Hardware
5042watchpoints, in contrast, watch an expression in all threads.)
c906108c 5043@end quotation
c906108c 5044
501eef12
AC
5045@xref{set remote hardware-watchpoint-limit}.
5046
6d2ebf8b 5047@node Set Catchpoints
79a6e687 5048@subsection Setting Catchpoints
d4f3574e 5049@cindex catchpoints, setting
c906108c
SS
5050@cindex exception handlers
5051@cindex event handling
5052
5053You can use @dfn{catchpoints} to cause the debugger to stop for certain
b37052ae 5054kinds of program events, such as C@t{++} exceptions or the loading of a
c906108c
SS
5055shared library. Use the @code{catch} command to set a catchpoint.
5056
5057@table @code
5058@kindex catch
5059@item catch @var{event}
697aa1b7 5060Stop when @var{event} occurs. The @var{event} can be any of the following:
591f19e8 5061
c906108c 5062@table @code
cc16e6c9
TT
5063@item throw @r{[}@var{regexp}@r{]}
5064@itemx rethrow @r{[}@var{regexp}@r{]}
5065@itemx catch @r{[}@var{regexp}@r{]}
1a4f73eb
TT
5066@kindex catch throw
5067@kindex catch rethrow
5068@kindex catch catch
4644b6e3 5069@cindex stop on C@t{++} exceptions
591f19e8
TT
5070The throwing, re-throwing, or catching of a C@t{++} exception.
5071
cc16e6c9
TT
5072If @var{regexp} is given, then only exceptions whose type matches the
5073regular expression will be caught.
5074
72f1fe8a
TT
5075@vindex $_exception@r{, convenience variable}
5076The convenience variable @code{$_exception} is available at an
5077exception-related catchpoint, on some systems. This holds the
5078exception being thrown.
5079
591f19e8
TT
5080There are currently some limitations to C@t{++} exception handling in
5081@value{GDBN}:
c906108c 5082
591f19e8
TT
5083@itemize @bullet
5084@item
5085The support for these commands is system-dependent. Currently, only
5086systems using the @samp{gnu-v3} C@t{++} ABI (@pxref{ABI}) are
5087supported.
5088
72f1fe8a 5089@item
cc16e6c9
TT
5090The regular expression feature and the @code{$_exception} convenience
5091variable rely on the presence of some SDT probes in @code{libstdc++}.
5092If these probes are not present, then these features cannot be used.
dee368d3
TT
5093These probes were first available in the GCC 4.8 release, but whether
5094or not they are available in your GCC also depends on how it was
5095built.
72f1fe8a
TT
5096
5097@item
5098The @code{$_exception} convenience variable is only valid at the
5099instruction at which an exception-related catchpoint is set.
5100
591f19e8
TT
5101@item
5102When an exception-related catchpoint is hit, @value{GDBN} stops at a
5103location in the system library which implements runtime exception
5104support for C@t{++}, usually @code{libstdc++}. You can use @code{up}
5105(@pxref{Selection}) to get to your code.
5106
5107@item
5108If you call a function interactively, @value{GDBN} normally returns
5109control to you when the function has finished executing. If the call
5110raises an exception, however, the call may bypass the mechanism that
5111returns control to you and cause your program either to abort or to
5112simply continue running until it hits a breakpoint, catches a signal
5113that @value{GDBN} is listening for, or exits. This is the case even if
5114you set a catchpoint for the exception; catchpoints on exceptions are
5115disabled within interactive calls. @xref{Calling}, for information on
5116controlling this with @code{set unwind-on-terminating-exception}.
5117
5118@item
5119You cannot raise an exception interactively.
5120
5121@item
5122You cannot install an exception handler interactively.
5123@end itemize
c906108c 5124
b8e07335 5125@item exception @r{[}@var{name}@r{]}
1a4f73eb 5126@kindex catch exception
8936fcda
JB
5127@cindex Ada exception catching
5128@cindex catch Ada exceptions
5129An Ada exception being raised. If an exception name is specified
5130at the end of the command (eg @code{catch exception Program_Error}),
5131the debugger will stop only when this specific exception is raised.
5132Otherwise, the debugger stops execution when any Ada exception is raised.
5133
87f67dba
JB
5134When inserting an exception catchpoint on a user-defined exception whose
5135name is identical to one of the exceptions defined by the language, the
5136fully qualified name must be used as the exception name. Otherwise,
5137@value{GDBN} will assume that it should stop on the pre-defined exception
5138rather than the user-defined one. For instance, assuming an exception
5139called @code{Constraint_Error} is defined in package @code{Pck}, then
5140the command to use to catch such exceptions is @kbd{catch exception
5141Pck.Constraint_Error}.
5142
37f6a7f4
TT
5143@vindex $_ada_exception@r{, convenience variable}
5144The convenience variable @code{$_ada_exception} holds the address of
5145the exception being thrown. This can be useful when setting a
5146condition for such a catchpoint.
5147
b8e07335
TT
5148@item exception unhandled
5149@kindex catch exception unhandled
37f6a7f4
TT
5150An exception that was raised but is not handled by the program. The
5151convenience variable @code{$_ada_exception} is set as for @code{catch
5152exception}.
b8e07335
TT
5153
5154@item handlers @r{[}@var{name}@r{]}
9f757bf7
XR
5155@kindex catch handlers
5156@cindex Ada exception handlers catching
5157@cindex catch Ada exceptions when handled
5158An Ada exception being handled. If an exception name is
5159specified at the end of the command
5160 (eg @kbd{catch handlers Program_Error}), the debugger will stop
5161only when this specific exception is handled.
5162Otherwise, the debugger stops execution when any Ada exception is handled.
5163
5164When inserting a handlers catchpoint on a user-defined
5165exception whose name is identical to one of the exceptions
5166defined by the language, the fully qualified name must be used
5167as the exception name. Otherwise, @value{GDBN} will assume that it
5168should stop on the pre-defined exception rather than the
5169user-defined one. For instance, assuming an exception called
5170 @code{Constraint_Error} is defined in package @code{Pck}, then the
5171command to use to catch such exceptions handling is
5172@kbd{catch handlers Pck.Constraint_Error}.
5173
37f6a7f4
TT
5174The convenience variable @code{$_ada_exception} is set as for
5175@code{catch exception}.
5176
8936fcda 5177@item assert
1a4f73eb 5178@kindex catch assert
37f6a7f4
TT
5179A failed Ada assertion. Note that the convenience variable
5180@code{$_ada_exception} is @emph{not} set by this catchpoint.
8936fcda 5181
c906108c 5182@item exec
1a4f73eb 5183@kindex catch exec
4644b6e3 5184@cindex break on fork/exec
b1236ac3 5185A call to @code{exec}.
c906108c 5186
e9076973 5187@anchor{catch syscall}
a96d9b2e 5188@item syscall
e3487908 5189@itemx syscall @r{[}@var{name} @r{|} @var{number} @r{|} @r{group:}@var{groupname} @r{|} @r{g:}@var{groupname}@r{]} @dots{}
1a4f73eb 5190@kindex catch syscall
a96d9b2e
SDJ
5191@cindex break on a system call.
5192A call to or return from a system call, a.k.a.@: @dfn{syscall}. A
5193syscall is a mechanism for application programs to request a service
5194from the operating system (OS) or one of the OS system services.
5195@value{GDBN} can catch some or all of the syscalls issued by the
5196debuggee, and show the related information for each syscall. If no
5197argument is specified, calls to and returns from all system calls
5198will be caught.
5199
5200@var{name} can be any system call name that is valid for the
5201underlying OS. Just what syscalls are valid depends on the OS. On
5202GNU and Unix systems, you can find the full list of valid syscall
5203names on @file{/usr/include/asm/unistd.h}.
5204
5205@c For MS-Windows, the syscall names and the corresponding numbers
5206@c can be found, e.g., on this URL:
5207@c http://www.metasploit.com/users/opcode/syscalls.html
5208@c but we don't support Windows syscalls yet.
5209
5210Normally, @value{GDBN} knows in advance which syscalls are valid for
5211each OS, so you can use the @value{GDBN} command-line completion
5212facilities (@pxref{Completion,, command completion}) to list the
5213available choices.
5214
5215You may also specify the system call numerically. A syscall's
5216number is the value passed to the OS's syscall dispatcher to
5217identify the requested service. When you specify the syscall by its
5218name, @value{GDBN} uses its database of syscalls to convert the name
5219into the corresponding numeric code, but using the number directly
5220may be useful if @value{GDBN}'s database does not have the complete
5221list of syscalls on your system (e.g., because @value{GDBN} lags
5222behind the OS upgrades).
5223
e3487908
GKB
5224You may specify a group of related syscalls to be caught at once using
5225the @code{group:} syntax (@code{g:} is a shorter equivalent). For
5226instance, on some platforms @value{GDBN} allows you to catch all
5227network related syscalls, by passing the argument @code{group:network}
5228to @code{catch syscall}. Note that not all syscall groups are
5229available in every system. You can use the command completion
5230facilities (@pxref{Completion,, command completion}) to list the
5231syscall groups available on your environment.
5232
a96d9b2e
SDJ
5233The example below illustrates how this command works if you don't provide
5234arguments to it:
5235
5236@smallexample
5237(@value{GDBP}) catch syscall
5238Catchpoint 1 (syscall)
5239(@value{GDBP}) r
5240Starting program: /tmp/catch-syscall
5241
5242Catchpoint 1 (call to syscall 'close'), \
5243 0xffffe424 in __kernel_vsyscall ()
5244(@value{GDBP}) c
5245Continuing.
5246
5247Catchpoint 1 (returned from syscall 'close'), \
5248 0xffffe424 in __kernel_vsyscall ()
5249(@value{GDBP})
5250@end smallexample
5251
5252Here is an example of catching a system call by name:
5253
5254@smallexample
5255(@value{GDBP}) catch syscall chroot
5256Catchpoint 1 (syscall 'chroot' [61])
5257(@value{GDBP}) r
5258Starting program: /tmp/catch-syscall
5259
5260Catchpoint 1 (call to syscall 'chroot'), \
5261 0xffffe424 in __kernel_vsyscall ()
5262(@value{GDBP}) c
5263Continuing.
5264
5265Catchpoint 1 (returned from syscall 'chroot'), \
5266 0xffffe424 in __kernel_vsyscall ()
5267(@value{GDBP})
5268@end smallexample
5269
5270An example of specifying a system call numerically. In the case
5271below, the syscall number has a corresponding entry in the XML
5272file, so @value{GDBN} finds its name and prints it:
5273
5274@smallexample
5275(@value{GDBP}) catch syscall 252
5276Catchpoint 1 (syscall(s) 'exit_group')
5277(@value{GDBP}) r
5278Starting program: /tmp/catch-syscall
5279
5280Catchpoint 1 (call to syscall 'exit_group'), \
5281 0xffffe424 in __kernel_vsyscall ()
5282(@value{GDBP}) c
5283Continuing.
5284
5285Program exited normally.
5286(@value{GDBP})
5287@end smallexample
5288
e3487908
GKB
5289Here is an example of catching a syscall group:
5290
5291@smallexample
5292(@value{GDBP}) catch syscall group:process
5293Catchpoint 1 (syscalls 'exit' [1] 'fork' [2] 'waitpid' [7]
5294'execve' [11] 'wait4' [114] 'clone' [120] 'vfork' [190]
5295'exit_group' [252] 'waitid' [284] 'unshare' [310])
5296(@value{GDBP}) r
5297Starting program: /tmp/catch-syscall
5298
5299Catchpoint 1 (call to syscall fork), 0x00007ffff7df4e27 in open64 ()
5300 from /lib64/ld-linux-x86-64.so.2
5301
5302(@value{GDBP}) c
5303Continuing.
5304@end smallexample
5305
a96d9b2e
SDJ
5306However, there can be situations when there is no corresponding name
5307in XML file for that syscall number. In this case, @value{GDBN} prints
5308a warning message saying that it was not able to find the syscall name,
5309but the catchpoint will be set anyway. See the example below:
5310
5311@smallexample
5312(@value{GDBP}) catch syscall 764
5313warning: The number '764' does not represent a known syscall.
5314Catchpoint 2 (syscall 764)
5315(@value{GDBP})
5316@end smallexample
5317
5318If you configure @value{GDBN} using the @samp{--without-expat} option,
5319it will not be able to display syscall names. Also, if your
5320architecture does not have an XML file describing its system calls,
5321you will not be able to see the syscall names. It is important to
5322notice that these two features are used for accessing the syscall
5323name database. In either case, you will see a warning like this:
5324
5325@smallexample
5326(@value{GDBP}) catch syscall
5327warning: Could not open "syscalls/i386-linux.xml"
5328warning: Could not load the syscall XML file 'syscalls/i386-linux.xml'.
5329GDB will not be able to display syscall names.
5330Catchpoint 1 (syscall)
5331(@value{GDBP})
5332@end smallexample
5333
5334Of course, the file name will change depending on your architecture and system.
5335
5336Still using the example above, you can also try to catch a syscall by its
5337number. In this case, you would see something like:
5338
5339@smallexample
5340(@value{GDBP}) catch syscall 252
5341Catchpoint 1 (syscall(s) 252)
5342@end smallexample
5343
5344Again, in this case @value{GDBN} would not be able to display syscall's names.
5345
c906108c 5346@item fork
1a4f73eb 5347@kindex catch fork
b1236ac3 5348A call to @code{fork}.
c906108c
SS
5349
5350@item vfork
1a4f73eb 5351@kindex catch vfork
b1236ac3 5352A call to @code{vfork}.
c906108c 5353
b8e07335
TT
5354@item load @r{[}@var{regexp}@r{]}
5355@itemx unload @r{[}@var{regexp}@r{]}
1a4f73eb
TT
5356@kindex catch load
5357@kindex catch unload
edcc5120
TT
5358The loading or unloading of a shared library. If @var{regexp} is
5359given, then the catchpoint will stop only if the regular expression
5360matches one of the affected libraries.
5361
ab04a2af 5362@item signal @r{[}@var{signal}@dots{} @r{|} @samp{all}@r{]}
1a4f73eb 5363@kindex catch signal
ab04a2af
TT
5364The delivery of a signal.
5365
5366With no arguments, this catchpoint will catch any signal that is not
5367used internally by @value{GDBN}, specifically, all signals except
5368@samp{SIGTRAP} and @samp{SIGINT}.
5369
5370With the argument @samp{all}, all signals, including those used by
5371@value{GDBN}, will be caught. This argument cannot be used with other
5372signal names.
5373
5374Otherwise, the arguments are a list of signal names as given to
5375@code{handle} (@pxref{Signals}). Only signals specified in this list
5376will be caught.
5377
5378One reason that @code{catch signal} can be more useful than
5379@code{handle} is that you can attach commands and conditions to the
5380catchpoint.
5381
5382When a signal is caught by a catchpoint, the signal's @code{stop} and
5383@code{print} settings, as specified by @code{handle}, are ignored.
5384However, whether the signal is still delivered to the inferior depends
5385on the @code{pass} setting; this can be changed in the catchpoint's
5386commands.
5387
c906108c
SS
5388@end table
5389
5390@item tcatch @var{event}
1a4f73eb 5391@kindex tcatch
c906108c
SS
5392Set a catchpoint that is enabled only for one stop. The catchpoint is
5393automatically deleted after the first time the event is caught.
5394
5395@end table
5396
5397Use the @code{info break} command to list the current catchpoints.
5398
c906108c 5399
6d2ebf8b 5400@node Delete Breaks
79a6e687 5401@subsection Deleting Breakpoints
c906108c
SS
5402
5403@cindex clearing breakpoints, watchpoints, catchpoints
5404@cindex deleting breakpoints, watchpoints, catchpoints
5405It is often necessary to eliminate a breakpoint, watchpoint, or
5406catchpoint once it has done its job and you no longer want your program
5407to stop there. This is called @dfn{deleting} the breakpoint. A
5408breakpoint that has been deleted no longer exists; it is forgotten.
5409
5410With the @code{clear} command you can delete breakpoints according to
5411where they are in your program. With the @code{delete} command you can
5412delete individual breakpoints, watchpoints, or catchpoints by specifying
5413their breakpoint numbers.
5414
5415It is not necessary to delete a breakpoint to proceed past it. @value{GDBN}
5416automatically ignores breakpoints on the first instruction to be executed
5417when you continue execution without changing the execution address.
5418
5419@table @code
5420@kindex clear
5421@item clear
5422Delete any breakpoints at the next instruction to be executed in the
79a6e687 5423selected stack frame (@pxref{Selection, ,Selecting a Frame}). When
c906108c
SS
5424the innermost frame is selected, this is a good way to delete a
5425breakpoint where your program just stopped.
5426
2a25a5ba
EZ
5427@item clear @var{location}
5428Delete any breakpoints set at the specified @var{location}.
5429@xref{Specify Location}, for the various forms of @var{location}; the
5430most useful ones are listed below:
5431
5432@table @code
c906108c
SS
5433@item clear @var{function}
5434@itemx clear @var{filename}:@var{function}
09d4efe1 5435Delete any breakpoints set at entry to the named @var{function}.
c906108c
SS
5436
5437@item clear @var{linenum}
5438@itemx clear @var{filename}:@var{linenum}
09d4efe1
EZ
5439Delete any breakpoints set at or within the code of the specified
5440@var{linenum} of the specified @var{filename}.
2a25a5ba 5441@end table
c906108c
SS
5442
5443@cindex delete breakpoints
5444@kindex delete
41afff9a 5445@kindex d @r{(@code{delete})}
18da0c51 5446@item delete @r{[}breakpoints@r{]} @r{[}@var{list}@dots{}@r{]}
c5394b80 5447Delete the breakpoints, watchpoints, or catchpoints of the breakpoint
18da0c51 5448list specified as argument. If no argument is specified, delete all
c906108c
SS
5449breakpoints (@value{GDBN} asks confirmation, unless you have @code{set
5450confirm off}). You can abbreviate this command as @code{d}.
5451@end table
5452
6d2ebf8b 5453@node Disabling
79a6e687 5454@subsection Disabling Breakpoints
c906108c 5455
4644b6e3 5456@cindex enable/disable a breakpoint
c906108c
SS
5457Rather than deleting a breakpoint, watchpoint, or catchpoint, you might
5458prefer to @dfn{disable} it. This makes the breakpoint inoperative as if
5459it had been deleted, but remembers the information on the breakpoint so
5460that you can @dfn{enable} it again later.
5461
5462You disable and enable breakpoints, watchpoints, and catchpoints with
d77f58be
SS
5463the @code{enable} and @code{disable} commands, optionally specifying
5464one or more breakpoint numbers as arguments. Use @code{info break} to
5465print a list of all breakpoints, watchpoints, and catchpoints if you
5466do not know which numbers to use.
c906108c 5467
3b784c4f
EZ
5468Disabling and enabling a breakpoint that has multiple locations
5469affects all of its locations.
5470
816338b5
SS
5471A breakpoint, watchpoint, or catchpoint can have any of several
5472different states of enablement:
c906108c
SS
5473
5474@itemize @bullet
5475@item
5476Enabled. The breakpoint stops your program. A breakpoint set
5477with the @code{break} command starts out in this state.
5478@item
5479Disabled. The breakpoint has no effect on your program.
5480@item
5481Enabled once. The breakpoint stops your program, but then becomes
d4f3574e 5482disabled.
c906108c 5483@item
816338b5
SS
5484Enabled for a count. The breakpoint stops your program for the next
5485N times, then becomes disabled.
5486@item
c906108c 5487Enabled for deletion. The breakpoint stops your program, but
d4f3574e
SS
5488immediately after it does so it is deleted permanently. A breakpoint
5489set with the @code{tbreak} command starts out in this state.
c906108c
SS
5490@end itemize
5491
5492You can use the following commands to enable or disable breakpoints,
5493watchpoints, and catchpoints:
5494
5495@table @code
c906108c 5496@kindex disable
41afff9a 5497@kindex dis @r{(@code{disable})}
18da0c51 5498@item disable @r{[}breakpoints@r{]} @r{[}@var{list}@dots{}@r{]}
c906108c
SS
5499Disable the specified breakpoints---or all breakpoints, if none are
5500listed. A disabled breakpoint has no effect but is not forgotten. All
5501options such as ignore-counts, conditions and commands are remembered in
5502case the breakpoint is enabled again later. You may abbreviate
5503@code{disable} as @code{dis}.
5504
c906108c 5505@kindex enable
18da0c51 5506@item enable @r{[}breakpoints@r{]} @r{[}@var{list}@dots{}@r{]}
c906108c
SS
5507Enable the specified breakpoints (or all defined breakpoints). They
5508become effective once again in stopping your program.
5509
18da0c51 5510@item enable @r{[}breakpoints@r{]} once @var{list}@dots{}
c906108c
SS
5511Enable the specified breakpoints temporarily. @value{GDBN} disables any
5512of these breakpoints immediately after stopping your program.
5513
18da0c51 5514@item enable @r{[}breakpoints@r{]} count @var{count} @var{list}@dots{}
816338b5
SS
5515Enable the specified breakpoints temporarily. @value{GDBN} records
5516@var{count} with each of the specified breakpoints, and decrements a
5517breakpoint's count when it is hit. When any count reaches 0,
5518@value{GDBN} disables that breakpoint. If a breakpoint has an ignore
5519count (@pxref{Conditions, ,Break Conditions}), that will be
5520decremented to 0 before @var{count} is affected.
5521
18da0c51 5522@item enable @r{[}breakpoints@r{]} delete @var{list}@dots{}
c906108c
SS
5523Enable the specified breakpoints to work once, then die. @value{GDBN}
5524deletes any of these breakpoints as soon as your program stops there.
09d4efe1 5525Breakpoints set by the @code{tbreak} command start out in this state.
c906108c
SS
5526@end table
5527
d4f3574e
SS
5528@c FIXME: I think the following ``Except for [...] @code{tbreak}'' is
5529@c confusing: tbreak is also initially enabled.
c906108c 5530Except for a breakpoint set with @code{tbreak} (@pxref{Set Breaks,
79a6e687 5531,Setting Breakpoints}), breakpoints that you set are initially enabled;
c906108c
SS
5532subsequently, they become disabled or enabled only when you use one of
5533the commands above. (The command @code{until} can set and delete a
5534breakpoint of its own, but it does not change the state of your other
5535breakpoints; see @ref{Continuing and Stepping, ,Continuing and
79a6e687 5536Stepping}.)
c906108c 5537
6d2ebf8b 5538@node Conditions
79a6e687 5539@subsection Break Conditions
c906108c
SS
5540@cindex conditional breakpoints
5541@cindex breakpoint conditions
5542
5543@c FIXME what is scope of break condition expr? Context where wanted?
5d161b24 5544@c in particular for a watchpoint?
c906108c
SS
5545The simplest sort of breakpoint breaks every time your program reaches a
5546specified place. You can also specify a @dfn{condition} for a
5547breakpoint. A condition is just a Boolean expression in your
5548programming language (@pxref{Expressions, ,Expressions}). A breakpoint with
5549a condition evaluates the expression each time your program reaches it,
5550and your program stops only if the condition is @emph{true}.
5551
5552This is the converse of using assertions for program validation; in that
5553situation, you want to stop when the assertion is violated---that is,
5554when the condition is false. In C, if you want to test an assertion expressed
5555by the condition @var{assert}, you should set the condition
5556@samp{! @var{assert}} on the appropriate breakpoint.
5557
5558Conditions are also accepted for watchpoints; you may not need them,
5559since a watchpoint is inspecting the value of an expression anyhow---but
5560it might be simpler, say, to just set a watchpoint on a variable name,
5561and specify a condition that tests whether the new value is an interesting
5562one.
5563
5564Break conditions can have side effects, and may even call functions in
5565your program. This can be useful, for example, to activate functions
5566that log program progress, or to use your own print functions to
99e008fe 5567format special data structures. The effects are completely predictable
c906108c
SS
5568unless there is another enabled breakpoint at the same address. (In
5569that case, @value{GDBN} might see the other breakpoint first and stop your
5570program without checking the condition of this one.) Note that
d4f3574e
SS
5571breakpoint commands are usually more convenient and flexible than break
5572conditions for the
c906108c 5573purpose of performing side effects when a breakpoint is reached
79a6e687 5574(@pxref{Break Commands, ,Breakpoint Command Lists}).
c906108c 5575
83364271
LM
5576Breakpoint conditions can also be evaluated on the target's side if
5577the target supports it. Instead of evaluating the conditions locally,
5578@value{GDBN} encodes the expression into an agent expression
5579(@pxref{Agent Expressions}) suitable for execution on the target,
5580independently of @value{GDBN}. Global variables become raw memory
5581locations, locals become stack accesses, and so forth.
5582
5583In this case, @value{GDBN} will only be notified of a breakpoint trigger
5584when its condition evaluates to true. This mechanism may provide faster
5585response times depending on the performance characteristics of the target
5586since it does not need to keep @value{GDBN} informed about
5587every breakpoint trigger, even those with false conditions.
5588
c906108c
SS
5589Break conditions can be specified when a breakpoint is set, by using
5590@samp{if} in the arguments to the @code{break} command. @xref{Set
79a6e687 5591Breaks, ,Setting Breakpoints}. They can also be changed at any time
c906108c 5592with the @code{condition} command.
53a5351d 5593
c906108c
SS
5594You can also use the @code{if} keyword with the @code{watch} command.
5595The @code{catch} command does not recognize the @code{if} keyword;
5596@code{condition} is the only way to impose a further condition on a
5597catchpoint.
c906108c
SS
5598
5599@table @code
5600@kindex condition
5601@item condition @var{bnum} @var{expression}
5602Specify @var{expression} as the break condition for breakpoint,
5603watchpoint, or catchpoint number @var{bnum}. After you set a condition,
5604breakpoint @var{bnum} stops your program only if the value of
5605@var{expression} is true (nonzero, in C). When you use
5606@code{condition}, @value{GDBN} checks @var{expression} immediately for
5607syntactic correctness, and to determine whether symbols in it have
d4f3574e
SS
5608referents in the context of your breakpoint. If @var{expression} uses
5609symbols not referenced in the context of the breakpoint, @value{GDBN}
5610prints an error message:
5611
474c8240 5612@smallexample
d4f3574e 5613No symbol "foo" in current context.
474c8240 5614@end smallexample
d4f3574e
SS
5615
5616@noindent
c906108c
SS
5617@value{GDBN} does
5618not actually evaluate @var{expression} at the time the @code{condition}
d4f3574e
SS
5619command (or a command that sets a breakpoint with a condition, like
5620@code{break if @dots{}}) is given, however. @xref{Expressions, ,Expressions}.
c906108c 5621
733d554a
TBA
5622@item condition -force @var{bnum} @var{expression}
5623When the @code{-force} flag is used, define the condition even if
5624@var{expression} is invalid at all the current locations of breakpoint
5625@var{bnum}. This is similar to the @code{-force-condition} option
5626of the @code{break} command.
5627
c906108c
SS
5628@item condition @var{bnum}
5629Remove the condition from breakpoint number @var{bnum}. It becomes
5630an ordinary unconditional breakpoint.
5631@end table
5632
5633@cindex ignore count (of breakpoint)
5634A special case of a breakpoint condition is to stop only when the
5635breakpoint has been reached a certain number of times. This is so
5636useful that there is a special way to do it, using the @dfn{ignore
5637count} of the breakpoint. Every breakpoint has an ignore count, which
5638is an integer. Most of the time, the ignore count is zero, and
5639therefore has no effect. But if your program reaches a breakpoint whose
5640ignore count is positive, then instead of stopping, it just decrements
5641the ignore count by one and continues. As a result, if the ignore count
5642value is @var{n}, the breakpoint does not stop the next @var{n} times
5643your program reaches it.
5644
5645@table @code
5646@kindex ignore
5647@item ignore @var{bnum} @var{count}
5648Set the ignore count of breakpoint number @var{bnum} to @var{count}.
5649The next @var{count} times the breakpoint is reached, your program's
5650execution does not stop; other than to decrement the ignore count, @value{GDBN}
5651takes no action.
5652
5653To make the breakpoint stop the next time it is reached, specify
5654a count of zero.
5655
5656When you use @code{continue} to resume execution of your program from a
5657breakpoint, you can specify an ignore count directly as an argument to
5658@code{continue}, rather than using @code{ignore}. @xref{Continuing and
79a6e687 5659Stepping,,Continuing and Stepping}.
c906108c
SS
5660
5661If a breakpoint has a positive ignore count and a condition, the
5662condition is not checked. Once the ignore count reaches zero,
5663@value{GDBN} resumes checking the condition.
5664
5665You could achieve the effect of the ignore count with a condition such
5666as @w{@samp{$foo-- <= 0}} using a debugger convenience variable that
5667is decremented each time. @xref{Convenience Vars, ,Convenience
79a6e687 5668Variables}.
c906108c
SS
5669@end table
5670
5671Ignore counts apply to breakpoints, watchpoints, and catchpoints.
5672
5673
6d2ebf8b 5674@node Break Commands
79a6e687 5675@subsection Breakpoint Command Lists
c906108c
SS
5676
5677@cindex breakpoint commands
5678You can give any breakpoint (or watchpoint or catchpoint) a series of
5679commands to execute when your program stops due to that breakpoint. For
5680example, you might want to print the values of certain expressions, or
5681enable other breakpoints.
5682
5683@table @code
5684@kindex commands
ca91424e 5685@kindex end@r{ (breakpoint commands)}
18da0c51 5686@item commands @r{[}@var{list}@dots{}@r{]}
c906108c
SS
5687@itemx @dots{} @var{command-list} @dots{}
5688@itemx end
95a42b64 5689Specify a list of commands for the given breakpoints. The commands
c906108c
SS
5690themselves appear on the following lines. Type a line containing just
5691@code{end} to terminate the commands.
5692
5693To remove all commands from a breakpoint, type @code{commands} and
5694follow it immediately with @code{end}; that is, give no commands.
5695
95a42b64
TT
5696With no argument, @code{commands} refers to the last breakpoint,
5697watchpoint, or catchpoint set (not to the breakpoint most recently
5698encountered). If the most recent breakpoints were set with a single
5699command, then the @code{commands} will apply to all the breakpoints
5700set by that command. This applies to breakpoints set by
86b17b60
PA
5701@code{rbreak}, and also applies when a single @code{break} command
5702creates multiple breakpoints (@pxref{Ambiguous Expressions,,Ambiguous
5703Expressions}).
c906108c
SS
5704@end table
5705
5706Pressing @key{RET} as a means of repeating the last @value{GDBN} command is
5707disabled within a @var{command-list}.
5708
5709You can use breakpoint commands to start your program up again. Simply
5710use the @code{continue} command, or @code{step}, or any other command
5711that resumes execution.
5712
5713Any other commands in the command list, after a command that resumes
5714execution, are ignored. This is because any time you resume execution
5715(even with a simple @code{next} or @code{step}), you may encounter
5716another breakpoint---which could have its own command list, leading to
5717ambiguities about which list to execute.
5718
5719@kindex silent
5720If the first command you specify in a command list is @code{silent}, the
5721usual message about stopping at a breakpoint is not printed. This may
5722be desirable for breakpoints that are to print a specific message and
5723then continue. If none of the remaining commands print anything, you
5724see no sign that the breakpoint was reached. @code{silent} is
5725meaningful only at the beginning of a breakpoint command list.
5726
5727The commands @code{echo}, @code{output}, and @code{printf} allow you to
5728print precisely controlled output, and are often useful in silent
79a6e687 5729breakpoints. @xref{Output, ,Commands for Controlled Output}.
c906108c
SS
5730
5731For example, here is how you could use breakpoint commands to print the
5732value of @code{x} at entry to @code{foo} whenever @code{x} is positive.
5733
474c8240 5734@smallexample
c906108c
SS
5735break foo if x>0
5736commands
5737silent
5738printf "x is %d\n",x
5739cont
5740end
474c8240 5741@end smallexample
c906108c
SS
5742
5743One application for breakpoint commands is to compensate for one bug so
5744you can test for another. Put a breakpoint just after the erroneous line
5745of code, give it a condition to detect the case in which something
5746erroneous has been done, and give it commands to assign correct values
5747to any variables that need them. End with the @code{continue} command
5748so that your program does not stop, and start with the @code{silent}
5749command so that no output is produced. Here is an example:
5750
474c8240 5751@smallexample
c906108c
SS
5752break 403
5753commands
5754silent
5755set x = y + 4
5756cont
5757end
474c8240 5758@end smallexample
c906108c 5759
e7e0cddf
SS
5760@node Dynamic Printf
5761@subsection Dynamic Printf
5762
5763@cindex dynamic printf
5764@cindex dprintf
5765The dynamic printf command @code{dprintf} combines a breakpoint with
5766formatted printing of your program's data to give you the effect of
5767inserting @code{printf} calls into your program on-the-fly, without
5768having to recompile it.
5769
5770In its most basic form, the output goes to the GDB console. However,
5771you can set the variable @code{dprintf-style} for alternate handling.
5772For instance, you can ask to format the output by calling your
5773program's @code{printf} function. This has the advantage that the
5774characters go to the program's output device, so they can recorded in
5775redirects to files and so forth.
5776
d3ce09f5
SS
5777If you are doing remote debugging with a stub or agent, you can also
5778ask to have the printf handled by the remote agent. In addition to
5779ensuring that the output goes to the remote program's device along
5780with any other output the program might produce, you can also ask that
5781the dprintf remain active even after disconnecting from the remote
5782target. Using the stub/agent is also more efficient, as it can do
5783everything without needing to communicate with @value{GDBN}.
5784
e7e0cddf
SS
5785@table @code
5786@kindex dprintf
5787@item dprintf @var{location},@var{template},@var{expression}[,@var{expression}@dots{}]
5788Whenever execution reaches @var{location}, print the values of one or
5789more @var{expressions} under the control of the string @var{template}.
5790To print several values, separate them with commas.
5791
5792@item set dprintf-style @var{style}
5793Set the dprintf output to be handled in one of several different
5794styles enumerated below. A change of style affects all existing
5795dynamic printfs immediately. (If you need individual control over the
5796print commands, simply define normal breakpoints with
5797explicitly-supplied command lists.)
5798
18da0c51 5799@table @code
e7e0cddf
SS
5800@item gdb
5801@kindex dprintf-style gdb
5802Handle the output using the @value{GDBN} @code{printf} command.
5803
5804@item call
5805@kindex dprintf-style call
5806Handle the output by calling a function in your program (normally
5807@code{printf}).
5808
d3ce09f5
SS
5809@item agent
5810@kindex dprintf-style agent
5811Have the remote debugging agent (such as @code{gdbserver}) handle
5812the output itself. This style is only available for agents that
5813support running commands on the target.
18da0c51 5814@end table
d3ce09f5 5815
e7e0cddf
SS
5816@item set dprintf-function @var{function}
5817Set the function to call if the dprintf style is @code{call}. By
5818default its value is @code{printf}. You may set it to any expression.
5819that @value{GDBN} can evaluate to a function, as per the @code{call}
5820command.
5821
5822@item set dprintf-channel @var{channel}
5823Set a ``channel'' for dprintf. If set to a non-empty value,
5824@value{GDBN} will evaluate it as an expression and pass the result as
5825a first argument to the @code{dprintf-function}, in the manner of
5826@code{fprintf} and similar functions. Otherwise, the dprintf format
5827string will be the first argument, in the manner of @code{printf}.
5828
5829As an example, if you wanted @code{dprintf} output to go to a logfile
5830that is a standard I/O stream assigned to the variable @code{mylog},
5831you could do the following:
5832
5833@example
5834(gdb) set dprintf-style call
5835(gdb) set dprintf-function fprintf
5836(gdb) set dprintf-channel mylog
5837(gdb) dprintf 25,"at line 25, glob=%d\n",glob
5838Dprintf 1 at 0x123456: file main.c, line 25.
5839(gdb) info break
58401 dprintf keep y 0x00123456 in main at main.c:25
5841 call (void) fprintf (mylog,"at line 25, glob=%d\n",glob)
5842 continue
5843(gdb)
5844@end example
5845
5846Note that the @code{info break} displays the dynamic printf commands
5847as normal breakpoint commands; you can thus easily see the effect of
5848the variable settings.
5849
d3ce09f5
SS
5850@item set disconnected-dprintf on
5851@itemx set disconnected-dprintf off
5852@kindex set disconnected-dprintf
5853Choose whether @code{dprintf} commands should continue to run if
5854@value{GDBN} has disconnected from the target. This only applies
5855if the @code{dprintf-style} is @code{agent}.
5856
5857@item show disconnected-dprintf off
5858@kindex show disconnected-dprintf
5859Show the current choice for disconnected @code{dprintf}.
5860
e7e0cddf
SS
5861@end table
5862
5863@value{GDBN} does not check the validity of function and channel,
5864relying on you to supply values that are meaningful for the contexts
5865in which they are being used. For instance, the function and channel
5866may be the values of local variables, but if that is the case, then
5867all enabled dynamic prints must be at locations within the scope of
5868those locals. If evaluation fails, @value{GDBN} will report an error.
5869
6149aea9
PA
5870@node Save Breakpoints
5871@subsection How to save breakpoints to a file
5872
5873To save breakpoint definitions to a file use the @w{@code{save
5874breakpoints}} command.
5875
5876@table @code
5877@kindex save breakpoints
5878@cindex save breakpoints to a file for future sessions
5879@item save breakpoints [@var{filename}]
5880This command saves all current breakpoint definitions together with
5881their commands and ignore counts, into a file @file{@var{filename}}
5882suitable for use in a later debugging session. This includes all
5883types of breakpoints (breakpoints, watchpoints, catchpoints,
5884tracepoints). To read the saved breakpoint definitions, use the
5885@code{source} command (@pxref{Command Files}). Note that watchpoints
5886with expressions involving local variables may fail to be recreated
5887because it may not be possible to access the context where the
5888watchpoint is valid anymore. Because the saved breakpoint definitions
5889are simply a sequence of @value{GDBN} commands that recreate the
5890breakpoints, you can edit the file in your favorite editing program,
5891and remove the breakpoint definitions you're not interested in, or
5892that can no longer be recreated.
5893@end table
5894
62e5f89c
SDJ
5895@node Static Probe Points
5896@subsection Static Probe Points
5897
5898@cindex static probe point, SystemTap
3133f8c1 5899@cindex static probe point, DTrace
62e5f89c
SDJ
5900@value{GDBN} supports @dfn{SDT} probes in the code. @acronym{SDT} stands
5901for Statically Defined Tracing, and the probes are designed to have a tiny
3133f8c1
JM
5902runtime code and data footprint, and no dynamic relocations.
5903
5904Currently, the following types of probes are supported on
5905ELF-compatible systems:
5906
5907@itemize @bullet
62e5f89c 5908
3133f8c1
JM
5909@item @code{SystemTap} (@uref{http://sourceware.org/systemtap/})
5910@acronym{SDT} probes@footnote{See
62e5f89c 5911@uref{http://sourceware.org/systemtap/wiki/AddingUserSpaceProbingToApps}
3133f8c1
JM
5912for more information on how to add @code{SystemTap} @acronym{SDT}
5913probes in your applications.}. @code{SystemTap} probes are usable
5914from assembly, C and C@t{++} languages@footnote{See
5915@uref{http://sourceware.org/systemtap/wiki/UserSpaceProbeImplementation}
5916for a good reference on how the @acronym{SDT} probes are implemented.}.
5917
5918@item @code{DTrace} (@uref{http://oss.oracle.com/projects/DTrace})
5919@acronym{USDT} probes. @code{DTrace} probes are usable from C and
5920C@t{++} languages.
5921@end itemize
62e5f89c
SDJ
5922
5923@cindex semaphores on static probe points
3133f8c1
JM
5924Some @code{SystemTap} probes have an associated semaphore variable;
5925for instance, this happens automatically if you defined your probe
5926using a DTrace-style @file{.d} file. If your probe has a semaphore,
5927@value{GDBN} will automatically enable it when you specify a
5928breakpoint using the @samp{-probe-stap} notation. But, if you put a
5929breakpoint at a probe's location by some other method (e.g.,
5930@code{break file:line}), then @value{GDBN} will not automatically set
5931the semaphore. @code{DTrace} probes do not support semaphores.
62e5f89c
SDJ
5932
5933You can examine the available static static probes using @code{info
5934probes}, with optional arguments:
5935
5936@table @code
5937@kindex info probes
3133f8c1
JM
5938@item info probes @r{[}@var{type}@r{]} @r{[}@var{provider} @r{[}@var{name} @r{[}@var{objfile}@r{]}@r{]}@r{]}
5939If given, @var{type} is either @code{stap} for listing
5940@code{SystemTap} probes or @code{dtrace} for listing @code{DTrace}
5941probes. If omitted all probes are listed regardless of their types.
5942
62e5f89c
SDJ
5943If given, @var{provider} is a regular expression used to match against provider
5944names when selecting which probes to list. If omitted, probes by all
5945probes from all providers are listed.
5946
5947If given, @var{name} is a regular expression to match against probe names
5948when selecting which probes to list. If omitted, probe names are not
5949considered when deciding whether to display them.
5950
5951If given, @var{objfile} is a regular expression used to select which
5952object files (executable or shared libraries) to examine. If not
5953given, all object files are considered.
5954
5955@item info probes all
5956List the available static probes, from all types.
5957@end table
5958
9aca2ff8
JM
5959@cindex enabling and disabling probes
5960Some probe points can be enabled and/or disabled. The effect of
5961enabling or disabling a probe depends on the type of probe being
3133f8c1
JM
5962handled. Some @code{DTrace} probes can be enabled or
5963disabled, but @code{SystemTap} probes cannot be disabled.
9aca2ff8
JM
5964
5965You can enable (or disable) one or more probes using the following
5966commands, with optional arguments:
5967
5968@table @code
5969@kindex enable probes
5970@item enable probes @r{[}@var{provider} @r{[}@var{name} @r{[}@var{objfile}@r{]}@r{]}@r{]}
5971If given, @var{provider} is a regular expression used to match against
5972provider names when selecting which probes to enable. If omitted,
5973all probes from all providers are enabled.
5974
5975If given, @var{name} is a regular expression to match against probe
5976names when selecting which probes to enable. If omitted, probe names
5977are not considered when deciding whether to enable them.
5978
5979If given, @var{objfile} is a regular expression used to select which
5980object files (executable or shared libraries) to examine. If not
5981given, all object files are considered.
5982
5983@kindex disable probes
5984@item disable probes @r{[}@var{provider} @r{[}@var{name} @r{[}@var{objfile}@r{]}@r{]}@r{]}
5985See the @code{enable probes} command above for a description of the
5986optional arguments accepted by this command.
5987@end table
5988
62e5f89c
SDJ
5989@vindex $_probe_arg@r{, convenience variable}
5990A probe may specify up to twelve arguments. These are available at the
5991point at which the probe is defined---that is, when the current PC is
5992at the probe's location. The arguments are available using the
5993convenience variables (@pxref{Convenience Vars})
3133f8c1
JM
5994@code{$_probe_arg0}@dots{}@code{$_probe_arg11}. In @code{SystemTap}
5995probes each probe argument is an integer of the appropriate size;
5996types are not preserved. In @code{DTrace} probes types are preserved
5997provided that they are recognized as such by @value{GDBN}; otherwise
5998the value of the probe argument will be a long integer. The
62e5f89c
SDJ
5999convenience variable @code{$_probe_argc} holds the number of arguments
6000at the current probe point.
6001
6002These variables are always available, but attempts to access them at
6003any location other than a probe point will cause @value{GDBN} to give
6004an error message.
6005
6006
c906108c 6007@c @ifclear BARETARGET
6d2ebf8b 6008@node Error in Breakpoints
d4f3574e 6009@subsection ``Cannot insert breakpoints''
c906108c 6010
fa3a767f
PA
6011If you request too many active hardware-assisted breakpoints and
6012watchpoints, you will see this error message:
d4f3574e
SS
6013
6014@c FIXME: the precise wording of this message may change; the relevant
6015@c source change is not committed yet (Sep 3, 1999).
6016@smallexample
6017Stopped; cannot insert breakpoints.
6018You may have requested too many hardware breakpoints and watchpoints.
6019@end smallexample
6020
6021@noindent
6022This message is printed when you attempt to resume the program, since
6023only then @value{GDBN} knows exactly how many hardware breakpoints and
6024watchpoints it needs to insert.
6025
6026When this message is printed, you need to disable or remove some of the
6027hardware-assisted breakpoints and watchpoints, and then continue.
6028
79a6e687 6029@node Breakpoint-related Warnings
1485d690
KB
6030@subsection ``Breakpoint address adjusted...''
6031@cindex breakpoint address adjusted
6032
6033Some processor architectures place constraints on the addresses at
6034which breakpoints may be placed. For architectures thus constrained,
6035@value{GDBN} will attempt to adjust the breakpoint's address to comply
6036with the constraints dictated by the architecture.
6037
6038One example of such an architecture is the Fujitsu FR-V. The FR-V is
6039a VLIW architecture in which a number of RISC-like instructions may be
6040bundled together for parallel execution. The FR-V architecture
6041constrains the location of a breakpoint instruction within such a
6042bundle to the instruction with the lowest address. @value{GDBN}
6043honors this constraint by adjusting a breakpoint's address to the
6044first in the bundle.
6045
6046It is not uncommon for optimized code to have bundles which contain
6047instructions from different source statements, thus it may happen that
6048a breakpoint's address will be adjusted from one source statement to
6049another. Since this adjustment may significantly alter @value{GDBN}'s
6050breakpoint related behavior from what the user expects, a warning is
6051printed when the breakpoint is first set and also when the breakpoint
6052is hit.
6053
6054A warning like the one below is printed when setting a breakpoint
6055that's been subject to address adjustment:
6056
6057@smallexample
6058warning: Breakpoint address adjusted from 0x00010414 to 0x00010410.
6059@end smallexample
6060
6061Such warnings are printed both for user settable and @value{GDBN}'s
6062internal breakpoints. If you see one of these warnings, you should
6063verify that a breakpoint set at the adjusted address will have the
6064desired affect. If not, the breakpoint in question may be removed and
b383017d 6065other breakpoints may be set which will have the desired behavior.
1485d690
KB
6066E.g., it may be sufficient to place the breakpoint at a later
6067instruction. A conditional breakpoint may also be useful in some
6068cases to prevent the breakpoint from triggering too often.
6069
6070@value{GDBN} will also issue a warning when stopping at one of these
6071adjusted breakpoints:
6072
6073@smallexample
6074warning: Breakpoint 1 address previously adjusted from 0x00010414
6075to 0x00010410.
6076@end smallexample
6077
6078When this warning is encountered, it may be too late to take remedial
6079action except in cases where the breakpoint is hit earlier or more
6080frequently than expected.
d4f3574e 6081
6d2ebf8b 6082@node Continuing and Stepping
79a6e687 6083@section Continuing and Stepping
c906108c
SS
6084
6085@cindex stepping
6086@cindex continuing
6087@cindex resuming execution
6088@dfn{Continuing} means resuming program execution until your program
6089completes normally. In contrast, @dfn{stepping} means executing just
6090one more ``step'' of your program, where ``step'' may mean either one
6091line of source code, or one machine instruction (depending on what
7a292a7a
SS
6092particular command you use). Either when continuing or when stepping,
6093your program may stop even sooner, due to a breakpoint or a signal. (If
d4f3574e 6094it stops due to a signal, you may want to use @code{handle}, or use
e5f8a7cc
PA
6095@samp{signal 0} to resume execution (@pxref{Signals, ,Signals}),
6096or you may step into the signal's handler (@pxref{stepping and signal
6097handlers}).)
c906108c
SS
6098
6099@table @code
6100@kindex continue
41afff9a
EZ
6101@kindex c @r{(@code{continue})}
6102@kindex fg @r{(resume foreground execution)}
c906108c
SS
6103@item continue @r{[}@var{ignore-count}@r{]}
6104@itemx c @r{[}@var{ignore-count}@r{]}
6105@itemx fg @r{[}@var{ignore-count}@r{]}
6106Resume program execution, at the address where your program last stopped;
6107any breakpoints set at that address are bypassed. The optional argument
6108@var{ignore-count} allows you to specify a further number of times to
6109ignore a breakpoint at this location; its effect is like that of
79a6e687 6110@code{ignore} (@pxref{Conditions, ,Break Conditions}).
c906108c
SS
6111
6112The argument @var{ignore-count} is meaningful only when your program
6113stopped due to a breakpoint. At other times, the argument to
6114@code{continue} is ignored.
6115
d4f3574e
SS
6116The synonyms @code{c} and @code{fg} (for @dfn{foreground}, as the
6117debugged program is deemed to be the foreground program) are provided
6118purely for convenience, and have exactly the same behavior as
6119@code{continue}.
c906108c
SS
6120@end table
6121
6122To resume execution at a different place, you can use @code{return}
79a6e687 6123(@pxref{Returning, ,Returning from a Function}) to go back to the
c906108c 6124calling function; or @code{jump} (@pxref{Jumping, ,Continuing at a
79a6e687 6125Different Address}) to go to an arbitrary location in your program.
c906108c
SS
6126
6127A typical technique for using stepping is to set a breakpoint
79a6e687 6128(@pxref{Breakpoints, ,Breakpoints; Watchpoints; and Catchpoints}) at the
c906108c
SS
6129beginning of the function or the section of your program where a problem
6130is believed to lie, run your program until it stops at that breakpoint,
6131and then step through the suspect area, examining the variables that are
6132interesting, until you see the problem happen.
6133
6134@table @code
6135@kindex step
41afff9a 6136@kindex s @r{(@code{step})}
c906108c
SS
6137@item step
6138Continue running your program until control reaches a different source
6139line, then stop it and return control to @value{GDBN}. This command is
6140abbreviated @code{s}.
6141
6142@quotation
6143@c "without debugging information" is imprecise; actually "without line
6144@c numbers in the debugging information". (gcc -g1 has debugging info but
6145@c not line numbers). But it seems complex to try to make that
6146@c distinction here.
6147@emph{Warning:} If you use the @code{step} command while control is
6148within a function that was compiled without debugging information,
6149execution proceeds until control reaches a function that does have
6150debugging information. Likewise, it will not step into a function which
6151is compiled without debugging information. To step through functions
6152without debugging information, use the @code{stepi} command, described
6153below.
6154@end quotation
6155
4a92d011
EZ
6156The @code{step} command only stops at the first instruction of a source
6157line. This prevents the multiple stops that could otherwise occur in
6158@code{switch} statements, @code{for} loops, etc. @code{step} continues
6159to stop if a function that has debugging information is called within
6160the line. In other words, @code{step} @emph{steps inside} any functions
6161called within the line.
c906108c 6162
d4f3574e
SS
6163Also, the @code{step} command only enters a function if there is line
6164number information for the function. Otherwise it acts like the
5d161b24 6165@code{next} command. This avoids problems when using @code{cc -gl}
eb17f351 6166on @acronym{MIPS} machines. Previously, @code{step} entered subroutines if there
5d161b24 6167was any debugging information about the routine.
c906108c
SS
6168
6169@item step @var{count}
6170Continue running as in @code{step}, but do so @var{count} times. If a
7a292a7a
SS
6171breakpoint is reached, or a signal not related to stepping occurs before
6172@var{count} steps, stepping stops right away.
c906108c
SS
6173
6174@kindex next
41afff9a 6175@kindex n @r{(@code{next})}
c906108c
SS
6176@item next @r{[}@var{count}@r{]}
6177Continue to the next source line in the current (innermost) stack frame.
7a292a7a
SS
6178This is similar to @code{step}, but function calls that appear within
6179the line of code are executed without stopping. Execution stops when
6180control reaches a different line of code at the original stack level
6181that was executing when you gave the @code{next} command. This command
6182is abbreviated @code{n}.
c906108c
SS
6183
6184An argument @var{count} is a repeat count, as for @code{step}.
6185
6186
6187@c FIX ME!! Do we delete this, or is there a way it fits in with
6188@c the following paragraph? --- Vctoria
6189@c
6190@c @code{next} within a function that lacks debugging information acts like
6191@c @code{step}, but any function calls appearing within the code of the
6192@c function are executed without stopping.
6193
d4f3574e
SS
6194The @code{next} command only stops at the first instruction of a
6195source line. This prevents multiple stops that could otherwise occur in
4a92d011 6196@code{switch} statements, @code{for} loops, etc.
c906108c 6197
b90a5f51
CF
6198@kindex set step-mode
6199@item set step-mode
6200@cindex functions without line info, and stepping
6201@cindex stepping into functions with no line info
6202@itemx set step-mode on
4a92d011 6203The @code{set step-mode on} command causes the @code{step} command to
b90a5f51
CF
6204stop at the first instruction of a function which contains no debug line
6205information rather than stepping over it.
6206
4a92d011
EZ
6207This is useful in cases where you may be interested in inspecting the
6208machine instructions of a function which has no symbolic info and do not
6209want @value{GDBN} to automatically skip over this function.
b90a5f51
CF
6210
6211@item set step-mode off
4a92d011 6212Causes the @code{step} command to step over any functions which contains no
b90a5f51
CF
6213debug information. This is the default.
6214
9c16f35a
EZ
6215@item show step-mode
6216Show whether @value{GDBN} will stop in or step over functions without
6217source line debug information.
6218
c906108c 6219@kindex finish
8dfa32fc 6220@kindex fin @r{(@code{finish})}
c906108c
SS
6221@item finish
6222Continue running until just after function in the selected stack frame
8dfa32fc
JB
6223returns. Print the returned value (if any). This command can be
6224abbreviated as @code{fin}.
c906108c
SS
6225
6226Contrast this with the @code{return} command (@pxref{Returning,
79a6e687 6227,Returning from a Function}).
c906108c 6228
000439d5
TT
6229@kindex set print finish
6230@kindex show print finish
6231@item set print finish @r{[}on|off@r{]}
6232@itemx show print finish
6233By default the @code{finish} command will show the value that is
6234returned by the function. This can be disabled using @code{set print
6235finish off}. When disabled, the value is still entered into the value
6236history (@pxref{Value History}), but not displayed.
6237
c906108c 6238@kindex until
41afff9a 6239@kindex u @r{(@code{until})}
09d4efe1 6240@cindex run until specified location
c906108c
SS
6241@item until
6242@itemx u
6243Continue running until a source line past the current line, in the
6244current stack frame, is reached. This command is used to avoid single
6245stepping through a loop more than once. It is like the @code{next}
6246command, except that when @code{until} encounters a jump, it
6247automatically continues execution until the program counter is greater
6248than the address of the jump.
6249
6250This means that when you reach the end of a loop after single stepping
6251though it, @code{until} makes your program continue execution until it
6252exits the loop. In contrast, a @code{next} command at the end of a loop
6253simply steps back to the beginning of the loop, which forces you to step
6254through the next iteration.
6255
6256@code{until} always stops your program if it attempts to exit the current
6257stack frame.
6258
6259@code{until} may produce somewhat counterintuitive results if the order
6260of machine code does not match the order of the source lines. For
6261example, in the following excerpt from a debugging session, the @code{f}
6262(@code{frame}) command shows that execution is stopped at line
6263@code{206}; yet when we use @code{until}, we get to line @code{195}:
6264
474c8240 6265@smallexample
c906108c
SS
6266(@value{GDBP}) f
6267#0 main (argc=4, argv=0xf7fffae8) at m4.c:206
6268206 expand_input();
6269(@value{GDBP}) until
6270195 for ( ; argc > 0; NEXTARG) @{
474c8240 6271@end smallexample
c906108c
SS
6272
6273This happened because, for execution efficiency, the compiler had
6274generated code for the loop closure test at the end, rather than the
6275start, of the loop---even though the test in a C @code{for}-loop is
6276written before the body of the loop. The @code{until} command appeared
6277to step back to the beginning of the loop when it advanced to this
6278expression; however, it has not really gone to an earlier
6279statement---not in terms of the actual machine code.
6280
6281@code{until} with no argument works by means of single
6282instruction stepping, and hence is slower than @code{until} with an
6283argument.
6284
6285@item until @var{location}
6286@itemx u @var{location}
697aa1b7
EZ
6287Continue running your program until either the specified @var{location} is
6288reached, or the current stack frame returns. The location is any of
2a25a5ba
EZ
6289the forms described in @ref{Specify Location}.
6290This form of the command uses temporary breakpoints, and
c60eb6f1
EZ
6291hence is quicker than @code{until} without an argument. The specified
6292location is actually reached only if it is in the current frame. This
6293implies that @code{until} can be used to skip over recursive function
6294invocations. For instance in the code below, if the current location is
6295line @code{96}, issuing @code{until 99} will execute the program up to
db2e3e2e 6296line @code{99} in the same invocation of factorial, i.e., after the inner
c60eb6f1
EZ
6297invocations have returned.
6298
6299@smallexample
630094 int factorial (int value)
630195 @{
630296 if (value > 1) @{
630397 value *= factorial (value - 1);
630498 @}
630599 return (value);
6306100 @}
6307@end smallexample
6308
6309
6310@kindex advance @var{location}
984359d2 6311@item advance @var{location}
09d4efe1 6312Continue running the program up to the given @var{location}. An argument is
2a25a5ba
EZ
6313required, which should be of one of the forms described in
6314@ref{Specify Location}.
6315Execution will also stop upon exit from the current stack
c60eb6f1
EZ
6316frame. This command is similar to @code{until}, but @code{advance} will
6317not skip over recursive function calls, and the target location doesn't
6318have to be in the same frame as the current one.
6319
c906108c
SS
6320
6321@kindex stepi
41afff9a 6322@kindex si @r{(@code{stepi})}
c906108c 6323@item stepi
96a2c332 6324@itemx stepi @var{arg}
c906108c
SS
6325@itemx si
6326Execute one machine instruction, then stop and return to the debugger.
6327
6328It is often useful to do @samp{display/i $pc} when stepping by machine
6329instructions. This makes @value{GDBN} automatically display the next
6330instruction to be executed, each time your program stops. @xref{Auto
79a6e687 6331Display,, Automatic Display}.
c906108c
SS
6332
6333An argument is a repeat count, as in @code{step}.
6334
6335@need 750
6336@kindex nexti
41afff9a 6337@kindex ni @r{(@code{nexti})}
c906108c 6338@item nexti
96a2c332 6339@itemx nexti @var{arg}
c906108c
SS
6340@itemx ni
6341Execute one machine instruction, but if it is a function call,
6342proceed until the function returns.
6343
6344An argument is a repeat count, as in @code{next}.
c1e36e3e
PA
6345
6346@end table
6347
6348@anchor{range stepping}
6349@cindex range stepping
6350@cindex target-assisted range stepping
6351By default, and if available, @value{GDBN} makes use of
6352target-assisted @dfn{range stepping}. In other words, whenever you
6353use a stepping command (e.g., @code{step}, @code{next}), @value{GDBN}
6354tells the target to step the corresponding range of instruction
6355addresses instead of issuing multiple single-steps. This speeds up
6356line stepping, particularly for remote targets. Ideally, there should
6357be no reason you would want to turn range stepping off. However, it's
6358possible that a bug in the debug info, a bug in the remote stub (for
6359remote targets), or even a bug in @value{GDBN} could make line
6360stepping behave incorrectly when target-assisted range stepping is
6361enabled. You can use the following command to turn off range stepping
6362if necessary:
6363
6364@table @code
6365@kindex set range-stepping
6366@kindex show range-stepping
6367@item set range-stepping
6368@itemx show range-stepping
6369Control whether range stepping is enabled.
6370
6371If @code{on}, and the target supports it, @value{GDBN} tells the
6372target to step a range of addresses itself, instead of issuing
6373multiple single-steps. If @code{off}, @value{GDBN} always issues
6374single-steps, even if range stepping is supported by the target. The
6375default is @code{on}.
6376
c906108c
SS
6377@end table
6378
aad1c02c
TT
6379@node Skipping Over Functions and Files
6380@section Skipping Over Functions and Files
1bfeeb0f
JL
6381@cindex skipping over functions and files
6382
6383The program you are debugging may contain some functions which are
8244c20d 6384uninteresting to debug. The @code{skip} command lets you tell @value{GDBN} to
cce0e923
DE
6385skip a function, all functions in a file or a particular function in
6386a particular file when stepping.
1bfeeb0f
JL
6387
6388For example, consider the following C function:
6389
6390@smallexample
6391101 int func()
6392102 @{
6393103 foo(boring());
6394104 bar(boring());
6395105 @}
6396@end smallexample
6397
6398@noindent
6399Suppose you wish to step into the functions @code{foo} and @code{bar}, but you
6400are not interested in stepping through @code{boring}. If you run @code{step}
6401at line 103, you'll enter @code{boring()}, but if you run @code{next}, you'll
6402step over both @code{foo} and @code{boring}!
6403
6404One solution is to @code{step} into @code{boring} and use the @code{finish}
6405command to immediately exit it. But this can become tedious if @code{boring}
6406is called from many places.
6407
6408A more flexible solution is to execute @kbd{skip boring}. This instructs
6409@value{GDBN} never to step into @code{boring}. Now when you execute
6410@code{step} at line 103, you'll step over @code{boring} and directly into
6411@code{foo}.
6412
cce0e923
DE
6413Functions may be skipped by providing either a function name, linespec
6414(@pxref{Specify Location}), regular expression that matches the function's
6415name, file name or a @code{glob}-style pattern that matches the file name.
6416
6417On Posix systems the form of the regular expression is
6418``Extended Regular Expressions''. See for example @samp{man 7 regex}
6419on @sc{gnu}/Linux systems. On non-Posix systems the form of the regular
6420expression is whatever is provided by the @code{regcomp} function of
6421the underlying system.
6422See for example @samp{man 7 glob} on @sc{gnu}/Linux systems for a
6423description of @code{glob}-style patterns.
6424
6425@table @code
6426@kindex skip
6427@item skip @r{[}@var{options}@r{]}
6428The basic form of the @code{skip} command takes zero or more options
6429that specify what to skip.
6430The @var{options} argument is any useful combination of the following:
1bfeeb0f
JL
6431
6432@table @code
cce0e923
DE
6433@item -file @var{file}
6434@itemx -fi @var{file}
6435Functions in @var{file} will be skipped over when stepping.
6436
6437@item -gfile @var{file-glob-pattern}
6438@itemx -gfi @var{file-glob-pattern}
6439@cindex skipping over files via glob-style patterns
6440Functions in files matching @var{file-glob-pattern} will be skipped
6441over when stepping.
6442
6443@smallexample
6444(gdb) skip -gfi utils/*.c
6445@end smallexample
6446
6447@item -function @var{linespec}
6448@itemx -fu @var{linespec}
6449Functions named by @var{linespec} or the function containing the line
6450named by @var{linespec} will be skipped over when stepping.
6451@xref{Specify Location}.
6452
6453@item -rfunction @var{regexp}
6454@itemx -rfu @var{regexp}
6455@cindex skipping over functions via regular expressions
6456Functions whose name matches @var{regexp} will be skipped over when stepping.
6457
6458This form is useful for complex function names.
6459For example, there is generally no need to step into C@t{++} @code{std::string}
6460constructors or destructors. Plus with C@t{++} templates it can be hard to
6461write out the full name of the function, and often it doesn't matter what
6462the template arguments are. Specifying the function to be skipped as a
6463regular expression makes this easier.
6464
6465@smallexample
6466(gdb) skip -rfu ^std::(allocator|basic_string)<.*>::~?\1 *\(
6467@end smallexample
6468
6469If you want to skip every templated C@t{++} constructor and destructor
6470in the @code{std} namespace you can do:
6471
6472@smallexample
6473(gdb) skip -rfu ^std::([a-zA-z0-9_]+)<.*>::~?\1 *\(
6474@end smallexample
6475@end table
6476
6477If no options are specified, the function you're currently debugging
6478will be skipped.
6479
1bfeeb0f 6480@kindex skip function
cce0e923 6481@item skip function @r{[}@var{linespec}@r{]}
1bfeeb0f
JL
6482After running this command, the function named by @var{linespec} or the
6483function containing the line named by @var{linespec} will be skipped over when
983fb131 6484stepping. @xref{Specify Location}.
1bfeeb0f
JL
6485
6486If you do not specify @var{linespec}, the function you're currently debugging
6487will be skipped.
6488
6489(If you have a function called @code{file} that you want to skip, use
6490@kbd{skip function file}.)
6491
6492@kindex skip file
6493@item skip file @r{[}@var{filename}@r{]}
6494After running this command, any function whose source lives in @var{filename}
6495will be skipped over when stepping.
6496
cce0e923
DE
6497@smallexample
6498(gdb) skip file boring.c
6499File boring.c will be skipped when stepping.
6500@end smallexample
6501
1bfeeb0f
JL
6502If you do not specify @var{filename}, functions whose source lives in the file
6503you're currently debugging will be skipped.
6504@end table
6505
6506Skips can be listed, deleted, disabled, and enabled, much like breakpoints.
6507These are the commands for managing your list of skips:
6508
6509@table @code
6510@kindex info skip
6511@item info skip @r{[}@var{range}@r{]}
6512Print details about the specified skip(s). If @var{range} is not specified,
6513print a table with details about all functions and files marked for skipping.
6514@code{info skip} prints the following information about each skip:
6515
6516@table @emph
6517@item Identifier
6518A number identifying this skip.
1bfeeb0f 6519@item Enabled or Disabled
cce0e923
DE
6520Enabled skips are marked with @samp{y}.
6521Disabled skips are marked with @samp{n}.
6522@item Glob
6523If the file name is a @samp{glob} pattern this is @samp{y}.
6524Otherwise it is @samp{n}.
6525@item File
6526The name or @samp{glob} pattern of the file to be skipped.
6527If no file is specified this is @samp{<none>}.
6528@item RE
6529If the function name is a @samp{regular expression} this is @samp{y}.
6530Otherwise it is @samp{n}.
6531@item Function
6532The name or regular expression of the function to skip.
6533If no function is specified this is @samp{<none>}.
1bfeeb0f
JL
6534@end table
6535
6536@kindex skip delete
6537@item skip delete @r{[}@var{range}@r{]}
6538Delete the specified skip(s). If @var{range} is not specified, delete all
6539skips.
6540
6541@kindex skip enable
6542@item skip enable @r{[}@var{range}@r{]}
6543Enable the specified skip(s). If @var{range} is not specified, enable all
6544skips.
6545
6546@kindex skip disable
6547@item skip disable @r{[}@var{range}@r{]}
6548Disable the specified skip(s). If @var{range} is not specified, disable all
6549skips.
6550
3e68067f
SM
6551@kindex set debug skip
6552@item set debug skip @r{[}on|off@r{]}
6553Set whether to print the debug output about skipping files and functions.
6554
6555@kindex show debug skip
6556@item show debug skip
6557Show whether the debug output about skipping files and functions is printed.
6558
1bfeeb0f
JL
6559@end table
6560
6d2ebf8b 6561@node Signals
c906108c
SS
6562@section Signals
6563@cindex signals
6564
6565A signal is an asynchronous event that can happen in a program. The
6566operating system defines the possible kinds of signals, and gives each
6567kind a name and a number. For example, in Unix @code{SIGINT} is the
c8aa23ab 6568signal a program gets when you type an interrupt character (often @kbd{Ctrl-c});
c906108c
SS
6569@code{SIGSEGV} is the signal a program gets from referencing a place in
6570memory far away from all the areas in use; @code{SIGALRM} occurs when
6571the alarm clock timer goes off (which happens only if your program has
6572requested an alarm).
6573
6574@cindex fatal signals
6575Some signals, including @code{SIGALRM}, are a normal part of the
6576functioning of your program. Others, such as @code{SIGSEGV}, indicate
d4f3574e 6577errors; these signals are @dfn{fatal} (they kill your program immediately) if the
c906108c
SS
6578program has not specified in advance some other way to handle the signal.
6579@code{SIGINT} does not indicate an error in your program, but it is normally
6580fatal so it can carry out the purpose of the interrupt: to kill the program.
6581
6582@value{GDBN} has the ability to detect any occurrence of a signal in your
6583program. You can tell @value{GDBN} in advance what to do for each kind of
6584signal.
6585
6586@cindex handling signals
24f93129
EZ
6587Normally, @value{GDBN} is set up to let the non-erroneous signals like
6588@code{SIGALRM} be silently passed to your program
6589(so as not to interfere with their role in the program's functioning)
c906108c
SS
6590but to stop your program immediately whenever an error signal happens.
6591You can change these settings with the @code{handle} command.
6592
6593@table @code
6594@kindex info signals
09d4efe1 6595@kindex info handle
c906108c 6596@item info signals
96a2c332 6597@itemx info handle
c906108c
SS
6598Print a table of all the kinds of signals and how @value{GDBN} has been told to
6599handle each one. You can use this to see the signal numbers of all
6600the defined types of signals.
6601
45ac1734
EZ
6602@item info signals @var{sig}
6603Similar, but print information only about the specified signal number.
6604
d4f3574e 6605@code{info handle} is an alias for @code{info signals}.
c906108c 6606
ab04a2af
TT
6607@item catch signal @r{[}@var{signal}@dots{} @r{|} @samp{all}@r{]}
6608Set a catchpoint for the indicated signals. @xref{Set Catchpoints},
6609for details about this command.
6610
c906108c 6611@kindex handle
45ac1734 6612@item handle @var{signal} @r{[}@var{keywords}@dots{}@r{]}
697aa1b7 6613Change the way @value{GDBN} handles signal @var{signal}. The @var{signal}
5ece1a18 6614can be the number of a signal or its name (with or without the
24f93129 6615@samp{SIG} at the beginning); a list of signal numbers of the form
5ece1a18 6616@samp{@var{low}-@var{high}}; or the word @samp{all}, meaning all the
45ac1734
EZ
6617known signals. Optional arguments @var{keywords}, described below,
6618say what change to make.
c906108c
SS
6619@end table
6620
6621@c @group
6622The keywords allowed by the @code{handle} command can be abbreviated.
6623Their full names are:
6624
6625@table @code
6626@item nostop
6627@value{GDBN} should not stop your program when this signal happens. It may
6628still print a message telling you that the signal has come in.
6629
6630@item stop
6631@value{GDBN} should stop your program when this signal happens. This implies
6632the @code{print} keyword as well.
6633
6634@item print
6635@value{GDBN} should print a message when this signal happens.
6636
6637@item noprint
6638@value{GDBN} should not mention the occurrence of the signal at all. This
6639implies the @code{nostop} keyword as well.
6640
6641@item pass
5ece1a18 6642@itemx noignore
c906108c
SS
6643@value{GDBN} should allow your program to see this signal; your program
6644can handle the signal, or else it may terminate if the signal is fatal
5ece1a18 6645and not handled. @code{pass} and @code{noignore} are synonyms.
c906108c
SS
6646
6647@item nopass
5ece1a18 6648@itemx ignore
c906108c 6649@value{GDBN} should not allow your program to see this signal.
5ece1a18 6650@code{nopass} and @code{ignore} are synonyms.
c906108c
SS
6651@end table
6652@c @end group
6653
d4f3574e
SS
6654When a signal stops your program, the signal is not visible to the
6655program until you
c906108c
SS
6656continue. Your program sees the signal then, if @code{pass} is in
6657effect for the signal in question @emph{at that time}. In other words,
6658after @value{GDBN} reports a signal, you can use the @code{handle}
6659command with @code{pass} or @code{nopass} to control whether your
6660program sees that signal when you continue.
6661
24f93129
EZ
6662The default is set to @code{nostop}, @code{noprint}, @code{pass} for
6663non-erroneous signals such as @code{SIGALRM}, @code{SIGWINCH} and
6664@code{SIGCHLD}, and to @code{stop}, @code{print}, @code{pass} for the
6665erroneous signals.
6666
c906108c
SS
6667You can also use the @code{signal} command to prevent your program from
6668seeing a signal, or cause it to see a signal it normally would not see,
6669or to give it any signal at any time. For example, if your program stopped
6670due to some sort of memory reference error, you might store correct
6671values into the erroneous variables and continue, hoping to see more
6672execution; but your program would probably terminate immediately as
6673a result of the fatal signal once it saw the signal. To prevent this,
6674you can continue with @samp{signal 0}. @xref{Signaling, ,Giving your
79a6e687 6675Program a Signal}.
c906108c 6676
e5f8a7cc
PA
6677@cindex stepping and signal handlers
6678@anchor{stepping and signal handlers}
6679
6680@value{GDBN} optimizes for stepping the mainline code. If a signal
6681that has @code{handle nostop} and @code{handle pass} set arrives while
6682a stepping command (e.g., @code{stepi}, @code{step}, @code{next}) is
6683in progress, @value{GDBN} lets the signal handler run and then resumes
6684stepping the mainline code once the signal handler returns. In other
6685words, @value{GDBN} steps over the signal handler. This prevents
6686signals that you've specified as not interesting (with @code{handle
6687nostop}) from changing the focus of debugging unexpectedly. Note that
6688the signal handler itself may still hit a breakpoint, stop for another
6689signal that has @code{handle stop} in effect, or for any other event
6690that normally results in stopping the stepping command sooner. Also
6691note that @value{GDBN} still informs you that the program received a
6692signal if @code{handle print} is set.
6693
6694@anchor{stepping into signal handlers}
6695
6696If you set @code{handle pass} for a signal, and your program sets up a
6697handler for it, then issuing a stepping command, such as @code{step}
6698or @code{stepi}, when your program is stopped due to the signal will
6699step @emph{into} the signal handler (if the target supports that).
6700
6701Likewise, if you use the @code{queue-signal} command to queue a signal
6702to be delivered to the current thread when execution of the thread
6703resumes (@pxref{Signaling, ,Giving your Program a Signal}), then a
6704stepping command will step into the signal handler.
6705
6706Here's an example, using @code{stepi} to step to the first instruction
6707of @code{SIGUSR1}'s handler:
6708
6709@smallexample
6710(@value{GDBP}) handle SIGUSR1
6711Signal Stop Print Pass to program Description
6712SIGUSR1 Yes Yes Yes User defined signal 1
6713(@value{GDBP}) c
6714Continuing.
6715
6716Program received signal SIGUSR1, User defined signal 1.
6717main () sigusr1.c:28
671828 p = 0;
6719(@value{GDBP}) si
6720sigusr1_handler () at sigusr1.c:9
67219 @{
6722@end smallexample
6723
6724The same, but using @code{queue-signal} instead of waiting for the
6725program to receive the signal first:
6726
6727@smallexample
6728(@value{GDBP}) n
672928 p = 0;
6730(@value{GDBP}) queue-signal SIGUSR1
6731(@value{GDBP}) si
6732sigusr1_handler () at sigusr1.c:9
67339 @{
6734(@value{GDBP})
6735@end smallexample
6736
4aa995e1
PA
6737@cindex extra signal information
6738@anchor{extra signal information}
6739
6740On some targets, @value{GDBN} can inspect extra signal information
6741associated with the intercepted signal, before it is actually
6742delivered to the program being debugged. This information is exported
6743by the convenience variable @code{$_siginfo}, and consists of data
6744that is passed by the kernel to the signal handler at the time of the
6745receipt of a signal. The data type of the information itself is
6746target dependent. You can see the data type using the @code{ptype
6747$_siginfo} command. On Unix systems, it typically corresponds to the
6748standard @code{siginfo_t} type, as defined in the @file{signal.h}
6749system header.
6750
6751Here's an example, on a @sc{gnu}/Linux system, printing the stray
6752referenced address that raised a segmentation fault.
6753
6754@smallexample
6755@group
6756(@value{GDBP}) continue
6757Program received signal SIGSEGV, Segmentation fault.
67580x0000000000400766 in main ()
675969 *(int *)p = 0;
6760(@value{GDBP}) ptype $_siginfo
6761type = struct @{
6762 int si_signo;
6763 int si_errno;
6764 int si_code;
6765 union @{
6766 int _pad[28];
6767 struct @{...@} _kill;
6768 struct @{...@} _timer;
6769 struct @{...@} _rt;
6770 struct @{...@} _sigchld;
6771 struct @{...@} _sigfault;
6772 struct @{...@} _sigpoll;
6773 @} _sifields;
6774@}
6775(@value{GDBP}) ptype $_siginfo._sifields._sigfault
6776type = struct @{
6777 void *si_addr;
6778@}
6779(@value{GDBP}) p $_siginfo._sifields._sigfault.si_addr
6780$1 = (void *) 0x7ffff7ff7000
6781@end group
6782@end smallexample
6783
6784Depending on target support, @code{$_siginfo} may also be writable.
6785
012b3a21
WT
6786@cindex Intel MPX boundary violations
6787@cindex boundary violations, Intel MPX
6788On some targets, a @code{SIGSEGV} can be caused by a boundary
6789violation, i.e., accessing an address outside of the allowed range.
6790In those cases @value{GDBN} may displays additional information,
6791depending on how @value{GDBN} has been told to handle the signal.
6792With @code{handle stop SIGSEGV}, @value{GDBN} displays the violation
6793kind: "Upper" or "Lower", the memory address accessed and the
6794bounds, while with @code{handle nostop SIGSEGV} no additional
6795information is displayed.
6796
6797The usual output of a segfault is:
6798@smallexample
6799Program received signal SIGSEGV, Segmentation fault
68000x0000000000400d7c in upper () at i386-mpx-sigsegv.c:68
680168 value = *(p + len);
6802@end smallexample
6803
6804While a bound violation is presented as:
6805@smallexample
6806Program received signal SIGSEGV, Segmentation fault
6807Upper bound violation while accessing address 0x7fffffffc3b3
6808Bounds: [lower = 0x7fffffffc390, upper = 0x7fffffffc3a3]
68090x0000000000400d7c in upper () at i386-mpx-sigsegv.c:68
681068 value = *(p + len);
6811@end smallexample
6812
6d2ebf8b 6813@node Thread Stops
79a6e687 6814@section Stopping and Starting Multi-thread Programs
c906108c 6815
0606b73b
SL
6816@cindex stopped threads
6817@cindex threads, stopped
6818
6819@cindex continuing threads
6820@cindex threads, continuing
6821
6822@value{GDBN} supports debugging programs with multiple threads
6823(@pxref{Threads,, Debugging Programs with Multiple Threads}). There
6824are two modes of controlling execution of your program within the
6825debugger. In the default mode, referred to as @dfn{all-stop mode},
6826when any thread in your program stops (for example, at a breakpoint
6827or while being stepped), all other threads in the program are also stopped by
6828@value{GDBN}. On some targets, @value{GDBN} also supports
6829@dfn{non-stop mode}, in which other threads can continue to run freely while
6830you examine the stopped thread in the debugger.
6831
6832@menu
6833* All-Stop Mode:: All threads stop when GDB takes control
6834* Non-Stop Mode:: Other threads continue to execute
6835* Background Execution:: Running your program asynchronously
6836* Thread-Specific Breakpoints:: Controlling breakpoints
6837* Interrupted System Calls:: GDB may interfere with system calls
d914c394 6838* Observer Mode:: GDB does not alter program behavior
0606b73b
SL
6839@end menu
6840
6841@node All-Stop Mode
6842@subsection All-Stop Mode
6843
6844@cindex all-stop mode
6845
6846In all-stop mode, whenever your program stops under @value{GDBN} for any reason,
6847@emph{all} threads of execution stop, not just the current thread. This
6848allows you to examine the overall state of the program, including
6849switching between threads, without worrying that things may change
6850underfoot.
6851
6852Conversely, whenever you restart the program, @emph{all} threads start
6853executing. @emph{This is true even when single-stepping} with commands
6854like @code{step} or @code{next}.
6855
6856In particular, @value{GDBN} cannot single-step all threads in lockstep.
6857Since thread scheduling is up to your debugging target's operating
6858system (not controlled by @value{GDBN}), other threads may
6859execute more than one statement while the current thread completes a
6860single step. Moreover, in general other threads stop in the middle of a
6861statement, rather than at a clean statement boundary, when the program
6862stops.
6863
6864You might even find your program stopped in another thread after
6865continuing or even single-stepping. This happens whenever some other
6866thread runs into a breakpoint, a signal, or an exception before the
6867first thread completes whatever you requested.
6868
6869@cindex automatic thread selection
6870@cindex switching threads automatically
6871@cindex threads, automatic switching
6872Whenever @value{GDBN} stops your program, due to a breakpoint or a
6873signal, it automatically selects the thread where that breakpoint or
6874signal happened. @value{GDBN} alerts you to the context switch with a
6875message such as @samp{[Switching to Thread @var{n}]} to identify the
6876thread.
6877
6878On some OSes, you can modify @value{GDBN}'s default behavior by
6879locking the OS scheduler to allow only a single thread to run.
6880
6881@table @code
6882@item set scheduler-locking @var{mode}
6883@cindex scheduler locking mode
6884@cindex lock scheduler
f2665db5
MM
6885Set the scheduler locking mode. It applies to normal execution,
6886record mode, and replay mode. If it is @code{off}, then there is no
6887locking and any thread may run at any time. If @code{on}, then only
6888the current thread may run when the inferior is resumed. The
6889@code{step} mode optimizes for single-stepping; it prevents other
6890threads from preempting the current thread while you are stepping, so
6891that the focus of debugging does not change unexpectedly. Other
6892threads never get a chance to run when you step, and they are
6893completely free to run when you use commands like @samp{continue},
6894@samp{until}, or @samp{finish}. However, unless another thread hits a
6895breakpoint during its timeslice, @value{GDBN} does not change the
6896current thread away from the thread that you are debugging. The
6897@code{replay} mode behaves like @code{off} in record mode and like
6898@code{on} in replay mode.
0606b73b
SL
6899
6900@item show scheduler-locking
6901Display the current scheduler locking mode.
6902@end table
6903
d4db2f36
PA
6904@cindex resume threads of multiple processes simultaneously
6905By default, when you issue one of the execution commands such as
6906@code{continue}, @code{next} or @code{step}, @value{GDBN} allows only
6907threads of the current inferior to run. For example, if @value{GDBN}
6908is attached to two inferiors, each with two threads, the
6909@code{continue} command resumes only the two threads of the current
6910inferior. This is useful, for example, when you debug a program that
6911forks and you want to hold the parent stopped (so that, for instance,
6912it doesn't run to exit), while you debug the child. In other
6913situations, you may not be interested in inspecting the current state
6914of any of the processes @value{GDBN} is attached to, and you may want
6915to resume them all until some breakpoint is hit. In the latter case,
6916you can instruct @value{GDBN} to allow all threads of all the
6917inferiors to run with the @w{@code{set schedule-multiple}} command.
6918
6919@table @code
6920@kindex set schedule-multiple
6921@item set schedule-multiple
6922Set the mode for allowing threads of multiple processes to be resumed
6923when an execution command is issued. When @code{on}, all threads of
6924all processes are allowed to run. When @code{off}, only the threads
6925of the current process are resumed. The default is @code{off}. The
6926@code{scheduler-locking} mode takes precedence when set to @code{on},
6927or while you are stepping and set to @code{step}.
6928
6929@item show schedule-multiple
6930Display the current mode for resuming the execution of threads of
6931multiple processes.
6932@end table
6933
0606b73b
SL
6934@node Non-Stop Mode
6935@subsection Non-Stop Mode
6936
6937@cindex non-stop mode
6938
6939@c This section is really only a place-holder, and needs to be expanded
97d8f0ee 6940@c with more details.
0606b73b
SL
6941
6942For some multi-threaded targets, @value{GDBN} supports an optional
6943mode of operation in which you can examine stopped program threads in
6944the debugger while other threads continue to execute freely. This
97d8f0ee
DE
6945minimizes intrusion when debugging live systems, such as programs
6946where some threads have real-time constraints or must continue to
0606b73b
SL
6947respond to external events. This is referred to as @dfn{non-stop} mode.
6948
6949In non-stop mode, when a thread stops to report a debugging event,
6950@emph{only} that thread is stopped; @value{GDBN} does not stop other
6951threads as well, in contrast to the all-stop mode behavior. Additionally,
6952execution commands such as @code{continue} and @code{step} apply by default
6953only to the current thread in non-stop mode, rather than all threads as
6954in all-stop mode. This allows you to control threads explicitly in
97d8f0ee 6955ways that are not possible in all-stop mode --- for example, stepping
0606b73b 6956one thread while allowing others to run freely, stepping
97d8f0ee 6957one thread while holding all others stopped, or stepping several threads
0606b73b
SL
6958independently and simultaneously.
6959
6960To enter non-stop mode, use this sequence of commands before you run
6961or attach to your program:
6962
0606b73b 6963@smallexample
0606b73b
SL
6964# If using the CLI, pagination breaks non-stop.
6965set pagination off
6966
6967# Finally, turn it on!
6968set non-stop on
6969@end smallexample
6970
6971You can use these commands to manipulate the non-stop mode setting:
6972
6973@table @code
6974@kindex set non-stop
6975@item set non-stop on
6976Enable selection of non-stop mode.
6977@item set non-stop off
6978Disable selection of non-stop mode.
6979@kindex show non-stop
6980@item show non-stop
6981Show the current non-stop enablement setting.
6982@end table
6983
6984Note these commands only reflect whether non-stop mode is enabled,
97d8f0ee 6985not whether the currently-executing program is being run in non-stop mode.
0606b73b 6986In particular, the @code{set non-stop} preference is only consulted when
97d8f0ee 6987@value{GDBN} starts or connects to the target program, and it is generally
0606b73b
SL
6988not possible to switch modes once debugging has started. Furthermore,
6989since not all targets support non-stop mode, even when you have enabled
6990non-stop mode, @value{GDBN} may still fall back to all-stop operation by
6991default.
6992
6993In non-stop mode, all execution commands apply only to the current thread
97d8f0ee 6994by default. That is, @code{continue} only continues one thread.
0606b73b
SL
6995To continue all threads, issue @code{continue -a} or @code{c -a}.
6996
97d8f0ee 6997You can use @value{GDBN}'s background execution commands
0606b73b 6998(@pxref{Background Execution}) to run some threads in the background
97d8f0ee 6999while you continue to examine or step others from @value{GDBN}.
0606b73b
SL
7000The MI execution commands (@pxref{GDB/MI Program Execution}) are
7001always executed asynchronously in non-stop mode.
7002
7003Suspending execution is done with the @code{interrupt} command when
97d8f0ee
DE
7004running in the background, or @kbd{Ctrl-c} during foreground execution.
7005In all-stop mode, this stops the whole process;
7006but in non-stop mode the interrupt applies only to the current thread.
0606b73b
SL
7007To stop the whole program, use @code{interrupt -a}.
7008
7009Other execution commands do not currently support the @code{-a} option.
7010
7011In non-stop mode, when a thread stops, @value{GDBN} doesn't automatically make
7012that thread current, as it does in all-stop mode. This is because the
97d8f0ee 7013thread stop notifications are asynchronous with respect to @value{GDBN}'s
0606b73b
SL
7014command interpreter, and it would be confusing if @value{GDBN} unexpectedly
7015changed to a different thread just as you entered a command to operate on the
7016previously current thread.
7017
7018@node Background Execution
7019@subsection Background Execution
7020
7021@cindex foreground execution
7022@cindex background execution
7023@cindex asynchronous execution
7024@cindex execution, foreground, background and asynchronous
7025
7026@value{GDBN}'s execution commands have two variants: the normal
7027foreground (synchronous) behavior, and a background
97d8f0ee 7028(asynchronous) behavior. In foreground execution, @value{GDBN} waits for
0606b73b
SL
7029the program to report that some thread has stopped before prompting for
7030another command. In background execution, @value{GDBN} immediately gives
7031a command prompt so that you can issue other commands while your program runs.
7032
32fc0df9
PA
7033If the target doesn't support async mode, @value{GDBN} issues an error
7034message if you attempt to use the background execution commands.
7035
74fdb8ff 7036@cindex @code{&}, background execution of commands
0606b73b
SL
7037To specify background execution, add a @code{&} to the command. For example,
7038the background form of the @code{continue} command is @code{continue&}, or
7039just @code{c&}. The execution commands that accept background execution
7040are:
7041
7042@table @code
7043@kindex run&
7044@item run
7045@xref{Starting, , Starting your Program}.
7046
7047@item attach
7048@kindex attach&
7049@xref{Attach, , Debugging an Already-running Process}.
7050
7051@item step
7052@kindex step&
7053@xref{Continuing and Stepping, step}.
7054
7055@item stepi
7056@kindex stepi&
7057@xref{Continuing and Stepping, stepi}.
7058
7059@item next
7060@kindex next&
7061@xref{Continuing and Stepping, next}.
7062
7ce58dd2
DE
7063@item nexti
7064@kindex nexti&
7065@xref{Continuing and Stepping, nexti}.
7066
0606b73b
SL
7067@item continue
7068@kindex continue&
7069@xref{Continuing and Stepping, continue}.
7070
7071@item finish
7072@kindex finish&
7073@xref{Continuing and Stepping, finish}.
7074
7075@item until
7076@kindex until&
7077@xref{Continuing and Stepping, until}.
7078
7079@end table
7080
7081Background execution is especially useful in conjunction with non-stop
7082mode for debugging programs with multiple threads; see @ref{Non-Stop Mode}.
7083However, you can also use these commands in the normal all-stop mode with
7084the restriction that you cannot issue another execution command until the
7085previous one finishes. Examples of commands that are valid in all-stop
7086mode while the program is running include @code{help} and @code{info break}.
7087
7088You can interrupt your program while it is running in the background by
7089using the @code{interrupt} command.
7090
7091@table @code
7092@kindex interrupt
7093@item interrupt
7094@itemx interrupt -a
7095
97d8f0ee 7096Suspend execution of the running program. In all-stop mode,
0606b73b 7097@code{interrupt} stops the whole process, but in non-stop mode, it stops
97d8f0ee 7098only the current thread. To stop the whole program in non-stop mode,
0606b73b
SL
7099use @code{interrupt -a}.
7100@end table
7101
0606b73b
SL
7102@node Thread-Specific Breakpoints
7103@subsection Thread-Specific Breakpoints
7104
c906108c 7105When your program has multiple threads (@pxref{Threads,, Debugging
79a6e687 7106Programs with Multiple Threads}), you can choose whether to set
c906108c
SS
7107breakpoints on all threads, or on a particular thread.
7108
7109@table @code
7110@cindex breakpoints and threads
7111@cindex thread breakpoints
5d5658a1
PA
7112@kindex break @dots{} thread @var{thread-id}
7113@item break @var{location} thread @var{thread-id}
7114@itemx break @var{location} thread @var{thread-id} if @dots{}
629500fa 7115@var{location} specifies source lines; there are several ways of
2a25a5ba
EZ
7116writing them (@pxref{Specify Location}), but the effect is always to
7117specify some source line.
c906108c 7118
5d5658a1 7119Use the qualifier @samp{thread @var{thread-id}} with a breakpoint command
c906108c 7120to specify that you only want @value{GDBN} to stop the program when a
5d5658a1
PA
7121particular thread reaches this breakpoint. The @var{thread-id} specifier
7122is one of the thread identifiers assigned by @value{GDBN}, shown
697aa1b7 7123in the first column of the @samp{info threads} display.
c906108c 7124
5d5658a1 7125If you do not specify @samp{thread @var{thread-id}} when you set a
c906108c
SS
7126breakpoint, the breakpoint applies to @emph{all} threads of your
7127program.
7128
7129You can use the @code{thread} qualifier on conditional breakpoints as
5d5658a1 7130well; in this case, place @samp{thread @var{thread-id}} before or
b6199126 7131after the breakpoint condition, like this:
c906108c
SS
7132
7133@smallexample
2df3850c 7134(@value{GDBP}) break frik.c:13 thread 28 if bartab > lim
c906108c
SS
7135@end smallexample
7136
7137@end table
7138
f4fb82a1
PA
7139Thread-specific breakpoints are automatically deleted when
7140@value{GDBN} detects the corresponding thread is no longer in the
7141thread list. For example:
7142
7143@smallexample
7144(@value{GDBP}) c
7145Thread-specific breakpoint 3 deleted - thread 28 no longer in the thread list.
7146@end smallexample
7147
7148There are several ways for a thread to disappear, such as a regular
7149thread exit, but also when you detach from the process with the
7150@code{detach} command (@pxref{Attach, ,Debugging an Already-running
7151Process}), or if @value{GDBN} loses the remote connection
7152(@pxref{Remote Debugging}), etc. Note that with some targets,
7153@value{GDBN} is only able to detect a thread has exited when the user
7154explictly asks for the thread list with the @code{info threads}
7155command.
7156
0606b73b
SL
7157@node Interrupted System Calls
7158@subsection Interrupted System Calls
c906108c 7159
36d86913
MC
7160@cindex thread breakpoints and system calls
7161@cindex system calls and thread breakpoints
7162@cindex premature return from system calls
0606b73b
SL
7163There is an unfortunate side effect when using @value{GDBN} to debug
7164multi-threaded programs. If one thread stops for a
36d86913
MC
7165breakpoint, or for some other reason, and another thread is blocked in a
7166system call, then the system call may return prematurely. This is a
7167consequence of the interaction between multiple threads and the signals
7168that @value{GDBN} uses to implement breakpoints and other events that
7169stop execution.
7170
7171To handle this problem, your program should check the return value of
7172each system call and react appropriately. This is good programming
7173style anyways.
7174
7175For example, do not write code like this:
7176
7177@smallexample
7178 sleep (10);
7179@end smallexample
7180
7181The call to @code{sleep} will return early if a different thread stops
7182at a breakpoint or for some other reason.
7183
7184Instead, write this:
7185
7186@smallexample
7187 int unslept = 10;
7188 while (unslept > 0)
7189 unslept = sleep (unslept);
7190@end smallexample
7191
7192A system call is allowed to return early, so the system is still
7193conforming to its specification. But @value{GDBN} does cause your
7194multi-threaded program to behave differently than it would without
7195@value{GDBN}.
7196
7197Also, @value{GDBN} uses internal breakpoints in the thread library to
7198monitor certain events such as thread creation and thread destruction.
7199When such an event happens, a system call in another thread may return
7200prematurely, even though your program does not appear to stop.
7201
d914c394
SS
7202@node Observer Mode
7203@subsection Observer Mode
7204
7205If you want to build on non-stop mode and observe program behavior
7206without any chance of disruption by @value{GDBN}, you can set
7207variables to disable all of the debugger's attempts to modify state,
7208whether by writing memory, inserting breakpoints, etc. These operate
7209at a low level, intercepting operations from all commands.
7210
7211When all of these are set to @code{off}, then @value{GDBN} is said to
7212be @dfn{observer mode}. As a convenience, the variable
7213@code{observer} can be set to disable these, plus enable non-stop
7214mode.
7215
7216Note that @value{GDBN} will not prevent you from making nonsensical
7217combinations of these settings. For instance, if you have enabled
7218@code{may-insert-breakpoints} but disabled @code{may-write-memory},
7219then breakpoints that work by writing trap instructions into the code
7220stream will still not be able to be placed.
7221
7222@table @code
7223
7224@kindex observer
7225@item set observer on
7226@itemx set observer off
7227When set to @code{on}, this disables all the permission variables
7228below (except for @code{insert-fast-tracepoints}), plus enables
7229non-stop debugging. Setting this to @code{off} switches back to
7230normal debugging, though remaining in non-stop mode.
7231
7232@item show observer
7233Show whether observer mode is on or off.
7234
7235@kindex may-write-registers
7236@item set may-write-registers on
7237@itemx set may-write-registers off
7238This controls whether @value{GDBN} will attempt to alter the values of
7239registers, such as with assignment expressions in @code{print}, or the
7240@code{jump} command. It defaults to @code{on}.
7241
7242@item show may-write-registers
7243Show the current permission to write registers.
7244
7245@kindex may-write-memory
7246@item set may-write-memory on
7247@itemx set may-write-memory off
7248This controls whether @value{GDBN} will attempt to alter the contents
7249of memory, such as with assignment expressions in @code{print}. It
7250defaults to @code{on}.
7251
7252@item show may-write-memory
7253Show the current permission to write memory.
7254
7255@kindex may-insert-breakpoints
7256@item set may-insert-breakpoints on
7257@itemx set may-insert-breakpoints off
7258This controls whether @value{GDBN} will attempt to insert breakpoints.
7259This affects all breakpoints, including internal breakpoints defined
7260by @value{GDBN}. It defaults to @code{on}.
7261
7262@item show may-insert-breakpoints
7263Show the current permission to insert breakpoints.
7264
7265@kindex may-insert-tracepoints
7266@item set may-insert-tracepoints on
7267@itemx set may-insert-tracepoints off
7268This controls whether @value{GDBN} will attempt to insert (regular)
7269tracepoints at the beginning of a tracing experiment. It affects only
7270non-fast tracepoints, fast tracepoints being under the control of
7271@code{may-insert-fast-tracepoints}. It defaults to @code{on}.
7272
7273@item show may-insert-tracepoints
7274Show the current permission to insert tracepoints.
7275
7276@kindex may-insert-fast-tracepoints
7277@item set may-insert-fast-tracepoints on
7278@itemx set may-insert-fast-tracepoints off
7279This controls whether @value{GDBN} will attempt to insert fast
7280tracepoints at the beginning of a tracing experiment. It affects only
7281fast tracepoints, regular (non-fast) tracepoints being under the
7282control of @code{may-insert-tracepoints}. It defaults to @code{on}.
7283
7284@item show may-insert-fast-tracepoints
7285Show the current permission to insert fast tracepoints.
7286
7287@kindex may-interrupt
7288@item set may-interrupt on
7289@itemx set may-interrupt off
7290This controls whether @value{GDBN} will attempt to interrupt or stop
7291program execution. When this variable is @code{off}, the
7292@code{interrupt} command will have no effect, nor will
7293@kbd{Ctrl-c}. It defaults to @code{on}.
7294
7295@item show may-interrupt
7296Show the current permission to interrupt or stop the program.
7297
7298@end table
c906108c 7299
bacec72f
MS
7300@node Reverse Execution
7301@chapter Running programs backward
7302@cindex reverse execution
7303@cindex running programs backward
7304
7305When you are debugging a program, it is not unusual to realize that
7306you have gone too far, and some event of interest has already happened.
7307If the target environment supports it, @value{GDBN} can allow you to
7308``rewind'' the program by running it backward.
7309
7310A target environment that supports reverse execution should be able
7311to ``undo'' the changes in machine state that have taken place as the
7312program was executing normally. Variables, registers etc.@: should
7313revert to their previous values. Obviously this requires a great
7314deal of sophistication on the part of the target environment; not
7315all target environments can support reverse execution.
7316
7317When a program is executed in reverse, the instructions that
7318have most recently been executed are ``un-executed'', in reverse
7319order. The program counter runs backward, following the previous
7320thread of execution in reverse. As each instruction is ``un-executed'',
7321the values of memory and/or registers that were changed by that
7322instruction are reverted to their previous states. After executing
7323a piece of source code in reverse, all side effects of that code
7324should be ``undone'', and all variables should be returned to their
7325prior values@footnote{
7326Note that some side effects are easier to undo than others. For instance,
7327memory and registers are relatively easy, but device I/O is hard. Some
7328targets may be able undo things like device I/O, and some may not.
7329
7330The contract between @value{GDBN} and the reverse executing target
7331requires only that the target do something reasonable when
7332@value{GDBN} tells it to execute backwards, and then report the
7333results back to @value{GDBN}. Whatever the target reports back to
7334@value{GDBN}, @value{GDBN} will report back to the user. @value{GDBN}
7335assumes that the memory and registers that the target reports are in a
6b92c0d3 7336consistent state, but @value{GDBN} accepts whatever it is given.
bacec72f
MS
7337}.
7338
73f8a590
PA
7339On some platforms, @value{GDBN} has built-in support for reverse
7340execution, activated with the @code{record} or @code{record btrace}
7341commands. @xref{Process Record and Replay}. Some remote targets,
7342typically full system emulators, support reverse execution directly
7343without requiring any special command.
7344
bacec72f
MS
7345If you are debugging in a target environment that supports
7346reverse execution, @value{GDBN} provides the following commands.
7347
7348@table @code
7349@kindex reverse-continue
7350@kindex rc @r{(@code{reverse-continue})}
7351@item reverse-continue @r{[}@var{ignore-count}@r{]}
7352@itemx rc @r{[}@var{ignore-count}@r{]}
7353Beginning at the point where your program last stopped, start executing
7354in reverse. Reverse execution will stop for breakpoints and synchronous
7355exceptions (signals), just like normal execution. Behavior of
7356asynchronous signals depends on the target environment.
7357
7358@kindex reverse-step
7359@kindex rs @r{(@code{step})}
7360@item reverse-step @r{[}@var{count}@r{]}
7361Run the program backward until control reaches the start of a
7362different source line; then stop it, and return control to @value{GDBN}.
7363
7364Like the @code{step} command, @code{reverse-step} will only stop
7365at the beginning of a source line. It ``un-executes'' the previously
7366executed source line. If the previous source line included calls to
7367debuggable functions, @code{reverse-step} will step (backward) into
7368the called function, stopping at the beginning of the @emph{last}
7369statement in the called function (typically a return statement).
7370
7371Also, as with the @code{step} command, if non-debuggable functions are
7372called, @code{reverse-step} will run thru them backward without stopping.
7373
7374@kindex reverse-stepi
7375@kindex rsi @r{(@code{reverse-stepi})}
7376@item reverse-stepi @r{[}@var{count}@r{]}
7377Reverse-execute one machine instruction. Note that the instruction
7378to be reverse-executed is @emph{not} the one pointed to by the program
7379counter, but the instruction executed prior to that one. For instance,
7380if the last instruction was a jump, @code{reverse-stepi} will take you
7381back from the destination of the jump to the jump instruction itself.
7382
7383@kindex reverse-next
7384@kindex rn @r{(@code{reverse-next})}
7385@item reverse-next @r{[}@var{count}@r{]}
7386Run backward to the beginning of the previous line executed in
7387the current (innermost) stack frame. If the line contains function
7388calls, they will be ``un-executed'' without stopping. Starting from
7389the first line of a function, @code{reverse-next} will take you back
7390to the caller of that function, @emph{before} the function was called,
7391just as the normal @code{next} command would take you from the last
7392line of a function back to its return to its caller
16af530a 7393@footnote{Unless the code is too heavily optimized.}.
bacec72f
MS
7394
7395@kindex reverse-nexti
7396@kindex rni @r{(@code{reverse-nexti})}
7397@item reverse-nexti @r{[}@var{count}@r{]}
7398Like @code{nexti}, @code{reverse-nexti} executes a single instruction
7399in reverse, except that called functions are ``un-executed'' atomically.
7400That is, if the previously executed instruction was a return from
540aa8e7 7401another function, @code{reverse-nexti} will continue to execute
bacec72f
MS
7402in reverse until the call to that function (from the current stack
7403frame) is reached.
7404
7405@kindex reverse-finish
7406@item reverse-finish
7407Just as the @code{finish} command takes you to the point where the
7408current function returns, @code{reverse-finish} takes you to the point
7409where it was called. Instead of ending up at the end of the current
7410function invocation, you end up at the beginning.
7411
7412@kindex set exec-direction
7413@item set exec-direction
7414Set the direction of target execution.
984359d2 7415@item set exec-direction reverse
bacec72f
MS
7416@cindex execute forward or backward in time
7417@value{GDBN} will perform all execution commands in reverse, until the
7418exec-direction mode is changed to ``forward''. Affected commands include
7419@code{step, stepi, next, nexti, continue, and finish}. The @code{return}
7420command cannot be used in reverse mode.
7421@item set exec-direction forward
7422@value{GDBN} will perform all execution commands in the normal fashion.
7423This is the default.
7424@end table
7425
c906108c 7426
a2311334
EZ
7427@node Process Record and Replay
7428@chapter Recording Inferior's Execution and Replaying It
53cc454a
HZ
7429@cindex process record and replay
7430@cindex recording inferior's execution and replaying it
7431
8e05493c
EZ
7432On some platforms, @value{GDBN} provides a special @dfn{process record
7433and replay} target that can record a log of the process execution, and
7434replay it later with both forward and reverse execution commands.
a2311334
EZ
7435
7436@cindex replay mode
7437When this target is in use, if the execution log includes the record
7438for the next instruction, @value{GDBN} will debug in @dfn{replay
7439mode}. In the replay mode, the inferior does not really execute code
7440instructions. Instead, all the events that normally happen during
7441code execution are taken from the execution log. While code is not
7442really executed in replay mode, the values of registers (including the
7443program counter register) and the memory of the inferior are still
8e05493c
EZ
7444changed as they normally would. Their contents are taken from the
7445execution log.
a2311334
EZ
7446
7447@cindex record mode
7448If the record for the next instruction is not in the execution log,
7449@value{GDBN} will debug in @dfn{record mode}. In this mode, the
7450inferior executes normally, and @value{GDBN} records the execution log
7451for future replay.
7452
8e05493c
EZ
7453The process record and replay target supports reverse execution
7454(@pxref{Reverse Execution}), even if the platform on which the
7455inferior runs does not. However, the reverse execution is limited in
7456this case by the range of the instructions recorded in the execution
7457log. In other words, reverse execution on platforms that don't
7458support it directly can only be done in the replay mode.
7459
7460When debugging in the reverse direction, @value{GDBN} will work in
7461replay mode as long as the execution log includes the record for the
7462previous instruction; otherwise, it will work in record mode, if the
7463platform supports reverse execution, or stop if not.
7464
73f8a590
PA
7465Currently, process record and replay is supported on ARM, Aarch64,
7466Moxie, PowerPC, PowerPC64, S/390, and x86 (i386/amd64) running
7467GNU/Linux. Process record and replay can be used both when native
7468debugging, and when remote debugging via @code{gdbserver}.
7469
a2311334
EZ
7470For architecture environments that support process record and replay,
7471@value{GDBN} provides the following commands:
53cc454a
HZ
7472
7473@table @code
7474@kindex target record
59ea5688
MM
7475@kindex target record-full
7476@kindex target record-btrace
53cc454a 7477@kindex record
59ea5688
MM
7478@kindex record full
7479@kindex record btrace
f4abbc16 7480@kindex record btrace bts
b20a6524 7481@kindex record btrace pt
f4abbc16 7482@kindex record bts
b20a6524 7483@kindex record pt
53cc454a 7484@kindex rec
59ea5688
MM
7485@kindex rec full
7486@kindex rec btrace
f4abbc16 7487@kindex rec btrace bts
b20a6524 7488@kindex rec btrace pt
f4abbc16 7489@kindex rec bts
b20a6524 7490@kindex rec pt
59ea5688
MM
7491@item record @var{method}
7492This command starts the process record and replay target. The
7493recording method can be specified as parameter. Without a parameter
7494the command uses the @code{full} recording method. The following
7495recording methods are available:
a2311334 7496
59ea5688
MM
7497@table @code
7498@item full
7499Full record/replay recording using @value{GDBN}'s software record and
7500replay implementation. This method allows replaying and reverse
7501execution.
7502
f4abbc16 7503@item btrace @var{format}
73f8a590
PA
7504Hardware-supported instruction recording, supported on Intel
7505processors. This method does not record data. Further, the data is
7506collected in a ring buffer so old data will be overwritten when the
7507buffer is full. It allows limited reverse execution. Variables and
7508registers are not available during reverse execution. In remote
7509debugging, recording continues on disconnect. Recorded data can be
7510inspected after reconnecting. The recording may be stopped using
7511@code{record stop}.
59ea5688 7512
f4abbc16
MM
7513The recording format can be specified as parameter. Without a parameter
7514the command chooses the recording format. The following recording
7515formats are available:
7516
7517@table @code
7518@item bts
7519@cindex branch trace store
7520Use the @dfn{Branch Trace Store} (@acronym{BTS}) recording format. In
7521this format, the processor stores a from/to record for each executed
7522branch in the btrace ring buffer.
b20a6524
MM
7523
7524@item pt
bc504a31
PA
7525@cindex Intel Processor Trace
7526Use the @dfn{Intel Processor Trace} recording format. In this
b20a6524
MM
7527format, the processor stores the execution trace in a compressed form
7528that is afterwards decoded by @value{GDBN}.
7529
7530The trace can be recorded with very low overhead. The compressed
7531trace format also allows small trace buffers to already contain a big
7532number of instructions compared to @acronym{BTS}.
7533
7534Decoding the recorded execution trace, on the other hand, is more
7535expensive than decoding @acronym{BTS} trace. This is mostly due to the
7536increased number of instructions to process. You should increase the
7537buffer-size with care.
f4abbc16
MM
7538@end table
7539
7540Not all recording formats may be available on all processors.
59ea5688
MM
7541@end table
7542
7543The process record and replay target can only debug a process that is
7544already running. Therefore, you need first to start the process with
7545the @kbd{run} or @kbd{start} commands, and then start the recording
7546with the @kbd{record @var{method}} command.
7547
a2311334
EZ
7548@cindex displaced stepping, and process record and replay
7549Displaced stepping (@pxref{Maintenance Commands,, displaced stepping})
7550will be automatically disabled when process record and replay target
7551is started. That's because the process record and replay target
7552doesn't support displaced stepping.
7553
7554@cindex non-stop mode, and process record and replay
7555@cindex asynchronous execution, and process record and replay
7556If the inferior is in the non-stop mode (@pxref{Non-Stop Mode}) or in
59ea5688
MM
7557the asynchronous execution mode (@pxref{Background Execution}), not
7558all recording methods are available. The @code{full} recording method
7559does not support these two modes.
53cc454a
HZ
7560
7561@kindex record stop
7562@kindex rec s
7563@item record stop
a2311334
EZ
7564Stop the process record and replay target. When process record and
7565replay target stops, the entire execution log will be deleted and the
7566inferior will either be terminated, or will remain in its final state.
53cc454a 7567
a2311334
EZ
7568When you stop the process record and replay target in record mode (at
7569the end of the execution log), the inferior will be stopped at the
7570next instruction that would have been recorded. In other words, if
7571you record for a while and then stop recording, the inferior process
7572will be left in the same state as if the recording never happened.
53cc454a 7573
a2311334
EZ
7574On the other hand, if the process record and replay target is stopped
7575while in replay mode (that is, not at the end of the execution log,
7576but at some earlier point), the inferior process will become ``live''
7577at that earlier state, and it will then be possible to continue the
7578usual ``live'' debugging of the process from that state.
53cc454a 7579
a2311334
EZ
7580When the inferior process exits, or @value{GDBN} detaches from it,
7581process record and replay target will automatically stop itself.
53cc454a 7582
742ce053
MM
7583@kindex record goto
7584@item record goto
7585Go to a specific location in the execution log. There are several
7586ways to specify the location to go to:
7587
7588@table @code
7589@item record goto begin
7590@itemx record goto start
7591Go to the beginning of the execution log.
7592
7593@item record goto end
7594Go to the end of the execution log.
7595
7596@item record goto @var{n}
7597Go to instruction number @var{n} in the execution log.
7598@end table
7599
24e933df
HZ
7600@kindex record save
7601@item record save @var{filename}
7602Save the execution log to a file @file{@var{filename}}.
7603Default filename is @file{gdb_record.@var{process_id}}, where
7604@var{process_id} is the process ID of the inferior.
7605
59ea5688
MM
7606This command may not be available for all recording methods.
7607
24e933df
HZ
7608@kindex record restore
7609@item record restore @var{filename}
7610Restore the execution log from a file @file{@var{filename}}.
7611File must have been created with @code{record save}.
7612
59ea5688
MM
7613@kindex set record full
7614@item set record full insn-number-max @var{limit}
f81d1120 7615@itemx set record full insn-number-max unlimited
59ea5688
MM
7616Set the limit of instructions to be recorded for the @code{full}
7617recording method. Default value is 200000.
53cc454a 7618
a2311334
EZ
7619If @var{limit} is a positive number, then @value{GDBN} will start
7620deleting instructions from the log once the number of the record
7621instructions becomes greater than @var{limit}. For every new recorded
7622instruction, @value{GDBN} will delete the earliest recorded
7623instruction to keep the number of recorded instructions at the limit.
7624(Since deleting recorded instructions loses information, @value{GDBN}
7625lets you control what happens when the limit is reached, by means of
7626the @code{stop-at-limit} option, described below.)
53cc454a 7627
f81d1120
PA
7628If @var{limit} is @code{unlimited} or zero, @value{GDBN} will never
7629delete recorded instructions from the execution log. The number of
7630recorded instructions is limited only by the available memory.
53cc454a 7631
59ea5688
MM
7632@kindex show record full
7633@item show record full insn-number-max
7634Show the limit of instructions to be recorded with the @code{full}
7635recording method.
53cc454a 7636
59ea5688
MM
7637@item set record full stop-at-limit
7638Control the behavior of the @code{full} recording method when the
7639number of recorded instructions reaches the limit. If ON (the
7640default), @value{GDBN} will stop when the limit is reached for the
7641first time and ask you whether you want to stop the inferior or
7642continue running it and recording the execution log. If you decide
7643to continue recording, each new recorded instruction will cause the
7644oldest one to be deleted.
53cc454a 7645
a2311334
EZ
7646If this option is OFF, @value{GDBN} will automatically delete the
7647oldest record to make room for each new one, without asking.
53cc454a 7648
59ea5688 7649@item show record full stop-at-limit
a2311334 7650Show the current setting of @code{stop-at-limit}.
53cc454a 7651
59ea5688 7652@item set record full memory-query
bb08c432 7653Control the behavior when @value{GDBN} is unable to record memory
59ea5688
MM
7654changes caused by an instruction for the @code{full} recording method.
7655If ON, @value{GDBN} will query whether to stop the inferior in that
7656case.
bb08c432
HZ
7657
7658If this option is OFF (the default), @value{GDBN} will automatically
7659ignore the effect of such instructions on memory. Later, when
7660@value{GDBN} replays this execution log, it will mark the log of this
7661instruction as not accessible, and it will not affect the replay
7662results.
7663
59ea5688 7664@item show record full memory-query
bb08c432
HZ
7665Show the current setting of @code{memory-query}.
7666
67b5c0c1
MM
7667@kindex set record btrace
7668The @code{btrace} record target does not trace data. As a
7669convenience, when replaying, @value{GDBN} reads read-only memory off
7670the live program directly, assuming that the addresses of the
7671read-only areas don't change. This for example makes it possible to
7672disassemble code while replaying, but not to print variables.
7673In some cases, being able to inspect variables might be useful.
7674You can use the following command for that:
7675
7676@item set record btrace replay-memory-access
7677Control the behavior of the @code{btrace} recording method when
7678accessing memory during replay. If @code{read-only} (the default),
7679@value{GDBN} will only allow accesses to read-only memory.
7680If @code{read-write}, @value{GDBN} will allow accesses to read-only
7681and to read-write memory. Beware that the accessed memory corresponds
7682to the live target and not necessarily to the current replay
7683position.
7684
4a4495d6
MM
7685@item set record btrace cpu @var{identifier}
7686Set the processor to be used for enabling workarounds for processor
7687errata when decoding the trace.
7688
7689Processor errata are defects in processor operation, caused by its
7690design or manufacture. They can cause a trace not to match the
7691specification. This, in turn, may cause trace decode to fail.
7692@value{GDBN} can detect erroneous trace packets and correct them, thus
7693avoiding the decoding failures. These corrections are known as
7694@dfn{errata workarounds}, and are enabled based on the processor on
7695which the trace was recorded.
7696
7697By default, @value{GDBN} attempts to detect the processor
7698automatically, and apply the necessary workarounds for it. However,
7699you may need to specify the processor if @value{GDBN} does not yet
7700support it. This command allows you to do that, and also allows to
7701disable the workarounds.
7702
7703The argument @var{identifier} identifies the @sc{cpu} and is of the
6b92c0d3 7704form: @code{@var{vendor}:@var{processor identifier}}. In addition,
4a4495d6
MM
7705there are two special identifiers, @code{none} and @code{auto}
7706(default).
7707
7708The following vendor identifiers and corresponding processor
7709identifiers are currently supported:
7710
7711@multitable @columnfractions .1 .9
7712
7713@item @code{intel}
7714@tab @var{family}/@var{model}[/@var{stepping}]
7715
7716@end multitable
7717
7718On GNU/Linux systems, the processor @var{family}, @var{model}, and
7719@var{stepping} can be obtained from @code{/proc/cpuinfo}.
7720
7721If @var{identifier} is @code{auto}, enable errata workarounds for the
7722processor on which the trace was recorded. If @var{identifier} is
7723@code{none}, errata workarounds are disabled.
7724
7725For example, when using an old @value{GDBN} on a new system, decode
7726may fail because @value{GDBN} does not support the new processor. It
7727often suffices to specify an older processor that @value{GDBN}
7728supports.
7729
7730@smallexample
7731(gdb) info record
7732Active record target: record-btrace
7733Recording format: Intel Processor Trace.
7734Buffer size: 16kB.
7735Failed to configure the Intel Processor Trace decoder: unknown cpu.
7736(gdb) set record btrace cpu intel:6/158
7737(gdb) info record
7738Active record target: record-btrace
7739Recording format: Intel Processor Trace.
7740Buffer size: 16kB.
7741Recorded 84872 instructions in 3189 functions (0 gaps) for thread 1 (...).
7742@end smallexample
7743
67b5c0c1
MM
7744@kindex show record btrace
7745@item show record btrace replay-memory-access
7746Show the current setting of @code{replay-memory-access}.
7747
4a4495d6
MM
7748@item show record btrace cpu
7749Show the processor to be used for enabling trace decode errata
7750workarounds.
7751
d33501a5
MM
7752@kindex set record btrace bts
7753@item set record btrace bts buffer-size @var{size}
7754@itemx set record btrace bts buffer-size unlimited
7755Set the requested ring buffer size for branch tracing in @acronym{BTS}
7756format. Default is 64KB.
7757
7758If @var{size} is a positive number, then @value{GDBN} will try to
7759allocate a buffer of at least @var{size} bytes for each new thread
7760that uses the btrace recording method and the @acronym{BTS} format.
7761The actually obtained buffer size may differ from the requested
7762@var{size}. Use the @code{info record} command to see the actual
7763buffer size for each thread that uses the btrace recording method and
7764the @acronym{BTS} format.
7765
7766If @var{limit} is @code{unlimited} or zero, @value{GDBN} will try to
7767allocate a buffer of 4MB.
7768
7769Bigger buffers mean longer traces. On the other hand, @value{GDBN} will
7770also need longer to process the branch trace data before it can be used.
7771
7772@item show record btrace bts buffer-size @var{size}
7773Show the current setting of the requested ring buffer size for branch
7774tracing in @acronym{BTS} format.
7775
b20a6524
MM
7776@kindex set record btrace pt
7777@item set record btrace pt buffer-size @var{size}
7778@itemx set record btrace pt buffer-size unlimited
bc504a31 7779Set the requested ring buffer size for branch tracing in Intel
b20a6524
MM
7780Processor Trace format. Default is 16KB.
7781
7782If @var{size} is a positive number, then @value{GDBN} will try to
7783allocate a buffer of at least @var{size} bytes for each new thread
bc504a31 7784that uses the btrace recording method and the Intel Processor Trace
b20a6524
MM
7785format. The actually obtained buffer size may differ from the
7786requested @var{size}. Use the @code{info record} command to see the
7787actual buffer size for each thread.
7788
7789If @var{limit} is @code{unlimited} or zero, @value{GDBN} will try to
7790allocate a buffer of 4MB.
7791
7792Bigger buffers mean longer traces. On the other hand, @value{GDBN} will
7793also need longer to process the branch trace data before it can be used.
7794
7795@item show record btrace pt buffer-size @var{size}
7796Show the current setting of the requested ring buffer size for branch
bc504a31 7797tracing in Intel Processor Trace format.
b20a6524 7798
29153c24
MS
7799@kindex info record
7800@item info record
59ea5688
MM
7801Show various statistics about the recording depending on the recording
7802method:
7803
7804@table @code
7805@item full
7806For the @code{full} recording method, it shows the state of process
7807record and its in-memory execution log buffer, including:
29153c24
MS
7808
7809@itemize @bullet
7810@item
7811Whether in record mode or replay mode.
7812@item
7813Lowest recorded instruction number (counting from when the current execution log started recording instructions).
7814@item
7815Highest recorded instruction number.
7816@item
7817Current instruction about to be replayed (if in replay mode).
7818@item
7819Number of instructions contained in the execution log.
7820@item
7821Maximum number of instructions that may be contained in the execution log.
7822@end itemize
53cc454a 7823
59ea5688 7824@item btrace
d33501a5
MM
7825For the @code{btrace} recording method, it shows:
7826
7827@itemize @bullet
7828@item
7829Recording format.
7830@item
7831Number of instructions that have been recorded.
7832@item
7833Number of blocks of sequential control-flow formed by the recorded
7834instructions.
7835@item
7836Whether in record mode or replay mode.
7837@end itemize
7838
7839For the @code{bts} recording format, it also shows:
7840@itemize @bullet
7841@item
7842Size of the perf ring buffer.
7843@end itemize
b20a6524
MM
7844
7845For the @code{pt} recording format, it also shows:
7846@itemize @bullet
7847@item
7848Size of the perf ring buffer.
7849@end itemize
59ea5688
MM
7850@end table
7851
53cc454a
HZ
7852@kindex record delete
7853@kindex rec del
7854@item record delete
a2311334 7855When record target runs in replay mode (``in the past''), delete the
53cc454a 7856subsequent execution log and begin to record a new execution log starting
a2311334 7857from the current address. This means you will abandon the previously
53cc454a 7858recorded ``future'' and begin recording a new ``future''.
59ea5688
MM
7859
7860@kindex record instruction-history
7861@kindex rec instruction-history
7862@item record instruction-history
7863Disassembles instructions from the recorded execution log. By
7864default, ten instructions are disassembled. This can be changed using
7865the @code{set record instruction-history-size} command. Instructions
da8c46d2
MM
7866are printed in execution order.
7867
0c532a29
MM
7868It can also print mixed source+disassembly if you specify the the
7869@code{/m} or @code{/s} modifier, and print the raw instructions in hex
7870as well as in symbolic form by specifying the @code{/r} modifier.
7871
7872The current position marker is printed for the instruction at the
7873current program counter value. This instruction can appear multiple
7874times in the trace and the current position marker will be printed
7875every time. To omit the current position marker, specify the
7876@code{/p} modifier.
7877
7878To better align the printed instructions when the trace contains
7879instructions from more than one function, the function name may be
7880omitted by specifying the @code{/f} modifier.
7881
da8c46d2
MM
7882Speculatively executed instructions are prefixed with @samp{?}. This
7883feature is not available for all recording formats.
7884
7885There are several ways to specify what part of the execution log to
7886disassemble:
59ea5688
MM
7887
7888@table @code
7889@item record instruction-history @var{insn}
7890Disassembles ten instructions starting from instruction number
7891@var{insn}.
7892
7893@item record instruction-history @var{insn}, +/-@var{n}
7894Disassembles @var{n} instructions around instruction number
7895@var{insn}. If @var{n} is preceded with @code{+}, disassembles
7896@var{n} instructions after instruction number @var{insn}. If
7897@var{n} is preceded with @code{-}, disassembles @var{n}
7898instructions before instruction number @var{insn}.
7899
7900@item record instruction-history
7901Disassembles ten more instructions after the last disassembly.
7902
7903@item record instruction-history -
7904Disassembles ten more instructions before the last disassembly.
7905
792005b0 7906@item record instruction-history @var{begin}, @var{end}
59ea5688
MM
7907Disassembles instructions beginning with instruction number
7908@var{begin} until instruction number @var{end}. The instruction
0688d04e 7909number @var{end} is included.
59ea5688
MM
7910@end table
7911
7912This command may not be available for all recording methods.
7913
7914@kindex set record
f81d1120
PA
7915@item set record instruction-history-size @var{size}
7916@itemx set record instruction-history-size unlimited
59ea5688
MM
7917Define how many instructions to disassemble in the @code{record
7918instruction-history} command. The default value is 10.
f81d1120 7919A @var{size} of @code{unlimited} means unlimited instructions.
59ea5688
MM
7920
7921@kindex show record
7922@item show record instruction-history-size
7923Show how many instructions to disassemble in the @code{record
7924instruction-history} command.
7925
7926@kindex record function-call-history
7927@kindex rec function-call-history
7928@item record function-call-history
7929Prints the execution history at function granularity. It prints one
7930line for each sequence of instructions that belong to the same
7931function giving the name of that function, the source lines
7932for this instruction sequence (if the @code{/l} modifier is
7933specified), and the instructions numbers that form the sequence (if
8710b709
MM
7934the @code{/i} modifier is specified). The function names are indented
7935to reflect the call stack depth if the @code{/c} modifier is
7936specified. The @code{/l}, @code{/i}, and @code{/c} modifiers can be
7937given together.
59ea5688
MM
7938
7939@smallexample
7940(@value{GDBP}) @b{list 1, 10}
79411 void foo (void)
79422 @{
79433 @}
79444
79455 void bar (void)
79466 @{
79477 ...
79488 foo ();
79499 ...
795010 @}
8710b709
MM
7951(@value{GDBP}) @b{record function-call-history /ilc}
79521 bar inst 1,4 at foo.c:6,8
79532 foo inst 5,10 at foo.c:2,3
79543 bar inst 11,13 at foo.c:9,10
59ea5688
MM
7955@end smallexample
7956
7957By default, ten lines are printed. This can be changed using the
7958@code{set record function-call-history-size} command. Functions are
7959printed in execution order. There are several ways to specify what
7960to print:
7961
7962@table @code
7963@item record function-call-history @var{func}
7964Prints ten functions starting from function number @var{func}.
7965
7966@item record function-call-history @var{func}, +/-@var{n}
7967Prints @var{n} functions around function number @var{func}. If
7968@var{n} is preceded with @code{+}, prints @var{n} functions after
7969function number @var{func}. If @var{n} is preceded with @code{-},
7970prints @var{n} functions before function number @var{func}.
7971
7972@item record function-call-history
7973Prints ten more functions after the last ten-line print.
7974
7975@item record function-call-history -
7976Prints ten more functions before the last ten-line print.
7977
792005b0 7978@item record function-call-history @var{begin}, @var{end}
59ea5688 7979Prints functions beginning with function number @var{begin} until
0688d04e 7980function number @var{end}. The function number @var{end} is included.
59ea5688
MM
7981@end table
7982
7983This command may not be available for all recording methods.
7984
f81d1120
PA
7985@item set record function-call-history-size @var{size}
7986@itemx set record function-call-history-size unlimited
59ea5688
MM
7987Define how many lines to print in the
7988@code{record function-call-history} command. The default value is 10.
f81d1120 7989A size of @code{unlimited} means unlimited lines.
59ea5688
MM
7990
7991@item show record function-call-history-size
7992Show how many lines to print in the
7993@code{record function-call-history} command.
53cc454a
HZ
7994@end table
7995
7996
6d2ebf8b 7997@node Stack
c906108c
SS
7998@chapter Examining the Stack
7999
8000When your program has stopped, the first thing you need to know is where it
8001stopped and how it got there.
8002
8003@cindex call stack
5d161b24
DB
8004Each time your program performs a function call, information about the call
8005is generated.
8006That information includes the location of the call in your program,
8007the arguments of the call,
c906108c 8008and the local variables of the function being called.
5d161b24 8009The information is saved in a block of data called a @dfn{stack frame}.
c906108c
SS
8010The stack frames are allocated in a region of memory called the @dfn{call
8011stack}.
8012
8013When your program stops, the @value{GDBN} commands for examining the
8014stack allow you to see all of this information.
8015
8016@cindex selected frame
8017One of the stack frames is @dfn{selected} by @value{GDBN} and many
8018@value{GDBN} commands refer implicitly to the selected frame. In
8019particular, whenever you ask @value{GDBN} for the value of a variable in
8020your program, the value is found in the selected frame. There are
8021special @value{GDBN} commands to select whichever frame you are
79a6e687 8022interested in. @xref{Selection, ,Selecting a Frame}.
c906108c
SS
8023
8024When your program stops, @value{GDBN} automatically selects the
5d161b24 8025currently executing frame and describes it briefly, similar to the
79a6e687 8026@code{frame} command (@pxref{Frame Info, ,Information about a Frame}).
c906108c
SS
8027
8028@menu
8029* Frames:: Stack frames
8030* Backtrace:: Backtraces
8031* Selection:: Selecting a frame
8032* Frame Info:: Information on a frame
0a232300 8033* Frame Apply:: Applying a command to several frames
0f59c28f 8034* Frame Filter Management:: Managing frame filters
c906108c
SS
8035
8036@end menu
8037
6d2ebf8b 8038@node Frames
79a6e687 8039@section Stack Frames
c906108c 8040
d4f3574e 8041@cindex frame, definition
c906108c
SS
8042@cindex stack frame
8043The call stack is divided up into contiguous pieces called @dfn{stack
8044frames}, or @dfn{frames} for short; each frame is the data associated
8045with one call to one function. The frame contains the arguments given
8046to the function, the function's local variables, and the address at
8047which the function is executing.
8048
8049@cindex initial frame
8050@cindex outermost frame
8051@cindex innermost frame
8052When your program is started, the stack has only one frame, that of the
8053function @code{main}. This is called the @dfn{initial} frame or the
8054@dfn{outermost} frame. Each time a function is called, a new frame is
8055made. Each time a function returns, the frame for that function invocation
8056is eliminated. If a function is recursive, there can be many frames for
8057the same function. The frame for the function in which execution is
8058actually occurring is called the @dfn{innermost} frame. This is the most
8059recently created of all the stack frames that still exist.
8060
8061@cindex frame pointer
8062Inside your program, stack frames are identified by their addresses. A
8063stack frame consists of many bytes, each of which has its own address; each
8064kind of computer has a convention for choosing one byte whose
8065address serves as the address of the frame. Usually this address is kept
e09f16f9
EZ
8066in a register called the @dfn{frame pointer register}
8067(@pxref{Registers, $fp}) while execution is going on in that frame.
c906108c 8068
f67ffa6a 8069@cindex frame level
c906108c 8070@cindex frame number
f67ffa6a
AB
8071@value{GDBN} labels each existing stack frame with a @dfn{level}, a
8072number that is zero for the innermost frame, one for the frame that
8073called it, and so on upward. These level numbers give you a way of
8074designating stack frames in @value{GDBN} commands. The terms
8075@dfn{frame number} and @dfn{frame level} can be used interchangeably to
8076describe this number.
c906108c 8077
6d2ebf8b
SS
8078@c The -fomit-frame-pointer below perennially causes hbox overflow
8079@c underflow problems.
c906108c
SS
8080@cindex frameless execution
8081Some compilers provide a way to compile functions so that they operate
e22ea452 8082without stack frames. (For example, the @value{NGCC} option
474c8240 8083@smallexample
6d2ebf8b 8084@samp{-fomit-frame-pointer}
474c8240 8085@end smallexample
6d2ebf8b 8086generates functions without a frame.)
c906108c
SS
8087This is occasionally done with heavily used library functions to save
8088the frame setup time. @value{GDBN} has limited facilities for dealing
8089with these function invocations. If the innermost function invocation
8090has no stack frame, @value{GDBN} nevertheless regards it as though
8091it had a separate frame, which is numbered zero as usual, allowing
8092correct tracing of the function call chain. However, @value{GDBN} has
8093no provision for frameless functions elsewhere in the stack.
8094
6d2ebf8b 8095@node Backtrace
c906108c
SS
8096@section Backtraces
8097
09d4efe1
EZ
8098@cindex traceback
8099@cindex call stack traces
c906108c
SS
8100A backtrace is a summary of how your program got where it is. It shows one
8101line per frame, for many frames, starting with the currently executing
8102frame (frame zero), followed by its caller (frame one), and on up the
8103stack.
8104
1e611234 8105@anchor{backtrace-command}
c906108c 8106@kindex backtrace
41afff9a 8107@kindex bt @r{(@code{backtrace})}
ea3b0687
TT
8108To print a backtrace of the entire stack, use the @code{backtrace}
8109command, or its alias @code{bt}. This command will print one line per
8110frame for frames in the stack. By default, all stack frames are
8111printed. You can stop the backtrace at any time by typing the system
8112interrupt character, normally @kbd{Ctrl-c}.
8113
8114@table @code
3345721a
PA
8115@item backtrace [@var{option}]@dots{} [@var{qualifier}]@dots{} [@var{count}]
8116@itemx bt [@var{option}]@dots{} [@var{qualifier}]@dots{} [@var{count}]
8117Print the backtrace of the entire stack.
8118
8119The optional @var{count} can be one of the following:
ea3b0687
TT
8120
8121@table @code
8122@item @var{n}
8123@itemx @var{n}
8124Print only the innermost @var{n} frames, where @var{n} is a positive
8125number.
8126
8127@item -@var{n}
8128@itemx -@var{n}
8129Print only the outermost @var{n} frames, where @var{n} is a positive
8130number.
3345721a 8131@end table
ea3b0687 8132
3345721a
PA
8133Options:
8134
8135@table @code
8136@item -full
ea3b0687 8137Print the values of the local variables also. This can be combined
3345721a 8138with the optional @var{count} to limit the number of frames shown.
ea3b0687 8139
3345721a 8140@item -no-filters
1e611234
PM
8141Do not run Python frame filters on this backtrace. @xref{Frame
8142Filter API}, for more information. Additionally use @ref{disable
8143frame-filter all} to turn off all frame filters. This is only
8144relevant when @value{GDBN} has been configured with @code{Python}
8145support.
978d6c75 8146
3345721a 8147@item -hide
978d6c75
TT
8148A Python frame filter might decide to ``elide'' some frames. Normally
8149such elided frames are still printed, but they are indented relative
3345721a 8150to the filtered frames that cause them to be elided. The @code{-hide}
978d6c75 8151option causes elided frames to not be printed at all.
c906108c 8152@end table
3345721a
PA
8153
8154The @code{backtrace} command also supports a number of options that
8155allow overriding relevant global print settings as set by @code{set
8156backtrace} and @code{set print} subcommands:
8157
8158@table @code
8159@item -past-main [@code{on}|@code{off}]
8160Set whether backtraces should continue past @code{main}. Related setting:
8161@ref{set backtrace past-main}.
8162
8163@item -past-entry [@code{on}|@code{off}]
8164Set whether backtraces should continue past the entry point of a program.
8165Related setting: @ref{set backtrace past-entry}.
8166
8167@item -entry-values @code{no}|@code{only}|@code{preferred}|@code{if-needed}|@code{both}|@code{compact}|@code{default}
8168Set printing of function arguments at function entry.
8169Related setting: @ref{set print entry-values}.
8170
8171@item -frame-arguments @code{all}|@code{scalars}|@code{none}
8172Set printing of non-scalar frame arguments.
8173Related setting: @ref{set print frame-arguments}.
8174
8175@item -raw-frame-arguments [@code{on}|@code{off}]
8176Set whether to print frame arguments in raw form.
8177Related setting: @ref{set print raw-frame-arguments}.
bc4268a5
PW
8178
8179@item -frame-info @code{auto}|@code{source-line}|@code{location}|@code{source-and-location}|@code{location-and-address}|@code{short-location}
8180Set printing of frame information.
8181Related setting: @ref{set print frame-info}.
3345721a
PA
8182@end table
8183
8184The optional @var{qualifier} is maintained for backward compatibility.
8185It can be one of the following:
8186
8187@table @code
8188@item full
8189Equivalent to the @code{-full} option.
8190
8191@item no-filters
8192Equivalent to the @code{-no-filters} option.
8193
8194@item hide
8195Equivalent to the @code{-hide} option.
8196@end table
8197
ea3b0687 8198@end table
c906108c
SS
8199
8200@kindex where
8201@kindex info stack
c906108c
SS
8202The names @code{where} and @code{info stack} (abbreviated @code{info s})
8203are additional aliases for @code{backtrace}.
8204
839c27b7
EZ
8205@cindex multiple threads, backtrace
8206In a multi-threaded program, @value{GDBN} by default shows the
8207backtrace only for the current thread. To display the backtrace for
8208several or all of the threads, use the command @code{thread apply}
8209(@pxref{Threads, thread apply}). For example, if you type @kbd{thread
8210apply all backtrace}, @value{GDBN} will display the backtrace for all
8211the threads; this is handy when you debug a core dump of a
8212multi-threaded program.
8213
c906108c
SS
8214Each line in the backtrace shows the frame number and the function name.
8215The program counter value is also shown---unless you use @code{set
8216print address off}. The backtrace also shows the source file name and
8217line number, as well as the arguments to the function. The program
8218counter value is omitted if it is at the beginning of the code for that
8219line number.
8220
8221Here is an example of a backtrace. It was made with the command
8222@samp{bt 3}, so it shows the innermost three frames.
8223
8224@smallexample
8225@group
5d161b24 8226#0 m4_traceon (obs=0x24eb0, argc=1, argv=0x2b8c8)
c906108c 8227 at builtin.c:993
4f5376b2 8228#1 0x6e38 in expand_macro (sym=0x2b600, data=...) at macro.c:242
c906108c
SS
8229#2 0x6840 in expand_token (obs=0x0, t=177664, td=0xf7fffb08)
8230 at macro.c:71
8231(More stack frames follow...)
8232@end group
8233@end smallexample
8234
8235@noindent
8236The display for frame zero does not begin with a program counter
8237value, indicating that your program has stopped at the beginning of the
8238code for line @code{993} of @code{builtin.c}.
8239
4f5376b2
JB
8240@noindent
8241The value of parameter @code{data} in frame 1 has been replaced by
8242@code{@dots{}}. By default, @value{GDBN} prints the value of a parameter
8243only if it is a scalar (integer, pointer, enumeration, etc). See command
8244@kbd{set print frame-arguments} in @ref{Print Settings} for more details
8245on how to configure the way function parameter values are printed.
bc4268a5
PW
8246The command @kbd{set print frame-info} (@pxref{Print Settings}) controls
8247what frame information is printed.
4f5376b2 8248
585fdaa1 8249@cindex optimized out, in backtrace
18999be5
EZ
8250@cindex function call arguments, optimized out
8251If your program was compiled with optimizations, some compilers will
8252optimize away arguments passed to functions if those arguments are
8253never used after the call. Such optimizations generate code that
8254passes arguments through registers, but doesn't store those arguments
8255in the stack frame. @value{GDBN} has no way of displaying such
8256arguments in stack frames other than the innermost one. Here's what
8257such a backtrace might look like:
8258
8259@smallexample
8260@group
8261#0 m4_traceon (obs=0x24eb0, argc=1, argv=0x2b8c8)
8262 at builtin.c:993
585fdaa1
PA
8263#1 0x6e38 in expand_macro (sym=<optimized out>) at macro.c:242
8264#2 0x6840 in expand_token (obs=0x0, t=<optimized out>, td=0xf7fffb08)
18999be5
EZ
8265 at macro.c:71
8266(More stack frames follow...)
8267@end group
8268@end smallexample
8269
8270@noindent
8271The values of arguments that were not saved in their stack frames are
585fdaa1 8272shown as @samp{<optimized out>}.
18999be5
EZ
8273
8274If you need to display the values of such optimized-out arguments,
8275either deduce that from other variables whose values depend on the one
8276you are interested in, or recompile without optimizations.
8277
a8f24a35
EZ
8278@cindex backtrace beyond @code{main} function
8279@cindex program entry point
8280@cindex startup code, and backtrace
25d29d70
AC
8281Most programs have a standard user entry point---a place where system
8282libraries and startup code transition into user code. For C this is
d416eeec
EZ
8283@code{main}@footnote{
8284Note that embedded programs (the so-called ``free-standing''
8285environment) are not required to have a @code{main} function as the
8286entry point. They could even have multiple entry points.}.
8287When @value{GDBN} finds the entry function in a backtrace
25d29d70
AC
8288it will terminate the backtrace, to avoid tracing into highly
8289system-specific (and generally uninteresting) code.
8290
8291If you need to examine the startup code, or limit the number of levels
8292in a backtrace, you can change this behavior:
95f90d25
DJ
8293
8294@table @code
25d29d70
AC
8295@item set backtrace past-main
8296@itemx set backtrace past-main on
3345721a 8297@anchor{set backtrace past-main}
4644b6e3 8298@kindex set backtrace
25d29d70
AC
8299Backtraces will continue past the user entry point.
8300
8301@item set backtrace past-main off
95f90d25
DJ
8302Backtraces will stop when they encounter the user entry point. This is the
8303default.
8304
25d29d70 8305@item show backtrace past-main
4644b6e3 8306@kindex show backtrace
25d29d70
AC
8307Display the current user entry point backtrace policy.
8308
2315ffec
RC
8309@item set backtrace past-entry
8310@itemx set backtrace past-entry on
3345721a 8311@anchor{set backtrace past-entry}
a8f24a35 8312Backtraces will continue past the internal entry point of an application.
2315ffec
RC
8313This entry point is encoded by the linker when the application is built,
8314and is likely before the user entry point @code{main} (or equivalent) is called.
8315
8316@item set backtrace past-entry off
d3e8051b 8317Backtraces will stop when they encounter the internal entry point of an
2315ffec
RC
8318application. This is the default.
8319
8320@item show backtrace past-entry
8321Display the current internal entry point backtrace policy.
8322
25d29d70
AC
8323@item set backtrace limit @var{n}
8324@itemx set backtrace limit 0
f81d1120 8325@itemx set backtrace limit unlimited
3345721a 8326@anchor{set backtrace limit}
25d29d70 8327@cindex backtrace limit
f81d1120
PA
8328Limit the backtrace to @var{n} levels. A value of @code{unlimited}
8329or zero means unlimited levels.
95f90d25 8330
25d29d70
AC
8331@item show backtrace limit
8332Display the current limit on backtrace levels.
95f90d25
DJ
8333@end table
8334
1b56eb55
JK
8335You can control how file names are displayed.
8336
8337@table @code
8338@item set filename-display
8339@itemx set filename-display relative
8340@cindex filename-display
8341Display file names relative to the compilation directory. This is the default.
8342
8343@item set filename-display basename
8344Display only basename of a filename.
8345
8346@item set filename-display absolute
8347Display an absolute filename.
8348
8349@item show filename-display
8350Show the current way to display filenames.
8351@end table
8352
6d2ebf8b 8353@node Selection
79a6e687 8354@section Selecting a Frame
c906108c
SS
8355
8356Most commands for examining the stack and other data in your program work on
8357whichever stack frame is selected at the moment. Here are the commands for
8358selecting a stack frame; all of them finish by printing a brief description
8359of the stack frame just selected.
8360
8361@table @code
d4f3574e 8362@kindex frame@r{, selecting}
41afff9a 8363@kindex f @r{(@code{frame})}
f67ffa6a
AB
8364@item frame @r{[} @var{frame-selection-spec} @r{]}
8365@item f @r{[} @var{frame-selection-spec} @r{]}
8366The @command{frame} command allows different stack frames to be
8367selected. The @var{frame-selection-spec} can be any of the following:
8368
8369@table @code
8370@kindex frame level
8371@item @var{num}
8372@item level @var{num}
8373Select frame level @var{num}. Recall that frame zero is the innermost
c906108c 8374(currently executing) frame, frame one is the frame that called the
f67ffa6a
AB
8375innermost one, and so on. The highest level frame is usually the one
8376for @code{main}.
8377
8378As this is the most common method of navigating the frame stack, the
8379string @command{level} can be omitted. For example, the following two
8380commands are equivalent:
8381
8382@smallexample
8383(@value{GDBP}) frame 3
8384(@value{GDBP}) frame level 3
8385@end smallexample
8386
8387@kindex frame address
8388@item address @var{stack-address}
8389Select the frame with stack address @var{stack-address}. The
8390@var{stack-address} for a frame can be seen in the output of
8391@command{info frame}, for example:
8392
8393@smallexample
8394(gdb) info frame
8395Stack level 1, frame at 0x7fffffffda30:
8396 rip = 0x40066d in b (amd64-entry-value.cc:59); saved rip 0x4004c5
8397 tail call frame, caller of frame at 0x7fffffffda30
8398 source language c++.
8399 Arglist at unknown address.
8400 Locals at unknown address, Previous frame's sp is 0x7fffffffda30
8401@end smallexample
8402
8403The @var{stack-address} for this frame is @code{0x7fffffffda30} as
8404indicated by the line:
8405
8406@smallexample
8407Stack level 1, frame at 0x7fffffffda30:
8408@end smallexample
8409
8410@kindex frame function
8411@item function @var{function-name}
8412Select the stack frame for function @var{function-name}. If there are
8413multiple stack frames for function @var{function-name} then the inner
8414most stack frame is selected.
8415
8416@kindex frame view
8417@item view @var{stack-address} @r{[} @var{pc-addr} @r{]}
8418View a frame that is not part of @value{GDBN}'s backtrace. The frame
8419viewed has stack address @var{stack-addr}, and optionally, a program
8420counter address of @var{pc-addr}.
8421
8422This is useful mainly if the chaining of stack frames has been
8423damaged by a bug, making it impossible for @value{GDBN} to assign
8424numbers properly to all frames. In addition, this can be useful
8425when your program has multiple stacks and switches between them.
8426
8427When viewing a frame outside the current backtrace using
8428@command{frame view} then you can always return to the original
8429stack using one of the previous stack frame selection instructions,
8430for example @command{frame level 0}.
8431
8432@end table
c906108c
SS
8433
8434@kindex up
8435@item up @var{n}
697aa1b7
EZ
8436Move @var{n} frames up the stack; @var{n} defaults to 1. For positive
8437numbers @var{n}, this advances toward the outermost frame, to higher
8438frame numbers, to frames that have existed longer.
c906108c
SS
8439
8440@kindex down
41afff9a 8441@kindex do @r{(@code{down})}
c906108c 8442@item down @var{n}
697aa1b7
EZ
8443Move @var{n} frames down the stack; @var{n} defaults to 1. For
8444positive numbers @var{n}, this advances toward the innermost frame, to
8445lower frame numbers, to frames that were created more recently.
8446You may abbreviate @code{down} as @code{do}.
c906108c
SS
8447@end table
8448
8449All of these commands end by printing two lines of output describing the
8450frame. The first line shows the frame number, the function name, the
8451arguments, and the source file and line number of execution in that
5d161b24 8452frame. The second line shows the text of that source line.
c906108c
SS
8453
8454@need 1000
8455For example:
8456
8457@smallexample
8458@group
8459(@value{GDBP}) up
8460#1 0x22f0 in main (argc=1, argv=0xf7fffbf4, env=0xf7fffbfc)
8461 at env.c:10
846210 read_input_file (argv[i]);
8463@end group
8464@end smallexample
8465
8466After such a printout, the @code{list} command with no arguments
8467prints ten lines centered on the point of execution in the frame.
87885426
FN
8468You can also edit the program at the point of execution with your favorite
8469editing program by typing @code{edit}.
79a6e687 8470@xref{List, ,Printing Source Lines},
87885426 8471for details.
c906108c
SS
8472
8473@table @code
fc58fa65 8474@kindex select-frame
f67ffa6a 8475@item select-frame @r{[} @var{frame-selection-spec} @r{]}
fc58fa65
AB
8476The @code{select-frame} command is a variant of @code{frame} that does
8477not display the new frame after selecting it. This command is
8478intended primarily for use in @value{GDBN} command scripts, where the
f67ffa6a
AB
8479output might be unnecessary and distracting. The
8480@var{frame-selection-spec} is as for the @command{frame} command
8481described in @ref{Selection, ,Selecting a Frame}.
fc58fa65 8482
c906108c
SS
8483@kindex down-silently
8484@kindex up-silently
8485@item up-silently @var{n}
8486@itemx down-silently @var{n}
8487These two commands are variants of @code{up} and @code{down},
8488respectively; they differ in that they do their work silently, without
8489causing display of the new frame. They are intended primarily for use
8490in @value{GDBN} command scripts, where the output might be unnecessary and
8491distracting.
8492@end table
8493
6d2ebf8b 8494@node Frame Info
79a6e687 8495@section Information About a Frame
c906108c
SS
8496
8497There are several other commands to print information about the selected
8498stack frame.
8499
8500@table @code
8501@item frame
8502@itemx f
8503When used without any argument, this command does not change which
8504frame is selected, but prints a brief description of the currently
8505selected stack frame. It can be abbreviated @code{f}. With an
8506argument, this command is used to select a stack frame.
79a6e687 8507@xref{Selection, ,Selecting a Frame}.
c906108c
SS
8508
8509@kindex info frame
41afff9a 8510@kindex info f @r{(@code{info frame})}
c906108c
SS
8511@item info frame
8512@itemx info f
8513This command prints a verbose description of the selected stack frame,
8514including:
8515
8516@itemize @bullet
5d161b24
DB
8517@item
8518the address of the frame
c906108c
SS
8519@item
8520the address of the next frame down (called by this frame)
8521@item
8522the address of the next frame up (caller of this frame)
8523@item
8524the language in which the source code corresponding to this frame is written
8525@item
8526the address of the frame's arguments
8527@item
d4f3574e
SS
8528the address of the frame's local variables
8529@item
c906108c
SS
8530the program counter saved in it (the address of execution in the caller frame)
8531@item
8532which registers were saved in the frame
8533@end itemize
8534
8535@noindent The verbose description is useful when
8536something has gone wrong that has made the stack format fail to fit
8537the usual conventions.
8538
f67ffa6a
AB
8539@item info frame @r{[} @var{frame-selection-spec} @r{]}
8540@itemx info f @r{[} @var{frame-selection-spec} @r{]}
8541Print a verbose description of the frame selected by
8542@var{frame-selection-spec}. The @var{frame-selection-spec} is the
8543same as for the @command{frame} command (@pxref{Selection, ,Selecting
8544a Frame}). The selected frame remains unchanged by this command.
c906108c
SS
8545
8546@kindex info args
d321477b 8547@item info args [-q]
c906108c
SS
8548Print the arguments of the selected frame, each on a separate line.
8549
d321477b
PW
8550The optional flag @samp{-q}, which stands for @samp{quiet}, disables
8551printing header information and messages explaining why no argument
8552have been printed.
8553
8554@item info args [-q] [-t @var{type_regexp}] [@var{regexp}]
8555Like @kbd{info args}, but only print the arguments selected
8556with the provided regexp(s).
8557
8558If @var{regexp} is provided, print only the arguments whose names
8559match the regular expression @var{regexp}.
8560
8561If @var{type_regexp} is provided, print only the arguments whose
8562types, as printed by the @code{whatis} command, match
8563the regular expression @var{type_regexp}.
8564If @var{type_regexp} contains space(s), it should be enclosed in
8565quote characters. If needed, use backslash to escape the meaning
8566of special characters or quotes.
8567
8568If both @var{regexp} and @var{type_regexp} are provided, an argument
8569is printed only if its name matches @var{regexp} and its type matches
8570@var{type_regexp}.
8571
8572@item info locals [-q]
c906108c
SS
8573@kindex info locals
8574Print the local variables of the selected frame, each on a separate
8575line. These are all variables (declared either static or automatic)
8576accessible at the point of execution of the selected frame.
8577
d321477b
PW
8578The optional flag @samp{-q}, which stands for @samp{quiet}, disables
8579printing header information and messages explaining why no local variables
8580have been printed.
8581
8582@item info locals [-q] [-t @var{type_regexp}] [@var{regexp}]
8583Like @kbd{info locals}, but only print the local variables selected
8584with the provided regexp(s).
8585
8586If @var{regexp} is provided, print only the local variables whose names
8587match the regular expression @var{regexp}.
8588
8589If @var{type_regexp} is provided, print only the local variables whose
8590types, as printed by the @code{whatis} command, match
8591the regular expression @var{type_regexp}.
8592If @var{type_regexp} contains space(s), it should be enclosed in
8593quote characters. If needed, use backslash to escape the meaning
8594of special characters or quotes.
8595
8596If both @var{regexp} and @var{type_regexp} are provided, a local variable
8597is printed only if its name matches @var{regexp} and its type matches
8598@var{type_regexp}.
8599
8600The command @kbd{info locals -q -t @var{type_regexp}} can usefully be
8601combined with the commands @kbd{frame apply} and @kbd{thread apply}.
8602For example, your program might use Resource Acquisition Is
8603Initialization types (RAII) such as @code{lock_something_t}: each
8604local variable of type @code{lock_something_t} automatically places a
8605lock that is destroyed when the variable goes out of scope. You can
8606then list all acquired locks in your program by doing
8607@smallexample
8608thread apply all -s frame apply all -s info locals -q -t lock_something_t
8609@end smallexample
8610@noindent
8611or the equivalent shorter form
8612@smallexample
8613tfaas i lo -q -t lock_something_t
8614@end smallexample
8615
c906108c
SS
8616@end table
8617
0a232300
PW
8618@node Frame Apply
8619@section Applying a Command to Several Frames.
8620@kindex frame apply
8621@cindex apply command to several frames
8622@table @code
3345721a 8623@item frame apply [all | @var{count} | @var{-count} | level @var{level}@dots{}] [@var{option}]@dots{} @var{command}
0a232300
PW
8624The @code{frame apply} command allows you to apply the named
8625@var{command} to one or more frames.
8626
8627@table @code
8628@item @code{all}
8629Specify @code{all} to apply @var{command} to all frames.
8630
8631@item @var{count}
8632Use @var{count} to apply @var{command} to the innermost @var{count}
8633frames, where @var{count} is a positive number.
8634
8635@item @var{-count}
8636Use @var{-count} to apply @var{command} to the outermost @var{count}
8637frames, where @var{count} is a positive number.
8638
8639@item @code{level}
8640Use @code{level} to apply @var{command} to the set of frames identified
8641by the @var{level} list. @var{level} is a frame level or a range of frame
8642levels as @var{level1}-@var{level2}. The frame level is the number shown
8643in the first field of the @samp{backtrace} command output.
8644E.g., @samp{2-4 6-8 3} indicates to apply @var{command} for the frames
8645at levels 2, 3, 4, 6, 7, 8, and then again on frame at level 3.
8646
8647@end table
8648
0a232300
PW
8649Note that the frames on which @code{frame apply} applies a command are
8650also influenced by the @code{set backtrace} settings such as @code{set
3345721a 8651backtrace past-main} and @code{set backtrace limit N}.
0a232300
PW
8652@xref{Backtrace,,Backtraces}.
8653
3345721a
PA
8654The @code{frame apply} command also supports a number of options that
8655allow overriding relevant @code{set backtrace} settings:
8656
8657@table @code
8658@item -past-main [@code{on}|@code{off}]
8659Whether backtraces should continue past @code{main}.
8660Related setting: @ref{set backtrace past-main}.
8661
8662@item -past-entry [@code{on}|@code{off}]
8663Whether backtraces should continue past the entry point of a program.
8664Related setting: @ref{set backtrace past-entry}.
8665@end table
0a232300
PW
8666
8667By default, @value{GDBN} displays some frame information before the
8668output produced by @var{command}, and an error raised during the
8669execution of a @var{command} will abort @code{frame apply}. The
3345721a 8670following options can be used to fine-tune these behaviors:
0a232300
PW
8671
8672@table @code
8673@item -c
8674The flag @code{-c}, which stands for @samp{continue}, causes any
8675errors in @var{command} to be displayed, and the execution of
8676@code{frame apply} then continues.
8677@item -s
8678The flag @code{-s}, which stands for @samp{silent}, causes any errors
8679or empty output produced by a @var{command} to be silently ignored.
8680That is, the execution continues, but the frame information and errors
8681are not printed.
8682@item -q
8683The flag @code{-q} (@samp{quiet}) disables printing the frame
8684information.
8685@end table
8686
8687The following example shows how the flags @code{-c} and @code{-s} are
8688working when applying the command @code{p j} to all frames, where
8689variable @code{j} can only be successfully printed in the outermost
8690@code{#1 main} frame.
8691
8692@smallexample
8693@group
8694(gdb) frame apply all p j
8695#0 some_function (i=5) at fun.c:4
8696No symbol "j" in current context.
8697(gdb) frame apply all -c p j
8698#0 some_function (i=5) at fun.c:4
8699No symbol "j" in current context.
8700#1 0x565555fb in main (argc=1, argv=0xffffd2c4) at fun.c:11
8701$1 = 5
8702(gdb) frame apply all -s p j
8703#1 0x565555fb in main (argc=1, argv=0xffffd2c4) at fun.c:11
8704$2 = 5
8705(gdb)
8706@end group
8707@end smallexample
8708
8709By default, @samp{frame apply}, prints the frame location
8710information before the command output:
8711
8712@smallexample
8713@group
8714(gdb) frame apply all p $sp
8715#0 some_function (i=5) at fun.c:4
8716$4 = (void *) 0xffffd1e0
8717#1 0x565555fb in main (argc=1, argv=0xffffd2c4) at fun.c:11
8718$5 = (void *) 0xffffd1f0
8719(gdb)
8720@end group
8721@end smallexample
8722
3345721a 8723If the flag @code{-q} is given, no frame information is printed:
0a232300
PW
8724@smallexample
8725@group
8726(gdb) frame apply all -q p $sp
8727$12 = (void *) 0xffffd1e0
8728$13 = (void *) 0xffffd1f0
8729(gdb)
8730@end group
8731@end smallexample
8732
3345721a
PA
8733@end table
8734
0a232300
PW
8735@table @code
8736
8737@kindex faas
8738@cindex apply a command to all frames (ignoring errors and empty output)
8739@item faas @var{command}
8740Shortcut for @code{frame apply all -s @var{command}}.
8741Applies @var{command} on all frames, ignoring errors and empty output.
8742
8743It can for example be used to print a local variable or a function
8744argument without knowing the frame where this variable or argument
8745is, using:
8746@smallexample
8747(@value{GDBP}) faas p some_local_var_i_do_not_remember_where_it_is
8748@end smallexample
8749
3345721a 8750The @code{faas} command accepts the same options as the @code{frame
ed788fee 8751apply} command. @xref{Frame Apply,,frame apply}.
3345721a 8752
0a232300
PW
8753Note that the command @code{tfaas @var{command}} applies @var{command}
8754on all frames of all threads. See @xref{Threads,,Threads}.
8755@end table
8756
8757
fc58fa65
AB
8758@node Frame Filter Management
8759@section Management of Frame Filters.
8760@cindex managing frame filters
8761
8762Frame filters are Python based utilities to manage and decorate the
8763output of frames. @xref{Frame Filter API}, for further information.
8764
8765Managing frame filters is performed by several commands available
8766within @value{GDBN}, detailed here.
8767
8768@table @code
8769@kindex info frame-filter
8770@item info frame-filter
8771Print a list of installed frame filters from all dictionaries, showing
8772their name, priority and enabled status.
8773
8774@kindex disable frame-filter
8775@anchor{disable frame-filter all}
8776@item disable frame-filter @var{filter-dictionary} @var{filter-name}
8777Disable a frame filter in the dictionary matching
8778@var{filter-dictionary} and @var{filter-name}. The
8779@var{filter-dictionary} may be @code{all}, @code{global},
8780@code{progspace}, or the name of the object file where the frame filter
8781dictionary resides. When @code{all} is specified, all frame filters
8782across all dictionaries are disabled. The @var{filter-name} is the name
8783of the frame filter and is used when @code{all} is not the option for
8784@var{filter-dictionary}. A disabled frame-filter is not deleted, it
8785may be enabled again later.
8786
8787@kindex enable frame-filter
8788@item enable frame-filter @var{filter-dictionary} @var{filter-name}
8789Enable a frame filter in the dictionary matching
8790@var{filter-dictionary} and @var{filter-name}. The
8791@var{filter-dictionary} may be @code{all}, @code{global},
8792@code{progspace} or the name of the object file where the frame filter
8793dictionary resides. When @code{all} is specified, all frame filters across
8794all dictionaries are enabled. The @var{filter-name} is the name of the frame
8795filter and is used when @code{all} is not the option for
8796@var{filter-dictionary}.
8797
8798Example:
8799
8800@smallexample
8801(gdb) info frame-filter
8802
8803global frame-filters:
8804 Priority Enabled Name
8805 1000 No PrimaryFunctionFilter
8806 100 Yes Reverse
8807
8808progspace /build/test frame-filters:
8809 Priority Enabled Name
8810 100 Yes ProgspaceFilter
8811
8812objfile /build/test frame-filters:
8813 Priority Enabled Name
6b92c0d3 8814 999 Yes BuildProgramFilter
fc58fa65
AB
8815
8816(gdb) disable frame-filter /build/test BuildProgramFilter
8817(gdb) info frame-filter
8818
8819global frame-filters:
8820 Priority Enabled Name
8821 1000 No PrimaryFunctionFilter
8822 100 Yes Reverse
8823
8824progspace /build/test frame-filters:
8825 Priority Enabled Name
8826 100 Yes ProgspaceFilter
8827
8828objfile /build/test frame-filters:
8829 Priority Enabled Name
8830 999 No BuildProgramFilter
8831
8832(gdb) enable frame-filter global PrimaryFunctionFilter
8833(gdb) info frame-filter
8834
8835global frame-filters:
8836 Priority Enabled Name
8837 1000 Yes PrimaryFunctionFilter
8838 100 Yes Reverse
8839
8840progspace /build/test frame-filters:
8841 Priority Enabled Name
8842 100 Yes ProgspaceFilter
8843
8844objfile /build/test frame-filters:
8845 Priority Enabled Name
8846 999 No BuildProgramFilter
8847@end smallexample
8848
8849@kindex set frame-filter priority
8850@item set frame-filter priority @var{filter-dictionary} @var{filter-name} @var{priority}
8851Set the @var{priority} of a frame filter in the dictionary matching
8852@var{filter-dictionary}, and the frame filter name matching
8853@var{filter-name}. The @var{filter-dictionary} may be @code{global},
8854@code{progspace} or the name of the object file where the frame filter
8855dictionary resides. The @var{priority} is an integer.
8856
8857@kindex show frame-filter priority
8858@item show frame-filter priority @var{filter-dictionary} @var{filter-name}
8859Show the @var{priority} of a frame filter in the dictionary matching
8860@var{filter-dictionary}, and the frame filter name matching
8861@var{filter-name}. The @var{filter-dictionary} may be @code{global},
8862@code{progspace} or the name of the object file where the frame filter
8863dictionary resides.
8864
8865Example:
8866
8867@smallexample
8868(gdb) info frame-filter
8869
8870global frame-filters:
8871 Priority Enabled Name
8872 1000 Yes PrimaryFunctionFilter
8873 100 Yes Reverse
8874
8875progspace /build/test frame-filters:
8876 Priority Enabled Name
8877 100 Yes ProgspaceFilter
8878
8879objfile /build/test frame-filters:
8880 Priority Enabled Name
8881 999 No BuildProgramFilter
8882
8883(gdb) set frame-filter priority global Reverse 50
8884(gdb) info frame-filter
8885
8886global frame-filters:
8887 Priority Enabled Name
8888 1000 Yes PrimaryFunctionFilter
8889 50 Yes Reverse
8890
8891progspace /build/test frame-filters:
8892 Priority Enabled Name
8893 100 Yes ProgspaceFilter
8894
8895objfile /build/test frame-filters:
8896 Priority Enabled Name
8897 999 No BuildProgramFilter
8898@end smallexample
8899@end table
c906108c 8900
6d2ebf8b 8901@node Source
c906108c
SS
8902@chapter Examining Source Files
8903
8904@value{GDBN} can print parts of your program's source, since the debugging
8905information recorded in the program tells @value{GDBN} what source files were
8906used to build it. When your program stops, @value{GDBN} spontaneously prints
8907the line where it stopped. Likewise, when you select a stack frame
79a6e687 8908(@pxref{Selection, ,Selecting a Frame}), @value{GDBN} prints the line where
c906108c
SS
8909execution in that frame has stopped. You can print other portions of
8910source files by explicit command.
8911
7a292a7a 8912If you use @value{GDBN} through its @sc{gnu} Emacs interface, you may
d4f3574e 8913prefer to use Emacs facilities to view source; see @ref{Emacs, ,Using
7a292a7a 8914@value{GDBN} under @sc{gnu} Emacs}.
c906108c
SS
8915
8916@menu
8917* List:: Printing source lines
2a25a5ba 8918* Specify Location:: How to specify code locations
87885426 8919* Edit:: Editing source files
c906108c 8920* Search:: Searching source files
c906108c
SS
8921* Source Path:: Specifying source directories
8922* Machine Code:: Source and machine code
8923@end menu
8924
6d2ebf8b 8925@node List
79a6e687 8926@section Printing Source Lines
c906108c
SS
8927
8928@kindex list
41afff9a 8929@kindex l @r{(@code{list})}
c906108c 8930To print lines from a source file, use the @code{list} command
5d161b24 8931(abbreviated @code{l}). By default, ten lines are printed.
2a25a5ba
EZ
8932There are several ways to specify what part of the file you want to
8933print; see @ref{Specify Location}, for the full list.
c906108c
SS
8934
8935Here are the forms of the @code{list} command most commonly used:
8936
8937@table @code
8938@item list @var{linenum}
8939Print lines centered around line number @var{linenum} in the
8940current source file.
8941
8942@item list @var{function}
8943Print lines centered around the beginning of function
8944@var{function}.
8945
8946@item list
8947Print more lines. If the last lines printed were printed with a
8948@code{list} command, this prints lines following the last lines
8949printed; however, if the last line printed was a solitary line printed
8950as part of displaying a stack frame (@pxref{Stack, ,Examining the
8951Stack}), this prints lines centered around that line.
8952
8953@item list -
8954Print lines just before the lines last printed.
8955@end table
8956
9c16f35a 8957@cindex @code{list}, how many lines to display
c906108c
SS
8958By default, @value{GDBN} prints ten source lines with any of these forms of
8959the @code{list} command. You can change this using @code{set listsize}:
8960
8961@table @code
8962@kindex set listsize
8963@item set listsize @var{count}
f81d1120 8964@itemx set listsize unlimited
c906108c
SS
8965Make the @code{list} command display @var{count} source lines (unless
8966the @code{list} argument explicitly specifies some other number).
f81d1120 8967Setting @var{count} to @code{unlimited} or 0 means there's no limit.
c906108c
SS
8968
8969@kindex show listsize
8970@item show listsize
8971Display the number of lines that @code{list} prints.
8972@end table
8973
8974Repeating a @code{list} command with @key{RET} discards the argument,
8975so it is equivalent to typing just @code{list}. This is more useful
8976than listing the same lines again. An exception is made for an
8977argument of @samp{-}; that argument is preserved in repetition so that
8978each repetition moves up in the source file.
8979
c906108c 8980In general, the @code{list} command expects you to supply zero, one or two
629500fa 8981@dfn{locations}. Locations specify source lines; there are several ways
2a25a5ba
EZ
8982of writing them (@pxref{Specify Location}), but the effect is always
8983to specify some source line.
8984
c906108c
SS
8985Here is a complete description of the possible arguments for @code{list}:
8986
8987@table @code
629500fa
KS
8988@item list @var{location}
8989Print lines centered around the line specified by @var{location}.
c906108c
SS
8990
8991@item list @var{first},@var{last}
8992Print lines from @var{first} to @var{last}. Both arguments are
629500fa
KS
8993locations. When a @code{list} command has two locations, and the
8994source file of the second location is omitted, this refers to
8995the same source file as the first location.
c906108c
SS
8996
8997@item list ,@var{last}
8998Print lines ending with @var{last}.
8999
9000@item list @var{first},
9001Print lines starting with @var{first}.
9002
9003@item list +
9004Print lines just after the lines last printed.
9005
9006@item list -
9007Print lines just before the lines last printed.
9008
9009@item list
9010As described in the preceding table.
9011@end table
9012
2a25a5ba
EZ
9013@node Specify Location
9014@section Specifying a Location
9015@cindex specifying location
629500fa
KS
9016@cindex location
9017@cindex source location
9018
2a25a5ba
EZ
9019Several @value{GDBN} commands accept arguments that specify a location
9020of your program's code. Since @value{GDBN} is a source-level
629500fa
KS
9021debugger, a location usually specifies some line in the source code.
9022Locations may be specified using three different formats:
9023linespec locations, explicit locations, or address locations.
c906108c 9024
04de9f3e
AB
9025@menu
9026* Linespec Locations:: Linespec locations
9027* Explicit Locations:: Explicit locations
9028* Address Locations:: Address locations
9029@end menu
9030
629500fa
KS
9031@node Linespec Locations
9032@subsection Linespec Locations
9033@cindex linespec locations
9034
9035A @dfn{linespec} is a colon-separated list of source location parameters such
9036as file name, function name, etc. Here are all the different ways of
9037specifying a linespec:
c906108c 9038
2a25a5ba
EZ
9039@table @code
9040@item @var{linenum}
9041Specifies the line number @var{linenum} of the current source file.
c906108c 9042
2a25a5ba
EZ
9043@item -@var{offset}
9044@itemx +@var{offset}
9045Specifies the line @var{offset} lines before or after the @dfn{current
9046line}. For the @code{list} command, the current line is the last one
9047printed; for the breakpoint commands, this is the line at which
9048execution stopped in the currently selected @dfn{stack frame}
9049(@pxref{Frames, ,Frames}, for a description of stack frames.) When
9050used as the second of the two linespecs in a @code{list} command,
9051this specifies the line @var{offset} lines up or down from the first
9052linespec.
9053
9054@item @var{filename}:@var{linenum}
9055Specifies the line @var{linenum} in the source file @var{filename}.
4aac40c8
TT
9056If @var{filename} is a relative file name, then it will match any
9057source file name with the same trailing components. For example, if
9058@var{filename} is @samp{gcc/expr.c}, then it will match source file
9059name of @file{/build/trunk/gcc/expr.c}, but not
9060@file{/build/trunk/libcpp/expr.c} or @file{/build/trunk/gcc/x-expr.c}.
c906108c
SS
9061
9062@item @var{function}
9063Specifies the line that begins the body of the function @var{function}.
2a25a5ba 9064For example, in C, this is the line with the open brace.
c906108c 9065
a20714ff
PA
9066By default, in C@t{++} and Ada, @var{function} is interpreted as
9067specifying all functions named @var{function} in all scopes. For
9068C@t{++}, this means in all namespaces and classes. For Ada, this
9069means in all packages.
9070
9071For example, assuming a program with C@t{++} symbols named
9072@code{A::B::func} and @code{B::func}, both commands @w{@kbd{break
9073func}} and @w{@kbd{break B::func}} set a breakpoint on both symbols.
9074
9075Commands that accept a linespec let you override this with the
9076@code{-qualified} option. For example, @w{@kbd{break -qualified
9077func}} sets a breakpoint on a free-function named @code{func} ignoring
9078any C@t{++} class methods and namespace functions called @code{func}.
9079
9080@xref{Explicit Locations}.
9081
9ef07c8c
TT
9082@item @var{function}:@var{label}
9083Specifies the line where @var{label} appears in @var{function}.
9084
c906108c 9085@item @var{filename}:@var{function}
2a25a5ba
EZ
9086Specifies the line that begins the body of the function @var{function}
9087in the file @var{filename}. You only need the file name with a
9088function name to avoid ambiguity when there are identically named
9089functions in different source files.
c906108c 9090
0f5238ed 9091@item @var{label}
629500fa
KS
9092Specifies the line at which the label named @var{label} appears
9093in the function corresponding to the currently selected stack frame.
9094If there is no current selected stack frame (for instance, if the inferior
9095is not running), then @value{GDBN} will not search for a label.
9096
9097@cindex breakpoint at static probe point
9098@item -pstap|-probe-stap @r{[}@var{objfile}:@r{[}@var{provider}:@r{]}@r{]}@var{name}
9099The @sc{gnu}/Linux tool @code{SystemTap} provides a way for
9100applications to embed static probes. @xref{Static Probe Points}, for more
9101information on finding and using static probes. This form of linespec
9102specifies the location of such a static probe.
9103
9104If @var{objfile} is given, only probes coming from that shared library
9105or executable matching @var{objfile} as a regular expression are considered.
9106If @var{provider} is given, then only probes from that provider are considered.
9107If several probes match the spec, @value{GDBN} will insert a breakpoint at
9108each one of those probes.
9109@end table
9110
9111@node Explicit Locations
9112@subsection Explicit Locations
9113@cindex explicit locations
9114
9115@dfn{Explicit locations} allow the user to directly specify the source
9116location's parameters using option-value pairs.
9117
9118Explicit locations are useful when several functions, labels, or
9119file names have the same name (base name for files) in the program's
9120sources. In these cases, explicit locations point to the source
9121line you meant more accurately and unambiguously. Also, using
9122explicit locations might be faster in large programs.
9123
9124For example, the linespec @samp{foo:bar} may refer to a function @code{bar}
9125defined in the file named @file{foo} or the label @code{bar} in a function
9126named @code{foo}. @value{GDBN} must search either the file system or
9127the symbol table to know.
9128
9129The list of valid explicit location options is summarized in the
9130following table:
9131
9132@table @code
9133@item -source @var{filename}
9134The value specifies the source file name. To differentiate between
9135files with the same base name, prepend as many directories as is necessary
9136to uniquely identify the desired file, e.g., @file{foo/bar/baz.c}. Otherwise
9137@value{GDBN} will use the first file it finds with the given base
9138name. This option requires the use of either @code{-function} or @code{-line}.
9139
9140@item -function @var{function}
9141The value specifies the name of a function. Operations
9142on function locations unmodified by other options (such as @code{-label}
9143or @code{-line}) refer to the line that begins the body of the function.
9144In C, for example, this is the line with the open brace.
9145
a20714ff
PA
9146By default, in C@t{++} and Ada, @var{function} is interpreted as
9147specifying all functions named @var{function} in all scopes. For
9148C@t{++}, this means in all namespaces and classes. For Ada, this
9149means in all packages.
9150
9151For example, assuming a program with C@t{++} symbols named
9152@code{A::B::func} and @code{B::func}, both commands @w{@kbd{break
9153-function func}} and @w{@kbd{break -function B::func}} set a
9154breakpoint on both symbols.
9155
9156You can use the @kbd{-qualified} flag to override this (see below).
9157
9158@item -qualified
9159
9160This flag makes @value{GDBN} interpret a function name specified with
9161@kbd{-function} as a complete fully-qualified name.
9162
9163For example, assuming a C@t{++} program with symbols named
9164@code{A::B::func} and @code{B::func}, the @w{@kbd{break -qualified
9165-function B::func}} command sets a breakpoint on @code{B::func}, only.
9166
9167(Note: the @kbd{-qualified} option can precede a linespec as well
9168(@pxref{Linespec Locations}), so the particular example above could be
9169simplified as @w{@kbd{break -qualified B::func}}.)
9170
629500fa
KS
9171@item -label @var{label}
9172The value specifies the name of a label. When the function
9173name is not specified, the label is searched in the function of the currently
9174selected stack frame.
9175
9176@item -line @var{number}
9177The value specifies a line offset for the location. The offset may either
9178be absolute (@code{-line 3}) or relative (@code{-line +3}), depending on
9179the command. When specified without any other options, the line offset is
9180relative to the current line.
9181@end table
9182
9183Explicit location options may be abbreviated by omitting any non-unique
a20714ff 9184trailing characters from the option name, e.g., @w{@kbd{break -s main.c -li 3}}.
629500fa
KS
9185
9186@node Address Locations
9187@subsection Address Locations
9188@cindex address locations
9189
9190@dfn{Address locations} indicate a specific program address. They have
9191the generalized form *@var{address}.
9192
9193For line-oriented commands, such as @code{list} and @code{edit}, this
9194specifies a source line that contains @var{address}. For @code{break} and
9195other breakpoint-oriented commands, this can be used to set breakpoints in
2a25a5ba
EZ
9196parts of your program which do not have debugging information or
9197source files.
9198
9199Here @var{address} may be any expression valid in the current working
9200language (@pxref{Languages, working language}) that specifies a code
5fa54e5d 9201address. In addition, as a convenience, @value{GDBN} extends the
629500fa
KS
9202semantics of expressions used in locations to cover several situations
9203that frequently occur during debugging. Here are the various forms
5fa54e5d 9204of @var{address}:
2a25a5ba
EZ
9205
9206@table @code
9207@item @var{expression}
9208Any expression valid in the current working language.
9209
9210@item @var{funcaddr}
9211An address of a function or procedure derived from its name. In C,
9c37b5ae 9212C@t{++}, Objective-C, Fortran, minimal, and assembly, this is
2a25a5ba
EZ
9213simply the function's name @var{function} (and actually a special case
9214of a valid expression). In Pascal and Modula-2, this is
9215@code{&@var{function}}. In Ada, this is @code{@var{function}'Address}
9216(although the Pascal form also works).
9217
9218This form specifies the address of the function's first instruction,
9219before the stack frame and arguments have been set up.
9220
9a284c97 9221@item '@var{filename}':@var{funcaddr}
2a25a5ba
EZ
9222Like @var{funcaddr} above, but also specifies the name of the source
9223file explicitly. This is useful if the name of the function does not
9224specify the function unambiguously, e.g., if there are several
9225functions with identical names in different source files.
c906108c
SS
9226@end table
9227
87885426 9228@node Edit
79a6e687 9229@section Editing Source Files
87885426
FN
9230@cindex editing source files
9231
9232@kindex edit
9233@kindex e @r{(@code{edit})}
9234To edit the lines in a source file, use the @code{edit} command.
9235The editing program of your choice
9236is invoked with the current line set to
9237the active line in the program.
9238Alternatively, there are several ways to specify what part of the file you
2a25a5ba 9239want to print if you want to see other parts of the program:
87885426
FN
9240
9241@table @code
2a25a5ba
EZ
9242@item edit @var{location}
9243Edit the source file specified by @code{location}. Editing starts at
9244that @var{location}, e.g., at the specified source line of the
9245specified file. @xref{Specify Location}, for all the possible forms
9246of the @var{location} argument; here are the forms of the @code{edit}
9247command most commonly used:
87885426 9248
2a25a5ba 9249@table @code
87885426
FN
9250@item edit @var{number}
9251Edit the current source file with @var{number} as the active line number.
9252
9253@item edit @var{function}
9254Edit the file containing @var{function} at the beginning of its definition.
2a25a5ba 9255@end table
87885426 9256
87885426
FN
9257@end table
9258
79a6e687 9259@subsection Choosing your Editor
87885426
FN
9260You can customize @value{GDBN} to use any editor you want
9261@footnote{
9262The only restriction is that your editor (say @code{ex}), recognizes the
9263following command-line syntax:
10998722 9264@smallexample
87885426 9265ex +@var{number} file
10998722 9266@end smallexample
15387254
EZ
9267The optional numeric value +@var{number} specifies the number of the line in
9268the file where to start editing.}.
9269By default, it is @file{@value{EDITOR}}, but you can change this
e43c3e2a 9270by setting the environment variable @env{EDITOR} before using
10998722
AC
9271@value{GDBN}. For example, to configure @value{GDBN} to use the
9272@code{vi} editor, you could use these commands with the @code{sh} shell:
9273@smallexample
87885426
FN
9274EDITOR=/usr/bin/vi
9275export EDITOR
15387254 9276gdb @dots{}
10998722 9277@end smallexample
87885426 9278or in the @code{csh} shell,
10998722 9279@smallexample
87885426 9280setenv EDITOR /usr/bin/vi
15387254 9281gdb @dots{}
10998722 9282@end smallexample
87885426 9283
6d2ebf8b 9284@node Search
79a6e687 9285@section Searching Source Files
15387254 9286@cindex searching source files
c906108c
SS
9287
9288There are two commands for searching through the current source file for a
9289regular expression.
9290
9291@table @code
9292@kindex search
9293@kindex forward-search
1e96de83 9294@kindex fo @r{(@code{forward-search})}
c906108c
SS
9295@item forward-search @var{regexp}
9296@itemx search @var{regexp}
9297The command @samp{forward-search @var{regexp}} checks each line,
9298starting with the one following the last line listed, for a match for
5d161b24 9299@var{regexp}. It lists the line that is found. You can use the
c906108c
SS
9300synonym @samp{search @var{regexp}} or abbreviate the command name as
9301@code{fo}.
9302
09d4efe1 9303@kindex reverse-search
c906108c
SS
9304@item reverse-search @var{regexp}
9305The command @samp{reverse-search @var{regexp}} checks each line, starting
9306with the one before the last line listed and going backward, for a match
9307for @var{regexp}. It lists the line that is found. You can abbreviate
9308this command as @code{rev}.
9309@end table
c906108c 9310
6d2ebf8b 9311@node Source Path
79a6e687 9312@section Specifying Source Directories
c906108c
SS
9313
9314@cindex source path
9315@cindex directories for source files
9316Executable programs sometimes do not record the directories of the source
9317files from which they were compiled, just the names. Even when they do,
9318the directories could be moved between the compilation and your debugging
9319session. @value{GDBN} has a list of directories to search for source files;
9320this is called the @dfn{source path}. Each time @value{GDBN} wants a source file,
9321it tries all the directories in the list, in the order they are present
0b66e38c
EZ
9322in the list, until it finds a file with the desired name.
9323
9324For example, suppose an executable references the file
f1b620e9
MG
9325@file{/usr/src/foo-1.0/lib/foo.c}, does not record a compilation
9326directory, and the @dfn{source path} is @file{/mnt/cross}.
9327@value{GDBN} would look for the source file in the following
9328locations:
9329
9330@enumerate
9331
9332@item @file{/usr/src/foo-1.0/lib/foo.c}
9333@item @file{/mnt/cross/usr/src/foo-1.0/lib/foo.c}
9334@item @file{/mnt/cross/foo.c}
9335
9336@end enumerate
9337
9338If the source file is not present at any of the above locations then
9339an error is printed. @value{GDBN} does not look up the parts of the
0b66e38c
EZ
9340source file name, such as @file{/mnt/cross/src/foo-1.0/lib/foo.c}.
9341Likewise, the subdirectories of the source path are not searched: if
9342the source path is @file{/mnt/cross}, and the binary refers to
9343@file{foo.c}, @value{GDBN} would not find it under
9344@file{/mnt/cross/usr/src/foo-1.0/lib}.
9345
9346Plain file names, relative file names with leading directories, file
f1b620e9
MG
9347names containing dots, etc.@: are all treated as described above,
9348except that non-absolute file names are not looked up literally. If
9349the @dfn{source path} is @file{/mnt/cross}, the source file is
9350recorded as @file{../lib/foo.c}, and no compilation directory is
9351recorded, then @value{GDBN} will search in the following locations:
9352
9353@enumerate
9354
9355@item @file{/mnt/cross/../lib/foo.c}
9356@item @file{/mnt/cross/foo.c}
9357
9358@end enumerate
9359
9360@kindex cdir
9361@kindex cwd
9362@vindex $cdir@r{, convenience variable}
9363@vindex $cwd@r{, convenience variable}
9364@cindex compilation directory
9365@cindex current directory
9366@cindex working directory
9367@cindex directory, current
9368@cindex directory, compilation
9369The @dfn{source path} will always include two special entries
9370@samp{$cdir} and @samp{$cwd}, these refer to the compilation directory
9371(if one is recorded) and the current working directory respectively.
9372
9373@samp{$cdir} causes @value{GDBN} to search within the compilation
9374directory, if one is recorded in the debug information. If no
9375compilation directory is recorded in the debug information then
9376@samp{$cdir} is ignored.
9377
9378@samp{$cwd} is not the same as @samp{.}---the former tracks the
9379current working directory as it changes during your @value{GDBN}
9380session, while the latter is immediately expanded to the current
9381directory at the time you add an entry to the source path.
9382
9383If a compilation directory is recorded in the debug information, and
9384@value{GDBN} has not found the source file after the first search
9385using @dfn{source path}, then @value{GDBN} will combine the
9386compilation directory and the filename, and then search for the source
9387file again using the @dfn{source path}.
9388
9389For example, if the executable records the source file as
9390@file{/usr/src/foo-1.0/lib/foo.c}, the compilation directory is
9391recorded as @file{/project/build}, and the @dfn{source path} is
9392@file{/mnt/cross:$cdir:$cwd} while the current working directory of
9393the @value{GDBN} session is @file{/home/user}, then @value{GDBN} will
6b92c0d3 9394search for the source file in the following locations:
f1b620e9
MG
9395
9396@enumerate
9397
9398@item @file{/usr/src/foo-1.0/lib/foo.c}
9399@item @file{/mnt/cross/usr/src/foo-1.0/lib/foo.c}
9400@item @file{/project/build/usr/src/foo-1.0/lib/foo.c}
9401@item @file{/home/user/usr/src/foo-1.0/lib/foo.c}
9402@item @file{/mnt/cross/project/build/usr/src/foo-1.0/lib/foo.c}
9403@item @file{/project/build/project/build/usr/src/foo-1.0/lib/foo.c}
9404@item @file{/home/user/project/build/usr/src/foo-1.0/lib/foo.c}
9405@item @file{/mnt/cross/foo.c}
9406@item @file{/project/build/foo.c}
9407@item @file{/home/user/foo.c}
9408
9409@end enumerate
9410
9411If the file name in the previous example had been recorded in the
9412executable as a relative path rather than an absolute path, then the
9413first look up would not have occurred, but all of the remaining steps
9414would be similar.
9415
9416When searching for source files on MS-DOS and MS-Windows, where
9417absolute paths start with a drive letter (e.g.
9418@file{C:/project/foo.c}), @value{GDBN} will remove the drive letter
9419from the file name before appending it to a search directory from
9420@dfn{source path}; for instance if the executable references the
9421source file @file{C:/project/foo.c} and @dfn{source path} is set to
9422@file{D:/mnt/cross}, then @value{GDBN} will search in the following
9423locations for the source file:
9424
9425@enumerate
9426
9427@item @file{C:/project/foo.c}
9428@item @file{D:/mnt/cross/project/foo.c}
9429@item @file{D:/mnt/cross/foo.c}
9430
9431@end enumerate
0b66e38c
EZ
9432
9433Note that the executable search path is @emph{not} used to locate the
cd852561 9434source files.
c906108c
SS
9435
9436Whenever you reset or rearrange the source path, @value{GDBN} clears out
9437any information it has cached about where source files are found and where
9438each line is in the file.
9439
9440@kindex directory
9441@kindex dir
f1b620e9
MG
9442When you start @value{GDBN}, its source path includes only @samp{$cdir}
9443and @samp{$cwd}, in that order.
c906108c
SS
9444To add other directories, use the @code{directory} command.
9445
4b505b12
AS
9446The search path is used to find both program source files and @value{GDBN}
9447script files (read using the @samp{-command} option and @samp{source} command).
9448
30daae6c
JB
9449In addition to the source path, @value{GDBN} provides a set of commands
9450that manage a list of source path substitution rules. A @dfn{substitution
9451rule} specifies how to rewrite source directories stored in the program's
9452debug information in case the sources were moved to a different
9453directory between compilation and debugging. A rule is made of
9454two strings, the first specifying what needs to be rewritten in
9455the path, and the second specifying how it should be rewritten.
9456In @ref{set substitute-path}, we name these two parts @var{from} and
9457@var{to} respectively. @value{GDBN} does a simple string replacement
9458of @var{from} with @var{to} at the start of the directory part of the
9459source file name, and uses that result instead of the original file
9460name to look up the sources.
9461
9462Using the previous example, suppose the @file{foo-1.0} tree has been
9463moved from @file{/usr/src} to @file{/mnt/cross}, then you can tell
3f94c067 9464@value{GDBN} to replace @file{/usr/src} in all source path names with
30daae6c
JB
9465@file{/mnt/cross}. The first lookup will then be
9466@file{/mnt/cross/foo-1.0/lib/foo.c} in place of the original location
9467of @file{/usr/src/foo-1.0/lib/foo.c}. To define a source path
9468substitution rule, use the @code{set substitute-path} command
9469(@pxref{set substitute-path}).
9470
9471To avoid unexpected substitution results, a rule is applied only if the
9472@var{from} part of the directory name ends at a directory separator.
9473For instance, a rule substituting @file{/usr/source} into
9474@file{/mnt/cross} will be applied to @file{/usr/source/foo-1.0} but
9475not to @file{/usr/sourceware/foo-2.0}. And because the substitution
d3e8051b 9476is applied only at the beginning of the directory name, this rule will
30daae6c
JB
9477not be applied to @file{/root/usr/source/baz.c} either.
9478
9479In many cases, you can achieve the same result using the @code{directory}
9480command. However, @code{set substitute-path} can be more efficient in
9481the case where the sources are organized in a complex tree with multiple
9482subdirectories. With the @code{directory} command, you need to add each
9483subdirectory of your project. If you moved the entire tree while
9484preserving its internal organization, then @code{set substitute-path}
9485allows you to direct the debugger to all the sources with one single
9486command.
9487
9488@code{set substitute-path} is also more than just a shortcut command.
9489The source path is only used if the file at the original location no
9490longer exists. On the other hand, @code{set substitute-path} modifies
9491the debugger behavior to look at the rewritten location instead. So, if
9492for any reason a source file that is not relevant to your executable is
9493located at the original location, a substitution rule is the only
3f94c067 9494method available to point @value{GDBN} at the new location.
30daae6c 9495
29b0e8a2
JM
9496@cindex @samp{--with-relocated-sources}
9497@cindex default source path substitution
9498You can configure a default source path substitution rule by
9499configuring @value{GDBN} with the
9500@samp{--with-relocated-sources=@var{dir}} option. The @var{dir}
9501should be the name of a directory under @value{GDBN}'s configured
9502prefix (set with @samp{--prefix} or @samp{--exec-prefix}), and
9503directory names in debug information under @var{dir} will be adjusted
9504automatically if the installed @value{GDBN} is moved to a new
9505location. This is useful if @value{GDBN}, libraries or executables
9506with debug information and corresponding source code are being moved
9507together.
9508
c906108c
SS
9509@table @code
9510@item directory @var{dirname} @dots{}
9511@item dir @var{dirname} @dots{}
9512Add directory @var{dirname} to the front of the source path. Several
d4f3574e
SS
9513directory names may be given to this command, separated by @samp{:}
9514(@samp{;} on MS-DOS and MS-Windows, where @samp{:} usually appears as
9515part of absolute file names) or
c906108c
SS
9516whitespace. You may specify a directory that is already in the source
9517path; this moves it forward, so @value{GDBN} searches it sooner.
9518
f1b620e9
MG
9519The special strings @samp{$cdir} (to refer to the compilation
9520directory, if one is recorded), and @samp{$cwd} (to refer to the
9521current working directory) can also be included in the list of
9522directories @var{dirname}. Though these will already be in the source
9523path they will be moved forward in the list so @value{GDBN} searches
9524them sooner.
c906108c
SS
9525
9526@item directory
cd852561 9527Reset the source path to its default value (@samp{$cdir:$cwd} on Unix systems). This requires confirmation.
c906108c
SS
9528
9529@c RET-repeat for @code{directory} is explicitly disabled, but since
9530@c repeating it would be a no-op we do not say that. (thanks to RMS)
9531
99e7ae30
DE
9532@item set directories @var{path-list}
9533@kindex set directories
9534Set the source path to @var{path-list}.
9535@samp{$cdir:$cwd} are added if missing.
9536
c906108c
SS
9537@item show directories
9538@kindex show directories
9539Print the source path: show which directories it contains.
30daae6c
JB
9540
9541@anchor{set substitute-path}
9542@item set substitute-path @var{from} @var{to}
9543@kindex set substitute-path
9544Define a source path substitution rule, and add it at the end of the
9545current list of existing substitution rules. If a rule with the same
9546@var{from} was already defined, then the old rule is also deleted.
9547
9548For example, if the file @file{/foo/bar/baz.c} was moved to
9549@file{/mnt/cross/baz.c}, then the command
9550
9551@smallexample
c58b006b 9552(@value{GDBP}) set substitute-path /foo/bar /mnt/cross
30daae6c
JB
9553@end smallexample
9554
9555@noindent
c58b006b 9556will tell @value{GDBN} to replace @samp{/foo/bar} with
30daae6c
JB
9557@samp{/mnt/cross}, which will allow @value{GDBN} to find the file
9558@file{baz.c} even though it was moved.
9559
9560In the case when more than one substitution rule have been defined,
9561the rules are evaluated one by one in the order where they have been
9562defined. The first one matching, if any, is selected to perform
9563the substitution.
9564
9565For instance, if we had entered the following commands:
9566
9567@smallexample
9568(@value{GDBP}) set substitute-path /usr/src/include /mnt/include
9569(@value{GDBP}) set substitute-path /usr/src /mnt/src
9570@end smallexample
9571
9572@noindent
9573@value{GDBN} would then rewrite @file{/usr/src/include/defs.h} into
9574@file{/mnt/include/defs.h} by using the first rule. However, it would
9575use the second rule to rewrite @file{/usr/src/lib/foo.c} into
9576@file{/mnt/src/lib/foo.c}.
9577
9578
9579@item unset substitute-path [path]
9580@kindex unset substitute-path
9581If a path is specified, search the current list of substitution rules
9582for a rule that would rewrite that path. Delete that rule if found.
9583A warning is emitted by the debugger if no rule could be found.
9584
9585If no path is specified, then all substitution rules are deleted.
9586
9587@item show substitute-path [path]
9588@kindex show substitute-path
9589If a path is specified, then print the source path substitution rule
9590which would rewrite that path, if any.
9591
9592If no path is specified, then print all existing source path substitution
9593rules.
9594
c906108c
SS
9595@end table
9596
9597If your source path is cluttered with directories that are no longer of
9598interest, @value{GDBN} may sometimes cause confusion by finding the wrong
9599versions of source. You can correct the situation as follows:
9600
9601@enumerate
9602@item
cd852561 9603Use @code{directory} with no argument to reset the source path to its default value.
c906108c
SS
9604
9605@item
9606Use @code{directory} with suitable arguments to reinstall the
9607directories you want in the source path. You can add all the
9608directories in one command.
9609@end enumerate
9610
6d2ebf8b 9611@node Machine Code
79a6e687 9612@section Source and Machine Code
15387254 9613@cindex source line and its code address
c906108c
SS
9614
9615You can use the command @code{info line} to map source lines to program
9616addresses (and vice versa), and the command @code{disassemble} to display
91440f57
HZ
9617a range of addresses as machine instructions. You can use the command
9618@code{set disassemble-next-line} to set whether to disassemble next
9619source line when execution stops. When run under @sc{gnu} Emacs
d4f3574e 9620mode, the @code{info line} command causes the arrow to point to the
5d161b24 9621line specified. Also, @code{info line} prints addresses in symbolic form as
c906108c
SS
9622well as hex.
9623
9624@table @code
9625@kindex info line
db1ae9c5
AB
9626@item info line
9627@itemx info line @var{location}
c906108c 9628Print the starting and ending addresses of the compiled code for
629500fa 9629source line @var{location}. You can specify source lines in any of
db1ae9c5
AB
9630the ways documented in @ref{Specify Location}. With no @var{location}
9631information about the current source line is printed.
c906108c
SS
9632@end table
9633
9634For example, we can use @code{info line} to discover the location of
9635the object code for the first line of function
9636@code{m4_changequote}:
9637
9638@smallexample
96a2c332 9639(@value{GDBP}) info line m4_changequote
db1ae9c5
AB
9640Line 895 of "builtin.c" starts at pc 0x634c <m4_changequote> and \
9641 ends at 0x6350 <m4_changequote+4>.
c906108c
SS
9642@end smallexample
9643
9644@noindent
15387254 9645@cindex code address and its source line
c906108c 9646We can also inquire (using @code{*@var{addr}} as the form for
629500fa 9647@var{location}) what source line covers a particular address:
c906108c
SS
9648@smallexample
9649(@value{GDBP}) info line *0x63ff
db1ae9c5
AB
9650Line 926 of "builtin.c" starts at pc 0x63e4 <m4_changequote+152> and \
9651 ends at 0x6404 <m4_changequote+184>.
c906108c
SS
9652@end smallexample
9653
9654@cindex @code{$_} and @code{info line}
15387254 9655@cindex @code{x} command, default address
41afff9a 9656@kindex x@r{(examine), and} info line
c906108c
SS
9657After @code{info line}, the default address for the @code{x} command
9658is changed to the starting address of the line, so that @samp{x/i} is
9659sufficient to begin examining the machine code (@pxref{Memory,
79a6e687 9660,Examining Memory}). Also, this address is saved as the value of the
c906108c 9661convenience variable @code{$_} (@pxref{Convenience Vars, ,Convenience
79a6e687 9662Variables}).
c906108c 9663
db1ae9c5
AB
9664@cindex info line, repeated calls
9665After @code{info line}, using @code{info line} again without
9666specifying a location will display information about the next source
9667line.
9668
c906108c
SS
9669@table @code
9670@kindex disassemble
9671@cindex assembly instructions
9672@cindex instructions, assembly
9673@cindex machine instructions
9674@cindex listing machine instructions
9675@item disassemble
d14508fe 9676@itemx disassemble /m
6ff0ba5f 9677@itemx disassemble /s
9b117ef3 9678@itemx disassemble /r
c906108c 9679This specialized command dumps a range of memory as machine
d14508fe 9680instructions. It can also print mixed source+disassembly by specifying
6ff0ba5f
DE
9681the @code{/m} or @code{/s} modifier and print the raw instructions in hex
9682as well as in symbolic form by specifying the @code{/r} modifier.
d14508fe 9683The default memory range is the function surrounding the
c906108c
SS
9684program counter of the selected frame. A single argument to this
9685command is a program counter value; @value{GDBN} dumps the function
21a0512e
PP
9686surrounding this value. When two arguments are given, they should
9687be separated by a comma, possibly surrounded by whitespace. The
53a71c06
CR
9688arguments specify a range of addresses to dump, in one of two forms:
9689
9690@table @code
9691@item @var{start},@var{end}
9692the addresses from @var{start} (inclusive) to @var{end} (exclusive)
9693@item @var{start},+@var{length}
9694the addresses from @var{start} (inclusive) to
9695@code{@var{start}+@var{length}} (exclusive).
9696@end table
9697
9698@noindent
9699When 2 arguments are specified, the name of the function is also
9700printed (since there could be several functions in the given range).
21a0512e
PP
9701
9702The argument(s) can be any expression yielding a numeric value, such as
9703@samp{0x32c4}, @samp{&main+10} or @samp{$pc - 8}.
2b28d209
PP
9704
9705If the range of memory being disassembled contains current program counter,
9706the instruction at that location is shown with a @code{=>} marker.
c906108c
SS
9707@end table
9708
c906108c
SS
9709The following example shows the disassembly of a range of addresses of
9710HP PA-RISC 2.0 code:
9711
9712@smallexample
21a0512e 9713(@value{GDBP}) disas 0x32c4, 0x32e4
c906108c 9714Dump of assembler code from 0x32c4 to 0x32e4:
2b28d209
PP
9715 0x32c4 <main+204>: addil 0,dp
9716 0x32c8 <main+208>: ldw 0x22c(sr0,r1),r26
9717 0x32cc <main+212>: ldil 0x3000,r31
9718 0x32d0 <main+216>: ble 0x3f8(sr4,r31)
9719 0x32d4 <main+220>: ldo 0(r31),rp
9720 0x32d8 <main+224>: addil -0x800,dp
9721 0x32dc <main+228>: ldo 0x588(r1),r26
9722 0x32e0 <main+232>: ldil 0x3000,r31
c906108c
SS
9723End of assembler dump.
9724@end smallexample
c906108c 9725
6ff0ba5f
DE
9726Here is an example showing mixed source+assembly for Intel x86
9727with @code{/m} or @code{/s}, when the program is stopped just after
9728function prologue in a non-optimized function with no inline code.
d14508fe
DE
9729
9730@smallexample
9731(@value{GDBP}) disas /m main
9732Dump of assembler code for function main:
97335 @{
9c419145
PP
9734 0x08048330 <+0>: push %ebp
9735 0x08048331 <+1>: mov %esp,%ebp
9736 0x08048333 <+3>: sub $0x8,%esp
9737 0x08048336 <+6>: and $0xfffffff0,%esp
9738 0x08048339 <+9>: sub $0x10,%esp
d14508fe
DE
9739
97406 printf ("Hello.\n");
9c419145
PP
9741=> 0x0804833c <+12>: movl $0x8048440,(%esp)
9742 0x08048343 <+19>: call 0x8048284 <puts@@plt>
d14508fe
DE
9743
97447 return 0;
97458 @}
9c419145
PP
9746 0x08048348 <+24>: mov $0x0,%eax
9747 0x0804834d <+29>: leave
9748 0x0804834e <+30>: ret
d14508fe
DE
9749
9750End of assembler dump.
9751@end smallexample
9752
6ff0ba5f
DE
9753The @code{/m} option is deprecated as its output is not useful when
9754there is either inlined code or re-ordered code.
9755The @code{/s} option is the preferred choice.
9756Here is an example for AMD x86-64 showing the difference between
9757@code{/m} output and @code{/s} output.
9758This example has one inline function defined in a header file,
9759and the code is compiled with @samp{-O2} optimization.
9760Note how the @code{/m} output is missing the disassembly of
9761several instructions that are present in the @code{/s} output.
9762
9763@file{foo.h}:
9764
9765@smallexample
9766int
9767foo (int a)
9768@{
9769 if (a < 0)
9770 return a * 2;
9771 if (a == 0)
9772 return 1;
9773 return a + 10;
9774@}
9775@end smallexample
9776
9777@file{foo.c}:
9778
9779@smallexample
9780#include "foo.h"
9781volatile int x, y;
9782int
9783main ()
9784@{
9785 x = foo (y);
9786 return 0;
9787@}
9788@end smallexample
9789
9790@smallexample
9791(@value{GDBP}) disas /m main
9792Dump of assembler code for function main:
97935 @{
9794
97956 x = foo (y);
9796 0x0000000000400400 <+0>: mov 0x200c2e(%rip),%eax # 0x601034 <y>
9797 0x0000000000400417 <+23>: mov %eax,0x200c13(%rip) # 0x601030 <x>
9798
97997 return 0;
98008 @}
9801 0x000000000040041d <+29>: xor %eax,%eax
9802 0x000000000040041f <+31>: retq
9803 0x0000000000400420 <+32>: add %eax,%eax
9804 0x0000000000400422 <+34>: jmp 0x400417 <main+23>
9805
9806End of assembler dump.
9807(@value{GDBP}) disas /s main
9808Dump of assembler code for function main:
9809foo.c:
98105 @{
98116 x = foo (y);
9812 0x0000000000400400 <+0>: mov 0x200c2e(%rip),%eax # 0x601034 <y>
9813
9814foo.h:
98154 if (a < 0)
9816 0x0000000000400406 <+6>: test %eax,%eax
9817 0x0000000000400408 <+8>: js 0x400420 <main+32>
9818
98196 if (a == 0)
98207 return 1;
98218 return a + 10;
9822 0x000000000040040a <+10>: lea 0xa(%rax),%edx
9823 0x000000000040040d <+13>: test %eax,%eax
9824 0x000000000040040f <+15>: mov $0x1,%eax
9825 0x0000000000400414 <+20>: cmovne %edx,%eax
9826
9827foo.c:
98286 x = foo (y);
9829 0x0000000000400417 <+23>: mov %eax,0x200c13(%rip) # 0x601030 <x>
9830
98317 return 0;
98328 @}
9833 0x000000000040041d <+29>: xor %eax,%eax
9834 0x000000000040041f <+31>: retq
9835
9836foo.h:
98375 return a * 2;
9838 0x0000000000400420 <+32>: add %eax,%eax
9839 0x0000000000400422 <+34>: jmp 0x400417 <main+23>
9840End of assembler dump.
9841@end smallexample
9842
53a71c06
CR
9843Here is another example showing raw instructions in hex for AMD x86-64,
9844
9845@smallexample
9846(gdb) disas /r 0x400281,+10
9847Dump of assembler code from 0x400281 to 0x40028b:
9848 0x0000000000400281: 38 36 cmp %dh,(%rsi)
9849 0x0000000000400283: 2d 36 34 2e 73 sub $0x732e3436,%eax
9850 0x0000000000400288: 6f outsl %ds:(%rsi),(%dx)
9851 0x0000000000400289: 2e 32 00 xor %cs:(%rax),%al
9852End of assembler dump.
9853@end smallexample
9854
629500fa 9855Addresses cannot be specified as a location (@pxref{Specify Location}).
7e1e0340
DE
9856So, for example, if you want to disassemble function @code{bar}
9857in file @file{foo.c}, you must type @samp{disassemble 'foo.c'::bar}
9858and not @samp{disassemble foo.c:bar}.
9859
c906108c
SS
9860Some architectures have more than one commonly-used set of instruction
9861mnemonics or other syntax.
9862
76d17f34
EZ
9863For programs that were dynamically linked and use shared libraries,
9864instructions that call functions or branch to locations in the shared
9865libraries might show a seemingly bogus location---it's actually a
9866location of the relocation table. On some architectures, @value{GDBN}
9867might be able to resolve these to actual function names.
9868
65b48a81
PB
9869@table @code
9870@kindex set disassembler-options
9871@cindex disassembler options
9872@item set disassembler-options @var{option1}[,@var{option2}@dots{}]
9873This command controls the passing of target specific information to
9874the disassembler. For a list of valid options, please refer to the
9875@code{-M}/@code{--disassembler-options} section of the @samp{objdump}
9876manual and/or the output of @kbd{objdump --help}
f5a476a7 9877(@pxref{objdump,,objdump,binutils,The GNU Binary Utilities}).
65b48a81
PB
9878The default value is the empty string.
9879
9880If it is necessary to specify more than one disassembler option, then
9881multiple options can be placed together into a comma separated list.
471b9d15 9882Currently this command is only supported on targets ARM, MIPS, PowerPC
65b48a81
PB
9883and S/390.
9884
9885@kindex show disassembler-options
9886@item show disassembler-options
9887Show the current setting of the disassembler options.
9888@end table
9889
c906108c 9890@table @code
d4f3574e 9891@kindex set disassembly-flavor
d4f3574e
SS
9892@cindex Intel disassembly flavor
9893@cindex AT&T disassembly flavor
9894@item set disassembly-flavor @var{instruction-set}
c906108c
SS
9895Select the instruction set to use when disassembling the
9896program via the @code{disassemble} or @code{x/i} commands.
9897
9898Currently this command is only defined for the Intel x86 family. You
d4f3574e
SS
9899can set @var{instruction-set} to either @code{intel} or @code{att}.
9900The default is @code{att}, the AT&T flavor used by default by Unix
9901assemblers for x86-based targets.
9c16f35a
EZ
9902
9903@kindex show disassembly-flavor
9904@item show disassembly-flavor
9905Show the current setting of the disassembly flavor.
c906108c
SS
9906@end table
9907
91440f57
HZ
9908@table @code
9909@kindex set disassemble-next-line
9910@kindex show disassemble-next-line
9911@item set disassemble-next-line
9912@itemx show disassemble-next-line
32ae1842
EZ
9913Control whether or not @value{GDBN} will disassemble the next source
9914line or instruction when execution stops. If ON, @value{GDBN} will
9915display disassembly of the next source line when execution of the
9916program being debugged stops. This is @emph{in addition} to
9917displaying the source line itself, which @value{GDBN} always does if
9918possible. If the next source line cannot be displayed for some reason
9919(e.g., if @value{GDBN} cannot find the source file, or there's no line
9920info in the debug info), @value{GDBN} will display disassembly of the
9921next @emph{instruction} instead of showing the next source line. If
9922AUTO, @value{GDBN} will display disassembly of next instruction only
9923if the source line cannot be displayed. This setting causes
9924@value{GDBN} to display some feedback when you step through a function
9925with no line info or whose source file is unavailable. The default is
9926OFF, which means never display the disassembly of the next line or
9927instruction.
91440f57
HZ
9928@end table
9929
c906108c 9930
6d2ebf8b 9931@node Data
c906108c
SS
9932@chapter Examining Data
9933
9934@cindex printing data
9935@cindex examining data
9936@kindex print
9937@kindex inspect
c906108c 9938The usual way to examine data in your program is with the @code{print}
7a292a7a
SS
9939command (abbreviated @code{p}), or its synonym @code{inspect}. It
9940evaluates and prints the value of an expression of the language your
9941program is written in (@pxref{Languages, ,Using @value{GDBN} with
78e2826b
TT
9942Different Languages}). It may also print the expression using a
9943Python-based pretty-printer (@pxref{Pretty Printing}).
c906108c
SS
9944
9945@table @code
3345721a
PA
9946@item print [[@var{options}] --] @var{expr}
9947@itemx print [[@var{options}] --] /@var{f} @var{expr}
d4f3574e
SS
9948@var{expr} is an expression (in the source language). By default the
9949value of @var{expr} is printed in a format appropriate to its data type;
c906108c 9950you can choose a different format by specifying @samp{/@var{f}}, where
d4f3574e 9951@var{f} is a letter specifying the format; see @ref{Output Formats,,Output
79a6e687 9952Formats}.
c906108c 9953
3345721a
PA
9954@anchor{print options}
9955The @code{print} command supports a number of options that allow
9956overriding relevant global print settings as set by @code{set print}
9957subcommands:
9958
9959@table @code
9960@item -address [@code{on}|@code{off}]
9961Set printing of addresses.
9962Related setting: @ref{set print address}.
9963
9964@item -array [@code{on}|@code{off}]
9965Pretty formatting of arrays.
9966Related setting: @ref{set print array}.
9967
9968@item -array-indexes [@code{on}|@code{off}]
9969Set printing of array indexes.
9970Related setting: @ref{set print array-indexes}.
9971
9972@item -elements @var{number-of-elements}|@code{unlimited}
9973Set limit on string chars or array elements to print. The value
9974@code{unlimited} causes there to be no limit. Related setting:
9975@ref{set print elements}.
9976
9977@item -max-depth @var{depth}|@code{unlimited}
9978Set the threshold after which nested structures are replaced with
9979ellipsis. Related setting: @ref{set print max-depth}.
9980
9981@item -null-stop [@code{on}|@code{off}]
9982Set printing of char arrays to stop at first null char. Related
9983setting: @ref{set print null-stop}.
9984
9985@item -object [@code{on}|@code{off}]
9986Set printing C@t{++} virtual function tables. Related setting:
9987@ref{set print object}.
9988
9989@item -pretty [@code{on}|@code{off}]
9990Set pretty formatting of structures. Related setting: @ref{set print
9991pretty}.
9992
d8edc8b7
PW
9993@item -raw-values [@code{on}|@code{off}]
9994Set whether to print values in raw form, bypassing any
9995pretty-printers for that value. Related setting: @ref{set print
9996raw-values}.
9997
3345721a
PA
9998@item -repeats @var{number-of-repeats}|@code{unlimited}
9999Set threshold for repeated print elements. @code{unlimited} causes
10000all elements to be individually printed. Related setting: @ref{set
10001print repeats}.
10002
10003@item -static-members [@code{on}|@code{off}]
10004Set printing C@t{++} static members. Related setting: @ref{set print
10005static-members}.
10006
10007@item -symbol [@code{on}|@code{off}]
10008Set printing of symbol names when printing pointers. Related setting:
10009@ref{set print symbol}.
10010
10011@item -union [@code{on}|@code{off}]
10012Set printing of unions interior to structures. Related setting:
10013@ref{set print union}.
10014
10015@item -vtbl [@code{on}|@code{off}]
10016Set printing of C++ virtual function tables. Related setting:
10017@ref{set print vtbl}.
10018@end table
10019
10020Because the @code{print} command accepts arbitrary expressions which
10021may look like options (including abbreviations), if you specify any
10022command option, then you must use a double dash (@code{--}) to mark
10023the end of option processing.
10024
d8edc8b7 10025For example, this prints the value of the @code{-p} expression:
3345721a
PA
10026
10027@smallexample
d8edc8b7 10028(@value{GDBP}) print -p
3345721a
PA
10029@end smallexample
10030
10031While this repeats the last value in the value history (see below)
d8edc8b7 10032with the @code{-pretty} option in effect:
3345721a
PA
10033
10034@smallexample
d8edc8b7 10035(@value{GDBP}) print -p --
3345721a
PA
10036@end smallexample
10037
10038Here is an example including both on option and an expression:
10039
10040@smallexample
10041@group
10042(@value{GDBP}) print -pretty -- *myptr
10043$1 = @{
10044 next = 0x0,
10045 flags = @{
10046 sweet = 1,
10047 sour = 1
10048 @},
10049 meat = 0x54 "Pork"
10050@}
10051@end group
10052@end smallexample
10053
10054@item print [@var{options}]
10055@itemx print [@var{options}] /@var{f}
15387254 10056@cindex reprint the last value
d4f3574e 10057If you omit @var{expr}, @value{GDBN} displays the last value again (from the
79a6e687 10058@dfn{value history}; @pxref{Value History, ,Value History}). This allows you to
c906108c
SS
10059conveniently inspect the same value in an alternative format.
10060@end table
10061
a668276c
LM
10062If the architecture supports memory tagging, the @code{print} command will
10063display pointer/memory tag mismatches if what is being printed is a pointer
10064or reference type. @xref{Memory Tagging}.
10065
c906108c
SS
10066A more low-level way of examining data is with the @code{x} command.
10067It examines data in memory at a specified address and prints it in a
79a6e687 10068specified format. @xref{Memory, ,Examining Memory}.
c906108c 10069
7a292a7a 10070If you are interested in information about types, or about how the
d4f3574e
SS
10071fields of a struct or a class are declared, use the @code{ptype @var{exp}}
10072command rather than @code{print}. @xref{Symbols, ,Examining the Symbol
7a292a7a 10073Table}.
c906108c 10074
06fc020f
SCR
10075@cindex exploring hierarchical data structures
10076@kindex explore
10077Another way of examining values of expressions and type information is
10078through the Python extension command @code{explore} (available only if
10079the @value{GDBN} build is configured with @code{--with-python}). It
10080offers an interactive way to start at the highest level (or, the most
10081abstract level) of the data type of an expression (or, the data type
10082itself) and explore all the way down to leaf scalar values/fields
10083embedded in the higher level data types.
10084
10085@table @code
10086@item explore @var{arg}
10087@var{arg} is either an expression (in the source language), or a type
10088visible in the current context of the program being debugged.
10089@end table
10090
10091The working of the @code{explore} command can be illustrated with an
10092example. If a data type @code{struct ComplexStruct} is defined in your
10093C program as
10094
10095@smallexample
10096struct SimpleStruct
10097@{
10098 int i;
10099 double d;
10100@};
10101
10102struct ComplexStruct
10103@{
10104 struct SimpleStruct *ss_p;
10105 int arr[10];
10106@};
10107@end smallexample
10108
10109@noindent
10110followed by variable declarations as
10111
10112@smallexample
10113struct SimpleStruct ss = @{ 10, 1.11 @};
10114struct ComplexStruct cs = @{ &ss, @{ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 @} @};
10115@end smallexample
10116
10117@noindent
10118then, the value of the variable @code{cs} can be explored using the
10119@code{explore} command as follows.
10120
10121@smallexample
10122(gdb) explore cs
10123The value of `cs' is a struct/class of type `struct ComplexStruct' with
10124the following fields:
10125
10126 ss_p = <Enter 0 to explore this field of type `struct SimpleStruct *'>
10127 arr = <Enter 1 to explore this field of type `int [10]'>
10128
10129Enter the field number of choice:
10130@end smallexample
10131
10132@noindent
10133Since the fields of @code{cs} are not scalar values, you are being
10134prompted to chose the field you want to explore. Let's say you choose
10135the field @code{ss_p} by entering @code{0}. Then, since this field is a
10136pointer, you will be asked if it is pointing to a single value. From
10137the declaration of @code{cs} above, it is indeed pointing to a single
10138value, hence you enter @code{y}. If you enter @code{n}, then you will
10139be asked if it were pointing to an array of values, in which case this
10140field will be explored as if it were an array.
10141
10142@smallexample
10143`cs.ss_p' is a pointer to a value of type `struct SimpleStruct'
10144Continue exploring it as a pointer to a single value [y/n]: y
10145The value of `*(cs.ss_p)' is a struct/class of type `struct
10146SimpleStruct' with the following fields:
10147
10148 i = 10 .. (Value of type `int')
10149 d = 1.1100000000000001 .. (Value of type `double')
10150
10151Press enter to return to parent value:
10152@end smallexample
10153
10154@noindent
10155If the field @code{arr} of @code{cs} was chosen for exploration by
10156entering @code{1} earlier, then since it is as array, you will be
10157prompted to enter the index of the element in the array that you want
10158to explore.
10159
10160@smallexample
10161`cs.arr' is an array of `int'.
10162Enter the index of the element you want to explore in `cs.arr': 5
10163
10164`(cs.arr)[5]' is a scalar value of type `int'.
10165
10166(cs.arr)[5] = 4
10167
10168Press enter to return to parent value:
10169@end smallexample
10170
10171In general, at any stage of exploration, you can go deeper towards the
10172leaf values by responding to the prompts appropriately, or hit the
10173return key to return to the enclosing data structure (the @i{higher}
10174level data structure).
10175
10176Similar to exploring values, you can use the @code{explore} command to
10177explore types. Instead of specifying a value (which is typically a
10178variable name or an expression valid in the current context of the
10179program being debugged), you specify a type name. If you consider the
10180same example as above, your can explore the type
10181@code{struct ComplexStruct} by passing the argument
10182@code{struct ComplexStruct} to the @code{explore} command.
10183
10184@smallexample
10185(gdb) explore struct ComplexStruct
10186@end smallexample
10187
10188@noindent
10189By responding to the prompts appropriately in the subsequent interactive
10190session, you can explore the type @code{struct ComplexStruct} in a
10191manner similar to how the value @code{cs} was explored in the above
10192example.
10193
10194The @code{explore} command also has two sub-commands,
10195@code{explore value} and @code{explore type}. The former sub-command is
10196a way to explicitly specify that value exploration of the argument is
10197being invoked, while the latter is a way to explicitly specify that type
10198exploration of the argument is being invoked.
10199
10200@table @code
10201@item explore value @var{expr}
10202@cindex explore value
10203This sub-command of @code{explore} explores the value of the
10204expression @var{expr} (if @var{expr} is an expression valid in the
10205current context of the program being debugged). The behavior of this
10206command is identical to that of the behavior of the @code{explore}
10207command being passed the argument @var{expr}.
10208
10209@item explore type @var{arg}
10210@cindex explore type
10211This sub-command of @code{explore} explores the type of @var{arg} (if
10212@var{arg} is a type visible in the current context of program being
10213debugged), or the type of the value/expression @var{arg} (if @var{arg}
10214is an expression valid in the current context of the program being
10215debugged). If @var{arg} is a type, then the behavior of this command is
10216identical to that of the @code{explore} command being passed the
10217argument @var{arg}. If @var{arg} is an expression, then the behavior of
10218this command will be identical to that of the @code{explore} command
10219being passed the type of @var{arg} as the argument.
10220@end table
10221
c906108c
SS
10222@menu
10223* Expressions:: Expressions
6ba66d6a 10224* Ambiguous Expressions:: Ambiguous Expressions
c906108c
SS
10225* Variables:: Program variables
10226* Arrays:: Artificial arrays
10227* Output Formats:: Output formats
10228* Memory:: Examining memory
fa167b00 10229* Memory Tagging:: Memory Tagging
c906108c
SS
10230* Auto Display:: Automatic display
10231* Print Settings:: Print settings
4c374409 10232* Pretty Printing:: Python pretty printing
c906108c
SS
10233* Value History:: Value history
10234* Convenience Vars:: Convenience variables
a72c3253 10235* Convenience Funs:: Convenience functions
c906108c 10236* Registers:: Registers
c906108c 10237* Floating Point Hardware:: Floating point hardware
53c69bd7 10238* Vector Unit:: Vector Unit
721c2651 10239* OS Information:: Auxiliary data provided by operating system
29e57380 10240* Memory Region Attributes:: Memory region attributes
16d9dec6 10241* Dump/Restore Files:: Copy between memory and a file
384ee23f 10242* Core File Generation:: Cause a program dump its core
a0eb71c5
KB
10243* Character Sets:: Debugging programs that use a different
10244 character set than GDB does
b12039c6 10245* Caching Target Data:: Data caching for targets
08388c79 10246* Searching Memory:: Searching memory for a sequence of bytes
5fdf6324 10247* Value Sizes:: Managing memory allocated for values
c906108c
SS
10248@end menu
10249
6d2ebf8b 10250@node Expressions
c906108c
SS
10251@section Expressions
10252
10253@cindex expressions
10254@code{print} and many other @value{GDBN} commands accept an expression and
10255compute its value. Any kind of constant, variable or operator defined
10256by the programming language you are using is valid in an expression in
e2e0bcd1
JB
10257@value{GDBN}. This includes conditional expressions, function calls,
10258casts, and string constants. It also includes preprocessor macros, if
10259you compiled your program to include this information; see
10260@ref{Compilation}.
c906108c 10261
15387254 10262@cindex arrays in expressions
d4f3574e
SS
10263@value{GDBN} supports array constants in expressions input by
10264the user. The syntax is @{@var{element}, @var{element}@dots{}@}. For example,
63092375
DJ
10265you can use the command @code{print @{1, 2, 3@}} to create an array
10266of three integers. If you pass an array to a function or assign it
10267to a program variable, @value{GDBN} copies the array to memory that
10268is @code{malloc}ed in the target program.
c906108c 10269
c906108c
SS
10270Because C is so widespread, most of the expressions shown in examples in
10271this manual are in C. @xref{Languages, , Using @value{GDBN} with Different
10272Languages}, for information on how to use expressions in other
10273languages.
10274
10275In this section, we discuss operators that you can use in @value{GDBN}
10276expressions regardless of your programming language.
10277
15387254 10278@cindex casts, in expressions
c906108c
SS
10279Casts are supported in all languages, not just in C, because it is so
10280useful to cast a number into a pointer in order to examine a structure
10281at that address in memory.
10282@c FIXME: casts supported---Mod2 true?
c906108c
SS
10283
10284@value{GDBN} supports these operators, in addition to those common
10285to programming languages:
10286
10287@table @code
10288@item @@
10289@samp{@@} is a binary operator for treating parts of memory as arrays.
79a6e687 10290@xref{Arrays, ,Artificial Arrays}, for more information.
c906108c
SS
10291
10292@item ::
10293@samp{::} allows you to specify a variable in terms of the file or
79a6e687 10294function where it is defined. @xref{Variables, ,Program Variables}.
c906108c
SS
10295
10296@cindex @{@var{type}@}
10297@cindex type casting memory
10298@cindex memory, viewing as typed object
10299@cindex casts, to view memory
10300@item @{@var{type}@} @var{addr}
10301Refers to an object of type @var{type} stored at address @var{addr} in
697aa1b7
EZ
10302memory. The address @var{addr} may be any expression whose value is
10303an integer or pointer (but parentheses are required around binary
10304operators, just as in a cast). This construct is allowed regardless
10305of what kind of data is normally supposed to reside at @var{addr}.
c906108c
SS
10306@end table
10307
6ba66d6a
JB
10308@node Ambiguous Expressions
10309@section Ambiguous Expressions
10310@cindex ambiguous expressions
10311
10312Expressions can sometimes contain some ambiguous elements. For instance,
10313some programming languages (notably Ada, C@t{++} and Objective-C) permit
10314a single function name to be defined several times, for application in
10315different contexts. This is called @dfn{overloading}. Another example
10316involving Ada is generics. A @dfn{generic package} is similar to C@t{++}
10317templates and is typically instantiated several times, resulting in
10318the same function name being defined in different contexts.
10319
10320In some cases and depending on the language, it is possible to adjust
10321the expression to remove the ambiguity. For instance in C@t{++}, you
10322can specify the signature of the function you want to break on, as in
10323@kbd{break @var{function}(@var{types})}. In Ada, using the fully
10324qualified name of your function often makes the expression unambiguous
10325as well.
10326
10327When an ambiguity that needs to be resolved is detected, the debugger
10328has the capability to display a menu of numbered choices for each
10329possibility, and then waits for the selection with the prompt @samp{>}.
10330The first option is always @samp{[0] cancel}, and typing @kbd{0 @key{RET}}
10331aborts the current command. If the command in which the expression was
10332used allows more than one choice to be selected, the next option in the
10333menu is @samp{[1] all}, and typing @kbd{1 @key{RET}} selects all possible
10334choices.
10335
10336For example, the following session excerpt shows an attempt to set a
10337breakpoint at the overloaded symbol @code{String::after}.
10338We choose three particular definitions of that function name:
10339
10340@c FIXME! This is likely to change to show arg type lists, at least
10341@smallexample
10342@group
10343(@value{GDBP}) b String::after
10344[0] cancel
10345[1] all
10346[2] file:String.cc; line number:867
10347[3] file:String.cc; line number:860
10348[4] file:String.cc; line number:875
10349[5] file:String.cc; line number:853
10350[6] file:String.cc; line number:846
10351[7] file:String.cc; line number:735
10352> 2 4 6
10353Breakpoint 1 at 0xb26c: file String.cc, line 867.
10354Breakpoint 2 at 0xb344: file String.cc, line 875.
10355Breakpoint 3 at 0xafcc: file String.cc, line 846.
10356Multiple breakpoints were set.
10357Use the "delete" command to delete unwanted
10358 breakpoints.
10359(@value{GDBP})
10360@end group
10361@end smallexample
10362
10363@table @code
10364@kindex set multiple-symbols
10365@item set multiple-symbols @var{mode}
10366@cindex multiple-symbols menu
10367
10368This option allows you to adjust the debugger behavior when an expression
10369is ambiguous.
10370
10371By default, @var{mode} is set to @code{all}. If the command with which
10372the expression is used allows more than one choice, then @value{GDBN}
10373automatically selects all possible choices. For instance, inserting
10374a breakpoint on a function using an ambiguous name results in a breakpoint
10375inserted on each possible match. However, if a unique choice must be made,
10376then @value{GDBN} uses the menu to help you disambiguate the expression.
10377For instance, printing the address of an overloaded function will result
10378in the use of the menu.
10379
10380When @var{mode} is set to @code{ask}, the debugger always uses the menu
10381when an ambiguity is detected.
10382
10383Finally, when @var{mode} is set to @code{cancel}, the debugger reports
10384an error due to the ambiguity and the command is aborted.
10385
10386@kindex show multiple-symbols
10387@item show multiple-symbols
10388Show the current value of the @code{multiple-symbols} setting.
10389@end table
10390
6d2ebf8b 10391@node Variables
79a6e687 10392@section Program Variables
c906108c
SS
10393
10394The most common kind of expression to use is the name of a variable
10395in your program.
10396
10397Variables in expressions are understood in the selected stack frame
79a6e687 10398(@pxref{Selection, ,Selecting a Frame}); they must be either:
c906108c
SS
10399
10400@itemize @bullet
10401@item
10402global (or file-static)
10403@end itemize
10404
5d161b24 10405@noindent or
c906108c
SS
10406
10407@itemize @bullet
10408@item
10409visible according to the scope rules of the
10410programming language from the point of execution in that frame
5d161b24 10411@end itemize
c906108c
SS
10412
10413@noindent This means that in the function
10414
474c8240 10415@smallexample
c906108c
SS
10416foo (a)
10417 int a;
10418@{
10419 bar (a);
10420 @{
10421 int b = test ();
10422 bar (b);
10423 @}
10424@}
474c8240 10425@end smallexample
c906108c
SS
10426
10427@noindent
10428you can examine and use the variable @code{a} whenever your program is
10429executing within the function @code{foo}, but you can only use or
10430examine the variable @code{b} while your program is executing inside
10431the block where @code{b} is declared.
10432
10433@cindex variable name conflict
10434There is an exception: you can refer to a variable or function whose
10435scope is a single source file even if the current execution point is not
10436in this file. But it is possible to have more than one such variable or
10437function with the same name (in different source files). If that
10438happens, referring to that name has unpredictable effects. If you wish,
72384ba3 10439you can specify a static variable in a particular function or file by
15387254 10440using the colon-colon (@code{::}) notation:
c906108c 10441
d4f3574e 10442@cindex colon-colon, context for variables/functions
12c27660 10443@ifnotinfo
c906108c 10444@c info cannot cope with a :: index entry, but why deprive hard copy readers?
41afff9a 10445@cindex @code{::}, context for variables/functions
12c27660 10446@end ifnotinfo
474c8240 10447@smallexample
c906108c
SS
10448@var{file}::@var{variable}
10449@var{function}::@var{variable}
474c8240 10450@end smallexample
c906108c
SS
10451
10452@noindent
10453Here @var{file} or @var{function} is the name of the context for the
10454static @var{variable}. In the case of file names, you can use quotes to
10455make sure @value{GDBN} parses the file name as a single word---for example,
10456to print a global value of @code{x} defined in @file{f2.c}:
10457
474c8240 10458@smallexample
c906108c 10459(@value{GDBP}) p 'f2.c'::x
474c8240 10460@end smallexample
c906108c 10461
72384ba3
PH
10462The @code{::} notation is normally used for referring to
10463static variables, since you typically disambiguate uses of local variables
10464in functions by selecting the appropriate frame and using the
10465simple name of the variable. However, you may also use this notation
10466to refer to local variables in frames enclosing the selected frame:
10467
10468@smallexample
10469void
10470foo (int a)
10471@{
10472 if (a < 10)
10473 bar (a);
10474 else
10475 process (a); /* Stop here */
10476@}
10477
10478int
10479bar (int a)
10480@{
10481 foo (a + 5);
10482@}
10483@end smallexample
10484
10485@noindent
10486For example, if there is a breakpoint at the commented line,
10487here is what you might see
10488when the program stops after executing the call @code{bar(0)}:
10489
10490@smallexample
10491(@value{GDBP}) p a
10492$1 = 10
10493(@value{GDBP}) p bar::a
10494$2 = 5
10495(@value{GDBP}) up 2
10496#2 0x080483d0 in foo (a=5) at foobar.c:12
10497(@value{GDBP}) p a
10498$3 = 5
10499(@value{GDBP}) p bar::a
10500$4 = 0
10501@end smallexample
10502
b37052ae 10503@cindex C@t{++} scope resolution
805e1f19
TT
10504These uses of @samp{::} are very rarely in conflict with the very
10505similar use of the same notation in C@t{++}. When they are in
10506conflict, the C@t{++} meaning takes precedence; however, this can be
10507overridden by quoting the file or function name with single quotes.
10508
10509For example, suppose the program is stopped in a method of a class
10510that has a field named @code{includefile}, and there is also an
10511include file named @file{includefile} that defines a variable,
10512@code{some_global}.
10513
10514@smallexample
10515(@value{GDBP}) p includefile
10516$1 = 23
10517(@value{GDBP}) p includefile::some_global
10518A syntax error in expression, near `'.
10519(@value{GDBP}) p 'includefile'::some_global
10520$2 = 27
10521@end smallexample
c906108c
SS
10522
10523@cindex wrong values
10524@cindex variable values, wrong
15387254
EZ
10525@cindex function entry/exit, wrong values of variables
10526@cindex optimized code, wrong values of variables
c906108c
SS
10527@quotation
10528@emph{Warning:} Occasionally, a local variable may appear to have the
10529wrong value at certain points in a function---just after entry to a new
10530scope, and just before exit.
10531@end quotation
10532You may see this problem when you are stepping by machine instructions.
10533This is because, on most machines, it takes more than one instruction to
10534set up a stack frame (including local variable definitions); if you are
10535stepping by machine instructions, variables may appear to have the wrong
10536values until the stack frame is completely built. On exit, it usually
10537also takes more than one machine instruction to destroy a stack frame;
10538after you begin stepping through that group of instructions, local
10539variable definitions may be gone.
10540
10541This may also happen when the compiler does significant optimizations.
10542To be sure of always seeing accurate values, turn off all optimization
10543when compiling.
10544
d4f3574e
SS
10545@cindex ``No symbol "foo" in current context''
10546Another possible effect of compiler optimizations is to optimize
10547unused variables out of existence, or assign variables to registers (as
10548opposed to memory addresses). Depending on the support for such cases
10549offered by the debug info format used by the compiler, @value{GDBN}
10550might not be able to display values for such local variables. If that
10551happens, @value{GDBN} will print a message like this:
10552
474c8240 10553@smallexample
d4f3574e 10554No symbol "foo" in current context.
474c8240 10555@end smallexample
d4f3574e
SS
10556
10557To solve such problems, either recompile without optimizations, or use a
10558different debug info format, if the compiler supports several such
e0f8f636
TT
10559formats. @xref{Compilation}, for more information on choosing compiler
10560options. @xref{C, ,C and C@t{++}}, for more information about debug
10561info formats that are best suited to C@t{++} programs.
d4f3574e 10562
ab1adacd
EZ
10563If you ask to print an object whose contents are unknown to
10564@value{GDBN}, e.g., because its data type is not completely specified
10565by the debug information, @value{GDBN} will say @samp{<incomplete
10566type>}. @xref{Symbols, incomplete type}, for more about this.
10567
d69cf9b2
PA
10568@cindex no debug info variables
10569If you try to examine or use the value of a (global) variable for
10570which @value{GDBN} has no type information, e.g., because the program
10571includes no debug information, @value{GDBN} displays an error message.
10572@xref{Symbols, unknown type}, for more about unknown types. If you
10573cast the variable to its declared type, @value{GDBN} gets the
10574variable's value using the cast-to type as the variable's type. For
10575example, in a C program:
10576
10577@smallexample
10578 (@value{GDBP}) p var
10579 'var' has unknown type; cast it to its declared type
10580 (@value{GDBP}) p (float) var
10581 $1 = 3.14
10582@end smallexample
10583
36b11add
JK
10584If you append @kbd{@@entry} string to a function parameter name you get its
10585value at the time the function got called. If the value is not available an
10586error message is printed. Entry values are available only with some compilers.
10587Entry values are normally also printed at the function parameter list according
10588to @ref{set print entry-values}.
10589
10590@smallexample
10591Breakpoint 1, d (i=30) at gdb.base/entry-value.c:29
1059229 i++;
10593(gdb) next
1059430 e (i);
10595(gdb) print i
10596$1 = 31
10597(gdb) print i@@entry
10598$2 = 30
10599@end smallexample
10600
3a60f64e
JK
10601Strings are identified as arrays of @code{char} values without specified
10602signedness. Arrays of either @code{signed char} or @code{unsigned char} get
10603printed as arrays of 1 byte sized integers. @code{-fsigned-char} or
10604@code{-funsigned-char} @value{NGCC} options have no effect as @value{GDBN}
10605defines literal string type @code{"char"} as @code{char} without a sign.
10606For program code
10607
10608@smallexample
10609char var0[] = "A";
10610signed char var1[] = "A";
10611@end smallexample
10612
10613You get during debugging
10614@smallexample
10615(gdb) print var0
10616$1 = "A"
10617(gdb) print var1
10618$2 = @{65 'A', 0 '\0'@}
10619@end smallexample
10620
6d2ebf8b 10621@node Arrays
79a6e687 10622@section Artificial Arrays
c906108c
SS
10623
10624@cindex artificial array
15387254 10625@cindex arrays
41afff9a 10626@kindex @@@r{, referencing memory as an array}
c906108c
SS
10627It is often useful to print out several successive objects of the
10628same type in memory; a section of an array, or an array of
10629dynamically determined size for which only a pointer exists in the
10630program.
10631
10632You can do this by referring to a contiguous span of memory as an
10633@dfn{artificial array}, using the binary operator @samp{@@}. The left
10634operand of @samp{@@} should be the first element of the desired array
10635and be an individual object. The right operand should be the desired length
10636of the array. The result is an array value whose elements are all of
10637the type of the left argument. The first element is actually the left
10638argument; the second element comes from bytes of memory immediately
10639following those that hold the first element, and so on. Here is an
10640example. If a program says
10641
474c8240 10642@smallexample
c906108c 10643int *array = (int *) malloc (len * sizeof (int));
474c8240 10644@end smallexample
c906108c
SS
10645
10646@noindent
10647you can print the contents of @code{array} with
10648
474c8240 10649@smallexample
c906108c 10650p *array@@len
474c8240 10651@end smallexample
c906108c
SS
10652
10653The left operand of @samp{@@} must reside in memory. Array values made
10654with @samp{@@} in this way behave just like other arrays in terms of
10655subscripting, and are coerced to pointers when used in expressions.
10656Artificial arrays most often appear in expressions via the value history
79a6e687 10657(@pxref{Value History, ,Value History}), after printing one out.
c906108c
SS
10658
10659Another way to create an artificial array is to use a cast.
10660This re-interprets a value as if it were an array.
10661The value need not be in memory:
474c8240 10662@smallexample
c906108c
SS
10663(@value{GDBP}) p/x (short[2])0x12345678
10664$1 = @{0x1234, 0x5678@}
474c8240 10665@end smallexample
c906108c
SS
10666
10667As a convenience, if you leave the array length out (as in
c3f6f71d 10668@samp{(@var{type}[])@var{value}}) @value{GDBN} calculates the size to fill
c906108c 10669the value (as @samp{sizeof(@var{value})/sizeof(@var{type})}:
474c8240 10670@smallexample
c906108c
SS
10671(@value{GDBP}) p/x (short[])0x12345678
10672$2 = @{0x1234, 0x5678@}
474c8240 10673@end smallexample
c906108c
SS
10674
10675Sometimes the artificial array mechanism is not quite enough; in
10676moderately complex data structures, the elements of interest may not
10677actually be adjacent---for example, if you are interested in the values
10678of pointers in an array. One useful work-around in this situation is
10679to use a convenience variable (@pxref{Convenience Vars, ,Convenience
79a6e687 10680Variables}) as a counter in an expression that prints the first
c906108c
SS
10681interesting value, and then repeat that expression via @key{RET}. For
10682instance, suppose you have an array @code{dtab} of pointers to
10683structures, and you are interested in the values of a field @code{fv}
10684in each structure. Here is an example of what you might type:
10685
474c8240 10686@smallexample
c906108c
SS
10687set $i = 0
10688p dtab[$i++]->fv
10689@key{RET}
10690@key{RET}
10691@dots{}
474c8240 10692@end smallexample
c906108c 10693
6d2ebf8b 10694@node Output Formats
79a6e687 10695@section Output Formats
c906108c
SS
10696
10697@cindex formatted output
10698@cindex output formats
10699By default, @value{GDBN} prints a value according to its data type. Sometimes
10700this is not what you want. For example, you might want to print a number
10701in hex, or a pointer in decimal. Or you might want to view data in memory
10702at a certain address as a character string or as an instruction. To do
10703these things, specify an @dfn{output format} when you print a value.
10704
10705The simplest use of output formats is to say how to print a value
10706already computed. This is done by starting the arguments of the
10707@code{print} command with a slash and a format letter. The format
10708letters supported are:
10709
10710@table @code
10711@item x
10712Regard the bits of the value as an integer, and print the integer in
10713hexadecimal.
10714
10715@item d
10716Print as integer in signed decimal.
10717
10718@item u
10719Print as integer in unsigned decimal.
10720
10721@item o
10722Print as integer in octal.
10723
10724@item t
10725Print as integer in binary. The letter @samp{t} stands for ``two''.
10726@footnote{@samp{b} cannot be used because these format letters are also
10727used with the @code{x} command, where @samp{b} stands for ``byte'';
79a6e687 10728see @ref{Memory,,Examining Memory}.}
c906108c
SS
10729
10730@item a
10731@cindex unknown address, locating
3d67e040 10732@cindex locate address
c906108c
SS
10733Print as an address, both absolute in hexadecimal and as an offset from
10734the nearest preceding symbol. You can use this format used to discover
10735where (in what function) an unknown address is located:
10736
474c8240 10737@smallexample
c906108c
SS
10738(@value{GDBP}) p/a 0x54320
10739$3 = 0x54320 <_initialize_vx+396>
474c8240 10740@end smallexample
c906108c 10741
3d67e040
EZ
10742@noindent
10743The command @code{info symbol 0x54320} yields similar results.
10744@xref{Symbols, info symbol}.
10745
c906108c 10746@item c
51274035
EZ
10747Regard as an integer and print it as a character constant. This
10748prints both the numerical value and its character representation. The
10749character representation is replaced with the octal escape @samp{\nnn}
10750for characters outside the 7-bit @sc{ascii} range.
c906108c 10751
ea37ba09
DJ
10752Without this format, @value{GDBN} displays @code{char},
10753@w{@code{unsigned char}}, and @w{@code{signed char}} data as character
10754constants. Single-byte members of vectors are displayed as integer
10755data.
10756
c906108c
SS
10757@item f
10758Regard the bits of the value as a floating point number and print
10759using typical floating point syntax.
ea37ba09
DJ
10760
10761@item s
10762@cindex printing strings
10763@cindex printing byte arrays
10764Regard as a string, if possible. With this format, pointers to single-byte
10765data are displayed as null-terminated strings and arrays of single-byte data
10766are displayed as fixed-length strings. Other values are displayed in their
10767natural types.
10768
10769Without this format, @value{GDBN} displays pointers to and arrays of
10770@code{char}, @w{@code{unsigned char}}, and @w{@code{signed char}} as
10771strings. Single-byte members of a vector are displayed as an integer
10772array.
a6bac58e 10773
6fbe845e
AB
10774@item z
10775Like @samp{x} formatting, the value is treated as an integer and
10776printed as hexadecimal, but leading zeros are printed to pad the value
10777to the size of the integer type.
10778
a6bac58e
TT
10779@item r
10780@cindex raw printing
10781Print using the @samp{raw} formatting. By default, @value{GDBN} will
78e2826b
TT
10782use a Python-based pretty-printer, if one is available (@pxref{Pretty
10783Printing}). This typically results in a higher-level display of the
10784value's contents. The @samp{r} format bypasses any Python
10785pretty-printer which might exist.
c906108c
SS
10786@end table
10787
10788For example, to print the program counter in hex (@pxref{Registers}), type
10789
474c8240 10790@smallexample
c906108c 10791p/x $pc
474c8240 10792@end smallexample
c906108c
SS
10793
10794@noindent
10795Note that no space is required before the slash; this is because command
10796names in @value{GDBN} cannot contain a slash.
10797
10798To reprint the last value in the value history with a different format,
10799you can use the @code{print} command with just a format and no
10800expression. For example, @samp{p/x} reprints the last value in hex.
10801
6d2ebf8b 10802@node Memory
79a6e687 10803@section Examining Memory
c906108c
SS
10804
10805You can use the command @code{x} (for ``examine'') to examine memory in
10806any of several formats, independently of your program's data types.
10807
10808@cindex examining memory
10809@table @code
41afff9a 10810@kindex x @r{(examine memory)}
c906108c
SS
10811@item x/@var{nfu} @var{addr}
10812@itemx x @var{addr}
10813@itemx x
10814Use the @code{x} command to examine memory.
10815@end table
10816
10817@var{n}, @var{f}, and @var{u} are all optional parameters that specify how
10818much memory to display and how to format it; @var{addr} is an
10819expression giving the address where you want to start displaying memory.
10820If you use defaults for @var{nfu}, you need not type the slash @samp{/}.
10821Several commands set convenient defaults for @var{addr}.
10822
10823@table @r
10824@item @var{n}, the repeat count
10825The repeat count is a decimal integer; the default is 1. It specifies
bb556f1f
TK
10826how much memory (counting by units @var{u}) to display. If a negative
10827number is specified, memory is examined backward from @var{addr}.
c906108c
SS
10828@c This really is **decimal**; unaffected by 'set radix' as of GDB
10829@c 4.1.2.
10830
10831@item @var{f}, the display format
51274035
EZ
10832The display format is one of the formats used by @code{print}
10833(@samp{x}, @samp{d}, @samp{u}, @samp{o}, @samp{t}, @samp{a}, @samp{c},
a668276c
LM
10834@samp{f}, @samp{s}), @samp{i} (for machine instructions) and
10835@samp{m} (for displaying memory tags).
ea37ba09
DJ
10836The default is @samp{x} (hexadecimal) initially. The default changes
10837each time you use either @code{x} or @code{print}.
c906108c
SS
10838
10839@item @var{u}, the unit size
10840The unit size is any of
10841
10842@table @code
10843@item b
10844Bytes.
10845@item h
10846Halfwords (two bytes).
10847@item w
10848Words (four bytes). This is the initial default.
10849@item g
10850Giant words (eight bytes).
10851@end table
10852
10853Each time you specify a unit size with @code{x}, that size becomes the
9a22f0d0
PM
10854default unit the next time you use @code{x}. For the @samp{i} format,
10855the unit size is ignored and is normally not written. For the @samp{s} format,
10856the unit size defaults to @samp{b}, unless it is explicitly given.
10857Use @kbd{x /hs} to display 16-bit char strings and @kbd{x /ws} to display
1085832-bit strings. The next use of @kbd{x /s} will again display 8-bit strings.
10859Note that the results depend on the programming language of the
10860current compilation unit. If the language is C, the @samp{s}
10861modifier will use the UTF-16 encoding while @samp{w} will use
10862UTF-32. The encoding is set by the programming language and cannot
10863be altered.
c906108c
SS
10864
10865@item @var{addr}, starting display address
10866@var{addr} is the address where you want @value{GDBN} to begin displaying
10867memory. The expression need not have a pointer value (though it may);
10868it is always interpreted as an integer address of a byte of memory.
10869@xref{Expressions, ,Expressions}, for more information on expressions. The default for
10870@var{addr} is usually just after the last address examined---but several
10871other commands also set the default address: @code{info breakpoints} (to
10872the address of the last breakpoint listed), @code{info line} (to the
10873starting address of a line), and @code{print} (if you use it to display
10874a value from memory).
10875@end table
10876
10877For example, @samp{x/3uh 0x54320} is a request to display three halfwords
10878(@code{h}) of memory, formatted as unsigned decimal integers (@samp{u}),
10879starting at address @code{0x54320}. @samp{x/4xw $sp} prints the four
10880words (@samp{w}) of memory above the stack pointer (here, @samp{$sp};
d4f3574e 10881@pxref{Registers, ,Registers}) in hexadecimal (@samp{x}).
c906108c 10882
bb556f1f
TK
10883You can also specify a negative repeat count to examine memory backward
10884from the given address. For example, @samp{x/-3uh 0x54320} prints three
10885halfwords (@code{h}) at @code{0x54314}, @code{0x54328}, and @code{0x5431c}.
10886
c906108c
SS
10887Since the letters indicating unit sizes are all distinct from the
10888letters specifying output formats, you do not have to remember whether
10889unit size or format comes first; either order works. The output
10890specifications @samp{4xw} and @samp{4wx} mean exactly the same thing.
10891(However, the count @var{n} must come first; @samp{wx4} does not work.)
10892
10893Even though the unit size @var{u} is ignored for the formats @samp{s}
10894and @samp{i}, you might still want to use a count @var{n}; for example,
10895@samp{3i} specifies that you want to see three machine instructions,
a4642986
MR
10896including any operands. For convenience, especially when used with
10897the @code{display} command, the @samp{i} format also prints branch delay
10898slot instructions, if any, beyond the count specified, which immediately
10899follow the last instruction that is within the count. The command
10900@code{disassemble} gives an alternative way of inspecting machine
10901instructions; see @ref{Machine Code,,Source and Machine Code}.
c906108c 10902
bb556f1f
TK
10903If a negative repeat count is specified for the formats @samp{s} or @samp{i},
10904the command displays null-terminated strings or instructions before the given
10905address as many as the absolute value of the given number. For the @samp{i}
10906format, we use line number information in the debug info to accurately locate
10907instruction boundaries while disassembling backward. If line info is not
10908available, the command stops examining memory with an error message.
10909
c906108c
SS
10910All the defaults for the arguments to @code{x} are designed to make it
10911easy to continue scanning memory with minimal specifications each time
10912you use @code{x}. For example, after you have inspected three machine
10913instructions with @samp{x/3i @var{addr}}, you can inspect the next seven
10914with just @samp{x/7}. If you use @key{RET} to repeat the @code{x} command,
10915the repeat count @var{n} is used again; the other arguments default as
10916for successive uses of @code{x}.
10917
2b28d209
PP
10918When examining machine instructions, the instruction at current program
10919counter is shown with a @code{=>} marker. For example:
10920
10921@smallexample
10922(@value{GDBP}) x/5i $pc-6
10923 0x804837f <main+11>: mov %esp,%ebp
10924 0x8048381 <main+13>: push %ecx
10925 0x8048382 <main+14>: sub $0x4,%esp
10926=> 0x8048385 <main+17>: movl $0x8048460,(%esp)
10927 0x804838c <main+24>: call 0x80482d4 <puts@@plt>
10928@end smallexample
10929
a668276c
LM
10930If the architecture supports memory tagging, the tags can be displayed by
10931using @samp{m}. @xref{Memory Tagging}.
10932
10933The information will be displayed once per granule size
10934(the amount of bytes a particular memory tag covers). For example, AArch64
10935has a granule size of 16 bytes, so it will display a tag every 16 bytes.
10936
10937Due to the way @value{GDBN} prints information with the @code{x} command (not
10938aligned to a particular boundary), the tag information will refer to the
10939initial address displayed on a particular line. If a memory tag boundary
10940is crossed in the middle of a line displayed by the @code{x} command, it
10941will be displayed on the next line.
10942
10943The @samp{m} format doesn't affect any other specified formats that were
10944passed to the @code{x} command.
10945
c906108c
SS
10946@cindex @code{$_}, @code{$__}, and value history
10947The addresses and contents printed by the @code{x} command are not saved
10948in the value history because there is often too much of them and they
10949would get in the way. Instead, @value{GDBN} makes these values available for
10950subsequent use in expressions as values of the convenience variables
10951@code{$_} and @code{$__}. After an @code{x} command, the last address
10952examined is available for use in expressions in the convenience variable
10953@code{$_}. The contents of that address, as examined, are available in
10954the convenience variable @code{$__}.
10955
10956If the @code{x} command has a repeat count, the address and contents saved
10957are from the last memory unit printed; this is not the same as the last
10958address printed if several units were printed on the last line of output.
10959
a86c90e6
SM
10960@anchor{addressable memory unit}
10961@cindex addressable memory unit
10962Most targets have an addressable memory unit size of 8 bits. This means
10963that to each memory address are associated 8 bits of data. Some
10964targets, however, have other addressable memory unit sizes.
10965Within @value{GDBN} and this document, the term
10966@dfn{addressable memory unit} (or @dfn{memory unit} for short) is used
10967when explicitly referring to a chunk of data of that size. The word
10968@dfn{byte} is used to refer to a chunk of data of 8 bits, regardless of
10969the addressable memory unit size of the target. For most systems,
10970addressable memory unit is a synonym of byte.
10971
09d4efe1 10972@cindex remote memory comparison
936d2992 10973@cindex target memory comparison
09d4efe1 10974@cindex verify remote memory image
936d2992 10975@cindex verify target memory image
09d4efe1 10976When you are debugging a program running on a remote target machine
936d2992
PA
10977(@pxref{Remote Debugging}), you may wish to verify the program's image
10978in the remote machine's memory against the executable file you
10979downloaded to the target. Or, on any target, you may want to check
10980whether the program has corrupted its own read-only sections. The
10981@code{compare-sections} command is provided for such situations.
09d4efe1
EZ
10982
10983@table @code
10984@kindex compare-sections
95cf3b38 10985@item compare-sections @r{[}@var{section-name}@r{|}@code{-r}@r{]}
09d4efe1
EZ
10986Compare the data of a loadable section @var{section-name} in the
10987executable file of the program being debugged with the same section in
936d2992 10988the target machine's memory, and report any mismatches. With no
95cf3b38 10989arguments, compares all loadable sections. With an argument of
936d2992
PA
10990@code{-r}, compares all loadable read-only sections.
10991
10992Note: for remote targets, this command can be accelerated if the
10993target supports computing the CRC checksum of a block of memory
10994(@pxref{qCRC packet}).
09d4efe1
EZ
10995@end table
10996
362a0700 10997@node Memory Tagging
fa167b00 10998@section Memory Tagging
362a0700
LM
10999
11000Memory tagging is a memory protection technology that uses a pair of tags to
11001validate memory accesses through pointers. The tags are integer values
11002usually comprised of a few bits, depending on the architecture.
11003
11004There are two types of tags that are used in this setup: logical and
11005allocation. A logical tag is stored in the pointers themselves, usually at the
11006higher bits of the pointers. An allocation tag is the tag associated
11007with particular ranges of memory in the physical address space, against which
11008the logical tags from pointers are compared.
11009
11010The pointer tag (logical tag) must match the memory tag (allocation tag)
11011for the memory access to be valid. If the logical tag does not match the
11012allocation tag, that will raise a memory violation.
11013
11014Allocation tags cover multiple contiguous bytes of physical memory. This
11015range of bytes is called a memory tag granule and is architecture-specific.
11016For example, AArch64 has a tag granule of 16 bytes, meaning each allocation
11017tag spans 16 bytes of memory.
11018
11019If the underlying architecture supports memory tagging, like AArch64 MTE
11020or SPARC ADI do, @value{GDBN} can make use of it to validate pointers
11021against memory allocation tags.
11022
a668276c
LM
11023The @code{print} (@pxref{Data}) and @code{x} (@pxref{Memory}) commands will
11024display tag information when appropriate, and a command prefix of
11025@code{memory-tag} gives access to the various memory tagging commands.
362a0700
LM
11026
11027The @code{memory-tag} commands are the following:
11028
11029@table @code
11030@kindex memory-tag print-logical-tag
11031@item memory-tag print-logical-tag @var{pointer_expression}
11032Print the logical tag stored in @var{pointer_expression}.
11033@kindex memory-tag with-logical-tag
11034@item memory-tag with-logical-tag @var{pointer_expression} @var{tag_bytes}
11035Print the pointer given by @var{pointer_expression}, augmented with a logical
11036tag of @var{tag_bytes}.
11037@kindex memory-tag print-allocation-tag
11038@item memory-tag print-allocation-tag @var{address_expression}
11039Print the allocation tag associated with the memory address given by
11040@var{address_expression}.
11041@kindex memory-tag setatag
11042@item memory-tag setatag @var{starting_address} @var{length} @var{tag_bytes}
11043Set the allocation tag(s) for memory range @r{[}@var{starting_address},
11044@var{starting_address} + @var{length}@r{)} to @var{tag_bytes}.
11045@kindex memory-tag check
11046@item memory-tag check @var{pointer_expression}
11047Check if the logical tag in the pointer given by @var{pointer_expression}
11048matches the allocation tag for the memory referenced by the pointer.
11049
11050This essentially emulates the hardware validation that is done when tagged
11051memory is accessed through a pointer, but does not cause a memory fault as
11052it would during hardware validation.
11053
11054It can be used to inspect potential memory tagging violations in the running
11055process, before any faults get triggered.
11056@end table
11057
6d2ebf8b 11058@node Auto Display
79a6e687 11059@section Automatic Display
c906108c
SS
11060@cindex automatic display
11061@cindex display of expressions
11062
11063If you find that you want to print the value of an expression frequently
11064(to see how it changes), you might want to add it to the @dfn{automatic
11065display list} so that @value{GDBN} prints its value each time your program stops.
11066Each expression added to the list is given a number to identify it;
11067to remove an expression from the list, you specify that number.
11068The automatic display looks like this:
11069
474c8240 11070@smallexample
c906108c
SS
110712: foo = 38
110723: bar[5] = (struct hack *) 0x3804
474c8240 11073@end smallexample
c906108c
SS
11074
11075@noindent
11076This display shows item numbers, expressions and their current values. As with
11077displays you request manually using @code{x} or @code{print}, you can
11078specify the output format you prefer; in fact, @code{display} decides
ea37ba09
DJ
11079whether to use @code{print} or @code{x} depending your format
11080specification---it uses @code{x} if you specify either the @samp{i}
11081or @samp{s} format, or a unit size; otherwise it uses @code{print}.
c906108c
SS
11082
11083@table @code
11084@kindex display
d4f3574e
SS
11085@item display @var{expr}
11086Add the expression @var{expr} to the list of expressions to display
c906108c
SS
11087each time your program stops. @xref{Expressions, ,Expressions}.
11088
11089@code{display} does not repeat if you press @key{RET} again after using it.
11090
d4f3574e 11091@item display/@var{fmt} @var{expr}
c906108c 11092For @var{fmt} specifying only a display format and not a size or
d4f3574e 11093count, add the expression @var{expr} to the auto-display list but
c906108c 11094arrange to display it each time in the specified format @var{fmt}.
79a6e687 11095@xref{Output Formats,,Output Formats}.
c906108c
SS
11096
11097@item display/@var{fmt} @var{addr}
11098For @var{fmt} @samp{i} or @samp{s}, or including a unit-size or a
11099number of units, add the expression @var{addr} as a memory address to
11100be examined each time your program stops. Examining means in effect
79a6e687 11101doing @samp{x/@var{fmt} @var{addr}}. @xref{Memory, ,Examining Memory}.
c906108c
SS
11102@end table
11103
11104For example, @samp{display/i $pc} can be helpful, to see the machine
11105instruction about to be executed each time execution stops (@samp{$pc}
d4f3574e 11106is a common name for the program counter; @pxref{Registers, ,Registers}).
c906108c
SS
11107
11108@table @code
11109@kindex delete display
11110@kindex undisplay
11111@item undisplay @var{dnums}@dots{}
11112@itemx delete display @var{dnums}@dots{}
c9174737
PA
11113Remove items from the list of expressions to display. Specify the
11114numbers of the displays that you want affected with the command
11115argument @var{dnums}. It can be a single display number, one of the
11116numbers shown in the first field of the @samp{info display} display;
11117or it could be a range of display numbers, as in @code{2-4}.
c906108c
SS
11118
11119@code{undisplay} does not repeat if you press @key{RET} after using it.
11120(Otherwise you would just get the error @samp{No display number @dots{}}.)
11121
11122@kindex disable display
11123@item disable display @var{dnums}@dots{}
11124Disable the display of item numbers @var{dnums}. A disabled display
11125item is not printed automatically, but is not forgotten. It may be
c9174737
PA
11126enabled again later. Specify the numbers of the displays that you
11127want affected with the command argument @var{dnums}. It can be a
11128single display number, one of the numbers shown in the first field of
11129the @samp{info display} display; or it could be a range of display
11130numbers, as in @code{2-4}.
c906108c
SS
11131
11132@kindex enable display
11133@item enable display @var{dnums}@dots{}
11134Enable display of item numbers @var{dnums}. It becomes effective once
11135again in auto display of its expression, until you specify otherwise.
c9174737
PA
11136Specify the numbers of the displays that you want affected with the
11137command argument @var{dnums}. It can be a single display number, one
11138of the numbers shown in the first field of the @samp{info display}
11139display; or it could be a range of display numbers, as in @code{2-4}.
c906108c
SS
11140
11141@item display
11142Display the current values of the expressions on the list, just as is
11143done when your program stops.
11144
11145@kindex info display
11146@item info display
11147Print the list of expressions previously set up to display
11148automatically, each one with its item number, but without showing the
11149values. This includes disabled expressions, which are marked as such.
11150It also includes expressions which would not be displayed right now
11151because they refer to automatic variables not currently available.
11152@end table
11153
15387254 11154@cindex display disabled out of scope
c906108c
SS
11155If a display expression refers to local variables, then it does not make
11156sense outside the lexical context for which it was set up. Such an
11157expression is disabled when execution enters a context where one of its
11158variables is not defined. For example, if you give the command
11159@code{display last_char} while inside a function with an argument
11160@code{last_char}, @value{GDBN} displays this argument while your program
11161continues to stop inside that function. When it stops elsewhere---where
11162there is no variable @code{last_char}---the display is disabled
11163automatically. The next time your program stops where @code{last_char}
11164is meaningful, you can enable the display expression once again.
11165
6d2ebf8b 11166@node Print Settings
79a6e687 11167@section Print Settings
c906108c
SS
11168
11169@cindex format options
11170@cindex print settings
11171@value{GDBN} provides the following ways to control how arrays, structures,
11172and symbols are printed.
11173
11174@noindent
11175These settings are useful for debugging programs in any language:
11176
11177@table @code
4644b6e3 11178@kindex set print
3345721a 11179@anchor{set print address}
c906108c
SS
11180@item set print address
11181@itemx set print address on
4644b6e3 11182@cindex print/don't print memory addresses
c906108c
SS
11183@value{GDBN} prints memory addresses showing the location of stack
11184traces, structure values, pointer values, breakpoints, and so forth,
11185even when it also displays the contents of those addresses. The default
11186is @code{on}. For example, this is what a stack frame display looks like with
11187@code{set print address on}:
11188
11189@smallexample
11190@group
11191(@value{GDBP}) f
11192#0 set_quotes (lq=0x34c78 "<<", rq=0x34c88 ">>")
11193 at input.c:530
11194530 if (lquote != def_lquote)
11195@end group
11196@end smallexample
11197
11198@item set print address off
11199Do not print addresses when displaying their contents. For example,
11200this is the same stack frame displayed with @code{set print address off}:
11201
11202@smallexample
11203@group
11204(@value{GDBP}) set print addr off
11205(@value{GDBP}) f
11206#0 set_quotes (lq="<<", rq=">>") at input.c:530
11207530 if (lquote != def_lquote)
11208@end group
11209@end smallexample
11210
11211You can use @samp{set print address off} to eliminate all machine
11212dependent displays from the @value{GDBN} interface. For example, with
11213@code{print address off}, you should get the same text for backtraces on
11214all machines---whether or not they involve pointer arguments.
11215
4644b6e3 11216@kindex show print
c906108c
SS
11217@item show print address
11218Show whether or not addresses are to be printed.
11219@end table
11220
11221When @value{GDBN} prints a symbolic address, it normally prints the
11222closest earlier symbol plus an offset. If that symbol does not uniquely
11223identify the address (for example, it is a name whose scope is a single
11224source file), you may need to clarify. One way to do this is with
11225@code{info line}, for example @samp{info line *0x4537}. Alternately,
11226you can set @value{GDBN} to print the source file and line number when
11227it prints a symbolic address:
11228
11229@table @code
c906108c 11230@item set print symbol-filename on
9c16f35a
EZ
11231@cindex source file and line of a symbol
11232@cindex symbol, source file and line
c906108c
SS
11233Tell @value{GDBN} to print the source file name and line number of a
11234symbol in the symbolic form of an address.
11235
11236@item set print symbol-filename off
11237Do not print source file name and line number of a symbol. This is the
11238default.
11239
c906108c
SS
11240@item show print symbol-filename
11241Show whether or not @value{GDBN} will print the source file name and
11242line number of a symbol in the symbolic form of an address.
11243@end table
11244
11245Another situation where it is helpful to show symbol filenames and line
11246numbers is when disassembling code; @value{GDBN} shows you the line
11247number and source file that corresponds to each instruction.
11248
11249Also, you may wish to see the symbolic form only if the address being
11250printed is reasonably close to the closest earlier symbol:
11251
11252@table @code
c906108c 11253@item set print max-symbolic-offset @var{max-offset}
f81d1120 11254@itemx set print max-symbolic-offset unlimited
4644b6e3 11255@cindex maximum value for offset of closest symbol
c906108c
SS
11256Tell @value{GDBN} to only display the symbolic form of an address if the
11257offset between the closest earlier symbol and the address is less than
f81d1120
PA
11258@var{max-offset}. The default is @code{unlimited}, which tells @value{GDBN}
11259to always print the symbolic form of an address if any symbol precedes
11260it. Zero is equivalent to @code{unlimited}.
c906108c 11261
c906108c
SS
11262@item show print max-symbolic-offset
11263Ask how large the maximum offset is that @value{GDBN} prints in a
11264symbolic address.
11265@end table
11266
11267@cindex wild pointer, interpreting
11268@cindex pointer, finding referent
11269If you have a pointer and you are not sure where it points, try
11270@samp{set print symbol-filename on}. Then you can determine the name
11271and source file location of the variable where it points, using
11272@samp{p/a @var{pointer}}. This interprets the address in symbolic form.
11273For example, here @value{GDBN} shows that a variable @code{ptt} points
11274at another variable @code{t}, defined in @file{hi2.c}:
11275
474c8240 11276@smallexample
c906108c
SS
11277(@value{GDBP}) set print symbol-filename on
11278(@value{GDBP}) p/a ptt
11279$4 = 0xe008 <t in hi2.c>
474c8240 11280@end smallexample
c906108c
SS
11281
11282@quotation
11283@emph{Warning:} For pointers that point to a local variable, @samp{p/a}
11284does not show the symbol name and filename of the referent, even with
11285the appropriate @code{set print} options turned on.
11286@end quotation
11287
9cb709b6
TT
11288You can also enable @samp{/a}-like formatting all the time using
11289@samp{set print symbol on}:
11290
3345721a 11291@anchor{set print symbol}
9cb709b6
TT
11292@table @code
11293@item set print symbol on
11294Tell @value{GDBN} to print the symbol corresponding to an address, if
11295one exists.
11296
11297@item set print symbol off
11298Tell @value{GDBN} not to print the symbol corresponding to an
11299address. In this mode, @value{GDBN} will still print the symbol
11300corresponding to pointers to functions. This is the default.
11301
11302@item show print symbol
11303Show whether @value{GDBN} will display the symbol corresponding to an
11304address.
11305@end table
11306
c906108c
SS
11307Other settings control how different kinds of objects are printed:
11308
11309@table @code
3345721a 11310@anchor{set print array}
c906108c
SS
11311@item set print array
11312@itemx set print array on
4644b6e3 11313@cindex pretty print arrays
c906108c
SS
11314Pretty print arrays. This format is more convenient to read,
11315but uses more space. The default is off.
11316
11317@item set print array off
11318Return to compressed format for arrays.
11319
c906108c
SS
11320@item show print array
11321Show whether compressed or pretty format is selected for displaying
11322arrays.
11323
3c9c013a 11324@cindex print array indexes
3345721a 11325@anchor{set print array-indexes}
3c9c013a
JB
11326@item set print array-indexes
11327@itemx set print array-indexes on
11328Print the index of each element when displaying arrays. May be more
11329convenient to locate a given element in the array or quickly find the
11330index of a given element in that printed array. The default is off.
11331
11332@item set print array-indexes off
11333Stop printing element indexes when displaying arrays.
11334
11335@item show print array-indexes
11336Show whether the index of each element is printed when displaying
11337arrays.
11338
3345721a 11339@anchor{set print elements}
c906108c 11340@item set print elements @var{number-of-elements}
f81d1120 11341@itemx set print elements unlimited
4644b6e3 11342@cindex number of array elements to print
9c16f35a 11343@cindex limit on number of printed array elements
c906108c
SS
11344Set a limit on how many elements of an array @value{GDBN} will print.
11345If @value{GDBN} is printing a large array, it stops printing after it has
11346printed the number of elements set by the @code{set print elements} command.
11347This limit also applies to the display of strings.
d4f3574e 11348When @value{GDBN} starts, this limit is set to 200.
f81d1120
PA
11349Setting @var{number-of-elements} to @code{unlimited} or zero means
11350that the number of elements to print is unlimited.
c906108c 11351
c906108c
SS
11352@item show print elements
11353Display the number of elements of a large array that @value{GDBN} will print.
11354If the number is 0, then the printing is unlimited.
11355
3345721a 11356@anchor{set print frame-arguments}
b4740add 11357@item set print frame-arguments @var{value}
a0381d3a 11358@kindex set print frame-arguments
b4740add
JB
11359@cindex printing frame argument values
11360@cindex print all frame argument values
11361@cindex print frame argument values for scalars only
bc4268a5 11362@cindex do not print frame arguments
b4740add
JB
11363This command allows to control how the values of arguments are printed
11364when the debugger prints a frame (@pxref{Frames}). The possible
11365values are:
11366
11367@table @code
11368@item all
4f5376b2 11369The values of all arguments are printed.
b4740add
JB
11370
11371@item scalars
11372Print the value of an argument only if it is a scalar. The value of more
11373complex arguments such as arrays, structures, unions, etc, is replaced
4f5376b2
JB
11374by @code{@dots{}}. This is the default. Here is an example where
11375only scalar arguments are shown:
b4740add
JB
11376
11377@smallexample
11378#1 0x08048361 in call_me (i=3, s=@dots{}, ss=0xbf8d508c, u=@dots{}, e=green)
11379 at frame-args.c:23
11380@end smallexample
11381
11382@item none
11383None of the argument values are printed. Instead, the value of each argument
11384is replaced by @code{@dots{}}. In this case, the example above now becomes:
11385
11386@smallexample
11387#1 0x08048361 in call_me (i=@dots{}, s=@dots{}, ss=@dots{}, u=@dots{}, e=@dots{})
11388 at frame-args.c:23
11389@end smallexample
bc4268a5
PW
11390
11391@item presence
11392Only the presence of arguments is indicated by @code{@dots{}}.
11393The @code{@dots{}} are not printed for function without any arguments.
11394None of the argument names and values are printed.
11395In this case, the example above now becomes:
11396
11397@smallexample
11398#1 0x08048361 in call_me (@dots{}) at frame-args.c:23
11399@end smallexample
11400
b4740add
JB
11401@end table
11402
4f5376b2
JB
11403By default, only scalar arguments are printed. This command can be used
11404to configure the debugger to print the value of all arguments, regardless
11405of their type. However, it is often advantageous to not print the value
11406of more complex parameters. For instance, it reduces the amount of
11407information printed in each frame, making the backtrace more readable.
11408Also, it improves performance when displaying Ada frames, because
11409the computation of large arguments can sometimes be CPU-intensive,
11410especially in large applications. Setting @code{print frame-arguments}
bc4268a5
PW
11411to @code{scalars} (the default), @code{none} or @code{presence} avoids
11412this computation, thus speeding up the display of each Ada frame.
b4740add
JB
11413
11414@item show print frame-arguments
11415Show how the value of arguments should be displayed when printing a frame.
11416
3345721a 11417@anchor{set print raw-frame-arguments}
2daf894e 11418@item set print raw-frame-arguments on
e7045703
DE
11419Print frame arguments in raw, non pretty-printed, form.
11420
2daf894e 11421@item set print raw-frame-arguments off
e7045703
DE
11422Print frame arguments in pretty-printed form, if there is a pretty-printer
11423for the value (@pxref{Pretty Printing}),
11424otherwise print the value in raw form.
11425This is the default.
11426
2daf894e 11427@item show print raw-frame-arguments
e7045703
DE
11428Show whether to print frame arguments in raw form.
11429
36b11add 11430@anchor{set print entry-values}
e18b2753
JK
11431@item set print entry-values @var{value}
11432@kindex set print entry-values
11433Set printing of frame argument values at function entry. In some cases
11434@value{GDBN} can determine the value of function argument which was passed by
11435the function caller, even if the value was modified inside the called function
11436and therefore is different. With optimized code, the current value could be
11437unavailable, but the entry value may still be known.
11438
11439The default value is @code{default} (see below for its description). Older
11440@value{GDBN} behaved as with the setting @code{no}. Compilers not supporting
11441this feature will behave in the @code{default} setting the same way as with the
11442@code{no} setting.
11443
11444This functionality is currently supported only by DWARF 2 debugging format and
216f72a1 11445the compiler has to produce @samp{DW_TAG_call_site} tags. With
e18b2753
JK
11446@value{NGCC}, you need to specify @option{-O -g} during compilation, to get
11447this information.
11448
11449The @var{value} parameter can be one of the following:
11450
11451@table @code
11452@item no
11453Print only actual parameter values, never print values from function entry
11454point.
11455@smallexample
11456#0 equal (val=5)
11457#0 different (val=6)
11458#0 lost (val=<optimized out>)
11459#0 born (val=10)
11460#0 invalid (val=<optimized out>)
11461@end smallexample
11462
11463@item only
11464Print only parameter values from function entry point. The actual parameter
11465values are never printed.
11466@smallexample
11467#0 equal (val@@entry=5)
11468#0 different (val@@entry=5)
11469#0 lost (val@@entry=5)
11470#0 born (val@@entry=<optimized out>)
11471#0 invalid (val@@entry=<optimized out>)
11472@end smallexample
11473
11474@item preferred
11475Print only parameter values from function entry point. If value from function
11476entry point is not known while the actual value is known, print the actual
11477value for such parameter.
11478@smallexample
11479#0 equal (val@@entry=5)
11480#0 different (val@@entry=5)
11481#0 lost (val@@entry=5)
11482#0 born (val=10)
11483#0 invalid (val@@entry=<optimized out>)
11484@end smallexample
11485
11486@item if-needed
11487Print actual parameter values. If actual parameter value is not known while
11488value from function entry point is known, print the entry point value for such
11489parameter.
11490@smallexample
11491#0 equal (val=5)
11492#0 different (val=6)
11493#0 lost (val@@entry=5)
11494#0 born (val=10)
11495#0 invalid (val=<optimized out>)
11496@end smallexample
11497
11498@item both
11499Always print both the actual parameter value and its value from function entry
11500point, even if values of one or both are not available due to compiler
11501optimizations.
11502@smallexample
11503#0 equal (val=5, val@@entry=5)
11504#0 different (val=6, val@@entry=5)
11505#0 lost (val=<optimized out>, val@@entry=5)
11506#0 born (val=10, val@@entry=<optimized out>)
11507#0 invalid (val=<optimized out>, val@@entry=<optimized out>)
11508@end smallexample
11509
11510@item compact
11511Print the actual parameter value if it is known and also its value from
11512function entry point if it is known. If neither is known, print for the actual
11513value @code{<optimized out>}. If not in MI mode (@pxref{GDB/MI}) and if both
11514values are known and identical, print the shortened
11515@code{param=param@@entry=VALUE} notation.
11516@smallexample
11517#0 equal (val=val@@entry=5)
11518#0 different (val=6, val@@entry=5)
11519#0 lost (val@@entry=5)
11520#0 born (val=10)
11521#0 invalid (val=<optimized out>)
11522@end smallexample
11523
11524@item default
11525Always print the actual parameter value. Print also its value from function
11526entry point, but only if it is known. If not in MI mode (@pxref{GDB/MI}) and
11527if both values are known and identical, print the shortened
11528@code{param=param@@entry=VALUE} notation.
11529@smallexample
11530#0 equal (val=val@@entry=5)
11531#0 different (val=6, val@@entry=5)
11532#0 lost (val=<optimized out>, val@@entry=5)
11533#0 born (val=10)
11534#0 invalid (val=<optimized out>)
11535@end smallexample
11536@end table
11537
11538For analysis messages on possible failures of frame argument values at function
11539entry resolution see @ref{set debug entry-values}.
11540
11541@item show print entry-values
11542Show the method being used for printing of frame argument values at function
11543entry.
11544
bc4268a5
PW
11545@anchor{set print frame-info}
11546@item set print frame-info @var{value}
11547@kindex set print frame-info
11548@cindex printing frame information
11549@cindex frame information, printing
11550This command allows to control the information printed when
11551the debugger prints a frame. See @ref{Frames}, @ref{Backtrace},
11552for a general explanation about frames and frame information.
11553Note that some other settings (such as @code{set print frame-arguments}
11554and @code{set print address}) are also influencing if and how some frame
11555information is displayed. In particular, the frame program counter is never
11556printed if @code{set print address} is off.
11557
11558The possible values for @code{set print frame-info} are:
11559@table @code
11560@item short-location
11561Print the frame level, the program counter (if not at the
11562beginning of the location source line), the function, the function
11563arguments.
11564@item location
11565Same as @code{short-location} but also print the source file and source line
11566number.
11567@item location-and-address
11568Same as @code{location} but print the program counter even if located at the
11569beginning of the location source line.
11570@item source-line
11571Print the program counter (if not at the beginning of the location
11572source line), the line number and the source line.
11573@item source-and-location
11574Print what @code{location} and @code{source-line} are printing.
11575@item auto
11576The information printed for a frame is decided automatically
11577by the @value{GDBN} command that prints a frame.
11578For example, @code{frame} prints the information printed by
11579@code{source-and-location} while @code{stepi} will switch between
11580@code{source-line} and @code{source-and-location} depending on the program
11581counter.
11582The default value is @code{auto}.
11583@end table
11584
3345721a 11585@anchor{set print repeats}
f81d1120
PA
11586@item set print repeats @var{number-of-repeats}
11587@itemx set print repeats unlimited
9c16f35a
EZ
11588@cindex repeated array elements
11589Set the threshold for suppressing display of repeated array
d3e8051b 11590elements. When the number of consecutive identical elements of an
9c16f35a
EZ
11591array exceeds the threshold, @value{GDBN} prints the string
11592@code{"<repeats @var{n} times>"}, where @var{n} is the number of
11593identical repetitions, instead of displaying the identical elements
f81d1120
PA
11594themselves. Setting the threshold to @code{unlimited} or zero will
11595cause all elements to be individually printed. The default threshold
11596is 10.
9c16f35a
EZ
11597
11598@item show print repeats
11599Display the current threshold for printing repeated identical
11600elements.
11601
3345721a 11602@anchor{set print max-depth}
2e62ab40
AB
11603@item set print max-depth @var{depth}
11604@item set print max-depth unlimited
11605@cindex printing nested structures
11606Set the threshold after which nested structures are replaced with
11607ellipsis, this can make visualising deeply nested structures easier.
11608
11609For example, given this C code
11610
11611@smallexample
11612typedef struct s1 @{ int a; @} s1;
11613typedef struct s2 @{ s1 b; @} s2;
11614typedef struct s3 @{ s2 c; @} s3;
11615typedef struct s4 @{ s3 d; @} s4;
11616
11617s4 var = @{ @{ @{ @{ 3 @} @} @} @};
11618@end smallexample
11619
11620The following table shows how different values of @var{depth} will
11621effect how @code{var} is printed by @value{GDBN}:
11622
11623@multitable @columnfractions .3 .7
11624@headitem @var{depth} setting @tab Result of @samp{p var}
11625@item unlimited
11626@tab @code{$1 = @{d = @{c = @{b = @{a = 3@}@}@}@}}
11627@item @code{0}
11628@tab @code{$1 = @{...@}}
11629@item @code{1}
11630@tab @code{$1 = @{d = @{...@}@}}
11631@item @code{2}
11632@tab @code{$1 = @{d = @{c = @{...@}@}@}}
11633@item @code{3}
11634@tab @code{$1 = @{d = @{c = @{b = @{...@}@}@}@}}
11635@item @code{4}
11636@tab @code{$1 = @{d = @{c = @{b = @{a = 3@}@}@}@}}
11637@end multitable
11638
11639To see the contents of structures that have been hidden the user can
11640either increase the print max-depth, or they can print the elements of
11641the structure that are visible, for example
11642
11643@smallexample
11644(gdb) set print max-depth 2
11645(gdb) p var
11646$1 = @{d = @{c = @{...@}@}@}
11647(gdb) p var.d
11648$2 = @{c = @{b = @{...@}@}@}
11649(gdb) p var.d.c
11650$3 = @{b = @{a = 3@}@}
11651@end smallexample
11652
11653The pattern used to replace nested structures varies based on
11654language, for most languages @code{@{...@}} is used, but Fortran uses
11655@code{(...)}.
11656
11657@item show print max-depth
11658Display the current threshold after which nested structures are
11659replaces with ellipsis.
11660
a668276c
LM
11661@anchor{set print memory-tag-violations}
11662@cindex printing memory tag violation information
11663@item set print memory-tag-violations
11664@itemx set print memory-tag-violations on
11665Cause @value{GDBN} to display additional information about memory tag violations
11666when printing pointers and addresses.
11667
11668@item set print memory-tag-violations off
11669Stop printing memory tag violation information.
11670
11671@item show print memory-tag-violations
11672Show whether memory tag violation information is displayed when printing
11673pointers and addresses.
11674
3345721a 11675@anchor{set print null-stop}
c906108c 11676@item set print null-stop
4644b6e3 11677@cindex @sc{null} elements in arrays
c906108c 11678Cause @value{GDBN} to stop printing the characters of an array when the first
d4f3574e 11679@sc{null} is encountered. This is useful when large arrays actually
c906108c 11680contain only short strings.
d4f3574e 11681The default is off.
c906108c 11682
9c16f35a
EZ
11683@item show print null-stop
11684Show whether @value{GDBN} stops printing an array on the first
11685@sc{null} character.
11686
3345721a 11687@anchor{set print pretty}
c906108c 11688@item set print pretty on
9c16f35a
EZ
11689@cindex print structures in indented form
11690@cindex indentation in structure display
5d161b24 11691Cause @value{GDBN} to print structures in an indented format with one member
c906108c
SS
11692per line, like this:
11693
11694@smallexample
11695@group
11696$1 = @{
11697 next = 0x0,
11698 flags = @{
11699 sweet = 1,
11700 sour = 1
11701 @},
11702 meat = 0x54 "Pork"
11703@}
11704@end group
11705@end smallexample
11706
11707@item set print pretty off
11708Cause @value{GDBN} to print structures in a compact format, like this:
11709
11710@smallexample
11711@group
11712$1 = @{next = 0x0, flags = @{sweet = 1, sour = 1@}, \
11713meat = 0x54 "Pork"@}
11714@end group
11715@end smallexample
11716
11717@noindent
11718This is the default format.
11719
c906108c
SS
11720@item show print pretty
11721Show which format @value{GDBN} is using to print structures.
11722
d8edc8b7
PW
11723@anchor{set print raw-values}
11724@item set print raw-values on
11725Print values in raw form, without applying the pretty
11726printers for the value.
11727
11728@item set print raw-values off
11729Print values in pretty-printed form, if there is a pretty-printer
11730for the value (@pxref{Pretty Printing}),
11731otherwise print the value in raw form.
11732
11733The default setting is ``off''.
11734
11735@item show print raw-values
11736Show whether to print values in raw form.
11737
c906108c 11738@item set print sevenbit-strings on
4644b6e3
EZ
11739@cindex eight-bit characters in strings
11740@cindex octal escapes in strings
c906108c
SS
11741Print using only seven-bit characters; if this option is set,
11742@value{GDBN} displays any eight-bit characters (in strings or
11743character values) using the notation @code{\}@var{nnn}. This setting is
11744best if you are working in English (@sc{ascii}) and you use the
11745high-order bit of characters as a marker or ``meta'' bit.
11746
11747@item set print sevenbit-strings off
11748Print full eight-bit characters. This allows the use of more
11749international character sets, and is the default.
11750
c906108c
SS
11751@item show print sevenbit-strings
11752Show whether or not @value{GDBN} is printing only seven-bit characters.
11753
3345721a 11754@anchor{set print union}
c906108c 11755@item set print union on
4644b6e3 11756@cindex unions in structures, printing
9c16f35a
EZ
11757Tell @value{GDBN} to print unions which are contained in structures
11758and other unions. This is the default setting.
c906108c
SS
11759
11760@item set print union off
9c16f35a
EZ
11761Tell @value{GDBN} not to print unions which are contained in
11762structures and other unions. @value{GDBN} will print @code{"@{...@}"}
11763instead.
c906108c 11764
c906108c
SS
11765@item show print union
11766Ask @value{GDBN} whether or not it will print unions which are contained in
9c16f35a 11767structures and other unions.
c906108c
SS
11768
11769For example, given the declarations
11770
11771@smallexample
11772typedef enum @{Tree, Bug@} Species;
11773typedef enum @{Big_tree, Acorn, Seedling@} Tree_forms;
5d161b24 11774typedef enum @{Caterpillar, Cocoon, Butterfly@}
c906108c
SS
11775 Bug_forms;
11776
11777struct thing @{
11778 Species it;
11779 union @{
11780 Tree_forms tree;
11781 Bug_forms bug;
11782 @} form;
11783@};
11784
11785struct thing foo = @{Tree, @{Acorn@}@};
11786@end smallexample
11787
11788@noindent
11789with @code{set print union on} in effect @samp{p foo} would print
11790
11791@smallexample
11792$1 = @{it = Tree, form = @{tree = Acorn, bug = Cocoon@}@}
11793@end smallexample
11794
11795@noindent
11796and with @code{set print union off} in effect it would print
11797
11798@smallexample
11799$1 = @{it = Tree, form = @{...@}@}
11800@end smallexample
9c16f35a
EZ
11801
11802@noindent
11803@code{set print union} affects programs written in C-like languages
11804and in Pascal.
c906108c
SS
11805@end table
11806
c906108c
SS
11807@need 1000
11808@noindent
b37052ae 11809These settings are of interest when debugging C@t{++} programs:
c906108c
SS
11810
11811@table @code
4644b6e3 11812@cindex demangling C@t{++} names
c906108c
SS
11813@item set print demangle
11814@itemx set print demangle on
b37052ae 11815Print C@t{++} names in their source form rather than in the encoded
c906108c 11816(``mangled'') form passed to the assembler and linker for type-safe
d4f3574e 11817linkage. The default is on.
c906108c 11818
c906108c 11819@item show print demangle
b37052ae 11820Show whether C@t{++} names are printed in mangled or demangled form.
c906108c 11821
c906108c
SS
11822@item set print asm-demangle
11823@itemx set print asm-demangle on
b37052ae 11824Print C@t{++} names in their source form rather than their mangled form, even
c906108c
SS
11825in assembler code printouts such as instruction disassemblies.
11826The default is off.
11827
c906108c 11828@item show print asm-demangle
b37052ae 11829Show whether C@t{++} names in assembly listings are printed in mangled
c906108c
SS
11830or demangled form.
11831
b37052ae
EZ
11832@cindex C@t{++} symbol decoding style
11833@cindex symbol decoding style, C@t{++}
a8f24a35 11834@kindex set demangle-style
c906108c 11835@item set demangle-style @var{style}
041be526
SM
11836Choose among several encoding schemes used by different compilers to represent
11837C@t{++} names. If you omit @var{style}, you will see a list of possible
11838formats. The default value is @var{auto}, which lets @value{GDBN} choose a
11839decoding style by inspecting your program.
c906108c 11840
c906108c 11841@item show demangle-style
b37052ae 11842Display the encoding style currently in use for decoding C@t{++} symbols.
c906108c 11843
3345721a 11844@anchor{set print object}
c906108c
SS
11845@item set print object
11846@itemx set print object on
4644b6e3 11847@cindex derived type of an object, printing
9c16f35a 11848@cindex display derived types
c906108c
SS
11849When displaying a pointer to an object, identify the @emph{actual}
11850(derived) type of the object rather than the @emph{declared} type, using
625c0d47
TT
11851the virtual function table. Note that the virtual function table is
11852required---this feature can only work for objects that have run-time
11853type identification; a single virtual method in the object's declared
8264ba82
AG
11854type is sufficient. Note that this setting is also taken into account when
11855working with variable objects via MI (@pxref{GDB/MI}).
c906108c
SS
11856
11857@item set print object off
11858Display only the declared type of objects, without reference to the
11859virtual function table. This is the default setting.
11860
c906108c
SS
11861@item show print object
11862Show whether actual, or declared, object types are displayed.
11863
3345721a 11864@anchor{set print static-members}
c906108c
SS
11865@item set print static-members
11866@itemx set print static-members on
4644b6e3 11867@cindex static members of C@t{++} objects
b37052ae 11868Print static members when displaying a C@t{++} object. The default is on.
c906108c
SS
11869
11870@item set print static-members off
b37052ae 11871Do not print static members when displaying a C@t{++} object.
c906108c 11872
c906108c 11873@item show print static-members
9c16f35a
EZ
11874Show whether C@t{++} static members are printed or not.
11875
11876@item set print pascal_static-members
11877@itemx set print pascal_static-members on
d3e8051b
EZ
11878@cindex static members of Pascal objects
11879@cindex Pascal objects, static members display
9c16f35a
EZ
11880Print static members when displaying a Pascal object. The default is on.
11881
11882@item set print pascal_static-members off
11883Do not print static members when displaying a Pascal object.
11884
11885@item show print pascal_static-members
11886Show whether Pascal static members are printed or not.
c906108c
SS
11887
11888@c These don't work with HP ANSI C++ yet.
3345721a 11889@anchor{set print vtbl}
c906108c
SS
11890@item set print vtbl
11891@itemx set print vtbl on
4644b6e3 11892@cindex pretty print C@t{++} virtual function tables
9c16f35a
EZ
11893@cindex virtual functions (C@t{++}) display
11894@cindex VTBL display
b37052ae 11895Pretty print C@t{++} virtual function tables. The default is off.
c906108c 11896(The @code{vtbl} commands do not work on programs compiled with the HP
b37052ae 11897ANSI C@t{++} compiler (@code{aCC}).)
c906108c
SS
11898
11899@item set print vtbl off
b37052ae 11900Do not pretty print C@t{++} virtual function tables.
c906108c 11901
c906108c 11902@item show print vtbl
b37052ae 11903Show whether C@t{++} virtual function tables are pretty printed, or not.
c906108c 11904@end table
c906108c 11905
4c374409
JK
11906@node Pretty Printing
11907@section Pretty Printing
11908
11909@value{GDBN} provides a mechanism to allow pretty-printing of values using
11910Python code. It greatly simplifies the display of complex objects. This
11911mechanism works for both MI and the CLI.
11912
7b51bc51
DE
11913@menu
11914* Pretty-Printer Introduction:: Introduction to pretty-printers
11915* Pretty-Printer Example:: An example pretty-printer
11916* Pretty-Printer Commands:: Pretty-printer commands
11917@end menu
11918
11919@node Pretty-Printer Introduction
11920@subsection Pretty-Printer Introduction
11921
11922When @value{GDBN} prints a value, it first sees if there is a pretty-printer
11923registered for the value. If there is then @value{GDBN} invokes the
11924pretty-printer to print the value. Otherwise the value is printed normally.
11925
11926Pretty-printers are normally named. This makes them easy to manage.
11927The @samp{info pretty-printer} command will list all the installed
11928pretty-printers with their names.
11929If a pretty-printer can handle multiple data types, then its
11930@dfn{subprinters} are the printers for the individual data types.
11931Each such subprinter has its own name.
4e04c971 11932The format of the name is @var{printer-name};@var{subprinter-name}.
7b51bc51
DE
11933
11934Pretty-printers are installed by @dfn{registering} them with @value{GDBN}.
11935Typically they are automatically loaded and registered when the corresponding
11936debug information is loaded, thus making them available without having to
11937do anything special.
11938
11939There are three places where a pretty-printer can be registered.
11940
11941@itemize @bullet
11942@item
11943Pretty-printers registered globally are available when debugging
11944all inferiors.
11945
11946@item
11947Pretty-printers registered with a program space are available only
11948when debugging that program.
11949@xref{Progspaces In Python}, for more details on program spaces in Python.
11950
11951@item
11952Pretty-printers registered with an objfile are loaded and unloaded
11953with the corresponding objfile (e.g., shared library).
11954@xref{Objfiles In Python}, for more details on objfiles in Python.
11955@end itemize
11956
11957@xref{Selecting Pretty-Printers}, for further information on how
11958pretty-printers are selected,
11959
11960@xref{Writing a Pretty-Printer}, for implementing pretty printers
11961for new types.
11962
11963@node Pretty-Printer Example
11964@subsection Pretty-Printer Example
11965
11966Here is how a C@t{++} @code{std::string} looks without a pretty-printer:
4c374409
JK
11967
11968@smallexample
11969(@value{GDBP}) print s
11970$1 = @{
11971 static npos = 4294967295,
11972 _M_dataplus = @{
11973 <std::allocator<char>> = @{
11974 <__gnu_cxx::new_allocator<char>> = @{
11975 <No data fields>@}, <No data fields>
11976 @},
11977 members of std::basic_string<char, std::char_traits<char>,
11978 std::allocator<char> >::_Alloc_hider:
11979 _M_p = 0x804a014 "abcd"
11980 @}
11981@}
11982@end smallexample
11983
11984With a pretty-printer for @code{std::string} only the contents are printed:
11985
11986@smallexample
11987(@value{GDBP}) print s
11988$2 = "abcd"
11989@end smallexample
11990
7b51bc51
DE
11991@node Pretty-Printer Commands
11992@subsection Pretty-Printer Commands
11993@cindex pretty-printer commands
11994
11995@table @code
11996@kindex info pretty-printer
11997@item info pretty-printer [@var{object-regexp} [@var{name-regexp}]]
11998Print the list of installed pretty-printers.
11999This includes disabled pretty-printers, which are marked as such.
12000
12001@var{object-regexp} is a regular expression matching the objects
12002whose pretty-printers to list.
12003Objects can be @code{global}, the program space's file
12004(@pxref{Progspaces In Python}),
12005and the object files within that program space (@pxref{Objfiles In Python}).
12006@xref{Selecting Pretty-Printers}, for details on how @value{GDBN}
12007looks up a printer from these three objects.
12008
12009@var{name-regexp} is a regular expression matching the name of the printers
12010to list.
12011
12012@kindex disable pretty-printer
12013@item disable pretty-printer [@var{object-regexp} [@var{name-regexp}]]
12014Disable pretty-printers matching @var{object-regexp} and @var{name-regexp}.
12015A disabled pretty-printer is not forgotten, it may be enabled again later.
12016
12017@kindex enable pretty-printer
12018@item enable pretty-printer [@var{object-regexp} [@var{name-regexp}]]
12019Enable pretty-printers matching @var{object-regexp} and @var{name-regexp}.
12020@end table
12021
12022Example:
12023
12024Suppose we have three pretty-printers installed: one from library1.so
12025named @code{foo} that prints objects of type @code{foo}, and
12026another from library2.so named @code{bar} that prints two types of objects,
12027@code{bar1} and @code{bar2}.
12028
12029@smallexample
12030(gdb) info pretty-printer
12031library1.so:
12032 foo
12033library2.so:
12034 bar
12035 bar1
12036 bar2
12037(gdb) info pretty-printer library2
12038library2.so:
12039 bar
12040 bar1
12041 bar2
12042(gdb) disable pretty-printer library1
120431 printer disabled
120442 of 3 printers enabled
12045(gdb) info pretty-printer
12046library1.so:
12047 foo [disabled]
12048library2.so:
12049 bar
12050 bar1
12051 bar2
088a96da 12052(gdb) disable pretty-printer library2 bar;bar1
7b51bc51
DE
120531 printer disabled
120541 of 3 printers enabled
12055(gdb) info pretty-printer library2
12056library1.so:
12057 foo [disabled]
12058library2.so:
12059 bar
12060 bar1 [disabled]
12061 bar2
12062(gdb) disable pretty-printer library2 bar
120631 printer disabled
120640 of 3 printers enabled
12065(gdb) info pretty-printer library2
12066library1.so:
12067 foo [disabled]
12068library2.so:
12069 bar [disabled]
12070 bar1 [disabled]
12071 bar2
12072@end smallexample
12073
12074Note that for @code{bar} the entire printer can be disabled,
12075as can each individual subprinter.
4c374409 12076
d8edc8b7
PW
12077Printing values and frame arguments is done by default using
12078the enabled pretty printers.
12079
12080The print option @code{-raw-values} and @value{GDBN} setting
12081@code{set print raw-values} (@pxref{set print raw-values}) can be
12082used to print values without applying the enabled pretty printers.
12083
12084Similarly, the backtrace option @code{-raw-frame-arguments} and
12085@value{GDBN} setting @code{set print raw-frame-arguments}
12086(@pxref{set print raw-frame-arguments}) can be used to ignore the
12087enabled pretty printers when printing frame argument values.
12088
6d2ebf8b 12089@node Value History
79a6e687 12090@section Value History
c906108c
SS
12091
12092@cindex value history
9c16f35a 12093@cindex history of values printed by @value{GDBN}
5d161b24
DB
12094Values printed by the @code{print} command are saved in the @value{GDBN}
12095@dfn{value history}. This allows you to refer to them in other expressions.
12096Values are kept until the symbol table is re-read or discarded
12097(for example with the @code{file} or @code{symbol-file} commands).
12098When the symbol table changes, the value history is discarded,
12099since the values may contain pointers back to the types defined in the
c906108c
SS
12100symbol table.
12101
12102@cindex @code{$}
12103@cindex @code{$$}
12104@cindex history number
12105The values printed are given @dfn{history numbers} by which you can
12106refer to them. These are successive integers starting with one.
12107@code{print} shows you the history number assigned to a value by
12108printing @samp{$@var{num} = } before the value; here @var{num} is the
12109history number.
12110
12111To refer to any previous value, use @samp{$} followed by the value's
12112history number. The way @code{print} labels its output is designed to
12113remind you of this. Just @code{$} refers to the most recent value in
12114the history, and @code{$$} refers to the value before that.
12115@code{$$@var{n}} refers to the @var{n}th value from the end; @code{$$2}
12116is the value just prior to @code{$$}, @code{$$1} is equivalent to
12117@code{$$}, and @code{$$0} is equivalent to @code{$}.
12118
12119For example, suppose you have just printed a pointer to a structure and
12120want to see the contents of the structure. It suffices to type
12121
474c8240 12122@smallexample
c906108c 12123p *$
474c8240 12124@end smallexample
c906108c
SS
12125
12126If you have a chain of structures where the component @code{next} points
12127to the next one, you can print the contents of the next one with this:
12128
474c8240 12129@smallexample
c906108c 12130p *$.next
474c8240 12131@end smallexample
c906108c
SS
12132
12133@noindent
12134You can print successive links in the chain by repeating this
12135command---which you can do by just typing @key{RET}.
12136
12137Note that the history records values, not expressions. If the value of
12138@code{x} is 4 and you type these commands:
12139
474c8240 12140@smallexample
c906108c
SS
12141print x
12142set x=5
474c8240 12143@end smallexample
c906108c
SS
12144
12145@noindent
12146then the value recorded in the value history by the @code{print} command
12147remains 4 even though the value of @code{x} has changed.
12148
12149@table @code
12150@kindex show values
12151@item show values
12152Print the last ten values in the value history, with their item numbers.
12153This is like @samp{p@ $$9} repeated ten times, except that @code{show
12154values} does not change the history.
12155
12156@item show values @var{n}
12157Print ten history values centered on history item number @var{n}.
12158
12159@item show values +
12160Print ten history values just after the values last printed. If no more
12161values are available, @code{show values +} produces no display.
12162@end table
12163
12164Pressing @key{RET} to repeat @code{show values @var{n}} has exactly the
12165same effect as @samp{show values +}.
12166
6d2ebf8b 12167@node Convenience Vars
79a6e687 12168@section Convenience Variables
c906108c
SS
12169
12170@cindex convenience variables
9c16f35a 12171@cindex user-defined variables
c906108c
SS
12172@value{GDBN} provides @dfn{convenience variables} that you can use within
12173@value{GDBN} to hold on to a value and refer to it later. These variables
12174exist entirely within @value{GDBN}; they are not part of your program, and
12175setting a convenience variable has no direct effect on further execution
12176of your program. That is why you can use them freely.
12177
12178Convenience variables are prefixed with @samp{$}. Any name preceded by
12179@samp{$} can be used for a convenience variable, unless it is one of
d4f3574e 12180the predefined machine-specific register names (@pxref{Registers, ,Registers}).
c906108c 12181(Value history references, in contrast, are @emph{numbers} preceded
79a6e687 12182by @samp{$}. @xref{Value History, ,Value History}.)
c906108c
SS
12183
12184You can save a value in a convenience variable with an assignment
12185expression, just as you would set a variable in your program.
12186For example:
12187
474c8240 12188@smallexample
c906108c 12189set $foo = *object_ptr
474c8240 12190@end smallexample
c906108c
SS
12191
12192@noindent
12193would save in @code{$foo} the value contained in the object pointed to by
12194@code{object_ptr}.
12195
12196Using a convenience variable for the first time creates it, but its
12197value is @code{void} until you assign a new value. You can alter the
12198value with another assignment at any time.
12199
12200Convenience variables have no fixed types. You can assign a convenience
12201variable any type of value, including structures and arrays, even if
12202that variable already has a value of a different type. The convenience
12203variable, when used as an expression, has the type of its current value.
12204
12205@table @code
12206@kindex show convenience
f47f77df 12207@cindex show all user variables and functions
c906108c 12208@item show convenience
f47f77df
DE
12209Print a list of convenience variables used so far, and their values,
12210as well as a list of the convenience functions.
d4f3574e 12211Abbreviated @code{show conv}.
53e5f3cf
AS
12212
12213@kindex init-if-undefined
12214@cindex convenience variables, initializing
12215@item init-if-undefined $@var{variable} = @var{expression}
12216Set a convenience variable if it has not already been set. This is useful
12217for user-defined commands that keep some state. It is similar, in concept,
12218to using local static variables with initializers in C (except that
12219convenience variables are global). It can also be used to allow users to
12220override default values used in a command script.
12221
12222If the variable is already defined then the expression is not evaluated so
12223any side-effects do not occur.
c906108c
SS
12224@end table
12225
12226One of the ways to use a convenience variable is as a counter to be
12227incremented or a pointer to be advanced. For example, to print
12228a field from successive elements of an array of structures:
12229
474c8240 12230@smallexample
c906108c
SS
12231set $i = 0
12232print bar[$i++]->contents
474c8240 12233@end smallexample
c906108c 12234
d4f3574e
SS
12235@noindent
12236Repeat that command by typing @key{RET}.
c906108c
SS
12237
12238Some convenience variables are created automatically by @value{GDBN} and given
12239values likely to be useful.
12240
12241@table @code
41afff9a 12242@vindex $_@r{, convenience variable}
c906108c
SS
12243@item $_
12244The variable @code{$_} is automatically set by the @code{x} command to
79a6e687 12245the last address examined (@pxref{Memory, ,Examining Memory}). Other
c906108c
SS
12246commands which provide a default address for @code{x} to examine also
12247set @code{$_} to that address; these commands include @code{info line}
12248and @code{info breakpoint}. The type of @code{$_} is @code{void *}
12249except when set by the @code{x} command, in which case it is a pointer
12250to the type of @code{$__}.
12251
41afff9a 12252@vindex $__@r{, convenience variable}
c906108c
SS
12253@item $__
12254The variable @code{$__} is automatically set by the @code{x} command
12255to the value found in the last address examined. Its type is chosen
12256to match the format in which the data was printed.
12257
12258@item $_exitcode
41afff9a 12259@vindex $_exitcode@r{, convenience variable}
0c557179
SDJ
12260When the program being debugged terminates normally, @value{GDBN}
12261automatically sets this variable to the exit code of the program, and
12262resets @code{$_exitsignal} to @code{void}.
12263
12264@item $_exitsignal
12265@vindex $_exitsignal@r{, convenience variable}
12266When the program being debugged dies due to an uncaught signal,
12267@value{GDBN} automatically sets this variable to that signal's number,
12268and resets @code{$_exitcode} to @code{void}.
12269
12270To distinguish between whether the program being debugged has exited
12271(i.e., @code{$_exitcode} is not @code{void}) or signalled (i.e.,
12272@code{$_exitsignal} is not @code{void}), the convenience function
12273@code{$_isvoid} can be used (@pxref{Convenience Funs,, Convenience
12274Functions}). For example, considering the following source code:
12275
12276@smallexample
12277#include <signal.h>
12278
12279int
12280main (int argc, char *argv[])
12281@{
12282 raise (SIGALRM);
12283 return 0;
12284@}
12285@end smallexample
12286
12287A valid way of telling whether the program being debugged has exited
12288or signalled would be:
12289
12290@smallexample
12291(@value{GDBP}) define has_exited_or_signalled
12292Type commands for definition of ``has_exited_or_signalled''.
12293End with a line saying just ``end''.
12294>if $_isvoid ($_exitsignal)
12295 >echo The program has exited\n
12296 >else
12297 >echo The program has signalled\n
12298 >end
12299>end
12300(@value{GDBP}) run
12301Starting program:
12302
12303Program terminated with signal SIGALRM, Alarm clock.
12304The program no longer exists.
12305(@value{GDBP}) has_exited_or_signalled
12306The program has signalled
12307@end smallexample
12308
12309As can be seen, @value{GDBN} correctly informs that the program being
12310debugged has signalled, since it calls @code{raise} and raises a
12311@code{SIGALRM} signal. If the program being debugged had not called
12312@code{raise}, then @value{GDBN} would report a normal exit:
12313
12314@smallexample
12315(@value{GDBP}) has_exited_or_signalled
12316The program has exited
12317@end smallexample
4aa995e1 12318
72f1fe8a
TT
12319@item $_exception
12320The variable @code{$_exception} is set to the exception object being
12321thrown at an exception-related catchpoint. @xref{Set Catchpoints}.
12322
37f6a7f4
TT
12323@item $_ada_exception
12324The variable @code{$_ada_exception} is set to the address of the
12325exception being caught or thrown at an Ada exception-related
12326catchpoint. @xref{Set Catchpoints}.
12327
62e5f89c
SDJ
12328@item $_probe_argc
12329@itemx $_probe_arg0@dots{}$_probe_arg11
12330Arguments to a static probe. @xref{Static Probe Points}.
12331
0fb4aa4b
PA
12332@item $_sdata
12333@vindex $_sdata@r{, inspect, convenience variable}
12334The variable @code{$_sdata} contains extra collected static tracepoint
12335data. @xref{Tracepoint Actions,,Tracepoint Action Lists}. Note that
12336@code{$_sdata} could be empty, if not inspecting a trace buffer, or
12337if extra static tracepoint data has not been collected.
12338
4aa995e1
PA
12339@item $_siginfo
12340@vindex $_siginfo@r{, convenience variable}
ec7e75e7
PP
12341The variable @code{$_siginfo} contains extra signal information
12342(@pxref{extra signal information}). Note that @code{$_siginfo}
12343could be empty, if the application has not yet received any signals.
12344For example, it will be empty before you execute the @code{run} command.
711e434b
PM
12345
12346@item $_tlb
12347@vindex $_tlb@r{, convenience variable}
12348The variable @code{$_tlb} is automatically set when debugging
12349applications running on MS-Windows in native mode or connected to
7734102d 12350gdbserver that supports the @code{qGetTIBAddr} request.
711e434b
PM
12351@xref{General Query Packets}.
12352This variable contains the address of the thread information block.
12353
e3940304 12354@item $_inferior
65c574f6
PA
12355The number of the current inferior. @xref{Inferiors Connections and
12356Programs, ,Debugging Multiple Inferiors Connections and Programs}.
e3940304 12357
5d5658a1
PA
12358@item $_thread
12359The thread number of the current thread. @xref{thread numbers}.
12360
663f6d42
PA
12361@item $_gthread
12362The global number of the current thread. @xref{global thread numbers}.
12363
7734102d
EZ
12364@item $_gdb_major
12365@itemx $_gdb_minor
12366@vindex $_gdb_major@r{, convenience variable}
12367@vindex $_gdb_minor@r{, convenience variable}
12368The major and minor version numbers of the running @value{GDBN}.
12369Development snapshots and pretest versions have their minor version
12370incremented by one; thus, @value{GDBN} pretest 9.11.90 will produce
12371the value 12 for @code{$_gdb_minor}. These variables allow you to
12372write scripts that work with different versions of @value{GDBN}
12373without errors caused by features unavailable in some of those
12374versions.
e2c52041
PW
12375
12376@item $_shell_exitcode
12377@itemx $_shell_exitsignal
12378@vindex $_shell_exitcode@r{, convenience variable}
12379@vindex $_shell_exitsignal@r{, convenience variable}
12380@cindex shell command, exit code
12381@cindex shell command, exit signal
12382@cindex exit status of shell commands
12383@value{GDBN} commands such as @code{shell} and @code{|} are launching
12384shell commands. When a launched command terminates, @value{GDBN}
12385automatically maintains the variables @code{$_shell_exitcode}
12386and @code{$_shell_exitsignal} according to the exit status of the last
12387launched command. These variables are set and used similarly to
12388the variables @code{$_exitcode} and @code{$_exitsignal}.
12389
c906108c
SS
12390@end table
12391
a72c3253
DE
12392@node Convenience Funs
12393@section Convenience Functions
12394
bc3b79fd
TJB
12395@cindex convenience functions
12396@value{GDBN} also supplies some @dfn{convenience functions}. These
12397have a syntax similar to convenience variables. A convenience
12398function can be used in an expression just like an ordinary function;
12399however, a convenience function is implemented internally to
12400@value{GDBN}.
12401
a280dbd1
SDJ
12402These functions do not require @value{GDBN} to be configured with
12403@code{Python} support, which means that they are always available.
12404
12405@table @code
12406
12407@item $_isvoid (@var{expr})
12408@findex $_isvoid@r{, convenience function}
12409Return one if the expression @var{expr} is @code{void}. Otherwise it
12410returns zero.
12411
12412A @code{void} expression is an expression where the type of the result
12413is @code{void}. For example, you can examine a convenience variable
12414(see @ref{Convenience Vars,, Convenience Variables}) to check whether
12415it is @code{void}:
12416
12417@smallexample
12418(@value{GDBP}) print $_exitcode
12419$1 = void
12420(@value{GDBP}) print $_isvoid ($_exitcode)
12421$2 = 1
12422(@value{GDBP}) run
12423Starting program: ./a.out
12424[Inferior 1 (process 29572) exited normally]
12425(@value{GDBP}) print $_exitcode
12426$3 = 0
12427(@value{GDBP}) print $_isvoid ($_exitcode)
12428$4 = 0
12429@end smallexample
12430
12431In the example above, we used @code{$_isvoid} to check whether
12432@code{$_exitcode} is @code{void} before and after the execution of the
12433program being debugged. Before the execution there is no exit code to
12434be examined, therefore @code{$_exitcode} is @code{void}. After the
12435execution the program being debugged returned zero, therefore
12436@code{$_exitcode} is zero, which means that it is not @code{void}
12437anymore.
12438
12439The @code{void} expression can also be a call of a function from the
12440program being debugged. For example, given the following function:
12441
12442@smallexample
12443void
12444foo (void)
12445@{
12446@}
12447@end smallexample
12448
12449The result of calling it inside @value{GDBN} is @code{void}:
12450
12451@smallexample
12452(@value{GDBP}) print foo ()
12453$1 = void
12454(@value{GDBP}) print $_isvoid (foo ())
12455$2 = 1
12456(@value{GDBP}) set $v = foo ()
12457(@value{GDBP}) print $v
12458$3 = void
12459(@value{GDBP}) print $_isvoid ($v)
12460$4 = 1
12461@end smallexample
12462
aed61d02
PW
12463@item $_gdb_setting_str (@var{setting})
12464@findex $_gdb_setting_str@r{, convenience function}
12465Return the value of the @value{GDBN} @var{setting} as a string.
12466@var{setting} is any setting that can be used in a @code{set} or
12467@code{show} command (@pxref{Controlling GDB}).
12468
12469@smallexample
12470(@value{GDBP}) show print frame-arguments
12471Printing of non-scalar frame arguments is "scalars".
12472(@value{GDBP}) p $_gdb_setting_str("print frame-arguments")
12473$1 = "scalars"
12474(@value{GDBP}) p $_gdb_setting_str("height")
12475$2 = "30"
12476(@value{GDBP})
12477@end smallexample
12478
12479@item $_gdb_setting (@var{setting})
12480@findex $_gdb_setting@r{, convenience function}
12481Return the value of the @value{GDBN} @var{setting}.
12482The type of the returned value depends on the setting.
12483
12484The value type for boolean and auto boolean settings is @code{int}.
12485The boolean values @code{off} and @code{on} are converted to
12486the integer values @code{0} and @code{1}. The value @code{auto} is
12487converted to the value @code{-1}.
12488
12489The value type for integer settings is either @code{unsigned int}
12490or @code{int}, depending on the setting.
12491
12492Some integer settings accept an @code{unlimited} value.
12493Depending on the setting, the @code{set} command also accepts
12494the value @code{0} or the value @code{@minus{}1} as a synonym for
12495@code{unlimited}.
12496For example, @code{set height unlimited} is equivalent to
12497@code{set height 0}.
12498
12499Some other settings that accept the @code{unlimited} value
12500use the value @code{0} to literally mean zero.
12501For example, @code{set history size 0} indicates to not
12502record any @value{GDBN} commands in the command history.
12503For such settings, @code{@minus{}1} is the synonym
12504for @code{unlimited}.
12505
12506See the documentation of the corresponding @code{set} command for
12507the numerical value equivalent to @code{unlimited}.
12508
12509The @code{$_gdb_setting} function converts the unlimited value
12510to a @code{0} or a @code{@minus{}1} value according to what the
12511@code{set} command uses.
12512
12513@smallexample
12514@group
12515(@value{GDBP}) p $_gdb_setting_str("height")
12516$1 = "30"
12517(@value{GDBP}) p $_gdb_setting("height")
12518$2 = 30
12519(@value{GDBP}) set height unlimited
12520(@value{GDBP}) p $_gdb_setting_str("height")
12521$3 = "unlimited"
12522(@value{GDBP}) p $_gdb_setting("height")
12523$4 = 0
12524@end group
12525@group
12526(@value{GDBP}) p $_gdb_setting_str("history size")
12527$5 = "unlimited"
12528(@value{GDBP}) p $_gdb_setting("history size")
12529$6 = -1
12530(@value{GDBP}) p $_gdb_setting_str("disassemble-next-line")
12531$7 = "auto"
12532(@value{GDBP}) p $_gdb_setting("disassemble-next-line")
12533$8 = -1
12534(@value{GDBP})
12535@end group
12536@end smallexample
12537
12538Other setting types (enum, filename, optional filename, string, string noescape)
12539are returned as string values.
12540
12541
12542@item $_gdb_maint_setting_str (@var{setting})
12543@findex $_gdb_maint_setting_str@r{, convenience function}
12544Like the @code{$_gdb_setting_str} function, but works with
12545@code{maintenance set} variables.
12546
12547@item $_gdb_maint_setting (@var{setting})
12548@findex $_gdb_maint_setting@r{, convenience function}
12549Like the @code{$_gdb_setting} function, but works with
12550@code{maintenance set} variables.
12551
a280dbd1
SDJ
12552@end table
12553
aed61d02 12554The following functions require @value{GDBN} to be configured with
a72c3253
DE
12555@code{Python} support.
12556
12557@table @code
12558
12559@item $_memeq(@var{buf1}, @var{buf2}, @var{length})
12560@findex $_memeq@r{, convenience function}
12561Returns one if the @var{length} bytes at the addresses given by
12562@var{buf1} and @var{buf2} are equal.
12563Otherwise it returns zero.
12564
12565@item $_regex(@var{str}, @var{regex})
12566@findex $_regex@r{, convenience function}
12567Returns one if the string @var{str} matches the regular expression
12568@var{regex}. Otherwise it returns zero.
12569The syntax of the regular expression is that specified by @code{Python}'s
12570regular expression support.
12571
12572@item $_streq(@var{str1}, @var{str2})
12573@findex $_streq@r{, convenience function}
12574Returns one if the strings @var{str1} and @var{str2} are equal.
12575Otherwise it returns zero.
12576
12577@item $_strlen(@var{str})
12578@findex $_strlen@r{, convenience function}
12579Returns the length of string @var{str}.
12580
faa42425
DE
12581@item $_caller_is(@var{name}@r{[}, @var{number_of_frames}@r{]})
12582@findex $_caller_is@r{, convenience function}
12583Returns one if the calling function's name is equal to @var{name}.
12584Otherwise it returns zero.
12585
12586If the optional argument @var{number_of_frames} is provided,
12587it is the number of frames up in the stack to look.
12588The default is 1.
12589
12590Example:
12591
12592@smallexample
12593(gdb) backtrace
12594#0 bottom_func ()
12595 at testsuite/gdb.python/py-caller-is.c:21
12596#1 0x00000000004005a0 in middle_func ()
12597 at testsuite/gdb.python/py-caller-is.c:27
12598#2 0x00000000004005ab in top_func ()
12599 at testsuite/gdb.python/py-caller-is.c:33
12600#3 0x00000000004005b6 in main ()
12601 at testsuite/gdb.python/py-caller-is.c:39
12602(gdb) print $_caller_is ("middle_func")
12603$1 = 1
12604(gdb) print $_caller_is ("top_func", 2)
12605$1 = 1
12606@end smallexample
12607
12608@item $_caller_matches(@var{regexp}@r{[}, @var{number_of_frames}@r{]})
12609@findex $_caller_matches@r{, convenience function}
12610Returns one if the calling function's name matches the regular expression
12611@var{regexp}. Otherwise it returns zero.
12612
12613If the optional argument @var{number_of_frames} is provided,
12614it is the number of frames up in the stack to look.
12615The default is 1.
12616
12617@item $_any_caller_is(@var{name}@r{[}, @var{number_of_frames}@r{]})
12618@findex $_any_caller_is@r{, convenience function}
12619Returns one if any calling function's name is equal to @var{name}.
12620Otherwise it returns zero.
12621
12622If the optional argument @var{number_of_frames} is provided,
12623it is the number of frames up in the stack to look.
12624The default is 1.
12625
12626This function differs from @code{$_caller_is} in that this function
12627checks all stack frames from the immediate caller to the frame specified
12628by @var{number_of_frames}, whereas @code{$_caller_is} only checks the
12629frame specified by @var{number_of_frames}.
12630
12631@item $_any_caller_matches(@var{regexp}@r{[}, @var{number_of_frames}@r{]})
12632@findex $_any_caller_matches@r{, convenience function}
12633Returns one if any calling function's name matches the regular expression
12634@var{regexp}. Otherwise it returns zero.
12635
12636If the optional argument @var{number_of_frames} is provided,
12637it is the number of frames up in the stack to look.
12638The default is 1.
12639
12640This function differs from @code{$_caller_matches} in that this function
12641checks all stack frames from the immediate caller to the frame specified
12642by @var{number_of_frames}, whereas @code{$_caller_matches} only checks the
12643frame specified by @var{number_of_frames}.
12644
f2f3ccb9
SM
12645@item $_as_string(@var{value})
12646@findex $_as_string@r{, convenience function}
12647Return the string representation of @var{value}.
12648
12649This function is useful to obtain the textual label (enumerator) of an
12650enumeration value. For example, assuming the variable @var{node} is of
12651an enumerated type:
12652
12653@smallexample
12654(gdb) printf "Visiting node of type %s\n", $_as_string(node)
12655Visiting node of type NODE_INTEGER
12656@end smallexample
12657
8bdc1658
AB
12658@item $_cimag(@var{value})
12659@itemx $_creal(@var{value})
12660@findex $_cimag@r{, convenience function}
12661@findex $_creal@r{, convenience function}
12662Return the imaginary (@code{$_cimag}) or real (@code{$_creal}) part of
12663the complex number @var{value}.
12664
12665The type of the imaginary or real part depends on the type of the
12666complex number, e.g., using @code{$_cimag} on a @code{float complex}
12667will return an imaginary part of type @code{float}.
12668
a72c3253
DE
12669@end table
12670
12671@value{GDBN} provides the ability to list and get help on
12672convenience functions.
12673
bc3b79fd
TJB
12674@table @code
12675@item help function
12676@kindex help function
12677@cindex show all convenience functions
12678Print a list of all convenience functions.
12679@end table
12680
6d2ebf8b 12681@node Registers
c906108c
SS
12682@section Registers
12683
12684@cindex registers
12685You can refer to machine register contents, in expressions, as variables
12686with names starting with @samp{$}. The names of registers are different
12687for each machine; use @code{info registers} to see the names used on
12688your machine.
12689
12690@table @code
12691@kindex info registers
12692@item info registers
12693Print the names and values of all registers except floating-point
c85508ee 12694and vector registers (in the selected stack frame).
c906108c
SS
12695
12696@kindex info all-registers
12697@cindex floating point registers
12698@item info all-registers
12699Print the names and values of all registers, including floating-point
c85508ee 12700and vector registers (in the selected stack frame).
c906108c 12701
64cb3757 12702@anchor{info_registers_reggroup}
b67d92b0
SH
12703@item info registers @var{reggroup} @dots{}
12704Print the name and value of the registers in each of the specified
6b92c0d3 12705@var{reggroup}s. The @var{reggroup} can be any of those returned by
b67d92b0
SH
12706@code{maint print reggroups} (@pxref{Maintenance Commands}).
12707
c906108c
SS
12708@item info registers @var{regname} @dots{}
12709Print the @dfn{relativized} value of each specified register @var{regname}.
5d161b24 12710As discussed in detail below, register values are normally relative to
697aa1b7 12711the selected stack frame. The @var{regname} may be any register name valid on
c906108c
SS
12712the machine you are using, with or without the initial @samp{$}.
12713@end table
12714
f5b95c01 12715@anchor{standard registers}
e09f16f9
EZ
12716@cindex stack pointer register
12717@cindex program counter register
12718@cindex process status register
12719@cindex frame pointer register
12720@cindex standard registers
c906108c
SS
12721@value{GDBN} has four ``standard'' register names that are available (in
12722expressions) on most machines---whenever they do not conflict with an
12723architecture's canonical mnemonics for registers. The register names
12724@code{$pc} and @code{$sp} are used for the program counter register and
12725the stack pointer. @code{$fp} is used for a register that contains a
12726pointer to the current stack frame, and @code{$ps} is used for a
12727register that contains the processor status. For example,
12728you could print the program counter in hex with
12729
474c8240 12730@smallexample
c906108c 12731p/x $pc
474c8240 12732@end smallexample
c906108c
SS
12733
12734@noindent
12735or print the instruction to be executed next with
12736
474c8240 12737@smallexample
c906108c 12738x/i $pc
474c8240 12739@end smallexample
c906108c
SS
12740
12741@noindent
12742or add four to the stack pointer@footnote{This is a way of removing
12743one word from the stack, on machines where stacks grow downward in
12744memory (most machines, nowadays). This assumes that the innermost
12745stack frame is selected; setting @code{$sp} is not allowed when other
12746stack frames are selected. To pop entire frames off the stack,
12747regardless of machine architecture, use @code{return};
79a6e687 12748see @ref{Returning, ,Returning from a Function}.} with
c906108c 12749
474c8240 12750@smallexample
c906108c 12751set $sp += 4
474c8240 12752@end smallexample
c906108c
SS
12753
12754Whenever possible, these four standard register names are available on
12755your machine even though the machine has different canonical mnemonics,
12756so long as there is no conflict. The @code{info registers} command
12757shows the canonical names. For example, on the SPARC, @code{info
12758registers} displays the processor status register as @code{$psr} but you
d4f3574e
SS
12759can also refer to it as @code{$ps}; and on x86-based machines @code{$ps}
12760is an alias for the @sc{eflags} register.
c906108c
SS
12761
12762@value{GDBN} always considers the contents of an ordinary register as an
12763integer when the register is examined in this way. Some machines have
12764special registers which can hold nothing but floating point; these
12765registers are considered to have floating point values. There is no way
12766to refer to the contents of an ordinary register as floating point value
12767(although you can @emph{print} it as a floating point value with
12768@samp{print/f $@var{regname}}).
12769
12770Some registers have distinct ``raw'' and ``virtual'' data formats. This
12771means that the data format in which the register contents are saved by
12772the operating system is not the same one that your program normally
12773sees. For example, the registers of the 68881 floating point
12774coprocessor are always saved in ``extended'' (raw) format, but all C
12775programs expect to work with ``double'' (virtual) format. In such
5d161b24 12776cases, @value{GDBN} normally works with the virtual format only (the format
c906108c
SS
12777that makes sense for your program), but the @code{info registers} command
12778prints the data in both formats.
12779
36b80e65
EZ
12780@cindex SSE registers (x86)
12781@cindex MMX registers (x86)
12782Some machines have special registers whose contents can be interpreted
12783in several different ways. For example, modern x86-based machines
12784have SSE and MMX registers that can hold several values packed
12785together in several different formats. @value{GDBN} refers to such
12786registers in @code{struct} notation:
12787
12788@smallexample
12789(@value{GDBP}) print $xmm1
12790$1 = @{
12791 v4_float = @{0, 3.43859137e-038, 1.54142831e-044, 1.821688e-044@},
12792 v2_double = @{9.92129282474342e-303, 2.7585945287983262e-313@},
12793 v16_int8 = "\000\000\000\000\3706;\001\v\000\000\000\r\000\000",
12794 v8_int16 = @{0, 0, 14072, 315, 11, 0, 13, 0@},
12795 v4_int32 = @{0, 20657912, 11, 13@},
12796 v2_int64 = @{88725056443645952, 55834574859@},
12797 uint128 = 0x0000000d0000000b013b36f800000000
12798@}
12799@end smallexample
12800
12801@noindent
12802To set values of such registers, you need to tell @value{GDBN} which
12803view of the register you wish to change, as if you were assigning
12804value to a @code{struct} member:
12805
12806@smallexample
12807 (@value{GDBP}) set $xmm1.uint128 = 0x000000000000000000000000FFFFFFFF
12808@end smallexample
12809
c906108c 12810Normally, register values are relative to the selected stack frame
79a6e687 12811(@pxref{Selection, ,Selecting a Frame}). This means that you get the
c906108c
SS
12812value that the register would contain if all stack frames farther in
12813were exited and their saved registers restored. In order to see the
12814true contents of hardware registers, you must select the innermost
12815frame (with @samp{frame 0}).
12816
901461f8
PA
12817@cindex caller-saved registers
12818@cindex call-clobbered registers
12819@cindex volatile registers
12820@cindex <not saved> values
12821Usually ABIs reserve some registers as not needed to be saved by the
12822callee (a.k.a.: ``caller-saved'', ``call-clobbered'' or ``volatile''
12823registers). It may therefore not be possible for @value{GDBN} to know
12824the value a register had before the call (in other words, in the outer
12825frame), if the register value has since been changed by the callee.
12826@value{GDBN} tries to deduce where the inner frame saved
12827(``callee-saved'') registers, from the debug info, unwind info, or the
12828machine code generated by your compiler. If some register is not
12829saved, and @value{GDBN} knows the register is ``caller-saved'' (via
12830its own knowledge of the ABI, or because the debug/unwind info
12831explicitly says the register's value is undefined), @value{GDBN}
12832displays @w{@samp{<not saved>}} as the register's value. With targets
12833that @value{GDBN} has no knowledge of the register saving convention,
12834if a register was not saved by the callee, then its value and location
12835in the outer frame are assumed to be the same of the inner frame.
12836This is usually harmless, because if the register is call-clobbered,
12837the caller either does not care what is in the register after the
12838call, or has code to restore the value that it does care about. Note,
12839however, that if you change such a register in the outer frame, you
12840may also be affecting the inner frame. Also, the more ``outer'' the
12841frame is you're looking at, the more likely a call-clobbered
12842register's value is to be wrong, in the sense that it doesn't actually
12843represent the value the register had just before the call.
c906108c 12844
6d2ebf8b 12845@node Floating Point Hardware
79a6e687 12846@section Floating Point Hardware
c906108c
SS
12847@cindex floating point
12848
12849Depending on the configuration, @value{GDBN} may be able to give
12850you more information about the status of the floating point hardware.
12851
12852@table @code
12853@kindex info float
12854@item info float
12855Display hardware-dependent information about the floating
12856point unit. The exact contents and layout vary depending on the
12857floating point chip. Currently, @samp{info float} is supported on
12858the ARM and x86 machines.
12859@end table
c906108c 12860
e76f1f2e
AC
12861@node Vector Unit
12862@section Vector Unit
12863@cindex vector unit
12864
12865Depending on the configuration, @value{GDBN} may be able to give you
12866more information about the status of the vector unit.
12867
12868@table @code
12869@kindex info vector
12870@item info vector
12871Display information about the vector unit. The exact contents and
12872layout vary depending on the hardware.
12873@end table
12874
721c2651 12875@node OS Information
79a6e687 12876@section Operating System Auxiliary Information
721c2651
EZ
12877@cindex OS information
12878
12879@value{GDBN} provides interfaces to useful OS facilities that can help
12880you debug your program.
12881
b383017d
RM
12882@cindex auxiliary vector
12883@cindex vector, auxiliary
b383017d
RM
12884Some operating systems supply an @dfn{auxiliary vector} to programs at
12885startup. This is akin to the arguments and environment that you
12886specify for a program, but contains a system-dependent variety of
12887binary values that tell system libraries important details about the
12888hardware, operating system, and process. Each value's purpose is
12889identified by an integer tag; the meanings are well-known but system-specific.
12890Depending on the configuration and operating system facilities,
9c16f35a
EZ
12891@value{GDBN} may be able to show you this information. For remote
12892targets, this functionality may further depend on the remote stub's
427c3a89
DJ
12893support of the @samp{qXfer:auxv:read} packet, see
12894@ref{qXfer auxiliary vector read}.
b383017d
RM
12895
12896@table @code
12897@kindex info auxv
12898@item info auxv
12899Display the auxiliary vector of the inferior, which can be either a
e4937fc1 12900live process or a core dump file. @value{GDBN} prints each tag value
b383017d
RM
12901numerically, and also shows names and text descriptions for recognized
12902tags. Some values in the vector are numbers, some bit masks, and some
e4937fc1 12903pointers to strings or other data. @value{GDBN} displays each value in the
b383017d
RM
12904most appropriate form for a recognized tag, and in hexadecimal for
12905an unrecognized tag.
12906@end table
12907
85d4a676
SS
12908On some targets, @value{GDBN} can access operating system-specific
12909information and show it to you. The types of information available
12910will differ depending on the type of operating system running on the
12911target. The mechanism used to fetch the data is described in
12912@ref{Operating System Information}. For remote targets, this
12913functionality depends on the remote stub's support of the
07e059b5
VP
12914@samp{qXfer:osdata:read} packet, see @ref{qXfer osdata read}.
12915
12916@table @code
a61408f8 12917@kindex info os
85d4a676
SS
12918@item info os @var{infotype}
12919
12920Display OS information of the requested type.
a61408f8 12921
85d4a676
SS
12922On @sc{gnu}/Linux, the following values of @var{infotype} are valid:
12923
12924@anchor{linux info os infotypes}
12925@table @code
d33279b3
AT
12926@kindex info os cpus
12927@item cpus
12928Display the list of all CPUs/cores. For each CPU/core, @value{GDBN} prints
12929the available fields from /proc/cpuinfo. For each supported architecture
12930different fields are available. Two common entries are processor which gives
12931CPU number and bogomips; a system constant that is calculated during
12932kernel initialization.
12933
12934@kindex info os files
12935@item files
12936Display the list of open file descriptors on the target. For each
12937file descriptor, @value{GDBN} prints the identifier of the process
12938owning the descriptor, the command of the owning process, the value
12939of the descriptor, and the target of the descriptor.
12940
12941@kindex info os modules
12942@item modules
12943Display the list of all loaded kernel modules on the target. For each
12944module, @value{GDBN} prints the module name, the size of the module in
12945bytes, the number of times the module is used, the dependencies of the
12946module, the status of the module, and the address of the loaded module
12947in memory.
12948
12949@kindex info os msg
12950@item msg
12951Display the list of all System V message queues on the target. For each
12952message queue, @value{GDBN} prints the message queue key, the message
12953queue identifier, the access permissions, the current number of bytes
12954on the queue, the current number of messages on the queue, the processes
12955that last sent and received a message on the queue, the user and group
12956of the owner and creator of the message queue, the times at which a
12957message was last sent and received on the queue, and the time at which
12958the message queue was last changed.
12959
07e059b5 12960@kindex info os processes
85d4a676 12961@item processes
07e059b5 12962Display the list of processes on the target. For each process,
85d4a676
SS
12963@value{GDBN} prints the process identifier, the name of the user, the
12964command corresponding to the process, and the list of processor cores
12965that the process is currently running on. (To understand what these
12966properties mean, for this and the following info types, please consult
12967the general @sc{gnu}/Linux documentation.)
12968
12969@kindex info os procgroups
12970@item procgroups
12971Display the list of process groups on the target. For each process,
12972@value{GDBN} prints the identifier of the process group that it belongs
12973to, the command corresponding to the process group leader, the process
12974identifier, and the command line of the process. The list is sorted
12975first by the process group identifier, then by the process identifier,
12976so that processes belonging to the same process group are grouped together
12977and the process group leader is listed first.
12978
d33279b3
AT
12979@kindex info os semaphores
12980@item semaphores
12981Display the list of all System V semaphore sets on the target. For each
12982semaphore set, @value{GDBN} prints the semaphore set key, the semaphore
12983set identifier, the access permissions, the number of semaphores in the
12984set, the user and group of the owner and creator of the semaphore set,
12985and the times at which the semaphore set was operated upon and changed.
85d4a676
SS
12986
12987@kindex info os shm
12988@item shm
12989Display the list of all System V shared-memory regions on the target.
12990For each shared-memory region, @value{GDBN} prints the region key,
12991the shared-memory identifier, the access permissions, the size of the
12992region, the process that created the region, the process that last
12993attached to or detached from the region, the current number of live
12994attaches to the region, and the times at which the region was last
12995attached to, detach from, and changed.
12996
d33279b3
AT
12997@kindex info os sockets
12998@item sockets
12999Display the list of Internet-domain sockets on the target. For each
13000socket, @value{GDBN} prints the address and port of the local and
13001remote endpoints, the current state of the connection, the creator of
13002the socket, the IP address family of the socket, and the type of the
13003connection.
85d4a676 13004
d33279b3
AT
13005@kindex info os threads
13006@item threads
13007Display the list of threads running on the target. For each thread,
13008@value{GDBN} prints the identifier of the process that the thread
13009belongs to, the command of the process, the thread identifier, and the
13010processor core that it is currently running on. The main thread of a
13011process is not listed.
85d4a676
SS
13012@end table
13013
13014@item info os
13015If @var{infotype} is omitted, then list the possible values for
13016@var{infotype} and the kind of OS information available for each
13017@var{infotype}. If the target does not return a list of possible
13018types, this command will report an error.
07e059b5 13019@end table
721c2651 13020
29e57380 13021@node Memory Region Attributes
79a6e687 13022@section Memory Region Attributes
29e57380
C
13023@cindex memory region attributes
13024
b383017d 13025@dfn{Memory region attributes} allow you to describe special handling
fd79ecee
DJ
13026required by regions of your target's memory. @value{GDBN} uses
13027attributes to determine whether to allow certain types of memory
13028accesses; whether to use specific width accesses; and whether to cache
13029target memory. By default the description of memory regions is
13030fetched from the target (if the current target supports this), but the
13031user can override the fetched regions.
29e57380
C
13032
13033Defined memory regions can be individually enabled and disabled. When a
13034memory region is disabled, @value{GDBN} uses the default attributes when
13035accessing memory in that region. Similarly, if no memory regions have
13036been defined, @value{GDBN} uses the default attributes when accessing
13037all memory.
13038
b383017d 13039When a memory region is defined, it is given a number to identify it;
29e57380
C
13040to enable, disable, or remove a memory region, you specify that number.
13041
13042@table @code
13043@kindex mem
bfac230e 13044@item mem @var{lower} @var{upper} @var{attributes}@dots{}
09d4efe1
EZ
13045Define a memory region bounded by @var{lower} and @var{upper} with
13046attributes @var{attributes}@dots{}, and add it to the list of regions
13047monitored by @value{GDBN}. Note that @var{upper} == 0 is a special
d3e8051b 13048case: it is treated as the target's maximum memory address.
bfac230e 13049(0xffff on 16 bit targets, 0xffffffff on 32 bit targets, etc.)
29e57380 13050
fd79ecee
DJ
13051@item mem auto
13052Discard any user changes to the memory regions and use target-supplied
13053regions, if available, or no regions if the target does not support.
13054
29e57380
C
13055@kindex delete mem
13056@item delete mem @var{nums}@dots{}
09d4efe1
EZ
13057Remove memory regions @var{nums}@dots{} from the list of regions
13058monitored by @value{GDBN}.
29e57380
C
13059
13060@kindex disable mem
13061@item disable mem @var{nums}@dots{}
09d4efe1 13062Disable monitoring of memory regions @var{nums}@dots{}.
b383017d 13063A disabled memory region is not forgotten.
29e57380
C
13064It may be enabled again later.
13065
13066@kindex enable mem
13067@item enable mem @var{nums}@dots{}
09d4efe1 13068Enable monitoring of memory regions @var{nums}@dots{}.
29e57380
C
13069
13070@kindex info mem
13071@item info mem
13072Print a table of all defined memory regions, with the following columns
09d4efe1 13073for each region:
29e57380
C
13074
13075@table @emph
13076@item Memory Region Number
13077@item Enabled or Disabled.
b383017d 13078Enabled memory regions are marked with @samp{y}.
29e57380
C
13079Disabled memory regions are marked with @samp{n}.
13080
13081@item Lo Address
13082The address defining the inclusive lower bound of the memory region.
13083
13084@item Hi Address
13085The address defining the exclusive upper bound of the memory region.
13086
13087@item Attributes
13088The list of attributes set for this memory region.
13089@end table
13090@end table
13091
13092
13093@subsection Attributes
13094
b383017d 13095@subsubsection Memory Access Mode
29e57380
C
13096The access mode attributes set whether @value{GDBN} may make read or
13097write accesses to a memory region.
13098
13099While these attributes prevent @value{GDBN} from performing invalid
13100memory accesses, they do nothing to prevent the target system, I/O DMA,
359df76b 13101etc.@: from accessing memory.
29e57380
C
13102
13103@table @code
13104@item ro
13105Memory is read only.
13106@item wo
13107Memory is write only.
13108@item rw
6ca652b0 13109Memory is read/write. This is the default.
29e57380
C
13110@end table
13111
13112@subsubsection Memory Access Size
d3e8051b 13113The access size attribute tells @value{GDBN} to use specific sized
29e57380
C
13114accesses in the memory region. Often memory mapped device registers
13115require specific sized accesses. If no access size attribute is
13116specified, @value{GDBN} may use accesses of any size.
13117
13118@table @code
13119@item 8
13120Use 8 bit memory accesses.
13121@item 16
13122Use 16 bit memory accesses.
13123@item 32
13124Use 32 bit memory accesses.
13125@item 64
13126Use 64 bit memory accesses.
13127@end table
13128
13129@c @subsubsection Hardware/Software Breakpoints
13130@c The hardware/software breakpoint attributes set whether @value{GDBN}
13131@c will use hardware or software breakpoints for the internal breakpoints
13132@c used by the step, next, finish, until, etc. commands.
13133@c
13134@c @table @code
13135@c @item hwbreak
b383017d 13136@c Always use hardware breakpoints
29e57380
C
13137@c @item swbreak (default)
13138@c @end table
13139
13140@subsubsection Data Cache
13141The data cache attributes set whether @value{GDBN} will cache target
13142memory. While this generally improves performance by reducing debug
13143protocol overhead, it can lead to incorrect results because @value{GDBN}
13144does not know about volatile variables or memory mapped device
13145registers.
13146
13147@table @code
13148@item cache
b383017d 13149Enable @value{GDBN} to cache target memory.
6ca652b0
EZ
13150@item nocache
13151Disable @value{GDBN} from caching target memory. This is the default.
29e57380
C
13152@end table
13153
4b5752d0
VP
13154@subsection Memory Access Checking
13155@value{GDBN} can be instructed to refuse accesses to memory that is
13156not explicitly described. This can be useful if accessing such
13157regions has undesired effects for a specific target, or to provide
13158better error checking. The following commands control this behaviour.
13159
13160@table @code
13161@kindex set mem inaccessible-by-default
13162@item set mem inaccessible-by-default [on|off]
13163If @code{on} is specified, make @value{GDBN} treat memory not
13164explicitly described by the memory ranges as non-existent and refuse accesses
13165to such memory. The checks are only performed if there's at least one
13166memory range defined. If @code{off} is specified, make @value{GDBN}
13167treat the memory not explicitly described by the memory ranges as RAM.
56cf5405 13168The default value is @code{on}.
4b5752d0
VP
13169@kindex show mem inaccessible-by-default
13170@item show mem inaccessible-by-default
13171Show the current handling of accesses to unknown memory.
13172@end table
13173
13174
29e57380 13175@c @subsubsection Memory Write Verification
b383017d 13176@c The memory write verification attributes set whether @value{GDBN}
29e57380
C
13177@c will re-reads data after each write to verify the write was successful.
13178@c
13179@c @table @code
13180@c @item verify
13181@c @item noverify (default)
13182@c @end table
13183
16d9dec6 13184@node Dump/Restore Files
79a6e687 13185@section Copy Between Memory and a File
16d9dec6
MS
13186@cindex dump/restore files
13187@cindex append data to a file
13188@cindex dump data to a file
13189@cindex restore data from a file
16d9dec6 13190
df5215a6
JB
13191You can use the commands @code{dump}, @code{append}, and
13192@code{restore} to copy data between target memory and a file. The
13193@code{dump} and @code{append} commands write data to a file, and the
13194@code{restore} command reads data from a file back into the inferior's
cf75d6c3
AB
13195memory. Files may be in binary, Motorola S-record, Intel hex,
13196Tektronix Hex, or Verilog Hex format; however, @value{GDBN} can only
13197append to binary files, and cannot read from Verilog Hex files.
df5215a6
JB
13198
13199@table @code
13200
13201@kindex dump
13202@item dump @r{[}@var{format}@r{]} memory @var{filename} @var{start_addr} @var{end_addr}
13203@itemx dump @r{[}@var{format}@r{]} value @var{filename} @var{expr}
13204Dump the contents of memory from @var{start_addr} to @var{end_addr},
13205or the value of @var{expr}, to @var{filename} in the given format.
16d9dec6 13206
df5215a6 13207The @var{format} parameter may be any one of:
16d9dec6 13208@table @code
df5215a6
JB
13209@item binary
13210Raw binary form.
13211@item ihex
13212Intel hex format.
13213@item srec
13214Motorola S-record format.
13215@item tekhex
13216Tektronix Hex format.
cf75d6c3
AB
13217@item verilog
13218Verilog Hex format.
df5215a6
JB
13219@end table
13220
13221@value{GDBN} uses the same definitions of these formats as the
13222@sc{gnu} binary utilities, like @samp{objdump} and @samp{objcopy}. If
13223@var{format} is omitted, @value{GDBN} dumps the data in raw binary
13224form.
13225
13226@kindex append
13227@item append @r{[}binary@r{]} memory @var{filename} @var{start_addr} @var{end_addr}
13228@itemx append @r{[}binary@r{]} value @var{filename} @var{expr}
13229Append the contents of memory from @var{start_addr} to @var{end_addr},
09d4efe1 13230or the value of @var{expr}, to the file @var{filename}, in raw binary form.
df5215a6
JB
13231(@value{GDBN} can only append data to files in raw binary form.)
13232
13233@kindex restore
13234@item restore @var{filename} @r{[}binary@r{]} @var{bias} @var{start} @var{end}
13235Restore the contents of file @var{filename} into memory. The
13236@code{restore} command can automatically recognize any known @sc{bfd}
13237file format, except for raw binary. To restore a raw binary file you
13238must specify the optional keyword @code{binary} after the filename.
16d9dec6 13239
b383017d 13240If @var{bias} is non-zero, its value will be added to the addresses
16d9dec6
MS
13241contained in the file. Binary files always start at address zero, so
13242they will be restored at address @var{bias}. Other bfd files have
13243a built-in location; they will be restored at offset @var{bias}
13244from that location.
13245
13246If @var{start} and/or @var{end} are non-zero, then only data between
13247file offset @var{start} and file offset @var{end} will be restored.
b383017d 13248These offsets are relative to the addresses in the file, before
16d9dec6
MS
13249the @var{bias} argument is applied.
13250
13251@end table
13252
384ee23f
EZ
13253@node Core File Generation
13254@section How to Produce a Core File from Your Program
13255@cindex dump core from inferior
13256
13257A @dfn{core file} or @dfn{core dump} is a file that records the memory
13258image of a running process and its process status (register values
13259etc.). Its primary use is post-mortem debugging of a program that
13260crashed while it ran outside a debugger. A program that crashes
13261automatically produces a core file, unless this feature is disabled by
13262the user. @xref{Files}, for information on invoking @value{GDBN} in
13263the post-mortem debugging mode.
13264
13265Occasionally, you may wish to produce a core file of the program you
13266are debugging in order to preserve a snapshot of its state.
13267@value{GDBN} has a special command for that.
13268
13269@table @code
13270@kindex gcore
13271@kindex generate-core-file
13272@item generate-core-file [@var{file}]
13273@itemx gcore [@var{file}]
13274Produce a core dump of the inferior process. The optional argument
13275@var{file} specifies the file name where to put the core dump. If not
13276specified, the file name defaults to @file{core.@var{pid}}, where
13277@var{pid} is the inferior process ID.
13278
13279Note that this command is implemented only for some systems (as of
05b4bd79 13280this writing, @sc{gnu}/Linux, FreeBSD, Solaris, and S390).
df8411da
SDJ
13281
13282On @sc{gnu}/Linux, this command can take into account the value of the
13283file @file{/proc/@var{pid}/coredump_filter} when generating the core
1e52e849
SL
13284dump (@pxref{set use-coredump-filter}), and by default honors the
13285@code{VM_DONTDUMP} flag for mappings where it is present in the file
13286@file{/proc/@var{pid}/smaps} (@pxref{set dump-excluded-mappings}).
df8411da
SDJ
13287
13288@kindex set use-coredump-filter
13289@anchor{set use-coredump-filter}
13290@item set use-coredump-filter on
13291@itemx set use-coredump-filter off
13292Enable or disable the use of the file
13293@file{/proc/@var{pid}/coredump_filter} when generating core dump
13294files. This file is used by the Linux kernel to decide what types of
13295memory mappings will be dumped or ignored when generating a core dump
13296file. @var{pid} is the process ID of a currently running process.
13297
13298To make use of this feature, you have to write in the
13299@file{/proc/@var{pid}/coredump_filter} file a value, in hexadecimal,
13300which is a bit mask representing the memory mapping types. If a bit
13301is set in the bit mask, then the memory mappings of the corresponding
13302types will be dumped; otherwise, they will be ignored. This
13303configuration is inherited by child processes. For more information
13304about the bits that can be set in the
13305@file{/proc/@var{pid}/coredump_filter} file, please refer to the
13306manpage of @code{core(5)}.
13307
13308By default, this option is @code{on}. If this option is turned
13309@code{off}, @value{GDBN} does not read the @file{coredump_filter} file
13310and instead uses the same default value as the Linux kernel in order
13311to decide which pages will be dumped in the core dump file. This
13312value is currently @code{0x33}, which means that bits @code{0}
13313(anonymous private mappings), @code{1} (anonymous shared mappings),
13314@code{4} (ELF headers) and @code{5} (private huge pages) are active.
13315This will cause these memory mappings to be dumped automatically.
1e52e849
SL
13316
13317@kindex set dump-excluded-mappings
13318@anchor{set dump-excluded-mappings}
13319@item set dump-excluded-mappings on
13320@itemx set dump-excluded-mappings off
13321If @code{on} is specified, @value{GDBN} will dump memory mappings
13322marked with the @code{VM_DONTDUMP} flag. This flag is represented in
13323the file @file{/proc/@var{pid}/smaps} with the acronym @code{dd}.
13324
13325The default value is @code{off}.
384ee23f
EZ
13326@end table
13327
a0eb71c5
KB
13328@node Character Sets
13329@section Character Sets
13330@cindex character sets
13331@cindex charset
13332@cindex translating between character sets
13333@cindex host character set
13334@cindex target character set
13335
13336If the program you are debugging uses a different character set to
13337represent characters and strings than the one @value{GDBN} uses itself,
13338@value{GDBN} can automatically translate between the character sets for
13339you. The character set @value{GDBN} uses we call the @dfn{host
13340character set}; the one the inferior program uses we call the
13341@dfn{target character set}.
13342
13343For example, if you are running @value{GDBN} on a @sc{gnu}/Linux system, which
13344uses the ISO Latin 1 character set, but you are using @value{GDBN}'s
ea35711c 13345remote protocol (@pxref{Remote Debugging}) to debug a program
a0eb71c5
KB
13346running on an IBM mainframe, which uses the @sc{ebcdic} character set,
13347then the host character set is Latin-1, and the target character set is
13348@sc{ebcdic}. If you give @value{GDBN} the command @code{set
e33d66ec 13349target-charset EBCDIC-US}, then @value{GDBN} translates between
a0eb71c5
KB
13350@sc{ebcdic} and Latin 1 as you print character or string values, or use
13351character and string literals in expressions.
13352
13353@value{GDBN} has no way to automatically recognize which character set
13354the inferior program uses; you must tell it, using the @code{set
13355target-charset} command, described below.
13356
13357Here are the commands for controlling @value{GDBN}'s character set
13358support:
13359
13360@table @code
13361@item set target-charset @var{charset}
13362@kindex set target-charset
10af6951
EZ
13363Set the current target character set to @var{charset}. To display the
13364list of supported target character sets, type
13365@kbd{@w{set target-charset @key{TAB}@key{TAB}}}.
a0eb71c5 13366
a0eb71c5
KB
13367@item set host-charset @var{charset}
13368@kindex set host-charset
13369Set the current host character set to @var{charset}.
13370
13371By default, @value{GDBN} uses a host character set appropriate to the
13372system it is running on; you can override that default using the
732f6a93
TT
13373@code{set host-charset} command. On some systems, @value{GDBN} cannot
13374automatically determine the appropriate host character set. In this
13375case, @value{GDBN} uses @samp{UTF-8}.
a0eb71c5
KB
13376
13377@value{GDBN} can only use certain character sets as its host character
c1b6b909 13378set. If you type @kbd{@w{set host-charset @key{TAB}@key{TAB}}},
10af6951 13379@value{GDBN} will list the host character sets it supports.
a0eb71c5
KB
13380
13381@item set charset @var{charset}
13382@kindex set charset
e33d66ec 13383Set the current host and target character sets to @var{charset}. As
10af6951
EZ
13384above, if you type @kbd{@w{set charset @key{TAB}@key{TAB}}},
13385@value{GDBN} will list the names of the character sets that can be used
e33d66ec
EZ
13386for both host and target.
13387
a0eb71c5 13388@item show charset
a0eb71c5 13389@kindex show charset
10af6951 13390Show the names of the current host and target character sets.
e33d66ec 13391
10af6951 13392@item show host-charset
a0eb71c5 13393@kindex show host-charset
10af6951 13394Show the name of the current host character set.
e33d66ec 13395
10af6951 13396@item show target-charset
a0eb71c5 13397@kindex show target-charset
10af6951 13398Show the name of the current target character set.
a0eb71c5 13399
10af6951
EZ
13400@item set target-wide-charset @var{charset}
13401@kindex set target-wide-charset
13402Set the current target's wide character set to @var{charset}. This is
13403the character set used by the target's @code{wchar_t} type. To
13404display the list of supported wide character sets, type
13405@kbd{@w{set target-wide-charset @key{TAB}@key{TAB}}}.
13406
13407@item show target-wide-charset
13408@kindex show target-wide-charset
13409Show the name of the current target's wide character set.
a0eb71c5
KB
13410@end table
13411
a0eb71c5
KB
13412Here is an example of @value{GDBN}'s character set support in action.
13413Assume that the following source code has been placed in the file
13414@file{charset-test.c}:
13415
13416@smallexample
13417#include <stdio.h>
13418
13419char ascii_hello[]
13420 = @{72, 101, 108, 108, 111, 44, 32, 119,
13421 111, 114, 108, 100, 33, 10, 0@};
13422char ibm1047_hello[]
13423 = @{200, 133, 147, 147, 150, 107, 64, 166,
13424 150, 153, 147, 132, 90, 37, 0@};
13425
13426main ()
13427@{
13428 printf ("Hello, world!\n");
13429@}
10998722 13430@end smallexample
a0eb71c5
KB
13431
13432In this program, @code{ascii_hello} and @code{ibm1047_hello} are arrays
13433containing the string @samp{Hello, world!} followed by a newline,
13434encoded in the @sc{ascii} and @sc{ibm1047} character sets.
13435
13436We compile the program, and invoke the debugger on it:
13437
13438@smallexample
13439$ gcc -g charset-test.c -o charset-test
13440$ gdb -nw charset-test
13441GNU gdb 2001-12-19-cvs
13442Copyright 2001 Free Software Foundation, Inc.
13443@dots{}
f7dc1244 13444(@value{GDBP})
10998722 13445@end smallexample
a0eb71c5
KB
13446
13447We can use the @code{show charset} command to see what character sets
13448@value{GDBN} is currently using to interpret and display characters and
13449strings:
13450
13451@smallexample
f7dc1244 13452(@value{GDBP}) show charset
e33d66ec 13453The current host and target character set is `ISO-8859-1'.
f7dc1244 13454(@value{GDBP})
10998722 13455@end smallexample
a0eb71c5
KB
13456
13457For the sake of printing this manual, let's use @sc{ascii} as our
13458initial character set:
13459@smallexample
f7dc1244
EZ
13460(@value{GDBP}) set charset ASCII
13461(@value{GDBP}) show charset
e33d66ec 13462The current host and target character set is `ASCII'.
f7dc1244 13463(@value{GDBP})
10998722 13464@end smallexample
a0eb71c5
KB
13465
13466Let's assume that @sc{ascii} is indeed the correct character set for our
13467host system --- in other words, let's assume that if @value{GDBN} prints
13468characters using the @sc{ascii} character set, our terminal will display
13469them properly. Since our current target character set is also
13470@sc{ascii}, the contents of @code{ascii_hello} print legibly:
13471
13472@smallexample
f7dc1244 13473(@value{GDBP}) print ascii_hello
a0eb71c5 13474$1 = 0x401698 "Hello, world!\n"
f7dc1244 13475(@value{GDBP}) print ascii_hello[0]
a0eb71c5 13476$2 = 72 'H'
f7dc1244 13477(@value{GDBP})
10998722 13478@end smallexample
a0eb71c5
KB
13479
13480@value{GDBN} uses the target character set for character and string
13481literals you use in expressions:
13482
13483@smallexample
f7dc1244 13484(@value{GDBP}) print '+'
a0eb71c5 13485$3 = 43 '+'
f7dc1244 13486(@value{GDBP})
10998722 13487@end smallexample
a0eb71c5
KB
13488
13489The @sc{ascii} character set uses the number 43 to encode the @samp{+}
13490character.
13491
13492@value{GDBN} relies on the user to tell it which character set the
13493target program uses. If we print @code{ibm1047_hello} while our target
13494character set is still @sc{ascii}, we get jibberish:
13495
13496@smallexample
f7dc1244 13497(@value{GDBP}) print ibm1047_hello
a0eb71c5 13498$4 = 0x4016a8 "\310\205\223\223\226k@@\246\226\231\223\204Z%"
f7dc1244 13499(@value{GDBP}) print ibm1047_hello[0]
a0eb71c5 13500$5 = 200 '\310'
f7dc1244 13501(@value{GDBP})
10998722 13502@end smallexample
a0eb71c5 13503
e33d66ec 13504If we invoke the @code{set target-charset} followed by @key{TAB}@key{TAB},
a0eb71c5
KB
13505@value{GDBN} tells us the character sets it supports:
13506
13507@smallexample
f7dc1244 13508(@value{GDBP}) set target-charset
b383017d 13509ASCII EBCDIC-US IBM1047 ISO-8859-1
f7dc1244 13510(@value{GDBP}) set target-charset
10998722 13511@end smallexample
a0eb71c5
KB
13512
13513We can select @sc{ibm1047} as our target character set, and examine the
13514program's strings again. Now the @sc{ascii} string is wrong, but
13515@value{GDBN} translates the contents of @code{ibm1047_hello} from the
13516target character set, @sc{ibm1047}, to the host character set,
13517@sc{ascii}, and they display correctly:
13518
13519@smallexample
f7dc1244
EZ
13520(@value{GDBP}) set target-charset IBM1047
13521(@value{GDBP}) show charset
e33d66ec
EZ
13522The current host character set is `ASCII'.
13523The current target character set is `IBM1047'.
f7dc1244 13524(@value{GDBP}) print ascii_hello
a0eb71c5 13525$6 = 0x401698 "\110\145%%?\054\040\167?\162%\144\041\012"
f7dc1244 13526(@value{GDBP}) print ascii_hello[0]
a0eb71c5 13527$7 = 72 '\110'
f7dc1244 13528(@value{GDBP}) print ibm1047_hello
a0eb71c5 13529$8 = 0x4016a8 "Hello, world!\n"
f7dc1244 13530(@value{GDBP}) print ibm1047_hello[0]
a0eb71c5 13531$9 = 200 'H'
f7dc1244 13532(@value{GDBP})
10998722 13533@end smallexample
a0eb71c5
KB
13534
13535As above, @value{GDBN} uses the target character set for character and
13536string literals you use in expressions:
13537
13538@smallexample
f7dc1244 13539(@value{GDBP}) print '+'
a0eb71c5 13540$10 = 78 '+'
f7dc1244 13541(@value{GDBP})
10998722 13542@end smallexample
a0eb71c5 13543
e33d66ec 13544The @sc{ibm1047} character set uses the number 78 to encode the @samp{+}
a0eb71c5
KB
13545character.
13546
b12039c6
YQ
13547@node Caching Target Data
13548@section Caching Data of Targets
13549@cindex caching data of targets
13550
13551@value{GDBN} caches data exchanged between the debugger and a target.
b26dfc9a 13552Each cache is associated with the address space of the inferior.
65c574f6 13553@xref{Inferiors Connections and Programs}, about inferior and address space.
b12039c6
YQ
13554Such caching generally improves performance in remote debugging
13555(@pxref{Remote Debugging}), because it reduces the overhead of the
13556remote protocol by bundling memory reads and writes into large chunks.
13557Unfortunately, simply caching everything would lead to incorrect results,
13558since @value{GDBN} does not necessarily know anything about volatile
13559values, memory-mapped I/O addresses, etc. Furthermore, in non-stop mode
13560(@pxref{Non-Stop Mode}) memory can be changed @emph{while} a gdb command
13561is executing.
29b090c0
DE
13562Therefore, by default, @value{GDBN} only caches data
13563known to be on the stack@footnote{In non-stop mode, it is moderately
13564rare for a running thread to modify the stack of a stopped thread
13565in a way that would interfere with a backtrace, and caching of
29453a14
YQ
13566stack reads provides a significant speed up of remote backtraces.} or
13567in the code segment.
29b090c0 13568Other regions of memory can be explicitly marked as
27b81af3 13569cacheable; @pxref{Memory Region Attributes}.
09d4efe1
EZ
13570
13571@table @code
13572@kindex set remotecache
13573@item set remotecache on
13574@itemx set remotecache off
4e5d721f
DE
13575This option no longer does anything; it exists for compatibility
13576with old scripts.
09d4efe1
EZ
13577
13578@kindex show remotecache
13579@item show remotecache
4e5d721f
DE
13580Show the current state of the obsolete remotecache flag.
13581
13582@kindex set stack-cache
13583@item set stack-cache on
13584@itemx set stack-cache off
6dd315ba
YQ
13585Enable or disable caching of stack accesses. When @code{on}, use
13586caching. By default, this option is @code{on}.
4e5d721f
DE
13587
13588@kindex show stack-cache
13589@item show stack-cache
13590Show the current state of data caching for memory accesses.
09d4efe1 13591
29453a14
YQ
13592@kindex set code-cache
13593@item set code-cache on
13594@itemx set code-cache off
13595Enable or disable caching of code segment accesses. When @code{on},
13596use caching. By default, this option is @code{on}. This improves
13597performance of disassembly in remote debugging.
13598
13599@kindex show code-cache
13600@item show code-cache
13601Show the current state of target memory cache for code segment
13602accesses.
13603
09d4efe1 13604@kindex info dcache
4e5d721f 13605@item info dcache @r{[}line@r{]}
b26dfc9a
YQ
13606Print the information about the performance of data cache of the
13607current inferior's address space. The information displayed
13608includes the dcache width and depth, and for each cache line, its
13609number, address, and how many times it was referenced. This
13610command is useful for debugging the data cache operation.
4e5d721f
DE
13611
13612If a line number is specified, the contents of that line will be
13613printed in hex.
1a532630
PP
13614
13615@item set dcache size @var{size}
13616@cindex dcache size
13617@kindex set dcache size
13618Set maximum number of entries in dcache (dcache depth above).
13619
13620@item set dcache line-size @var{line-size}
13621@cindex dcache line-size
13622@kindex set dcache line-size
13623Set number of bytes each dcache entry caches (dcache width above).
13624Must be a power of 2.
13625
13626@item show dcache size
13627@kindex show dcache size
b12039c6 13628Show maximum number of dcache entries. @xref{Caching Target Data, info dcache}.
1a532630
PP
13629
13630@item show dcache line-size
13631@kindex show dcache line-size
b12039c6 13632Show default size of dcache lines.
1a532630 13633
ee9812a0
AB
13634@item maint flush dcache
13635@cindex dcache, flushing
13636@kindex maint flush dcache
13637Flush the contents (if any) of the dcache. This maintainer command is
13638useful when debugging the dcache implementation.
13639
09d4efe1
EZ
13640@end table
13641
08388c79
DE
13642@node Searching Memory
13643@section Search Memory
13644@cindex searching memory
13645
13646Memory can be searched for a particular sequence of bytes with the
13647@code{find} command.
13648
13649@table @code
13650@kindex find
13651@item find @r{[}/@var{sn}@r{]} @var{start_addr}, +@var{len}, @var{val1} @r{[}, @var{val2}, @dots{}@r{]}
13652@itemx find @r{[}/@var{sn}@r{]} @var{start_addr}, @var{end_addr}, @var{val1} @r{[}, @var{val2}, @dots{}@r{]}
13653Search memory for the sequence of bytes specified by @var{val1}, @var{val2},
13654etc. The search begins at address @var{start_addr} and continues for either
13655@var{len} bytes or through to @var{end_addr} inclusive.
13656@end table
13657
13658@var{s} and @var{n} are optional parameters.
13659They may be specified in either order, apart or together.
13660
13661@table @r
13662@item @var{s}, search query size
13663The size of each search query value.
13664
13665@table @code
13666@item b
13667bytes
13668@item h
13669halfwords (two bytes)
13670@item w
13671words (four bytes)
13672@item g
13673giant words (eight bytes)
13674@end table
13675
13676All values are interpreted in the current language.
13677This means, for example, that if the current source language is C/C@t{++}
13678then searching for the string ``hello'' includes the trailing '\0'.
ee9a09e9
DC
13679The null terminator can be removed from searching by using casts,
13680e.g.: @samp{@{char[5]@}"hello"}.
08388c79
DE
13681
13682If the value size is not specified, it is taken from the
13683value's type in the current language.
13684This is useful when one wants to specify the search
13685pattern as a mixture of types.
13686Note that this means, for example, that in the case of C-like languages
13687a search for an untyped 0x42 will search for @samp{(int) 0x42}
13688which is typically four bytes.
13689
13690@item @var{n}, maximum number of finds
13691The maximum number of matches to print. The default is to print all finds.
13692@end table
13693
13694You can use strings as search values. Quote them with double-quotes
13695 (@code{"}).
13696The string value is copied into the search pattern byte by byte,
13697regardless of the endianness of the target and the size specification.
13698
13699The address of each match found is printed as well as a count of the
13700number of matches found.
13701
13702The address of the last value found is stored in convenience variable
13703@samp{$_}.
13704A count of the number of matches is stored in @samp{$numfound}.
13705
13706For example, if stopped at the @code{printf} in this function:
13707
13708@smallexample
13709void
13710hello ()
13711@{
13712 static char hello[] = "hello-hello";
13713 static struct @{ char c; short s; int i; @}
13714 __attribute__ ((packed)) mixed
13715 = @{ 'c', 0x1234, 0x87654321 @};
13716 printf ("%s\n", hello);
13717@}
13718@end smallexample
13719
13720@noindent
13721you get during debugging:
13722
13723@smallexample
13724(gdb) find &hello[0], +sizeof(hello), "hello"
137250x804956d <hello.1620+6>
137261 pattern found
13727(gdb) find &hello[0], +sizeof(hello), 'h', 'e', 'l', 'l', 'o'
137280x8049567 <hello.1620>
137290x804956d <hello.1620+6>
ee9a09e9
DC
137302 patterns found.
13731(gdb) find &hello[0], +sizeof(hello), @{char[5]@}"hello"
137320x8049567 <hello.1620>
137330x804956d <hello.1620+6>
137342 patterns found.
08388c79
DE
13735(gdb) find /b1 &hello[0], +sizeof(hello), 'h', 0x65, 'l'
137360x8049567 <hello.1620>
137371 pattern found
13738(gdb) find &mixed, +sizeof(mixed), (char) 'c', (short) 0x1234, (int) 0x87654321
137390x8049560 <mixed.1625>
137401 pattern found
13741(gdb) print $numfound
13742$1 = 1
13743(gdb) print $_
13744$2 = (void *) 0x8049560
13745@end smallexample
a0eb71c5 13746
5fdf6324
AB
13747@node Value Sizes
13748@section Value Sizes
13749
13750Whenever @value{GDBN} prints a value memory will be allocated within
13751@value{GDBN} to hold the contents of the value. It is possible in
13752some languages with dynamic typing systems, that an invalid program
13753may indicate a value that is incorrectly large, this in turn may cause
6b92c0d3 13754@value{GDBN} to try and allocate an overly large amount of memory.
5fdf6324
AB
13755
13756@table @code
13757@kindex set max-value-size
713cdcbf 13758@item set max-value-size @var{bytes}
5fdf6324
AB
13759@itemx set max-value-size unlimited
13760Set the maximum size of memory that @value{GDBN} will allocate for the
13761contents of a value to @var{bytes}, trying to display a value that
13762requires more memory than that will result in an error.
13763
13764Setting this variable does not effect values that have already been
13765allocated within @value{GDBN}, only future allocations.
13766
13767There's a minimum size that @code{max-value-size} can be set to in
13768order that @value{GDBN} can still operate correctly, this minimum is
13769currently 16 bytes.
13770
13771The limit applies to the results of some subexpressions as well as to
13772complete expressions. For example, an expression denoting a simple
13773integer component, such as @code{x.y.z}, may fail if the size of
13774@var{x.y} is dynamic and exceeds @var{bytes}. On the other hand,
13775@value{GDBN} is sometimes clever; the expression @code{A[i]}, where
13776@var{A} is an array variable with non-constant size, will generally
13777succeed regardless of the bounds on @var{A}, as long as the component
13778size is less than @var{bytes}.
13779
13780The default value of @code{max-value-size} is currently 64k.
13781
13782@kindex show max-value-size
13783@item show max-value-size
13784Show the maximum size of memory, in bytes, that @value{GDBN} will
13785allocate for the contents of a value.
13786@end table
13787
edb3359d
DJ
13788@node Optimized Code
13789@chapter Debugging Optimized Code
13790@cindex optimized code, debugging
13791@cindex debugging optimized code
13792
13793Almost all compilers support optimization. With optimization
13794disabled, the compiler generates assembly code that corresponds
13795directly to your source code, in a simplistic way. As the compiler
13796applies more powerful optimizations, the generated assembly code
13797diverges from your original source code. With help from debugging
13798information generated by the compiler, @value{GDBN} can map from
13799the running program back to constructs from your original source.
13800
13801@value{GDBN} is more accurate with optimization disabled. If you
13802can recompile without optimization, it is easier to follow the
13803progress of your program during debugging. But, there are many cases
13804where you may need to debug an optimized version.
13805
13806When you debug a program compiled with @samp{-g -O}, remember that the
13807optimizer has rearranged your code; the debugger shows you what is
13808really there. Do not be too surprised when the execution path does not
13809exactly match your source file! An extreme example: if you define a
13810variable, but never use it, @value{GDBN} never sees that
13811variable---because the compiler optimizes it out of existence.
13812
13813Some things do not work as well with @samp{-g -O} as with just
13814@samp{-g}, particularly on machines with instruction scheduling. If in
13815doubt, recompile with @samp{-g} alone, and if this fixes the problem,
13816please report it to us as a bug (including a test case!).
13817@xref{Variables}, for more information about debugging optimized code.
13818
13819@menu
13820* Inline Functions:: How @value{GDBN} presents inlining
111c6489 13821* Tail Call Frames:: @value{GDBN} analysis of jumps to functions
edb3359d
DJ
13822@end menu
13823
13824@node Inline Functions
13825@section Inline Functions
13826@cindex inline functions, debugging
13827
13828@dfn{Inlining} is an optimization that inserts a copy of the function
13829body directly at each call site, instead of jumping to a shared
13830routine. @value{GDBN} displays inlined functions just like
13831non-inlined functions. They appear in backtraces. You can view their
13832arguments and local variables, step into them with @code{step}, skip
13833them with @code{next}, and escape from them with @code{finish}.
13834You can check whether a function was inlined by using the
13835@code{info frame} command.
13836
13837For @value{GDBN} to support inlined functions, the compiler must
13838record information about inlining in the debug information ---
13839@value{NGCC} using the @sc{dwarf 2} format does this, and several
13840other compilers do also. @value{GDBN} only supports inlined functions
13841when using @sc{dwarf 2}. Versions of @value{NGCC} before 4.1
13842do not emit two required attributes (@samp{DW_AT_call_file} and
13843@samp{DW_AT_call_line}); @value{GDBN} does not display inlined
13844function calls with earlier versions of @value{NGCC}. It instead
13845displays the arguments and local variables of inlined functions as
13846local variables in the caller.
13847
13848The body of an inlined function is directly included at its call site;
13849unlike a non-inlined function, there are no instructions devoted to
13850the call. @value{GDBN} still pretends that the call site and the
13851start of the inlined function are different instructions. Stepping to
13852the call site shows the call site, and then stepping again shows
13853the first line of the inlined function, even though no additional
13854instructions are executed.
13855
13856This makes source-level debugging much clearer; you can see both the
13857context of the call and then the effect of the call. Only stepping by
13858a single instruction using @code{stepi} or @code{nexti} does not do
13859this; single instruction steps always show the inlined body.
13860
13861There are some ways that @value{GDBN} does not pretend that inlined
13862function calls are the same as normal calls:
13863
13864@itemize @bullet
edb3359d
DJ
13865@item
13866Setting breakpoints at the call site of an inlined function may not
13867work, because the call site does not contain any code. @value{GDBN}
13868may incorrectly move the breakpoint to the next line of the enclosing
13869function, after the call. This limitation will be removed in a future
13870version of @value{GDBN}; until then, set a breakpoint on an earlier line
13871or inside the inlined function instead.
13872
13873@item
13874@value{GDBN} cannot locate the return value of inlined calls after
13875using the @code{finish} command. This is a limitation of compiler-generated
13876debugging information; after @code{finish}, you can step to the next line
13877and print a variable where your program stored the return value.
13878
13879@end itemize
13880
111c6489
JK
13881@node Tail Call Frames
13882@section Tail Call Frames
13883@cindex tail call frames, debugging
13884
13885Function @code{B} can call function @code{C} in its very last statement. In
13886unoptimized compilation the call of @code{C} is immediately followed by return
13887instruction at the end of @code{B} code. Optimizing compiler may replace the
13888call and return in function @code{B} into one jump to function @code{C}
13889instead. Such use of a jump instruction is called @dfn{tail call}.
13890
13891During execution of function @code{C}, there will be no indication in the
13892function call stack frames that it was tail-called from @code{B}. If function
13893@code{A} regularly calls function @code{B} which tail-calls function @code{C},
13894then @value{GDBN} will see @code{A} as the caller of @code{C}. However, in
13895some cases @value{GDBN} can determine that @code{C} was tail-called from
13896@code{B}, and it will then create fictitious call frame for that, with the
13897return address set up as if @code{B} called @code{C} normally.
13898
13899This functionality is currently supported only by DWARF 2 debugging format and
216f72a1 13900the compiler has to produce @samp{DW_TAG_call_site} tags. With
111c6489
JK
13901@value{NGCC}, you need to specify @option{-O -g} during compilation, to get
13902this information.
13903
13904@kbd{info frame} command (@pxref{Frame Info}) will indicate the tail call frame
13905kind by text @code{tail call frame} such as in this sample @value{GDBN} output:
13906
13907@smallexample
13908(gdb) x/i $pc - 2
13909 0x40066b <b(int, double)+11>: jmp 0x400640 <c(int, double)>
13910(gdb) info frame
13911Stack level 1, frame at 0x7fffffffda30:
13912 rip = 0x40066d in b (amd64-entry-value.cc:59); saved rip 0x4004c5
13913 tail call frame, caller of frame at 0x7fffffffda30
13914 source language c++.
13915 Arglist at unknown address.
13916 Locals at unknown address, Previous frame's sp is 0x7fffffffda30
13917@end smallexample
13918
13919The detection of all the possible code path executions can find them ambiguous.
13920There is no execution history stored (possible @ref{Reverse Execution} is never
13921used for this purpose) and the last known caller could have reached the known
13922callee by multiple different jump sequences. In such case @value{GDBN} still
13923tries to show at least all the unambiguous top tail callers and all the
13924unambiguous bottom tail calees, if any.
13925
13926@table @code
e18b2753 13927@anchor{set debug entry-values}
111c6489
JK
13928@item set debug entry-values
13929@kindex set debug entry-values
13930When set to on, enables printing of analysis messages for both frame argument
13931values at function entry and tail calls. It will show all the possible valid
13932tail calls code paths it has considered. It will also print the intersection
13933of them with the final unambiguous (possibly partial or even empty) code path
13934result.
13935
13936@item show debug entry-values
13937@kindex show debug entry-values
13938Show the current state of analysis messages printing for both frame argument
13939values at function entry and tail calls.
13940@end table
13941
13942The analysis messages for tail calls can for example show why the virtual tail
13943call frame for function @code{c} has not been recognized (due to the indirect
13944reference by variable @code{x}):
13945
13946@smallexample
13947static void __attribute__((noinline, noclone)) c (void);
13948void (*x) (void) = c;
13949static void __attribute__((noinline, noclone)) a (void) @{ x++; @}
13950static void __attribute__((noinline, noclone)) c (void) @{ a (); @}
13951int main (void) @{ x (); return 0; @}
13952
216f72a1
JK
13953Breakpoint 1, DW_OP_entry_value resolving cannot find
13954DW_TAG_call_site 0x40039a in main
111c6489
JK
13955a () at t.c:3
139563 static void __attribute__((noinline, noclone)) a (void) @{ x++; @}
13957(gdb) bt
13958#0 a () at t.c:3
13959#1 0x000000000040039a in main () at t.c:5
13960@end smallexample
13961
13962Another possibility is an ambiguous virtual tail call frames resolution:
13963
13964@smallexample
13965int i;
13966static void __attribute__((noinline, noclone)) f (void) @{ i++; @}
13967static void __attribute__((noinline, noclone)) e (void) @{ f (); @}
13968static void __attribute__((noinline, noclone)) d (void) @{ f (); @}
13969static void __attribute__((noinline, noclone)) c (void) @{ d (); @}
13970static void __attribute__((noinline, noclone)) b (void)
13971@{ if (i) c (); else e (); @}
13972static void __attribute__((noinline, noclone)) a (void) @{ b (); @}
13973int main (void) @{ a (); return 0; @}
13974
13975tailcall: initial: 0x4004d2(a) 0x4004ce(b) 0x4004b2(c) 0x4004a2(d)
13976tailcall: compare: 0x4004d2(a) 0x4004cc(b) 0x400492(e)
13977tailcall: reduced: 0x4004d2(a) |
13978(gdb) bt
13979#0 f () at t.c:2
13980#1 0x00000000004004d2 in a () at t.c:8
13981#2 0x0000000000400395 in main () at t.c:9
13982@end smallexample
13983
5048e516
JK
13984@set CALLSEQ1A @code{main@value{ARROW}a@value{ARROW}b@value{ARROW}c@value{ARROW}d@value{ARROW}f}
13985@set CALLSEQ2A @code{main@value{ARROW}a@value{ARROW}b@value{ARROW}e@value{ARROW}f}
13986
13987@c Convert CALLSEQ#A to CALLSEQ#B depending on HAVE_MAKEINFO_CLICK.
13988@ifset HAVE_MAKEINFO_CLICK
13989@set ARROW @click{}
13990@set CALLSEQ1B @clicksequence{@value{CALLSEQ1A}}
13991@set CALLSEQ2B @clicksequence{@value{CALLSEQ2A}}
13992@end ifset
13993@ifclear HAVE_MAKEINFO_CLICK
13994@set ARROW ->
13995@set CALLSEQ1B @value{CALLSEQ1A}
13996@set CALLSEQ2B @value{CALLSEQ2A}
13997@end ifclear
13998
13999Frames #0 and #2 are real, #1 is a virtual tail call frame.
14000The code can have possible execution paths @value{CALLSEQ1B} or
14001@value{CALLSEQ2B}, @value{GDBN} cannot find which one from the inferior state.
111c6489
JK
14002
14003@code{initial:} state shows some random possible calling sequence @value{GDBN}
6b92c0d3 14004has found. It then finds another possible calling sequence - that one is
111c6489
JK
14005prefixed by @code{compare:}. The non-ambiguous intersection of these two is
14006printed as the @code{reduced:} calling sequence. That one could have many
6b92c0d3 14007further @code{compare:} and @code{reduced:} statements as long as there remain
111c6489
JK
14008any non-ambiguous sequence entries.
14009
14010For the frame of function @code{b} in both cases there are different possible
14011@code{$pc} values (@code{0x4004cc} or @code{0x4004ce}), therefore this frame is
6b92c0d3 14012also ambiguous. The only non-ambiguous frame is the one for function @code{a},
111c6489
JK
14013therefore this one is displayed to the user while the ambiguous frames are
14014omitted.
edb3359d 14015
e18b2753
JK
14016There can be also reasons why printing of frame argument values at function
14017entry may fail:
14018
14019@smallexample
14020int v;
14021static void __attribute__((noinline, noclone)) c (int i) @{ v++; @}
14022static void __attribute__((noinline, noclone)) a (int i);
14023static void __attribute__((noinline, noclone)) b (int i) @{ a (i); @}
14024static void __attribute__((noinline, noclone)) a (int i)
14025@{ if (i) b (i - 1); else c (0); @}
14026int main (void) @{ a (5); return 0; @}
14027
14028(gdb) bt
14029#0 c (i=i@@entry=0) at t.c:2
216f72a1 14030#1 0x0000000000400428 in a (DW_OP_entry_value resolving has found
e18b2753
JK
14031function "a" at 0x400420 can call itself via tail calls
14032i=<optimized out>) at t.c:6
14033#2 0x000000000040036e in main () at t.c:7
14034@end smallexample
14035
14036@value{GDBN} cannot find out from the inferior state if and how many times did
14037function @code{a} call itself (via function @code{b}) as these calls would be
6b92c0d3 14038tail calls. Such tail calls would modify the @code{i} variable, therefore
e18b2753
JK
14039@value{GDBN} cannot be sure the value it knows would be right - @value{GDBN}
14040prints @code{<optimized out>} instead.
14041
e2e0bcd1
JB
14042@node Macros
14043@chapter C Preprocessor Macros
14044
49efadf5 14045Some languages, such as C and C@t{++}, provide a way to define and invoke
e2e0bcd1
JB
14046``preprocessor macros'' which expand into strings of tokens.
14047@value{GDBN} can evaluate expressions containing macro invocations, show
14048the result of macro expansion, and show a macro's definition, including
14049where it was defined.
14050
14051You may need to compile your program specially to provide @value{GDBN}
14052with information about preprocessor macros. Most compilers do not
14053include macros in their debugging information, even when you compile
14054with the @option{-g} flag. @xref{Compilation}.
14055
14056A program may define a macro at one point, remove that definition later,
14057and then provide a different definition after that. Thus, at different
14058points in the program, a macro may have different definitions, or have
14059no definition at all. If there is a current stack frame, @value{GDBN}
14060uses the macros in scope at that frame's source code line. Otherwise,
14061@value{GDBN} uses the macros in scope at the current listing location;
14062see @ref{List}.
14063
e2e0bcd1
JB
14064Whenever @value{GDBN} evaluates an expression, it always expands any
14065macro invocations present in the expression. @value{GDBN} also provides
14066the following commands for working with macros explicitly.
14067
14068@table @code
14069
14070@kindex macro expand
14071@cindex macro expansion, showing the results of preprocessor
14072@cindex preprocessor macro expansion, showing the results of
14073@cindex expanding preprocessor macros
14074@item macro expand @var{expression}
14075@itemx macro exp @var{expression}
14076Show the results of expanding all preprocessor macro invocations in
14077@var{expression}. Since @value{GDBN} simply expands macros, but does
14078not parse the result, @var{expression} need not be a valid expression;
14079it can be any string of tokens.
14080
09d4efe1 14081@kindex macro exp1
e2e0bcd1
JB
14082@item macro expand-once @var{expression}
14083@itemx macro exp1 @var{expression}
4644b6e3 14084@cindex expand macro once
e2e0bcd1
JB
14085@i{(This command is not yet implemented.)} Show the results of
14086expanding those preprocessor macro invocations that appear explicitly in
14087@var{expression}. Macro invocations appearing in that expansion are
14088left unchanged. This command allows you to see the effect of a
14089particular macro more clearly, without being confused by further
14090expansions. Since @value{GDBN} simply expands macros, but does not
14091parse the result, @var{expression} need not be a valid expression; it
14092can be any string of tokens.
14093
475b0867 14094@kindex info macro
e2e0bcd1 14095@cindex macro definition, showing
9b158ba0 14096@cindex definition of a macro, showing
14097@cindex macros, from debug info
71eba9c2 14098@item info macro [-a|-all] [--] @var{macro}
14099Show the current definition or all definitions of the named @var{macro},
14100and describe the source location or compiler command-line where that
14101definition was established. The optional double dash is to signify the end of
14102argument processing and the beginning of @var{macro} for non C-like macros where
14103the macro may begin with a hyphen.
e2e0bcd1 14104
9b158ba0 14105@kindex info macros
629500fa 14106@item info macros @var{location}
9b158ba0 14107Show all macro definitions that are in effect at the location specified
629500fa 14108by @var{location}, and describe the source location or compiler
9b158ba0 14109command-line where those definitions were established.
14110
e2e0bcd1
JB
14111@kindex macro define
14112@cindex user-defined macros
14113@cindex defining macros interactively
14114@cindex macros, user-defined
14115@item macro define @var{macro} @var{replacement-list}
14116@itemx macro define @var{macro}(@var{arglist}) @var{replacement-list}
d7d9f01e
TT
14117Introduce a definition for a preprocessor macro named @var{macro},
14118invocations of which are replaced by the tokens given in
14119@var{replacement-list}. The first form of this command defines an
14120``object-like'' macro, which takes no arguments; the second form
14121defines a ``function-like'' macro, which takes the arguments given in
14122@var{arglist}.
14123
14124A definition introduced by this command is in scope in every
14125expression evaluated in @value{GDBN}, until it is removed with the
14126@code{macro undef} command, described below. The definition overrides
14127all definitions for @var{macro} present in the program being debugged,
14128as well as any previous user-supplied definition.
e2e0bcd1
JB
14129
14130@kindex macro undef
14131@item macro undef @var{macro}
d7d9f01e
TT
14132Remove any user-supplied definition for the macro named @var{macro}.
14133This command only affects definitions provided with the @code{macro
14134define} command, described above; it cannot remove definitions present
14135in the program being debugged.
e2e0bcd1 14136
09d4efe1
EZ
14137@kindex macro list
14138@item macro list
d7d9f01e 14139List all the macros defined using the @code{macro define} command.
e2e0bcd1
JB
14140@end table
14141
14142@cindex macros, example of debugging with
14143Here is a transcript showing the above commands in action. First, we
14144show our source files:
14145
14146@smallexample
14147$ cat sample.c
14148#include <stdio.h>
14149#include "sample.h"
14150
14151#define M 42
14152#define ADD(x) (M + x)
14153
14154main ()
14155@{
14156#define N 28
14157 printf ("Hello, world!\n");
14158#undef N
14159 printf ("We're so creative.\n");
14160#define N 1729
14161 printf ("Goodbye, world!\n");
14162@}
14163$ cat sample.h
14164#define Q <
14165$
14166@end smallexample
14167
e0f8f636
TT
14168Now, we compile the program using the @sc{gnu} C compiler,
14169@value{NGCC}. We pass the @option{-gdwarf-2}@footnote{This is the
14170minimum. Recent versions of @value{NGCC} support @option{-gdwarf-3}
14171and @option{-gdwarf-4}; we recommend always choosing the most recent
14172version of DWARF.} @emph{and} @option{-g3} flags to ensure the compiler
14173includes information about preprocessor macros in the debugging
e2e0bcd1
JB
14174information.
14175
14176@smallexample
14177$ gcc -gdwarf-2 -g3 sample.c -o sample
14178$
14179@end smallexample
14180
14181Now, we start @value{GDBN} on our sample program:
14182
14183@smallexample
14184$ gdb -nw sample
14185GNU gdb 2002-05-06-cvs
14186Copyright 2002 Free Software Foundation, Inc.
14187GDB is free software, @dots{}
f7dc1244 14188(@value{GDBP})
e2e0bcd1
JB
14189@end smallexample
14190
14191We can expand macros and examine their definitions, even when the
14192program is not running. @value{GDBN} uses the current listing position
14193to decide which macro definitions are in scope:
14194
14195@smallexample
f7dc1244 14196(@value{GDBP}) list main
e2e0bcd1
JB
141973
141984 #define M 42
141995 #define ADD(x) (M + x)
142006
142017 main ()
142028 @{
142039 #define N 28
1420410 printf ("Hello, world!\n");
1420511 #undef N
1420612 printf ("We're so creative.\n");
f7dc1244 14207(@value{GDBP}) info macro ADD
e2e0bcd1
JB
14208Defined at /home/jimb/gdb/macros/play/sample.c:5
14209#define ADD(x) (M + x)
f7dc1244 14210(@value{GDBP}) info macro Q
e2e0bcd1
JB
14211Defined at /home/jimb/gdb/macros/play/sample.h:1
14212 included at /home/jimb/gdb/macros/play/sample.c:2
14213#define Q <
f7dc1244 14214(@value{GDBP}) macro expand ADD(1)
e2e0bcd1 14215expands to: (42 + 1)
f7dc1244 14216(@value{GDBP}) macro expand-once ADD(1)
e2e0bcd1 14217expands to: once (M + 1)
f7dc1244 14218(@value{GDBP})
e2e0bcd1
JB
14219@end smallexample
14220
d7d9f01e 14221In the example above, note that @code{macro expand-once} expands only
e2e0bcd1
JB
14222the macro invocation explicit in the original text --- the invocation of
14223@code{ADD} --- but does not expand the invocation of the macro @code{M},
14224which was introduced by @code{ADD}.
14225
3f94c067
BW
14226Once the program is running, @value{GDBN} uses the macro definitions in
14227force at the source line of the current stack frame:
e2e0bcd1
JB
14228
14229@smallexample
f7dc1244 14230(@value{GDBP}) break main
e2e0bcd1 14231Breakpoint 1 at 0x8048370: file sample.c, line 10.
f7dc1244 14232(@value{GDBP}) run
b383017d 14233Starting program: /home/jimb/gdb/macros/play/sample
e2e0bcd1
JB
14234
14235Breakpoint 1, main () at sample.c:10
1423610 printf ("Hello, world!\n");
f7dc1244 14237(@value{GDBP})
e2e0bcd1
JB
14238@end smallexample
14239
14240At line 10, the definition of the macro @code{N} at line 9 is in force:
14241
14242@smallexample
f7dc1244 14243(@value{GDBP}) info macro N
e2e0bcd1
JB
14244Defined at /home/jimb/gdb/macros/play/sample.c:9
14245#define N 28
f7dc1244 14246(@value{GDBP}) macro expand N Q M
e2e0bcd1 14247expands to: 28 < 42
f7dc1244 14248(@value{GDBP}) print N Q M
e2e0bcd1 14249$1 = 1
f7dc1244 14250(@value{GDBP})
e2e0bcd1
JB
14251@end smallexample
14252
14253As we step over directives that remove @code{N}'s definition, and then
14254give it a new definition, @value{GDBN} finds the definition (or lack
14255thereof) in force at each point:
14256
14257@smallexample
f7dc1244 14258(@value{GDBP}) next
e2e0bcd1
JB
14259Hello, world!
1426012 printf ("We're so creative.\n");
f7dc1244 14261(@value{GDBP}) info macro N
e2e0bcd1
JB
14262The symbol `N' has no definition as a C/C++ preprocessor macro
14263at /home/jimb/gdb/macros/play/sample.c:12
f7dc1244 14264(@value{GDBP}) next
e2e0bcd1
JB
14265We're so creative.
1426614 printf ("Goodbye, world!\n");
f7dc1244 14267(@value{GDBP}) info macro N
e2e0bcd1
JB
14268Defined at /home/jimb/gdb/macros/play/sample.c:13
14269#define N 1729
f7dc1244 14270(@value{GDBP}) macro expand N Q M
e2e0bcd1 14271expands to: 1729 < 42
f7dc1244 14272(@value{GDBP}) print N Q M
e2e0bcd1 14273$2 = 0
f7dc1244 14274(@value{GDBP})
e2e0bcd1
JB
14275@end smallexample
14276
484086b7
JK
14277In addition to source files, macros can be defined on the compilation command
14278line using the @option{-D@var{name}=@var{value}} syntax. For macros defined in
14279such a way, @value{GDBN} displays the location of their definition as line zero
14280of the source file submitted to the compiler.
14281
14282@smallexample
14283(@value{GDBP}) info macro __STDC__
14284Defined at /home/jimb/gdb/macros/play/sample.c:0
14285-D__STDC__=1
14286(@value{GDBP})
14287@end smallexample
14288
e2e0bcd1 14289
b37052ae
EZ
14290@node Tracepoints
14291@chapter Tracepoints
14292@c This chapter is based on the documentation written by Michael
14293@c Snyder, David Taylor, Jim Blandy, and Elena Zannoni.
14294
14295@cindex tracepoints
14296In some applications, it is not feasible for the debugger to interrupt
14297the program's execution long enough for the developer to learn
14298anything helpful about its behavior. If the program's correctness
14299depends on its real-time behavior, delays introduced by a debugger
14300might cause the program to change its behavior drastically, or perhaps
14301fail, even when the code itself is correct. It is useful to be able
14302to observe the program's behavior without interrupting it.
14303
14304Using @value{GDBN}'s @code{trace} and @code{collect} commands, you can
14305specify locations in the program, called @dfn{tracepoints}, and
14306arbitrary expressions to evaluate when those tracepoints are reached.
14307Later, using the @code{tfind} command, you can examine the values
14308those expressions had when the program hit the tracepoints. The
14309expressions may also denote objects in memory---structures or arrays,
14310for example---whose values @value{GDBN} should record; while visiting
14311a particular tracepoint, you may inspect those objects as if they were
14312in memory at that moment. However, because @value{GDBN} records these
14313values without interacting with you, it can do so quickly and
14314unobtrusively, hopefully not disturbing the program's behavior.
14315
14316The tracepoint facility is currently available only for remote
9d29849a
JB
14317targets. @xref{Targets}. In addition, your remote target must know
14318how to collect trace data. This functionality is implemented in the
14319remote stub; however, none of the stubs distributed with @value{GDBN}
14320support tracepoints as of this writing. The format of the remote
14321packets used to implement tracepoints are described in @ref{Tracepoint
14322Packets}.
b37052ae 14323
00bf0b85
SS
14324It is also possible to get trace data from a file, in a manner reminiscent
14325of corefiles; you specify the filename, and use @code{tfind} to search
14326through the file. @xref{Trace Files}, for more details.
14327
b37052ae
EZ
14328This chapter describes the tracepoint commands and features.
14329
14330@menu
b383017d
RM
14331* Set Tracepoints::
14332* Analyze Collected Data::
14333* Tracepoint Variables::
00bf0b85 14334* Trace Files::
b37052ae
EZ
14335@end menu
14336
14337@node Set Tracepoints
14338@section Commands to Set Tracepoints
14339
14340Before running such a @dfn{trace experiment}, an arbitrary number of
1042e4c0
SS
14341tracepoints can be set. A tracepoint is actually a special type of
14342breakpoint (@pxref{Set Breaks}), so you can manipulate it using
14343standard breakpoint commands. For instance, as with breakpoints,
14344tracepoint numbers are successive integers starting from one, and many
14345of the commands associated with tracepoints take the tracepoint number
14346as their argument, to identify which tracepoint to work on.
b37052ae
EZ
14347
14348For each tracepoint, you can specify, in advance, some arbitrary set
14349of data that you want the target to collect in the trace buffer when
14350it hits that tracepoint. The collected data can include registers,
14351local variables, or global data. Later, you can use @value{GDBN}
14352commands to examine the values these data had at the time the
14353tracepoint was hit.
14354
7d13fe92
SS
14355Tracepoints do not support every breakpoint feature. Ignore counts on
14356tracepoints have no effect, and tracepoints cannot run @value{GDBN}
14357commands when they are hit. Tracepoints may not be thread-specific
14358either.
1042e4c0 14359
7a697b8d
SS
14360@cindex fast tracepoints
14361Some targets may support @dfn{fast tracepoints}, which are inserted in
14362a different way (such as with a jump instead of a trap), that is
14363faster but possibly restricted in where they may be installed.
14364
0fb4aa4b
PA
14365@cindex static tracepoints
14366@cindex markers, static tracepoints
14367@cindex probing markers, static tracepoints
14368Regular and fast tracepoints are dynamic tracing facilities, meaning
14369that they can be used to insert tracepoints at (almost) any location
14370in the target. Some targets may also support controlling @dfn{static
14371tracepoints} from @value{GDBN}. With static tracing, a set of
14372instrumentation points, also known as @dfn{markers}, are embedded in
14373the target program, and can be activated or deactivated by name or
14374address. These are usually placed at locations which facilitate
14375investigating what the target is actually doing. @value{GDBN}'s
14376support for static tracing includes being able to list instrumentation
14377points, and attach them with @value{GDBN} defined high level
14378tracepoints that expose the whole range of convenience of
8786b2bd 14379@value{GDBN}'s tracepoints support. Namely, support for collecting
0fb4aa4b
PA
14380registers values and values of global or local (to the instrumentation
14381point) variables; tracepoint conditions and trace state variables.
14382The act of installing a @value{GDBN} static tracepoint on an
14383instrumentation point, or marker, is referred to as @dfn{probing} a
14384static tracepoint marker.
14385
fa593d66
PA
14386@code{gdbserver} supports tracepoints on some target systems.
14387@xref{Server,,Tracepoints support in @code{gdbserver}}.
14388
b37052ae
EZ
14389This section describes commands to set tracepoints and associated
14390conditions and actions.
14391
14392@menu
b383017d
RM
14393* Create and Delete Tracepoints::
14394* Enable and Disable Tracepoints::
14395* Tracepoint Passcounts::
782b2b07 14396* Tracepoint Conditions::
f61e138d 14397* Trace State Variables::
b383017d
RM
14398* Tracepoint Actions::
14399* Listing Tracepoints::
0fb4aa4b 14400* Listing Static Tracepoint Markers::
79a6e687 14401* Starting and Stopping Trace Experiments::
c9429232 14402* Tracepoint Restrictions::
b37052ae
EZ
14403@end menu
14404
14405@node Create and Delete Tracepoints
14406@subsection Create and Delete Tracepoints
14407
14408@table @code
14409@cindex set tracepoint
14410@kindex trace
1042e4c0 14411@item trace @var{location}
b37052ae 14412The @code{trace} command is very similar to the @code{break} command.
629500fa
KS
14413Its argument @var{location} can be any valid location.
14414@xref{Specify Location}. The @code{trace} command defines a tracepoint,
14415which is a point in the target program where the debugger will briefly stop,
14416collect some data, and then allow the program to continue. Setting a tracepoint
14417or changing its actions takes effect immediately if the remote stub
1e4d1764
YQ
14418supports the @samp{InstallInTrace} feature (@pxref{install tracepoint
14419in tracing}).
14420If remote stub doesn't support the @samp{InstallInTrace} feature, all
14421these changes don't take effect until the next @code{tstart}
1042e4c0 14422command, and once a trace experiment is running, further changes will
bfccc43c
YQ
14423not have any effect until the next trace experiment starts. In addition,
14424@value{GDBN} supports @dfn{pending tracepoints}---tracepoints whose
14425address is not yet resolved. (This is similar to pending breakpoints.)
14426Pending tracepoints are not downloaded to the target and not installed
14427until they are resolved. The resolution of pending tracepoints requires
14428@value{GDBN} support---when debugging with the remote target, and
14429@value{GDBN} disconnects from the remote stub (@pxref{disconnected
14430tracing}), pending tracepoints can not be resolved (and downloaded to
14431the remote stub) while @value{GDBN} is disconnected.
b37052ae
EZ
14432
14433Here are some examples of using the @code{trace} command:
14434
14435@smallexample
14436(@value{GDBP}) @b{trace foo.c:121} // a source file and line number
14437
14438(@value{GDBP}) @b{trace +2} // 2 lines forward
14439
14440(@value{GDBP}) @b{trace my_function} // first source line of function
14441
14442(@value{GDBP}) @b{trace *my_function} // EXACT start address of function
14443
14444(@value{GDBP}) @b{trace *0x2117c4} // an address
14445@end smallexample
14446
14447@noindent
14448You can abbreviate @code{trace} as @code{tr}.
14449
782b2b07
SS
14450@item trace @var{location} if @var{cond}
14451Set a tracepoint with condition @var{cond}; evaluate the expression
14452@var{cond} each time the tracepoint is reached, and collect data only
14453if the value is nonzero---that is, if @var{cond} evaluates as true.
14454@xref{Tracepoint Conditions, ,Tracepoint Conditions}, for more
14455information on tracepoint conditions.
14456
7a697b8d
SS
14457@item ftrace @var{location} [ if @var{cond} ]
14458@cindex set fast tracepoint
74c761c1 14459@cindex fast tracepoints, setting
7a697b8d
SS
14460@kindex ftrace
14461The @code{ftrace} command sets a fast tracepoint. For targets that
14462support them, fast tracepoints will use a more efficient but possibly
14463less general technique to trigger data collection, such as a jump
14464instruction instead of a trap, or some sort of hardware support. It
14465may not be possible to create a fast tracepoint at the desired
14466location, in which case the command will exit with an explanatory
14467message.
14468
14469@value{GDBN} handles arguments to @code{ftrace} exactly as for
14470@code{trace}.
14471
405f8e94
SS
14472On 32-bit x86-architecture systems, fast tracepoints normally need to
14473be placed at an instruction that is 5 bytes or longer, but can be
14474placed at 4-byte instructions if the low 64K of memory of the target
14475program is available to install trampolines. Some Unix-type systems,
14476such as @sc{gnu}/Linux, exclude low addresses from the program's
14477address space; but for instance with the Linux kernel it is possible
14478to let @value{GDBN} use this area by doing a @command{sysctl} command
14479to set the @code{mmap_min_addr} kernel parameter, as in
14480
14481@example
14482sudo sysctl -w vm.mmap_min_addr=32768
14483@end example
14484
14485@noindent
14486which sets the low address to 32K, which leaves plenty of room for
14487trampolines. The minimum address should be set to a page boundary.
14488
0fb4aa4b 14489@item strace @var{location} [ if @var{cond} ]
74c761c1
PA
14490@cindex set static tracepoint
14491@cindex static tracepoints, setting
14492@cindex probe static tracepoint marker
0fb4aa4b
PA
14493@kindex strace
14494The @code{strace} command sets a static tracepoint. For targets that
14495support it, setting a static tracepoint probes a static
14496instrumentation point, or marker, found at @var{location}. It may not
14497be possible to set a static tracepoint at the desired location, in
14498which case the command will exit with an explanatory message.
14499
14500@value{GDBN} handles arguments to @code{strace} exactly as for
14501@code{trace}, with the addition that the user can also specify
14502@code{-m @var{marker}} as @var{location}. This probes the marker
14503identified by the @var{marker} string identifier. This identifier
14504depends on the static tracepoint backend library your program is
14505using. You can find all the marker identifiers in the @samp{ID} field
14506of the @code{info static-tracepoint-markers} command output.
14507@xref{Listing Static Tracepoint Markers,,Listing Static Tracepoint
14508Markers}. For example, in the following small program using the UST
14509tracing engine:
14510
14511@smallexample
14512main ()
14513@{
14514 trace_mark(ust, bar33, "str %s", "FOOBAZ");
14515@}
14516@end smallexample
14517
14518@noindent
14519the marker id is composed of joining the first two arguments to the
14520@code{trace_mark} call with a slash, which translates to:
14521
14522@smallexample
14523(@value{GDBP}) info static-tracepoint-markers
14524Cnt Enb ID Address What
145251 n ust/bar33 0x0000000000400ddc in main at stexample.c:22
14526 Data: "str %s"
14527[etc...]
14528@end smallexample
14529
14530@noindent
14531so you may probe the marker above with:
14532
14533@smallexample
14534(@value{GDBP}) strace -m ust/bar33
14535@end smallexample
14536
14537Static tracepoints accept an extra collect action --- @code{collect
14538$_sdata}. This collects arbitrary user data passed in the probe point
14539call to the tracing library. In the UST example above, you'll see
14540that the third argument to @code{trace_mark} is a printf-like format
6b92c0d3 14541string. The user data is then the result of running that formatting
0fb4aa4b
PA
14542string against the following arguments. Note that @code{info
14543static-tracepoint-markers} command output lists that format string in
14544the @samp{Data:} field.
14545
14546You can inspect this data when analyzing the trace buffer, by printing
14547the $_sdata variable like any other variable available to
14548@value{GDBN}. @xref{Tracepoint Actions,,Tracepoint Action Lists}.
14549
b37052ae
EZ
14550@vindex $tpnum
14551@cindex last tracepoint number
14552@cindex recent tracepoint number
14553@cindex tracepoint number
14554The convenience variable @code{$tpnum} records the tracepoint number
14555of the most recently set tracepoint.
14556
14557@kindex delete tracepoint
14558@cindex tracepoint deletion
14559@item delete tracepoint @r{[}@var{num}@r{]}
14560Permanently delete one or more tracepoints. With no argument, the
1042e4c0
SS
14561default is to delete all tracepoints. Note that the regular
14562@code{delete} command can remove tracepoints also.
b37052ae
EZ
14563
14564Examples:
14565
14566@smallexample
14567(@value{GDBP}) @b{delete trace 1 2 3} // remove three tracepoints
14568
14569(@value{GDBP}) @b{delete trace} // remove all tracepoints
14570@end smallexample
14571
14572@noindent
14573You can abbreviate this command as @code{del tr}.
14574@end table
14575
14576@node Enable and Disable Tracepoints
14577@subsection Enable and Disable Tracepoints
14578
1042e4c0
SS
14579These commands are deprecated; they are equivalent to plain @code{disable} and @code{enable}.
14580
b37052ae
EZ
14581@table @code
14582@kindex disable tracepoint
14583@item disable tracepoint @r{[}@var{num}@r{]}
14584Disable tracepoint @var{num}, or all tracepoints if no argument
14585@var{num} is given. A disabled tracepoint will have no effect during
d248b706 14586a trace experiment, but it is not forgotten. You can re-enable
b37052ae 14587a disabled tracepoint using the @code{enable tracepoint} command.
d248b706
KY
14588If the command is issued during a trace experiment and the debug target
14589has support for disabling tracepoints during a trace experiment, then the
14590change will be effective immediately. Otherwise, it will be applied to the
14591next trace experiment.
b37052ae
EZ
14592
14593@kindex enable tracepoint
14594@item enable tracepoint @r{[}@var{num}@r{]}
d248b706
KY
14595Enable tracepoint @var{num}, or all tracepoints. If this command is
14596issued during a trace experiment and the debug target supports enabling
14597tracepoints during a trace experiment, then the enabled tracepoints will
14598become effective immediately. Otherwise, they will become effective the
14599next time a trace experiment is run.
b37052ae
EZ
14600@end table
14601
14602@node Tracepoint Passcounts
14603@subsection Tracepoint Passcounts
14604
14605@table @code
14606@kindex passcount
14607@cindex tracepoint pass count
14608@item passcount @r{[}@var{n} @r{[}@var{num}@r{]]}
14609Set the @dfn{passcount} of a tracepoint. The passcount is a way to
14610automatically stop a trace experiment. If a tracepoint's passcount is
14611@var{n}, then the trace experiment will be automatically stopped on
14612the @var{n}'th time that tracepoint is hit. If the tracepoint number
14613@var{num} is not specified, the @code{passcount} command sets the
14614passcount of the most recently defined tracepoint. If no passcount is
14615given, the trace experiment will run until stopped explicitly by the
14616user.
14617
14618Examples:
14619
14620@smallexample
b383017d 14621(@value{GDBP}) @b{passcount 5 2} // Stop on the 5th execution of
6826cf00 14622@exdent @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @code{// tracepoint 2}
b37052ae
EZ
14623
14624(@value{GDBP}) @b{passcount 12} // Stop on the 12th execution of the
6826cf00 14625@exdent @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @code{// most recently defined tracepoint.}
b37052ae
EZ
14626(@value{GDBP}) @b{trace foo}
14627(@value{GDBP}) @b{pass 3}
14628(@value{GDBP}) @b{trace bar}
14629(@value{GDBP}) @b{pass 2}
14630(@value{GDBP}) @b{trace baz}
14631(@value{GDBP}) @b{pass 1} // Stop tracing when foo has been
6826cf00
EZ
14632@exdent @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @code{// executed 3 times OR when bar has}
14633@exdent @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @code{// been executed 2 times}
14634@exdent @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @code{// OR when baz has been executed 1 time.}
b37052ae
EZ
14635@end smallexample
14636@end table
14637
782b2b07
SS
14638@node Tracepoint Conditions
14639@subsection Tracepoint Conditions
14640@cindex conditional tracepoints
14641@cindex tracepoint conditions
14642
14643The simplest sort of tracepoint collects data every time your program
14644reaches a specified place. You can also specify a @dfn{condition} for
14645a tracepoint. A condition is just a Boolean expression in your
14646programming language (@pxref{Expressions, ,Expressions}). A
14647tracepoint with a condition evaluates the expression each time your
14648program reaches it, and data collection happens only if the condition
14649is true.
14650
14651Tracepoint conditions can be specified when a tracepoint is set, by
14652using @samp{if} in the arguments to the @code{trace} command.
14653@xref{Create and Delete Tracepoints, ,Setting Tracepoints}. They can
14654also be set or changed at any time with the @code{condition} command,
14655just as with breakpoints.
14656
14657Unlike breakpoint conditions, @value{GDBN} does not actually evaluate
14658the conditional expression itself. Instead, @value{GDBN} encodes the
6dcd5565 14659expression into an agent expression (@pxref{Agent Expressions})
782b2b07
SS
14660suitable for execution on the target, independently of @value{GDBN}.
14661Global variables become raw memory locations, locals become stack
14662accesses, and so forth.
14663
14664For instance, suppose you have a function that is usually called
14665frequently, but should not be called after an error has occurred. You
14666could use the following tracepoint command to collect data about calls
14667of that function that happen while the error code is propagating
14668through the program; an unconditional tracepoint could end up
14669collecting thousands of useless trace frames that you would have to
14670search through.
14671
14672@smallexample
14673(@value{GDBP}) @kbd{trace normal_operation if errcode > 0}
14674@end smallexample
14675
f61e138d
SS
14676@node Trace State Variables
14677@subsection Trace State Variables
14678@cindex trace state variables
14679
14680A @dfn{trace state variable} is a special type of variable that is
14681created and managed by target-side code. The syntax is the same as
14682that for GDB's convenience variables (a string prefixed with ``$''),
14683but they are stored on the target. They must be created explicitly,
14684using a @code{tvariable} command. They are always 64-bit signed
14685integers.
14686
14687Trace state variables are remembered by @value{GDBN}, and downloaded
14688to the target along with tracepoint information when the trace
14689experiment starts. There are no intrinsic limits on the number of
14690trace state variables, beyond memory limitations of the target.
14691
14692@cindex convenience variables, and trace state variables
14693Although trace state variables are managed by the target, you can use
14694them in print commands and expressions as if they were convenience
14695variables; @value{GDBN} will get the current value from the target
14696while the trace experiment is running. Trace state variables share
14697the same namespace as other ``$'' variables, which means that you
14698cannot have trace state variables with names like @code{$23} or
14699@code{$pc}, nor can you have a trace state variable and a convenience
14700variable with the same name.
14701
14702@table @code
14703
14704@item tvariable $@var{name} [ = @var{expression} ]
14705@kindex tvariable
14706The @code{tvariable} command creates a new trace state variable named
14707@code{$@var{name}}, and optionally gives it an initial value of
697aa1b7 14708@var{expression}. The @var{expression} is evaluated when this command is
f61e138d
SS
14709entered; the result will be converted to an integer if possible,
14710otherwise @value{GDBN} will report an error. A subsequent
14711@code{tvariable} command specifying the same name does not create a
14712variable, but instead assigns the supplied initial value to the
14713existing variable of that name, overwriting any previous initial
14714value. The default initial value is 0.
14715
14716@item info tvariables
14717@kindex info tvariables
14718List all the trace state variables along with their initial values.
14719Their current values may also be displayed, if the trace experiment is
14720currently running.
14721
14722@item delete tvariable @r{[} $@var{name} @dots{} @r{]}
14723@kindex delete tvariable
14724Delete the given trace state variables, or all of them if no arguments
14725are specified.
14726
14727@end table
14728
b37052ae
EZ
14729@node Tracepoint Actions
14730@subsection Tracepoint Action Lists
14731
14732@table @code
14733@kindex actions
14734@cindex tracepoint actions
14735@item actions @r{[}@var{num}@r{]}
14736This command will prompt for a list of actions to be taken when the
14737tracepoint is hit. If the tracepoint number @var{num} is not
14738specified, this command sets the actions for the one that was most
14739recently defined (so that you can define a tracepoint and then say
14740@code{actions} without bothering about its number). You specify the
14741actions themselves on the following lines, one action at a time, and
14742terminate the actions list with a line containing just @code{end}. So
7d13fe92 14743far, the only defined actions are @code{collect}, @code{teval}, and
b37052ae
EZ
14744@code{while-stepping}.
14745
5a9351ae
SS
14746@code{actions} is actually equivalent to @code{commands} (@pxref{Break
14747Commands, ,Breakpoint Command Lists}), except that only the defined
14748actions are allowed; any other @value{GDBN} command is rejected.
14749
b37052ae
EZ
14750@cindex remove actions from a tracepoint
14751To remove all actions from a tracepoint, type @samp{actions @var{num}}
14752and follow it immediately with @samp{end}.
14753
14754@smallexample
14755(@value{GDBP}) @b{collect @var{data}} // collect some data
14756
6826cf00 14757(@value{GDBP}) @b{while-stepping 5} // single-step 5 times, collect data
b37052ae 14758
6826cf00 14759(@value{GDBP}) @b{end} // signals the end of actions.
b37052ae
EZ
14760@end smallexample
14761
14762In the following example, the action list begins with @code{collect}
14763commands indicating the things to be collected when the tracepoint is
14764hit. Then, in order to single-step and collect additional data
14765following the tracepoint, a @code{while-stepping} command is used,
7d13fe92
SS
14766followed by the list of things to be collected after each step in a
14767sequence of single steps. The @code{while-stepping} command is
14768terminated by its own separate @code{end} command. Lastly, the action
14769list is terminated by an @code{end} command.
b37052ae
EZ
14770
14771@smallexample
14772(@value{GDBP}) @b{trace foo}
14773(@value{GDBP}) @b{actions}
14774Enter actions for tracepoint 1, one per line:
14775> collect bar,baz
14776> collect $regs
14777> while-stepping 12
5a9351ae 14778 > collect $pc, arr[i]
b37052ae
EZ
14779 > end
14780end
14781@end smallexample
14782
14783@kindex collect @r{(tracepoints)}
3065dfb6 14784@item collect@r{[}/@var{mods}@r{]} @var{expr1}, @var{expr2}, @dots{}
b37052ae
EZ
14785Collect values of the given expressions when the tracepoint is hit.
14786This command accepts a comma-separated list of any valid expressions.
14787In addition to global, static, or local variables, the following
14788special arguments are supported:
14789
14790@table @code
14791@item $regs
0fb4aa4b 14792Collect all registers.
b37052ae
EZ
14793
14794@item $args
0fb4aa4b 14795Collect all function arguments.
b37052ae
EZ
14796
14797@item $locals
0fb4aa4b
PA
14798Collect all local variables.
14799
6710bf39
SS
14800@item $_ret
14801Collect the return address. This is helpful if you want to see more
14802of a backtrace.
14803
2a60e18f 14804@emph{Note:} The return address location can not always be reliably
45fa2529
PA
14805determined up front, and the wrong address / registers may end up
14806collected instead. On some architectures the reliability is higher
14807for tracepoints at function entry, while on others it's the opposite.
14808When this happens, backtracing will stop because the return address is
14809found unavailable (unless another collect rule happened to match it).
14810
62e5f89c
SDJ
14811@item $_probe_argc
14812Collects the number of arguments from the static probe at which the
14813tracepoint is located.
14814@xref{Static Probe Points}.
14815
14816@item $_probe_arg@var{n}
14817@var{n} is an integer between 0 and 11. Collects the @var{n}th argument
14818from the static probe at which the tracepoint is located.
14819@xref{Static Probe Points}.
14820
0fb4aa4b
PA
14821@item $_sdata
14822@vindex $_sdata@r{, collect}
14823Collect static tracepoint marker specific data. Only available for
14824static tracepoints. @xref{Tracepoint Actions,,Tracepoint Action
14825Lists}. On the UST static tracepoints library backend, an
14826instrumentation point resembles a @code{printf} function call. The
14827tracing library is able to collect user specified data formatted to a
14828character string using the format provided by the programmer that
14829instrumented the program. Other backends have similar mechanisms.
14830Here's an example of a UST marker call:
14831
14832@smallexample
14833 const char master_name[] = "$your_name";
14834 trace_mark(channel1, marker1, "hello %s", master_name)
14835@end smallexample
14836
14837In this case, collecting @code{$_sdata} collects the string
14838@samp{hello $yourname}. When analyzing the trace buffer, you can
14839inspect @samp{$_sdata} like any other variable available to
14840@value{GDBN}.
b37052ae
EZ
14841@end table
14842
14843You can give several consecutive @code{collect} commands, each one
14844with a single argument, or one @code{collect} command with several
5a9351ae 14845arguments separated by commas; the effect is the same.
b37052ae 14846
3065dfb6
SS
14847The optional @var{mods} changes the usual handling of the arguments.
14848@code{s} requests that pointers to chars be handled as strings, in
14849particular collecting the contents of the memory being pointed at, up
14850to the first zero. The upper bound is by default the value of the
14851@code{print elements} variable; if @code{s} is followed by a decimal
14852number, that is the upper bound instead. So for instance
14853@samp{collect/s25 mystr} collects as many as 25 characters at
14854@samp{mystr}.
14855
f5c37c66
EZ
14856The command @code{info scope} (@pxref{Symbols, info scope}) is
14857particularly useful for figuring out what data to collect.
14858
6da95a67
SS
14859@kindex teval @r{(tracepoints)}
14860@item teval @var{expr1}, @var{expr2}, @dots{}
14861Evaluate the given expressions when the tracepoint is hit. This
14862command accepts a comma-separated list of expressions. The results
14863are discarded, so this is mainly useful for assigning values to trace
14864state variables (@pxref{Trace State Variables}) without adding those
14865values to the trace buffer, as would be the case if the @code{collect}
14866action were used.
14867
b37052ae
EZ
14868@kindex while-stepping @r{(tracepoints)}
14869@item while-stepping @var{n}
c9429232 14870Perform @var{n} single-step instruction traces after the tracepoint,
7d13fe92 14871collecting new data after each step. The @code{while-stepping}
c9429232
SS
14872command is followed by the list of what to collect while stepping
14873(followed by its own @code{end} command):
b37052ae
EZ
14874
14875@smallexample
14876> while-stepping 12
14877 > collect $regs, myglobal
14878 > end
14879>
14880@end smallexample
14881
14882@noindent
7d13fe92
SS
14883Note that @code{$pc} is not automatically collected by
14884@code{while-stepping}; you need to explicitly collect that register if
14885you need it. You may abbreviate @code{while-stepping} as @code{ws} or
b37052ae 14886@code{stepping}.
236f1d4d
SS
14887
14888@item set default-collect @var{expr1}, @var{expr2}, @dots{}
14889@kindex set default-collect
14890@cindex default collection action
14891This variable is a list of expressions to collect at each tracepoint
14892hit. It is effectively an additional @code{collect} action prepended
14893to every tracepoint action list. The expressions are parsed
14894individually for each tracepoint, so for instance a variable named
14895@code{xyz} may be interpreted as a global for one tracepoint, and a
14896local for another, as appropriate to the tracepoint's location.
14897
14898@item show default-collect
14899@kindex show default-collect
14900Show the list of expressions that are collected by default at each
14901tracepoint hit.
14902
b37052ae
EZ
14903@end table
14904
14905@node Listing Tracepoints
14906@subsection Listing Tracepoints
14907
14908@table @code
e5a67952
MS
14909@kindex info tracepoints @r{[}@var{n}@dots{}@r{]}
14910@kindex info tp @r{[}@var{n}@dots{}@r{]}
b37052ae 14911@cindex information about tracepoints
e5a67952 14912@item info tracepoints @r{[}@var{num}@dots{}@r{]}
1042e4c0
SS
14913Display information about the tracepoint @var{num}. If you don't
14914specify a tracepoint number, displays information about all the
14915tracepoints defined so far. The format is similar to that used for
14916@code{info breakpoints}; in fact, @code{info tracepoints} is the same
14917command, simply restricting itself to tracepoints.
14918
14919A tracepoint's listing may include additional information specific to
14920tracing:
b37052ae
EZ
14921
14922@itemize @bullet
14923@item
b37052ae 14924its passcount as given by the @code{passcount @var{n}} command
f2a8bc8a
YQ
14925
14926@item
14927the state about installed on target of each location
b37052ae
EZ
14928@end itemize
14929
14930@smallexample
14931(@value{GDBP}) @b{info trace}
1042e4c0
SS
14932Num Type Disp Enb Address What
149331 tracepoint keep y 0x0804ab57 in foo() at main.cxx:7
5a9351ae
SS
14934 while-stepping 20
14935 collect globfoo, $regs
14936 end
14937 collect globfoo2
14938 end
1042e4c0 14939 pass count 1200
f2a8bc8a
YQ
149402 tracepoint keep y <MULTIPLE>
14941 collect $eip
149422.1 y 0x0804859c in func4 at change-loc.h:35
14943 installed on target
149442.2 y 0xb7ffc480 in func4 at change-loc.h:35
14945 installed on target
149462.3 y <PENDING> set_tracepoint
149473 tracepoint keep y 0x080485b1 in foo at change-loc.c:29
14948 not installed on target
b37052ae
EZ
14949(@value{GDBP})
14950@end smallexample
14951
14952@noindent
14953This command can be abbreviated @code{info tp}.
14954@end table
14955
0fb4aa4b
PA
14956@node Listing Static Tracepoint Markers
14957@subsection Listing Static Tracepoint Markers
14958
14959@table @code
14960@kindex info static-tracepoint-markers
14961@cindex information about static tracepoint markers
14962@item info static-tracepoint-markers
14963Display information about all static tracepoint markers defined in the
14964program.
14965
14966For each marker, the following columns are printed:
14967
14968@table @emph
14969@item Count
14970An incrementing counter, output to help readability. This is not a
14971stable identifier.
14972@item ID
14973The marker ID, as reported by the target.
14974@item Enabled or Disabled
14975Probed markers are tagged with @samp{y}. @samp{n} identifies marks
14976that are not enabled.
14977@item Address
14978Where the marker is in your program, as a memory address.
14979@item What
14980Where the marker is in the source for your program, as a file and line
14981number. If the debug information included in the program does not
14982allow @value{GDBN} to locate the source of the marker, this column
14983will be left blank.
14984@end table
14985
14986@noindent
14987In addition, the following information may be printed for each marker:
14988
14989@table @emph
14990@item Data
14991User data passed to the tracing library by the marker call. In the
14992UST backend, this is the format string passed as argument to the
14993marker call.
14994@item Static tracepoints probing the marker
14995The list of static tracepoints attached to the marker.
14996@end table
14997
14998@smallexample
14999(@value{GDBP}) info static-tracepoint-markers
15000Cnt ID Enb Address What
150011 ust/bar2 y 0x0000000000400e1a in main at stexample.c:25
15002 Data: number1 %d number2 %d
15003 Probed by static tracepoints: #2
150042 ust/bar33 n 0x0000000000400c87 in main at stexample.c:24
15005 Data: str %s
15006(@value{GDBP})
15007@end smallexample
15008@end table
15009
79a6e687
BW
15010@node Starting and Stopping Trace Experiments
15011@subsection Starting and Stopping Trace Experiments
b37052ae
EZ
15012
15013@table @code
f196051f 15014@kindex tstart [ @var{notes} ]
b37052ae
EZ
15015@cindex start a new trace experiment
15016@cindex collected data discarded
15017@item tstart
f196051f
SS
15018This command starts the trace experiment, and begins collecting data.
15019It has the side effect of discarding all the data collected in the
15020trace buffer during the previous trace experiment. If any arguments
15021are supplied, they are taken as a note and stored with the trace
15022experiment's state. The notes may be arbitrary text, and are
15023especially useful with disconnected tracing in a multi-user context;
15024the notes can explain what the trace is doing, supply user contact
15025information, and so forth.
15026
15027@kindex tstop [ @var{notes} ]
b37052ae
EZ
15028@cindex stop a running trace experiment
15029@item tstop
f196051f
SS
15030This command stops the trace experiment. If any arguments are
15031supplied, they are recorded with the experiment as a note. This is
15032useful if you are stopping a trace started by someone else, for
15033instance if the trace is interfering with the system's behavior and
15034needs to be stopped quickly.
b37052ae 15035
68c71a2e 15036@strong{Note}: a trace experiment and data collection may stop
b37052ae
EZ
15037automatically if any tracepoint's passcount is reached
15038(@pxref{Tracepoint Passcounts}), or if the trace buffer becomes full.
15039
15040@kindex tstatus
15041@cindex status of trace data collection
15042@cindex trace experiment, status of
15043@item tstatus
15044This command displays the status of the current trace data
15045collection.
15046@end table
15047
15048Here is an example of the commands we described so far:
15049
15050@smallexample
15051(@value{GDBP}) @b{trace gdb_c_test}
15052(@value{GDBP}) @b{actions}
15053Enter actions for tracepoint #1, one per line.
15054> collect $regs,$locals,$args
15055> while-stepping 11
15056 > collect $regs
15057 > end
15058> end
15059(@value{GDBP}) @b{tstart}
15060 [time passes @dots{}]
15061(@value{GDBP}) @b{tstop}
15062@end smallexample
15063
03f2bd59 15064@anchor{disconnected tracing}
d5551862
SS
15065@cindex disconnected tracing
15066You can choose to continue running the trace experiment even if
15067@value{GDBN} disconnects from the target, voluntarily or
15068involuntarily. For commands such as @code{detach}, the debugger will
15069ask what you want to do with the trace. But for unexpected
15070terminations (@value{GDBN} crash, network outage), it would be
15071unfortunate to lose hard-won trace data, so the variable
15072@code{disconnected-tracing} lets you decide whether the trace should
15073continue running without @value{GDBN}.
15074
15075@table @code
15076@item set disconnected-tracing on
15077@itemx set disconnected-tracing off
15078@kindex set disconnected-tracing
15079Choose whether a tracing run should continue to run if @value{GDBN}
15080has disconnected from the target. Note that @code{detach} or
15081@code{quit} will ask you directly what to do about a running trace no
15082matter what this variable's setting, so the variable is mainly useful
15083for handling unexpected situations, such as loss of the network.
15084
15085@item show disconnected-tracing
15086@kindex show disconnected-tracing
15087Show the current choice for disconnected tracing.
15088
15089@end table
15090
15091When you reconnect to the target, the trace experiment may or may not
15092still be running; it might have filled the trace buffer in the
15093meantime, or stopped for one of the other reasons. If it is running,
15094it will continue after reconnection.
15095
15096Upon reconnection, the target will upload information about the
15097tracepoints in effect. @value{GDBN} will then compare that
15098information to the set of tracepoints currently defined, and attempt
15099to match them up, allowing for the possibility that the numbers may
15100have changed due to creation and deletion in the meantime. If one of
15101the target's tracepoints does not match any in @value{GDBN}, the
15102debugger will create a new tracepoint, so that you have a number with
15103which to specify that tracepoint. This matching-up process is
15104necessarily heuristic, and it may result in useless tracepoints being
15105created; you may simply delete them if they are of no use.
b37052ae 15106
4daf5ac0
SS
15107@cindex circular trace buffer
15108If your target agent supports a @dfn{circular trace buffer}, then you
15109can run a trace experiment indefinitely without filling the trace
15110buffer; when space runs out, the agent deletes already-collected trace
15111frames, oldest first, until there is enough room to continue
15112collecting. This is especially useful if your tracepoints are being
15113hit too often, and your trace gets terminated prematurely because the
15114buffer is full. To ask for a circular trace buffer, simply set
81896e36 15115@samp{circular-trace-buffer} to on. You can set this at any time,
4daf5ac0
SS
15116including during tracing; if the agent can do it, it will change
15117buffer handling on the fly, otherwise it will not take effect until
15118the next run.
15119
15120@table @code
15121@item set circular-trace-buffer on
15122@itemx set circular-trace-buffer off
15123@kindex set circular-trace-buffer
15124Choose whether a tracing run should use a linear or circular buffer
15125for trace data. A linear buffer will not lose any trace data, but may
15126fill up prematurely, while a circular buffer will discard old trace
15127data, but it will have always room for the latest tracepoint hits.
15128
15129@item show circular-trace-buffer
15130@kindex show circular-trace-buffer
15131Show the current choice for the trace buffer. Note that this may not
15132match the agent's current buffer handling, nor is it guaranteed to
15133match the setting that might have been in effect during a past run,
15134for instance if you are looking at frames from a trace file.
15135
15136@end table
15137
f6f899bf
HAQ
15138@table @code
15139@item set trace-buffer-size @var{n}
f81d1120 15140@itemx set trace-buffer-size unlimited
f6f899bf
HAQ
15141@kindex set trace-buffer-size
15142Request that the target use a trace buffer of @var{n} bytes. Not all
15143targets will honor the request; they may have a compiled-in size for
15144the trace buffer, or some other limitation. Set to a value of
f81d1120
PA
15145@code{unlimited} or @code{-1} to let the target use whatever size it
15146likes. This is also the default.
f6f899bf
HAQ
15147
15148@item show trace-buffer-size
15149@kindex show trace-buffer-size
15150Show the current requested size for the trace buffer. Note that this
15151will only match the actual size if the target supports size-setting,
15152and was able to handle the requested size. For instance, if the
15153target can only change buffer size between runs, this variable will
15154not reflect the change until the next run starts. Use @code{tstatus}
15155to get a report of the actual buffer size.
15156@end table
15157
f196051f
SS
15158@table @code
15159@item set trace-user @var{text}
15160@kindex set trace-user
15161
15162@item show trace-user
15163@kindex show trace-user
15164
15165@item set trace-notes @var{text}
15166@kindex set trace-notes
15167Set the trace run's notes.
15168
15169@item show trace-notes
15170@kindex show trace-notes
15171Show the trace run's notes.
15172
15173@item set trace-stop-notes @var{text}
15174@kindex set trace-stop-notes
15175Set the trace run's stop notes. The handling of the note is as for
15176@code{tstop} arguments; the set command is convenient way to fix a
15177stop note that is mistaken or incomplete.
15178
15179@item show trace-stop-notes
15180@kindex show trace-stop-notes
15181Show the trace run's stop notes.
15182
15183@end table
15184
c9429232
SS
15185@node Tracepoint Restrictions
15186@subsection Tracepoint Restrictions
15187
15188@cindex tracepoint restrictions
15189There are a number of restrictions on the use of tracepoints. As
15190described above, tracepoint data gathering occurs on the target
15191without interaction from @value{GDBN}. Thus the full capabilities of
15192the debugger are not available during data gathering, and then at data
15193examination time, you will be limited by only having what was
15194collected. The following items describe some common problems, but it
15195is not exhaustive, and you may run into additional difficulties not
15196mentioned here.
15197
15198@itemize @bullet
15199
15200@item
15201Tracepoint expressions are intended to gather objects (lvalues). Thus
15202the full flexibility of GDB's expression evaluator is not available.
15203You cannot call functions, cast objects to aggregate types, access
15204convenience variables or modify values (except by assignment to trace
15205state variables). Some language features may implicitly call
15206functions (for instance Objective-C fields with accessors), and therefore
15207cannot be collected either.
15208
15209@item
15210Collection of local variables, either individually or in bulk with
15211@code{$locals} or @code{$args}, during @code{while-stepping} may
15212behave erratically. The stepping action may enter a new scope (for
15213instance by stepping into a function), or the location of the variable
15214may change (for instance it is loaded into a register). The
15215tracepoint data recorded uses the location information for the
15216variables that is correct for the tracepoint location. When the
15217tracepoint is created, it is not possible, in general, to determine
15218where the steps of a @code{while-stepping} sequence will advance the
15219program---particularly if a conditional branch is stepped.
15220
15221@item
15222Collection of an incompletely-initialized or partially-destroyed object
15223may result in something that @value{GDBN} cannot display, or displays
15224in a misleading way.
15225
15226@item
15227When @value{GDBN} displays a pointer to character it automatically
15228dereferences the pointer to also display characters of the string
15229being pointed to. However, collecting the pointer during tracing does
15230not automatically collect the string. You need to explicitly
15231dereference the pointer and provide size information if you want to
15232collect not only the pointer, but the memory pointed to. For example,
15233@code{*ptr@@50} can be used to collect the 50 element array pointed to
15234by @code{ptr}.
15235
15236@item
15237It is not possible to collect a complete stack backtrace at a
15238tracepoint. Instead, you may collect the registers and a few hundred
d99f7e48 15239bytes from the stack pointer with something like @code{*(unsigned char *)$esp@@300}
c9429232
SS
15240(adjust to use the name of the actual stack pointer register on your
15241target architecture, and the amount of stack you wish to capture).
15242Then the @code{backtrace} command will show a partial backtrace when
15243using a trace frame. The number of stack frames that can be examined
15244depends on the sizes of the frames in the collected stack. Note that
15245if you ask for a block so large that it goes past the bottom of the
15246stack, the target agent may report an error trying to read from an
15247invalid address.
15248
af54718e
SS
15249@item
15250If you do not collect registers at a tracepoint, @value{GDBN} can
15251infer that the value of @code{$pc} must be the same as the address of
15252the tracepoint and use that when you are looking at a trace frame
15253for that tracepoint. However, this cannot work if the tracepoint has
15254multiple locations (for instance if it was set in a function that was
15255inlined), or if it has a @code{while-stepping} loop. In those cases
15256@value{GDBN} will warn you that it can't infer @code{$pc}, and default
15257it to zero.
15258
c9429232
SS
15259@end itemize
15260
b37052ae 15261@node Analyze Collected Data
79a6e687 15262@section Using the Collected Data
b37052ae
EZ
15263
15264After the tracepoint experiment ends, you use @value{GDBN} commands
15265for examining the trace data. The basic idea is that each tracepoint
15266collects a trace @dfn{snapshot} every time it is hit and another
15267snapshot every time it single-steps. All these snapshots are
15268consecutively numbered from zero and go into a buffer, and you can
15269examine them later. The way you examine them is to @dfn{focus} on a
15270specific trace snapshot. When the remote stub is focused on a trace
15271snapshot, it will respond to all @value{GDBN} requests for memory and
15272registers by reading from the buffer which belongs to that snapshot,
15273rather than from @emph{real} memory or registers of the program being
15274debugged. This means that @strong{all} @value{GDBN} commands
15275(@code{print}, @code{info registers}, @code{backtrace}, etc.) will
15276behave as if we were currently debugging the program state as it was
15277when the tracepoint occurred. Any requests for data that are not in
15278the buffer will fail.
15279
15280@menu
15281* tfind:: How to select a trace snapshot
15282* tdump:: How to display all data for a snapshot
6149aea9 15283* save tracepoints:: How to save tracepoints for a future run
b37052ae
EZ
15284@end menu
15285
15286@node tfind
15287@subsection @code{tfind @var{n}}
15288
15289@kindex tfind
15290@cindex select trace snapshot
15291@cindex find trace snapshot
15292The basic command for selecting a trace snapshot from the buffer is
15293@code{tfind @var{n}}, which finds trace snapshot number @var{n},
15294counting from zero. If no argument @var{n} is given, the next
15295snapshot is selected.
15296
15297Here are the various forms of using the @code{tfind} command.
15298
15299@table @code
15300@item tfind start
15301Find the first snapshot in the buffer. This is a synonym for
15302@code{tfind 0} (since 0 is the number of the first snapshot).
15303
15304@item tfind none
15305Stop debugging trace snapshots, resume @emph{live} debugging.
15306
15307@item tfind end
15308Same as @samp{tfind none}.
15309
15310@item tfind
310cdbb6
YQ
15311No argument means find the next trace snapshot or find the first
15312one if no trace snapshot is selected.
b37052ae
EZ
15313
15314@item tfind -
15315Find the previous trace snapshot before the current one. This permits
15316retracing earlier steps.
15317
15318@item tfind tracepoint @var{num}
15319Find the next snapshot associated with tracepoint @var{num}. Search
15320proceeds forward from the last examined trace snapshot. If no
15321argument @var{num} is given, it means find the next snapshot collected
15322for the same tracepoint as the current snapshot.
15323
15324@item tfind pc @var{addr}
15325Find the next snapshot associated with the value @var{addr} of the
15326program counter. Search proceeds forward from the last examined trace
15327snapshot. If no argument @var{addr} is given, it means find the next
15328snapshot with the same value of PC as the current snapshot.
15329
15330@item tfind outside @var{addr1}, @var{addr2}
15331Find the next snapshot whose PC is outside the given range of
081dfbf7 15332addresses (exclusive).
b37052ae
EZ
15333
15334@item tfind range @var{addr1}, @var{addr2}
15335Find the next snapshot whose PC is between @var{addr1} and
081dfbf7 15336@var{addr2} (inclusive).
b37052ae
EZ
15337
15338@item tfind line @r{[}@var{file}:@r{]}@var{n}
15339Find the next snapshot associated with the source line @var{n}. If
15340the optional argument @var{file} is given, refer to line @var{n} in
15341that source file. Search proceeds forward from the last examined
15342trace snapshot. If no argument @var{n} is given, it means find the
15343next line other than the one currently being examined; thus saying
15344@code{tfind line} repeatedly can appear to have the same effect as
15345stepping from line to line in a @emph{live} debugging session.
15346@end table
15347
15348The default arguments for the @code{tfind} commands are specifically
15349designed to make it easy to scan through the trace buffer. For
15350instance, @code{tfind} with no argument selects the next trace
15351snapshot, and @code{tfind -} with no argument selects the previous
15352trace snapshot. So, by giving one @code{tfind} command, and then
15353simply hitting @key{RET} repeatedly you can examine all the trace
15354snapshots in order. Or, by saying @code{tfind -} and then hitting
15355@key{RET} repeatedly you can examine the snapshots in reverse order.
15356The @code{tfind line} command with no argument selects the snapshot
15357for the next source line executed. The @code{tfind pc} command with
15358no argument selects the next snapshot with the same program counter
15359(PC) as the current frame. The @code{tfind tracepoint} command with
15360no argument selects the next trace snapshot collected by the same
15361tracepoint as the current one.
15362
15363In addition to letting you scan through the trace buffer manually,
15364these commands make it easy to construct @value{GDBN} scripts that
15365scan through the trace buffer and print out whatever collected data
15366you are interested in. Thus, if we want to examine the PC, FP, and SP
15367registers from each trace frame in the buffer, we can say this:
15368
15369@smallexample
15370(@value{GDBP}) @b{tfind start}
15371(@value{GDBP}) @b{while ($trace_frame != -1)}
15372> printf "Frame %d, PC = %08X, SP = %08X, FP = %08X\n", \
15373 $trace_frame, $pc, $sp, $fp
15374> tfind
15375> end
15376
15377Frame 0, PC = 0020DC64, SP = 0030BF3C, FP = 0030BF44
15378Frame 1, PC = 0020DC6C, SP = 0030BF38, FP = 0030BF44
15379Frame 2, PC = 0020DC70, SP = 0030BF34, FP = 0030BF44
15380Frame 3, PC = 0020DC74, SP = 0030BF30, FP = 0030BF44
15381Frame 4, PC = 0020DC78, SP = 0030BF2C, FP = 0030BF44
15382Frame 5, PC = 0020DC7C, SP = 0030BF28, FP = 0030BF44
15383Frame 6, PC = 0020DC80, SP = 0030BF24, FP = 0030BF44
15384Frame 7, PC = 0020DC84, SP = 0030BF20, FP = 0030BF44
15385Frame 8, PC = 0020DC88, SP = 0030BF1C, FP = 0030BF44
15386Frame 9, PC = 0020DC8E, SP = 0030BF18, FP = 0030BF44
15387Frame 10, PC = 00203F6C, SP = 0030BE3C, FP = 0030BF14
15388@end smallexample
15389
15390Or, if we want to examine the variable @code{X} at each source line in
15391the buffer:
15392
15393@smallexample
15394(@value{GDBP}) @b{tfind start}
15395(@value{GDBP}) @b{while ($trace_frame != -1)}
15396> printf "Frame %d, X == %d\n", $trace_frame, X
15397> tfind line
15398> end
15399
15400Frame 0, X = 1
15401Frame 7, X = 2
15402Frame 13, X = 255
15403@end smallexample
15404
15405@node tdump
15406@subsection @code{tdump}
15407@kindex tdump
15408@cindex dump all data collected at tracepoint
15409@cindex tracepoint data, display
15410
15411This command takes no arguments. It prints all the data collected at
15412the current trace snapshot.
15413
15414@smallexample
15415(@value{GDBP}) @b{trace 444}
15416(@value{GDBP}) @b{actions}
15417Enter actions for tracepoint #2, one per line:
15418> collect $regs, $locals, $args, gdb_long_test
15419> end
15420
15421(@value{GDBP}) @b{tstart}
15422
15423(@value{GDBP}) @b{tfind line 444}
15424#0 gdb_test (p1=0x11, p2=0x22, p3=0x33, p4=0x44, p5=0x55, p6=0x66)
15425at gdb_test.c:444
15426444 printp( "%s: arguments = 0x%X 0x%X 0x%X 0x%X 0x%X 0x%X\n", )
15427
15428(@value{GDBP}) @b{tdump}
15429Data collected at tracepoint 2, trace frame 1:
15430d0 0xc4aa0085 -995491707
15431d1 0x18 24
15432d2 0x80 128
15433d3 0x33 51
15434d4 0x71aea3d 119204413
15435d5 0x22 34
15436d6 0xe0 224
15437d7 0x380035 3670069
15438a0 0x19e24a 1696330
15439a1 0x3000668 50333288
15440a2 0x100 256
15441a3 0x322000 3284992
15442a4 0x3000698 50333336
15443a5 0x1ad3cc 1758156
15444fp 0x30bf3c 0x30bf3c
15445sp 0x30bf34 0x30bf34
15446ps 0x0 0
15447pc 0x20b2c8 0x20b2c8
15448fpcontrol 0x0 0
15449fpstatus 0x0 0
15450fpiaddr 0x0 0
15451p = 0x20e5b4 "gdb-test"
15452p1 = (void *) 0x11
15453p2 = (void *) 0x22
15454p3 = (void *) 0x33
15455p4 = (void *) 0x44
15456p5 = (void *) 0x55
15457p6 = (void *) 0x66
15458gdb_long_test = 17 '\021'
15459
15460(@value{GDBP})
15461@end smallexample
15462
af54718e
SS
15463@code{tdump} works by scanning the tracepoint's current collection
15464actions and printing the value of each expression listed. So
15465@code{tdump} can fail, if after a run, you change the tracepoint's
15466actions to mention variables that were not collected during the run.
15467
15468Also, for tracepoints with @code{while-stepping} loops, @code{tdump}
15469uses the collected value of @code{$pc} to distinguish between trace
15470frames that were collected at the tracepoint hit, and frames that were
15471collected while stepping. This allows it to correctly choose whether
15472to display the basic list of collections, or the collections from the
15473body of the while-stepping loop. However, if @code{$pc} was not collected,
15474then @code{tdump} will always attempt to dump using the basic collection
15475list, and may fail if a while-stepping frame does not include all the
15476same data that is collected at the tracepoint hit.
15477@c This is getting pretty arcane, example would be good.
15478
6149aea9
PA
15479@node save tracepoints
15480@subsection @code{save tracepoints @var{filename}}
15481@kindex save tracepoints
b37052ae
EZ
15482@kindex save-tracepoints
15483@cindex save tracepoints for future sessions
15484
15485This command saves all current tracepoint definitions together with
15486their actions and passcounts, into a file @file{@var{filename}}
15487suitable for use in a later debugging session. To read the saved
15488tracepoint definitions, use the @code{source} command (@pxref{Command
6149aea9
PA
15489Files}). The @w{@code{save-tracepoints}} command is a deprecated
15490alias for @w{@code{save tracepoints}}
b37052ae
EZ
15491
15492@node Tracepoint Variables
15493@section Convenience Variables for Tracepoints
15494@cindex tracepoint variables
15495@cindex convenience variables for tracepoints
15496
15497@table @code
15498@vindex $trace_frame
15499@item (int) $trace_frame
15500The current trace snapshot (a.k.a.@: @dfn{frame}) number, or -1 if no
15501snapshot is selected.
15502
15503@vindex $tracepoint
15504@item (int) $tracepoint
15505The tracepoint for the current trace snapshot.
15506
15507@vindex $trace_line
15508@item (int) $trace_line
15509The line number for the current trace snapshot.
15510
15511@vindex $trace_file
15512@item (char []) $trace_file
15513The source file for the current trace snapshot.
15514
15515@vindex $trace_func
15516@item (char []) $trace_func
15517The name of the function containing @code{$tracepoint}.
15518@end table
15519
15520Note: @code{$trace_file} is not suitable for use in @code{printf},
15521use @code{output} instead.
15522
15523Here's a simple example of using these convenience variables for
15524stepping through all the trace snapshots and printing some of their
f61e138d
SS
15525data. Note that these are not the same as trace state variables,
15526which are managed by the target.
b37052ae
EZ
15527
15528@smallexample
15529(@value{GDBP}) @b{tfind start}
15530
15531(@value{GDBP}) @b{while $trace_frame != -1}
15532> output $trace_file
15533> printf ", line %d (tracepoint #%d)\n", $trace_line, $tracepoint
15534> tfind
15535> end
15536@end smallexample
15537
00bf0b85
SS
15538@node Trace Files
15539@section Using Trace Files
15540@cindex trace files
15541
15542In some situations, the target running a trace experiment may no
15543longer be available; perhaps it crashed, or the hardware was needed
15544for a different activity. To handle these cases, you can arrange to
15545dump the trace data into a file, and later use that file as a source
15546of trace data, via the @code{target tfile} command.
15547
15548@table @code
15549
15550@kindex tsave
15551@item tsave [ -r ] @var{filename}
d0353e76 15552@itemx tsave [-ctf] @var{dirname}
00bf0b85
SS
15553Save the trace data to @var{filename}. By default, this command
15554assumes that @var{filename} refers to the host filesystem, so if
15555necessary @value{GDBN} will copy raw trace data up from the target and
15556then save it. If the target supports it, you can also supply the
15557optional argument @code{-r} (``remote'') to direct the target to save
15558the data directly into @var{filename} in its own filesystem, which may be
15559more efficient if the trace buffer is very large. (Note, however, that
15560@code{target tfile} can only read from files accessible to the host.)
d0353e76 15561By default, this command will save trace frame in tfile format.
be06ba8c 15562You can supply the optional argument @code{-ctf} to save data in CTF
d0353e76
YQ
15563format. The @dfn{Common Trace Format} (CTF) is proposed as a trace format
15564that can be shared by multiple debugging and tracing tools. Please go to
15565@indicateurl{http://www.efficios.com/ctf} to get more information.
00bf0b85
SS
15566
15567@kindex target tfile
15568@kindex tfile
393fd4c3
YQ
15569@kindex target ctf
15570@kindex ctf
00bf0b85 15571@item target tfile @var{filename}
393fd4c3
YQ
15572@itemx target ctf @var{dirname}
15573Use the file named @var{filename} or directory named @var{dirname} as
15574a source of trace data. Commands that examine data work as they do with
15575a live target, but it is not possible to run any new trace experiments.
15576@code{tstatus} will report the state of the trace run at the moment
15577the data was saved, as well as the current trace frame you are examining.
697aa1b7 15578Both @var{filename} and @var{dirname} must be on a filesystem accessible to
393fd4c3
YQ
15579the host.
15580
15581@smallexample
15582(@value{GDBP}) target ctf ctf.ctf
15583(@value{GDBP}) tfind
15584Found trace frame 0, tracepoint 2
1558539 ++a; /* set tracepoint 1 here */
15586(@value{GDBP}) tdump
15587Data collected at tracepoint 2, trace frame 0:
15588i = 0
15589a = 0
15590b = 1 '\001'
15591c = @{"123", "456", "789", "123", "456", "789"@}
15592d = @{@{@{a = 1, b = 2@}, @{a = 3, b = 4@}@}, @{@{a = 5, b = 6@}, @{a = 7, b = 8@}@}@}
15593(@value{GDBP}) p b
15594$1 = 1
15595@end smallexample
00bf0b85
SS
15596
15597@end table
15598
df0cd8c5
JB
15599@node Overlays
15600@chapter Debugging Programs That Use Overlays
15601@cindex overlays
15602
15603If your program is too large to fit completely in your target system's
15604memory, you can sometimes use @dfn{overlays} to work around this
15605problem. @value{GDBN} provides some support for debugging programs that
15606use overlays.
15607
15608@menu
15609* How Overlays Work:: A general explanation of overlays.
15610* Overlay Commands:: Managing overlays in @value{GDBN}.
15611* Automatic Overlay Debugging:: @value{GDBN} can find out which overlays are
15612 mapped by asking the inferior.
15613* Overlay Sample Program:: A sample program using overlays.
15614@end menu
15615
15616@node How Overlays Work
15617@section How Overlays Work
15618@cindex mapped overlays
15619@cindex unmapped overlays
15620@cindex load address, overlay's
15621@cindex mapped address
15622@cindex overlay area
15623
15624Suppose you have a computer whose instruction address space is only 64
15625kilobytes long, but which has much more memory which can be accessed by
15626other means: special instructions, segment registers, or memory
15627management hardware, for example. Suppose further that you want to
15628adapt a program which is larger than 64 kilobytes to run on this system.
15629
15630One solution is to identify modules of your program which are relatively
15631independent, and need not call each other directly; call these modules
15632@dfn{overlays}. Separate the overlays from the main program, and place
15633their machine code in the larger memory. Place your main program in
15634instruction memory, but leave at least enough space there to hold the
15635largest overlay as well.
15636
15637Now, to call a function located in an overlay, you must first copy that
15638overlay's machine code from the large memory into the space set aside
15639for it in the instruction memory, and then jump to its entry point
15640there.
15641
c928edc0
AC
15642@c NB: In the below the mapped area's size is greater or equal to the
15643@c size of all overlays. This is intentional to remind the developer
15644@c that overlays don't necessarily need to be the same size.
15645
474c8240 15646@smallexample
df0cd8c5 15647@group
c928edc0
AC
15648 Data Instruction Larger
15649Address Space Address Space Address Space
15650+-----------+ +-----------+ +-----------+
15651| | | | | |
15652+-----------+ +-----------+ +-----------+<-- overlay 1
15653| program | | main | .----| overlay 1 | load address
15654| variables | | program | | +-----------+
15655| and heap | | | | | |
15656+-----------+ | | | +-----------+<-- overlay 2
15657| | +-----------+ | | | load address
15658+-----------+ | | | .-| overlay 2 |
15659 | | | | | |
15660 mapped --->+-----------+ | | +-----------+
15661 address | | | | | |
15662 | overlay | <-' | | |
15663 | area | <---' +-----------+<-- overlay 3
15664 | | <---. | | load address
15665 +-----------+ `--| overlay 3 |
15666 | | | |
15667 +-----------+ | |
15668 +-----------+
15669 | |
15670 +-----------+
15671
15672 @anchor{A code overlay}A code overlay
df0cd8c5 15673@end group
474c8240 15674@end smallexample
df0cd8c5 15675
c928edc0
AC
15676The diagram (@pxref{A code overlay}) shows a system with separate data
15677and instruction address spaces. To map an overlay, the program copies
15678its code from the larger address space to the instruction address space.
15679Since the overlays shown here all use the same mapped address, only one
15680may be mapped at a time. For a system with a single address space for
15681data and instructions, the diagram would be similar, except that the
15682program variables and heap would share an address space with the main
15683program and the overlay area.
df0cd8c5
JB
15684
15685An overlay loaded into instruction memory and ready for use is called a
15686@dfn{mapped} overlay; its @dfn{mapped address} is its address in the
15687instruction memory. An overlay not present (or only partially present)
15688in instruction memory is called @dfn{unmapped}; its @dfn{load address}
15689is its address in the larger memory. The mapped address is also called
15690the @dfn{virtual memory address}, or @dfn{VMA}; the load address is also
15691called the @dfn{load memory address}, or @dfn{LMA}.
15692
15693Unfortunately, overlays are not a completely transparent way to adapt a
15694program to limited instruction memory. They introduce a new set of
15695global constraints you must keep in mind as you design your program:
15696
15697@itemize @bullet
15698
15699@item
15700Before calling or returning to a function in an overlay, your program
15701must make sure that overlay is actually mapped. Otherwise, the call or
15702return will transfer control to the right address, but in the wrong
15703overlay, and your program will probably crash.
15704
15705@item
15706If the process of mapping an overlay is expensive on your system, you
15707will need to choose your overlays carefully to minimize their effect on
15708your program's performance.
15709
15710@item
15711The executable file you load onto your system must contain each
15712overlay's instructions, appearing at the overlay's load address, not its
15713mapped address. However, each overlay's instructions must be relocated
15714and its symbols defined as if the overlay were at its mapped address.
15715You can use GNU linker scripts to specify different load and relocation
15716addresses for pieces of your program; see @ref{Overlay Description,,,
15717ld.info, Using ld: the GNU linker}.
15718
15719@item
15720The procedure for loading executable files onto your system must be able
15721to load their contents into the larger address space as well as the
15722instruction and data spaces.
15723
15724@end itemize
15725
15726The overlay system described above is rather simple, and could be
15727improved in many ways:
15728
15729@itemize @bullet
15730
15731@item
15732If your system has suitable bank switch registers or memory management
15733hardware, you could use those facilities to make an overlay's load area
15734contents simply appear at their mapped address in instruction space.
15735This would probably be faster than copying the overlay to its mapped
15736area in the usual way.
15737
15738@item
15739If your overlays are small enough, you could set aside more than one
15740overlay area, and have more than one overlay mapped at a time.
15741
15742@item
15743You can use overlays to manage data, as well as instructions. In
15744general, data overlays are even less transparent to your design than
15745code overlays: whereas code overlays only require care when you call or
15746return to functions, data overlays require care every time you access
15747the data. Also, if you change the contents of a data overlay, you
15748must copy its contents back out to its load address before you can copy a
15749different data overlay into the same mapped area.
15750
15751@end itemize
15752
15753
15754@node Overlay Commands
15755@section Overlay Commands
15756
15757To use @value{GDBN}'s overlay support, each overlay in your program must
15758correspond to a separate section of the executable file. The section's
15759virtual memory address and load memory address must be the overlay's
15760mapped and load addresses. Identifying overlays with sections allows
15761@value{GDBN} to determine the appropriate address of a function or
15762variable, depending on whether the overlay is mapped or not.
15763
15764@value{GDBN}'s overlay commands all start with the word @code{overlay};
15765you can abbreviate this as @code{ov} or @code{ovly}. The commands are:
15766
15767@table @code
15768@item overlay off
4644b6e3 15769@kindex overlay
df0cd8c5
JB
15770Disable @value{GDBN}'s overlay support. When overlay support is
15771disabled, @value{GDBN} assumes that all functions and variables are
15772always present at their mapped addresses. By default, @value{GDBN}'s
15773overlay support is disabled.
15774
15775@item overlay manual
df0cd8c5
JB
15776@cindex manual overlay debugging
15777Enable @dfn{manual} overlay debugging. In this mode, @value{GDBN}
15778relies on you to tell it which overlays are mapped, and which are not,
15779using the @code{overlay map-overlay} and @code{overlay unmap-overlay}
15780commands described below.
15781
15782@item overlay map-overlay @var{overlay}
15783@itemx overlay map @var{overlay}
df0cd8c5
JB
15784@cindex map an overlay
15785Tell @value{GDBN} that @var{overlay} is now mapped; @var{overlay} must
15786be the name of the object file section containing the overlay. When an
15787overlay is mapped, @value{GDBN} assumes it can find the overlay's
15788functions and variables at their mapped addresses. @value{GDBN} assumes
15789that any other overlays whose mapped ranges overlap that of
15790@var{overlay} are now unmapped.
15791
15792@item overlay unmap-overlay @var{overlay}
15793@itemx overlay unmap @var{overlay}
df0cd8c5
JB
15794@cindex unmap an overlay
15795Tell @value{GDBN} that @var{overlay} is no longer mapped; @var{overlay}
15796must be the name of the object file section containing the overlay.
15797When an overlay is unmapped, @value{GDBN} assumes it can find the
15798overlay's functions and variables at their load addresses.
15799
15800@item overlay auto
df0cd8c5
JB
15801Enable @dfn{automatic} overlay debugging. In this mode, @value{GDBN}
15802consults a data structure the overlay manager maintains in the inferior
15803to see which overlays are mapped. For details, see @ref{Automatic
15804Overlay Debugging}.
15805
15806@item overlay load-target
15807@itemx overlay load
df0cd8c5
JB
15808@cindex reloading the overlay table
15809Re-read the overlay table from the inferior. Normally, @value{GDBN}
15810re-reads the table @value{GDBN} automatically each time the inferior
15811stops, so this command should only be necessary if you have changed the
15812overlay mapping yourself using @value{GDBN}. This command is only
15813useful when using automatic overlay debugging.
15814
15815@item overlay list-overlays
15816@itemx overlay list
15817@cindex listing mapped overlays
15818Display a list of the overlays currently mapped, along with their mapped
15819addresses, load addresses, and sizes.
15820
15821@end table
15822
15823Normally, when @value{GDBN} prints a code address, it includes the name
15824of the function the address falls in:
15825
474c8240 15826@smallexample
f7dc1244 15827(@value{GDBP}) print main
df0cd8c5 15828$3 = @{int ()@} 0x11a0 <main>
474c8240 15829@end smallexample
df0cd8c5
JB
15830@noindent
15831When overlay debugging is enabled, @value{GDBN} recognizes code in
15832unmapped overlays, and prints the names of unmapped functions with
15833asterisks around them. For example, if @code{foo} is a function in an
15834unmapped overlay, @value{GDBN} prints it this way:
15835
474c8240 15836@smallexample
f7dc1244 15837(@value{GDBP}) overlay list
df0cd8c5 15838No sections are mapped.
f7dc1244 15839(@value{GDBP}) print foo
df0cd8c5 15840$5 = @{int (int)@} 0x100000 <*foo*>
474c8240 15841@end smallexample
df0cd8c5
JB
15842@noindent
15843When @code{foo}'s overlay is mapped, @value{GDBN} prints the function's
15844name normally:
15845
474c8240 15846@smallexample
f7dc1244 15847(@value{GDBP}) overlay list
b383017d 15848Section .ov.foo.text, loaded at 0x100000 - 0x100034,
df0cd8c5 15849 mapped at 0x1016 - 0x104a
f7dc1244 15850(@value{GDBP}) print foo
df0cd8c5 15851$6 = @{int (int)@} 0x1016 <foo>
474c8240 15852@end smallexample
df0cd8c5
JB
15853
15854When overlay debugging is enabled, @value{GDBN} can find the correct
15855address for functions and variables in an overlay, whether or not the
15856overlay is mapped. This allows most @value{GDBN} commands, like
15857@code{break} and @code{disassemble}, to work normally, even on unmapped
15858code. However, @value{GDBN}'s breakpoint support has some limitations:
15859
15860@itemize @bullet
15861@item
15862@cindex breakpoints in overlays
15863@cindex overlays, setting breakpoints in
15864You can set breakpoints in functions in unmapped overlays, as long as
15865@value{GDBN} can write to the overlay at its load address.
15866@item
15867@value{GDBN} can not set hardware or simulator-based breakpoints in
15868unmapped overlays. However, if you set a breakpoint at the end of your
15869overlay manager (and tell @value{GDBN} which overlays are now mapped, if
15870you are using manual overlay management), @value{GDBN} will re-set its
15871breakpoints properly.
15872@end itemize
15873
15874
15875@node Automatic Overlay Debugging
15876@section Automatic Overlay Debugging
15877@cindex automatic overlay debugging
15878
15879@value{GDBN} can automatically track which overlays are mapped and which
15880are not, given some simple co-operation from the overlay manager in the
15881inferior. If you enable automatic overlay debugging with the
15882@code{overlay auto} command (@pxref{Overlay Commands}), @value{GDBN}
15883looks in the inferior's memory for certain variables describing the
15884current state of the overlays.
15885
15886Here are the variables your overlay manager must define to support
15887@value{GDBN}'s automatic overlay debugging:
15888
15889@table @asis
15890
15891@item @code{_ovly_table}:
15892This variable must be an array of the following structures:
15893
474c8240 15894@smallexample
df0cd8c5
JB
15895struct
15896@{
15897 /* The overlay's mapped address. */
15898 unsigned long vma;
15899
15900 /* The size of the overlay, in bytes. */
15901 unsigned long size;
15902
15903 /* The overlay's load address. */
15904 unsigned long lma;
15905
15906 /* Non-zero if the overlay is currently mapped;
15907 zero otherwise. */
15908 unsigned long mapped;
15909@}
474c8240 15910@end smallexample
df0cd8c5
JB
15911
15912@item @code{_novlys}:
15913This variable must be a four-byte signed integer, holding the total
15914number of elements in @code{_ovly_table}.
15915
15916@end table
15917
15918To decide whether a particular overlay is mapped or not, @value{GDBN}
15919looks for an entry in @w{@code{_ovly_table}} whose @code{vma} and
15920@code{lma} members equal the VMA and LMA of the overlay's section in the
15921executable file. When @value{GDBN} finds a matching entry, it consults
15922the entry's @code{mapped} member to determine whether the overlay is
15923currently mapped.
15924
81d46470 15925In addition, your overlay manager may define a function called
def71bfa 15926@code{_ovly_debug_event}. If this function is defined, @value{GDBN}
81d46470
MS
15927will silently set a breakpoint there. If the overlay manager then
15928calls this function whenever it has changed the overlay table, this
15929will enable @value{GDBN} to accurately keep track of which overlays
15930are in program memory, and update any breakpoints that may be set
b383017d 15931in overlays. This will allow breakpoints to work even if the
81d46470
MS
15932overlays are kept in ROM or other non-writable memory while they
15933are not being executed.
df0cd8c5
JB
15934
15935@node Overlay Sample Program
15936@section Overlay Sample Program
15937@cindex overlay example program
15938
15939When linking a program which uses overlays, you must place the overlays
15940at their load addresses, while relocating them to run at their mapped
15941addresses. To do this, you must write a linker script (@pxref{Overlay
15942Description,,, ld.info, Using ld: the GNU linker}). Unfortunately,
15943since linker scripts are specific to a particular host system, target
15944architecture, and target memory layout, this manual cannot provide
15945portable sample code demonstrating @value{GDBN}'s overlay support.
15946
15947However, the @value{GDBN} source distribution does contain an overlaid
15948program, with linker scripts for a few systems, as part of its test
15949suite. The program consists of the following files from
15950@file{gdb/testsuite/gdb.base}:
15951
15952@table @file
15953@item overlays.c
15954The main program file.
15955@item ovlymgr.c
15956A simple overlay manager, used by @file{overlays.c}.
15957@item foo.c
15958@itemx bar.c
15959@itemx baz.c
15960@itemx grbx.c
15961Overlay modules, loaded and used by @file{overlays.c}.
15962@item d10v.ld
15963@itemx m32r.ld
15964Linker scripts for linking the test program on the @code{d10v-elf}
15965and @code{m32r-elf} targets.
15966@end table
15967
15968You can build the test program using the @code{d10v-elf} GCC
15969cross-compiler like this:
15970
474c8240 15971@smallexample
df0cd8c5
JB
15972$ d10v-elf-gcc -g -c overlays.c
15973$ d10v-elf-gcc -g -c ovlymgr.c
15974$ d10v-elf-gcc -g -c foo.c
15975$ d10v-elf-gcc -g -c bar.c
15976$ d10v-elf-gcc -g -c baz.c
15977$ d10v-elf-gcc -g -c grbx.c
15978$ d10v-elf-gcc -g overlays.o ovlymgr.o foo.o bar.o \
15979 baz.o grbx.o -Wl,-Td10v.ld -o overlays
474c8240 15980@end smallexample
df0cd8c5
JB
15981
15982The build process is identical for any other architecture, except that
15983you must substitute the appropriate compiler and linker script for the
15984target system for @code{d10v-elf-gcc} and @code{d10v.ld}.
15985
15986
6d2ebf8b 15987@node Languages
c906108c
SS
15988@chapter Using @value{GDBN} with Different Languages
15989@cindex languages
15990
c906108c
SS
15991Although programming languages generally have common aspects, they are
15992rarely expressed in the same manner. For instance, in ANSI C,
15993dereferencing a pointer @code{p} is accomplished by @code{*p}, but in
15994Modula-2, it is accomplished by @code{p^}. Values can also be
5d161b24 15995represented (and displayed) differently. Hex numbers in C appear as
c906108c 15996@samp{0x1ae}, while in Modula-2 they appear as @samp{1AEH}.
c906108c
SS
15997
15998@cindex working language
15999Language-specific information is built into @value{GDBN} for some languages,
16000allowing you to express operations like the above in your program's
16001native language, and allowing @value{GDBN} to output values in a manner
16002consistent with the syntax of your program's native language. The
16003language you use to build expressions is called the @dfn{working
16004language}.
16005
16006@menu
16007* Setting:: Switching between source languages
16008* Show:: Displaying the language
c906108c 16009* Checks:: Type and range checks
79a6e687
BW
16010* Supported Languages:: Supported languages
16011* Unsupported Languages:: Unsupported languages
c906108c
SS
16012@end menu
16013
6d2ebf8b 16014@node Setting
79a6e687 16015@section Switching Between Source Languages
c906108c
SS
16016
16017There are two ways to control the working language---either have @value{GDBN}
16018set it automatically, or select it manually yourself. You can use the
16019@code{set language} command for either purpose. On startup, @value{GDBN}
16020defaults to setting the language automatically. The working language is
16021used to determine how expressions you type are interpreted, how values
16022are printed, etc.
16023
16024In addition to the working language, every source file that
16025@value{GDBN} knows about has its own working language. For some object
16026file formats, the compiler might indicate which language a particular
16027source file is in. However, most of the time @value{GDBN} infers the
16028language from the name of the file. The language of a source file
b37052ae 16029controls whether C@t{++} names are demangled---this way @code{backtrace} can
c906108c 16030show each frame appropriately for its own language. There is no way to
d4f3574e
SS
16031set the language of a source file from within @value{GDBN}, but you can
16032set the language associated with a filename extension. @xref{Show, ,
79a6e687 16033Displaying the Language}.
c906108c
SS
16034
16035This is most commonly a problem when you use a program, such
5d161b24 16036as @code{cfront} or @code{f2c}, that generates C but is written in
c906108c
SS
16037another language. In that case, make the
16038program use @code{#line} directives in its C output; that way
16039@value{GDBN} will know the correct language of the source code of the original
16040program, and will display that source code, not the generated C code.
16041
16042@menu
16043* Filenames:: Filename extensions and languages.
16044* Manually:: Setting the working language manually
16045* Automatically:: Having @value{GDBN} infer the source language
16046@end menu
16047
6d2ebf8b 16048@node Filenames
79a6e687 16049@subsection List of Filename Extensions and Languages
c906108c
SS
16050
16051If a source file name ends in one of the following extensions, then
16052@value{GDBN} infers that its language is the one indicated.
16053
16054@table @file
e07c999f
PH
16055@item .ada
16056@itemx .ads
16057@itemx .adb
16058@itemx .a
16059Ada source file.
c906108c
SS
16060
16061@item .c
16062C source file
16063
16064@item .C
16065@itemx .cc
16066@itemx .cp
16067@itemx .cpp
16068@itemx .cxx
16069@itemx .c++
b37052ae 16070C@t{++} source file
c906108c 16071
6aecb9c2
JB
16072@item .d
16073D source file
16074
b37303ee
AF
16075@item .m
16076Objective-C source file
16077
c906108c
SS
16078@item .f
16079@itemx .F
16080Fortran source file
16081
c906108c
SS
16082@item .mod
16083Modula-2 source file
c906108c
SS
16084
16085@item .s
16086@itemx .S
16087Assembler source file. This actually behaves almost like C, but
16088@value{GDBN} does not skip over function prologues when stepping.
16089@end table
16090
16091In addition, you may set the language associated with a filename
79a6e687 16092extension. @xref{Show, , Displaying the Language}.
c906108c 16093
6d2ebf8b 16094@node Manually
79a6e687 16095@subsection Setting the Working Language
c906108c
SS
16096
16097If you allow @value{GDBN} to set the language automatically,
16098expressions are interpreted the same way in your debugging session and
16099your program.
16100
16101@kindex set language
16102If you wish, you may set the language manually. To do this, issue the
16103command @samp{set language @var{lang}}, where @var{lang} is the name of
5d161b24 16104a language, such as
c906108c 16105@code{c} or @code{modula-2}.
c906108c
SS
16106For a list of the supported languages, type @samp{set language}.
16107
c906108c
SS
16108Setting the language manually prevents @value{GDBN} from updating the working
16109language automatically. This can lead to confusion if you try
16110to debug a program when the working language is not the same as the
16111source language, when an expression is acceptable to both
16112languages---but means different things. For instance, if the current
16113source file were written in C, and @value{GDBN} was parsing Modula-2, a
16114command such as:
16115
474c8240 16116@smallexample
c906108c 16117print a = b + c
474c8240 16118@end smallexample
c906108c
SS
16119
16120@noindent
16121might not have the effect you intended. In C, this means to add
16122@code{b} and @code{c} and place the result in @code{a}. The result
16123printed would be the value of @code{a}. In Modula-2, this means to compare
16124@code{a} to the result of @code{b+c}, yielding a @code{BOOLEAN} value.
c906108c 16125
6d2ebf8b 16126@node Automatically
79a6e687 16127@subsection Having @value{GDBN} Infer the Source Language
c906108c
SS
16128
16129To have @value{GDBN} set the working language automatically, use
16130@samp{set language local} or @samp{set language auto}. @value{GDBN}
16131then infers the working language. That is, when your program stops in a
16132frame (usually by encountering a breakpoint), @value{GDBN} sets the
16133working language to the language recorded for the function in that
16134frame. If the language for a frame is unknown (that is, if the function
16135or block corresponding to the frame was defined in a source file that
16136does not have a recognized extension), the current working language is
16137not changed, and @value{GDBN} issues a warning.
16138
16139This may not seem necessary for most programs, which are written
16140entirely in one source language. However, program modules and libraries
16141written in one source language can be used by a main program written in
16142a different source language. Using @samp{set language auto} in this
16143case frees you from having to set the working language manually.
16144
6d2ebf8b 16145@node Show
79a6e687 16146@section Displaying the Language
c906108c
SS
16147
16148The following commands help you find out which language is the
16149working language, and also what language source files were written in.
16150
c906108c
SS
16151@table @code
16152@item show language
403cb6b1 16153@anchor{show language}
9c16f35a 16154@kindex show language
c906108c
SS
16155Display the current working language. This is the
16156language you can use with commands such as @code{print} to
16157build and compute expressions that may involve variables in your program.
16158
16159@item info frame
4644b6e3 16160@kindex info frame@r{, show the source language}
5d161b24 16161Display the source language for this frame. This language becomes the
c906108c 16162working language if you use an identifier from this frame.
79a6e687 16163@xref{Frame Info, ,Information about a Frame}, to identify the other
c906108c
SS
16164information listed here.
16165
16166@item info source
4644b6e3 16167@kindex info source@r{, show the source language}
c906108c 16168Display the source language of this source file.
5d161b24 16169@xref{Symbols, ,Examining the Symbol Table}, to identify the other
c906108c
SS
16170information listed here.
16171@end table
16172
16173In unusual circumstances, you may have source files with extensions
16174not in the standard list. You can then set the extension associated
16175with a language explicitly:
16176
c906108c 16177@table @code
09d4efe1 16178@item set extension-language @var{ext} @var{language}
9c16f35a 16179@kindex set extension-language
09d4efe1
EZ
16180Tell @value{GDBN} that source files with extension @var{ext} are to be
16181assumed as written in the source language @var{language}.
c906108c
SS
16182
16183@item info extensions
9c16f35a 16184@kindex info extensions
c906108c
SS
16185List all the filename extensions and the associated languages.
16186@end table
16187
6d2ebf8b 16188@node Checks
79a6e687 16189@section Type and Range Checking
c906108c 16190
c906108c
SS
16191Some languages are designed to guard you against making seemingly common
16192errors through a series of compile- and run-time checks. These include
a451cb65 16193checking the type of arguments to functions and operators and making
c906108c
SS
16194sure mathematical overflows are caught at run time. Checks such as
16195these help to ensure a program's correctness once it has been compiled
a451cb65 16196by eliminating type mismatches and providing active checks for range
c906108c
SS
16197errors when your program is running.
16198
a451cb65
KS
16199By default @value{GDBN} checks for these errors according to the
16200rules of the current source language. Although @value{GDBN} does not check
16201the statements in your program, it can check expressions entered directly
16202into @value{GDBN} for evaluation via the @code{print} command, for example.
c906108c
SS
16203
16204@menu
16205* Type Checking:: An overview of type checking
16206* Range Checking:: An overview of range checking
16207@end menu
16208
16209@cindex type checking
16210@cindex checks, type
6d2ebf8b 16211@node Type Checking
79a6e687 16212@subsection An Overview of Type Checking
c906108c 16213
a451cb65 16214Some languages, such as C and C@t{++}, are strongly typed, meaning that the
c906108c
SS
16215arguments to operators and functions have to be of the correct type,
16216otherwise an error occurs. These checks prevent type mismatch
16217errors from ever causing any run-time problems. For example,
16218
16219@smallexample
a451cb65
KS
16220int klass::my_method(char *b) @{ return b ? 1 : 2; @}
16221
16222(@value{GDBP}) print obj.my_method (0)
16223$1 = 2
c906108c 16224@exdent but
a451cb65
KS
16225(@value{GDBP}) print obj.my_method (0x1234)
16226Cannot resolve method klass::my_method to any overloaded instance
c906108c
SS
16227@end smallexample
16228
a451cb65
KS
16229The second example fails because in C@t{++} the integer constant
16230@samp{0x1234} is not type-compatible with the pointer parameter type.
c906108c 16231
a451cb65
KS
16232For the expressions you use in @value{GDBN} commands, you can tell
16233@value{GDBN} to not enforce strict type checking or
5d161b24 16234to treat any mismatches as errors and abandon the expression;
a451cb65
KS
16235When type checking is disabled, @value{GDBN} successfully evaluates
16236expressions like the second example above.
c906108c 16237
a451cb65 16238Even if type checking is off, there may be other reasons
5d161b24
DB
16239related to type that prevent @value{GDBN} from evaluating an expression.
16240For instance, @value{GDBN} does not know how to add an @code{int} and
16241a @code{struct foo}. These particular type errors have nothing to do
a451cb65
KS
16242with the language in use and usually arise from expressions which make
16243little sense to evaluate anyway.
c906108c 16244
a451cb65 16245@value{GDBN} provides some additional commands for controlling type checking:
c906108c 16246
c906108c
SS
16247@kindex set check type
16248@kindex show check type
16249@table @code
c906108c
SS
16250@item set check type on
16251@itemx set check type off
a451cb65 16252Set strict type checking on or off. If any type mismatches occur in
d4f3574e 16253evaluating an expression while type checking is on, @value{GDBN} prints a
c906108c
SS
16254message and aborts evaluation of the expression.
16255
a451cb65
KS
16256@item show check type
16257Show the current setting of type checking and whether @value{GDBN}
16258is enforcing strict type checking rules.
c906108c
SS
16259@end table
16260
16261@cindex range checking
16262@cindex checks, range
6d2ebf8b 16263@node Range Checking
79a6e687 16264@subsection An Overview of Range Checking
c906108c
SS
16265
16266In some languages (such as Modula-2), it is an error to exceed the
16267bounds of a type; this is enforced with run-time checks. Such range
16268checking is meant to ensure program correctness by making sure
16269computations do not overflow, or indices on an array element access do
16270not exceed the bounds of the array.
16271
16272For expressions you use in @value{GDBN} commands, you can tell
16273@value{GDBN} to treat range errors in one of three ways: ignore them,
16274always treat them as errors and abandon the expression, or issue
16275warnings but evaluate the expression anyway.
16276
16277A range error can result from numerical overflow, from exceeding an
16278array index bound, or when you type a constant that is not a member
16279of any type. Some languages, however, do not treat overflows as an
16280error. In many implementations of C, mathematical overflow causes the
16281result to ``wrap around'' to lower values---for example, if @var{m} is
16282the largest integer value, and @var{s} is the smallest, then
16283
474c8240 16284@smallexample
c906108c 16285@var{m} + 1 @result{} @var{s}
474c8240 16286@end smallexample
c906108c
SS
16287
16288This, too, is specific to individual languages, and in some cases
79a6e687
BW
16289specific to individual compilers or machines. @xref{Supported Languages, ,
16290Supported Languages}, for further details on specific languages.
c906108c
SS
16291
16292@value{GDBN} provides some additional commands for controlling the range checker:
16293
c906108c
SS
16294@kindex set check range
16295@kindex show check range
16296@table @code
16297@item set check range auto
16298Set range checking on or off based on the current working language.
79a6e687 16299@xref{Supported Languages, ,Supported Languages}, for the default settings for
c906108c
SS
16300each language.
16301
16302@item set check range on
16303@itemx set check range off
16304Set range checking on or off, overriding the default setting for the
16305current working language. A warning is issued if the setting does not
c3f6f71d
JM
16306match the language default. If a range error occurs and range checking is on,
16307then a message is printed and evaluation of the expression is aborted.
c906108c
SS
16308
16309@item set check range warn
16310Output messages when the @value{GDBN} range checker detects a range error,
16311but attempt to evaluate the expression anyway. Evaluating the
16312expression may still be impossible for other reasons, such as accessing
16313memory that the process does not own (a typical example from many Unix
16314systems).
16315
85be4f5a 16316@item show check range
c906108c
SS
16317Show the current setting of the range checker, and whether or not it is
16318being set automatically by @value{GDBN}.
16319@end table
c906108c 16320
79a6e687
BW
16321@node Supported Languages
16322@section Supported Languages
c906108c 16323
9c37b5ae 16324@value{GDBN} supports C, C@t{++}, D, Go, Objective-C, Fortran,
0bdfa368 16325OpenCL C, Pascal, Rust, assembly, Modula-2, and Ada.
cce74817 16326@c This is false ...
c906108c
SS
16327Some @value{GDBN} features may be used in expressions regardless of the
16328language you use: the @value{GDBN} @code{@@} and @code{::} operators,
16329and the @samp{@{type@}addr} construct (@pxref{Expressions,
16330,Expressions}) can be used with the constructs of any supported
16331language.
16332
16333The following sections detail to what degree each source language is
16334supported by @value{GDBN}. These sections are not meant to be language
16335tutorials or references, but serve only as a reference guide to what the
16336@value{GDBN} expression parser accepts, and what input and output
16337formats should look like for different languages. There are many good
16338books written on each of these languages; please look to these for a
16339language reference or tutorial.
16340
c906108c 16341@menu
b37303ee 16342* C:: C and C@t{++}
6aecb9c2 16343* D:: D
a766d390 16344* Go:: Go
b383017d 16345* Objective-C:: Objective-C
f4b8a18d 16346* OpenCL C:: OpenCL C
09d4efe1 16347* Fortran:: Fortran
9c16f35a 16348* Pascal:: Pascal
0bdfa368 16349* Rust:: Rust
b37303ee 16350* Modula-2:: Modula-2
e07c999f 16351* Ada:: Ada
c906108c
SS
16352@end menu
16353
6d2ebf8b 16354@node C
b37052ae 16355@subsection C and C@t{++}
7a292a7a 16356
b37052ae
EZ
16357@cindex C and C@t{++}
16358@cindex expressions in C or C@t{++}
c906108c 16359
b37052ae 16360Since C and C@t{++} are so closely related, many features of @value{GDBN} apply
c906108c
SS
16361to both languages. Whenever this is the case, we discuss those languages
16362together.
16363
41afff9a
EZ
16364@cindex C@t{++}
16365@cindex @code{g++}, @sc{gnu} C@t{++} compiler
b37052ae
EZ
16366@cindex @sc{gnu} C@t{++}
16367The C@t{++} debugging facilities are jointly implemented by the C@t{++}
16368compiler and @value{GDBN}. Therefore, to debug your C@t{++} code
16369effectively, you must compile your C@t{++} programs with a supported
16370C@t{++} compiler, such as @sc{gnu} @code{g++}, or the HP ANSI C@t{++}
c906108c
SS
16371compiler (@code{aCC}).
16372
c906108c 16373@menu
b37052ae
EZ
16374* C Operators:: C and C@t{++} operators
16375* C Constants:: C and C@t{++} constants
79a6e687 16376* C Plus Plus Expressions:: C@t{++} expressions
b37052ae
EZ
16377* C Defaults:: Default settings for C and C@t{++}
16378* C Checks:: C and C@t{++} type and range checks
c906108c 16379* Debugging C:: @value{GDBN} and C
79a6e687 16380* Debugging C Plus Plus:: @value{GDBN} features for C@t{++}
febe4383 16381* Decimal Floating Point:: Numbers in Decimal Floating Point format
c906108c 16382@end menu
c906108c 16383
6d2ebf8b 16384@node C Operators
79a6e687 16385@subsubsection C and C@t{++} Operators
7a292a7a 16386
b37052ae 16387@cindex C and C@t{++} operators
c906108c
SS
16388
16389Operators must be defined on values of specific types. For instance,
16390@code{+} is defined on numbers, but not on structures. Operators are
5d161b24 16391often defined on groups of types.
c906108c 16392
b37052ae 16393For the purposes of C and C@t{++}, the following definitions hold:
c906108c
SS
16394
16395@itemize @bullet
53a5351d 16396
c906108c 16397@item
c906108c 16398@emph{Integral types} include @code{int} with any of its storage-class
b37052ae 16399specifiers; @code{char}; @code{enum}; and, for C@t{++}, @code{bool}.
c906108c
SS
16400
16401@item
d4f3574e
SS
16402@emph{Floating-point types} include @code{float}, @code{double}, and
16403@code{long double} (if supported by the target platform).
c906108c
SS
16404
16405@item
53a5351d 16406@emph{Pointer types} include all types defined as @code{(@var{type} *)}.
c906108c
SS
16407
16408@item
16409@emph{Scalar types} include all of the above.
53a5351d 16410
c906108c
SS
16411@end itemize
16412
16413@noindent
16414The following operators are supported. They are listed here
16415in order of increasing precedence:
16416
16417@table @code
16418@item ,
16419The comma or sequencing operator. Expressions in a comma-separated list
16420are evaluated from left to right, with the result of the entire
16421expression being the last expression evaluated.
16422
16423@item =
16424Assignment. The value of an assignment expression is the value
16425assigned. Defined on scalar types.
16426
16427@item @var{op}=
16428Used in an expression of the form @w{@code{@var{a} @var{op}= @var{b}}},
16429and translated to @w{@code{@var{a} = @var{a op b}}}.
697aa1b7 16430@w{@code{@var{op}=}} and @code{=} have the same precedence. The operator
c906108c
SS
16431@var{op} is any one of the operators @code{|}, @code{^}, @code{&},
16432@code{<<}, @code{>>}, @code{+}, @code{-}, @code{*}, @code{/}, @code{%}.
16433
16434@item ?:
16435The ternary operator. @code{@var{a} ? @var{b} : @var{c}} can be thought
697aa1b7
EZ
16436of as: if @var{a} then @var{b} else @var{c}. The argument @var{a}
16437should be of an integral type.
c906108c
SS
16438
16439@item ||
16440Logical @sc{or}. Defined on integral types.
16441
16442@item &&
16443Logical @sc{and}. Defined on integral types.
16444
16445@item |
16446Bitwise @sc{or}. Defined on integral types.
16447
16448@item ^
16449Bitwise exclusive-@sc{or}. Defined on integral types.
16450
16451@item &
16452Bitwise @sc{and}. Defined on integral types.
16453
16454@item ==@r{, }!=
16455Equality and inequality. Defined on scalar types. The value of these
16456expressions is 0 for false and non-zero for true.
16457
16458@item <@r{, }>@r{, }<=@r{, }>=
16459Less than, greater than, less than or equal, greater than or equal.
16460Defined on scalar types. The value of these expressions is 0 for false
16461and non-zero for true.
16462
16463@item <<@r{, }>>
16464left shift, and right shift. Defined on integral types.
16465
16466@item @@
16467The @value{GDBN} ``artificial array'' operator (@pxref{Expressions, ,Expressions}).
16468
16469@item +@r{, }-
16470Addition and subtraction. Defined on integral types, floating-point types and
16471pointer types.
16472
16473@item *@r{, }/@r{, }%
16474Multiplication, division, and modulus. Multiplication and division are
16475defined on integral and floating-point types. Modulus is defined on
16476integral types.
16477
16478@item ++@r{, }--
16479Increment and decrement. When appearing before a variable, the
16480operation is performed before the variable is used in an expression;
16481when appearing after it, the variable's value is used before the
16482operation takes place.
16483
16484@item *
16485Pointer dereferencing. Defined on pointer types. Same precedence as
16486@code{++}.
16487
16488@item &
16489Address operator. Defined on variables. Same precedence as @code{++}.
16490
b37052ae
EZ
16491For debugging C@t{++}, @value{GDBN} implements a use of @samp{&} beyond what is
16492allowed in the C@t{++} language itself: you can use @samp{&(&@var{ref})}
b17828ca 16493to examine the address
b37052ae 16494where a C@t{++} reference variable (declared with @samp{&@var{ref}}) is
c906108c 16495stored.
c906108c
SS
16496
16497@item -
16498Negative. Defined on integral and floating-point types. Same
16499precedence as @code{++}.
16500
16501@item !
16502Logical negation. Defined on integral types. Same precedence as
16503@code{++}.
16504
16505@item ~
16506Bitwise complement operator. Defined on integral types. Same precedence as
16507@code{++}.
16508
16509
16510@item .@r{, }->
16511Structure member, and pointer-to-structure member. For convenience,
16512@value{GDBN} regards the two as equivalent, choosing whether to dereference a
16513pointer based on the stored type information.
16514Defined on @code{struct} and @code{union} data.
16515
c906108c
SS
16516@item .*@r{, }->*
16517Dereferences of pointers to members.
c906108c
SS
16518
16519@item []
16520Array indexing. @code{@var{a}[@var{i}]} is defined as
16521@code{*(@var{a}+@var{i})}. Same precedence as @code{->}.
16522
16523@item ()
16524Function parameter list. Same precedence as @code{->}.
16525
c906108c 16526@item ::
b37052ae 16527C@t{++} scope resolution operator. Defined on @code{struct}, @code{union},
7a292a7a 16528and @code{class} types.
c906108c
SS
16529
16530@item ::
7a292a7a
SS
16531Doubled colons also represent the @value{GDBN} scope operator
16532(@pxref{Expressions, ,Expressions}). Same precedence as @code{::},
16533above.
c906108c
SS
16534@end table
16535
c906108c
SS
16536If an operator is redefined in the user code, @value{GDBN} usually
16537attempts to invoke the redefined version instead of using the operator's
16538predefined meaning.
c906108c 16539
6d2ebf8b 16540@node C Constants
79a6e687 16541@subsubsection C and C@t{++} Constants
c906108c 16542
b37052ae 16543@cindex C and C@t{++} constants
c906108c 16544
b37052ae 16545@value{GDBN} allows you to express the constants of C and C@t{++} in the
c906108c 16546following ways:
c906108c
SS
16547
16548@itemize @bullet
16549@item
16550Integer constants are a sequence of digits. Octal constants are
6ca652b0
EZ
16551specified by a leading @samp{0} (i.e.@: zero), and hexadecimal constants
16552by a leading @samp{0x} or @samp{0X}. Constants may also end with a letter
c906108c
SS
16553@samp{l}, specifying that the constant should be treated as a
16554@code{long} value.
16555
16556@item
16557Floating point constants are a sequence of digits, followed by a decimal
16558point, followed by a sequence of digits, and optionally followed by an
16559exponent. An exponent is of the form:
16560@samp{@w{e@r{[[}+@r{]|}-@r{]}@var{nnn}}}, where @var{nnn} is another
16561sequence of digits. The @samp{+} is optional for positive exponents.
d4f3574e
SS
16562A floating-point constant may also end with a letter @samp{f} or
16563@samp{F}, specifying that the constant should be treated as being of
16564the @code{float} (as opposed to the default @code{double}) type; or with
16565a letter @samp{l} or @samp{L}, which specifies a @code{long double}
16566constant.
c906108c
SS
16567
16568@item
16569Enumerated constants consist of enumerated identifiers, or their
16570integral equivalents.
16571
16572@item
16573Character constants are a single character surrounded by single quotes
16574(@code{'}), or a number---the ordinal value of the corresponding character
d4f3574e 16575(usually its @sc{ascii} value). Within quotes, the single character may
c906108c
SS
16576be represented by a letter or by @dfn{escape sequences}, which are of
16577the form @samp{\@var{nnn}}, where @var{nnn} is the octal representation
16578of the character's ordinal value; or of the form @samp{\@var{x}}, where
16579@samp{@var{x}} is a predefined special character---for example,
16580@samp{\n} for newline.
16581
e0f8f636
TT
16582Wide character constants can be written by prefixing a character
16583constant with @samp{L}, as in C. For example, @samp{L'x'} is the wide
16584form of @samp{x}. The target wide character set is used when
16585computing the value of this constant (@pxref{Character Sets}).
16586
c906108c 16587@item
96a2c332
SS
16588String constants are a sequence of character constants surrounded by
16589double quotes (@code{"}). Any valid character constant (as described
16590above) may appear. Double quotes within the string must be preceded by
16591a backslash, so for instance @samp{"a\"b'c"} is a string of five
16592characters.
c906108c 16593
e0f8f636
TT
16594Wide string constants can be written by prefixing a string constant
16595with @samp{L}, as in C. The target wide character set is used when
16596computing the value of this constant (@pxref{Character Sets}).
16597
c906108c
SS
16598@item
16599Pointer constants are an integral value. You can also write pointers
16600to constants using the C operator @samp{&}.
16601
16602@item
16603Array constants are comma-separated lists surrounded by braces @samp{@{}
16604and @samp{@}}; for example, @samp{@{1,2,3@}} is a three-element array of
16605integers, @samp{@{@{1,2@}, @{3,4@}, @{5,6@}@}} is a three-by-two array,
16606and @samp{@{&"hi", &"there", &"fred"@}} is a three-element array of pointers.
16607@end itemize
16608
79a6e687
BW
16609@node C Plus Plus Expressions
16610@subsubsection C@t{++} Expressions
b37052ae
EZ
16611
16612@cindex expressions in C@t{++}
16613@value{GDBN} expression handling can interpret most C@t{++} expressions.
16614
0179ffac
DC
16615@cindex debugging C@t{++} programs
16616@cindex C@t{++} compilers
16617@cindex debug formats and C@t{++}
16618@cindex @value{NGCC} and C@t{++}
c906108c 16619@quotation
e0f8f636
TT
16620@emph{Warning:} @value{GDBN} can only debug C@t{++} code if you use
16621the proper compiler and the proper debug format. Currently,
16622@value{GDBN} works best when debugging C@t{++} code that is compiled
16623with the most recent version of @value{NGCC} possible. The DWARF
16624debugging format is preferred; @value{NGCC} defaults to this on most
16625popular platforms. Other compilers and/or debug formats are likely to
16626work badly or not at all when using @value{GDBN} to debug C@t{++}
16627code. @xref{Compilation}.
c906108c 16628@end quotation
c906108c
SS
16629
16630@enumerate
16631
16632@cindex member functions
16633@item
16634Member function calls are allowed; you can use expressions like
16635
474c8240 16636@smallexample
c906108c 16637count = aml->GetOriginal(x, y)
474c8240 16638@end smallexample
c906108c 16639
41afff9a 16640@vindex this@r{, inside C@t{++} member functions}
b37052ae 16641@cindex namespace in C@t{++}
c906108c
SS
16642@item
16643While a member function is active (in the selected stack frame), your
16644expressions have the same namespace available as the member function;
16645that is, @value{GDBN} allows implicit references to the class instance
e0f8f636
TT
16646pointer @code{this} following the same rules as C@t{++}. @code{using}
16647declarations in the current scope are also respected by @value{GDBN}.
c906108c 16648
c906108c 16649@cindex call overloaded functions
d4f3574e 16650@cindex overloaded functions, calling
b37052ae 16651@cindex type conversions in C@t{++}
c906108c
SS
16652@item
16653You can call overloaded functions; @value{GDBN} resolves the function
d4f3574e 16654call to the right definition, with some restrictions. @value{GDBN} does not
c906108c
SS
16655perform overload resolution involving user-defined type conversions,
16656calls to constructors, or instantiations of templates that do not exist
16657in the program. It also cannot handle ellipsis argument lists or
16658default arguments.
16659
16660It does perform integral conversions and promotions, floating-point
16661promotions, arithmetic conversions, pointer conversions, conversions of
16662class objects to base classes, and standard conversions such as those of
16663functions or arrays to pointers; it requires an exact match on the
16664number of function arguments.
16665
16666Overload resolution is always performed, unless you have specified
79a6e687
BW
16667@code{set overload-resolution off}. @xref{Debugging C Plus Plus,
16668,@value{GDBN} Features for C@t{++}}.
c906108c 16669
d4f3574e 16670You must specify @code{set overload-resolution off} in order to use an
c906108c
SS
16671explicit function signature to call an overloaded function, as in
16672@smallexample
16673p 'foo(char,int)'('x', 13)
16674@end smallexample
d4f3574e 16675
c906108c 16676The @value{GDBN} command-completion facility can simplify this;
79a6e687 16677see @ref{Completion, ,Command Completion}.
c906108c 16678
c906108c
SS
16679@cindex reference declarations
16680@item
c0f55cc6
AV
16681@value{GDBN} understands variables declared as C@t{++} lvalue or rvalue
16682references; you can use them in expressions just as you do in C@t{++}
16683source---they are automatically dereferenced.
c906108c
SS
16684
16685In the parameter list shown when @value{GDBN} displays a frame, the values of
16686reference variables are not displayed (unlike other variables); this
16687avoids clutter, since references are often used for large structures.
16688The @emph{address} of a reference variable is always shown, unless
16689you have specified @samp{set print address off}.
16690
16691@item
b37052ae 16692@value{GDBN} supports the C@t{++} name resolution operator @code{::}---your
c906108c
SS
16693expressions can use it just as expressions in your program do. Since
16694one scope may be defined in another, you can use @code{::} repeatedly if
16695necessary, for example in an expression like
16696@samp{@var{scope1}::@var{scope2}::@var{name}}. @value{GDBN} also allows
b37052ae 16697resolving name scope by reference to source files, in both C and C@t{++}
79a6e687 16698debugging (@pxref{Variables, ,Program Variables}).
c906108c 16699
e0f8f636
TT
16700@item
16701@value{GDBN} performs argument-dependent lookup, following the C@t{++}
16702specification.
16703@end enumerate
c906108c 16704
6d2ebf8b 16705@node C Defaults
79a6e687 16706@subsubsection C and C@t{++} Defaults
7a292a7a 16707
b37052ae 16708@cindex C and C@t{++} defaults
c906108c 16709
a451cb65
KS
16710If you allow @value{GDBN} to set range checking automatically, it
16711defaults to @code{off} whenever the working language changes to
b37052ae 16712C or C@t{++}. This happens regardless of whether you or @value{GDBN}
c906108c 16713selects the working language.
c906108c
SS
16714
16715If you allow @value{GDBN} to set the language automatically, it
16716recognizes source files whose names end with @file{.c}, @file{.C}, or
16717@file{.cc}, etc, and when @value{GDBN} enters code compiled from one of
b37052ae 16718these files, it sets the working language to C or C@t{++}.
79a6e687 16719@xref{Automatically, ,Having @value{GDBN} Infer the Source Language},
c906108c
SS
16720for further details.
16721
6d2ebf8b 16722@node C Checks
79a6e687 16723@subsubsection C and C@t{++} Type and Range Checks
7a292a7a 16724
b37052ae 16725@cindex C and C@t{++} checks
c906108c 16726
a451cb65
KS
16727By default, when @value{GDBN} parses C or C@t{++} expressions, strict type
16728checking is used. However, if you turn type checking off, @value{GDBN}
16729will allow certain non-standard conversions, such as promoting integer
16730constants to pointers.
c906108c
SS
16731
16732Range checking, if turned on, is done on mathematical operations. Array
16733indices are not checked, since they are often used to index a pointer
16734that is not itself an array.
c906108c 16735
6d2ebf8b 16736@node Debugging C
c906108c 16737@subsubsection @value{GDBN} and C
c906108c
SS
16738
16739The @code{set print union} and @code{show print union} commands apply to
16740the @code{union} type. When set to @samp{on}, any @code{union} that is
7a292a7a
SS
16741inside a @code{struct} or @code{class} is also printed. Otherwise, it
16742appears as @samp{@{...@}}.
c906108c
SS
16743
16744The @code{@@} operator aids in the debugging of dynamic arrays, formed
16745with pointers and a memory allocation function. @xref{Expressions,
16746,Expressions}.
16747
79a6e687
BW
16748@node Debugging C Plus Plus
16749@subsubsection @value{GDBN} Features for C@t{++}
c906108c 16750
b37052ae 16751@cindex commands for C@t{++}
7a292a7a 16752
b37052ae
EZ
16753Some @value{GDBN} commands are particularly useful with C@t{++}, and some are
16754designed specifically for use with C@t{++}. Here is a summary:
c906108c
SS
16755
16756@table @code
16757@cindex break in overloaded functions
16758@item @r{breakpoint menus}
16759When you want a breakpoint in a function whose name is overloaded,
6ba66d6a
JB
16760@value{GDBN} has the capability to display a menu of possible breakpoint
16761locations to help you specify which function definition you want.
16762@xref{Ambiguous Expressions,,Ambiguous Expressions}.
c906108c 16763
b37052ae 16764@cindex overloading in C@t{++}
c906108c
SS
16765@item rbreak @var{regex}
16766Setting breakpoints using regular expressions is helpful for setting
16767breakpoints on overloaded functions that are not members of any special
16768classes.
79a6e687 16769@xref{Set Breaks, ,Setting Breakpoints}.
c906108c 16770
b37052ae 16771@cindex C@t{++} exception handling
c906108c 16772@item catch throw
591f19e8 16773@itemx catch rethrow
c906108c 16774@itemx catch catch
b37052ae 16775Debug C@t{++} exception handling using these commands. @xref{Set
79a6e687 16776Catchpoints, , Setting Catchpoints}.
c906108c
SS
16777
16778@cindex inheritance
16779@item ptype @var{typename}
16780Print inheritance relationships as well as other information for type
16781@var{typename}.
16782@xref{Symbols, ,Examining the Symbol Table}.
16783
c4aeac85
TT
16784@item info vtbl @var{expression}.
16785The @code{info vtbl} command can be used to display the virtual
16786method tables of the object computed by @var{expression}. This shows
16787one entry per virtual table; there may be multiple virtual tables when
16788multiple inheritance is in use.
16789
439250fb
DE
16790@cindex C@t{++} demangling
16791@item demangle @var{name}
16792Demangle @var{name}.
16793@xref{Symbols}, for a more complete description of the @code{demangle} command.
16794
b37052ae 16795@cindex C@t{++} symbol display
c906108c
SS
16796@item set print demangle
16797@itemx show print demangle
16798@itemx set print asm-demangle
16799@itemx show print asm-demangle
b37052ae
EZ
16800Control whether C@t{++} symbols display in their source form, both when
16801displaying code as C@t{++} source and when displaying disassemblies.
79a6e687 16802@xref{Print Settings, ,Print Settings}.
c906108c
SS
16803
16804@item set print object
16805@itemx show print object
16806Choose whether to print derived (actual) or declared types of objects.
79a6e687 16807@xref{Print Settings, ,Print Settings}.
c906108c
SS
16808
16809@item set print vtbl
16810@itemx show print vtbl
16811Control the format for printing virtual function tables.
79a6e687 16812@xref{Print Settings, ,Print Settings}.
c906108c 16813(The @code{vtbl} commands do not work on programs compiled with the HP
b37052ae 16814ANSI C@t{++} compiler (@code{aCC}).)
c906108c
SS
16815
16816@kindex set overload-resolution
d4f3574e 16817@cindex overloaded functions, overload resolution
c906108c 16818@item set overload-resolution on
b37052ae 16819Enable overload resolution for C@t{++} expression evaluation. The default
c906108c
SS
16820is on. For overloaded functions, @value{GDBN} evaluates the arguments
16821and searches for a function whose signature matches the argument types,
79a6e687
BW
16822using the standard C@t{++} conversion rules (see @ref{C Plus Plus
16823Expressions, ,C@t{++} Expressions}, for details).
16824If it cannot find a match, it emits a message.
c906108c
SS
16825
16826@item set overload-resolution off
b37052ae 16827Disable overload resolution for C@t{++} expression evaluation. For
c906108c
SS
16828overloaded functions that are not class member functions, @value{GDBN}
16829chooses the first function of the specified name that it finds in the
16830symbol table, whether or not its arguments are of the correct type. For
16831overloaded functions that are class member functions, @value{GDBN}
16832searches for a function whose signature @emph{exactly} matches the
16833argument types.
c906108c 16834
9c16f35a
EZ
16835@kindex show overload-resolution
16836@item show overload-resolution
16837Show the current setting of overload resolution.
16838
c906108c
SS
16839@item @r{Overloaded symbol names}
16840You can specify a particular definition of an overloaded symbol, using
b37052ae 16841the same notation that is used to declare such symbols in C@t{++}: type
c906108c
SS
16842@code{@var{symbol}(@var{types})} rather than just @var{symbol}. You can
16843also use the @value{GDBN} command-line word completion facilities to list the
16844available choices, or to finish the type list for you.
79a6e687 16845@xref{Completion,, Command Completion}, for details on how to do this.
bd69330d
PA
16846
16847@item @r{Breakpoints in functions with ABI tags}
16848
16849The GNU C@t{++} compiler introduced the notion of ABI ``tags'', which
16850correspond to changes in the ABI of a type, function, or variable that
16851would not otherwise be reflected in a mangled name. See
16852@url{https://developers.redhat.com/blog/2015/02/05/gcc5-and-the-c11-abi/}
16853for more detail.
16854
16855The ABI tags are visible in C@t{++} demangled names. For example, a
16856function that returns a std::string:
16857
16858@smallexample
16859std::string function(int);
16860@end smallexample
16861
16862@noindent
16863when compiled for the C++11 ABI is marked with the @code{cxx11} ABI
16864tag, and @value{GDBN} displays the symbol like this:
16865
16866@smallexample
16867function[abi:cxx11](int)
16868@end smallexample
16869
16870You can set a breakpoint on such functions simply as if they had no
16871tag. For example:
16872
16873@smallexample
16874(gdb) b function(int)
16875Breakpoint 2 at 0x40060d: file main.cc, line 10.
16876(gdb) info breakpoints
16877Num Type Disp Enb Address What
168781 breakpoint keep y 0x0040060d in function[abi:cxx11](int)
16879 at main.cc:10
16880@end smallexample
16881
16882On the rare occasion you need to disambiguate between different ABI
16883tags, you can do so by simply including the ABI tag in the function
16884name, like:
16885
16886@smallexample
16887(@value{GDBP}) b ambiguous[abi:other_tag](int)
16888@end smallexample
c906108c 16889@end table
c906108c 16890
febe4383
TJB
16891@node Decimal Floating Point
16892@subsubsection Decimal Floating Point format
16893@cindex decimal floating point format
16894
16895@value{GDBN} can examine, set and perform computations with numbers in
16896decimal floating point format, which in the C language correspond to the
16897@code{_Decimal32}, @code{_Decimal64} and @code{_Decimal128} types as
16898specified by the extension to support decimal floating-point arithmetic.
16899
16900There are two encodings in use, depending on the architecture: BID (Binary
16901Integer Decimal) for x86 and x86-64, and DPD (Densely Packed Decimal) for
4ac33720
UW
16902PowerPC and S/390. @value{GDBN} will use the appropriate encoding for the
16903configured target.
febe4383
TJB
16904
16905Because of a limitation in @file{libdecnumber}, the library used by @value{GDBN}
16906to manipulate decimal floating point numbers, it is not possible to convert
16907(using a cast, for example) integers wider than 32-bit to decimal float.
16908
16909In addition, in order to imitate @value{GDBN}'s behaviour with binary floating
16910point computations, error checking in decimal float operations ignores
16911underflow, overflow and divide by zero exceptions.
16912
4acd40f3 16913In the PowerPC architecture, @value{GDBN} provides a set of pseudo-registers
99e008fe
EZ
16914to inspect @code{_Decimal128} values stored in floating point registers.
16915See @ref{PowerPC,,PowerPC} for more details.
4acd40f3 16916
6aecb9c2
JB
16917@node D
16918@subsection D
16919
16920@cindex D
16921@value{GDBN} can be used to debug programs written in D and compiled with
16922GDC, LDC or DMD compilers. Currently @value{GDBN} supports only one D
16923specific feature --- dynamic arrays.
16924
a766d390
DE
16925@node Go
16926@subsection Go
16927
16928@cindex Go (programming language)
16929@value{GDBN} can be used to debug programs written in Go and compiled with
16930@file{gccgo} or @file{6g} compilers.
16931
16932Here is a summary of the Go-specific features and restrictions:
16933
16934@table @code
16935@cindex current Go package
16936@item The current Go package
16937The name of the current package does not need to be specified when
16938specifying global variables and functions.
16939
16940For example, given the program:
16941
16942@example
16943package main
16944var myglob = "Shall we?"
16945func main () @{
16946 // ...
16947@}
16948@end example
16949
16950When stopped inside @code{main} either of these work:
16951
16952@example
16953(gdb) p myglob
16954(gdb) p main.myglob
16955@end example
16956
16957@cindex builtin Go types
16958@item Builtin Go types
16959The @code{string} type is recognized by @value{GDBN} and is printed
16960as a string.
16961
16962@cindex builtin Go functions
16963@item Builtin Go functions
16964The @value{GDBN} expression parser recognizes the @code{unsafe.Sizeof}
16965function and handles it internally.
a766d390
DE
16966
16967@cindex restrictions on Go expressions
16968@item Restrictions on Go expressions
16969All Go operators are supported except @code{&^}.
16970The Go @code{_} ``blank identifier'' is not supported.
16971Automatic dereferencing of pointers is not supported.
50f042b9 16972@end table
a766d390 16973
b37303ee
AF
16974@node Objective-C
16975@subsection Objective-C
16976
16977@cindex Objective-C
16978This section provides information about some commands and command
721c2651
EZ
16979options that are useful for debugging Objective-C code. See also
16980@ref{Symbols, info classes}, and @ref{Symbols, info selectors}, for a
16981few more commands specific to Objective-C support.
b37303ee
AF
16982
16983@menu
b383017d
RM
16984* Method Names in Commands::
16985* The Print Command with Objective-C::
b37303ee
AF
16986@end menu
16987
c8f4133a 16988@node Method Names in Commands
b37303ee
AF
16989@subsubsection Method Names in Commands
16990
16991The following commands have been extended to accept Objective-C method
16992names as line specifications:
16993
16994@kindex clear@r{, and Objective-C}
16995@kindex break@r{, and Objective-C}
16996@kindex info line@r{, and Objective-C}
16997@kindex jump@r{, and Objective-C}
16998@kindex list@r{, and Objective-C}
16999@itemize
17000@item @code{clear}
17001@item @code{break}
17002@item @code{info line}
17003@item @code{jump}
17004@item @code{list}
17005@end itemize
17006
17007A fully qualified Objective-C method name is specified as
17008
17009@smallexample
17010-[@var{Class} @var{methodName}]
17011@end smallexample
17012
c552b3bb
JM
17013where the minus sign is used to indicate an instance method and a
17014plus sign (not shown) is used to indicate a class method. The class
17015name @var{Class} and method name @var{methodName} are enclosed in
17016brackets, similar to the way messages are specified in Objective-C
17017source code. For example, to set a breakpoint at the @code{create}
17018instance method of class @code{Fruit} in the program currently being
17019debugged, enter:
b37303ee
AF
17020
17021@smallexample
17022break -[Fruit create]
17023@end smallexample
17024
17025To list ten program lines around the @code{initialize} class method,
17026enter:
17027
17028@smallexample
17029list +[NSText initialize]
17030@end smallexample
17031
c552b3bb
JM
17032In the current version of @value{GDBN}, the plus or minus sign is
17033required. In future versions of @value{GDBN}, the plus or minus
17034sign will be optional, but you can use it to narrow the search. It
17035is also possible to specify just a method name:
b37303ee
AF
17036
17037@smallexample
17038break create
17039@end smallexample
17040
17041You must specify the complete method name, including any colons. If
17042your program's source files contain more than one @code{create} method,
17043you'll be presented with a numbered list of classes that implement that
17044method. Indicate your choice by number, or type @samp{0} to exit if
17045none apply.
17046
17047As another example, to clear a breakpoint established at the
17048@code{makeKeyAndOrderFront:} method of the @code{NSWindow} class, enter:
17049
17050@smallexample
17051clear -[NSWindow makeKeyAndOrderFront:]
17052@end smallexample
17053
17054@node The Print Command with Objective-C
17055@subsubsection The Print Command With Objective-C
721c2651 17056@cindex Objective-C, print objects
c552b3bb
JM
17057@kindex print-object
17058@kindex po @r{(@code{print-object})}
b37303ee 17059
c552b3bb 17060The print command has also been extended to accept methods. For example:
b37303ee
AF
17061
17062@smallexample
c552b3bb 17063print -[@var{object} hash]
b37303ee
AF
17064@end smallexample
17065
17066@cindex print an Objective-C object description
c552b3bb
JM
17067@cindex @code{_NSPrintForDebugger}, and printing Objective-C objects
17068@noindent
17069will tell @value{GDBN} to send the @code{hash} message to @var{object}
17070and print the result. Also, an additional command has been added,
17071@code{print-object} or @code{po} for short, which is meant to print
17072the description of an object. However, this command may only work
17073with certain Objective-C libraries that have a particular hook
17074function, @code{_NSPrintForDebugger}, defined.
b37303ee 17075
f4b8a18d
KW
17076@node OpenCL C
17077@subsection OpenCL C
17078
17079@cindex OpenCL C
17080This section provides information about @value{GDBN}s OpenCL C support.
17081
17082@menu
17083* OpenCL C Datatypes::
17084* OpenCL C Expressions::
17085* OpenCL C Operators::
17086@end menu
17087
17088@node OpenCL C Datatypes
17089@subsubsection OpenCL C Datatypes
17090
17091@cindex OpenCL C Datatypes
17092@value{GDBN} supports the builtin scalar and vector datatypes specified
17093by OpenCL 1.1. In addition the half- and double-precision floating point
17094data types of the @code{cl_khr_fp16} and @code{cl_khr_fp64} OpenCL
17095extensions are also known to @value{GDBN}.
17096
17097@node OpenCL C Expressions
17098@subsubsection OpenCL C Expressions
17099
17100@cindex OpenCL C Expressions
17101@value{GDBN} supports accesses to vector components including the access as
17102lvalue where possible. Since OpenCL C is based on C99 most C expressions
17103supported by @value{GDBN} can be used as well.
17104
17105@node OpenCL C Operators
17106@subsubsection OpenCL C Operators
17107
17108@cindex OpenCL C Operators
17109@value{GDBN} supports the operators specified by OpenCL 1.1 for scalar and
17110vector data types.
17111
09d4efe1
EZ
17112@node Fortran
17113@subsection Fortran
17114@cindex Fortran-specific support in @value{GDBN}
17115
814e32d7
WZ
17116@value{GDBN} can be used to debug programs written in Fortran, but it
17117currently supports only the features of Fortran 77 language.
17118
17119@cindex trailing underscore, in Fortran symbols
17120Some Fortran compilers (@sc{gnu} Fortran 77 and Fortran 95 compilers
17121among them) append an underscore to the names of variables and
17122functions. When you debug programs compiled by those compilers, you
17123will need to refer to variables and functions with a trailing
17124underscore.
17125
17126@menu
17127* Fortran Operators:: Fortran operators and expressions
17128* Fortran Defaults:: Default settings for Fortran
79a6e687 17129* Special Fortran Commands:: Special @value{GDBN} commands for Fortran
814e32d7
WZ
17130@end menu
17131
17132@node Fortran Operators
79a6e687 17133@subsubsection Fortran Operators and Expressions
814e32d7
WZ
17134
17135@cindex Fortran operators and expressions
17136
17137Operators must be defined on values of specific types. For instance,
17138@code{+} is defined on numbers, but not on characters or other non-
ff2587ec 17139arithmetic types. Operators are often defined on groups of types.
814e32d7
WZ
17140
17141@table @code
17142@item **
99e008fe 17143The exponentiation operator. It raises the first operand to the power
814e32d7
WZ
17144of the second one.
17145
17146@item :
17147The range operator. Normally used in the form of array(low:high) to
17148represent a section of array.
68837c9d
MD
17149
17150@item %
17151The access component operator. Normally used to access elements in derived
17152types. Also suitable for unions. As unions aren't part of regular Fortran,
17153this can only happen when accessing a register that uses a gdbarch-defined
17154union type.
0a4b0913
AB
17155@item ::
17156The scope operator. Normally used to access variables in modules or
17157to set breakpoints on subroutines nested in modules or in other
17158subroutines (internal subroutines).
814e32d7
WZ
17159@end table
17160
17161@node Fortran Defaults
17162@subsubsection Fortran Defaults
17163
17164@cindex Fortran Defaults
17165
17166Fortran symbols are usually case-insensitive, so @value{GDBN} by
17167default uses case-insensitive matches for Fortran symbols. You can
17168change that with the @samp{set case-insensitive} command, see
17169@ref{Symbols}, for the details.
17170
79a6e687
BW
17171@node Special Fortran Commands
17172@subsubsection Special Fortran Commands
814e32d7
WZ
17173
17174@cindex Special Fortran commands
17175
db2e3e2e
BW
17176@value{GDBN} has some commands to support Fortran-specific features,
17177such as displaying common blocks.
814e32d7 17178
09d4efe1
EZ
17179@table @code
17180@cindex @code{COMMON} blocks, Fortran
17181@kindex info common
17182@item info common @r{[}@var{common-name}@r{]}
17183This command prints the values contained in the Fortran @code{COMMON}
17184block whose name is @var{common-name}. With no argument, the names of
d52fb0e9 17185all @code{COMMON} blocks visible at the current program location are
09d4efe1 17186printed.
a5c641b5
AB
17187@cindex arrays slices (Fortran)
17188@kindex set fortran repack-array-slices
17189@kindex show fortran repack-array-slices
17190@item set fortran repack-array-slices [on|off]
17191@item show fortran repack-array-slices
17192When taking a slice from an array, a Fortran compiler can choose to
17193either produce an array descriptor that describes the slice in place,
17194or it may repack the slice, copying the elements of the slice into a
17195new region of memory.
17196
17197When this setting is on, then @value{GDBN} will also repack array
17198slices in some situations. When this setting is off, then
17199@value{GDBN} will create array descriptors for slices that reference
17200the original data in place.
17201
17202@value{GDBN} will never repack an array slice if the data for the
17203slice is contiguous within the original array.
17204
17205@value{GDBN} will always repack string slices if the data for the
17206slice is non-contiguous within the original string as @value{GDBN}
17207does not support printing non-contiguous strings.
17208
17209The default for this setting is @code{off}.
09d4efe1
EZ
17210@end table
17211
9c16f35a
EZ
17212@node Pascal
17213@subsection Pascal
17214
17215@cindex Pascal support in @value{GDBN}, limitations
17216Debugging Pascal programs which use sets, subranges, file variables, or
17217nested functions does not currently work. @value{GDBN} does not support
17218entering expressions, printing values, or similar features using Pascal
17219syntax.
17220
17221The Pascal-specific command @code{set print pascal_static-members}
17222controls whether static members of Pascal objects are displayed.
17223@xref{Print Settings, pascal_static-members}.
17224
0bdfa368
TT
17225@node Rust
17226@subsection Rust
17227
17228@value{GDBN} supports the @url{https://www.rust-lang.org/, Rust
17229Programming Language}. Type- and value-printing, and expression
17230parsing, are reasonably complete. However, there are a few
17231peculiarities and holes to be aware of.
17232
17233@itemize @bullet
17234@item
17235Linespecs (@pxref{Specify Location}) are never relative to the current
17236crate. Instead, they act as if there were a global namespace of
17237crates, somewhat similar to the way @code{extern crate} behaves.
17238
17239That is, if @value{GDBN} is stopped at a breakpoint in a function in
17240crate @samp{A}, module @samp{B}, then @code{break B::f} will attempt
17241to set a breakpoint in a function named @samp{f} in a crate named
17242@samp{B}.
17243
17244As a consequence of this approach, linespecs also cannot refer to
17245items using @samp{self::} or @samp{super::}.
17246
17247@item
17248Because @value{GDBN} implements Rust name-lookup semantics in
17249expressions, it will sometimes prepend the current crate to a name.
17250For example, if @value{GDBN} is stopped at a breakpoint in the crate
17251@samp{K}, then @code{print ::x::y} will try to find the symbol
17252@samp{K::x::y}.
17253
17254However, since it is useful to be able to refer to other crates when
17255debugging, @value{GDBN} provides the @code{extern} extension to
17256circumvent this. To use the extension, just put @code{extern} before
17257a path expression to refer to the otherwise unavailable ``global''
17258scope.
17259
17260In the above example, if you wanted to refer to the symbol @samp{y} in
17261the crate @samp{x}, you would use @code{print extern x::y}.
17262
17263@item
17264The Rust expression evaluator does not support ``statement-like''
17265expressions such as @code{if} or @code{match}, or lambda expressions.
17266
17267@item
17268Tuple expressions are not implemented.
17269
17270@item
17271The Rust expression evaluator does not currently implement the
17272@code{Drop} trait. Objects that may be created by the evaluator will
17273never be destroyed.
17274
17275@item
17276@value{GDBN} does not implement type inference for generics. In order
17277to call generic functions or otherwise refer to generic items, you
17278will have to specify the type parameters manually.
17279
17280@item
17281@value{GDBN} currently uses the C@t{++} demangler for Rust. In most
17282cases this does not cause any problems. However, in an expression
17283context, completing a generic function name will give syntactically
17284invalid results. This happens because Rust requires the @samp{::}
17285operator between the function name and its generic arguments. For
17286example, @value{GDBN} might provide a completion like
17287@code{crate::f<u32>}, where the parser would require
17288@code{crate::f::<u32>}.
17289
17290@item
17291As of this writing, the Rust compiler (version 1.8) has a few holes in
17292the debugging information it generates. These holes prevent certain
17293features from being implemented by @value{GDBN}:
17294@itemize @bullet
17295
17296@item
17297Method calls cannot be made via traits.
17298
0bdfa368
TT
17299@item
17300Operator overloading is not implemented.
17301
17302@item
17303When debugging in a monomorphized function, you cannot use the generic
17304type names.
17305
17306@item
17307The type @code{Self} is not available.
17308
17309@item
17310@code{use} statements are not available, so some names may not be
17311available in the crate.
17312@end itemize
17313@end itemize
17314
09d4efe1 17315@node Modula-2
c906108c 17316@subsection Modula-2
7a292a7a 17317
d4f3574e 17318@cindex Modula-2, @value{GDBN} support
c906108c
SS
17319
17320The extensions made to @value{GDBN} to support Modula-2 only support
17321output from the @sc{gnu} Modula-2 compiler (which is currently being
17322developed). Other Modula-2 compilers are not currently supported, and
17323attempting to debug executables produced by them is most likely
17324to give an error as @value{GDBN} reads in the executable's symbol
17325table.
17326
17327@cindex expressions in Modula-2
17328@menu
17329* M2 Operators:: Built-in operators
17330* Built-In Func/Proc:: Built-in functions and procedures
17331* M2 Constants:: Modula-2 constants
72019c9c 17332* M2 Types:: Modula-2 types
c906108c
SS
17333* M2 Defaults:: Default settings for Modula-2
17334* Deviations:: Deviations from standard Modula-2
17335* M2 Checks:: Modula-2 type and range checks
17336* M2 Scope:: The scope operators @code{::} and @code{.}
17337* GDB/M2:: @value{GDBN} and Modula-2
17338@end menu
17339
6d2ebf8b 17340@node M2 Operators
c906108c
SS
17341@subsubsection Operators
17342@cindex Modula-2 operators
17343
17344Operators must be defined on values of specific types. For instance,
17345@code{+} is defined on numbers, but not on structures. Operators are
17346often defined on groups of types. For the purposes of Modula-2, the
17347following definitions hold:
17348
17349@itemize @bullet
17350
17351@item
17352@emph{Integral types} consist of @code{INTEGER}, @code{CARDINAL}, and
17353their subranges.
17354
17355@item
17356@emph{Character types} consist of @code{CHAR} and its subranges.
17357
17358@item
17359@emph{Floating-point types} consist of @code{REAL}.
17360
17361@item
17362@emph{Pointer types} consist of anything declared as @code{POINTER TO
17363@var{type}}.
17364
17365@item
17366@emph{Scalar types} consist of all of the above.
17367
17368@item
17369@emph{Set types} consist of @code{SET} and @code{BITSET} types.
17370
17371@item
17372@emph{Boolean types} consist of @code{BOOLEAN}.
17373@end itemize
17374
17375@noindent
17376The following operators are supported, and appear in order of
17377increasing precedence:
17378
17379@table @code
17380@item ,
17381Function argument or array index separator.
17382
17383@item :=
17384Assignment. The value of @var{var} @code{:=} @var{value} is
17385@var{value}.
17386
17387@item <@r{, }>
17388Less than, greater than on integral, floating-point, or enumerated
17389types.
17390
17391@item <=@r{, }>=
96a2c332 17392Less than or equal to, greater than or equal to
c906108c
SS
17393on integral, floating-point and enumerated types, or set inclusion on
17394set types. Same precedence as @code{<}.
17395
17396@item =@r{, }<>@r{, }#
17397Equality and two ways of expressing inequality, valid on scalar types.
17398Same precedence as @code{<}. In @value{GDBN} scripts, only @code{<>} is
17399available for inequality, since @code{#} conflicts with the script
17400comment character.
17401
17402@item IN
17403Set membership. Defined on set types and the types of their members.
17404Same precedence as @code{<}.
17405
17406@item OR
17407Boolean disjunction. Defined on boolean types.
17408
17409@item AND@r{, }&
d4f3574e 17410Boolean conjunction. Defined on boolean types.
c906108c
SS
17411
17412@item @@
17413The @value{GDBN} ``artificial array'' operator (@pxref{Expressions, ,Expressions}).
17414
17415@item +@r{, }-
17416Addition and subtraction on integral and floating-point types, or union
17417and difference on set types.
17418
17419@item *
17420Multiplication on integral and floating-point types, or set intersection
17421on set types.
17422
17423@item /
17424Division on floating-point types, or symmetric set difference on set
17425types. Same precedence as @code{*}.
17426
17427@item DIV@r{, }MOD
17428Integer division and remainder. Defined on integral types. Same
17429precedence as @code{*}.
17430
17431@item -
99e008fe 17432Negative. Defined on @code{INTEGER} and @code{REAL} data.
c906108c
SS
17433
17434@item ^
17435Pointer dereferencing. Defined on pointer types.
17436
17437@item NOT
17438Boolean negation. Defined on boolean types. Same precedence as
17439@code{^}.
17440
17441@item .
17442@code{RECORD} field selector. Defined on @code{RECORD} data. Same
17443precedence as @code{^}.
17444
17445@item []
17446Array indexing. Defined on @code{ARRAY} data. Same precedence as @code{^}.
17447
17448@item ()
17449Procedure argument list. Defined on @code{PROCEDURE} objects. Same precedence
17450as @code{^}.
17451
17452@item ::@r{, }.
17453@value{GDBN} and Modula-2 scope operators.
17454@end table
17455
17456@quotation
72019c9c 17457@emph{Warning:} Set expressions and their operations are not yet supported, so @value{GDBN}
c906108c
SS
17458treats the use of the operator @code{IN}, or the use of operators
17459@code{+}, @code{-}, @code{*}, @code{/}, @code{=}, , @code{<>}, @code{#},
17460@code{<=}, and @code{>=} on sets as an error.
17461@end quotation
17462
cb51c4e0 17463
6d2ebf8b 17464@node Built-In Func/Proc
79a6e687 17465@subsubsection Built-in Functions and Procedures
cb51c4e0 17466@cindex Modula-2 built-ins
c906108c
SS
17467
17468Modula-2 also makes available several built-in procedures and functions.
17469In describing these, the following metavariables are used:
17470
17471@table @var
17472
17473@item a
17474represents an @code{ARRAY} variable.
17475
17476@item c
17477represents a @code{CHAR} constant or variable.
17478
17479@item i
17480represents a variable or constant of integral type.
17481
17482@item m
17483represents an identifier that belongs to a set. Generally used in the
17484same function with the metavariable @var{s}. The type of @var{s} should
17485be @code{SET OF @var{mtype}} (where @var{mtype} is the type of @var{m}).
17486
17487@item n
17488represents a variable or constant of integral or floating-point type.
17489
17490@item r
17491represents a variable or constant of floating-point type.
17492
17493@item t
17494represents a type.
17495
17496@item v
17497represents a variable.
17498
17499@item x
17500represents a variable or constant of one of many types. See the
17501explanation of the function for details.
17502@end table
17503
17504All Modula-2 built-in procedures also return a result, described below.
17505
17506@table @code
17507@item ABS(@var{n})
17508Returns the absolute value of @var{n}.
17509
17510@item CAP(@var{c})
17511If @var{c} is a lower case letter, it returns its upper case
c3f6f71d 17512equivalent, otherwise it returns its argument.
c906108c
SS
17513
17514@item CHR(@var{i})
17515Returns the character whose ordinal value is @var{i}.
17516
17517@item DEC(@var{v})
c3f6f71d 17518Decrements the value in the variable @var{v} by one. Returns the new value.
c906108c
SS
17519
17520@item DEC(@var{v},@var{i})
17521Decrements the value in the variable @var{v} by @var{i}. Returns the
17522new value.
17523
17524@item EXCL(@var{m},@var{s})
17525Removes the element @var{m} from the set @var{s}. Returns the new
17526set.
17527
17528@item FLOAT(@var{i})
17529Returns the floating point equivalent of the integer @var{i}.
17530
17531@item HIGH(@var{a})
17532Returns the index of the last member of @var{a}.
17533
17534@item INC(@var{v})
c3f6f71d 17535Increments the value in the variable @var{v} by one. Returns the new value.
c906108c
SS
17536
17537@item INC(@var{v},@var{i})
17538Increments the value in the variable @var{v} by @var{i}. Returns the
17539new value.
17540
17541@item INCL(@var{m},@var{s})
17542Adds the element @var{m} to the set @var{s} if it is not already
17543there. Returns the new set.
17544
17545@item MAX(@var{t})
17546Returns the maximum value of the type @var{t}.
17547
17548@item MIN(@var{t})
17549Returns the minimum value of the type @var{t}.
17550
17551@item ODD(@var{i})
17552Returns boolean TRUE if @var{i} is an odd number.
17553
17554@item ORD(@var{x})
17555Returns the ordinal value of its argument. For example, the ordinal
697aa1b7
EZ
17556value of a character is its @sc{ascii} value (on machines supporting
17557the @sc{ascii} character set). The argument @var{x} must be of an
17558ordered type, which include integral, character and enumerated types.
c906108c
SS
17559
17560@item SIZE(@var{x})
697aa1b7
EZ
17561Returns the size of its argument. The argument @var{x} can be a
17562variable or a type.
c906108c
SS
17563
17564@item TRUNC(@var{r})
17565Returns the integral part of @var{r}.
17566
844781a1 17567@item TSIZE(@var{x})
697aa1b7
EZ
17568Returns the size of its argument. The argument @var{x} can be a
17569variable or a type.
844781a1 17570
c906108c
SS
17571@item VAL(@var{t},@var{i})
17572Returns the member of the type @var{t} whose ordinal value is @var{i}.
17573@end table
17574
17575@quotation
17576@emph{Warning:} Sets and their operations are not yet supported, so
17577@value{GDBN} treats the use of procedures @code{INCL} and @code{EXCL} as
17578an error.
17579@end quotation
17580
17581@cindex Modula-2 constants
6d2ebf8b 17582@node M2 Constants
c906108c
SS
17583@subsubsection Constants
17584
17585@value{GDBN} allows you to express the constants of Modula-2 in the following
17586ways:
17587
17588@itemize @bullet
17589
17590@item
17591Integer constants are simply a sequence of digits. When used in an
17592expression, a constant is interpreted to be type-compatible with the
17593rest of the expression. Hexadecimal integers are specified by a
17594trailing @samp{H}, and octal integers by a trailing @samp{B}.
17595
17596@item
17597Floating point constants appear as a sequence of digits, followed by a
17598decimal point and another sequence of digits. An optional exponent can
17599then be specified, in the form @samp{E@r{[}+@r{|}-@r{]}@var{nnn}}, where
17600@samp{@r{[}+@r{|}-@r{]}@var{nnn}} is the desired exponent. All of the
17601digits of the floating point constant must be valid decimal (base 10)
17602digits.
17603
17604@item
17605Character constants consist of a single character enclosed by a pair of
17606like quotes, either single (@code{'}) or double (@code{"}). They may
c3f6f71d 17607also be expressed by their ordinal value (their @sc{ascii} value, usually)
c906108c
SS
17608followed by a @samp{C}.
17609
17610@item
17611String constants consist of a sequence of characters enclosed by a
17612pair of like quotes, either single (@code{'}) or double (@code{"}).
17613Escape sequences in the style of C are also allowed. @xref{C
79a6e687 17614Constants, ,C and C@t{++} Constants}, for a brief explanation of escape
c906108c
SS
17615sequences.
17616
17617@item
17618Enumerated constants consist of an enumerated identifier.
17619
17620@item
17621Boolean constants consist of the identifiers @code{TRUE} and
17622@code{FALSE}.
17623
17624@item
17625Pointer constants consist of integral values only.
17626
17627@item
17628Set constants are not yet supported.
17629@end itemize
17630
72019c9c
GM
17631@node M2 Types
17632@subsubsection Modula-2 Types
17633@cindex Modula-2 types
17634
17635Currently @value{GDBN} can print the following data types in Modula-2
17636syntax: array types, record types, set types, pointer types, procedure
17637types, enumerated types, subrange types and base types. You can also
17638print the contents of variables declared using these type.
17639This section gives a number of simple source code examples together with
17640sample @value{GDBN} sessions.
17641
17642The first example contains the following section of code:
17643
17644@smallexample
17645VAR
17646 s: SET OF CHAR ;
17647 r: [20..40] ;
17648@end smallexample
17649
17650@noindent
17651and you can request @value{GDBN} to interrogate the type and value of
17652@code{r} and @code{s}.
17653
17654@smallexample
17655(@value{GDBP}) print s
17656@{'A'..'C', 'Z'@}
17657(@value{GDBP}) ptype s
17658SET OF CHAR
17659(@value{GDBP}) print r
1766021
17661(@value{GDBP}) ptype r
17662[20..40]
17663@end smallexample
17664
17665@noindent
17666Likewise if your source code declares @code{s} as:
17667
17668@smallexample
17669VAR
17670 s: SET ['A'..'Z'] ;
17671@end smallexample
17672
17673@noindent
17674then you may query the type of @code{s} by:
17675
17676@smallexample
17677(@value{GDBP}) ptype s
17678type = SET ['A'..'Z']
17679@end smallexample
17680
17681@noindent
17682Note that at present you cannot interactively manipulate set
17683expressions using the debugger.
17684
17685The following example shows how you might declare an array in Modula-2
17686and how you can interact with @value{GDBN} to print its type and contents:
17687
17688@smallexample
17689VAR
17690 s: ARRAY [-10..10] OF CHAR ;
17691@end smallexample
17692
17693@smallexample
17694(@value{GDBP}) ptype s
17695ARRAY [-10..10] OF CHAR
17696@end smallexample
17697
17698Note that the array handling is not yet complete and although the type
17699is printed correctly, expression handling still assumes that all
17700arrays have a lower bound of zero and not @code{-10} as in the example
844781a1 17701above.
72019c9c
GM
17702
17703Here are some more type related Modula-2 examples:
17704
17705@smallexample
17706TYPE
17707 colour = (blue, red, yellow, green) ;
17708 t = [blue..yellow] ;
17709VAR
17710 s: t ;
17711BEGIN
17712 s := blue ;
17713@end smallexample
17714
17715@noindent
17716The @value{GDBN} interaction shows how you can query the data type
17717and value of a variable.
17718
17719@smallexample
17720(@value{GDBP}) print s
17721$1 = blue
17722(@value{GDBP}) ptype t
17723type = [blue..yellow]
17724@end smallexample
17725
17726@noindent
17727In this example a Modula-2 array is declared and its contents
17728displayed. Observe that the contents are written in the same way as
17729their @code{C} counterparts.
17730
17731@smallexample
17732VAR
17733 s: ARRAY [1..5] OF CARDINAL ;
17734BEGIN
17735 s[1] := 1 ;
17736@end smallexample
17737
17738@smallexample
17739(@value{GDBP}) print s
17740$1 = @{1, 0, 0, 0, 0@}
17741(@value{GDBP}) ptype s
17742type = ARRAY [1..5] OF CARDINAL
17743@end smallexample
17744
17745The Modula-2 language interface to @value{GDBN} also understands
17746pointer types as shown in this example:
17747
17748@smallexample
17749VAR
17750 s: POINTER TO ARRAY [1..5] OF CARDINAL ;
17751BEGIN
17752 NEW(s) ;
17753 s^[1] := 1 ;
17754@end smallexample
17755
17756@noindent
17757and you can request that @value{GDBN} describes the type of @code{s}.
17758
17759@smallexample
17760(@value{GDBP}) ptype s
17761type = POINTER TO ARRAY [1..5] OF CARDINAL
17762@end smallexample
17763
17764@value{GDBN} handles compound types as we can see in this example.
17765Here we combine array types, record types, pointer types and subrange
17766types:
17767
17768@smallexample
17769TYPE
17770 foo = RECORD
17771 f1: CARDINAL ;
17772 f2: CHAR ;
17773 f3: myarray ;
17774 END ;
17775
17776 myarray = ARRAY myrange OF CARDINAL ;
17777 myrange = [-2..2] ;
17778VAR
17779 s: POINTER TO ARRAY myrange OF foo ;
17780@end smallexample
17781
17782@noindent
17783and you can ask @value{GDBN} to describe the type of @code{s} as shown
17784below.
17785
17786@smallexample
17787(@value{GDBP}) ptype s
17788type = POINTER TO ARRAY [-2..2] OF foo = RECORD
17789 f1 : CARDINAL;
17790 f2 : CHAR;
17791 f3 : ARRAY [-2..2] OF CARDINAL;
17792END
17793@end smallexample
17794
6d2ebf8b 17795@node M2 Defaults
79a6e687 17796@subsubsection Modula-2 Defaults
c906108c
SS
17797@cindex Modula-2 defaults
17798
17799If type and range checking are set automatically by @value{GDBN}, they
17800both default to @code{on} whenever the working language changes to
d4f3574e 17801Modula-2. This happens regardless of whether you or @value{GDBN}
c906108c
SS
17802selected the working language.
17803
17804If you allow @value{GDBN} to set the language automatically, then entering
17805code compiled from a file whose name ends with @file{.mod} sets the
79a6e687
BW
17806working language to Modula-2. @xref{Automatically, ,Having @value{GDBN}
17807Infer the Source Language}, for further details.
c906108c 17808
6d2ebf8b 17809@node Deviations
79a6e687 17810@subsubsection Deviations from Standard Modula-2
c906108c
SS
17811@cindex Modula-2, deviations from
17812
17813A few changes have been made to make Modula-2 programs easier to debug.
17814This is done primarily via loosening its type strictness:
17815
17816@itemize @bullet
17817@item
17818Unlike in standard Modula-2, pointer constants can be formed by
17819integers. This allows you to modify pointer variables during
17820debugging. (In standard Modula-2, the actual address contained in a
17821pointer variable is hidden from you; it can only be modified
17822through direct assignment to another pointer variable or expression that
17823returned a pointer.)
17824
17825@item
17826C escape sequences can be used in strings and characters to represent
17827non-printable characters. @value{GDBN} prints out strings with these
17828escape sequences embedded. Single non-printable characters are
17829printed using the @samp{CHR(@var{nnn})} format.
17830
17831@item
17832The assignment operator (@code{:=}) returns the value of its right-hand
17833argument.
17834
17835@item
17836All built-in procedures both modify @emph{and} return their argument.
17837@end itemize
17838
6d2ebf8b 17839@node M2 Checks
79a6e687 17840@subsubsection Modula-2 Type and Range Checks
c906108c
SS
17841@cindex Modula-2 checks
17842
17843@quotation
17844@emph{Warning:} in this release, @value{GDBN} does not yet perform type or
17845range checking.
17846@end quotation
17847@c FIXME remove warning when type/range checks added
17848
17849@value{GDBN} considers two Modula-2 variables type equivalent if:
17850
17851@itemize @bullet
17852@item
17853They are of types that have been declared equivalent via a @code{TYPE
17854@var{t1} = @var{t2}} statement
17855
17856@item
17857They have been declared on the same line. (Note: This is true of the
17858@sc{gnu} Modula-2 compiler, but it may not be true of other compilers.)
17859@end itemize
17860
17861As long as type checking is enabled, any attempt to combine variables
17862whose types are not equivalent is an error.
17863
17864Range checking is done on all mathematical operations, assignment, array
17865index bounds, and all built-in functions and procedures.
17866
6d2ebf8b 17867@node M2 Scope
79a6e687 17868@subsubsection The Scope Operators @code{::} and @code{.}
c906108c 17869@cindex scope
41afff9a 17870@cindex @code{.}, Modula-2 scope operator
c906108c
SS
17871@cindex colon, doubled as scope operator
17872@ifinfo
41afff9a 17873@vindex colon-colon@r{, in Modula-2}
c906108c
SS
17874@c Info cannot handle :: but TeX can.
17875@end ifinfo
a67ec3f4 17876@ifnotinfo
41afff9a 17877@vindex ::@r{, in Modula-2}
a67ec3f4 17878@end ifnotinfo
c906108c
SS
17879
17880There are a few subtle differences between the Modula-2 scope operator
17881(@code{.}) and the @value{GDBN} scope operator (@code{::}). The two have
17882similar syntax:
17883
474c8240 17884@smallexample
c906108c
SS
17885
17886@var{module} . @var{id}
17887@var{scope} :: @var{id}
474c8240 17888@end smallexample
c906108c
SS
17889
17890@noindent
17891where @var{scope} is the name of a module or a procedure,
17892@var{module} the name of a module, and @var{id} is any declared
17893identifier within your program, except another module.
17894
17895Using the @code{::} operator makes @value{GDBN} search the scope
17896specified by @var{scope} for the identifier @var{id}. If it is not
17897found in the specified scope, then @value{GDBN} searches all scopes
17898enclosing the one specified by @var{scope}.
17899
17900Using the @code{.} operator makes @value{GDBN} search the current scope for
17901the identifier specified by @var{id} that was imported from the
17902definition module specified by @var{module}. With this operator, it is
17903an error if the identifier @var{id} was not imported from definition
17904module @var{module}, or if @var{id} is not an identifier in
17905@var{module}.
17906
6d2ebf8b 17907@node GDB/M2
c906108c
SS
17908@subsubsection @value{GDBN} and Modula-2
17909
17910Some @value{GDBN} commands have little use when debugging Modula-2 programs.
17911Five subcommands of @code{set print} and @code{show print} apply
b37052ae 17912specifically to C and C@t{++}: @samp{vtbl}, @samp{demangle},
c906108c 17913@samp{asm-demangle}, @samp{object}, and @samp{union}. The first four
b37052ae 17914apply to C@t{++}, and the last to the C @code{union} type, which has no direct
c906108c
SS
17915analogue in Modula-2.
17916
17917The @code{@@} operator (@pxref{Expressions, ,Expressions}), while available
d4f3574e 17918with any language, is not useful with Modula-2. Its
c906108c 17919intent is to aid the debugging of @dfn{dynamic arrays}, which cannot be
b37052ae 17920created in Modula-2 as they can in C or C@t{++}. However, because an
c906108c 17921address can be specified by an integral constant, the construct
d4f3574e 17922@samp{@{@var{type}@}@var{adrexp}} is still useful.
c906108c
SS
17923
17924@cindex @code{#} in Modula-2
17925In @value{GDBN} scripts, the Modula-2 inequality operator @code{#} is
17926interpreted as the beginning of a comment. Use @code{<>} instead.
c906108c 17927
e07c999f
PH
17928@node Ada
17929@subsection Ada
17930@cindex Ada
17931
17932The extensions made to @value{GDBN} for Ada only support
17933output from the @sc{gnu} Ada (GNAT) compiler.
17934Other Ada compilers are not currently supported, and
17935attempting to debug executables produced by them is most likely
17936to be difficult.
17937
17938
17939@cindex expressions in Ada
17940@menu
17941* Ada Mode Intro:: General remarks on the Ada syntax
17942 and semantics supported by Ada mode
17943 in @value{GDBN}.
17944* Omissions from Ada:: Restrictions on the Ada expression syntax.
17945* Additions to Ada:: Extensions of the Ada expression syntax.
3685b09f
PMR
17946* Overloading support for Ada:: Support for expressions involving overloaded
17947 subprograms.
e07c999f 17948* Stopping Before Main Program:: Debugging the program during elaboration.
58d06528 17949* Ada Exceptions:: Ada Exceptions
20924a55
JB
17950* Ada Tasks:: Listing and setting breakpoints in tasks.
17951* Ada Tasks and Core Files:: Tasking Support when Debugging Core Files
6e1bb179
JB
17952* Ravenscar Profile:: Tasking Support when using the Ravenscar
17953 Profile
3fcded8f 17954* Ada Settings:: New settable GDB parameters for Ada.
e07c999f
PH
17955* Ada Glitches:: Known peculiarities of Ada mode.
17956@end menu
17957
17958@node Ada Mode Intro
17959@subsubsection Introduction
17960@cindex Ada mode, general
17961
17962The Ada mode of @value{GDBN} supports a fairly large subset of Ada expression
17963syntax, with some extensions.
17964The philosophy behind the design of this subset is
17965
17966@itemize @bullet
17967@item
17968That @value{GDBN} should provide basic literals and access to operations for
17969arithmetic, dereferencing, field selection, indexing, and subprogram calls,
17970leaving more sophisticated computations to subprograms written into the
17971program (which therefore may be called from @value{GDBN}).
17972
17973@item
17974That type safety and strict adherence to Ada language restrictions
17975are not particularly important to the @value{GDBN} user.
17976
17977@item
17978That brevity is important to the @value{GDBN} user.
17979@end itemize
17980
f3a2dd1a
JB
17981Thus, for brevity, the debugger acts as if all names declared in
17982user-written packages are directly visible, even if they are not visible
17983according to Ada rules, thus making it unnecessary to fully qualify most
17984names with their packages, regardless of context. Where this causes
17985ambiguity, @value{GDBN} asks the user's intent.
e07c999f
PH
17986
17987The debugger will start in Ada mode if it detects an Ada main program.
17988As for other languages, it will enter Ada mode when stopped in a program that
17989was translated from an Ada source file.
17990
17991While in Ada mode, you may use `@t{--}' for comments. This is useful
17992mostly for documenting command files. The standard @value{GDBN} comment
17993(@samp{#}) still works at the beginning of a line in Ada mode, but not in the
17994middle (to allow based literals).
17995
e07c999f
PH
17996@node Omissions from Ada
17997@subsubsection Omissions from Ada
17998@cindex Ada, omissions from
17999
18000Here are the notable omissions from the subset:
18001
18002@itemize @bullet
18003@item
18004Only a subset of the attributes are supported:
18005
18006@itemize @minus
18007@item
18008@t{'First}, @t{'Last}, and @t{'Length}
18009 on array objects (not on types and subtypes).
18010
18011@item
18012@t{'Min} and @t{'Max}.
18013
18014@item
18015@t{'Pos} and @t{'Val}.
18016
18017@item
18018@t{'Tag}.
18019
18020@item
18021@t{'Range} on array objects (not subtypes), but only as the right
18022operand of the membership (@code{in}) operator.
18023
18024@item
18025@t{'Access}, @t{'Unchecked_Access}, and
18026@t{'Unrestricted_Access} (a GNAT extension).
18027
18028@item
18029@t{'Address}.
18030@end itemize
18031
18032@item
18033The names in
18034@code{Characters.Latin_1} are not available and
18035concatenation is not implemented. Thus, escape characters in strings are
18036not currently available.
18037
18038@item
18039Equality tests (@samp{=} and @samp{/=}) on arrays test for bitwise
18040equality of representations. They will generally work correctly
18041for strings and arrays whose elements have integer or enumeration types.
18042They may not work correctly for arrays whose element
18043types have user-defined equality, for arrays of real values
18044(in particular, IEEE-conformant floating point, because of negative
18045zeroes and NaNs), and for arrays whose elements contain unused bits with
18046indeterminate values.
18047
18048@item
18049The other component-by-component array operations (@code{and}, @code{or},
18050@code{xor}, @code{not}, and relational tests other than equality)
18051are not implemented.
18052
18053@item
860701dc
PH
18054@cindex array aggregates (Ada)
18055@cindex record aggregates (Ada)
18056@cindex aggregates (Ada)
18057There is limited support for array and record aggregates. They are
18058permitted only on the right sides of assignments, as in these examples:
18059
18060@smallexample
077e0a52
JB
18061(@value{GDBP}) set An_Array := (1, 2, 3, 4, 5, 6)
18062(@value{GDBP}) set An_Array := (1, others => 0)
18063(@value{GDBP}) set An_Array := (0|4 => 1, 1..3 => 2, 5 => 6)
18064(@value{GDBP}) set A_2D_Array := ((1, 2, 3), (4, 5, 6), (7, 8, 9))
18065(@value{GDBP}) set A_Record := (1, "Peter", True);
18066(@value{GDBP}) set A_Record := (Name => "Peter", Id => 1, Alive => True)
860701dc
PH
18067@end smallexample
18068
18069Changing a
18070discriminant's value by assigning an aggregate has an
18071undefined effect if that discriminant is used within the record.
18072However, you can first modify discriminants by directly assigning to
18073them (which normally would not be allowed in Ada), and then performing an
18074aggregate assignment. For example, given a variable @code{A_Rec}
18075declared to have a type such as:
18076
18077@smallexample
18078type Rec (Len : Small_Integer := 0) is record
18079 Id : Integer;
18080 Vals : IntArray (1 .. Len);
18081end record;
18082@end smallexample
18083
18084you can assign a value with a different size of @code{Vals} with two
18085assignments:
18086
18087@smallexample
077e0a52
JB
18088(@value{GDBP}) set A_Rec.Len := 4
18089(@value{GDBP}) set A_Rec := (Id => 42, Vals => (1, 2, 3, 4))
860701dc
PH
18090@end smallexample
18091
18092As this example also illustrates, @value{GDBN} is very loose about the usual
18093rules concerning aggregates. You may leave out some of the
18094components of an array or record aggregate (such as the @code{Len}
18095component in the assignment to @code{A_Rec} above); they will retain their
18096original values upon assignment. You may freely use dynamic values as
18097indices in component associations. You may even use overlapping or
18098redundant component associations, although which component values are
18099assigned in such cases is not defined.
e07c999f
PH
18100
18101@item
18102Calls to dispatching subprograms are not implemented.
18103
18104@item
18105The overloading algorithm is much more limited (i.e., less selective)
ae21e955
BW
18106than that of real Ada. It makes only limited use of the context in
18107which a subexpression appears to resolve its meaning, and it is much
18108looser in its rules for allowing type matches. As a result, some
18109function calls will be ambiguous, and the user will be asked to choose
18110the proper resolution.
e07c999f
PH
18111
18112@item
18113The @code{new} operator is not implemented.
18114
18115@item
18116Entry calls are not implemented.
18117
18118@item
18119Aside from printing, arithmetic operations on the native VAX floating-point
18120formats are not supported.
18121
18122@item
18123It is not possible to slice a packed array.
158c7665
PH
18124
18125@item
18126The names @code{True} and @code{False}, when not part of a qualified name,
18127are interpreted as if implicitly prefixed by @code{Standard}, regardless of
18128context.
18129Should your program
18130redefine these names in a package or procedure (at best a dubious practice),
18131you will have to use fully qualified names to access their new definitions.
e07c999f
PH
18132@end itemize
18133
18134@node Additions to Ada
18135@subsubsection Additions to Ada
18136@cindex Ada, deviations from
18137
18138As it does for other languages, @value{GDBN} makes certain generic
18139extensions to Ada (@pxref{Expressions}):
18140
18141@itemize @bullet
18142@item
ae21e955
BW
18143If the expression @var{E} is a variable residing in memory (typically
18144a local variable or array element) and @var{N} is a positive integer,
18145then @code{@var{E}@@@var{N}} displays the values of @var{E} and the
18146@var{N}-1 adjacent variables following it in memory as an array. In
18147Ada, this operator is generally not necessary, since its prime use is
18148in displaying parts of an array, and slicing will usually do this in
18149Ada. However, there are occasional uses when debugging programs in
18150which certain debugging information has been optimized away.
e07c999f
PH
18151
18152@item
ae21e955
BW
18153@code{@var{B}::@var{var}} means ``the variable named @var{var} that
18154appears in function or file @var{B}.'' When @var{B} is a file name,
18155you must typically surround it in single quotes.
e07c999f
PH
18156
18157@item
18158The expression @code{@{@var{type}@} @var{addr}} means ``the variable of type
18159@var{type} that appears at address @var{addr}.''
18160
18161@item
18162A name starting with @samp{$} is a convenience variable
18163(@pxref{Convenience Vars}) or a machine register (@pxref{Registers}).
18164@end itemize
18165
ae21e955
BW
18166In addition, @value{GDBN} provides a few other shortcuts and outright
18167additions specific to Ada:
e07c999f
PH
18168
18169@itemize @bullet
18170@item
18171The assignment statement is allowed as an expression, returning
18172its right-hand operand as its value. Thus, you may enter
18173
18174@smallexample
077e0a52
JB
18175(@value{GDBP}) set x := y + 3
18176(@value{GDBP}) print A(tmp := y + 1)
e07c999f
PH
18177@end smallexample
18178
18179@item
18180The semicolon is allowed as an ``operator,'' returning as its value
18181the value of its right-hand operand.
18182This allows, for example,
18183complex conditional breaks:
18184
18185@smallexample
077e0a52
JB
18186(@value{GDBP}) break f
18187(@value{GDBP}) condition 1 (report(i); k += 1; A(k) > 100)
e07c999f
PH
18188@end smallexample
18189
18190@item
18191Rather than use catenation and symbolic character names to introduce special
18192characters into strings, one may instead use a special bracket notation,
18193which is also used to print strings. A sequence of characters of the form
18194@samp{["@var{XX}"]} within a string or character literal denotes the
18195(single) character whose numeric encoding is @var{XX} in hexadecimal. The
18196sequence of characters @samp{["""]} also denotes a single quotation mark
18197in strings. For example,
18198@smallexample
18199 "One line.["0a"]Next line.["0a"]"
18200@end smallexample
18201@noindent
ae21e955
BW
18202contains an ASCII newline character (@code{Ada.Characters.Latin_1.LF})
18203after each period.
e07c999f
PH
18204
18205@item
18206The subtype used as a prefix for the attributes @t{'Pos}, @t{'Min}, and
18207@t{'Max} is optional (and is ignored in any case). For example, it is valid
18208to write
18209
18210@smallexample
077e0a52 18211(@value{GDBP}) print 'max(x, y)
e07c999f
PH
18212@end smallexample
18213
18214@item
18215When printing arrays, @value{GDBN} uses positional notation when the
18216array has a lower bound of 1, and uses a modified named notation otherwise.
ae21e955
BW
18217For example, a one-dimensional array of three integers with a lower bound
18218of 3 might print as
e07c999f
PH
18219
18220@smallexample
18221(3 => 10, 17, 1)
18222@end smallexample
18223
18224@noindent
18225That is, in contrast to valid Ada, only the first component has a @code{=>}
18226clause.
18227
18228@item
18229You may abbreviate attributes in expressions with any unique,
18230multi-character subsequence of
18231their names (an exact match gets preference).
18232For example, you may use @t{a'len}, @t{a'gth}, or @t{a'lh}
18233in place of @t{a'length}.
18234
18235@item
18236@cindex quoting Ada internal identifiers
18237Since Ada is case-insensitive, the debugger normally maps identifiers you type
18238to lower case. The GNAT compiler uses upper-case characters for
18239some of its internal identifiers, which are normally of no interest to users.
18240For the rare occasions when you actually have to look at them,
18241enclose them in angle brackets to avoid the lower-case mapping.
18242For example,
18243@smallexample
077e0a52 18244(@value{GDBP}) print <JMPBUF_SAVE>[0]
e07c999f
PH
18245@end smallexample
18246
18247@item
18248Printing an object of class-wide type or dereferencing an
18249access-to-class-wide value will display all the components of the object's
18250specific type (as indicated by its run-time tag). Likewise, component
18251selection on such a value will operate on the specific type of the
18252object.
18253
18254@end itemize
18255
3685b09f
PMR
18256@node Overloading support for Ada
18257@subsubsection Overloading support for Ada
18258@cindex overloading, Ada
18259
18260The debugger supports limited overloading. Given a subprogram call in which
18261the function symbol has multiple definitions, it will use the number of
18262actual parameters and some information about their types to attempt to narrow
18263the set of definitions. It also makes very limited use of context, preferring
18264procedures to functions in the context of the @code{call} command, and
18265functions to procedures elsewhere.
18266
18267If, after narrowing, the set of matching definitions still contains more than
18268one definition, @value{GDBN} will display a menu to query which one it should
18269use, for instance:
18270
18271@smallexample
18272(@value{GDBP}) print f(1)
18273Multiple matches for f
18274[0] cancel
18275[1] foo.f (integer) return boolean at foo.adb:23
18276[2] foo.f (foo.new_integer) return boolean at foo.adb:28
18277>
18278@end smallexample
18279
18280In this case, just select one menu entry either to cancel expression evaluation
18281(type @kbd{0} and press @key{RET}) or to continue evaluation with a specific
18282instance (type the corresponding number and press @key{RET}).
18283
18284Here are a couple of commands to customize @value{GDBN}'s behavior in this
18285case:
18286
18287@table @code
18288
18289@kindex set ada print-signatures
18290@item set ada print-signatures
18291Control whether parameter types and return types are displayed in overloads
18292selection menus. It is @code{on} by default.
18293@xref{Overloading support for Ada}.
18294
18295@kindex show ada print-signatures
18296@item show ada print-signatures
18297Show the current setting for displaying parameter types and return types in
18298overloads selection menu.
18299@xref{Overloading support for Ada}.
18300
18301@end table
18302
e07c999f
PH
18303@node Stopping Before Main Program
18304@subsubsection Stopping at the Very Beginning
18305
18306@cindex breakpointing Ada elaboration code
18307It is sometimes necessary to debug the program during elaboration, and
18308before reaching the main procedure.
18309As defined in the Ada Reference
18310Manual, the elaboration code is invoked from a procedure called
18311@code{adainit}. To run your program up to the beginning of
18312elaboration, simply use the following two commands:
18313@code{tbreak adainit} and @code{run}.
18314
58d06528
JB
18315@node Ada Exceptions
18316@subsubsection Ada Exceptions
18317
18318A command is provided to list all Ada exceptions:
18319
18320@table @code
18321@kindex info exceptions
18322@item info exceptions
18323@itemx info exceptions @var{regexp}
18324The @code{info exceptions} command allows you to list all Ada exceptions
18325defined within the program being debugged, as well as their addresses.
18326With a regular expression, @var{regexp}, as argument, only those exceptions
18327whose names match @var{regexp} are listed.
18328@end table
18329
18330Below is a small example, showing how the command can be used, first
18331without argument, and next with a regular expression passed as an
18332argument.
18333
18334@smallexample
18335(@value{GDBP}) info exceptions
18336All defined Ada exceptions:
18337constraint_error: 0x613da0
18338program_error: 0x613d20
18339storage_error: 0x613ce0
18340tasking_error: 0x613ca0
18341const.aint_global_e: 0x613b00
18342(@value{GDBP}) info exceptions const.aint
18343All Ada exceptions matching regular expression "const.aint":
18344constraint_error: 0x613da0
18345const.aint_global_e: 0x613b00
18346@end smallexample
18347
18348It is also possible to ask @value{GDBN} to stop your program's execution
18349when an exception is raised. For more details, see @ref{Set Catchpoints}.
18350
20924a55
JB
18351@node Ada Tasks
18352@subsubsection Extensions for Ada Tasks
18353@cindex Ada, tasking
18354
18355Support for Ada tasks is analogous to that for threads (@pxref{Threads}).
18356@value{GDBN} provides the following task-related commands:
18357
18358@table @code
18359@kindex info tasks
18360@item info tasks
18361This command shows a list of current Ada tasks, as in the following example:
18362
18363
18364@smallexample
18365@iftex
18366@leftskip=0.5cm
18367@end iftex
18368(@value{GDBP}) info tasks
18369 ID TID P-ID Pri State Name
18370 1 8088000 0 15 Child Activation Wait main_task
18371 2 80a4000 1 15 Accept Statement b
18372 3 809a800 1 15 Child Activation Wait a
32cd1edc 18373* 4 80ae800 3 15 Runnable c
20924a55
JB
18374
18375@end smallexample
18376
18377@noindent
18378In this listing, the asterisk before the last task indicates it to be the
18379task currently being inspected.
18380
18381@table @asis
18382@item ID
18383Represents @value{GDBN}'s internal task number.
18384
18385@item TID
18386The Ada task ID.
18387
18388@item P-ID
18389The parent's task ID (@value{GDBN}'s internal task number).
18390
18391@item Pri
18392The base priority of the task.
18393
18394@item State
18395Current state of the task.
18396
18397@table @code
18398@item Unactivated
18399The task has been created but has not been activated. It cannot be
18400executing.
18401
20924a55
JB
18402@item Runnable
18403The task is not blocked for any reason known to Ada. (It may be waiting
18404for a mutex, though.) It is conceptually "executing" in normal mode.
18405
18406@item Terminated
18407The task is terminated, in the sense of ARM 9.3 (5). Any dependents
18408that were waiting on terminate alternatives have been awakened and have
18409terminated themselves.
18410
18411@item Child Activation Wait
18412The task is waiting for created tasks to complete activation.
18413
18414@item Accept Statement
18415The task is waiting on an accept or selective wait statement.
18416
18417@item Waiting on entry call
18418The task is waiting on an entry call.
18419
18420@item Async Select Wait
18421The task is waiting to start the abortable part of an asynchronous
18422select statement.
18423
18424@item Delay Sleep
18425The task is waiting on a select statement with only a delay
18426alternative open.
18427
18428@item Child Termination Wait
18429The task is sleeping having completed a master within itself, and is
18430waiting for the tasks dependent on that master to become terminated or
18431waiting on a terminate Phase.
18432
18433@item Wait Child in Term Alt
18434The task is sleeping waiting for tasks on terminate alternatives to
18435finish terminating.
18436
18437@item Accepting RV with @var{taskno}
18438The task is accepting a rendez-vous with the task @var{taskno}.
18439@end table
18440
18441@item Name
18442Name of the task in the program.
18443
18444@end table
18445
18446@kindex info task @var{taskno}
18447@item info task @var{taskno}
6b92c0d3 18448This command shows detailed informations on the specified task, as in
20924a55
JB
18449the following example:
18450@smallexample
18451@iftex
18452@leftskip=0.5cm
18453@end iftex
18454(@value{GDBP}) info tasks
18455 ID TID P-ID Pri State Name
18456 1 8077880 0 15 Child Activation Wait main_task
32cd1edc 18457* 2 807c468 1 15 Runnable task_1
20924a55
JB
18458(@value{GDBP}) info task 2
18459Ada Task: 0x807c468
4993045d 18460Name: "task_1"
87f7ab7b
JB
18461Thread: 0
18462LWP: 0x1fac
4993045d 18463Parent: 1 ("main_task")
20924a55
JB
18464Base Priority: 15
18465State: Runnable
18466@end smallexample
18467
18468@item task
18469@kindex task@r{ (Ada)}
18470@cindex current Ada task ID
4993045d 18471This command prints the ID and name of the current task.
20924a55
JB
18472
18473@smallexample
18474@iftex
18475@leftskip=0.5cm
18476@end iftex
18477(@value{GDBP}) info tasks
18478 ID TID P-ID Pri State Name
18479 1 8077870 0 15 Child Activation Wait main_task
4993045d 18480* 2 807c458 1 15 Runnable some_task
20924a55 18481(@value{GDBP}) task
4993045d 18482[Current task is 2 "some_task"]
20924a55
JB
18483@end smallexample
18484
18485@item task @var{taskno}
18486@cindex Ada task switching
5d5658a1 18487This command is like the @code{thread @var{thread-id}}
20924a55
JB
18488command (@pxref{Threads}). It switches the context of debugging
18489from the current task to the given task.
18490
18491@smallexample
18492@iftex
18493@leftskip=0.5cm
18494@end iftex
18495(@value{GDBP}) info tasks
18496 ID TID P-ID Pri State Name
18497 1 8077870 0 15 Child Activation Wait main_task
4993045d 18498* 2 807c458 1 15 Runnable some_task
20924a55 18499(@value{GDBP}) task 1
4993045d 18500[Switching to task 1 "main_task"]
20924a55
JB
18501#0 0x8067726 in pthread_cond_wait ()
18502(@value{GDBP}) bt
18503#0 0x8067726 in pthread_cond_wait ()
18504#1 0x8056714 in system.os_interface.pthread_cond_wait ()
18505#2 0x805cb63 in system.task_primitives.operations.sleep ()
18506#3 0x806153e in system.tasking.stages.activate_tasks ()
18507#4 0x804aacc in un () at un.adb:5
18508@end smallexample
18509
629500fa
KS
18510@item break @var{location} task @var{taskno}
18511@itemx break @var{location} task @var{taskno} if @dots{}
45ac276d
JB
18512@cindex breakpoints and tasks, in Ada
18513@cindex task breakpoints, in Ada
18514@kindex break @dots{} task @var{taskno}@r{ (Ada)}
18515These commands are like the @code{break @dots{} thread @dots{}}
697aa1b7 18516command (@pxref{Thread Stops}). The
629500fa 18517@var{location} argument specifies source lines, as described
45ac276d
JB
18518in @ref{Specify Location}.
18519
18520Use the qualifier @samp{task @var{taskno}} with a breakpoint command
18521to specify that you only want @value{GDBN} to stop the program when a
697aa1b7 18522particular Ada task reaches this breakpoint. The @var{taskno} is one of the
45ac276d
JB
18523numeric task identifiers assigned by @value{GDBN}, shown in the first
18524column of the @samp{info tasks} display.
18525
18526If you do not specify @samp{task @var{taskno}} when you set a
18527breakpoint, the breakpoint applies to @emph{all} tasks of your
18528program.
18529
18530You can use the @code{task} qualifier on conditional breakpoints as
18531well; in this case, place @samp{task @var{taskno}} before the
18532breakpoint condition (before the @code{if}).
18533
18534For example,
18535
18536@smallexample
18537@iftex
18538@leftskip=0.5cm
18539@end iftex
18540(@value{GDBP}) info tasks
18541 ID TID P-ID Pri State Name
18542 1 140022020 0 15 Child Activation Wait main_task
18543 2 140045060 1 15 Accept/Select Wait t2
18544 3 140044840 1 15 Runnable t1
18545* 4 140056040 1 15 Runnable t3
18546(@value{GDBP}) b 15 task 2
18547Breakpoint 5 at 0x120044cb0: file test_task_debug.adb, line 15.
18548(@value{GDBP}) cont
18549Continuing.
18550task # 1 running
18551task # 2 running
18552
18553Breakpoint 5, test_task_debug () at test_task_debug.adb:15
1855415 flush;
18555(@value{GDBP}) info tasks
18556 ID TID P-ID Pri State Name
18557 1 140022020 0 15 Child Activation Wait main_task
18558* 2 140045060 1 15 Runnable t2
18559 3 140044840 1 15 Runnable t1
18560 4 140056040 1 15 Delay Sleep t3
18561@end smallexample
20924a55
JB
18562@end table
18563
18564@node Ada Tasks and Core Files
18565@subsubsection Tasking Support when Debugging Core Files
18566@cindex Ada tasking and core file debugging
18567
18568When inspecting a core file, as opposed to debugging a live program,
18569tasking support may be limited or even unavailable, depending on
18570the platform being used.
18571For instance, on x86-linux, the list of tasks is available, but task
32a8097b 18572switching is not supported.
20924a55 18573
32a8097b 18574On certain platforms, the debugger needs to perform some
20924a55
JB
18575memory writes in order to provide Ada tasking support. When inspecting
18576a core file, this means that the core file must be opened with read-write
18577privileges, using the command @samp{"set write on"} (@pxref{Patching}).
18578Under these circumstances, you should make a backup copy of the core
18579file before inspecting it with @value{GDBN}.
18580
6e1bb179
JB
18581@node Ravenscar Profile
18582@subsubsection Tasking Support when using the Ravenscar Profile
18583@cindex Ravenscar Profile
18584
18585The @dfn{Ravenscar Profile} is a subset of the Ada tasking features,
18586specifically designed for systems with safety-critical real-time
18587requirements.
18588
18589@table @code
18590@kindex set ravenscar task-switching on
18591@cindex task switching with program using Ravenscar Profile
18592@item set ravenscar task-switching on
18593Allows task switching when debugging a program that uses the Ravenscar
18594Profile. This is the default.
18595
18596@kindex set ravenscar task-switching off
18597@item set ravenscar task-switching off
18598Turn off task switching when debugging a program that uses the Ravenscar
18599Profile. This is mostly intended to disable the code that adds support
18600for the Ravenscar Profile, in case a bug in either @value{GDBN} or in
18601the Ravenscar runtime is preventing @value{GDBN} from working properly.
18602To be effective, this command should be run before the program is started.
18603
18604@kindex show ravenscar task-switching
18605@item show ravenscar task-switching
18606Show whether it is possible to switch from task to task in a program
18607using the Ravenscar Profile.
18608
18609@end table
18610
e09eef98
TT
18611@cindex Ravenscar thread
18612When Ravenscar task-switching is enabled, Ravenscar tasks are
18613announced by @value{GDBN} as if they were threads:
18614
18615@smallexample
18616(gdb) continue
18617[New Ravenscar Thread 0x2b8f0]
18618@end smallexample
18619
18620Both Ravenscar tasks and the underlying CPU threads will show up in
18621the output of @code{info threads}:
18622
18623@smallexample
18624(gdb) info threads
18625 Id Target Id Frame
18626 1 Thread 1 (CPU#0 [running]) simple () at simple.adb:10
18627 2 Thread 2 (CPU#1 [running]) 0x0000000000003d34 in __gnat_initialize_cpu_devices ()
18628 3 Thread 3 (CPU#2 [running]) 0x0000000000003d28 in __gnat_initialize_cpu_devices ()
18629 4 Thread 4 (CPU#3 [halted ]) 0x000000000000c6ec in system.task_primitives.operations.idle ()
18630* 5 Ravenscar Thread 0x2b8f0 simple () at simple.adb:10
18631 6 Ravenscar Thread 0x2f150 0x000000000000c6ec in system.task_primitives.operations.idle ()
18632@end smallexample
18633
18634One known limitation of the Ravenscar support in @value{GDBN} is that
18635it isn't currently possible to single-step through the runtime
18636initialization sequence. If you need to debug this code, you should
18637use @code{set ravenscar task-switching off}.
18638
3fcded8f
JB
18639@node Ada Settings
18640@subsubsection Ada Settings
18641@cindex Ada settings
18642
18643@table @code
18644@kindex set varsize-limit
18645@item set varsize-limit @var{size}
18646Prevent @value{GDBN} from attempting to evaluate objects whose size
18647is above the given limit (@var{size}) when those sizes are computed
18648from run-time quantities. This is typically the case when the object
18649has a variable size, such as an array whose bounds are not known at
18650compile time for example. Setting @var{size} to @code{unlimited}
18651removes the size limitation. By default, the limit is about 65KB.
18652
18653The purpose of having such a limit is to prevent @value{GDBN} from
18654trying to grab enormous chunks of virtual memory when asked to evaluate
18655a quantity whose bounds have been corrupted or have not yet been fully
18656initialized. The limit applies to the results of some subexpressions
18657as well as to complete expressions. For example, an expression denoting
18658a simple integer component, such as @code{x.y.z}, may fail if the size of
18659@code{x.y} is variable and exceeds @code{size}. On the other hand,
18660@value{GDBN} is sometimes clever; the expression @code{A(i)}, where
18661@code{A} is an array variable with non-constant size, will generally
18662succeed regardless of the bounds on @code{A}, as long as the component
18663size is less than @var{size}.
18664
18665@kindex show varsize-limit
18666@item show varsize-limit
18667Show the limit on types whose size is determined by run-time quantities.
18668@end table
18669
e07c999f
PH
18670@node Ada Glitches
18671@subsubsection Known Peculiarities of Ada Mode
18672@cindex Ada, problems
18673
18674Besides the omissions listed previously (@pxref{Omissions from Ada}),
18675we know of several problems with and limitations of Ada mode in
18676@value{GDBN},
18677some of which will be fixed with planned future releases of the debugger
18678and the GNU Ada compiler.
18679
18680@itemize @bullet
e07c999f
PH
18681@item
18682Static constants that the compiler chooses not to materialize as objects in
18683storage are invisible to the debugger.
18684
18685@item
18686Named parameter associations in function argument lists are ignored (the
18687argument lists are treated as positional).
18688
18689@item
18690Many useful library packages are currently invisible to the debugger.
18691
18692@item
18693Fixed-point arithmetic, conversions, input, and output is carried out using
18694floating-point arithmetic, and may give results that only approximate those on
18695the host machine.
18696
e07c999f
PH
18697@item
18698The GNAT compiler never generates the prefix @code{Standard} for any of
18699the standard symbols defined by the Ada language. @value{GDBN} knows about
18700this: it will strip the prefix from names when you use it, and will never
18701look for a name you have so qualified among local symbols, nor match against
18702symbols in other packages or subprograms. If you have
18703defined entities anywhere in your program other than parameters and
18704local variables whose simple names match names in @code{Standard},
18705GNAT's lack of qualification here can cause confusion. When this happens,
18706you can usually resolve the confusion
18707by qualifying the problematic names with package
18708@code{Standard} explicitly.
18709@end itemize
18710
95433b34
JB
18711Older versions of the compiler sometimes generate erroneous debugging
18712information, resulting in the debugger incorrectly printing the value
18713of affected entities. In some cases, the debugger is able to work
18714around an issue automatically. In other cases, the debugger is able
18715to work around the issue, but the work-around has to be specifically
18716enabled.
18717
18718@kindex set ada trust-PAD-over-XVS
18719@kindex show ada trust-PAD-over-XVS
18720@table @code
18721
18722@item set ada trust-PAD-over-XVS on
18723Configure GDB to strictly follow the GNAT encoding when computing the
18724value of Ada entities, particularly when @code{PAD} and @code{PAD___XVS}
18725types are involved (see @code{ada/exp_dbug.ads} in the GCC sources for
18726a complete description of the encoding used by the GNAT compiler).
18727This is the default.
18728
18729@item set ada trust-PAD-over-XVS off
18730This is related to the encoding using by the GNAT compiler. If @value{GDBN}
18731sometimes prints the wrong value for certain entities, changing @code{ada
18732trust-PAD-over-XVS} to @code{off} activates a work-around which may fix
18733the issue. It is always safe to set @code{ada trust-PAD-over-XVS} to
18734@code{off}, but this incurs a slight performance penalty, so it is
18735recommended to leave this setting to @code{on} unless necessary.
18736
18737@end table
18738
c6044dd1
JB
18739@cindex GNAT descriptive types
18740@cindex GNAT encoding
18741Internally, the debugger also relies on the compiler following a number
18742of conventions known as the @samp{GNAT Encoding}, all documented in
18743@file{gcc/ada/exp_dbug.ads} in the GCC sources. This encoding describes
18744how the debugging information should be generated for certain types.
18745In particular, this convention makes use of @dfn{descriptive types},
18746which are artificial types generated purely to help the debugger.
18747
18748These encodings were defined at a time when the debugging information
18749format used was not powerful enough to describe some of the more complex
18750types available in Ada. Since DWARF allows us to express nearly all
18751Ada features, the long-term goal is to slowly replace these descriptive
18752types by their pure DWARF equivalent. To facilitate that transition,
18753a new maintenance option is available to force the debugger to ignore
18754those descriptive types. It allows the user to quickly evaluate how
18755well @value{GDBN} works without them.
18756
18757@table @code
18758
18759@kindex maint ada set ignore-descriptive-types
18760@item maintenance ada set ignore-descriptive-types [on|off]
18761Control whether the debugger should ignore descriptive types.
18762The default is not to ignore descriptives types (@code{off}).
18763
18764@kindex maint ada show ignore-descriptive-types
18765@item maintenance ada show ignore-descriptive-types
18766Show if descriptive types are ignored by @value{GDBN}.
18767
18768@end table
18769
79a6e687
BW
18770@node Unsupported Languages
18771@section Unsupported Languages
4e562065
JB
18772
18773@cindex unsupported languages
18774@cindex minimal language
18775In addition to the other fully-supported programming languages,
18776@value{GDBN} also provides a pseudo-language, called @code{minimal}.
18777It does not represent a real programming language, but provides a set
18778of capabilities close to what the C or assembly languages provide.
18779This should allow most simple operations to be performed while debugging
18780an application that uses a language currently not supported by @value{GDBN}.
18781
18782If the language is set to @code{auto}, @value{GDBN} will automatically
18783select this language if the current frame corresponds to an unsupported
18784language.
18785
6d2ebf8b 18786@node Symbols
c906108c
SS
18787@chapter Examining the Symbol Table
18788
d4f3574e 18789The commands described in this chapter allow you to inquire about the
c906108c
SS
18790symbols (names of variables, functions and types) defined in your
18791program. This information is inherent in the text of your program and
18792does not change as your program executes. @value{GDBN} finds it in your
18793program's symbol table, in the file indicated when you started @value{GDBN}
79a6e687
BW
18794(@pxref{File Options, ,Choosing Files}), or by one of the
18795file-management commands (@pxref{Files, ,Commands to Specify Files}).
c906108c
SS
18796
18797@cindex symbol names
18798@cindex names of symbols
18799@cindex quoting names
d044bac8 18800@anchor{quoting names}
c906108c
SS
18801Occasionally, you may need to refer to symbols that contain unusual
18802characters, which @value{GDBN} ordinarily treats as word delimiters. The
18803most frequent case is in referring to static variables in other
79a6e687 18804source files (@pxref{Variables,,Program Variables}). File names
c906108c
SS
18805are recorded in object files as debugging symbols, but @value{GDBN} would
18806ordinarily parse a typical file name, like @file{foo.c}, as the three words
18807@samp{foo} @samp{.} @samp{c}. To allow @value{GDBN} to recognize
18808@samp{foo.c} as a single symbol, enclose it in single quotes; for example,
18809
474c8240 18810@smallexample
c906108c 18811p 'foo.c'::x
474c8240 18812@end smallexample
c906108c
SS
18813
18814@noindent
18815looks up the value of @code{x} in the scope of the file @file{foo.c}.
18816
18817@table @code
a8f24a35
EZ
18818@cindex case-insensitive symbol names
18819@cindex case sensitivity in symbol names
18820@kindex set case-sensitive
18821@item set case-sensitive on
18822@itemx set case-sensitive off
18823@itemx set case-sensitive auto
18824Normally, when @value{GDBN} looks up symbols, it matches their names
18825with case sensitivity determined by the current source language.
18826Occasionally, you may wish to control that. The command @code{set
18827case-sensitive} lets you do that by specifying @code{on} for
18828case-sensitive matches or @code{off} for case-insensitive ones. If
18829you specify @code{auto}, case sensitivity is reset to the default
18830suitable for the source language. The default is case-sensitive
18831matches for all languages except for Fortran, for which the default is
18832case-insensitive matches.
18833
9c16f35a
EZ
18834@kindex show case-sensitive
18835@item show case-sensitive
a8f24a35
EZ
18836This command shows the current setting of case sensitivity for symbols
18837lookups.
18838
53342f27
TT
18839@kindex set print type methods
18840@item set print type methods
18841@itemx set print type methods on
18842@itemx set print type methods off
18843Normally, when @value{GDBN} prints a class, it displays any methods
18844declared in that class. You can control this behavior either by
18845passing the appropriate flag to @code{ptype}, or using @command{set
18846print type methods}. Specifying @code{on} will cause @value{GDBN} to
18847display the methods; this is the default. Specifying @code{off} will
18848cause @value{GDBN} to omit the methods.
18849
18850@kindex show print type methods
18851@item show print type methods
18852This command shows the current setting of method display when printing
18853classes.
18854
883fd55a
KS
18855@kindex set print type nested-type-limit
18856@item set print type nested-type-limit @var{limit}
18857@itemx set print type nested-type-limit unlimited
18858Set the limit of displayed nested types that the type printer will
18859show. A @var{limit} of @code{unlimited} or @code{-1} will show all
18860nested definitions. By default, the type printer will not show any nested
18861types defined in classes.
18862
18863@kindex show print type nested-type-limit
18864@item show print type nested-type-limit
18865This command shows the current display limit of nested types when
18866printing classes.
18867
53342f27
TT
18868@kindex set print type typedefs
18869@item set print type typedefs
18870@itemx set print type typedefs on
18871@itemx set print type typedefs off
18872
18873Normally, when @value{GDBN} prints a class, it displays any typedefs
18874defined in that class. You can control this behavior either by
18875passing the appropriate flag to @code{ptype}, or using @command{set
18876print type typedefs}. Specifying @code{on} will cause @value{GDBN} to
18877display the typedef definitions; this is the default. Specifying
18878@code{off} will cause @value{GDBN} to omit the typedef definitions.
18879Note that this controls whether the typedef definition itself is
18880printed, not whether typedef names are substituted when printing other
18881types.
18882
18883@kindex show print type typedefs
18884@item show print type typedefs
18885This command shows the current setting of typedef display when
18886printing classes.
18887
fbb46296
LS
18888@kindex set print type hex
18889@item set print type hex
18890@itemx set print type hex on
18891@itemx set print type hex off
18892
18893When @value{GDBN} prints sizes and offsets of struct members, it can use
18894either the decimal or hexadecimal notation. You can select one or the
18895other either by passing the appropriate flag to @code{ptype}, or by using
18896the @command{set print type hex} command.
18897
18898@kindex show print type hex
18899@item show print type hex
18900This command shows whether the sizes and offsets of struct members are
18901printed in decimal or hexadecimal notation.
18902
c906108c 18903@kindex info address
b37052ae 18904@cindex address of a symbol
c906108c
SS
18905@item info address @var{symbol}
18906Describe where the data for @var{symbol} is stored. For a register
18907variable, this says which register it is kept in. For a non-register
18908local variable, this prints the stack-frame offset at which the variable
18909is always stored.
18910
18911Note the contrast with @samp{print &@var{symbol}}, which does not work
18912at all for a register variable, and for a stack local variable prints
18913the exact address of the current instantiation of the variable.
18914
3d67e040 18915@kindex info symbol
b37052ae 18916@cindex symbol from address
9c16f35a 18917@cindex closest symbol and offset for an address
3d67e040
EZ
18918@item info symbol @var{addr}
18919Print the name of a symbol which is stored at the address @var{addr}.
18920If no symbol is stored exactly at @var{addr}, @value{GDBN} prints the
18921nearest symbol and an offset from it:
18922
474c8240 18923@smallexample
3d67e040
EZ
18924(@value{GDBP}) info symbol 0x54320
18925_initialize_vx + 396 in section .text
474c8240 18926@end smallexample
3d67e040
EZ
18927
18928@noindent
18929This is the opposite of the @code{info address} command. You can use
18930it to find out the name of a variable or a function given its address.
18931
c14c28ba
PP
18932For dynamically linked executables, the name of executable or shared
18933library containing the symbol is also printed:
18934
18935@smallexample
18936(@value{GDBP}) info symbol 0x400225
18937_start + 5 in section .text of /tmp/a.out
18938(@value{GDBP}) info symbol 0x2aaaac2811cf
18939__read_nocancel + 6 in section .text of /usr/lib64/libc.so.6
18940@end smallexample
18941
439250fb
DE
18942@kindex demangle
18943@cindex demangle
18944@item demangle @r{[}-l @var{language}@r{]} @r{[}@var{--}@r{]} @var{name}
18945Demangle @var{name}.
18946If @var{language} is provided it is the name of the language to demangle
18947@var{name} in. Otherwise @var{name} is demangled in the current language.
18948
18949The @samp{--} option specifies the end of options,
18950and is useful when @var{name} begins with a dash.
18951
18952The parameter @code{demangle-style} specifies how to interpret the kind
18953of mangling used. @xref{Print Settings}.
18954
c906108c 18955@kindex whatis
53342f27 18956@item whatis[/@var{flags}] [@var{arg}]
177bc839
JK
18957Print the data type of @var{arg}, which can be either an expression
18958or a name of a data type. With no argument, print the data type of
18959@code{$}, the last value in the value history.
18960
18961If @var{arg} is an expression (@pxref{Expressions, ,Expressions}), it
18962is not actually evaluated, and any side-effecting operations (such as
18963assignments or function calls) inside it do not take place.
18964
18965If @var{arg} is a variable or an expression, @code{whatis} prints its
18966literal type as it is used in the source code. If the type was
18967defined using a @code{typedef}, @code{whatis} will @emph{not} print
18968the data type underlying the @code{typedef}. If the type of the
18969variable or the expression is a compound data type, such as
18970@code{struct} or @code{class}, @code{whatis} never prints their
18971fields or methods. It just prints the @code{struct}/@code{class}
18972name (a.k.a.@: its @dfn{tag}). If you want to see the members of
18973such a compound data type, use @code{ptype}.
18974
18975If @var{arg} is a type name that was defined using @code{typedef},
18976@code{whatis} @dfn{unrolls} only one level of that @code{typedef}.
18977Unrolling means that @code{whatis} will show the underlying type used
18978in the @code{typedef} declaration of @var{arg}. However, if that
18979underlying type is also a @code{typedef}, @code{whatis} will not
18980unroll it.
18981
18982For C code, the type names may also have the form @samp{class
18983@var{class-name}}, @samp{struct @var{struct-tag}}, @samp{union
18984@var{union-tag}} or @samp{enum @var{enum-tag}}.
c906108c 18985
53342f27
TT
18986@var{flags} can be used to modify how the type is displayed.
18987Available flags are:
18988
18989@table @code
18990@item r
18991Display in ``raw'' form. Normally, @value{GDBN} substitutes template
18992parameters and typedefs defined in a class when printing the class'
18993members. The @code{/r} flag disables this.
18994
18995@item m
18996Do not print methods defined in the class.
18997
18998@item M
18999Print methods defined in the class. This is the default, but the flag
19000exists in case you change the default with @command{set print type methods}.
19001
19002@item t
19003Do not print typedefs defined in the class. Note that this controls
19004whether the typedef definition itself is printed, not whether typedef
19005names are substituted when printing other types.
19006
19007@item T
19008Print typedefs defined in the class. This is the default, but the flag
19009exists in case you change the default with @command{set print type typedefs}.
7c161838
SDJ
19010
19011@item o
19012Print the offsets and sizes of fields in a struct, similar to what the
19013@command{pahole} tool does. This option implies the @code{/tm} flags.
19014
fbb46296
LS
19015@item x
19016Use hexadecimal notation when printing offsets and sizes of fields in a
19017struct.
19018
19019@item d
19020Use decimal notation when printing offsets and sizes of fields in a
19021struct.
19022
7c161838
SDJ
19023For example, given the following declarations:
19024
19025@smallexample
19026struct tuv
19027@{
19028 int a1;
19029 char *a2;
19030 int a3;
19031@};
19032
19033struct xyz
19034@{
19035 int f1;
19036 char f2;
19037 void *f3;
19038 struct tuv f4;
19039@};
19040
19041union qwe
19042@{
19043 struct tuv fff1;
19044 struct xyz fff2;
19045@};
19046
19047struct tyu
19048@{
19049 int a1 : 1;
19050 int a2 : 3;
19051 int a3 : 23;
19052 char a4 : 2;
19053 int64_t a5;
19054 int a6 : 5;
19055 int64_t a7 : 3;
19056@};
19057@end smallexample
19058
19059Issuing a @kbd{ptype /o struct tuv} command would print:
19060
19061@smallexample
19062(@value{GDBP}) ptype /o struct tuv
fbb46296
LS
19063/* offset | size */ type = struct tuv @{
19064/* 0 | 4 */ int a1;
19065/* XXX 4-byte hole */
19066/* 8 | 8 */ char *a2;
19067/* 16 | 4 */ int a3;
7c161838 19068
fbb46296
LS
19069 /* total size (bytes): 24 */
19070 @}
7c161838
SDJ
19071@end smallexample
19072
19073Notice the format of the first column of comments. There, you can
19074find two parts separated by the @samp{|} character: the @emph{offset},
19075which indicates where the field is located inside the struct, in
19076bytes, and the @emph{size} of the field. Another interesting line is
19077the marker of a @emph{hole} in the struct, indicating that it may be
19078possible to pack the struct and make it use less space by reorganizing
19079its fields.
19080
19081It is also possible to print offsets inside an union:
19082
19083@smallexample
19084(@value{GDBP}) ptype /o union qwe
fbb46296
LS
19085/* offset | size */ type = union qwe @{
19086/* 24 */ struct tuv @{
19087/* 0 | 4 */ int a1;
19088/* XXX 4-byte hole */
19089/* 8 | 8 */ char *a2;
19090/* 16 | 4 */ int a3;
7c161838
SDJ
19091
19092 /* total size (bytes): 24 */
fbb46296
LS
19093 @} fff1;
19094/* 40 */ struct xyz @{
19095/* 0 | 4 */ int f1;
19096/* 4 | 1 */ char f2;
19097/* XXX 3-byte hole */
19098/* 8 | 8 */ void *f3;
19099/* 16 | 24 */ struct tuv @{
19100/* 16 | 4 */ int a1;
19101/* XXX 4-byte hole */
19102/* 24 | 8 */ char *a2;
19103/* 32 | 4 */ int a3;
19104
19105 /* total size (bytes): 24 */
19106 @} f4;
19107
19108 /* total size (bytes): 40 */
19109 @} fff2;
7c161838
SDJ
19110
19111 /* total size (bytes): 40 */
fbb46296 19112 @}
7c161838
SDJ
19113@end smallexample
19114
19115In this case, since @code{struct tuv} and @code{struct xyz} occupy the
19116same space (because we are dealing with an union), the offset is not
19117printed for them. However, you can still examine the offset of each
19118of these structures' fields.
19119
19120Another useful scenario is printing the offsets of a struct containing
19121bitfields:
19122
19123@smallexample
19124(@value{GDBP}) ptype /o struct tyu
fbb46296
LS
19125/* offset | size */ type = struct tyu @{
19126/* 0:31 | 4 */ int a1 : 1;
19127/* 0:28 | 4 */ int a2 : 3;
19128/* 0: 5 | 4 */ int a3 : 23;
19129/* 3: 3 | 1 */ signed char a4 : 2;
19130/* XXX 3-bit hole */
19131/* XXX 4-byte hole */
19132/* 8 | 8 */ int64_t a5;
19133/* 16: 0 | 4 */ int a6 : 5;
19134/* 16: 5 | 8 */ int64_t a7 : 3;
19135/* XXX 7-byte padding */
19136
19137 /* total size (bytes): 24 */
19138 @}
7c161838
SDJ
19139@end smallexample
19140
9d3421af
TT
19141Note how the offset information is now extended to also include the
19142first bit of the bitfield.
53342f27
TT
19143@end table
19144
c906108c 19145@kindex ptype
53342f27 19146@item ptype[/@var{flags}] [@var{arg}]
62f3a2ba
FF
19147@code{ptype} accepts the same arguments as @code{whatis}, but prints a
19148detailed description of the type, instead of just the name of the type.
19149@xref{Expressions, ,Expressions}.
c906108c 19150
177bc839
JK
19151Contrary to @code{whatis}, @code{ptype} always unrolls any
19152@code{typedef}s in its argument declaration, whether the argument is
19153a variable, expression, or a data type. This means that @code{ptype}
19154of a variable or an expression will not print literally its type as
19155present in the source code---use @code{whatis} for that. @code{typedef}s at
19156the pointer or reference targets are also unrolled. Only @code{typedef}s of
19157fields, methods and inner @code{class typedef}s of @code{struct}s,
19158@code{class}es and @code{union}s are not unrolled even with @code{ptype}.
19159
c906108c
SS
19160For example, for this variable declaration:
19161
474c8240 19162@smallexample
177bc839
JK
19163typedef double real_t;
19164struct complex @{ real_t real; double imag; @};
19165typedef struct complex complex_t;
19166complex_t var;
19167real_t *real_pointer_var;
474c8240 19168@end smallexample
c906108c
SS
19169
19170@noindent
19171the two commands give this output:
19172
474c8240 19173@smallexample
c906108c 19174@group
177bc839
JK
19175(@value{GDBP}) whatis var
19176type = complex_t
19177(@value{GDBP}) ptype var
19178type = struct complex @{
19179 real_t real;
19180 double imag;
19181@}
19182(@value{GDBP}) whatis complex_t
19183type = struct complex
19184(@value{GDBP}) whatis struct complex
c906108c 19185type = struct complex
177bc839 19186(@value{GDBP}) ptype struct complex
c906108c 19187type = struct complex @{
177bc839 19188 real_t real;
c906108c
SS
19189 double imag;
19190@}
177bc839
JK
19191(@value{GDBP}) whatis real_pointer_var
19192type = real_t *
19193(@value{GDBP}) ptype real_pointer_var
19194type = double *
c906108c 19195@end group
474c8240 19196@end smallexample
c906108c
SS
19197
19198@noindent
19199As with @code{whatis}, using @code{ptype} without an argument refers to
19200the type of @code{$}, the last value in the value history.
19201
ab1adacd
EZ
19202@cindex incomplete type
19203Sometimes, programs use opaque data types or incomplete specifications
19204of complex data structure. If the debug information included in the
19205program does not allow @value{GDBN} to display a full declaration of
19206the data type, it will say @samp{<incomplete type>}. For example,
19207given these declarations:
19208
19209@smallexample
19210 struct foo;
19211 struct foo *fooptr;
19212@end smallexample
19213
19214@noindent
19215but no definition for @code{struct foo} itself, @value{GDBN} will say:
19216
19217@smallexample
ddb50cd7 19218 (@value{GDBP}) ptype foo
ab1adacd
EZ
19219 $1 = <incomplete type>
19220@end smallexample
19221
19222@noindent
19223``Incomplete type'' is C terminology for data types that are not
19224completely specified.
19225
d69cf9b2
PA
19226@cindex unknown type
19227Othertimes, information about a variable's type is completely absent
19228from the debug information included in the program. This most often
19229happens when the program or library where the variable is defined
19230includes no debug information at all. @value{GDBN} knows the variable
19231exists from inspecting the linker/loader symbol table (e.g., the ELF
19232dynamic symbol table), but such symbols do not contain type
19233information. Inspecting the type of a (global) variable for which
19234@value{GDBN} has no type information shows:
19235
19236@smallexample
19237 (@value{GDBP}) ptype var
19238 type = <data variable, no debug info>
19239@end smallexample
19240
19241@xref{Variables, no debug info variables}, for how to print the values
19242of such variables.
19243
c906108c 19244@kindex info types
a8eab7c6 19245@item info types [-q] [@var{regexp}]
09d4efe1
EZ
19246Print a brief description of all types whose names match the regular
19247expression @var{regexp} (or all types in your program, if you supply
19248no argument). Each complete typename is matched as though it were a
19249complete line; thus, @samp{i type value} gives information on all
19250types in your program whose names include the string @code{value}, but
19251@samp{i type ^value$} gives information only on types whose complete
19252name is @code{value}.
c906108c 19253
20813a0b
PW
19254In programs using different languages, @value{GDBN} chooses the syntax
19255to print the type description according to the
19256@samp{set language} value: using @samp{set language auto}
19257(see @ref{Automatically, ,Set Language Automatically}) means to use the
19258language of the type, other values mean to use
19259the manually specified language (see @ref{Manually, ,Set Language Manually}).
19260
c906108c
SS
19261This command differs from @code{ptype} in two ways: first, like
19262@code{whatis}, it does not print a detailed description; second, it
b744723f 19263lists all source files and line numbers where a type is defined.
c906108c 19264
a8eab7c6
AB
19265The output from @samp{into types} is proceeded with a header line
19266describing what types are being listed. The optional flag @samp{-q},
19267which stands for @samp{quiet}, disables printing this header
19268information.
19269
18a9fc12
TT
19270@kindex info type-printers
19271@item info type-printers
19272Versions of @value{GDBN} that ship with Python scripting enabled may
19273have ``type printers'' available. When using @command{ptype} or
19274@command{whatis}, these printers are consulted when the name of a type
19275is needed. @xref{Type Printing API}, for more information on writing
19276type printers.
19277
19278@code{info type-printers} displays all the available type printers.
19279
19280@kindex enable type-printer
19281@kindex disable type-printer
19282@item enable type-printer @var{name}@dots{}
19283@item disable type-printer @var{name}@dots{}
19284These commands can be used to enable or disable type printers.
19285
b37052ae
EZ
19286@kindex info scope
19287@cindex local variables
09d4efe1 19288@item info scope @var{location}
b37052ae 19289List all the variables local to a particular scope. This command
09d4efe1
EZ
19290accepts a @var{location} argument---a function name, a source line, or
19291an address preceded by a @samp{*}, and prints all the variables local
2a25a5ba
EZ
19292to the scope defined by that location. (@xref{Specify Location}, for
19293details about supported forms of @var{location}.) For example:
b37052ae
EZ
19294
19295@smallexample
19296(@value{GDBP}) @b{info scope command_line_handler}
19297Scope for command_line_handler:
19298Symbol rl is an argument at stack/frame offset 8, length 4.
19299Symbol linebuffer is in static storage at address 0x150a18, length 4.
19300Symbol linelength is in static storage at address 0x150a1c, length 4.
19301Symbol p is a local variable in register $esi, length 4.
19302Symbol p1 is a local variable in register $ebx, length 4.
19303Symbol nline is a local variable in register $edx, length 4.
19304Symbol repeat is a local variable at frame offset -8, length 4.
19305@end smallexample
19306
f5c37c66
EZ
19307@noindent
19308This command is especially useful for determining what data to collect
19309during a @dfn{trace experiment}, see @ref{Tracepoint Actions,
19310collect}.
19311
c906108c
SS
19312@kindex info source
19313@item info source
919d772c
JB
19314Show information about the current source file---that is, the source file for
19315the function containing the current point of execution:
19316@itemize @bullet
19317@item
19318the name of the source file, and the directory containing it,
19319@item
19320the directory it was compiled in,
19321@item
19322its length, in lines,
19323@item
19324which programming language it is written in,
19325@item
b6577aab
DE
19326if the debug information provides it, the program that compiled the file
19327(which may include, e.g., the compiler version and command line arguments),
19328@item
919d772c
JB
19329whether the executable includes debugging information for that file, and
19330if so, what format the information is in (e.g., STABS, Dwarf 2, etc.), and
19331@item
19332whether the debugging information includes information about
19333preprocessor macros.
19334@end itemize
19335
c906108c
SS
19336
19337@kindex info sources
19338@item info sources
19339Print the names of all source files in your program for which there is
19340debugging information, organized into two lists: files whose symbols
19341have already been read, and files whose symbols will be read when needed.
19342
ae60f04e
PW
19343@item info sources [-dirname | -basename] [--] [@var{regexp}]
19344Like @samp{info sources}, but only print the names of the files
19345matching the provided @var{regexp}.
19346By default, the @var{regexp} is used to match anywhere in the filename.
19347If @code{-dirname}, only files having a dirname matching @var{regexp} are shown.
19348If @code{-basename}, only files having a basename matching @var{regexp}
19349are shown.
19350The matching is case-sensitive, except on operating systems that
19351have case-insensitive filesystem (e.g., MS-Windows).
19352
c906108c 19353@kindex info functions
4acfdd20 19354@item info functions [-q] [-n]
c906108c 19355Print the names and data types of all defined functions.
b744723f
AA
19356Similarly to @samp{info types}, this command groups its output by source
19357files and annotates each function definition with its source line
19358number.
c906108c 19359
20813a0b
PW
19360In programs using different languages, @value{GDBN} chooses the syntax
19361to print the function name and type according to the
19362@samp{set language} value: using @samp{set language auto}
19363(see @ref{Automatically, ,Set Language Automatically}) means to use the
19364language of the function, other values mean to use
19365the manually specified language (see @ref{Manually, ,Set Language Manually}).
19366
4acfdd20
AB
19367The @samp{-n} flag excludes @dfn{non-debugging symbols} from the
19368results. A non-debugging symbol is a symbol that comes from the
19369executable's symbol table, not from the debug information (for
19370example, DWARF) associated with the executable.
19371
d321477b
PW
19372The optional flag @samp{-q}, which stands for @samp{quiet}, disables
19373printing header information and messages explaining why no functions
19374have been printed.
19375
4acfdd20 19376@item info functions [-q] [-n] [-t @var{type_regexp}] [@var{regexp}]
d321477b
PW
19377Like @samp{info functions}, but only print the names and data types
19378of the functions selected with the provided regexp(s).
19379
19380If @var{regexp} is provided, print only the functions whose names
19381match the regular expression @var{regexp}.
19382Thus, @samp{info fun step} finds all functions whose
b744723f
AA
19383names include @code{step}; @samp{info fun ^step} finds those whose names
19384start with @code{step}. If a function name contains characters that
19385conflict with the regular expression language (e.g.@:
1c5dfdad 19386@samp{operator*()}), they may be quoted with a backslash.
c906108c 19387
d321477b
PW
19388If @var{type_regexp} is provided, print only the functions whose
19389types, as printed by the @code{whatis} command, match
19390the regular expression @var{type_regexp}.
19391If @var{type_regexp} contains space(s), it should be enclosed in
19392quote characters. If needed, use backslash to escape the meaning
19393of special characters or quotes.
19394Thus, @samp{info fun -t '^int ('} finds the functions that return
19395an integer; @samp{info fun -t '(.*int.*'} finds the functions that
19396have an argument type containing int; @samp{info fun -t '^int (' ^step}
19397finds the functions whose names start with @code{step} and that return
19398int.
19399
19400If both @var{regexp} and @var{type_regexp} are provided, a function
19401is printed only if its name matches @var{regexp} and its type matches
19402@var{type_regexp}.
19403
19404
c906108c 19405@kindex info variables
4acfdd20 19406@item info variables [-q] [-n]
0fe7935b 19407Print the names and data types of all variables that are defined
6ca652b0 19408outside of functions (i.e.@: excluding local variables).
b744723f
AA
19409The printed variables are grouped by source files and annotated with
19410their respective source line numbers.
c906108c 19411
20813a0b
PW
19412In programs using different languages, @value{GDBN} chooses the syntax
19413to print the variable name and type according to the
19414@samp{set language} value: using @samp{set language auto}
19415(see @ref{Automatically, ,Set Language Automatically}) means to use the
19416language of the variable, other values mean to use
19417the manually specified language (see @ref{Manually, ,Set Language Manually}).
19418
4acfdd20
AB
19419The @samp{-n} flag excludes non-debugging symbols from the results.
19420
d321477b
PW
19421The optional flag @samp{-q}, which stands for @samp{quiet}, disables
19422printing header information and messages explaining why no variables
19423have been printed.
19424
4acfdd20 19425@item info variables [-q] [-n] [-t @var{type_regexp}] [@var{regexp}]
d321477b
PW
19426Like @kbd{info variables}, but only print the variables selected
19427with the provided regexp(s).
19428
19429If @var{regexp} is provided, print only the variables whose names
19430match the regular expression @var{regexp}.
19431
19432If @var{type_regexp} is provided, print only the variables whose
19433types, as printed by the @code{whatis} command, match
19434the regular expression @var{type_regexp}.
19435If @var{type_regexp} contains space(s), it should be enclosed in
19436quote characters. If needed, use backslash to escape the meaning
19437of special characters or quotes.
19438
19439If both @var{regexp} and @var{type_regexp} are provided, an argument
19440is printed only if its name matches @var{regexp} and its type matches
19441@var{type_regexp}.
c906108c 19442
59c35742
AB
19443@kindex info modules
19444@cindex modules
19445@item info modules @r{[}-q@r{]} @r{[}@var{regexp}@r{]}
19446List all Fortran modules in the program, or all modules matching the
19447optional regular expression @var{regexp}.
19448
19449The optional flag @samp{-q}, which stands for @samp{quiet}, disables
19450printing header information and messages explaining why no modules
19451have been printed.
165f8965
AB
19452
19453@kindex info module
19454@cindex Fortran modules, information about
19455@cindex functions and variables by Fortran module
19456@cindex module functions and variables
19457@item info module functions @r{[}-q@r{]} @r{[}-m @var{module-regexp}@r{]} @r{[}-t @var{type-regexp}@r{]} @r{[}@var{regexp}@r{]}
19458@itemx info module variables @r{[}-q@r{]} @r{[}-m @var{module-regexp}@r{]} @r{[}-t @var{type-regexp}@r{]} @r{[}@var{regexp}@r{]}
19459List all functions or variables within all Fortran modules. The set
19460of functions or variables listed can be limited by providing some or
19461all of the optional regular expressions. If @var{module-regexp} is
19462provided, then only Fortran modules matching @var{module-regexp} will
19463be searched. Only functions or variables whose type matches the
19464optional regular expression @var{type-regexp} will be listed. And
19465only functions or variables whose name matches the optional regular
19466expression @var{regexp} will be listed.
19467
19468The optional flag @samp{-q}, which stands for @samp{quiet}, disables
19469printing header information and messages explaining why no functions
19470or variables have been printed.
59c35742 19471
b37303ee 19472@kindex info classes
721c2651 19473@cindex Objective-C, classes and selectors
b37303ee
AF
19474@item info classes
19475@itemx info classes @var{regexp}
19476Display all Objective-C classes in your program, or
19477(with the @var{regexp} argument) all those matching a particular regular
19478expression.
19479
19480@kindex info selectors
19481@item info selectors
19482@itemx info selectors @var{regexp}
19483Display all Objective-C selectors in your program, or
19484(with the @var{regexp} argument) all those matching a particular regular
19485expression.
19486
c906108c
SS
19487@ignore
19488This was never implemented.
19489@kindex info methods
19490@item info methods
19491@itemx info methods @var{regexp}
19492The @code{info methods} command permits the user to examine all defined
b37052ae
EZ
19493methods within C@t{++} program, or (with the @var{regexp} argument) a
19494specific set of methods found in the various C@t{++} classes. Many
19495C@t{++} classes provide a large number of methods. Thus, the output
c906108c
SS
19496from the @code{ptype} command can be overwhelming and hard to use. The
19497@code{info-methods} command filters the methods, printing only those
19498which match the regular-expression @var{regexp}.
19499@end ignore
19500
9c16f35a 19501@cindex opaque data types
c906108c
SS
19502@kindex set opaque-type-resolution
19503@item set opaque-type-resolution on
19504Tell @value{GDBN} to resolve opaque types. An opaque type is a type
19505declared as a pointer to a @code{struct}, @code{class}, or
19506@code{union}---for example, @code{struct MyType *}---that is used in one
19507source file although the full declaration of @code{struct MyType} is in
19508another source file. The default is on.
19509
19510A change in the setting of this subcommand will not take effect until
19511the next time symbols for a file are loaded.
19512
19513@item set opaque-type-resolution off
19514Tell @value{GDBN} not to resolve opaque types. In this case, the type
19515is printed as follows:
19516@smallexample
19517@{<no data fields>@}
19518@end smallexample
19519
19520@kindex show opaque-type-resolution
19521@item show opaque-type-resolution
19522Show whether opaque types are resolved or not.
c906108c 19523
770e7fc7
DE
19524@kindex set print symbol-loading
19525@cindex print messages when symbols are loaded
19526@item set print symbol-loading
19527@itemx set print symbol-loading full
19528@itemx set print symbol-loading brief
19529@itemx set print symbol-loading off
19530The @code{set print symbol-loading} command allows you to control the
19531printing of messages when @value{GDBN} loads symbol information.
19532By default a message is printed for the executable and one for each
19533shared library, and normally this is what you want. However, when
19534debugging apps with large numbers of shared libraries these messages
19535can be annoying.
19536When set to @code{brief} a message is printed for each executable,
19537and when @value{GDBN} loads a collection of shared libraries at once
19538it will only print one message regardless of the number of shared
19539libraries. When set to @code{off} no messages are printed.
19540
19541@kindex show print symbol-loading
19542@item show print symbol-loading
19543Show whether messages will be printed when a @value{GDBN} command
19544entered from the keyboard causes symbol information to be loaded.
19545
c906108c
SS
19546@kindex maint print symbols
19547@cindex symbol dump
19548@kindex maint print psymbols
19549@cindex partial symbol dump
7c57fa1e
YQ
19550@kindex maint print msymbols
19551@cindex minimal symbol dump
34c41c68
DE
19552@item maint print symbols @r{[}-pc @var{address}@r{]} @r{[}@var{filename}@r{]}
19553@itemx maint print symbols @r{[}-objfile @var{objfile}@r{]} @r{[}-source @var{source}@r{]} @r{[}--@r{]} @r{[}@var{filename}@r{]}
19554@itemx maint print psymbols @r{[}-objfile @var{objfile}@r{]} @r{[}-pc @var{address}@r{]} @r{[}--@r{]} @r{[}@var{filename}@r{]}
19555@itemx maint print psymbols @r{[}-objfile @var{objfile}@r{]} @r{[}-source @var{source}@r{]} @r{[}--@r{]} @r{[}@var{filename}@r{]}
19556@itemx maint print msymbols @r{[}-objfile @var{objfile}@r{]} @r{[}--@r{]} @r{[}@var{filename}@r{]}
19557Write a dump of debugging symbol data into the file @var{filename} or
19558the terminal if @var{filename} is unspecified.
19559If @code{-objfile @var{objfile}} is specified, only dump symbols for
19560that objfile.
19561If @code{-pc @var{address}} is specified, only dump symbols for the file
19562with code at that address. Note that @var{address} may be a symbol like
19563@code{main}.
19564If @code{-source @var{source}} is specified, only dump symbols for that
19565source file.
19566
19567These commands are used to debug the @value{GDBN} symbol-reading code.
19568These commands do not modify internal @value{GDBN} state, therefore
19569@samp{maint print symbols} will only print symbols for already expanded symbol
19570tables.
19571You can use the command @code{info sources} to find out which files these are.
19572If you use @samp{maint print psymbols} instead, the dump shows information
19573about symbols that @value{GDBN} only knows partially---that is, symbols
19574defined in files that @value{GDBN} has skimmed, but not yet read completely.
19575Finally, @samp{maint print msymbols} just dumps ``minimal symbols'', e.g.,
19576``ELF symbols''.
19577
79a6e687 19578@xref{Files, ,Commands to Specify Files}, for a discussion of how
c906108c 19579@value{GDBN} reads symbols (in the description of @code{symbol-file}).
44ea7b70 19580
5e7b2f39
JB
19581@kindex maint info symtabs
19582@kindex maint info psymtabs
44ea7b70
JB
19583@cindex listing @value{GDBN}'s internal symbol tables
19584@cindex symbol tables, listing @value{GDBN}'s internal
19585@cindex full symbol tables, listing @value{GDBN}'s internal
19586@cindex partial symbol tables, listing @value{GDBN}'s internal
5e7b2f39
JB
19587@item maint info symtabs @r{[} @var{regexp} @r{]}
19588@itemx maint info psymtabs @r{[} @var{regexp} @r{]}
44ea7b70
JB
19589
19590List the @code{struct symtab} or @code{struct partial_symtab}
19591structures whose names match @var{regexp}. If @var{regexp} is not
19592given, list them all. The output includes expressions which you can
19593copy into a @value{GDBN} debugging this one to examine a particular
19594structure in more detail. For example:
19595
19596@smallexample
5e7b2f39 19597(@value{GDBP}) maint info psymtabs dwarf2read
44ea7b70
JB
19598@{ objfile /home/gnu/build/gdb/gdb
19599 ((struct objfile *) 0x82e69d0)
b383017d 19600 @{ psymtab /home/gnu/src/gdb/dwarf2read.c
44ea7b70
JB
19601 ((struct partial_symtab *) 0x8474b10)
19602 readin no
19603 fullname (null)
19604 text addresses 0x814d3c8 -- 0x8158074
19605 globals (* (struct partial_symbol **) 0x8507a08 @@ 9)
19606 statics (* (struct partial_symbol **) 0x40e95b78 @@ 2882)
19607 dependencies (none)
19608 @}
19609@}
5e7b2f39 19610(@value{GDBP}) maint info symtabs
44ea7b70
JB
19611(@value{GDBP})
19612@end smallexample
19613@noindent
19614We see that there is one partial symbol table whose filename contains
19615the string @samp{dwarf2read}, belonging to the @samp{gdb} executable;
19616and we see that @value{GDBN} has not read in any symtabs yet at all.
19617If we set a breakpoint on a function, that will cause @value{GDBN} to
19618read the symtab for the compilation unit containing that function:
19619
19620@smallexample
19621(@value{GDBP}) break dwarf2_psymtab_to_symtab
19622Breakpoint 1 at 0x814e5da: file /home/gnu/src/gdb/dwarf2read.c,
19623line 1574.
5e7b2f39 19624(@value{GDBP}) maint info symtabs
b383017d 19625@{ objfile /home/gnu/build/gdb/gdb
44ea7b70 19626 ((struct objfile *) 0x82e69d0)
b383017d 19627 @{ symtab /home/gnu/src/gdb/dwarf2read.c
44ea7b70
JB
19628 ((struct symtab *) 0x86c1f38)
19629 dirname (null)
19630 fullname (null)
19631 blockvector ((struct blockvector *) 0x86c1bd0) (primary)
1b39d5c0 19632 linetable ((struct linetable *) 0x8370fa0)
44ea7b70
JB
19633 debugformat DWARF 2
19634 @}
19635@}
b383017d 19636(@value{GDBP})
44ea7b70 19637@end smallexample
44ea7b70 19638
f2403c39
AB
19639@kindex maint info line-table
19640@cindex listing @value{GDBN}'s internal line tables
19641@cindex line tables, listing @value{GDBN}'s internal
19642@item maint info line-table @r{[} @var{regexp} @r{]}
19643
19644List the @code{struct linetable} from all @code{struct symtab}
19645instances whose name matches @var{regexp}. If @var{regexp} is not
19646given, list the @code{struct linetable} from all @code{struct symtab}.
19647
f57d2163
DE
19648@kindex maint set symbol-cache-size
19649@cindex symbol cache size
19650@item maint set symbol-cache-size @var{size}
19651Set the size of the symbol cache to @var{size}.
19652The default size is intended to be good enough for debugging
19653most applications. This option exists to allow for experimenting
19654with different sizes.
19655
19656@kindex maint show symbol-cache-size
19657@item maint show symbol-cache-size
19658Show the size of the symbol cache.
19659
19660@kindex maint print symbol-cache
19661@cindex symbol cache, printing its contents
19662@item maint print symbol-cache
19663Print the contents of the symbol cache.
19664This is useful when debugging symbol cache issues.
19665
19666@kindex maint print symbol-cache-statistics
19667@cindex symbol cache, printing usage statistics
19668@item maint print symbol-cache-statistics
19669Print symbol cache usage statistics.
19670This helps determine how well the cache is being utilized.
19671
50a5f187 19672@kindex maint flush symbol-cache
f57d2163
DE
19673@kindex maint flush-symbol-cache
19674@cindex symbol cache, flushing
50a5f187
AB
19675@item maint flush symbol-cache
19676@itemx maint flush-symbol-cache
19677Flush the contents of the symbol cache, all entries are removed. This
19678command is useful when debugging the symbol cache. It is also useful
19679when collecting performance data. The command @code{maint
19680flush-symbol-cache} is deprecated in favor of @code{maint flush
19681symbol-cache}..
f57d2163
DE
19682
19683@end table
6a3ca067 19684
6d2ebf8b 19685@node Altering
c906108c
SS
19686@chapter Altering Execution
19687
19688Once you think you have found an error in your program, you might want to
19689find out for certain whether correcting the apparent error would lead to
19690correct results in the rest of the run. You can find the answer by
19691experiment, using the @value{GDBN} features for altering execution of the
19692program.
19693
19694For example, you can store new values into variables or memory
7a292a7a
SS
19695locations, give your program a signal, restart it at a different
19696address, or even return prematurely from a function.
c906108c
SS
19697
19698@menu
19699* Assignment:: Assignment to variables
19700* Jumping:: Continuing at a different address
c906108c 19701* Signaling:: Giving your program a signal
c906108c
SS
19702* Returning:: Returning from a function
19703* Calling:: Calling your program's functions
19704* Patching:: Patching your program
bb2ec1b3 19705* Compiling and Injecting Code:: Compiling and injecting code in @value{GDBN}
c906108c
SS
19706@end menu
19707
6d2ebf8b 19708@node Assignment
79a6e687 19709@section Assignment to Variables
c906108c
SS
19710
19711@cindex assignment
19712@cindex setting variables
19713To alter the value of a variable, evaluate an assignment expression.
19714@xref{Expressions, ,Expressions}. For example,
19715
474c8240 19716@smallexample
c906108c 19717print x=4
474c8240 19718@end smallexample
c906108c
SS
19719
19720@noindent
19721stores the value 4 into the variable @code{x}, and then prints the
5d161b24 19722value of the assignment expression (which is 4).
c906108c
SS
19723@xref{Languages, ,Using @value{GDBN} with Different Languages}, for more
19724information on operators in supported languages.
c906108c
SS
19725
19726@kindex set variable
19727@cindex variables, setting
19728If you are not interested in seeing the value of the assignment, use the
19729@code{set} command instead of the @code{print} command. @code{set} is
19730really the same as @code{print} except that the expression's value is
19731not printed and is not put in the value history (@pxref{Value History,
79a6e687 19732,Value History}). The expression is evaluated only for its effects.
c906108c 19733
c906108c
SS
19734If the beginning of the argument string of the @code{set} command
19735appears identical to a @code{set} subcommand, use the @code{set
19736variable} command instead of just @code{set}. This command is identical
19737to @code{set} except for its lack of subcommands. For example, if your
19738program has a variable @code{width}, you get an error if you try to set
19739a new value with just @samp{set width=13}, because @value{GDBN} has the
19740command @code{set width}:
19741
474c8240 19742@smallexample
c906108c
SS
19743(@value{GDBP}) whatis width
19744type = double
19745(@value{GDBP}) p width
19746$4 = 13
19747(@value{GDBP}) set width=47
19748Invalid syntax in expression.
474c8240 19749@end smallexample
c906108c
SS
19750
19751@noindent
19752The invalid expression, of course, is @samp{=47}. In
19753order to actually set the program's variable @code{width}, use
19754
474c8240 19755@smallexample
c906108c 19756(@value{GDBP}) set var width=47
474c8240 19757@end smallexample
53a5351d 19758
c906108c
SS
19759Because the @code{set} command has many subcommands that can conflict
19760with the names of program variables, it is a good idea to use the
19761@code{set variable} command instead of just @code{set}. For example, if
19762your program has a variable @code{g}, you run into problems if you try
19763to set a new value with just @samp{set g=4}, because @value{GDBN} has
19764the command @code{set gnutarget}, abbreviated @code{set g}:
19765
474c8240 19766@smallexample
c906108c
SS
19767@group
19768(@value{GDBP}) whatis g
19769type = double
19770(@value{GDBP}) p g
19771$1 = 1
19772(@value{GDBP}) set g=4
2df3850c 19773(@value{GDBP}) p g
c906108c
SS
19774$2 = 1
19775(@value{GDBP}) r
19776The program being debugged has been started already.
19777Start it from the beginning? (y or n) y
19778Starting program: /home/smith/cc_progs/a.out
6d2ebf8b
SS
19779"/home/smith/cc_progs/a.out": can't open to read symbols:
19780 Invalid bfd target.
c906108c
SS
19781(@value{GDBP}) show g
19782The current BFD target is "=4".
19783@end group
474c8240 19784@end smallexample
c906108c
SS
19785
19786@noindent
19787The program variable @code{g} did not change, and you silently set the
19788@code{gnutarget} to an invalid value. In order to set the variable
19789@code{g}, use
19790
474c8240 19791@smallexample
c906108c 19792(@value{GDBP}) set var g=4
474c8240 19793@end smallexample
c906108c
SS
19794
19795@value{GDBN} allows more implicit conversions in assignments than C; you can
19796freely store an integer value into a pointer variable or vice versa,
19797and you can convert any structure to any other structure that is the
19798same length or shorter.
19799@comment FIXME: how do structs align/pad in these conversions?
19800@comment /doc@cygnus.com 18dec1990
19801
19802To store values into arbitrary places in memory, use the @samp{@{@dots{}@}}
19803construct to generate a value of specified type at a specified address
19804(@pxref{Expressions, ,Expressions}). For example, @code{@{int@}0x83040} refers
19805to memory location @code{0x83040} as an integer (which implies a certain size
19806and representation in memory), and
19807
474c8240 19808@smallexample
c906108c 19809set @{int@}0x83040 = 4
474c8240 19810@end smallexample
c906108c
SS
19811
19812@noindent
19813stores the value 4 into that memory location.
19814
6d2ebf8b 19815@node Jumping
79a6e687 19816@section Continuing at a Different Address
c906108c
SS
19817
19818Ordinarily, when you continue your program, you do so at the place where
19819it stopped, with the @code{continue} command. You can instead continue at
19820an address of your own choosing, with the following commands:
19821
19822@table @code
19823@kindex jump
c1d780c2 19824@kindex j @r{(@code{jump})}
629500fa 19825@item jump @var{location}
c1d780c2 19826@itemx j @var{location}
629500fa
KS
19827Resume execution at @var{location}. Execution stops again immediately
19828if there is a breakpoint there. @xref{Specify Location}, for a description
19829of the different forms of @var{location}. It is common
2a25a5ba
EZ
19830practice to use the @code{tbreak} command in conjunction with
19831@code{jump}. @xref{Set Breaks, ,Setting Breakpoints}.
c906108c
SS
19832
19833The @code{jump} command does not change the current stack frame, or
19834the stack pointer, or the contents of any memory location or any
629500fa 19835register other than the program counter. If @var{location} is in
c906108c
SS
19836a different function from the one currently executing, the results may
19837be bizarre if the two functions expect different patterns of arguments or
19838of local variables. For this reason, the @code{jump} command requests
19839confirmation if the specified line is not in the function currently
19840executing. However, even bizarre results are predictable if you are
19841well acquainted with the machine-language code of your program.
c906108c
SS
19842@end table
19843
53a5351d
JM
19844On many systems, you can get much the same effect as the @code{jump}
19845command by storing a new value into the register @code{$pc}. The
19846difference is that this does not start your program running; it only
19847changes the address of where it @emph{will} run when you continue. For
19848example,
c906108c 19849
474c8240 19850@smallexample
c906108c 19851set $pc = 0x485
474c8240 19852@end smallexample
c906108c
SS
19853
19854@noindent
19855makes the next @code{continue} command or stepping command execute at
19856address @code{0x485}, rather than at the address where your program stopped.
79a6e687 19857@xref{Continuing and Stepping, ,Continuing and Stepping}.
c906108c
SS
19858
19859The most common occasion to use the @code{jump} command is to back
19860up---perhaps with more breakpoints set---over a portion of a program
19861that has already executed, in order to examine its execution in more
19862detail.
19863
c906108c 19864@c @group
6d2ebf8b 19865@node Signaling
79a6e687 19866@section Giving your Program a Signal
9c16f35a 19867@cindex deliver a signal to a program
c906108c
SS
19868
19869@table @code
19870@kindex signal
19871@item signal @var{signal}
70509625 19872Resume execution where your program is stopped, but immediately give it the
697aa1b7 19873signal @var{signal}. The @var{signal} can be the name or the number of a
c906108c
SS
19874signal. For example, on many systems @code{signal 2} and @code{signal
19875SIGINT} are both ways of sending an interrupt signal.
19876
19877Alternatively, if @var{signal} is zero, continue execution without
19878giving a signal. This is useful when your program stopped on account of
ae606bee 19879a signal and would ordinarily see the signal when resumed with the
c906108c
SS
19880@code{continue} command; @samp{signal 0} causes it to resume without a
19881signal.
19882
70509625
PA
19883@emph{Note:} When resuming a multi-threaded program, @var{signal} is
19884delivered to the currently selected thread, not the thread that last
19885reported a stop. This includes the situation where a thread was
19886stopped due to a signal. So if you want to continue execution
19887suppressing the signal that stopped a thread, you should select that
19888same thread before issuing the @samp{signal 0} command. If you issue
19889the @samp{signal 0} command with another thread as the selected one,
19890@value{GDBN} detects that and asks for confirmation.
19891
c906108c
SS
19892Invoking the @code{signal} command is not the same as invoking the
19893@code{kill} utility from the shell. Sending a signal with @code{kill}
19894causes @value{GDBN} to decide what to do with the signal depending on
19895the signal handling tables (@pxref{Signals}). The @code{signal} command
19896passes the signal directly to your program.
19897
81219e53
DE
19898@code{signal} does not repeat when you press @key{RET} a second time
19899after executing the command.
19900
19901@kindex queue-signal
19902@item queue-signal @var{signal}
19903Queue @var{signal} to be delivered immediately to the current thread
19904when execution of the thread resumes. The @var{signal} can be the name or
19905the number of a signal. For example, on many systems @code{signal 2} and
19906@code{signal SIGINT} are both ways of sending an interrupt signal.
19907The handling of the signal must be set to pass the signal to the program,
19908otherwise @value{GDBN} will report an error.
19909You can control the handling of signals from @value{GDBN} with the
19910@code{handle} command (@pxref{Signals}).
19911
19912Alternatively, if @var{signal} is zero, any currently queued signal
19913for the current thread is discarded and when execution resumes no signal
19914will be delivered. This is useful when your program stopped on account
19915of a signal and would ordinarily see the signal when resumed with the
19916@code{continue} command.
19917
19918This command differs from the @code{signal} command in that the signal
19919is just queued, execution is not resumed. And @code{queue-signal} cannot
19920be used to pass a signal whose handling state has been set to @code{nopass}
19921(@pxref{Signals}).
19922@end table
19923@c @end group
c906108c 19924
e5f8a7cc
PA
19925@xref{stepping into signal handlers}, for information on how stepping
19926commands behave when the thread has a signal queued.
19927
6d2ebf8b 19928@node Returning
79a6e687 19929@section Returning from a Function
c906108c
SS
19930
19931@table @code
19932@cindex returning from a function
19933@kindex return
19934@item return
19935@itemx return @var{expression}
19936You can cancel execution of a function call with the @code{return}
19937command. If you give an
19938@var{expression} argument, its value is used as the function's return
19939value.
19940@end table
19941
19942When you use @code{return}, @value{GDBN} discards the selected stack frame
19943(and all frames within it). You can think of this as making the
19944discarded frame return prematurely. If you wish to specify a value to
19945be returned, give that value as the argument to @code{return}.
19946
19947This pops the selected stack frame (@pxref{Selection, ,Selecting a
79a6e687 19948Frame}), and any other frames inside of it, leaving its caller as the
c906108c
SS
19949innermost remaining frame. That frame becomes selected. The
19950specified value is stored in the registers used for returning values
19951of functions.
19952
19953The @code{return} command does not resume execution; it leaves the
19954program stopped in the state that would exist if the function had just
19955returned. In contrast, the @code{finish} command (@pxref{Continuing
79a6e687 19956and Stepping, ,Continuing and Stepping}) resumes execution until the
c906108c
SS
19957selected stack frame returns naturally.
19958
61ff14c6
JK
19959@value{GDBN} needs to know how the @var{expression} argument should be set for
19960the inferior. The concrete registers assignment depends on the OS ABI and the
19961type being returned by the selected stack frame. For example it is common for
19962OS ABI to return floating point values in FPU registers while integer values in
19963CPU registers. Still some ABIs return even floating point values in CPU
19964registers. Larger integer widths (such as @code{long long int}) also have
19965specific placement rules. @value{GDBN} already knows the OS ABI from its
19966current target so it needs to find out also the type being returned to make the
19967assignment into the right register(s).
19968
19969Normally, the selected stack frame has debug info. @value{GDBN} will always
19970use the debug info instead of the implicit type of @var{expression} when the
19971debug info is available. For example, if you type @kbd{return -1}, and the
19972function in the current stack frame is declared to return a @code{long long
19973int}, @value{GDBN} transparently converts the implicit @code{int} value of -1
19974into a @code{long long int}:
19975
19976@smallexample
19977Breakpoint 1, func () at gdb.base/return-nodebug.c:29
1997829 return 31;
19979(@value{GDBP}) return -1
19980Make func return now? (y or n) y
19981#0 0x004004f6 in main () at gdb.base/return-nodebug.c:43
1998243 printf ("result=%lld\n", func ());
19983(@value{GDBP})
19984@end smallexample
19985
19986However, if the selected stack frame does not have a debug info, e.g., if the
19987function was compiled without debug info, @value{GDBN} has to find out the type
19988to return from user. Specifying a different type by mistake may set the value
19989in different inferior registers than the caller code expects. For example,
19990typing @kbd{return -1} with its implicit type @code{int} would set only a part
19991of a @code{long long int} result for a debug info less function (on 32-bit
19992architectures). Therefore the user is required to specify the return type by
19993an appropriate cast explicitly:
19994
19995@smallexample
19996Breakpoint 2, 0x0040050b in func ()
19997(@value{GDBP}) return -1
19998Return value type not available for selected stack frame.
19999Please use an explicit cast of the value to return.
20000(@value{GDBP}) return (long long int) -1
20001Make selected stack frame return now? (y or n) y
20002#0 0x00400526 in main ()
20003(@value{GDBP})
20004@end smallexample
20005
6d2ebf8b 20006@node Calling
79a6e687 20007@section Calling Program Functions
c906108c 20008
f8568604 20009@table @code
c906108c 20010@cindex calling functions
f8568604
EZ
20011@cindex inferior functions, calling
20012@item print @var{expr}
d3e8051b 20013Evaluate the expression @var{expr} and display the resulting value.
697aa1b7 20014The expression may include calls to functions in the program being
f8568604
EZ
20015debugged.
20016
c906108c 20017@kindex call
c906108c
SS
20018@item call @var{expr}
20019Evaluate the expression @var{expr} without displaying @code{void}
20020returned values.
c906108c
SS
20021
20022You can use this variant of the @code{print} command if you want to
f8568604
EZ
20023execute a function from your program that does not return anything
20024(a.k.a.@: @dfn{a void function}), but without cluttering the output
20025with @code{void} returned values that @value{GDBN} will otherwise
20026print. If the result is not void, it is printed and saved in the
20027value history.
20028@end table
20029
9c16f35a
EZ
20030It is possible for the function you call via the @code{print} or
20031@code{call} command to generate a signal (e.g., if there's a bug in
20032the function, or if you passed it incorrect arguments). What happens
20033in that case is controlled by the @code{set unwindonsignal} command.
20034
7cd1089b
PM
20035Similarly, with a C@t{++} program it is possible for the function you
20036call via the @code{print} or @code{call} command to generate an
20037exception that is not handled due to the constraints of the dummy
20038frame. In this case, any exception that is raised in the frame, but has
20039an out-of-frame exception handler will not be found. GDB builds a
20040dummy-frame for the inferior function call, and the unwinder cannot
20041seek for exception handlers outside of this dummy-frame. What happens
20042in that case is controlled by the
20043@code{set unwind-on-terminating-exception} command.
20044
9c16f35a
EZ
20045@table @code
20046@item set unwindonsignal
20047@kindex set unwindonsignal
20048@cindex unwind stack in called functions
20049@cindex call dummy stack unwinding
20050Set unwinding of the stack if a signal is received while in a function
20051that @value{GDBN} called in the program being debugged. If set to on,
20052@value{GDBN} unwinds the stack it created for the call and restores
20053the context to what it was before the call. If set to off (the
20054default), @value{GDBN} stops in the frame where the signal was
20055received.
20056
20057@item show unwindonsignal
20058@kindex show unwindonsignal
20059Show the current setting of stack unwinding in the functions called by
20060@value{GDBN}.
7cd1089b
PM
20061
20062@item set unwind-on-terminating-exception
20063@kindex set unwind-on-terminating-exception
20064@cindex unwind stack in called functions with unhandled exceptions
20065@cindex call dummy stack unwinding on unhandled exception.
20066Set unwinding of the stack if a C@t{++} exception is raised, but left
20067unhandled while in a function that @value{GDBN} called in the program being
20068debugged. If set to on (the default), @value{GDBN} unwinds the stack
20069it created for the call and restores the context to what it was before
20070the call. If set to off, @value{GDBN} the exception is delivered to
20071the default C@t{++} exception handler and the inferior terminated.
20072
20073@item show unwind-on-terminating-exception
20074@kindex show unwind-on-terminating-exception
20075Show the current setting of stack unwinding in the functions called by
20076@value{GDBN}.
20077
136afab8
PW
20078@item set may-call-functions
20079@kindex set may-call-functions
20080@cindex disabling calling functions in the program
20081@cindex calling functions in the program, disabling
20082Set permission to call functions in the program.
20083This controls whether @value{GDBN} will attempt to call functions in
20084the program, such as with expressions in the @code{print} command. It
20085defaults to @code{on}.
20086
20087To call a function in the program, @value{GDBN} has to temporarily
20088modify the state of the inferior. This has potentially undesired side
20089effects. Also, having @value{GDBN} call nested functions is likely to
20090be erroneous and may even crash the program being debugged. You can
20091avoid such hazards by forbidding @value{GDBN} from calling functions
20092in the program being debugged. If calling functions in the program
20093is forbidden, GDB will throw an error when a command (such as printing
20094an expression) starts a function call in the program.
20095
20096@item show may-call-functions
20097@kindex show may-call-functions
20098Show permission to call functions in the program.
20099
9c16f35a
EZ
20100@end table
20101
d69cf9b2
PA
20102@subsection Calling functions with no debug info
20103
20104@cindex no debug info functions
20105Sometimes, a function you wish to call is missing debug information.
20106In such case, @value{GDBN} does not know the type of the function,
20107including the types of the function's parameters. To avoid calling
20108the inferior function incorrectly, which could result in the called
20109function functioning erroneously and even crash, @value{GDBN} refuses
20110to call the function unless you tell it the type of the function.
20111
20112For prototyped (i.e.@: ANSI/ISO style) functions, there are two ways
20113to do that. The simplest is to cast the call to the function's
20114declared return type. For example:
20115
20116@smallexample
20117(@value{GDBP}) p getenv ("PATH")
20118'getenv' has unknown return type; cast the call to its declared return type
20119(@value{GDBP}) p (char *) getenv ("PATH")
20120$1 = 0x7fffffffe7ba "/usr/local/bin:/"...
20121@end smallexample
20122
20123Casting the return type of a no-debug function is equivalent to
20124casting the function to a pointer to a prototyped function that has a
20125prototype that matches the types of the passed-in arguments, and
20126calling that. I.e., the call above is equivalent to:
20127
20128@smallexample
20129(@value{GDBP}) p ((char * (*) (const char *)) getenv) ("PATH")
20130@end smallexample
20131
20132@noindent
20133and given this prototyped C or C++ function with float parameters:
20134
20135@smallexample
20136float multiply (float v1, float v2) @{ return v1 * v2; @}
20137@end smallexample
20138
20139@noindent
20140these calls are equivalent:
20141
20142@smallexample
20143(@value{GDBP}) p (float) multiply (2.0f, 3.0f)
20144(@value{GDBP}) p ((float (*) (float, float)) multiply) (2.0f, 3.0f)
20145@end smallexample
20146
20147If the function you wish to call is declared as unprototyped (i.e.@:
20148old K&R style), you must use the cast-to-function-pointer syntax, so
20149that @value{GDBN} knows that it needs to apply default argument
20150promotions (promote float arguments to double). @xref{ABI, float
20151promotion}. For example, given this unprototyped C function with
20152float parameters, and no debug info:
20153
20154@smallexample
20155float
20156multiply_noproto (v1, v2)
20157 float v1, v2;
20158@{
20159 return v1 * v2;
20160@}
20161@end smallexample
20162
20163@noindent
20164you call it like this:
20165
20166@smallexample
20167 (@value{GDBP}) p ((float (*) ()) multiply_noproto) (2.0f, 3.0f)
20168@end smallexample
c906108c 20169
6d2ebf8b 20170@node Patching
79a6e687 20171@section Patching Programs
7a292a7a 20172
c906108c
SS
20173@cindex patching binaries
20174@cindex writing into executables
c906108c 20175@cindex writing into corefiles
c906108c 20176
7a292a7a
SS
20177By default, @value{GDBN} opens the file containing your program's
20178executable code (or the corefile) read-only. This prevents accidental
20179alterations to machine code; but it also prevents you from intentionally
20180patching your program's binary.
c906108c
SS
20181
20182If you'd like to be able to patch the binary, you can specify that
20183explicitly with the @code{set write} command. For example, you might
20184want to turn on internal debugging flags, or even to make emergency
20185repairs.
20186
20187@table @code
20188@kindex set write
20189@item set write on
20190@itemx set write off
7a292a7a 20191If you specify @samp{set write on}, @value{GDBN} opens executable and
20924a55 20192core files for both reading and writing; if you specify @kbd{set write
c906108c
SS
20193off} (the default), @value{GDBN} opens them read-only.
20194
20195If you have already loaded a file, you must load it again (using the
7a292a7a
SS
20196@code{exec-file} or @code{core-file} command) after changing @code{set
20197write}, for your new setting to take effect.
c906108c
SS
20198
20199@item show write
20200@kindex show write
7a292a7a
SS
20201Display whether executable files and core files are opened for writing
20202as well as reading.
c906108c
SS
20203@end table
20204
bb2ec1b3
TT
20205@node Compiling and Injecting Code
20206@section Compiling and injecting code in @value{GDBN}
20207@cindex injecting code
20208@cindex writing into executables
20209@cindex compiling code
20210
20211@value{GDBN} supports on-demand compilation and code injection into
20212programs running under @value{GDBN}. GCC 5.0 or higher built with
20213@file{libcc1.so} must be installed for this functionality to be enabled.
20214This functionality is implemented with the following commands.
20215
20216@table @code
20217@kindex compile code
20218@item compile code @var{source-code}
20219@itemx compile code -raw @var{--} @var{source-code}
20220Compile @var{source-code} with the compiler language found as the current
20221language in @value{GDBN} (@pxref{Languages}). If compilation and
20222injection is not supported with the current language specified in
20223@value{GDBN}, or the compiler does not support this feature, an error
20224message will be printed. If @var{source-code} compiles and links
20225successfully, @value{GDBN} will load the object-code emitted,
20226and execute it within the context of the currently selected inferior.
20227It is important to note that the compiled code is executed immediately.
20228After execution, the compiled code is removed from @value{GDBN} and any
20229new types or variables you have defined will be deleted.
20230
20231The command allows you to specify @var{source-code} in two ways.
20232The simplest method is to provide a single line of code to the command.
20233E.g.:
20234
20235@smallexample
20236compile code printf ("hello world\n");
20237@end smallexample
20238
20239If you specify options on the command line as well as source code, they
20240may conflict. The @samp{--} delimiter can be used to separate options
20241from actual source code. E.g.:
20242
20243@smallexample
20244compile code -r -- printf ("hello world\n");
20245@end smallexample
20246
20247Alternatively you can enter source code as multiple lines of text. To
20248enter this mode, invoke the @samp{compile code} command without any text
20249following the command. This will start the multiple-line editor and
20250allow you to type as many lines of source code as required. When you
20251have completed typing, enter @samp{end} on its own line to exit the
20252editor.
20253
20254@smallexample
20255compile code
20256>printf ("hello\n");
20257>printf ("world\n");
20258>end
20259@end smallexample
20260
20261Specifying @samp{-raw}, prohibits @value{GDBN} from wrapping the
20262provided @var{source-code} in a callable scope. In this case, you must
20263specify the entry point of the code by defining a function named
20264@code{_gdb_expr_}. The @samp{-raw} code cannot access variables of the
20265inferior. Using @samp{-raw} option may be needed for example when
20266@var{source-code} requires @samp{#include} lines which may conflict with
20267inferior symbols otherwise.
20268
20269@kindex compile file
20270@item compile file @var{filename}
20271@itemx compile file -raw @var{filename}
20272Like @code{compile code}, but take the source code from @var{filename}.
20273
20274@smallexample
20275compile file /home/user/example.c
20276@end smallexample
20277@end table
20278
36de76f9 20279@table @code
3345721a
PA
20280@item compile print [[@var{options}] --] @var{expr}
20281@itemx compile print [[@var{options}] --] /@var{f} @var{expr}
36de76f9
JK
20282Compile and execute @var{expr} with the compiler language found as the
20283current language in @value{GDBN} (@pxref{Languages}). By default the
20284value of @var{expr} is printed in a format appropriate to its data type;
20285you can choose a different format by specifying @samp{/@var{f}}, where
20286@var{f} is a letter specifying the format; see @ref{Output Formats,,Output
3345721a
PA
20287Formats}. The @code{compile print} command accepts the same options
20288as the @code{print} command; see @ref{print options}.
36de76f9 20289
3345721a
PA
20290@item compile print [[@var{options}] --]
20291@itemx compile print [[@var{options}] --] /@var{f}
36de76f9
JK
20292@cindex reprint the last value
20293Alternatively you can enter the expression (source code producing it) as
20294multiple lines of text. To enter this mode, invoke the @samp{compile print}
20295command without any text following the command. This will start the
20296multiple-line editor.
20297@end table
20298
e7a8570f
JK
20299@noindent
20300The process of compiling and injecting the code can be inspected using:
20301
20302@table @code
20303@anchor{set debug compile}
20304@item set debug compile
20305@cindex compile command debugging info
20306Turns on or off display of @value{GDBN} process of compiling and
20307injecting the code. The default is off.
20308
20309@item show debug compile
20310Displays the current state of displaying @value{GDBN} process of
20311compiling and injecting the code.
078a0207
KS
20312
20313@anchor{set debug compile-cplus-types}
20314@item set debug compile-cplus-types
20315@cindex compile C@t{++} type conversion
20316Turns on or off the display of C@t{++} type conversion debugging information.
20317The default is off.
20318
20319@item show debug compile-cplus-types
20320Displays the current state of displaying debugging information for
20321C@t{++} type conversion.
e7a8570f
JK
20322@end table
20323
20324@subsection Compilation options for the @code{compile} command
20325
20326@value{GDBN} needs to specify the right compilation options for the code
20327to be injected, in part to make its ABI compatible with the inferior
20328and in part to make the injected code compatible with @value{GDBN}'s
20329injecting process.
20330
20331@noindent
20332The options used, in increasing precedence:
20333
20334@table @asis
20335@item target architecture and OS options (@code{gdbarch})
20336These options depend on target processor type and target operating
20337system, usually they specify at least 32-bit (@code{-m32}) or 64-bit
20338(@code{-m64}) compilation option.
20339
20340@item compilation options recorded in the target
20341@value{NGCC} (since version 4.7) stores the options used for compilation
20342into @code{DW_AT_producer} part of DWARF debugging information according
20343to the @value{NGCC} option @code{-grecord-gcc-switches}. One has to
20344explicitly specify @code{-g} during inferior compilation otherwise
20345@value{NGCC} produces no DWARF. This feature is only relevant for
20346platforms where @code{-g} produces DWARF by default, otherwise one may
20347try to enforce DWARF by using @code{-gdwarf-4}.
20348
20349@item compilation options set by @code{set compile-args}
20350@end table
20351
20352@noindent
20353You can override compilation options using the following command:
20354
20355@table @code
20356@item set compile-args
20357@cindex compile command options override
20358Set compilation options used for compiling and injecting code with the
20359@code{compile} commands. These options override any conflicting ones
20360from the target architecture and/or options stored during inferior
20361compilation.
20362
20363@item show compile-args
20364Displays the current state of compilation options override.
20365This does not show all the options actually used during compilation,
20366use @ref{set debug compile} for that.
20367@end table
20368
bb2ec1b3
TT
20369@subsection Caveats when using the @code{compile} command
20370
20371There are a few caveats to keep in mind when using the @code{compile}
20372command. As the caveats are different per language, the table below
20373highlights specific issues on a per language basis.
20374
20375@table @asis
20376@item C code examples and caveats
20377When the language in @value{GDBN} is set to @samp{C}, the compiler will
20378attempt to compile the source code with a @samp{C} compiler. The source
20379code provided to the @code{compile} command will have much the same
20380access to variables and types as it normally would if it were part of
20381the program currently being debugged in @value{GDBN}.
20382
20383Below is a sample program that forms the basis of the examples that
20384follow. This program has been compiled and loaded into @value{GDBN},
20385much like any other normal debugging session.
20386
20387@smallexample
20388void function1 (void)
20389@{
20390 int i = 42;
20391 printf ("function 1\n");
20392@}
20393
20394void function2 (void)
20395@{
20396 int j = 12;
20397 function1 ();
20398@}
20399
20400int main(void)
20401@{
20402 int k = 6;
20403 int *p;
20404 function2 ();
20405 return 0;
20406@}
20407@end smallexample
20408
20409For the purposes of the examples in this section, the program above has
20410been compiled, loaded into @value{GDBN}, stopped at the function
20411@code{main}, and @value{GDBN} is awaiting input from the user.
20412
20413To access variables and types for any program in @value{GDBN}, the
20414program must be compiled and packaged with debug information. The
20415@code{compile} command is not an exception to this rule. Without debug
20416information, you can still use the @code{compile} command, but you will
20417be very limited in what variables and types you can access.
20418
20419So with that in mind, the example above has been compiled with debug
20420information enabled. The @code{compile} command will have access to
20421all variables and types (except those that may have been optimized
20422out). Currently, as @value{GDBN} has stopped the program in the
20423@code{main} function, the @code{compile} command would have access to
20424the variable @code{k}. You could invoke the @code{compile} command
20425and type some source code to set the value of @code{k}. You can also
20426read it, or do anything with that variable you would normally do in
20427@code{C}. Be aware that changes to inferior variables in the
20428@code{compile} command are persistent. In the following example:
20429
20430@smallexample
20431compile code k = 3;
20432@end smallexample
20433
20434@noindent
20435the variable @code{k} is now 3. It will retain that value until
20436something else in the example program changes it, or another
20437@code{compile} command changes it.
20438
20439Normal scope and access rules apply to source code compiled and
20440injected by the @code{compile} command. In the example, the variables
20441@code{j} and @code{k} are not accessible yet, because the program is
20442currently stopped in the @code{main} function, where these variables
20443are not in scope. Therefore, the following command
20444
20445@smallexample
20446compile code j = 3;
20447@end smallexample
20448
20449@noindent
20450will result in a compilation error message.
20451
20452Once the program is continued, execution will bring these variables in
20453scope, and they will become accessible; then the code you specify via
20454the @code{compile} command will be able to access them.
20455
20456You can create variables and types with the @code{compile} command as
20457part of your source code. Variables and types that are created as part
20458of the @code{compile} command are not visible to the rest of the program for
20459the duration of its run. This example is valid:
20460
20461@smallexample
20462compile code int ff = 5; printf ("ff is %d\n", ff);
20463@end smallexample
20464
20465However, if you were to type the following into @value{GDBN} after that
20466command has completed:
20467
20468@smallexample
20469compile code printf ("ff is %d\n'', ff);
20470@end smallexample
20471
20472@noindent
20473a compiler error would be raised as the variable @code{ff} no longer
20474exists. Object code generated and injected by the @code{compile}
20475command is removed when its execution ends. Caution is advised
20476when assigning to program variables values of variables created by the
20477code submitted to the @code{compile} command. This example is valid:
20478
20479@smallexample
20480compile code int ff = 5; k = ff;
20481@end smallexample
20482
20483The value of the variable @code{ff} is assigned to @code{k}. The variable
20484@code{k} does not require the existence of @code{ff} to maintain the value
20485it has been assigned. However, pointers require particular care in
20486assignment. If the source code compiled with the @code{compile} command
20487changed the address of a pointer in the example program, perhaps to a
20488variable created in the @code{compile} command, that pointer would point
20489to an invalid location when the command exits. The following example
20490would likely cause issues with your debugged program:
20491
20492@smallexample
20493compile code int ff = 5; p = &ff;
20494@end smallexample
20495
20496In this example, @code{p} would point to @code{ff} when the
20497@code{compile} command is executing the source code provided to it.
20498However, as variables in the (example) program persist with their
20499assigned values, the variable @code{p} would point to an invalid
20500location when the command exists. A general rule should be followed
20501in that you should either assign @code{NULL} to any assigned pointers,
20502or restore a valid location to the pointer before the command exits.
20503
20504Similar caution must be exercised with any structs, unions, and typedefs
20505defined in @code{compile} command. Types defined in the @code{compile}
20506command will no longer be available in the next @code{compile} command.
20507Therefore, if you cast a variable to a type defined in the
20508@code{compile} command, care must be taken to ensure that any future
20509need to resolve the type can be achieved.
20510
20511@smallexample
20512(gdb) compile code static struct a @{ int a; @} v = @{ 42 @}; argv = &v;
20513(gdb) compile code printf ("%d\n", ((struct a *) argv)->a);
20514gdb command line:1:36: error: dereferencing pointer to incomplete type ‘struct a’
20515Compilation failed.
20516(gdb) compile code struct a @{ int a; @}; printf ("%d\n", ((struct a *) argv)->a);
2051742
20518@end smallexample
20519
20520Variables that have been optimized away by the compiler are not
20521accessible to the code submitted to the @code{compile} command.
20522Access to those variables will generate a compiler error which @value{GDBN}
20523will print to the console.
20524@end table
20525
e7a8570f
JK
20526@subsection Compiler search for the @code{compile} command
20527
6e41ddec
JK
20528@value{GDBN} needs to find @value{NGCC} for the inferior being debugged
20529which may not be obvious for remote targets of different architecture
e43c3e2a 20530than where @value{GDBN} is running. Environment variable @env{PATH} on
e7a8570f 20531@value{GDBN} host is searched for @value{NGCC} binary matching the
6e41ddec 20532target architecture and operating system. This search can be overriden
e43c3e2a 20533by @code{set compile-gcc} @value{GDBN} command below. @env{PATH} is
6e41ddec
JK
20534taken from shell that executed @value{GDBN}, it is not the value set by
20535@value{GDBN} command @code{set environment}). @xref{Environment}.
20536
e7a8570f 20537
e43c3e2a 20538Specifically @env{PATH} is searched for binaries matching regular expression
e7a8570f
JK
20539@code{@var{arch}(-[^-]*)?-@var{os}-gcc} according to the inferior target being
20540debugged. @var{arch} is processor name --- multiarch is supported, so for
20541example both @code{i386} and @code{x86_64} targets look for pattern
20542@code{(x86_64|i.86)} and both @code{s390} and @code{s390x} targets look
20543for pattern @code{s390x?}. @var{os} is currently supported only for
20544pattern @code{linux(-gnu)?}.
20545
6e41ddec
JK
20546On Posix hosts the compiler driver @value{GDBN} needs to find also
20547shared library @file{libcc1.so} from the compiler. It is searched in
20548default shared library search path (overridable with usual environment
e43c3e2a 20549variable @env{LD_LIBRARY_PATH}), unrelated to @env{PATH} or @code{set
6e41ddec
JK
20550compile-gcc} settings. Contrary to it @file{libcc1plugin.so} is found
20551according to the installation of the found compiler --- as possibly
20552specified by the @code{set compile-gcc} command.
20553
20554@table @code
20555@item set compile-gcc
20556@cindex compile command driver filename override
20557Set compilation command used for compiling and injecting code with the
20558@code{compile} commands. If this option is not set (it is set to
20559an empty string), the search described above will occur --- that is the
20560default.
20561
20562@item show compile-gcc
20563Displays the current compile command @value{NGCC} driver filename.
20564If set, it is the main command @command{gcc}, found usually for example
20565under name @file{x86_64-linux-gnu-gcc}.
20566@end table
20567
6d2ebf8b 20568@node GDB Files
c906108c
SS
20569@chapter @value{GDBN} Files
20570
7a292a7a
SS
20571@value{GDBN} needs to know the file name of the program to be debugged,
20572both in order to read its symbol table and in order to start your
20573program. To debug a core dump of a previous run, you must also tell
20574@value{GDBN} the name of the core dump file.
c906108c
SS
20575
20576@menu
20577* Files:: Commands to specify files
2b4bf6af 20578* File Caching:: Information about @value{GDBN}'s file caching
5b5d99cf 20579* Separate Debug Files:: Debugging information in separate files
608e2dbb 20580* MiniDebugInfo:: Debugging information in a special section
9291a0cd 20581* Index Files:: Index files speed up GDB
c906108c 20582* Symbol Errors:: Errors reading symbol files
b14b1491 20583* Data Files:: GDB data files
c906108c
SS
20584@end menu
20585
6d2ebf8b 20586@node Files
79a6e687 20587@section Commands to Specify Files
c906108c 20588
7a292a7a 20589@cindex symbol table
c906108c 20590@cindex core dump file
7a292a7a
SS
20591
20592You may want to specify executable and core dump file names. The usual
20593way to do this is at start-up time, using the arguments to
20594@value{GDBN}'s start-up commands (@pxref{Invocation, , Getting In and
20595Out of @value{GDBN}}).
c906108c
SS
20596
20597Occasionally it is necessary to change to a different file during a
397ca115
EZ
20598@value{GDBN} session. Or you may run @value{GDBN} and forget to
20599specify a file you want to use. Or you are debugging a remote target
79a6e687
BW
20600via @code{gdbserver} (@pxref{Server, file, Using the @code{gdbserver}
20601Program}). In these situations the @value{GDBN} commands to specify
0869d01b 20602new files are useful.
c906108c
SS
20603
20604@table @code
20605@cindex executable file
20606@kindex file
20607@item file @var{filename}
20608Use @var{filename} as the program to be debugged. It is read for its
20609symbols and for the contents of pure memory. It is also the program
20610executed when you use the @code{run} command. If you do not specify a
5d161b24 20611directory and the file is not found in the @value{GDBN} working directory,
e43c3e2a 20612@value{GDBN} uses the environment variable @env{PATH} as a list of
5d161b24
DB
20613directories to search, just as the shell does when looking for a program
20614to run. You can change the value of this variable, for both @value{GDBN}
c906108c
SS
20615and your program, using the @code{path} command.
20616
fc8be69e
EZ
20617@cindex unlinked object files
20618@cindex patching object files
20619You can load unlinked object @file{.o} files into @value{GDBN} using
20620the @code{file} command. You will not be able to ``run'' an object
20621file, but you can disassemble functions and inspect variables. Also,
20622if the underlying BFD functionality supports it, you could use
20623@kbd{gdb -write} to patch object files using this technique. Note
20624that @value{GDBN} can neither interpret nor modify relocations in this
20625case, so branches and some initialized variables will appear to go to
20626the wrong place. But this feature is still handy from time to time.
20627
c906108c
SS
20628@item file
20629@code{file} with no argument makes @value{GDBN} discard any information it
20630has on both executable file and the symbol table.
20631
20632@kindex exec-file
20633@item exec-file @r{[} @var{filename} @r{]}
20634Specify that the program to be run (but not the symbol table) is found
e43c3e2a 20635in @var{filename}. @value{GDBN} searches the environment variable @env{PATH}
c906108c
SS
20636if necessary to locate your program. Omitting @var{filename} means to
20637discard information on the executable file.
20638
20639@kindex symbol-file
d4d429d5 20640@item symbol-file @r{[} @var{filename} @r{[} -o @var{offset} @r{]]}
e43c3e2a 20641Read symbol table information from file @var{filename}. @env{PATH} is
c906108c
SS
20642searched when necessary. Use the @code{file} command to get both symbol
20643table and program to run from the same file.
20644
d4d429d5
PT
20645If an optional @var{offset} is specified, it is added to the start
20646address of each section in the symbol file. This is useful if the
20647program is relocated at runtime, such as the Linux kernel with kASLR
20648enabled.
20649
c906108c
SS
20650@code{symbol-file} with no argument clears out @value{GDBN} information on your
20651program's symbol table.
20652
ae5a43e0
DJ
20653The @code{symbol-file} command causes @value{GDBN} to forget the contents of
20654some breakpoints and auto-display expressions. This is because they may
20655contain pointers to the internal data recording symbols and data types,
20656which are part of the old symbol table data being discarded inside
20657@value{GDBN}.
c906108c
SS
20658
20659@code{symbol-file} does not repeat if you press @key{RET} again after
20660executing it once.
20661
20662When @value{GDBN} is configured for a particular environment, it
20663understands debugging information in whatever format is the standard
20664generated for that environment; you may use either a @sc{gnu} compiler, or
20665other compilers that adhere to the local conventions.
c906108c 20666Best results are usually obtained from @sc{gnu} compilers; for example,
e22ea452 20667using @code{@value{NGCC}} you can generate debugging information for
c906108c 20668optimized code.
c906108c
SS
20669
20670For most kinds of object files, with the exception of old SVR3 systems
20671using COFF, the @code{symbol-file} command does not normally read the
20672symbol table in full right away. Instead, it scans the symbol table
20673quickly to find which source files and which symbols are present. The
20674details are read later, one source file at a time, as they are needed.
20675
20676The purpose of this two-stage reading strategy is to make @value{GDBN}
20677start up faster. For the most part, it is invisible except for
20678occasional pauses while the symbol table details for a particular source
20679file are being read. (The @code{set verbose} command can turn these
20680pauses into messages if desired. @xref{Messages/Warnings, ,Optional
79a6e687 20681Warnings and Messages}.)
c906108c 20682
c906108c
SS
20683We have not implemented the two-stage strategy for COFF yet. When the
20684symbol table is stored in COFF format, @code{symbol-file} reads the
20685symbol table data in full right away. Note that ``stabs-in-COFF''
20686still does the two-stage strategy, since the debug info is actually
20687in stabs format.
20688
20689@kindex readnow
20690@cindex reading symbols immediately
20691@cindex symbols, reading immediately
6ac33a4e
TT
20692@item symbol-file @r{[} -readnow @r{]} @var{filename}
20693@itemx file @r{[} -readnow @r{]} @var{filename}
c906108c
SS
20694You can override the @value{GDBN} two-stage strategy for reading symbol
20695tables by using the @samp{-readnow} option with any of the commands that
20696load symbol table information, if you want to be sure @value{GDBN} has the
5d161b24 20697entire symbol table available.
c906108c 20698
97cbe998
SDJ
20699@cindex @code{-readnever}, option for symbol-file command
20700@cindex never read symbols
20701@cindex symbols, never read
20702@item symbol-file @r{[} -readnever @r{]} @var{filename}
20703@itemx file @r{[} -readnever @r{]} @var{filename}
20704You can instruct @value{GDBN} to never read the symbolic information
20705contained in @var{filename} by using the @samp{-readnever} option.
20706@xref{--readnever}.
20707
c906108c
SS
20708@c FIXME: for now no mention of directories, since this seems to be in
20709@c flux. 13mar1992 status is that in theory GDB would look either in
20710@c current dir or in same dir as myprog; but issues like competing
20711@c GDB's, or clutter in system dirs, mean that in practice right now
20712@c only current dir is used. FFish says maybe a special GDB hierarchy
20713@c (eg rooted in val of env var GDBSYMS) could exist for mappable symbol
20714@c files.
20715
c906108c 20716@kindex core-file
09d4efe1 20717@item core-file @r{[}@var{filename}@r{]}
4644b6e3 20718@itemx core
c906108c
SS
20719Specify the whereabouts of a core dump file to be used as the ``contents
20720of memory''. Traditionally, core files contain only some parts of the
20721address space of the process that generated them; @value{GDBN} can access the
20722executable file itself for other parts.
20723
20724@code{core-file} with no argument specifies that no core file is
20725to be used.
20726
20727Note that the core file is ignored when your program is actually running
7a292a7a
SS
20728under @value{GDBN}. So, if you have been running your program and you
20729wish to debug a core file instead, you must kill the subprocess in which
20730the program is running. To do this, use the @code{kill} command
79a6e687 20731(@pxref{Kill Process, ,Killing the Child Process}).
c906108c 20732
c906108c
SS
20733@kindex add-symbol-file
20734@cindex dynamic linking
291f9a96 20735@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{]}
96a2c332
SS
20736The @code{add-symbol-file} command reads additional symbol table
20737information from the file @var{filename}. You would use this command
20738when @var{filename} has been dynamically loaded (by some other means)
ed6dfe51
PT
20739into the program that is running. The @var{textaddress} parameter gives
20740the memory address at which the file's text section has been loaded.
20741You can additionally specify the base address of other sections using
20742an arbitrary number of @samp{-s @var{section} @var{address}} pairs.
20743If a section is omitted, @value{GDBN} will use its default addresses
20744as found in @var{filename}. Any @var{address} or @var{textaddress}
20745can be given as an expression.
c906108c 20746
291f9a96
PT
20747If an optional @var{offset} is specified, it is added to the start
20748address of each section, except those for which the address was
20749specified explicitly.
20750
c906108c
SS
20751The symbol table of the file @var{filename} is added to the symbol table
20752originally read with the @code{symbol-file} command. You can use the
96a2c332 20753@code{add-symbol-file} command any number of times; the new symbol data
98297bf6
NB
20754thus read is kept in addition to the old.
20755
20756Changes can be reverted using the command @code{remove-symbol-file}.
c906108c 20757
17d9d558
JB
20758@cindex relocatable object files, reading symbols from
20759@cindex object files, relocatable, reading symbols from
20760@cindex reading symbols from relocatable object files
20761@cindex symbols, reading from relocatable object files
20762@cindex @file{.o} files, reading symbols from
20763Although @var{filename} is typically a shared library file, an
20764executable file, or some other object file which has been fully
20765relocated for loading into a process, you can also load symbolic
20766information from relocatable @file{.o} files, as long as:
20767
20768@itemize @bullet
20769@item
20770the file's symbolic information refers only to linker symbols defined in
20771that file, not to symbols defined by other object files,
20772@item
20773every section the file's symbolic information refers to has actually
20774been loaded into the inferior, as it appears in the file, and
20775@item
20776you can determine the address at which every section was loaded, and
20777provide these to the @code{add-symbol-file} command.
20778@end itemize
20779
20780@noindent
20781Some embedded operating systems, like Sun Chorus and VxWorks, can load
20782relocatable files into an already running program; such systems
20783typically make the requirements above easy to meet. However, it's
20784important to recognize that many native systems use complex link
49efadf5 20785procedures (@code{.linkonce} section factoring and C@t{++} constructor table
17d9d558
JB
20786assembly, for example) that make the requirements difficult to meet. In
20787general, one cannot assume that using @code{add-symbol-file} to read a
20788relocatable object file's symbolic information will have the same effect
20789as linking the relocatable object file into the program in the normal
20790way.
20791
c906108c
SS
20792@code{add-symbol-file} does not repeat if you press @key{RET} after using it.
20793
98297bf6
NB
20794@kindex remove-symbol-file
20795@item remove-symbol-file @var{filename}
20796@item remove-symbol-file -a @var{address}
20797Remove a symbol file added via the @code{add-symbol-file} command. The
20798file to remove can be identified by its @var{filename} or by an @var{address}
20799that lies within the boundaries of this symbol file in memory. Example:
20800
20801@smallexample
20802(gdb) add-symbol-file /home/user/gdb/mylib.so 0x7ffff7ff9480
20803add symbol table from file "/home/user/gdb/mylib.so" at
20804 .text_addr = 0x7ffff7ff9480
20805(y or n) y
0bab6cf1 20806Reading symbols from /home/user/gdb/mylib.so...
98297bf6
NB
20807(gdb) remove-symbol-file -a 0x7ffff7ff9480
20808Remove symbol table from file "/home/user/gdb/mylib.so"? (y or n) y
20809(gdb)
20810@end smallexample
20811
20812
20813@code{remove-symbol-file} does not repeat if you press @key{RET} after using it.
20814
c45da7e6
EZ
20815@kindex add-symbol-file-from-memory
20816@cindex @code{syscall DSO}
20817@cindex load symbols from memory
20818@item add-symbol-file-from-memory @var{address}
20819Load symbols from the given @var{address} in a dynamically loaded
20820object file whose image is mapped directly into the inferior's memory.
20821For example, the Linux kernel maps a @code{syscall DSO} into each
20822process's address space; this DSO provides kernel-specific code for
20823some system calls. The argument can be any expression whose
20824evaluation yields the address of the file's shared object file header.
20825For this command to work, you must have used @code{symbol-file} or
20826@code{exec-file} commands in advance.
20827
c906108c 20828@kindex section
09d4efe1
EZ
20829@item section @var{section} @var{addr}
20830The @code{section} command changes the base address of the named
20831@var{section} of the exec file to @var{addr}. This can be used if the
20832exec file does not contain section addresses, (such as in the
20833@code{a.out} format), or when the addresses specified in the file
20834itself are wrong. Each section must be changed separately. The
20835@code{info files} command, described below, lists all the sections and
20836their addresses.
c906108c
SS
20837
20838@kindex info files
20839@kindex info target
20840@item info files
20841@itemx info target
7a292a7a
SS
20842@code{info files} and @code{info target} are synonymous; both print the
20843current target (@pxref{Targets, ,Specifying a Debugging Target}),
20844including the names of the executable and core dump files currently in
20845use by @value{GDBN}, and the files from which symbols were loaded. The
20846command @code{help target} lists all possible targets rather than
20847current ones.
20848
fe95c787 20849@kindex maint info sections
bf3386f0 20850@item maint info sections @r{[}-all-objects@r{]} @r{[}@var{filter-list}@r{]}
fe95c787
MS
20851Another command that can give you extra information about program sections
20852is @code{maint info sections}. In addition to the section information
20853displayed by @code{info files}, this command displays the flags and file
bf3386f0
AB
20854offset of each section in the executable and core dump files.
20855
20856When @samp{-all-objects} is passed then sections from all loaded object
20857files, including shared libraries, are printed.
20858
20859The optional @var{filter-list} is a space separated list of filter
20860keywords. Sections that match any one of the filter criteria will be
20861printed. There are two types of filter:
fe95c787
MS
20862
20863@table @code
bf3386f0
AB
20864@item @var{section-name}
20865Display information about any section named @var{section-name}.
20866@item @var{section-flag}
20867Display information for any section with @var{section-flag}. The
20868section flags that @value{GDBN} currently knows about are:
fe95c787
MS
20869@table @code
20870@item ALLOC
20871Section will have space allocated in the process when loaded.
20872Set for all sections except those containing debug information.
20873@item LOAD
20874Section will be loaded from the file into the child process memory.
20875Set for pre-initialized code and data, clear for @code{.bss} sections.
20876@item RELOC
20877Section needs to be relocated before loading.
20878@item READONLY
20879Section cannot be modified by the child process.
20880@item CODE
20881Section contains executable code only.
6600abed 20882@item DATA
fe95c787
MS
20883Section contains data only (no executable code).
20884@item ROM
20885Section will reside in ROM.
20886@item CONSTRUCTOR
20887Section contains data for constructor/destructor lists.
20888@item HAS_CONTENTS
20889Section is not empty.
20890@item NEVER_LOAD
20891An instruction to the linker to not output the section.
20892@item COFF_SHARED_LIBRARY
20893A notification to the linker that the section contains
20894COFF shared library information.
20895@item IS_COMMON
20896Section contains common symbols.
20897@end table
20898@end table
02a79309
AB
20899
20900@kindex maint info target-sections
20901@item maint info target-sections
20902This command prints @value{GDBN}'s internal section table. For each
20903target @value{GDBN} maintains a table containing the allocatable
20904sections from all currently mapped objects, along with information
20905about where the section is mapped.
20906
6763aef9 20907@kindex set trust-readonly-sections
9c16f35a 20908@cindex read-only sections
6763aef9
MS
20909@item set trust-readonly-sections on
20910Tell @value{GDBN} that readonly sections in your object file
6ca652b0 20911really are read-only (i.e.@: that their contents will not change).
6763aef9
MS
20912In that case, @value{GDBN} can fetch values from these sections
20913out of the object file, rather than from the target program.
20914For some targets (notably embedded ones), this can be a significant
20915enhancement to debugging performance.
20916
20917The default is off.
20918
20919@item set trust-readonly-sections off
15110bc3 20920Tell @value{GDBN} not to trust readonly sections. This means that
6763aef9
MS
20921the contents of the section might change while the program is running,
20922and must therefore be fetched from the target when needed.
9c16f35a
EZ
20923
20924@item show trust-readonly-sections
20925Show the current setting of trusting readonly sections.
c906108c
SS
20926@end table
20927
20928All file-specifying commands allow both absolute and relative file names
20929as arguments. @value{GDBN} always converts the file name to an absolute file
20930name and remembers it that way.
20931
c906108c 20932@cindex shared libraries
9cceb671 20933@anchor{Shared Libraries}
b1236ac3
PA
20934@value{GDBN} supports @sc{gnu}/Linux, MS-Windows, SunOS,
20935Darwin/Mach-O, SVr4, IBM RS/6000 AIX, QNX Neutrino, FDPIC (FR-V), and
20936DSBT (TIC6X) shared libraries.
53a5351d 20937
9cceb671
DJ
20938On MS-Windows @value{GDBN} must be linked with the Expat library to support
20939shared libraries. @xref{Expat}.
20940
c906108c
SS
20941@value{GDBN} automatically loads symbol definitions from shared libraries
20942when you use the @code{run} command, or when you examine a core file.
20943(Before you issue the @code{run} command, @value{GDBN} does not understand
20944references to a function in a shared library, however---unless you are
20945debugging a core file).
53a5351d 20946
c906108c
SS
20947@c FIXME: some @value{GDBN} release may permit some refs to undef
20948@c FIXME...symbols---eg in a break cmd---assuming they are from a shared
20949@c FIXME...lib; check this from time to time when updating manual
20950
b7209cb4
FF
20951There are times, however, when you may wish to not automatically load
20952symbol definitions from shared libraries, such as when they are
20953particularly large or there are many of them.
20954
20955To control the automatic loading of shared library symbols, use the
20956commands:
20957
20958@table @code
20959@kindex set auto-solib-add
20960@item set auto-solib-add @var{mode}
20961If @var{mode} is @code{on}, symbols from all shared object libraries
20962will be loaded automatically when the inferior begins execution, you
20963attach to an independently started inferior, or when the dynamic linker
20964informs @value{GDBN} that a new library has been loaded. If @var{mode}
20965is @code{off}, symbols must be loaded manually, using the
20966@code{sharedlibrary} command. The default value is @code{on}.
20967
dcaf7c2c
EZ
20968@cindex memory used for symbol tables
20969If your program uses lots of shared libraries with debug info that
20970takes large amounts of memory, you can decrease the @value{GDBN}
20971memory footprint by preventing it from automatically loading the
20972symbols from shared libraries. To that end, type @kbd{set
20973auto-solib-add off} before running the inferior, then load each
20974library whose debug symbols you do need with @kbd{sharedlibrary
d3e8051b 20975@var{regexp}}, where @var{regexp} is a regular expression that matches
dcaf7c2c
EZ
20976the libraries whose symbols you want to be loaded.
20977
b7209cb4
FF
20978@kindex show auto-solib-add
20979@item show auto-solib-add
20980Display the current autoloading mode.
20981@end table
20982
c45da7e6 20983@cindex load shared library
b7209cb4
FF
20984To explicitly load shared library symbols, use the @code{sharedlibrary}
20985command:
20986
c906108c
SS
20987@table @code
20988@kindex info sharedlibrary
20989@kindex info share
55333a84
DE
20990@item info share @var{regex}
20991@itemx info sharedlibrary @var{regex}
20992Print the names of the shared libraries which are currently loaded
20993that match @var{regex}. If @var{regex} is omitted then print
20994all shared libraries that are loaded.
c906108c 20995
b30a0bc3
JB
20996@kindex info dll
20997@item info dll @var{regex}
20998This is an alias of @code{info sharedlibrary}.
20999
c906108c
SS
21000@kindex sharedlibrary
21001@kindex share
21002@item sharedlibrary @var{regex}
21003@itemx share @var{regex}
c906108c
SS
21004Load shared object library symbols for files matching a
21005Unix regular expression.
21006As with files loaded automatically, it only loads shared libraries
21007required by your program for a core file or after typing @code{run}. If
21008@var{regex} is omitted all shared libraries required by your program are
21009loaded.
c45da7e6
EZ
21010
21011@item nosharedlibrary
21012@kindex nosharedlibrary
21013@cindex unload symbols from shared libraries
21014Unload all shared object library symbols. This discards all symbols
21015that have been loaded from all shared libraries. Symbols from shared
21016libraries that were loaded by explicit user requests are not
21017discarded.
c906108c
SS
21018@end table
21019
721c2651 21020Sometimes you may wish that @value{GDBN} stops and gives you control
edcc5120
TT
21021when any of shared library events happen. The best way to do this is
21022to use @code{catch load} and @code{catch unload} (@pxref{Set
21023Catchpoints}).
21024
09f2921c 21025@value{GDBN} also supports the @code{set stop-on-solib-events}
edcc5120
TT
21026command for this. This command exists for historical reasons. It is
21027less useful than setting a catchpoint, because it does not allow for
21028conditions or commands as a catchpoint does.
721c2651
EZ
21029
21030@table @code
21031@item set stop-on-solib-events
21032@kindex set stop-on-solib-events
21033This command controls whether @value{GDBN} should give you control
21034when the dynamic linker notifies it about some shared library event.
21035The most common event of interest is loading or unloading of a new
21036shared library.
21037
21038@item show stop-on-solib-events
21039@kindex show stop-on-solib-events
21040Show whether @value{GDBN} stops and gives you control when shared
21041library events happen.
21042@end table
21043
f5ebfba0 21044Shared libraries are also supported in many cross or remote debugging
f1838a98
UW
21045configurations. @value{GDBN} needs to have access to the target's libraries;
21046this can be accomplished either by providing copies of the libraries
21047on the host system, or by asking @value{GDBN} to automatically retrieve the
21048libraries from the target. If copies of the target libraries are
21049provided, they need to be the same as the target libraries, although the
f5ebfba0
DJ
21050copies on the target can be stripped as long as the copies on the host are
21051not.
21052
59b7b46f
EZ
21053@cindex where to look for shared libraries
21054For remote debugging, you need to tell @value{GDBN} where the target
21055libraries are, so that it can load the correct copies---otherwise, it
21056may try to load the host's libraries. @value{GDBN} has two variables
21057to specify the search directories for target libraries.
f5ebfba0
DJ
21058
21059@table @code
a9a5a3d1 21060@cindex prefix for executable and shared library file names
f822c95b 21061@cindex system root, alternate
f5ebfba0 21062@kindex set solib-absolute-prefix
f822c95b
DJ
21063@kindex set sysroot
21064@item set sysroot @var{path}
21065Use @var{path} as the system root for the program being debugged. Any
21066absolute shared library paths will be prefixed with @var{path}; many
21067runtime loaders store the absolute paths to the shared library in the
a9a5a3d1
GB
21068target program's memory. When starting processes remotely, and when
21069attaching to already-running processes (local or remote), their
21070executable filenames will be prefixed with @var{path} if reported to
21071@value{GDBN} as absolute by the operating system. If you use
21072@code{set sysroot} to find executables and shared libraries, they need
21073to be laid out in the same way that they are on the target, with
21074e.g.@: a @file{/bin}, @file{/lib} and @file{/usr/lib} hierarchy under
21075@var{path}.
f822c95b 21076
599bd15c
GB
21077If @var{path} starts with the sequence @file{target:} and the target
21078system is remote then @value{GDBN} will retrieve the target binaries
21079from the remote system. This is only supported when using a remote
21080target that supports the @code{remote get} command (@pxref{File
21081Transfer,,Sending files to a remote system}). The part of @var{path}
21082following the initial @file{target:} (if present) is used as system
21083root prefix on the remote file system. If @var{path} starts with the
21084sequence @file{remote:} this is converted to the sequence
21085@file{target:} by @code{set sysroot}@footnote{Historically the
21086functionality to retrieve binaries from the remote system was
21087provided by prefixing @var{path} with @file{remote:}}. If you want
21088to specify a local system root using a directory that happens to be
21089named @file{target:} or @file{remote:}, you need to use some
21090equivalent variant of the name like @file{./target:}.
f1838a98 21091
18b8df43
AM
21092For targets with an MS-DOS based filesystem, such as MS-Windows,
21093@value{GDBN} tries prefixing a few variants of the target
ab38a727
PA
21094absolute file name with @var{path}. But first, on Unix hosts,
21095@value{GDBN} converts all backslash directory separators into forward
21096slashes, because the backslash is not a directory separator on Unix:
21097
21098@smallexample
21099 c:\foo\bar.dll @result{} c:/foo/bar.dll
21100@end smallexample
21101
21102Then, @value{GDBN} attempts prefixing the target file name with
21103@var{path}, and looks for the resulting file name in the host file
21104system:
21105
21106@smallexample
21107 c:/foo/bar.dll @result{} /path/to/sysroot/c:/foo/bar.dll
21108@end smallexample
21109
a9a5a3d1 21110If that does not find the binary, @value{GDBN} tries removing
ab38a727
PA
21111the @samp{:} character from the drive spec, both for convenience, and,
21112for the case of the host file system not supporting file names with
21113colons:
21114
21115@smallexample
21116 c:/foo/bar.dll @result{} /path/to/sysroot/c/foo/bar.dll
21117@end smallexample
21118
21119This makes it possible to have a system root that mirrors a target
21120with more than one drive. E.g., you may want to setup your local
21121copies of the target system shared libraries like so (note @samp{c} vs
21122@samp{z}):
21123
21124@smallexample
21125 @file{/path/to/sysroot/c/sys/bin/foo.dll}
21126 @file{/path/to/sysroot/c/sys/bin/bar.dll}
21127 @file{/path/to/sysroot/z/sys/bin/bar.dll}
21128@end smallexample
21129
21130@noindent
21131and point the system root at @file{/path/to/sysroot}, so that
21132@value{GDBN} can find the correct copies of both
21133@file{c:\sys\bin\foo.dll}, and @file{z:\sys\bin\bar.dll}.
21134
a9a5a3d1 21135If that still does not find the binary, @value{GDBN} tries
ab38a727
PA
21136removing the whole drive spec from the target file name:
21137
21138@smallexample
21139 c:/foo/bar.dll @result{} /path/to/sysroot/foo/bar.dll
21140@end smallexample
21141
21142This last lookup makes it possible to not care about the drive name,
21143if you don't want or need to.
21144
f822c95b
DJ
21145The @code{set solib-absolute-prefix} command is an alias for @code{set
21146sysroot}.
21147
21148@cindex default system root
59b7b46f 21149@cindex @samp{--with-sysroot}
f822c95b
DJ
21150You can set the default system root by using the configure-time
21151@samp{--with-sysroot} option. If the system root is inside
21152@value{GDBN}'s configured binary prefix (set with @samp{--prefix} or
21153@samp{--exec-prefix}), then the default system root will be updated
21154automatically if the installed @value{GDBN} is moved to a new
21155location.
21156
21157@kindex show sysroot
21158@item show sysroot
a9a5a3d1 21159Display the current executable and shared library prefix.
f5ebfba0
DJ
21160
21161@kindex set solib-search-path
21162@item set solib-search-path @var{path}
f822c95b
DJ
21163If this variable is set, @var{path} is a colon-separated list of
21164directories to search for shared libraries. @samp{solib-search-path}
21165is used after @samp{sysroot} fails to locate the library, or if the
21166path to the library is relative instead of absolute. If you want to
21167use @samp{solib-search-path} instead of @samp{sysroot}, be sure to set
d3e8051b 21168@samp{sysroot} to a nonexistent directory to prevent @value{GDBN} from
f822c95b 21169finding your host's libraries. @samp{sysroot} is preferred; setting
d3e8051b 21170it to a nonexistent directory may interfere with automatic loading
f822c95b 21171of shared library symbols.
f5ebfba0
DJ
21172
21173@kindex show solib-search-path
21174@item show solib-search-path
21175Display the current shared library search path.
ab38a727
PA
21176
21177@cindex DOS file-name semantics of file names.
21178@kindex set target-file-system-kind (unix|dos-based|auto)
21179@kindex show target-file-system-kind
21180@item set target-file-system-kind @var{kind}
21181Set assumed file system kind for target reported file names.
21182
21183Shared library file names as reported by the target system may not
21184make sense as is on the system @value{GDBN} is running on. For
21185example, when remote debugging a target that has MS-DOS based file
21186system semantics, from a Unix host, the target may be reporting to
21187@value{GDBN} a list of loaded shared libraries with file names such as
21188@file{c:\Windows\kernel32.dll}. On Unix hosts, there's no concept of
21189drive letters, so the @samp{c:\} prefix is not normally understood as
21190indicating an absolute file name, and neither is the backslash
21191normally considered a directory separator character. In that case,
21192the native file system would interpret this whole absolute file name
21193as a relative file name with no directory components. This would make
21194it impossible to point @value{GDBN} at a copy of the remote target's
21195shared libraries on the host using @code{set sysroot}, and impractical
21196with @code{set solib-search-path}. Setting
21197@code{target-file-system-kind} to @code{dos-based} tells @value{GDBN}
21198to interpret such file names similarly to how the target would, and to
21199map them to file names valid on @value{GDBN}'s native file system
21200semantics. The value of @var{kind} can be @code{"auto"}, in addition
21201to one of the supported file system kinds. In that case, @value{GDBN}
21202tries to determine the appropriate file system variant based on the
21203current target's operating system (@pxref{ABI, ,Configuring the
21204Current ABI}). The supported file system settings are:
21205
21206@table @code
21207@item unix
21208Instruct @value{GDBN} to assume the target file system is of Unix
21209kind. Only file names starting the forward slash (@samp{/}) character
21210are considered absolute, and the directory separator character is also
21211the forward slash.
21212
21213@item dos-based
21214Instruct @value{GDBN} to assume the target file system is DOS based.
21215File names starting with either a forward slash, or a drive letter
21216followed by a colon (e.g., @samp{c:}), are considered absolute, and
21217both the slash (@samp{/}) and the backslash (@samp{\\}) characters are
21218considered directory separators.
21219
21220@item auto
21221Instruct @value{GDBN} to use the file system kind associated with the
21222target operating system (@pxref{ABI, ,Configuring the Current ABI}).
21223This is the default.
21224@end table
f5ebfba0
DJ
21225@end table
21226
c011a4f4
DE
21227@cindex file name canonicalization
21228@cindex base name differences
21229When processing file names provided by the user, @value{GDBN}
21230frequently needs to compare them to the file names recorded in the
21231program's debug info. Normally, @value{GDBN} compares just the
21232@dfn{base names} of the files as strings, which is reasonably fast
21233even for very large programs. (The base name of a file is the last
21234portion of its name, after stripping all the leading directories.)
21235This shortcut in comparison is based upon the assumption that files
21236cannot have more than one base name. This is usually true, but
21237references to files that use symlinks or similar filesystem
21238facilities violate that assumption. If your program records files
21239using such facilities, or if you provide file names to @value{GDBN}
21240using symlinks etc., you can set @code{basenames-may-differ} to
21241@code{true} to instruct @value{GDBN} to completely canonicalize each
21242pair of file names it needs to compare. This will make file-name
21243comparisons accurate, but at a price of a significant slowdown.
21244
21245@table @code
21246@item set basenames-may-differ
21247@kindex set basenames-may-differ
21248Set whether a source file may have multiple base names.
21249
21250@item show basenames-may-differ
21251@kindex show basenames-may-differ
21252Show whether a source file may have multiple base names.
21253@end table
5b5d99cf 21254
18989b3c
AB
21255@node File Caching
21256@section File Caching
21257@cindex caching of opened files
21258@cindex caching of bfd objects
21259
21260To speed up file loading, and reduce memory usage, @value{GDBN} will
21261reuse the @code{bfd} objects used to track open files. @xref{Top, ,
21262BFD, bfd, The Binary File Descriptor Library}. The following commands
21263allow visibility and control of the caching behavior.
21264
21265@table @code
21266@kindex maint info bfds
21267@item maint info bfds
21268This prints information about each @code{bfd} object that is known to
21269@value{GDBN}.
21270
21271@kindex maint set bfd-sharing
21272@kindex maint show bfd-sharing
21273@kindex bfd caching
21274@item maint set bfd-sharing
21275@item maint show bfd-sharing
21276Control whether @code{bfd} objects can be shared. When sharing is
21277enabled @value{GDBN} reuses already open @code{bfd} objects rather
21278than reopening the same file. Turning sharing off does not cause
21279already shared @code{bfd} objects to be unshared, but all future files
21280that are opened will create a new @code{bfd} object. Similarly,
21281re-enabling sharing does not cause multiple existing @code{bfd}
21282objects to be collapsed into a single shared @code{bfd} object.
566f5e3b
AB
21283
21284@kindex set debug bfd-cache @var{level}
21285@kindex bfd caching
21286@item set debug bfd-cache @var{level}
21287Turns on debugging of the bfd cache, setting the level to @var{level}.
21288
21289@kindex show debug bfd-cache
21290@kindex bfd caching
21291@item show debug bfd-cache
21292Show the current debugging level of the bfd cache.
18989b3c
AB
21293@end table
21294
5b5d99cf
JB
21295@node Separate Debug Files
21296@section Debugging Information in Separate Files
21297@cindex separate debugging information files
21298@cindex debugging information in separate files
21299@cindex @file{.debug} subdirectories
21300@cindex debugging information directory, global
f307c045 21301@cindex global debugging information directories
c7e83d54
EZ
21302@cindex build ID, and separate debugging files
21303@cindex @file{.build-id} directory
5b5d99cf
JB
21304
21305@value{GDBN} allows you to put a program's debugging information in a
21306file separate from the executable itself, in a way that allows
21307@value{GDBN} to find and load the debugging information automatically.
c7e83d54
EZ
21308Since debugging information can be very large---sometimes larger
21309than the executable code itself---some systems distribute debugging
5b5d99cf
JB
21310information for their executables in separate files, which users can
21311install only when they need to debug a problem.
21312
c7e83d54
EZ
21313@value{GDBN} supports two ways of specifying the separate debug info
21314file:
5b5d99cf
JB
21315
21316@itemize @bullet
21317@item
c7e83d54
EZ
21318The executable contains a @dfn{debug link} that specifies the name of
21319the separate debug info file. The separate debug file's name is
21320usually @file{@var{executable}.debug}, where @var{executable} is the
21321name of the corresponding executable file without leading directories
21322(e.g., @file{ls.debug} for @file{/usr/bin/ls}). In addition, the
99e008fe
EZ
21323debug link specifies a 32-bit @dfn{Cyclic Redundancy Check} (CRC)
21324checksum for the debug file, which @value{GDBN} uses to validate that
21325the executable and the debug file came from the same build.
c7e83d54
EZ
21326
21327@item
98c59b52 21328@anchor{build ID}
7e27a47a 21329The executable contains a @dfn{build ID}, a unique bit string that is
c7e83d54 21330also present in the corresponding debug info file. (This is supported
c74f7d1c 21331only on some operating systems, when using the ELF or PE file formats
7e27a47a
EZ
21332for binary files and the @sc{gnu} Binutils.) For more details about
21333this feature, see the description of the @option{--build-id}
f5a476a7 21334command-line option in @ref{Options, , Command Line Options, ld,
7e27a47a
EZ
21335The GNU Linker}. The debug info file's name is not specified
21336explicitly by the build ID, but can be computed from the build ID, see
21337below.
d3750b24
JK
21338@end itemize
21339
c7e83d54
EZ
21340Depending on the way the debug info file is specified, @value{GDBN}
21341uses two different methods of looking for the debug file:
d3750b24
JK
21342
21343@itemize @bullet
21344@item
c7e83d54
EZ
21345For the ``debug link'' method, @value{GDBN} looks up the named file in
21346the directory of the executable file, then in a subdirectory of that
5f2459c2
EZ
21347directory named @file{.debug}, and finally under each one of the
21348global debug directories, in a subdirectory whose name is identical to
21349the leading directories of the executable's absolute file name. (On
21350MS-Windows/MS-DOS, the drive letter of the executable's leading
21351directories is converted to a one-letter subdirectory, i.e.@:
21352@file{d:/usr/bin/} is converted to @file{/d/usr/bin/}, because Windows
21353filesystems disallow colons in file names.)
c7e83d54
EZ
21354
21355@item
83f83d7f 21356For the ``build ID'' method, @value{GDBN} looks in the
f307c045
JK
21357@file{.build-id} subdirectory of each one of the global debug directories for
21358a file named @file{@var{nn}/@var{nnnnnnnn}.debug}, where @var{nn} are the
7e27a47a
EZ
21359first 2 hex characters of the build ID bit string, and @var{nnnnnnnn}
21360are the rest of the bit string. (Real build ID strings are 32 or more
21361hex characters, not 10.)
c7e83d54
EZ
21362@end itemize
21363
21364So, for example, suppose you ask @value{GDBN} to debug
7e27a47a
EZ
21365@file{/usr/bin/ls}, which has a debug link that specifies the
21366file @file{ls.debug}, and a build ID whose value in hex is
f307c045 21367@code{abcdef1234}. If the list of the global debug directories includes
c7e83d54
EZ
21368@file{/usr/lib/debug}, then @value{GDBN} will look for the following
21369debug information files, in the indicated order:
21370
21371@itemize @minus
21372@item
21373@file{/usr/lib/debug/.build-id/ab/cdef1234.debug}
d3750b24 21374@item
c7e83d54 21375@file{/usr/bin/ls.debug}
5b5d99cf 21376@item
c7e83d54 21377@file{/usr/bin/.debug/ls.debug}
5b5d99cf 21378@item
c7e83d54 21379@file{/usr/lib/debug/usr/bin/ls.debug}.
5b5d99cf 21380@end itemize
5b5d99cf 21381
1564a261
JK
21382@anchor{debug-file-directory}
21383Global debugging info directories default to what is set by @value{GDBN}
21384configure option @option{--with-separate-debug-dir}. During @value{GDBN} run
21385you can also set the global debugging info directories, and view the list
21386@value{GDBN} is currently using.
5b5d99cf
JB
21387
21388@table @code
21389
21390@kindex set debug-file-directory
24ddea62
JK
21391@item set debug-file-directory @var{directories}
21392Set the directories which @value{GDBN} searches for separate debugging
d9242c17
JK
21393information files to @var{directory}. Multiple path components can be set
21394concatenating them by a path separator.
5b5d99cf
JB
21395
21396@kindex show debug-file-directory
21397@item show debug-file-directory
24ddea62 21398Show the directories @value{GDBN} searches for separate debugging
5b5d99cf
JB
21399information files.
21400
21401@end table
21402
21403@cindex @code{.gnu_debuglink} sections
c7e83d54 21404@cindex debug link sections
5b5d99cf
JB
21405A debug link is a special section of the executable file named
21406@code{.gnu_debuglink}. The section must contain:
21407
21408@itemize
21409@item
21410A filename, with any leading directory components removed, followed by
21411a zero byte,
21412@item
21413zero to three bytes of padding, as needed to reach the next four-byte
21414boundary within the section, and
21415@item
21416a four-byte CRC checksum, stored in the same endianness used for the
21417executable file itself. The checksum is computed on the debugging
21418information file's full contents by the function given below, passing
21419zero as the @var{crc} argument.
21420@end itemize
21421
21422Any executable file format can carry a debug link, as long as it can
21423contain a section named @code{.gnu_debuglink} with the contents
21424described above.
21425
d3750b24 21426@cindex @code{.note.gnu.build-id} sections
c7e83d54 21427@cindex build ID sections
7e27a47a
EZ
21428The build ID is a special section in the executable file (and in other
21429ELF binary files that @value{GDBN} may consider). This section is
21430often named @code{.note.gnu.build-id}, but that name is not mandatory.
21431It contains unique identification for the built files---the ID remains
21432the same across multiple builds of the same build tree. The default
21433algorithm SHA1 produces 160 bits (40 hexadecimal characters) of the
21434content for the build ID string. The same section with an identical
21435value is present in the original built binary with symbols, in its
21436stripped variant, and in the separate debugging information file.
d3750b24 21437
5b5d99cf
JB
21438The debugging information file itself should be an ordinary
21439executable, containing a full set of linker symbols, sections, and
21440debugging information. The sections of the debugging information file
c7e83d54
EZ
21441should have the same names, addresses, and sizes as the original file,
21442but they need not contain any data---much like a @code{.bss} section
5b5d99cf
JB
21443in an ordinary executable.
21444
7e27a47a 21445The @sc{gnu} binary utilities (Binutils) package includes the
c7e83d54
EZ
21446@samp{objcopy} utility that can produce
21447the separated executable / debugging information file pairs using the
21448following commands:
21449
21450@smallexample
21451@kbd{objcopy --only-keep-debug foo foo.debug}
21452@kbd{strip -g foo}
c7e83d54
EZ
21453@end smallexample
21454
21455@noindent
21456These commands remove the debugging
83f83d7f
JK
21457information from the executable file @file{foo} and place it in the file
21458@file{foo.debug}. You can use the first, second or both methods to link the
21459two files:
21460
21461@itemize @bullet
21462@item
21463The debug link method needs the following additional command to also leave
21464behind a debug link in @file{foo}:
21465
21466@smallexample
21467@kbd{objcopy --add-gnu-debuglink=foo.debug foo}
21468@end smallexample
21469
21470Ulrich Drepper's @file{elfutils} package, starting with version 0.53, contains
d3750b24 21471a version of the @code{strip} command such that the command @kbd{strip foo -f
83f83d7f
JK
21472foo.debug} has the same functionality as the two @code{objcopy} commands and
21473the @code{ln -s} command above, together.
21474
21475@item
21476Build ID gets embedded into the main executable using @code{ld --build-id} or
21477the @value{NGCC} counterpart @code{gcc -Wl,--build-id}. Build ID support plus
21478compatibility fixes for debug files separation are present in @sc{gnu} binary
7e27a47a 21479utilities (Binutils) package since version 2.18.
83f83d7f
JK
21480@end itemize
21481
21482@noindent
d3750b24 21483
99e008fe
EZ
21484@cindex CRC algorithm definition
21485The CRC used in @code{.gnu_debuglink} is the CRC-32 defined in
21486IEEE 802.3 using the polynomial:
21487
21488@c TexInfo requires naked braces for multi-digit exponents for Tex
21489@c output, but this causes HTML output to barf. HTML has to be set using
21490@c raw commands. So we end up having to specify this equation in 2
21491@c different ways!
21492@ifhtml
21493@display
21494@html
21495 <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>
21496 + <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
21497@end html
21498@end display
21499@end ifhtml
21500@ifnothtml
21501@display
21502 @math{x^{32} + x^{26} + x^{23} + x^{22} + x^{16} + x^{12} + x^{11}}
21503 @math{+ x^{10} + x^8 + x^7 + x^5 + x^4 + x^2 + x + 1}
21504@end display
21505@end ifnothtml
21506
21507The function is computed byte at a time, taking the least
21508significant bit of each byte first. The initial pattern
21509@code{0xffffffff} is used, to ensure leading zeros affect the CRC and
21510the final result is inverted to ensure trailing zeros also affect the
21511CRC.
21512
21513@emph{Note:} This is the same CRC polynomial as used in handling the
936d2992
PA
21514@dfn{Remote Serial Protocol} @code{qCRC} packet (@pxref{qCRC packet}).
21515However in the case of the Remote Serial Protocol, the CRC is computed
21516@emph{most} significant bit first, and the result is not inverted, so
21517trailing zeros have no effect on the CRC value.
99e008fe
EZ
21518
21519To complete the description, we show below the code of the function
21520which produces the CRC used in @code{.gnu_debuglink}. Inverting the
21521initially supplied @code{crc} argument means that an initial call to
21522this function passing in zero will start computing the CRC using
21523@code{0xffffffff}.
5b5d99cf 21524
4644b6e3 21525@kindex gnu_debuglink_crc32
5b5d99cf
JB
21526@smallexample
21527unsigned long
21528gnu_debuglink_crc32 (unsigned long crc,
21529 unsigned char *buf, size_t len)
21530@{
21531 static const unsigned long crc32_table[256] =
21532 @{
21533 0x00000000, 0x77073096, 0xee0e612c, 0x990951ba, 0x076dc419,
21534 0x706af48f, 0xe963a535, 0x9e6495a3, 0x0edb8832, 0x79dcb8a4,
21535 0xe0d5e91e, 0x97d2d988, 0x09b64c2b, 0x7eb17cbd, 0xe7b82d07,
21536 0x90bf1d91, 0x1db71064, 0x6ab020f2, 0xf3b97148, 0x84be41de,
21537 0x1adad47d, 0x6ddde4eb, 0xf4d4b551, 0x83d385c7, 0x136c9856,
21538 0x646ba8c0, 0xfd62f97a, 0x8a65c9ec, 0x14015c4f, 0x63066cd9,
21539 0xfa0f3d63, 0x8d080df5, 0x3b6e20c8, 0x4c69105e, 0xd56041e4,
21540 0xa2677172, 0x3c03e4d1, 0x4b04d447, 0xd20d85fd, 0xa50ab56b,
21541 0x35b5a8fa, 0x42b2986c, 0xdbbbc9d6, 0xacbcf940, 0x32d86ce3,
21542 0x45df5c75, 0xdcd60dcf, 0xabd13d59, 0x26d930ac, 0x51de003a,
21543 0xc8d75180, 0xbfd06116, 0x21b4f4b5, 0x56b3c423, 0xcfba9599,
21544 0xb8bda50f, 0x2802b89e, 0x5f058808, 0xc60cd9b2, 0xb10be924,
21545 0x2f6f7c87, 0x58684c11, 0xc1611dab, 0xb6662d3d, 0x76dc4190,
21546 0x01db7106, 0x98d220bc, 0xefd5102a, 0x71b18589, 0x06b6b51f,
21547 0x9fbfe4a5, 0xe8b8d433, 0x7807c9a2, 0x0f00f934, 0x9609a88e,
21548 0xe10e9818, 0x7f6a0dbb, 0x086d3d2d, 0x91646c97, 0xe6635c01,
21549 0x6b6b51f4, 0x1c6c6162, 0x856530d8, 0xf262004e, 0x6c0695ed,
21550 0x1b01a57b, 0x8208f4c1, 0xf50fc457, 0x65b0d9c6, 0x12b7e950,
21551 0x8bbeb8ea, 0xfcb9887c, 0x62dd1ddf, 0x15da2d49, 0x8cd37cf3,
21552 0xfbd44c65, 0x4db26158, 0x3ab551ce, 0xa3bc0074, 0xd4bb30e2,
21553 0x4adfa541, 0x3dd895d7, 0xa4d1c46d, 0xd3d6f4fb, 0x4369e96a,
21554 0x346ed9fc, 0xad678846, 0xda60b8d0, 0x44042d73, 0x33031de5,
21555 0xaa0a4c5f, 0xdd0d7cc9, 0x5005713c, 0x270241aa, 0xbe0b1010,
21556 0xc90c2086, 0x5768b525, 0x206f85b3, 0xb966d409, 0xce61e49f,
21557 0x5edef90e, 0x29d9c998, 0xb0d09822, 0xc7d7a8b4, 0x59b33d17,
21558 0x2eb40d81, 0xb7bd5c3b, 0xc0ba6cad, 0xedb88320, 0x9abfb3b6,
21559 0x03b6e20c, 0x74b1d29a, 0xead54739, 0x9dd277af, 0x04db2615,
21560 0x73dc1683, 0xe3630b12, 0x94643b84, 0x0d6d6a3e, 0x7a6a5aa8,
21561 0xe40ecf0b, 0x9309ff9d, 0x0a00ae27, 0x7d079eb1, 0xf00f9344,
21562 0x8708a3d2, 0x1e01f268, 0x6906c2fe, 0xf762575d, 0x806567cb,
21563 0x196c3671, 0x6e6b06e7, 0xfed41b76, 0x89d32be0, 0x10da7a5a,
21564 0x67dd4acc, 0xf9b9df6f, 0x8ebeeff9, 0x17b7be43, 0x60b08ed5,
21565 0xd6d6a3e8, 0xa1d1937e, 0x38d8c2c4, 0x4fdff252, 0xd1bb67f1,
21566 0xa6bc5767, 0x3fb506dd, 0x48b2364b, 0xd80d2bda, 0xaf0a1b4c,
21567 0x36034af6, 0x41047a60, 0xdf60efc3, 0xa867df55, 0x316e8eef,
21568 0x4669be79, 0xcb61b38c, 0xbc66831a, 0x256fd2a0, 0x5268e236,
21569 0xcc0c7795, 0xbb0b4703, 0x220216b9, 0x5505262f, 0xc5ba3bbe,
21570 0xb2bd0b28, 0x2bb45a92, 0x5cb36a04, 0xc2d7ffa7, 0xb5d0cf31,
21571 0x2cd99e8b, 0x5bdeae1d, 0x9b64c2b0, 0xec63f226, 0x756aa39c,
21572 0x026d930a, 0x9c0906a9, 0xeb0e363f, 0x72076785, 0x05005713,
21573 0x95bf4a82, 0xe2b87a14, 0x7bb12bae, 0x0cb61b38, 0x92d28e9b,
21574 0xe5d5be0d, 0x7cdcefb7, 0x0bdbdf21, 0x86d3d2d4, 0xf1d4e242,
21575 0x68ddb3f8, 0x1fda836e, 0x81be16cd, 0xf6b9265b, 0x6fb077e1,
21576 0x18b74777, 0x88085ae6, 0xff0f6a70, 0x66063bca, 0x11010b5c,
21577 0x8f659eff, 0xf862ae69, 0x616bffd3, 0x166ccf45, 0xa00ae278,
21578 0xd70dd2ee, 0x4e048354, 0x3903b3c2, 0xa7672661, 0xd06016f7,
21579 0x4969474d, 0x3e6e77db, 0xaed16a4a, 0xd9d65adc, 0x40df0b66,
21580 0x37d83bf0, 0xa9bcae53, 0xdebb9ec5, 0x47b2cf7f, 0x30b5ffe9,
21581 0xbdbdf21c, 0xcabac28a, 0x53b39330, 0x24b4a3a6, 0xbad03605,
21582 0xcdd70693, 0x54de5729, 0x23d967bf, 0xb3667a2e, 0xc4614ab8,
21583 0x5d681b02, 0x2a6f2b94, 0xb40bbe37, 0xc30c8ea1, 0x5a05df1b,
21584 0x2d02ef8d
21585 @};
21586 unsigned char *end;
21587
21588 crc = ~crc & 0xffffffff;
21589 for (end = buf + len; buf < end; ++buf)
21590 crc = crc32_table[(crc ^ *buf) & 0xff] ^ (crc >> 8);
e7a3abfc 21591 return ~crc & 0xffffffff;
5b5d99cf
JB
21592@}
21593@end smallexample
21594
c7e83d54
EZ
21595@noindent
21596This computation does not apply to the ``build ID'' method.
21597
608e2dbb
TT
21598@node MiniDebugInfo
21599@section Debugging information in a special section
21600@cindex separate debug sections
21601@cindex @samp{.gnu_debugdata} section
21602
21603Some systems ship pre-built executables and libraries that have a
21604special @samp{.gnu_debugdata} section. This feature is called
21605@dfn{MiniDebugInfo}. This section holds an LZMA-compressed object and
21606is used to supply extra symbols for backtraces.
21607
21608The intent of this section is to provide extra minimal debugging
21609information for use in simple backtraces. It is not intended to be a
21610replacement for full separate debugging information (@pxref{Separate
21611Debug Files}). The example below shows the intended use; however,
21612@value{GDBN} does not currently put restrictions on what sort of
21613debugging information might be included in the section.
21614
21615@value{GDBN} has support for this extension. If the section exists,
21616then it is used provided that no other source of debugging information
21617can be found, and that @value{GDBN} was configured with LZMA support.
21618
21619This section can be easily created using @command{objcopy} and other
21620standard utilities:
21621
21622@smallexample
21623# Extract the dynamic symbols from the main binary, there is no need
5423b017 21624# to also have these in the normal symbol table.
608e2dbb
TT
21625nm -D @var{binary} --format=posix --defined-only \
21626 | awk '@{ print $1 @}' | sort > dynsyms
21627
5423b017 21628# Extract all the text (i.e. function) symbols from the debuginfo.
1d236d23
JK
21629# (Note that we actually also accept "D" symbols, for the benefit
21630# of platforms like PowerPC64 that use function descriptors.)
608e2dbb 21631nm @var{binary} --format=posix --defined-only \
1d236d23 21632 | awk '@{ if ($2 == "T" || $2 == "t" || $2 == "D") print $1 @}' \
608e2dbb
TT
21633 | sort > funcsyms
21634
21635# Keep all the function symbols not already in the dynamic symbol
21636# table.
21637comm -13 dynsyms funcsyms > keep_symbols
21638
edf9f00c
JK
21639# Separate full debug info into debug binary.
21640objcopy --only-keep-debug @var{binary} debug
21641
608e2dbb
TT
21642# Copy the full debuginfo, keeping only a minimal set of symbols and
21643# removing some unnecessary sections.
21644objcopy -S --remove-section .gdb_index --remove-section .comment \
edf9f00c
JK
21645 --keep-symbols=keep_symbols debug mini_debuginfo
21646
21647# Drop the full debug info from the original binary.
21648strip --strip-all -R .comment @var{binary}
608e2dbb
TT
21649
21650# Inject the compressed data into the .gnu_debugdata section of the
21651# original binary.
21652xz mini_debuginfo
21653objcopy --add-section .gnu_debugdata=mini_debuginfo.xz @var{binary}
21654@end smallexample
5b5d99cf 21655
9291a0cd
TT
21656@node Index Files
21657@section Index Files Speed Up @value{GDBN}
21658@cindex index files
21659@cindex @samp{.gdb_index} section
21660
21661When @value{GDBN} finds a symbol file, it scans the symbols in the
21662file in order to construct an internal symbol table. This lets most
21663@value{GDBN} operations work quickly---at the cost of a delay early
21664on. For large programs, this delay can be quite lengthy, so
21665@value{GDBN} provides a way to build an index, which speeds up
21666startup.
21667
ba643918
SDJ
21668For convenience, @value{GDBN} comes with a program,
21669@command{gdb-add-index}, which can be used to add the index to a
21670symbol file. It takes the symbol file as its only argument:
21671
21672@smallexample
21673$ gdb-add-index symfile
21674@end smallexample
21675
21676@xref{gdb-add-index}.
21677
21678It is also possible to do the work manually. Here is what
21679@command{gdb-add-index} does behind the curtains.
21680
9291a0cd
TT
21681The index is stored as a section in the symbol file. @value{GDBN} can
21682write the index to a file, then you can put it into the symbol file
21683using @command{objcopy}.
21684
21685To create an index file, use the @code{save gdb-index} command:
21686
21687@table @code
437afbb8 21688@item save gdb-index [-dwarf-5] @var{directory}
9291a0cd 21689@kindex save gdb-index
437afbb8
JK
21690Create index files for all symbol files currently known by
21691@value{GDBN}. For each known @var{symbol-file}, this command by
21692default creates it produces a single file
21693@file{@var{symbol-file}.gdb-index}. If you invoke this command with
21694the @option{-dwarf-5} option, it produces 2 files:
21695@file{@var{symbol-file}.debug_names} and
21696@file{@var{symbol-file}.debug_str}. The files are created in the
21697given @var{directory}.
9291a0cd
TT
21698@end table
21699
21700Once you have created an index file you can merge it into your symbol
21701file, here named @file{symfile}, using @command{objcopy}:
21702
21703@smallexample
21704$ objcopy --add-section .gdb_index=symfile.gdb-index \
21705 --set-section-flags .gdb_index=readonly symfile symfile
21706@end smallexample
21707
437afbb8
JK
21708Or for @code{-dwarf-5}:
21709
21710@smallexample
21711$ objcopy --dump-section .debug_str=symfile.debug_str.new symfile
21712$ cat symfile.debug_str >>symfile.debug_str.new
21713$ objcopy --add-section .debug_names=symfile.gdb-index \
21714 --set-section-flags .debug_names=readonly \
21715 --update-section .debug_str=symfile.debug_str.new symfile symfile
21716@end smallexample
21717
e615022a
DE
21718@value{GDBN} will normally ignore older versions of @file{.gdb_index}
21719sections that have been deprecated. Usually they are deprecated because
21720they are missing a new feature or have performance issues.
21721To tell @value{GDBN} to use a deprecated index section anyway
21722specify @code{set use-deprecated-index-sections on}.
21723The default is @code{off}.
21724This can speed up startup, but may result in some functionality being lost.
21725@xref{Index Section Format}.
21726
21727@emph{Warning:} Setting @code{use-deprecated-index-sections} to @code{on}
21728must be done before gdb reads the file. The following will not work:
21729
21730@smallexample
21731$ gdb -ex "set use-deprecated-index-sections on" <program>
21732@end smallexample
21733
21734Instead you must do, for example,
21735
21736@smallexample
21737$ gdb -iex "set use-deprecated-index-sections on" <program>
21738@end smallexample
21739
914592f9 21740Indices only work when using DWARF debugging information, not stabs.
9291a0cd 21741
7d11235d
SM
21742@subsection Automatic symbol index cache
21743
a0a3a1e9 21744@cindex automatic symbol index cache
7d11235d
SM
21745It is possible for @value{GDBN} to automatically save a copy of this index in a
21746cache on disk and retrieve it from there when loading the same binary in the
21747future. This feature can be turned on with @kbd{set index-cache on}. The
21748following commands can be used to tweak the behavior of the index cache.
21749
21750@table @code
21751
a0a3a1e9 21752@kindex set index-cache
7d11235d
SM
21753@item set index-cache on
21754@itemx set index-cache off
21755Enable or disable the use of the symbol index cache.
21756
21757@item set index-cache directory @var{directory}
a0a3a1e9 21758@kindex show index-cache
7d11235d 21759@itemx show index-cache directory
e6cd1dc1
TT
21760Set/show the directory where index files will be saved.
21761
21762The default value for this directory depends on the host platform. On
21763most systems, the index is cached in the @file{gdb} subdirectory of
21764the directory pointed to by the @env{XDG_CACHE_HOME} environment
21765variable, if it is defined, else in the @file{.cache/gdb} subdirectory
21766of your home directory. However, on some systems, the default may
21767differ according to local convention.
7d11235d
SM
21768
21769There is no limit on the disk space used by index cache. It is perfectly safe
21770to delete the content of that directory to free up disk space.
21771
21772@item show index-cache stats
21773Print the number of cache hits and misses since the launch of @value{GDBN}.
21774
21775@end table
21776
6d2ebf8b 21777@node Symbol Errors
79a6e687 21778@section Errors Reading Symbol Files
c906108c
SS
21779
21780While reading a symbol file, @value{GDBN} occasionally encounters problems,
21781such as symbol types it does not recognize, or known bugs in compiler
21782output. By default, @value{GDBN} does not notify you of such problems, since
21783they are relatively common and primarily of interest to people
21784debugging compilers. If you are interested in seeing information
21785about ill-constructed symbol tables, you can either ask @value{GDBN} to print
21786only one message about each such type of problem, no matter how many
21787times the problem occurs; or you can ask @value{GDBN} to print more messages,
21788to see how many times the problems occur, with the @code{set
79a6e687
BW
21789complaints} command (@pxref{Messages/Warnings, ,Optional Warnings and
21790Messages}).
c906108c
SS
21791
21792The messages currently printed, and their meanings, include:
21793
21794@table @code
21795@item inner block not inside outer block in @var{symbol}
21796
21797The symbol information shows where symbol scopes begin and end
21798(such as at the start of a function or a block of statements). This
21799error indicates that an inner scope block is not fully contained
21800in its outer scope blocks.
21801
21802@value{GDBN} circumvents the problem by treating the inner block as if it had
21803the same scope as the outer block. In the error message, @var{symbol}
21804may be shown as ``@code{(don't know)}'' if the outer block is not a
21805function.
21806
21807@item block at @var{address} out of order
21808
21809The symbol information for symbol scope blocks should occur in
21810order of increasing addresses. This error indicates that it does not
21811do so.
21812
21813@value{GDBN} does not circumvent this problem, and has trouble
21814locating symbols in the source file whose symbols it is reading. (You
21815can often determine what source file is affected by specifying
79a6e687
BW
21816@code{set verbose on}. @xref{Messages/Warnings, ,Optional Warnings and
21817Messages}.)
c906108c
SS
21818
21819@item bad block start address patched
21820
21821The symbol information for a symbol scope block has a start address
21822smaller than the address of the preceding source line. This is known
21823to occur in the SunOS 4.1.1 (and earlier) C compiler.
21824
21825@value{GDBN} circumvents the problem by treating the symbol scope block as
21826starting on the previous source line.
21827
21828@item bad string table offset in symbol @var{n}
21829
21830@cindex foo
21831Symbol number @var{n} contains a pointer into the string table which is
21832larger than the size of the string table.
21833
21834@value{GDBN} circumvents the problem by considering the symbol to have the
21835name @code{foo}, which may cause other problems if many symbols end up
21836with this name.
21837
21838@item unknown symbol type @code{0x@var{nn}}
21839
7a292a7a
SS
21840The symbol information contains new data types that @value{GDBN} does
21841not yet know how to read. @code{0x@var{nn}} is the symbol type of the
d4f3574e 21842uncomprehended information, in hexadecimal.
c906108c 21843
7a292a7a
SS
21844@value{GDBN} circumvents the error by ignoring this symbol information.
21845This usually allows you to debug your program, though certain symbols
c906108c 21846are not accessible. If you encounter such a problem and feel like
7a292a7a
SS
21847debugging it, you can debug @code{@value{GDBP}} with itself, breakpoint
21848on @code{complain}, then go up to the function @code{read_dbx_symtab}
21849and examine @code{*bufp} to see the symbol.
c906108c
SS
21850
21851@item stub type has NULL name
c906108c 21852
7a292a7a 21853@value{GDBN} could not find the full definition for a struct or class.
c906108c 21854
7a292a7a 21855@item const/volatile indicator missing (ok if using g++ v1.x), got@dots{}
b37052ae 21856The symbol information for a C@t{++} member function is missing some
7a292a7a
SS
21857information that recent versions of the compiler should have output for
21858it.
c906108c
SS
21859
21860@item info mismatch between compiler and debugger
21861
21862@value{GDBN} could not parse a type specification output by the compiler.
7a292a7a 21863
c906108c
SS
21864@end table
21865
b14b1491
TT
21866@node Data Files
21867@section GDB Data Files
21868
21869@cindex prefix for data files
21870@value{GDBN} will sometimes read an auxiliary data file. These files
21871are kept in a directory known as the @dfn{data directory}.
21872
21873You can set the data directory's name, and view the name @value{GDBN}
21874is currently using.
21875
21876@table @code
21877@kindex set data-directory
21878@item set data-directory @var{directory}
21879Set the directory which @value{GDBN} searches for auxiliary data files
21880to @var{directory}.
21881
21882@kindex show data-directory
21883@item show data-directory
21884Show the directory @value{GDBN} searches for auxiliary data files.
21885@end table
21886
21887@cindex default data directory
21888@cindex @samp{--with-gdb-datadir}
21889You can set the default data directory by using the configure-time
21890@samp{--with-gdb-datadir} option. If the data directory is inside
21891@value{GDBN}'s configured binary prefix (set with @samp{--prefix} or
21892@samp{--exec-prefix}), then the default data directory will be updated
21893automatically if the installed @value{GDBN} is moved to a new
21894location.
21895
aae1c79a
DE
21896The data directory may also be specified with the
21897@code{--data-directory} command line option.
21898@xref{Mode Options}.
21899
6d2ebf8b 21900@node Targets
c906108c 21901@chapter Specifying a Debugging Target
7a292a7a 21902
c906108c 21903@cindex debugging target
c906108c 21904A @dfn{target} is the execution environment occupied by your program.
53a5351d
JM
21905
21906Often, @value{GDBN} runs in the same host environment as your program;
21907in that case, the debugging target is specified as a side effect when
21908you use the @code{file} or @code{core} commands. When you need more
c906108c
SS
21909flexibility---for example, running @value{GDBN} on a physically separate
21910host, or controlling a standalone system over a serial port or a
53a5351d
JM
21911realtime system over a TCP/IP connection---you can use the @code{target}
21912command to specify one of the target types configured for @value{GDBN}
79a6e687 21913(@pxref{Target Commands, ,Commands for Managing Targets}).
c906108c 21914
a8f24a35
EZ
21915@cindex target architecture
21916It is possible to build @value{GDBN} for several different @dfn{target
21917architectures}. When @value{GDBN} is built like that, you can choose
21918one of the available architectures with the @kbd{set architecture}
21919command.
21920
21921@table @code
21922@kindex set architecture
21923@kindex show architecture
21924@item set architecture @var{arch}
21925This command sets the current target architecture to @var{arch}. The
21926value of @var{arch} can be @code{"auto"}, in addition to one of the
21927supported architectures.
21928
21929@item show architecture
21930Show the current target architecture.
9c16f35a
EZ
21931
21932@item set processor
21933@itemx processor
21934@kindex set processor
21935@kindex show processor
21936These are alias commands for, respectively, @code{set architecture}
21937and @code{show architecture}.
a8f24a35
EZ
21938@end table
21939
c906108c
SS
21940@menu
21941* Active Targets:: Active targets
21942* Target Commands:: Commands for managing targets
c906108c 21943* Byte Order:: Choosing target byte order
c906108c
SS
21944@end menu
21945
6d2ebf8b 21946@node Active Targets
79a6e687 21947@section Active Targets
7a292a7a 21948
c906108c
SS
21949@cindex stacking targets
21950@cindex active targets
21951@cindex multiple targets
21952
8ea5bce5 21953There are multiple classes of targets such as: processes, executable files or
c0edd9ed
JK
21954recording sessions. Core files belong to the process class, making core file
21955and process mutually exclusive. Otherwise, @value{GDBN} can work concurrently
21956on multiple active targets, one in each class. This allows you to (for
21957example) start a process and inspect its activity, while still having access to
21958the executable file after the process finishes. Or if you start process
21959recording (@pxref{Reverse Execution}) and @code{reverse-step} there, you are
21960presented a virtual layer of the recording target, while the process target
21961remains stopped at the chronologically last point of the process execution.
21962
21963Use the @code{core-file} and @code{exec-file} commands to select a new core
21964file or executable target (@pxref{Files, ,Commands to Specify Files}). To
21965specify as a target a process that is already running, use the @code{attach}
21966command (@pxref{Attach, ,Debugging an Already-running Process}).
c906108c 21967
6d2ebf8b 21968@node Target Commands
79a6e687 21969@section Commands for Managing Targets
c906108c
SS
21970
21971@table @code
21972@item target @var{type} @var{parameters}
7a292a7a
SS
21973Connects the @value{GDBN} host environment to a target machine or
21974process. A target is typically a protocol for talking to debugging
21975facilities. You use the argument @var{type} to specify the type or
21976protocol of the target machine.
c906108c
SS
21977
21978Further @var{parameters} are interpreted by the target protocol, but
21979typically include things like device names or host names to connect
21980with, process numbers, and baud rates.
c906108c
SS
21981
21982The @code{target} command does not repeat if you press @key{RET} again
21983after executing the command.
21984
21985@kindex help target
21986@item help target
21987Displays the names of all targets available. To display targets
21988currently selected, use either @code{info target} or @code{info files}
79a6e687 21989(@pxref{Files, ,Commands to Specify Files}).
c906108c
SS
21990
21991@item help target @var{name}
21992Describe a particular target, including any parameters necessary to
21993select it.
21994
21995@kindex set gnutarget
21996@item set gnutarget @var{args}
5d161b24 21997@value{GDBN} uses its own library BFD to read your files. @value{GDBN}
c906108c 21998knows whether it is reading an @dfn{executable},
5d161b24
DB
21999a @dfn{core}, or a @dfn{.o} file; however, you can specify the file format
22000with the @code{set gnutarget} command. Unlike most @code{target} commands,
c906108c
SS
22001with @code{gnutarget} the @code{target} refers to a program, not a machine.
22002
d4f3574e 22003@quotation
c906108c
SS
22004@emph{Warning:} To specify a file format with @code{set gnutarget},
22005you must know the actual BFD name.
d4f3574e 22006@end quotation
c906108c 22007
d4f3574e 22008@noindent
79a6e687 22009@xref{Files, , Commands to Specify Files}.
c906108c 22010
5d161b24 22011@kindex show gnutarget
c906108c
SS
22012@item show gnutarget
22013Use the @code{show gnutarget} command to display what file format
22014@code{gnutarget} is set to read. If you have not set @code{gnutarget},
22015@value{GDBN} will determine the file format for each file automatically,
c4957902 22016and @code{show gnutarget} displays @samp{The current BFD target is "auto"}.
c906108c
SS
22017@end table
22018
4644b6e3 22019@cindex common targets
c906108c
SS
22020Here are some common targets (available, or not, depending on the GDB
22021configuration):
c906108c
SS
22022
22023@table @code
4644b6e3 22024@kindex target
c906108c 22025@item target exec @var{program}
4644b6e3 22026@cindex executable file target
c906108c
SS
22027An executable file. @samp{target exec @var{program}} is the same as
22028@samp{exec-file @var{program}}.
22029
c906108c 22030@item target core @var{filename}
4644b6e3 22031@cindex core dump file target
c906108c
SS
22032A core dump file. @samp{target core @var{filename}} is the same as
22033@samp{core-file @var{filename}}.
c906108c 22034
1a10341b 22035@item target remote @var{medium}
4644b6e3 22036@cindex remote target
1a10341b
JB
22037A remote system connected to @value{GDBN} via a serial line or network
22038connection. This command tells @value{GDBN} to use its own remote
22039protocol over @var{medium} for debugging. @xref{Remote Debugging}.
22040
22041For example, if you have a board connected to @file{/dev/ttya} on the
22042machine running @value{GDBN}, you could say:
22043
22044@smallexample
22045target remote /dev/ttya
22046@end smallexample
22047
22048@code{target remote} supports the @code{load} command. This is only
22049useful if you have some other way of getting the stub to the target
22050system, and you can put it somewhere in memory where it won't get
22051clobbered by the download.
c906108c 22052
ee8e71d4 22053@item target sim @r{[}@var{simargs}@r{]} @dots{}
4644b6e3 22054@cindex built-in simulator target
2df3850c 22055Builtin CPU simulator. @value{GDBN} includes simulators for most architectures.
104c1213 22056In general,
474c8240 22057@smallexample
104c1213
JM
22058 target sim
22059 load
22060 run
474c8240 22061@end smallexample
d4f3574e 22062@noindent
104c1213 22063works; however, you cannot assume that a specific memory map, device
d4f3574e 22064drivers, or even basic I/O is available, although some simulators do
104c1213
JM
22065provide these. For info about any processor-specific simulator details,
22066see the appropriate section in @ref{Embedded Processors, ,Embedded
22067Processors}.
22068
6a3cb8e8
PA
22069@item target native
22070@cindex native target
22071Setup for local/native process debugging. Useful to make the
22072@code{run} command spawn native processes (likewise @code{attach},
22073etc.@:) even when @code{set auto-connect-native-target} is @code{off}
22074(@pxref{set auto-connect-native-target}).
22075
c906108c
SS
22076@end table
22077
5d161b24 22078Different targets are available on different configurations of @value{GDBN};
c906108c 22079your configuration may have more or fewer targets.
c906108c 22080
721c2651
EZ
22081Many remote targets require you to download the executable's code once
22082you've successfully established a connection. You may wish to control
3d00d119
DJ
22083various aspects of this process.
22084
22085@table @code
721c2651
EZ
22086
22087@item set hash
22088@kindex set hash@r{, for remote monitors}
22089@cindex hash mark while downloading
22090This command controls whether a hash mark @samp{#} is displayed while
22091downloading a file to the remote monitor. If on, a hash mark is
22092displayed after each S-record is successfully downloaded to the
22093monitor.
22094
22095@item show hash
22096@kindex show hash@r{, for remote monitors}
22097Show the current status of displaying the hash mark.
22098
22099@item set debug monitor
22100@kindex set debug monitor
22101@cindex display remote monitor communications
22102Enable or disable display of communications messages between
22103@value{GDBN} and the remote monitor.
22104
22105@item show debug monitor
22106@kindex show debug monitor
22107Show the current status of displaying communications between
22108@value{GDBN} and the remote monitor.
a8f24a35 22109@end table
c906108c
SS
22110
22111@table @code
22112
5cf30ebf
LM
22113@kindex load @var{filename} @var{offset}
22114@item load @var{filename} @var{offset}
8edfe269 22115@anchor{load}
c906108c
SS
22116Depending on what remote debugging facilities are configured into
22117@value{GDBN}, the @code{load} command may be available. Where it exists, it
22118is meant to make @var{filename} (an executable) available for debugging
22119on the remote system---by downloading, or dynamic linking, for example.
22120@code{load} also records the @var{filename} symbol table in @value{GDBN}, like
22121the @code{add-symbol-file} command.
22122
22123If your @value{GDBN} does not have a @code{load} command, attempting to
22124execute it gets the error message ``@code{You can't do that when your
22125target is @dots{}}''
c906108c
SS
22126
22127The file is loaded at whatever address is specified in the executable.
22128For some object file formats, you can specify the load address when you
22129link the program; for other formats, like a.out, the object file format
22130specifies a fixed address.
22131@c FIXME! This would be a good place for an xref to the GNU linker doc.
22132
5cf30ebf
LM
22133It is also possible to tell @value{GDBN} to load the executable file at a
22134specific offset described by the optional argument @var{offset}. When
22135@var{offset} is provided, @var{filename} must also be provided.
22136
68437a39
DJ
22137Depending on the remote side capabilities, @value{GDBN} may be able to
22138load programs into flash memory.
22139
c906108c
SS
22140@code{load} does not repeat if you press @key{RET} again after using it.
22141@end table
22142
78cbbba8
LM
22143@table @code
22144
22145@kindex flash-erase
22146@item flash-erase
22147@anchor{flash-erase}
22148
22149Erases all known flash memory regions on the target.
22150
22151@end table
22152
6d2ebf8b 22153@node Byte Order
79a6e687 22154@section Choosing Target Byte Order
7a292a7a 22155
c906108c
SS
22156@cindex choosing target byte order
22157@cindex target byte order
c906108c 22158
eb17f351 22159Some types of processors, such as the @acronym{MIPS}, PowerPC, and Renesas SH,
c906108c
SS
22160offer the ability to run either big-endian or little-endian byte
22161orders. Usually the executable or symbol will include a bit to
22162designate the endian-ness, and you will not need to worry about
22163which to use. However, you may still find it useful to adjust
d4f3574e 22164@value{GDBN}'s idea of processor endian-ness manually.
c906108c
SS
22165
22166@table @code
4644b6e3 22167@kindex set endian
c906108c
SS
22168@item set endian big
22169Instruct @value{GDBN} to assume the target is big-endian.
22170
c906108c
SS
22171@item set endian little
22172Instruct @value{GDBN} to assume the target is little-endian.
22173
c906108c
SS
22174@item set endian auto
22175Instruct @value{GDBN} to use the byte order associated with the
22176executable.
22177
22178@item show endian
22179Display @value{GDBN}'s current idea of the target byte order.
22180
22181@end table
22182
4b2dfa9d
MR
22183If the @code{set endian auto} mode is in effect and no executable has
22184been selected, then the endianness used is the last one chosen either
22185by one of the @code{set endian big} and @code{set endian little}
22186commands or by inferring from the last executable used. If no
22187endianness has been previously chosen, then the default for this mode
22188is inferred from the target @value{GDBN} has been built for, and is
22189@code{little} if the name of the target CPU has an @code{el} suffix
22190and @code{big} otherwise.
22191
c906108c
SS
22192Note that these commands merely adjust interpretation of symbolic
22193data on the host, and that they have absolutely no effect on the
22194target system.
22195
ea35711c
DJ
22196
22197@node Remote Debugging
22198@chapter Debugging Remote Programs
c906108c
SS
22199@cindex remote debugging
22200
22201If you are trying to debug a program running on a machine that cannot run
5d161b24
DB
22202@value{GDBN} in the usual way, it is often useful to use remote debugging.
22203For example, you might use remote debugging on an operating system kernel,
c906108c
SS
22204or on a small system which does not have a general purpose operating system
22205powerful enough to run a full-featured debugger.
22206
22207Some configurations of @value{GDBN} have special serial or TCP/IP interfaces
22208to make this work with particular debugging targets. In addition,
5d161b24 22209@value{GDBN} comes with a generic serial protocol (specific to @value{GDBN},
c906108c
SS
22210but not specific to any particular target system) which you can use if you
22211write the remote stubs---the code that runs on the remote system to
22212communicate with @value{GDBN}.
22213
22214Other remote targets may be available in your
22215configuration of @value{GDBN}; use @code{help target} to list them.
c906108c 22216
6b2f586d 22217@menu
07f31aa6 22218* Connecting:: Connecting to a remote target
a6b151f1 22219* File Transfer:: Sending files to a remote system
6b2f586d 22220* Server:: Using the gdbserver program
79a6e687
BW
22221* Remote Configuration:: Remote configuration
22222* Remote Stub:: Implementing a remote stub
6b2f586d
AC
22223@end menu
22224
07f31aa6 22225@node Connecting
79a6e687 22226@section Connecting to a Remote Target
19d9d4ef
DB
22227@cindex remote debugging, connecting
22228@cindex @code{gdbserver}, connecting
22229@cindex remote debugging, types of connections
22230@cindex @code{gdbserver}, types of connections
22231@cindex @code{gdbserver}, @code{target remote} mode
22232@cindex @code{gdbserver}, @code{target extended-remote} mode
22233
22234This section describes how to connect to a remote target, including the
22235types of connections and their differences, how to set up executable and
22236symbol files on the host and target, and the commands used for
22237connecting to and disconnecting from the remote target.
22238
22239@subsection Types of Remote Connections
22240
22241@value{GDBN} supports two types of remote connections, @code{target remote}
22242mode and @code{target extended-remote} mode. Note that many remote targets
22243support only @code{target remote} mode. There are several major
22244differences between the two types of connections, enumerated here:
22245
22246@table @asis
22247
22248@cindex remote debugging, detach and program exit
22249@item Result of detach or program exit
22250@strong{With target remote mode:} When the debugged program exits or you
22251detach from it, @value{GDBN} disconnects from the target. When using
22252@code{gdbserver}, @code{gdbserver} will exit.
22253
22254@strong{With target extended-remote mode:} When the debugged program exits or
22255you detach from it, @value{GDBN} remains connected to the target, even
22256though no program is running. You can rerun the program, attach to a
22257running program, or use @code{monitor} commands specific to the target.
22258
22259When using @code{gdbserver} in this case, it does not exit unless it was
22260invoked using the @option{--once} option. If the @option{--once} option
22261was not used, you can ask @code{gdbserver} to exit using the
22262@code{monitor exit} command (@pxref{Monitor Commands for gdbserver}).
22263
22264@item Specifying the program to debug
22265For both connection types you use the @code{file} command to specify the
22266program on the host system. If you are using @code{gdbserver} there are
22267some differences in how to specify the location of the program on the
22268target.
22269
22270@strong{With target remote mode:} You must either specify the program to debug
22271on the @code{gdbserver} command line or use the @option{--attach} option
22272(@pxref{Attaching to a program,,Attaching to a Running Program}).
22273
22274@cindex @option{--multi}, @code{gdbserver} option
22275@strong{With target extended-remote mode:} You may specify the program to debug
22276on the @code{gdbserver} command line, or you can load the program or attach
22277to it using @value{GDBN} commands after connecting to @code{gdbserver}.
22278
22279@anchor{--multi Option in Types of Remote Connnections}
22280You can start @code{gdbserver} without supplying an initial command to run
22281or process ID to attach. To do this, use the @option{--multi} command line
22282option. Then you can connect using @code{target extended-remote} and start
22283the program you want to debug (see below for details on using the
22284@code{run} command in this scenario). Note that the conditions under which
22285@code{gdbserver} terminates depend on how @value{GDBN} connects to it
22286(@code{target remote} or @code{target extended-remote}). The
22287@option{--multi} option to @code{gdbserver} has no influence on that.
07f31aa6 22288
19d9d4ef
DB
22289@item The @code{run} command
22290@strong{With target remote mode:} The @code{run} command is not
22291supported. Once a connection has been established, you can use all
22292the usual @value{GDBN} commands to examine and change data. The
22293remote program is already running, so you can use commands like
22294@kbd{step} and @kbd{continue}.
22295
22296@strong{With target extended-remote mode:} The @code{run} command is
22297supported. The @code{run} command uses the value set by
22298@code{set remote exec-file} (@pxref{set remote exec-file}) to select
22299the program to run. Command line arguments are supported, except for
22300wildcard expansion and I/O redirection (@pxref{Arguments}).
22301
22302If you specify the program to debug on the command line, then the
22303@code{run} command is not required to start execution, and you can
22304resume using commands like @kbd{step} and @kbd{continue} as with
22305@code{target remote} mode.
22306
22307@anchor{Attaching in Types of Remote Connections}
22308@item Attaching
22309@strong{With target remote mode:} The @value{GDBN} command @code{attach} is
22310not supported. To attach to a running program using @code{gdbserver}, you
22311must use the @option{--attach} option (@pxref{Running gdbserver}).
22312
22313@strong{With target extended-remote mode:} To attach to a running program,
22314you may use the @code{attach} command after the connection has been
22315established. If you are using @code{gdbserver}, you may also invoke
22316@code{gdbserver} using the @option{--attach} option
22317(@pxref{Running gdbserver}).
22318
e47e48f6
PW
22319Some remote targets allow @value{GDBN} to determine the executable file running
22320in the process the debugger is attaching to. In such a case, @value{GDBN}
22321uses the value of @code{exec-file-mismatch} to handle a possible mismatch
22322between the executable file name running in the process and the name of the
22323current exec-file loaded by @value{GDBN} (@pxref{set exec-file-mismatch}).
22324
19d9d4ef
DB
22325@end table
22326
22327@anchor{Host and target files}
22328@subsection Host and Target Files
22329@cindex remote debugging, symbol files
22330@cindex symbol files, remote debugging
22331
22332@value{GDBN}, running on the host, needs access to symbol and debugging
22333information for your program running on the target. This requires
22334access to an unstripped copy of your program, and possibly any associated
22335symbol files. Note that this section applies equally to both @code{target
22336remote} mode and @code{target extended-remote} mode.
22337
22338Some remote targets (@pxref{qXfer executable filename read}, and
22339@pxref{Host I/O Packets}) allow @value{GDBN} to access program files over
22340the same connection used to communicate with @value{GDBN}. With such a
22341target, if the remote program is unstripped, the only command you need is
22342@code{target remote} (or @code{target extended-remote}).
22343
22344If the remote program is stripped, or the target does not support remote
22345program file access, start up @value{GDBN} using the name of the local
1b6e6f5c 22346unstripped copy of your program as the first argument, or use the
19d9d4ef
DB
22347@code{file} command. Use @code{set sysroot} to specify the location (on
22348the host) of target libraries (unless your @value{GDBN} was compiled with
22349the correct sysroot using @code{--with-sysroot}). Alternatively, you
22350may use @code{set solib-search-path} to specify how @value{GDBN} locates
22351target libraries.
22352
22353The symbol file and target libraries must exactly match the executable
22354and libraries on the target, with one exception: the files on the host
22355system should not be stripped, even if the files on the target system
22356are. Mismatched or missing files will lead to confusing results
22357during debugging. On @sc{gnu}/Linux targets, mismatched or missing
22358files may also prevent @code{gdbserver} from debugging multi-threaded
22359programs.
07f31aa6 22360
19d9d4ef
DB
22361@subsection Remote Connection Commands
22362@cindex remote connection commands
c1168a2f
JD
22363@value{GDBN} can communicate with the target over a serial line, a
22364local Unix domain socket, or
86941c27
JB
22365over an @acronym{IP} network using @acronym{TCP} or @acronym{UDP}. In
22366each case, @value{GDBN} uses the same protocol for debugging your
22367program; only the medium carrying the debugging packets varies. The
19d9d4ef
DB
22368@code{target remote} and @code{target extended-remote} commands
22369establish a connection to the target. Both commands accept the same
22370arguments, which indicate the medium to use:
86941c27
JB
22371
22372@table @code
22373
22374@item target remote @var{serial-device}
19d9d4ef 22375@itemx target extended-remote @var{serial-device}
07f31aa6 22376@cindex serial line, @code{target remote}
86941c27
JB
22377Use @var{serial-device} to communicate with the target. For example,
22378to use a serial line connected to the device named @file{/dev/ttyb}:
22379
22380@smallexample
22381target remote /dev/ttyb
22382@end smallexample
22383
07f31aa6 22384If you're using a serial line, you may want to give @value{GDBN} the
2446f5ea 22385@samp{--baud} option, or use the @code{set serial baud} command
0d12017b 22386(@pxref{Remote Configuration, set serial baud}) before the
9c16f35a 22387@code{target} command.
07f31aa6 22388
c1168a2f
JD
22389@item target remote @var{local-socket}
22390@itemx target extended-remote @var{local-socket}
22391@cindex local socket, @code{target remote}
22392@cindex Unix domain socket
22393Use @var{local-socket} to communicate with the target. For example,
22394to use a local Unix domain socket bound to the file system entry @file{/tmp/gdb-socket0}:
22395
22396@smallexample
22397target remote /tmp/gdb-socket0
22398@end smallexample
22399
22400Note that this command has the same form as the command to connect
22401to a serial line. @value{GDBN} will automatically determine which
22402kind of file you have specified and will make the appropriate kind
22403of connection.
22404This feature is not available if the host system does not support
22405Unix domain sockets.
22406
86941c27 22407@item target remote @code{@var{host}:@var{port}}
0ca4866a 22408@itemx target remote @code{[@var{host}]:@var{port}}
86941c27 22409@itemx target remote @code{tcp:@var{host}:@var{port}}
0ca4866a 22410@itemx target remote @code{tcp:[@var{host}]:@var{port}}
c7ab0aef
SDJ
22411@itemx target remote @code{tcp4:@var{host}:@var{port}}
22412@itemx target remote @code{tcp6:@var{host}:@var{port}}
0ca4866a 22413@itemx target remote @code{tcp6:[@var{host}]:@var{port}}
19d9d4ef 22414@itemx target extended-remote @code{@var{host}:@var{port}}
0ca4866a 22415@itemx target extended-remote @code{[@var{host}]:@var{port}}
19d9d4ef 22416@itemx target extended-remote @code{tcp:@var{host}:@var{port}}
0ca4866a 22417@itemx target extended-remote @code{tcp:[@var{host}]:@var{port}}
c7ab0aef
SDJ
22418@itemx target extended-remote @code{tcp4:@var{host}:@var{port}}
22419@itemx target extended-remote @code{tcp6:@var{host}:@var{port}}
0ca4866a 22420@itemx target extended-remote @code{tcp6:[@var{host}]:@var{port}}
86941c27 22421@cindex @acronym{TCP} port, @code{target remote}
6a0b3457 22422Debug using a @acronym{TCP} connection to @var{port} on @var{host}.
c7ab0aef
SDJ
22423The @var{host} may be either a host name, a numeric @acronym{IPv4}
22424address, or a numeric @acronym{IPv6} address (with or without the
22425square brackets to separate the address from the port); @var{port}
22426must be a decimal number. The @var{host} could be the target machine
22427itself, if it is directly connected to the net, or it might be a
22428terminal server which in turn has a serial line to the target.
07f31aa6 22429
86941c27
JB
22430For example, to connect to port 2828 on a terminal server named
22431@code{manyfarms}:
07f31aa6
DJ
22432
22433@smallexample
22434target remote manyfarms:2828
22435@end smallexample
22436
c7ab0aef
SDJ
22437To connect to port 2828 on a terminal server whose address is
22438@code{2001:0db8:85a3:0000:0000:8a2e:0370:7334}, you can either use the
22439square bracket syntax:
22440
22441@smallexample
22442target remote [2001:0db8:85a3:0000:0000:8a2e:0370:7334]:2828
22443@end smallexample
22444
22445@noindent
22446or explicitly specify the @acronym{IPv6} protocol:
22447
22448@smallexample
22449target remote tcp6:2001:0db8:85a3:0000:0000:8a2e:0370:7334:2828
22450@end smallexample
22451
22452This last example may be confusing to the reader, because there is no
22453visible separation between the hostname and the port number.
22454Therefore, we recommend the user to provide @acronym{IPv6} addresses
22455using square brackets for clarity. However, it is important to
22456mention that for @value{GDBN} there is no ambiguity: the number after
22457the last colon is considered to be the port number.
22458
86941c27
JB
22459If your remote target is actually running on the same machine as your
22460debugger session (e.g.@: a simulator for your target running on the
22461same host), you can omit the hostname. For example, to connect to
22462port 1234 on your local machine:
07f31aa6
DJ
22463
22464@smallexample
22465target remote :1234
22466@end smallexample
22467@noindent
22468
22469Note that the colon is still required here.
22470
86941c27 22471@item target remote @code{udp:@var{host}:@var{port}}
0ca4866a 22472@itemx target remote @code{udp:[@var{host}]:@var{port}}
c7ab0aef 22473@itemx target remote @code{udp4:@var{host}:@var{port}}
0ca4866a 22474@itemx target remote @code{udp6:[@var{host}]:@var{port}}
c7ab0aef 22475@itemx target extended-remote @code{udp:@var{host}:@var{port}}
19d9d4ef 22476@itemx target extended-remote @code{udp:@var{host}:@var{port}}
0ca4866a 22477@itemx target extended-remote @code{udp:[@var{host}]:@var{port}}
c7ab0aef
SDJ
22478@itemx target extended-remote @code{udp4:@var{host}:@var{port}}
22479@itemx target extended-remote @code{udp6:@var{host}:@var{port}}
0ca4866a 22480@itemx target extended-remote @code{udp6:[@var{host}]:@var{port}}
86941c27
JB
22481@cindex @acronym{UDP} port, @code{target remote}
22482Debug using @acronym{UDP} packets to @var{port} on @var{host}. For example, to
22483connect to @acronym{UDP} port 2828 on a terminal server named @code{manyfarms}:
07f31aa6
DJ
22484
22485@smallexample
22486target remote udp:manyfarms:2828
22487@end smallexample
22488
86941c27
JB
22489When using a @acronym{UDP} connection for remote debugging, you should
22490keep in mind that the `U' stands for ``Unreliable''. @acronym{UDP}
22491can silently drop packets on busy or unreliable networks, which will
22492cause havoc with your debugging session.
22493
66b8c7f6 22494@item target remote | @var{command}
19d9d4ef 22495@itemx target extended-remote | @var{command}
66b8c7f6
JB
22496@cindex pipe, @code{target remote} to
22497Run @var{command} in the background and communicate with it using a
22498pipe. The @var{command} is a shell command, to be parsed and expanded
22499by the system's command shell, @code{/bin/sh}; it should expect remote
22500protocol packets on its standard input, and send replies on its
22501standard output. You could use this to run a stand-alone simulator
22502that speaks the remote debugging protocol, to make net connections
22503using programs like @code{ssh}, or for other similar tricks.
22504
22505If @var{command} closes its standard output (perhaps by exiting),
22506@value{GDBN} will try to send it a @code{SIGTERM} signal. (If the
22507program has already exited, this will have no effect.)
22508
86941c27 22509@end table
07f31aa6 22510
07f31aa6
DJ
22511@cindex interrupting remote programs
22512@cindex remote programs, interrupting
22513Whenever @value{GDBN} is waiting for the remote program, if you type the
c8aa23ab 22514interrupt character (often @kbd{Ctrl-c}), @value{GDBN} attempts to stop the
07f31aa6
DJ
22515program. This may or may not succeed, depending in part on the hardware
22516and the serial drivers the remote system uses. If you type the
22517interrupt character once again, @value{GDBN} displays this prompt:
22518
22519@smallexample
22520Interrupted while waiting for the program.
22521Give up (and stop debugging it)? (y or n)
22522@end smallexample
22523
19d9d4ef
DB
22524In @code{target remote} mode, if you type @kbd{y}, @value{GDBN} abandons
22525the remote debugging session. (If you decide you want to try again later,
22526you can use @kbd{target remote} again to connect once more.) If you type
22527@kbd{n}, @value{GDBN} goes back to waiting.
22528
22529In @code{target extended-remote} mode, typing @kbd{n} will leave
22530@value{GDBN} connected to the target.
07f31aa6
DJ
22531
22532@table @code
22533@kindex detach (remote)
22534@item detach
22535When you have finished debugging the remote program, you can use the
22536@code{detach} command to release it from @value{GDBN} control.
22537Detaching from the target normally resumes its execution, but the results
22538will depend on your particular remote stub. After the @code{detach}
19d9d4ef
DB
22539command in @code{target remote} mode, @value{GDBN} is free to connect to
22540another target. In @code{target extended-remote} mode, @value{GDBN} is
22541still connected to the target.
07f31aa6
DJ
22542
22543@kindex disconnect
22544@item disconnect
19d9d4ef 22545The @code{disconnect} command closes the connection to the target, and
07f31aa6
DJ
22546the target is generally not resumed. It will wait for @value{GDBN}
22547(this instance or another one) to connect and continue debugging. After
22548the @code{disconnect} command, @value{GDBN} is again free to connect to
22549another target.
09d4efe1
EZ
22550
22551@cindex send command to remote monitor
fad38dfa
EZ
22552@cindex extend @value{GDBN} for remote targets
22553@cindex add new commands for external monitor
09d4efe1
EZ
22554@kindex monitor
22555@item monitor @var{cmd}
fad38dfa
EZ
22556This command allows you to send arbitrary commands directly to the
22557remote monitor. Since @value{GDBN} doesn't care about the commands it
22558sends like this, this command is the way to extend @value{GDBN}---you
22559can add new commands that only the external monitor will understand
22560and implement.
07f31aa6
DJ
22561@end table
22562
a6b151f1
DJ
22563@node File Transfer
22564@section Sending files to a remote system
22565@cindex remote target, file transfer
22566@cindex file transfer
22567@cindex sending files to remote systems
22568
22569Some remote targets offer the ability to transfer files over the same
22570connection used to communicate with @value{GDBN}. This is convenient
22571for targets accessible through other means, e.g.@: @sc{gnu}/Linux systems
22572running @code{gdbserver} over a network interface. For other targets,
22573e.g.@: embedded devices with only a single serial port, this may be
22574the only way to upload or download files.
22575
22576Not all remote targets support these commands.
22577
22578@table @code
22579@kindex remote put
22580@item remote put @var{hostfile} @var{targetfile}
22581Copy file @var{hostfile} from the host system (the machine running
22582@value{GDBN}) to @var{targetfile} on the target system.
22583
22584@kindex remote get
22585@item remote get @var{targetfile} @var{hostfile}
22586Copy file @var{targetfile} from the target system to @var{hostfile}
22587on the host system.
22588
22589@kindex remote delete
22590@item remote delete @var{targetfile}
22591Delete @var{targetfile} from the target system.
22592
22593@end table
22594
6f05cf9f 22595@node Server
79a6e687 22596@section Using the @code{gdbserver} Program
6f05cf9f
AC
22597
22598@kindex gdbserver
22599@cindex remote connection without stubs
22600@code{gdbserver} is a control program for Unix-like systems, which
22601allows you to connect your program with a remote @value{GDBN} via
19d9d4ef
DB
22602@code{target remote} or @code{target extended-remote}---but without
22603linking in the usual debugging stub.
6f05cf9f
AC
22604
22605@code{gdbserver} is not a complete replacement for the debugging stubs,
22606because it requires essentially the same operating-system facilities
22607that @value{GDBN} itself does. In fact, a system that can run
22608@code{gdbserver} to connect to a remote @value{GDBN} could also run
22609@value{GDBN} locally! @code{gdbserver} is sometimes useful nevertheless,
22610because it is a much smaller program than @value{GDBN} itself. It is
22611also easier to port than all of @value{GDBN}, so you may be able to get
22612started more quickly on a new system by using @code{gdbserver}.
22613Finally, if you develop code for real-time systems, you may find that
22614the tradeoffs involved in real-time operation make it more convenient to
22615do as much development work as possible on another system, for example
22616by cross-compiling. You can use @code{gdbserver} to make a similar
22617choice for debugging.
22618
22619@value{GDBN} and @code{gdbserver} communicate via either a serial line
22620or a TCP connection, using the standard @value{GDBN} remote serial
22621protocol.
22622
2d717e4f
DJ
22623@quotation
22624@emph{Warning:} @code{gdbserver} does not have any built-in security.
22625Do not run @code{gdbserver} connected to any public network; a
22626@value{GDBN} connection to @code{gdbserver} provides access to the
22627target system with the same privileges as the user running
22628@code{gdbserver}.
22629@end quotation
22630
19d9d4ef 22631@anchor{Running gdbserver}
2d717e4f
DJ
22632@subsection Running @code{gdbserver}
22633@cindex arguments, to @code{gdbserver}
d9b1a651 22634@cindex @code{gdbserver}, command-line arguments
2d717e4f
DJ
22635
22636Run @code{gdbserver} on the target system. You need a copy of the
22637program you want to debug, including any libraries it requires.
6f05cf9f
AC
22638@code{gdbserver} does not need your program's symbol table, so you can
22639strip the program if necessary to save space. @value{GDBN} on the host
22640system does all the symbol handling.
22641
22642To use the server, you must tell it how to communicate with @value{GDBN};
56460a61 22643the name of your program; and the arguments for your program. The usual
6f05cf9f
AC
22644syntax is:
22645
22646@smallexample
22647target> gdbserver @var{comm} @var{program} [ @var{args} @dots{} ]
22648@end smallexample
22649
6cf36756
SM
22650@var{comm} is either a device name (to use a serial line), or a TCP
22651hostname and portnumber, or @code{-} or @code{stdio} to use
22652stdin/stdout of @code{gdbserver}.
e0f9f062 22653For example, to debug Emacs with the argument
6f05cf9f
AC
22654@samp{foo.txt} and communicate with @value{GDBN} over the serial port
22655@file{/dev/com1}:
22656
22657@smallexample
22658target> gdbserver /dev/com1 emacs foo.txt
22659@end smallexample
22660
6cf36756
SM
22661@code{gdbserver} waits passively for the host @value{GDBN} to communicate
22662with it.
6f05cf9f
AC
22663
22664To use a TCP connection instead of a serial line:
22665
22666@smallexample
22667target> gdbserver host:2345 emacs foo.txt
22668@end smallexample
22669
22670The only difference from the previous example is the first argument,
22671specifying that you are communicating with the host @value{GDBN} via
22672TCP. The @samp{host:2345} argument means that @code{gdbserver} is to
22673expect a TCP connection from machine @samp{host} to local TCP port 2345.
22674(Currently, the @samp{host} part is ignored.) You can choose any number
22675you want for the port number as long as it does not conflict with any
22676TCP ports already in use on the target system (for example, @code{23} is
22677reserved for @code{telnet}).@footnote{If you choose a port number that
22678conflicts with another service, @code{gdbserver} prints an error message
22679and exits.} You must use the same port number with the host @value{GDBN}
22680@code{target remote} command.
22681
6cf36756
SM
22682The @code{stdio} connection is useful when starting @code{gdbserver}
22683with ssh:
e0f9f062
DE
22684
22685@smallexample
6cf36756 22686(gdb) target remote | ssh -T hostname gdbserver - hello
e0f9f062
DE
22687@end smallexample
22688
6cf36756
SM
22689The @samp{-T} option to ssh is provided because we don't need a remote pty,
22690and we don't want escape-character handling. Ssh does this by default when
22691a command is provided, the flag is provided to make it explicit.
22692You could elide it if you want to.
e0f9f062 22693
6cf36756
SM
22694Programs started with stdio-connected gdbserver have @file{/dev/null} for
22695@code{stdin}, and @code{stdout},@code{stderr} are sent back to gdb for
22696display through a pipe connected to gdbserver.
22697Both @code{stdout} and @code{stderr} use the same pipe.
e0f9f062 22698
19d9d4ef 22699@anchor{Attaching to a program}
2d717e4f 22700@subsubsection Attaching to a Running Program
d9b1a651
EZ
22701@cindex attach to a program, @code{gdbserver}
22702@cindex @option{--attach}, @code{gdbserver} option
2d717e4f 22703
56460a61
DJ
22704On some targets, @code{gdbserver} can also attach to running programs.
22705This is accomplished via the @code{--attach} argument. The syntax is:
22706
22707@smallexample
2d717e4f 22708target> gdbserver --attach @var{comm} @var{pid}
56460a61
DJ
22709@end smallexample
22710
19d9d4ef
DB
22711@var{pid} is the process ID of a currently running process. It isn't
22712necessary to point @code{gdbserver} at a binary for the running process.
22713
22714In @code{target extended-remote} mode, you can also attach using the
22715@value{GDBN} attach command
22716(@pxref{Attaching in Types of Remote Connections}).
56460a61 22717
b1fe9455 22718@pindex pidof
b1fe9455
DJ
22719You can debug processes by name instead of process ID if your target has the
22720@code{pidof} utility:
22721
22722@smallexample
2d717e4f 22723target> gdbserver --attach @var{comm} `pidof @var{program}`
b1fe9455
DJ
22724@end smallexample
22725
f822c95b 22726In case more than one copy of @var{program} is running, or @var{program}
b1fe9455
DJ
22727has multiple threads, most versions of @code{pidof} support the
22728@code{-s} option to only return the first process ID.
22729
03f2bd59
JK
22730@subsubsection TCP port allocation lifecycle of @code{gdbserver}
22731
19d9d4ef
DB
22732This section applies only when @code{gdbserver} is run to listen on a TCP
22733port.
03f2bd59
JK
22734
22735@code{gdbserver} normally terminates after all of its debugged processes have
22736terminated in @kbd{target remote} mode. On the other hand, for @kbd{target
22737extended-remote}, @code{gdbserver} stays running even with no processes left.
22738@value{GDBN} normally terminates the spawned debugged process on its exit,
22739which normally also terminates @code{gdbserver} in the @kbd{target remote}
22740mode. Therefore, when the connection drops unexpectedly, and @value{GDBN}
22741cannot ask @code{gdbserver} to kill its debugged processes, @code{gdbserver}
22742stays running even in the @kbd{target remote} mode.
22743
22744When @code{gdbserver} stays running, @value{GDBN} can connect to it again later.
22745Such reconnecting is useful for features like @ref{disconnected tracing}. For
22746completeness, at most one @value{GDBN} can be connected at a time.
22747
22748@cindex @option{--once}, @code{gdbserver} option
22749By default, @code{gdbserver} keeps the listening TCP port open, so that
6e8c5661 22750subsequent connections are possible. However, if you start @code{gdbserver}
03f2bd59
JK
22751with the @option{--once} option, it will stop listening for any further
22752connection attempts after connecting to the first @value{GDBN} session. This
22753means no further connections to @code{gdbserver} will be possible after the
22754first one. It also means @code{gdbserver} will terminate after the first
22755connection with remote @value{GDBN} has closed, even for unexpectedly closed
22756connections and even in the @kbd{target extended-remote} mode. The
22757@option{--once} option allows reusing the same port number for connecting to
22758multiple instances of @code{gdbserver} running on the same host, since each
22759instance closes its port after the first connection.
2d717e4f 22760
87ce2a04 22761@anchor{Other Command-Line Arguments for gdbserver}
2d717e4f
DJ
22762@subsubsection Other Command-Line Arguments for @code{gdbserver}
22763
19d9d4ef
DB
22764You can use the @option{--multi} option to start @code{gdbserver} without
22765specifying a program to debug or a process to attach to. Then you can
22766attach in @code{target extended-remote} mode and run or attach to a
22767program. For more information,
22768@pxref{--multi Option in Types of Remote Connnections}.
22769
d9b1a651 22770@cindex @option{--debug}, @code{gdbserver} option
62709adf 22771The @option{--debug} option tells @code{gdbserver} to display extra
d9b1a651
EZ
22772status information about the debugging process.
22773@cindex @option{--remote-debug}, @code{gdbserver} option
22774The @option{--remote-debug} option tells @code{gdbserver} to display
aeb2e706
AH
22775remote protocol debug output.
22776@cindex @option{--debug-file}, @code{gdbserver} option
22777@cindex @code{gdbserver}, send all debug output to a single file
22778The @option{--debug-file=@var{filename}} option tells @code{gdbserver} to
22779write any debug output to the given @var{filename}. These options are intended
22780for @code{gdbserver} development and for bug reports to the developers.
2d717e4f 22781
87ce2a04
DE
22782@cindex @option{--debug-format}, @code{gdbserver} option
22783The @option{--debug-format=option1[,option2,...]} option tells
22784@code{gdbserver} to include additional information in each output.
22785Possible options are:
22786
22787@table @code
22788@item none
22789Turn off all extra information in debugging output.
22790@item all
22791Turn on all extra information in debugging output.
22792@item timestamps
22793Include a timestamp in each line of debugging output.
22794@end table
22795
22796Options are processed in order. Thus, for example, if @option{none}
22797appears last then no additional information is added to debugging output.
22798
d9b1a651 22799@cindex @option{--wrapper}, @code{gdbserver} option
ccd213ac
DJ
22800The @option{--wrapper} option specifies a wrapper to launch programs
22801for debugging. The option should be followed by the name of the
22802wrapper, then any command-line arguments to pass to the wrapper, then
22803@kbd{--} indicating the end of the wrapper arguments.
22804
22805@code{gdbserver} runs the specified wrapper program with a combined
22806command line including the wrapper arguments, then the name of the
22807program to debug, then any arguments to the program. The wrapper
22808runs until it executes your program, and then @value{GDBN} gains control.
22809
22810You can use any program that eventually calls @code{execve} with
22811its arguments as a wrapper. Several standard Unix utilities do
22812this, e.g.@: @code{env} and @code{nohup}. Any Unix shell script ending
22813with @code{exec "$@@"} will also work.
22814
22815For example, you can use @code{env} to pass an environment variable to
22816the debugged program, without setting the variable in @code{gdbserver}'s
22817environment:
22818
22819@smallexample
22820$ gdbserver --wrapper env LD_PRELOAD=libtest.so -- :2222 ./testprog
22821@end smallexample
22822
6d580b63
YQ
22823@cindex @option{--selftest}
22824The @option{--selftest} option runs the self tests in @code{gdbserver}:
22825
22826@smallexample
22827$ gdbserver --selftest
22828Ran 2 unit tests, 0 failed
22829@end smallexample
22830
22831These tests are disabled in release.
2d717e4f
DJ
22832@subsection Connecting to @code{gdbserver}
22833
19d9d4ef
DB
22834The basic procedure for connecting to the remote target is:
22835@itemize
2d717e4f 22836
19d9d4ef
DB
22837@item
22838Run @value{GDBN} on the host system.
f822c95b 22839
19d9d4ef
DB
22840@item
22841Make sure you have the necessary symbol files
22842(@pxref{Host and target files}).
22843Load symbols for your application using the @code{file} command before you
22844connect. Use @code{set sysroot} to locate target libraries (unless your
22845@value{GDBN} was compiled with the correct sysroot using
22846@code{--with-sysroot}).
f822c95b 22847
19d9d4ef 22848@item
79a6e687 22849Connect to your target (@pxref{Connecting,,Connecting to a Remote Target}).
6f05cf9f 22850For TCP connections, you must start up @code{gdbserver} prior to using
19d9d4ef 22851the @code{target} command. Otherwise you may get an error whose
6f05cf9f 22852text depends on the host system, but which usually looks something like
2d717e4f 22853@samp{Connection refused}. Don't use the @code{load}
19d9d4ef
DB
22854command in @value{GDBN} when using @code{target remote} mode, since the
22855program is already on the target.
22856
22857@end itemize
07f31aa6 22858
19d9d4ef 22859@anchor{Monitor Commands for gdbserver}
79a6e687 22860@subsection Monitor Commands for @code{gdbserver}
c74d0ad8
DJ
22861@cindex monitor commands, for @code{gdbserver}
22862
22863During a @value{GDBN} session using @code{gdbserver}, you can use the
22864@code{monitor} command to send special requests to @code{gdbserver}.
2d717e4f 22865Here are the available commands.
c74d0ad8
DJ
22866
22867@table @code
22868@item monitor help
22869List the available monitor commands.
22870
22871@item monitor set debug 0
22872@itemx monitor set debug 1
22873Disable or enable general debugging messages.
22874
22875@item monitor set remote-debug 0
22876@itemx monitor set remote-debug 1
22877Disable or enable specific debugging messages associated with the remote
22878protocol (@pxref{Remote Protocol}).
22879
aeb2e706
AH
22880@item monitor set debug-file filename
22881@itemx monitor set debug-file
22882Send any debug output to the given file, or to stderr.
22883
87ce2a04
DE
22884@item monitor set debug-format option1@r{[},option2,...@r{]}
22885Specify additional text to add to debugging messages.
22886Possible options are:
22887
22888@table @code
22889@item none
22890Turn off all extra information in debugging output.
22891@item all
22892Turn on all extra information in debugging output.
22893@item timestamps
22894Include a timestamp in each line of debugging output.
22895@end table
22896
22897Options are processed in order. Thus, for example, if @option{none}
22898appears last then no additional information is added to debugging output.
22899
cdbfd419
PP
22900@item monitor set libthread-db-search-path [PATH]
22901@cindex gdbserver, search path for @code{libthread_db}
22902When this command is issued, @var{path} is a colon-separated list of
22903directories to search for @code{libthread_db} (@pxref{Threads,,set
22904libthread-db-search-path}). If you omit @var{path},
84e578fb 22905@samp{libthread-db-search-path} will be reset to its default value.
cdbfd419 22906
98a5dd13
DE
22907The special entry @samp{$pdir} for @samp{libthread-db-search-path} is
22908not supported in @code{gdbserver}.
22909
2d717e4f
DJ
22910@item monitor exit
22911Tell gdbserver to exit immediately. This command should be followed by
22912@code{disconnect} to close the debugging session. @code{gdbserver} will
22913detach from any attached processes and kill any processes it created.
22914Use @code{monitor exit} to terminate @code{gdbserver} at the end
22915of a multi-process mode debug session.
22916
c74d0ad8
DJ
22917@end table
22918
fa593d66
PA
22919@subsection Tracepoints support in @code{gdbserver}
22920@cindex tracepoints support in @code{gdbserver}
22921
0fb4aa4b
PA
22922On some targets, @code{gdbserver} supports tracepoints, fast
22923tracepoints and static tracepoints.
fa593d66 22924
0fb4aa4b 22925For fast or static tracepoints to work, a special library called the
fa593d66
PA
22926@dfn{in-process agent} (IPA), must be loaded in the inferior process.
22927This library is built and distributed as an integral part of
0fb4aa4b
PA
22928@code{gdbserver}. In addition, support for static tracepoints
22929requires building the in-process agent library with static tracepoints
22930support. At present, the UST (LTTng Userspace Tracer,
22931@url{http://lttng.org/ust}) tracing engine is supported. This support
22932is automatically available if UST development headers are found in the
22933standard include path when @code{gdbserver} is built, or if
22934@code{gdbserver} was explicitly configured using @option{--with-ust}
22935to point at such headers. You can explicitly disable the support
22936using @option{--with-ust=no}.
fa593d66
PA
22937
22938There are several ways to load the in-process agent in your program:
22939
22940@table @code
22941@item Specifying it as dependency at link time
22942
22943You can link your program dynamically with the in-process agent
22944library. On most systems, this is accomplished by adding
22945@code{-linproctrace} to the link command.
22946
22947@item Using the system's preloading mechanisms
22948
22949You can force loading the in-process agent at startup time by using
22950your system's support for preloading shared libraries. Many Unixes
22951support the concept of preloading user defined libraries. In most
22952cases, you do that by specifying @code{LD_PRELOAD=libinproctrace.so}
22953in the environment. See also the description of @code{gdbserver}'s
22954@option{--wrapper} command line option.
22955
22956@item Using @value{GDBN} to force loading the agent at run time
22957
22958On some systems, you can force the inferior to load a shared library,
22959by calling a dynamic loader function in the inferior that takes care
22960of dynamically looking up and loading a shared library. On most Unix
22961systems, the function is @code{dlopen}. You'll use the @code{call}
22962command for that. For example:
22963
22964@smallexample
22965(@value{GDBP}) call dlopen ("libinproctrace.so", ...)
22966@end smallexample
22967
22968Note that on most Unix systems, for the @code{dlopen} function to be
22969available, the program needs to be linked with @code{-ldl}.
22970@end table
22971
22972On systems that have a userspace dynamic loader, like most Unix
22973systems, when you connect to @code{gdbserver} using @code{target
22974remote}, you'll find that the program is stopped at the dynamic
22975loader's entry point, and no shared library has been loaded in the
22976program's address space yet, including the in-process agent. In that
0fb4aa4b
PA
22977case, before being able to use any of the fast or static tracepoints
22978features, you need to let the loader run and load the shared
22979libraries. The simplest way to do that is to run the program to the
22980main procedure. E.g., if debugging a C or C@t{++} program, start
fa593d66
PA
22981@code{gdbserver} like so:
22982
22983@smallexample
22984$ gdbserver :9999 myprogram
22985@end smallexample
22986
22987Start GDB and connect to @code{gdbserver} like so, and run to main:
22988
22989@smallexample
22990$ gdb myprogram
22991(@value{GDBP}) target remote myhost:9999
229920x00007f215893ba60 in ?? () from /lib64/ld-linux-x86-64.so.2
22993(@value{GDBP}) b main
22994(@value{GDBP}) continue
22995@end smallexample
22996
22997The in-process tracing agent library should now be loaded into the
22998process; you can confirm it with the @code{info sharedlibrary}
22999command, which will list @file{libinproctrace.so} as loaded in the
0fb4aa4b
PA
23000process. You are now ready to install fast tracepoints, list static
23001tracepoint markers, probe static tracepoints markers, and start
fa593d66
PA
23002tracing.
23003
79a6e687
BW
23004@node Remote Configuration
23005@section Remote Configuration
501eef12 23006
9c16f35a
EZ
23007@kindex set remote
23008@kindex show remote
23009This section documents the configuration options available when
23010debugging remote programs. For the options related to the File I/O
fc320d37 23011extensions of the remote protocol, see @ref{system,
9c16f35a 23012system-call-allowed}.
501eef12
AC
23013
23014@table @code
9c16f35a 23015@item set remoteaddresssize @var{bits}
d3e8051b 23016@cindex address size for remote targets
9c16f35a
EZ
23017@cindex bits in remote address
23018Set the maximum size of address in a memory packet to the specified
23019number of bits. @value{GDBN} will mask off the address bits above
23020that number, when it passes addresses to the remote target. The
23021default value is the number of bits in the target's address.
23022
23023@item show remoteaddresssize
23024Show the current value of remote address size in bits.
23025
0d12017b 23026@item set serial baud @var{n}
9c16f35a
EZ
23027@cindex baud rate for remote targets
23028Set the baud rate for the remote serial I/O to @var{n} baud. The
23029value is used to set the speed of the serial port used for debugging
23030remote targets.
23031
0d12017b 23032@item show serial baud
9c16f35a
EZ
23033Show the current speed of the remote connection.
23034
236af5e3
YG
23035@item set serial parity @var{parity}
23036Set the parity for the remote serial I/O. Supported values of @var{parity} are:
23037@code{even}, @code{none}, and @code{odd}. The default is @code{none}.
23038
23039@item show serial parity
23040Show the current parity of the serial port.
23041
9c16f35a
EZ
23042@item set remotebreak
23043@cindex interrupt remote programs
23044@cindex BREAK signal instead of Ctrl-C
9a6253be 23045@anchor{set remotebreak}
9c16f35a 23046If set to on, @value{GDBN} sends a @code{BREAK} signal to the remote
c8aa23ab 23047when you type @kbd{Ctrl-c} to interrupt the program running
9a7a1b36 23048on the remote. If set to off, @value{GDBN} sends the @samp{Ctrl-C}
9c16f35a
EZ
23049character instead. The default is off, since most remote systems
23050expect to see @samp{Ctrl-C} as the interrupt signal.
23051
23052@item show remotebreak
23053Show whether @value{GDBN} sends @code{BREAK} or @samp{Ctrl-C} to
23054interrupt the remote program.
23055
23776285
MR
23056@item set remoteflow on
23057@itemx set remoteflow off
23058@kindex set remoteflow
23059Enable or disable hardware flow control (@code{RTS}/@code{CTS})
23060on the serial port used to communicate to the remote target.
23061
23062@item show remoteflow
23063@kindex show remoteflow
23064Show the current setting of hardware flow control.
23065
9c16f35a
EZ
23066@item set remotelogbase @var{base}
23067Set the base (a.k.a.@: radix) of logging serial protocol
23068communications to @var{base}. Supported values of @var{base} are:
23069@code{ascii}, @code{octal}, and @code{hex}. The default is
23070@code{ascii}.
23071
23072@item show remotelogbase
23073Show the current setting of the radix for logging remote serial
23074protocol.
23075
23076@item set remotelogfile @var{file}
23077@cindex record serial communications on file
23078Record remote serial communications on the named @var{file}. The
23079default is not to record at all.
23080
2d8b6830 23081@item show remotelogfile
9c16f35a
EZ
23082Show the current setting of the file name on which to record the
23083serial communications.
23084
23085@item set remotetimeout @var{num}
23086@cindex timeout for serial communications
23087@cindex remote timeout
23088Set the timeout limit to wait for the remote target to respond to
23089@var{num} seconds. The default is 2 seconds.
23090
23091@item show remotetimeout
23092Show the current number of seconds to wait for the remote target
23093responses.
23094
23095@cindex limit hardware breakpoints and watchpoints
23096@cindex remote target, limit break- and watchpoints
501eef12
AC
23097@anchor{set remote hardware-watchpoint-limit}
23098@anchor{set remote hardware-breakpoint-limit}
23099@item set remote hardware-watchpoint-limit @var{limit}
23100@itemx set remote hardware-breakpoint-limit @var{limit}
055303e2
AB
23101Restrict @value{GDBN} to using @var{limit} remote hardware watchpoints
23102or breakpoints. The @var{limit} can be set to 0 to disable hardware
23103watchpoints or breakpoints, and @code{unlimited} for unlimited
23104watchpoints or breakpoints.
23105
23106@item show remote hardware-watchpoint-limit
23107@itemx show remote hardware-breakpoint-limit
23108Show the current limit for the number of hardware watchpoints or
23109breakpoints that @value{GDBN} can use.
2d717e4f 23110
480a3f21
PW
23111@cindex limit hardware watchpoints length
23112@cindex remote target, limit watchpoints length
23113@anchor{set remote hardware-watchpoint-length-limit}
23114@item set remote hardware-watchpoint-length-limit @var{limit}
055303e2
AB
23115Restrict @value{GDBN} to using @var{limit} bytes for the maximum
23116length of a remote hardware watchpoint. A @var{limit} of 0 disables
23117hardware watchpoints and @code{unlimited} allows watchpoints of any
23118length.
480a3f21
PW
23119
23120@item show remote hardware-watchpoint-length-limit
23121Show the current limit (in bytes) of the maximum length of
23122a remote hardware watchpoint.
23123
2d717e4f
DJ
23124@item set remote exec-file @var{filename}
23125@itemx show remote exec-file
23126@anchor{set remote exec-file}
23127@cindex executable file, for remote target
23128Select the file used for @code{run} with @code{target
23129extended-remote}. This should be set to a filename valid on the
23130target system. If it is not set, the target will use a default
23131filename (e.g.@: the last program run).
84603566 23132
9a7071a8
JB
23133@item set remote interrupt-sequence
23134@cindex interrupt remote programs
23135@cindex select Ctrl-C, BREAK or BREAK-g
23136Allow the user to select one of @samp{Ctrl-C}, a @code{BREAK} or
23137@samp{BREAK-g} as the
23138sequence to the remote target in order to interrupt the execution.
23139@samp{Ctrl-C} is a default. Some system prefers @code{BREAK} which
23140is high level of serial line for some certain time.
23141Linux kernel prefers @samp{BREAK-g}, a.k.a Magic SysRq g.
23142It is @code{BREAK} signal followed by character @code{g}.
23143
22e6d16f 23144@item show remote interrupt-sequence
9a7071a8
JB
23145Show which of @samp{Ctrl-C}, @code{BREAK} or @code{BREAK-g}
23146is sent by @value{GDBN} to interrupt the remote program.
23147@code{BREAK-g} is BREAK signal followed by @code{g} and
23148also known as Magic SysRq g.
23149
23150@item set remote interrupt-on-connect
23151@cindex send interrupt-sequence on start
23152Specify whether interrupt-sequence is sent to remote target when
23153@value{GDBN} connects to it. This is mostly needed when you debug
23154Linux kernel. Linux kernel expects @code{BREAK} followed by @code{g}
23155which is known as Magic SysRq g in order to connect @value{GDBN}.
23156
22e6d16f 23157@item show remote interrupt-on-connect
9a7071a8
JB
23158Show whether interrupt-sequence is sent
23159to remote target when @value{GDBN} connects to it.
23160
84603566
SL
23161@kindex set tcp
23162@kindex show tcp
23163@item set tcp auto-retry on
23164@cindex auto-retry, for remote TCP target
23165Enable auto-retry for remote TCP connections. This is useful if the remote
23166debugging agent is launched in parallel with @value{GDBN}; there is a race
23167condition because the agent may not become ready to accept the connection
23168before @value{GDBN} attempts to connect. When auto-retry is
23169enabled, if the initial attempt to connect fails, @value{GDBN} reattempts
23170to establish the connection using the timeout specified by
23171@code{set tcp connect-timeout}.
23172
23173@item set tcp auto-retry off
23174Do not auto-retry failed TCP connections.
23175
23176@item show tcp auto-retry
23177Show the current auto-retry setting.
23178
23179@item set tcp connect-timeout @var{seconds}
f81d1120 23180@itemx set tcp connect-timeout unlimited
84603566
SL
23181@cindex connection timeout, for remote TCP target
23182@cindex timeout, for remote target connection
23183Set the timeout for establishing a TCP connection to the remote target to
23184@var{seconds}. The timeout affects both polling to retry failed connections
23185(enabled by @code{set tcp auto-retry on}) and waiting for connections
23186that are merely slow to complete, and represents an approximate cumulative
f81d1120
PA
23187value. If @var{seconds} is @code{unlimited}, there is no timeout and
23188@value{GDBN} will keep attempting to establish a connection forever,
23189unless interrupted with @kbd{Ctrl-c}. The default is 15 seconds.
84603566
SL
23190
23191@item show tcp connect-timeout
23192Show the current connection timeout setting.
501eef12
AC
23193@end table
23194
427c3a89
DJ
23195@cindex remote packets, enabling and disabling
23196The @value{GDBN} remote protocol autodetects the packets supported by
23197your debugging stub. If you need to override the autodetection, you
23198can use these commands to enable or disable individual packets. Each
23199packet can be set to @samp{on} (the remote target supports this
23200packet), @samp{off} (the remote target does not support this packet),
23201or @samp{auto} (detect remote target support for this packet). They
23202all default to @samp{auto}. For more information about each packet,
23203see @ref{Remote Protocol}.
23204
23205During normal use, you should not have to use any of these commands.
23206If you do, that may be a bug in your remote debugging stub, or a bug
23207in @value{GDBN}. You may want to report the problem to the
23208@value{GDBN} developers.
23209
cfa9d6d9
DJ
23210For each packet @var{name}, the command to enable or disable the
23211packet is @code{set remote @var{name}-packet}. The available settings
23212are:
427c3a89 23213
cfa9d6d9 23214@multitable @columnfractions 0.28 0.32 0.25
427c3a89
DJ
23215@item Command Name
23216@tab Remote Packet
23217@tab Related Features
23218
cfa9d6d9 23219@item @code{fetch-register}
427c3a89
DJ
23220@tab @code{p}
23221@tab @code{info registers}
23222
cfa9d6d9 23223@item @code{set-register}
427c3a89
DJ
23224@tab @code{P}
23225@tab @code{set}
23226
cfa9d6d9 23227@item @code{binary-download}
427c3a89
DJ
23228@tab @code{X}
23229@tab @code{load}, @code{set}
23230
cfa9d6d9 23231@item @code{read-aux-vector}
427c3a89
DJ
23232@tab @code{qXfer:auxv:read}
23233@tab @code{info auxv}
23234
cfa9d6d9 23235@item @code{symbol-lookup}
427c3a89
DJ
23236@tab @code{qSymbol}
23237@tab Detecting multiple threads
23238
2d717e4f
DJ
23239@item @code{attach}
23240@tab @code{vAttach}
23241@tab @code{attach}
23242
cfa9d6d9 23243@item @code{verbose-resume}
427c3a89
DJ
23244@tab @code{vCont}
23245@tab Stepping or resuming multiple threads
23246
2d717e4f
DJ
23247@item @code{run}
23248@tab @code{vRun}
23249@tab @code{run}
23250
cfa9d6d9 23251@item @code{software-breakpoint}
427c3a89
DJ
23252@tab @code{Z0}
23253@tab @code{break}
23254
cfa9d6d9 23255@item @code{hardware-breakpoint}
427c3a89
DJ
23256@tab @code{Z1}
23257@tab @code{hbreak}
23258
cfa9d6d9 23259@item @code{write-watchpoint}
427c3a89
DJ
23260@tab @code{Z2}
23261@tab @code{watch}
23262
cfa9d6d9 23263@item @code{read-watchpoint}
427c3a89
DJ
23264@tab @code{Z3}
23265@tab @code{rwatch}
23266
cfa9d6d9 23267@item @code{access-watchpoint}
427c3a89
DJ
23268@tab @code{Z4}
23269@tab @code{awatch}
23270
c78fa86a
GB
23271@item @code{pid-to-exec-file}
23272@tab @code{qXfer:exec-file:read}
23273@tab @code{attach}, @code{run}
23274
cfa9d6d9
DJ
23275@item @code{target-features}
23276@tab @code{qXfer:features:read}
23277@tab @code{set architecture}
23278
23279@item @code{library-info}
23280@tab @code{qXfer:libraries:read}
23281@tab @code{info sharedlibrary}
23282
23283@item @code{memory-map}
23284@tab @code{qXfer:memory-map:read}
23285@tab @code{info mem}
23286
0fb4aa4b
PA
23287@item @code{read-sdata-object}
23288@tab @code{qXfer:sdata:read}
23289@tab @code{print $_sdata}
23290
4aa995e1
PA
23291@item @code{read-siginfo-object}
23292@tab @code{qXfer:siginfo:read}
23293@tab @code{print $_siginfo}
23294
23295@item @code{write-siginfo-object}
23296@tab @code{qXfer:siginfo:write}
23297@tab @code{set $_siginfo}
23298
dc146f7c
VP
23299@item @code{threads}
23300@tab @code{qXfer:threads:read}
23301@tab @code{info threads}
23302
cfa9d6d9 23303@item @code{get-thread-local-@*storage-address}
427c3a89
DJ
23304@tab @code{qGetTLSAddr}
23305@tab Displaying @code{__thread} variables
23306
711e434b
PM
23307@item @code{get-thread-information-block-address}
23308@tab @code{qGetTIBAddr}
23309@tab Display MS-Windows Thread Information Block.
23310
08388c79
DE
23311@item @code{search-memory}
23312@tab @code{qSearch:memory}
23313@tab @code{find}
23314
427c3a89
DJ
23315@item @code{supported-packets}
23316@tab @code{qSupported}
23317@tab Remote communications parameters
23318
82075af2
JS
23319@item @code{catch-syscalls}
23320@tab @code{QCatchSyscalls}
23321@tab @code{catch syscall}
23322
cfa9d6d9 23323@item @code{pass-signals}
89be2091
DJ
23324@tab @code{QPassSignals}
23325@tab @code{handle @var{signal}}
23326
9b224c5e
PA
23327@item @code{program-signals}
23328@tab @code{QProgramSignals}
23329@tab @code{handle @var{signal}}
23330
a6b151f1
DJ
23331@item @code{hostio-close-packet}
23332@tab @code{vFile:close}
23333@tab @code{remote get}, @code{remote put}
23334
23335@item @code{hostio-open-packet}
23336@tab @code{vFile:open}
23337@tab @code{remote get}, @code{remote put}
23338
23339@item @code{hostio-pread-packet}
23340@tab @code{vFile:pread}
23341@tab @code{remote get}, @code{remote put}
23342
23343@item @code{hostio-pwrite-packet}
23344@tab @code{vFile:pwrite}
23345@tab @code{remote get}, @code{remote put}
23346
23347@item @code{hostio-unlink-packet}
23348@tab @code{vFile:unlink}
23349@tab @code{remote delete}
a6f3e723 23350
b9e7b9c3
UW
23351@item @code{hostio-readlink-packet}
23352@tab @code{vFile:readlink}
23353@tab Host I/O
23354
0a93529c
GB
23355@item @code{hostio-fstat-packet}
23356@tab @code{vFile:fstat}
23357@tab Host I/O
23358
15a201c8
GB
23359@item @code{hostio-setfs-packet}
23360@tab @code{vFile:setfs}
23361@tab Host I/O
23362
a6f3e723
SL
23363@item @code{noack-packet}
23364@tab @code{QStartNoAckMode}
23365@tab Packet acknowledgment
07e059b5
VP
23366
23367@item @code{osdata}
23368@tab @code{qXfer:osdata:read}
23369@tab @code{info os}
0b16c5cf
PA
23370
23371@item @code{query-attached}
23372@tab @code{qAttached}
23373@tab Querying remote process attach state.
b3b9301e 23374
a46c1e42
PA
23375@item @code{trace-buffer-size}
23376@tab @code{QTBuffer:size}
23377@tab @code{set trace-buffer-size}
23378
bd3eecc3
PA
23379@item @code{trace-status}
23380@tab @code{qTStatus}
23381@tab @code{tstatus}
23382
b3b9301e
PA
23383@item @code{traceframe-info}
23384@tab @code{qXfer:traceframe-info:read}
23385@tab Traceframe info
03583c20 23386
1e4d1764
YQ
23387@item @code{install-in-trace}
23388@tab @code{InstallInTrace}
23389@tab Install tracepoint in tracing
23390
03583c20
UW
23391@item @code{disable-randomization}
23392@tab @code{QDisableRandomization}
23393@tab @code{set disable-randomization}
83364271 23394
aefd8b33
SDJ
23395@item @code{startup-with-shell}
23396@tab @code{QStartupWithShell}
23397@tab @code{set startup-with-shell}
23398
0a2dde4a
SDJ
23399@item @code{environment-hex-encoded}
23400@tab @code{QEnvironmentHexEncoded}
23401@tab @code{set environment}
23402
23403@item @code{environment-unset}
23404@tab @code{QEnvironmentUnset}
23405@tab @code{unset environment}
23406
23407@item @code{environment-reset}
23408@tab @code{QEnvironmentReset}
23409@tab @code{Reset the inferior environment (i.e., unset user-set variables)}
23410
bc3b087d
SDJ
23411@item @code{set-working-dir}
23412@tab @code{QSetWorkingDir}
23413@tab @code{set cwd}
23414
83364271
LM
23415@item @code{conditional-breakpoints-packet}
23416@tab @code{Z0 and Z1}
23417@tab @code{Support for target-side breakpoint condition evaluation}
f7e6eed5 23418
73b8c1fd
PA
23419@item @code{multiprocess-extensions}
23420@tab @code{multiprocess extensions}
23421@tab Debug multiple processes and remote process PID awareness
23422
f7e6eed5
PA
23423@item @code{swbreak-feature}
23424@tab @code{swbreak stop reason}
23425@tab @code{break}
23426
23427@item @code{hwbreak-feature}
23428@tab @code{hwbreak stop reason}
23429@tab @code{hbreak}
23430
0d71eef5
DB
23431@item @code{fork-event-feature}
23432@tab @code{fork stop reason}
23433@tab @code{fork}
23434
23435@item @code{vfork-event-feature}
23436@tab @code{vfork stop reason}
23437@tab @code{vfork}
23438
b459a59b
DB
23439@item @code{exec-event-feature}
23440@tab @code{exec stop reason}
23441@tab @code{exec}
23442
65706a29
PA
23443@item @code{thread-events}
23444@tab @code{QThreadEvents}
23445@tab Tracking thread lifetime.
23446
f2faf941
PA
23447@item @code{no-resumed-stop-reply}
23448@tab @code{no resumed thread left stop reply}
23449@tab Tracking thread lifetime.
23450
427c3a89
DJ
23451@end multitable
23452
79a6e687
BW
23453@node Remote Stub
23454@section Implementing a Remote Stub
7a292a7a 23455
8e04817f
AC
23456@cindex debugging stub, example
23457@cindex remote stub, example
23458@cindex stub example, remote debugging
23459The stub files provided with @value{GDBN} implement the target side of the
23460communication protocol, and the @value{GDBN} side is implemented in the
23461@value{GDBN} source file @file{remote.c}. Normally, you can simply allow
23462these subroutines to communicate, and ignore the details. (If you're
23463implementing your own stub file, you can still ignore the details: start
23464with one of the existing stub files. @file{sparc-stub.c} is the best
23465organized, and therefore the easiest to read.)
23466
104c1213
JM
23467@cindex remote serial debugging, overview
23468To debug a program running on another machine (the debugging
23469@dfn{target} machine), you must first arrange for all the usual
23470prerequisites for the program to run by itself. For example, for a C
23471program, you need:
c906108c 23472
104c1213
JM
23473@enumerate
23474@item
23475A startup routine to set up the C runtime environment; these usually
23476have a name like @file{crt0}. The startup routine may be supplied by
23477your hardware supplier, or you may have to write your own.
96baa820 23478
5d161b24 23479@item
d4f3574e 23480A C subroutine library to support your program's
104c1213 23481subroutine calls, notably managing input and output.
96baa820 23482
104c1213
JM
23483@item
23484A way of getting your program to the other machine---for example, a
23485download program. These are often supplied by the hardware
23486manufacturer, but you may have to write your own from hardware
23487documentation.
23488@end enumerate
96baa820 23489
104c1213
JM
23490The next step is to arrange for your program to use a serial port to
23491communicate with the machine where @value{GDBN} is running (the @dfn{host}
23492machine). In general terms, the scheme looks like this:
96baa820 23493
104c1213
JM
23494@table @emph
23495@item On the host,
23496@value{GDBN} already understands how to use this protocol; when everything
23497else is set up, you can simply use the @samp{target remote} command
23498(@pxref{Targets,,Specifying a Debugging Target}).
23499
23500@item On the target,
23501you must link with your program a few special-purpose subroutines that
23502implement the @value{GDBN} remote serial protocol. The file containing these
23503subroutines is called a @dfn{debugging stub}.
23504
23505On certain remote targets, you can use an auxiliary program
23506@code{gdbserver} instead of linking a stub into your program.
79a6e687 23507@xref{Server,,Using the @code{gdbserver} Program}, for details.
104c1213 23508@end table
96baa820 23509
104c1213
JM
23510The debugging stub is specific to the architecture of the remote
23511machine; for example, use @file{sparc-stub.c} to debug programs on
23512@sc{sparc} boards.
96baa820 23513
104c1213
JM
23514@cindex remote serial stub list
23515These working remote stubs are distributed with @value{GDBN}:
96baa820 23516
104c1213
JM
23517@table @code
23518
23519@item i386-stub.c
41afff9a 23520@cindex @file{i386-stub.c}
104c1213
JM
23521@cindex Intel
23522@cindex i386
23523For Intel 386 and compatible architectures.
23524
23525@item m68k-stub.c
41afff9a 23526@cindex @file{m68k-stub.c}
104c1213
JM
23527@cindex Motorola 680x0
23528@cindex m680x0
23529For Motorola 680x0 architectures.
23530
23531@item sh-stub.c
41afff9a 23532@cindex @file{sh-stub.c}
172c2a43 23533@cindex Renesas
104c1213 23534@cindex SH
172c2a43 23535For Renesas SH architectures.
104c1213
JM
23536
23537@item sparc-stub.c
41afff9a 23538@cindex @file{sparc-stub.c}
104c1213
JM
23539@cindex Sparc
23540For @sc{sparc} architectures.
23541
23542@item sparcl-stub.c
41afff9a 23543@cindex @file{sparcl-stub.c}
104c1213
JM
23544@cindex Fujitsu
23545@cindex SparcLite
23546For Fujitsu @sc{sparclite} architectures.
23547
23548@end table
23549
23550The @file{README} file in the @value{GDBN} distribution may list other
23551recently added stubs.
23552
23553@menu
23554* Stub Contents:: What the stub can do for you
23555* Bootstrapping:: What you must do for the stub
23556* Debug Session:: Putting it all together
104c1213
JM
23557@end menu
23558
6d2ebf8b 23559@node Stub Contents
79a6e687 23560@subsection What the Stub Can Do for You
104c1213
JM
23561
23562@cindex remote serial stub
23563The debugging stub for your architecture supplies these three
23564subroutines:
23565
23566@table @code
23567@item set_debug_traps
4644b6e3 23568@findex set_debug_traps
104c1213
JM
23569@cindex remote serial stub, initialization
23570This routine arranges for @code{handle_exception} to run when your
2fb860fc
PA
23571program stops. You must call this subroutine explicitly in your
23572program's startup code.
104c1213
JM
23573
23574@item handle_exception
4644b6e3 23575@findex handle_exception
104c1213
JM
23576@cindex remote serial stub, main routine
23577This is the central workhorse, but your program never calls it
23578explicitly---the setup code arranges for @code{handle_exception} to
23579run when a trap is triggered.
23580
23581@code{handle_exception} takes control when your program stops during
23582execution (for example, on a breakpoint), and mediates communications
23583with @value{GDBN} on the host machine. This is where the communications
23584protocol is implemented; @code{handle_exception} acts as the @value{GDBN}
d4f3574e 23585representative on the target machine. It begins by sending summary
104c1213
JM
23586information on the state of your program, then continues to execute,
23587retrieving and transmitting any information @value{GDBN} needs, until you
23588execute a @value{GDBN} command that makes your program resume; at that point,
23589@code{handle_exception} returns control to your own code on the target
5d161b24 23590machine.
104c1213
JM
23591
23592@item breakpoint
23593@cindex @code{breakpoint} subroutine, remote
23594Use this auxiliary subroutine to make your program contain a
23595breakpoint. Depending on the particular situation, this may be the only
23596way for @value{GDBN} to get control. For instance, if your target
23597machine has some sort of interrupt button, you won't need to call this;
23598pressing the interrupt button transfers control to
23599@code{handle_exception}---in effect, to @value{GDBN}. On some machines,
23600simply receiving characters on the serial port may also trigger a trap;
23601again, in that situation, you don't need to call @code{breakpoint} from
23602your own program---simply running @samp{target remote} from the host
5d161b24 23603@value{GDBN} session gets control.
104c1213
JM
23604
23605Call @code{breakpoint} if none of these is true, or if you simply want
23606to make certain your program stops at a predetermined point for the
23607start of your debugging session.
23608@end table
23609
6d2ebf8b 23610@node Bootstrapping
79a6e687 23611@subsection What You Must Do for the Stub
104c1213
JM
23612
23613@cindex remote stub, support routines
23614The debugging stubs that come with @value{GDBN} are set up for a particular
23615chip architecture, but they have no information about the rest of your
23616debugging target machine.
23617
23618First of all you need to tell the stub how to communicate with the
23619serial port.
23620
23621@table @code
23622@item int getDebugChar()
4644b6e3 23623@findex getDebugChar
104c1213
JM
23624Write this subroutine to read a single character from the serial port.
23625It may be identical to @code{getchar} for your target system; a
23626different name is used to allow you to distinguish the two if you wish.
23627
23628@item void putDebugChar(int)
4644b6e3 23629@findex putDebugChar
104c1213 23630Write this subroutine to write a single character to the serial port.
5d161b24 23631It may be identical to @code{putchar} for your target system; a
104c1213
JM
23632different name is used to allow you to distinguish the two if you wish.
23633@end table
23634
23635@cindex control C, and remote debugging
23636@cindex interrupting remote targets
23637If you want @value{GDBN} to be able to stop your program while it is
23638running, you need to use an interrupt-driven serial driver, and arrange
23639for it to stop when it receives a @code{^C} (@samp{\003}, the control-C
23640character). That is the character which @value{GDBN} uses to tell the
23641remote system to stop.
23642
23643Getting the debugging target to return the proper status to @value{GDBN}
23644probably requires changes to the standard stub; one quick and dirty way
23645is to just execute a breakpoint instruction (the ``dirty'' part is that
23646@value{GDBN} reports a @code{SIGTRAP} instead of a @code{SIGINT}).
23647
23648Other routines you need to supply are:
23649
23650@table @code
23651@item void exceptionHandler (int @var{exception_number}, void *@var{exception_address})
4644b6e3 23652@findex exceptionHandler
104c1213
JM
23653Write this function to install @var{exception_address} in the exception
23654handling tables. You need to do this because the stub does not have any
23655way of knowing what the exception handling tables on your target system
23656are like (for example, the processor's table might be in @sc{rom},
23657containing entries which point to a table in @sc{ram}).
697aa1b7 23658The @var{exception_number} specifies the exception which should be changed;
104c1213
JM
23659its meaning is architecture-dependent (for example, different numbers
23660might represent divide by zero, misaligned access, etc). When this
23661exception occurs, control should be transferred directly to
23662@var{exception_address}, and the processor state (stack, registers,
23663and so on) should be just as it is when a processor exception occurs. So if
23664you want to use a jump instruction to reach @var{exception_address}, it
23665should be a simple jump, not a jump to subroutine.
23666
23667For the 386, @var{exception_address} should be installed as an interrupt
23668gate so that interrupts are masked while the handler runs. The gate
23669should be at privilege level 0 (the most privileged level). The
23670@sc{sparc} and 68k stubs are able to mask interrupts themselves without
23671help from @code{exceptionHandler}.
23672
23673@item void flush_i_cache()
4644b6e3 23674@findex flush_i_cache
d4f3574e 23675On @sc{sparc} and @sc{sparclite} only, write this subroutine to flush the
104c1213
JM
23676instruction cache, if any, on your target machine. If there is no
23677instruction cache, this subroutine may be a no-op.
23678
23679On target machines that have instruction caches, @value{GDBN} requires this
23680function to make certain that the state of your program is stable.
23681@end table
23682
23683@noindent
23684You must also make sure this library routine is available:
23685
23686@table @code
23687@item void *memset(void *, int, int)
4644b6e3 23688@findex memset
104c1213
JM
23689This is the standard library function @code{memset} that sets an area of
23690memory to a known value. If you have one of the free versions of
23691@code{libc.a}, @code{memset} can be found there; otherwise, you must
23692either obtain it from your hardware manufacturer, or write your own.
23693@end table
23694
23695If you do not use the GNU C compiler, you may need other standard
23696library subroutines as well; this varies from one stub to another,
23697but in general the stubs are likely to use any of the common library
e22ea452 23698subroutines which @code{@value{NGCC}} generates as inline code.
104c1213
JM
23699
23700
6d2ebf8b 23701@node Debug Session
79a6e687 23702@subsection Putting it All Together
104c1213
JM
23703
23704@cindex remote serial debugging summary
23705In summary, when your program is ready to debug, you must follow these
23706steps.
23707
23708@enumerate
23709@item
6d2ebf8b 23710Make sure you have defined the supporting low-level routines
79a6e687 23711(@pxref{Bootstrapping,,What You Must Do for the Stub}):
104c1213
JM
23712@display
23713@code{getDebugChar}, @code{putDebugChar},
23714@code{flush_i_cache}, @code{memset}, @code{exceptionHandler}.
23715@end display
23716
23717@item
2fb860fc
PA
23718Insert these lines in your program's startup code, before the main
23719procedure is called:
104c1213 23720
474c8240 23721@smallexample
104c1213
JM
23722set_debug_traps();
23723breakpoint();
474c8240 23724@end smallexample
104c1213 23725
2fb860fc
PA
23726On some machines, when a breakpoint trap is raised, the hardware
23727automatically makes the PC point to the instruction after the
23728breakpoint. If your machine doesn't do that, you may need to adjust
23729@code{handle_exception} to arrange for it to return to the instruction
23730after the breakpoint on this first invocation, so that your program
23731doesn't keep hitting the initial breakpoint instead of making
23732progress.
23733
104c1213
JM
23734@item
23735For the 680x0 stub only, you need to provide a variable called
23736@code{exceptionHook}. Normally you just use:
23737
474c8240 23738@smallexample
104c1213 23739void (*exceptionHook)() = 0;
474c8240 23740@end smallexample
104c1213 23741
d4f3574e 23742@noindent
104c1213 23743but if before calling @code{set_debug_traps}, you set it to point to a
598ca718 23744function in your program, that function is called when
104c1213
JM
23745@code{@value{GDBN}} continues after stopping on a trap (for example, bus
23746error). The function indicated by @code{exceptionHook} is called with
23747one parameter: an @code{int} which is the exception number.
23748
23749@item
23750Compile and link together: your program, the @value{GDBN} debugging stub for
23751your target architecture, and the supporting subroutines.
23752
23753@item
23754Make sure you have a serial connection between your target machine and
23755the @value{GDBN} host, and identify the serial port on the host.
23756
23757@item
23758@c The "remote" target now provides a `load' command, so we should
23759@c document that. FIXME.
23760Download your program to your target machine (or get it there by
23761whatever means the manufacturer provides), and start it.
23762
23763@item
07f31aa6 23764Start @value{GDBN} on the host, and connect to the target
79a6e687 23765(@pxref{Connecting,,Connecting to a Remote Target}).
9db8d71f 23766
104c1213
JM
23767@end enumerate
23768
8e04817f
AC
23769@node Configurations
23770@chapter Configuration-Specific Information
104c1213 23771
8e04817f
AC
23772While nearly all @value{GDBN} commands are available for all native and
23773cross versions of the debugger, there are some exceptions. This chapter
23774describes things that are only available in certain configurations.
104c1213 23775
8e04817f
AC
23776There are three major categories of configurations: native
23777configurations, where the host and target are the same, embedded
23778operating system configurations, which are usually the same for several
23779different processor architectures, and bare embedded processors, which
23780are quite different from each other.
104c1213 23781
8e04817f
AC
23782@menu
23783* Native::
23784* Embedded OS::
23785* Embedded Processors::
23786* Architectures::
23787@end menu
104c1213 23788
8e04817f
AC
23789@node Native
23790@section Native
104c1213 23791
8e04817f
AC
23792This section describes details specific to particular native
23793configurations.
6cf7e474 23794
8e04817f 23795@menu
7561d450 23796* BSD libkvm Interface:: Debugging BSD kernel memory images
2d97a5d9 23797* Process Information:: Process information
8e04817f 23798* DJGPP Native:: Features specific to the DJGPP port
78c47bea 23799* Cygwin Native:: Features specific to the Cygwin port
14d6dd68 23800* Hurd Native:: Features specific to @sc{gnu} Hurd
a80b95ba 23801* Darwin:: Features specific to Darwin
e9076973 23802* FreeBSD:: Features specific to FreeBSD
8e04817f 23803@end menu
6cf7e474 23804
7561d450
MK
23805@node BSD libkvm Interface
23806@subsection BSD libkvm Interface
23807
23808@cindex libkvm
23809@cindex kernel memory image
23810@cindex kernel crash dump
23811
23812BSD-derived systems (FreeBSD/NetBSD/OpenBSD) have a kernel memory
23813interface that provides a uniform interface for accessing kernel virtual
23814memory images, including live systems and crash dumps. @value{GDBN}
23815uses this interface to allow you to debug live kernels and kernel crash
23816dumps on many native BSD configurations. This is implemented as a
23817special @code{kvm} debugging target. For debugging a live system, load
23818the currently running kernel into @value{GDBN} and connect to the
23819@code{kvm} target:
23820
23821@smallexample
23822(@value{GDBP}) @b{target kvm}
23823@end smallexample
23824
23825For debugging crash dumps, provide the file name of the crash dump as an
23826argument:
23827
23828@smallexample
23829(@value{GDBP}) @b{target kvm /var/crash/bsd.0}
23830@end smallexample
23831
23832Once connected to the @code{kvm} target, the following commands are
23833available:
23834
23835@table @code
23836@kindex kvm
23837@item kvm pcb
721c2651 23838Set current context from the @dfn{Process Control Block} (PCB) address.
7561d450
MK
23839
23840@item kvm proc
23841Set current context from proc address. This command isn't available on
23842modern FreeBSD systems.
23843@end table
23844
2d97a5d9
JB
23845@node Process Information
23846@subsection Process Information
60bf7e09
EZ
23847@cindex /proc
23848@cindex examine process image
23849@cindex process info via @file{/proc}
104c1213 23850
2d97a5d9
JB
23851Some operating systems provide interfaces to fetch additional
23852information about running processes beyond memory and per-thread
23853register state. If @value{GDBN} is configured for an operating system
23854with a supported interface, the command @code{info proc} is available
23855to report information about the process running your program, or about
23856any process running on your system.
451b7c33 23857
2d97a5d9
JB
23858One supported interface is a facility called @samp{/proc} that can be
23859used to examine the image of a running process using file-system
23860subroutines. This facility is supported on @sc{gnu}/Linux and Solaris
23861systems.
451b7c33 23862
aa8509b4
KR
23863On FreeBSD and NetBSD systems, system control nodes are used to query
23864process information.
2d97a5d9
JB
23865
23866In addition, some systems may provide additional process information
23867in core files. Note that a core file may include a subset of the
23868information available from a live process. Process information is
6b92c0d3 23869currently available from cores created on @sc{gnu}/Linux and FreeBSD
2d97a5d9 23870systems.
104c1213 23871
8e04817f
AC
23872@table @code
23873@kindex info proc
60bf7e09 23874@cindex process ID
8e04817f 23875@item info proc
60bf7e09 23876@itemx info proc @var{process-id}
73f1bd76 23877Summarize available information about a process. If a
60bf7e09
EZ
23878process ID is specified by @var{process-id}, display information about
23879that process; otherwise display information about the program being
23880debugged. The summary includes the debugged process ID, the command
23881line used to invoke it, its current working directory, and its
23882executable file's absolute file name.
23883
23884On some systems, @var{process-id} can be of the form
23885@samp{[@var{pid}]/@var{tid}} which specifies a certain thread ID
23886within a process. If the optional @var{pid} part is missing, it means
23887a thread from the process being debugged (the leading @samp{/} still
23888needs to be present, or else @value{GDBN} will interpret the number as
23889a process ID rather than a thread ID).
6cf7e474 23890
0c631110
TT
23891@item info proc cmdline
23892@cindex info proc cmdline
23893Show the original command line of the process. This command is
aa8509b4 23894supported on @sc{gnu}/Linux, FreeBSD and NetBSD.
0c631110
TT
23895
23896@item info proc cwd
23897@cindex info proc cwd
23898Show the current working directory of the process. This command is
aa8509b4 23899supported on @sc{gnu}/Linux, FreeBSD and NetBSD.
0c631110
TT
23900
23901@item info proc exe
23902@cindex info proc exe
2d97a5d9 23903Show the name of executable of the process. This command is supported
aa8509b4 23904on @sc{gnu}/Linux, FreeBSD and NetBSD.
0c631110 23905
8b113111
JB
23906@item info proc files
23907@cindex info proc files
23908Show the file descriptors open by the process. For each open file
23909descriptor, @value{GDBN} shows its number, type (file, directory,
23910character device, socket), file pointer offset, and the name of the
23911resource open on the descriptor. The resource name can be a file name
23912(for files, directories, and devices) or a protocol followed by socket
23913address (for network connections). This command is supported on
23914FreeBSD.
23915
23916This example shows the open file descriptors for a process using a
23917tty for standard input and output as well as two network sockets:
23918
23919@smallexample
23920(gdb) info proc files 22136
23921process 22136
23922Open files:
23923
23924 FD Type Offset Flags Name
23925 text file - r-------- /usr/bin/ssh
23926 ctty chr - rw------- /dev/pts/20
23927 cwd dir - r-------- /usr/home/john
23928 root dir - r-------- /
23929 0 chr 0x32933a4 rw------- /dev/pts/20
23930 1 chr 0x32933a4 rw------- /dev/pts/20
23931 2 chr 0x32933a4 rw------- /dev/pts/20
23932 3 socket 0x0 rw----n-- tcp4 10.0.1.2:53014 -> 10.0.1.10:22
23933 4 socket 0x0 rw------- unix stream:/tmp/ssh-FIt89oAzOn5f/agent.2456
23934@end smallexample
23935
8e04817f 23936@item info proc mappings
60bf7e09 23937@cindex memory address space mappings
73f1bd76 23938Report the memory address space ranges accessible in a process. On
aa8509b4
KR
23939Solaris, FreeBSD and NetBSD systems, each memory range includes information
23940on whether the process has read, write, or execute access rights to each
23941range. On @sc{gnu}/Linux, FreeBSD and NetBSD systems, each memory range
2d97a5d9 23942includes the object file which is mapped to that range.
60bf7e09
EZ
23943
23944@item info proc stat
23945@itemx info proc status
23946@cindex process detailed status information
2d97a5d9
JB
23947Show additional process-related information, including the user ID and
23948group ID; virtual memory usage; the signals that are pending, blocked,
23949and ignored; its TTY; its consumption of system and user time; its
23950stack size; its @samp{nice} value; etc. These commands are supported
aa8509b4 23951on @sc{gnu}/Linux, FreeBSD and NetBSD.
2d97a5d9
JB
23952
23953For @sc{gnu}/Linux systems, see the @samp{proc} man page for more
23954information (type @kbd{man 5 proc} from your shell prompt).
23955
aa8509b4
KR
23956For FreeBSD and NetBSD systems, @code{info proc stat} is an alias for
23957@code{info proc status}.
60bf7e09
EZ
23958
23959@item info proc all
23960Show all the information about the process described under all of the
23961above @code{info proc} subcommands.
23962
8e04817f
AC
23963@ignore
23964@comment These sub-options of 'info proc' were not included when
23965@comment procfs.c was re-written. Keep their descriptions around
23966@comment against the day when someone finds the time to put them back in.
23967@kindex info proc times
23968@item info proc times
23969Starting time, user CPU time, and system CPU time for your program and
23970its children.
6cf7e474 23971
8e04817f
AC
23972@kindex info proc id
23973@item info proc id
23974Report on the process IDs related to your program: its own process ID,
23975the ID of its parent, the process group ID, and the session ID.
8e04817f 23976@end ignore
721c2651
EZ
23977
23978@item set procfs-trace
23979@kindex set procfs-trace
23980@cindex @code{procfs} API calls
23981This command enables and disables tracing of @code{procfs} API calls.
23982
23983@item show procfs-trace
23984@kindex show procfs-trace
23985Show the current state of @code{procfs} API call tracing.
23986
23987@item set procfs-file @var{file}
23988@kindex set procfs-file
23989Tell @value{GDBN} to write @code{procfs} API trace to the named
23990@var{file}. @value{GDBN} appends the trace info to the previous
23991contents of the file. The default is to display the trace on the
23992standard output.
23993
23994@item show procfs-file
23995@kindex show procfs-file
23996Show the file to which @code{procfs} API trace is written.
23997
23998@item proc-trace-entry
23999@itemx proc-trace-exit
24000@itemx proc-untrace-entry
24001@itemx proc-untrace-exit
24002@kindex proc-trace-entry
24003@kindex proc-trace-exit
24004@kindex proc-untrace-entry
24005@kindex proc-untrace-exit
24006These commands enable and disable tracing of entries into and exits
24007from the @code{syscall} interface.
24008
24009@item info pidlist
24010@kindex info pidlist
24011@cindex process list, QNX Neutrino
24012For QNX Neutrino only, this command displays the list of all the
24013processes and all the threads within each process.
24014
24015@item info meminfo
24016@kindex info meminfo
24017@cindex mapinfo list, QNX Neutrino
24018For QNX Neutrino only, this command displays the list of all mapinfos.
8e04817f 24019@end table
104c1213 24020
8e04817f
AC
24021@node DJGPP Native
24022@subsection Features for Debugging @sc{djgpp} Programs
24023@cindex @sc{djgpp} debugging
24024@cindex native @sc{djgpp} debugging
24025@cindex MS-DOS-specific commands
104c1213 24026
514c4d71
EZ
24027@cindex DPMI
24028@sc{djgpp} is a port of the @sc{gnu} development tools to MS-DOS and
8e04817f
AC
24029MS-Windows. @sc{djgpp} programs are 32-bit protected-mode programs
24030that use the @dfn{DPMI} (DOS Protected-Mode Interface) API to run on
24031top of real-mode DOS systems and their emulations.
104c1213 24032
8e04817f
AC
24033@value{GDBN} supports native debugging of @sc{djgpp} programs, and
24034defines a few commands specific to the @sc{djgpp} port. This
24035subsection describes those commands.
104c1213 24036
8e04817f
AC
24037@table @code
24038@kindex info dos
24039@item info dos
24040This is a prefix of @sc{djgpp}-specific commands which print
24041information about the target system and important OS structures.
f1251bdd 24042
8e04817f
AC
24043@kindex sysinfo
24044@cindex MS-DOS system info
24045@cindex free memory information (MS-DOS)
24046@item info dos sysinfo
24047This command displays assorted information about the underlying
24048platform: the CPU type and features, the OS version and flavor, the
24049DPMI version, and the available conventional and DPMI memory.
104c1213 24050
8e04817f
AC
24051@cindex GDT
24052@cindex LDT
24053@cindex IDT
24054@cindex segment descriptor tables
24055@cindex descriptor tables display
24056@item info dos gdt
24057@itemx info dos ldt
24058@itemx info dos idt
24059These 3 commands display entries from, respectively, Global, Local,
24060and Interrupt Descriptor Tables (GDT, LDT, and IDT). The descriptor
24061tables are data structures which store a descriptor for each segment
24062that is currently in use. The segment's selector is an index into a
24063descriptor table; the table entry for that index holds the
24064descriptor's base address and limit, and its attributes and access
24065rights.
104c1213 24066
8e04817f
AC
24067A typical @sc{djgpp} program uses 3 segments: a code segment, a data
24068segment (used for both data and the stack), and a DOS segment (which
24069allows access to DOS/BIOS data structures and absolute addresses in
24070conventional memory). However, the DPMI host will usually define
24071additional segments in order to support the DPMI environment.
d4f3574e 24072
8e04817f
AC
24073@cindex garbled pointers
24074These commands allow to display entries from the descriptor tables.
24075Without an argument, all entries from the specified table are
24076displayed. An argument, which should be an integer expression, means
24077display a single entry whose index is given by the argument. For
24078example, here's a convenient way to display information about the
24079debugged program's data segment:
104c1213 24080
8e04817f
AC
24081@smallexample
24082@exdent @code{(@value{GDBP}) info dos ldt $ds}
24083@exdent @code{0x13f: base=0x11970000 limit=0x0009ffff 32-Bit Data (Read/Write, Exp-up)}
24084@end smallexample
104c1213 24085
8e04817f
AC
24086@noindent
24087This comes in handy when you want to see whether a pointer is outside
24088the data segment's limit (i.e.@: @dfn{garbled}).
104c1213 24089
8e04817f
AC
24090@cindex page tables display (MS-DOS)
24091@item info dos pde
24092@itemx info dos pte
24093These two commands display entries from, respectively, the Page
24094Directory and the Page Tables. Page Directories and Page Tables are
24095data structures which control how virtual memory addresses are mapped
24096into physical addresses. A Page Table includes an entry for every
24097page of memory that is mapped into the program's address space; there
24098may be several Page Tables, each one holding up to 4096 entries. A
24099Page Directory has up to 4096 entries, one each for every Page Table
24100that is currently in use.
104c1213 24101
8e04817f
AC
24102Without an argument, @kbd{info dos pde} displays the entire Page
24103Directory, and @kbd{info dos pte} displays all the entries in all of
24104the Page Tables. An argument, an integer expression, given to the
24105@kbd{info dos pde} command means display only that entry from the Page
24106Directory table. An argument given to the @kbd{info dos pte} command
24107means display entries from a single Page Table, the one pointed to by
24108the specified entry in the Page Directory.
104c1213 24109
8e04817f
AC
24110@cindex direct memory access (DMA) on MS-DOS
24111These commands are useful when your program uses @dfn{DMA} (Direct
24112Memory Access), which needs physical addresses to program the DMA
24113controller.
104c1213 24114
8e04817f 24115These commands are supported only with some DPMI servers.
104c1213 24116
8e04817f
AC
24117@cindex physical address from linear address
24118@item info dos address-pte @var{addr}
24119This command displays the Page Table entry for a specified linear
514c4d71
EZ
24120address. The argument @var{addr} is a linear address which should
24121already have the appropriate segment's base address added to it,
24122because this command accepts addresses which may belong to @emph{any}
24123segment. For example, here's how to display the Page Table entry for
24124the page where a variable @code{i} is stored:
104c1213 24125
b383017d 24126@smallexample
8e04817f
AC
24127@exdent @code{(@value{GDBP}) info dos address-pte __djgpp_base_address + (char *)&i}
24128@exdent @code{Page Table entry for address 0x11a00d30:}
b383017d 24129@exdent @code{Base=0x02698000 Dirty Acc. Not-Cached Write-Back Usr Read-Write +0xd30}
8e04817f 24130@end smallexample
104c1213 24131
8e04817f
AC
24132@noindent
24133This says that @code{i} is stored at offset @code{0xd30} from the page
514c4d71 24134whose physical base address is @code{0x02698000}, and shows all the
8e04817f 24135attributes of that page.
104c1213 24136
8e04817f
AC
24137Note that you must cast the addresses of variables to a @code{char *},
24138since otherwise the value of @code{__djgpp_base_address}, the base
24139address of all variables and functions in a @sc{djgpp} program, will
24140be added using the rules of C pointer arithmetics: if @code{i} is
24141declared an @code{int}, @value{GDBN} will add 4 times the value of
24142@code{__djgpp_base_address} to the address of @code{i}.
104c1213 24143
8e04817f
AC
24144Here's another example, it displays the Page Table entry for the
24145transfer buffer:
104c1213 24146
8e04817f
AC
24147@smallexample
24148@exdent @code{(@value{GDBP}) info dos address-pte *((unsigned *)&_go32_info_block + 3)}
24149@exdent @code{Page Table entry for address 0x29110:}
24150@exdent @code{Base=0x00029000 Dirty Acc. Not-Cached Write-Back Usr Read-Write +0x110}
24151@end smallexample
104c1213 24152
8e04817f
AC
24153@noindent
24154(The @code{+ 3} offset is because the transfer buffer's address is the
514c4d71
EZ
241553rd member of the @code{_go32_info_block} structure.) The output
24156clearly shows that this DPMI server maps the addresses in conventional
24157memory 1:1, i.e.@: the physical (@code{0x00029000} + @code{0x110}) and
24158linear (@code{0x29110}) addresses are identical.
104c1213 24159
8e04817f
AC
24160This command is supported only with some DPMI servers.
24161@end table
104c1213 24162
c45da7e6 24163@cindex DOS serial data link, remote debugging
a8f24a35
EZ
24164In addition to native debugging, the DJGPP port supports remote
24165debugging via a serial data link. The following commands are specific
24166to remote serial debugging in the DJGPP port of @value{GDBN}.
24167
24168@table @code
24169@kindex set com1base
24170@kindex set com1irq
24171@kindex set com2base
24172@kindex set com2irq
24173@kindex set com3base
24174@kindex set com3irq
24175@kindex set com4base
24176@kindex set com4irq
24177@item set com1base @var{addr}
24178This command sets the base I/O port address of the @file{COM1} serial
24179port.
24180
24181@item set com1irq @var{irq}
24182This command sets the @dfn{Interrupt Request} (@code{IRQ}) line to use
24183for the @file{COM1} serial port.
24184
24185There are similar commands @samp{set com2base}, @samp{set com3irq},
24186etc.@: for setting the port address and the @code{IRQ} lines for the
24187other 3 COM ports.
24188
24189@kindex show com1base
24190@kindex show com1irq
24191@kindex show com2base
24192@kindex show com2irq
24193@kindex show com3base
24194@kindex show com3irq
24195@kindex show com4base
24196@kindex show com4irq
24197The related commands @samp{show com1base}, @samp{show com1irq} etc.@:
24198display the current settings of the base address and the @code{IRQ}
24199lines used by the COM ports.
c45da7e6
EZ
24200
24201@item info serial
24202@kindex info serial
24203@cindex DOS serial port status
24204This command prints the status of the 4 DOS serial ports. For each
24205port, it prints whether it's active or not, its I/O base address and
24206IRQ number, whether it uses a 16550-style FIFO, its baudrate, and the
24207counts of various errors encountered so far.
a8f24a35
EZ
24208@end table
24209
24210
78c47bea 24211@node Cygwin Native
79a6e687 24212@subsection Features for Debugging MS Windows PE Executables
78c47bea
PM
24213@cindex MS Windows debugging
24214@cindex native Cygwin debugging
24215@cindex Cygwin-specific commands
24216
be448670 24217@value{GDBN} supports native debugging of MS Windows programs, including
cbb8f428
EZ
24218DLLs with and without symbolic debugging information.
24219
24220@cindex Ctrl-BREAK, MS-Windows
24221@cindex interrupt debuggee on MS-Windows
24222MS-Windows programs that call @code{SetConsoleMode} to switch off the
24223special meaning of the @samp{Ctrl-C} keystroke cannot be interrupted
24224by typing @kbd{C-c}. For this reason, @value{GDBN} on MS-Windows
24225supports @kbd{C-@key{BREAK}} as an alternative interrupt key
24226sequence, which can be used to interrupt the debuggee even if it
24227ignores @kbd{C-c}.
24228
24229There are various additional Cygwin-specific commands, described in
24230this section. Working with DLLs that have no debugging symbols is
24231described in @ref{Non-debug DLL Symbols}.
78c47bea
PM
24232
24233@table @code
24234@kindex info w32
24235@item info w32
db2e3e2e 24236This is a prefix of MS Windows-specific commands which print
78c47bea
PM
24237information about the target system and important OS structures.
24238
24239@item info w32 selector
24240This command displays information returned by
24241the Win32 API @code{GetThreadSelectorEntry} function.
24242It takes an optional argument that is evaluated to
24243a long value to give the information about this given selector.
24244Without argument, this command displays information
d3e8051b 24245about the six segment registers.
78c47bea 24246
711e434b
PM
24247@item info w32 thread-information-block
24248This command displays thread specific information stored in the
24249Thread Information Block (readable on the X86 CPU family using @code{$fs}
24250selector for 32-bit programs and @code{$gs} for 64-bit programs).
24251
463888ab
РИ
24252@kindex signal-event
24253@item signal-event @var{id}
24254This command signals an event with user-provided @var{id}. Used to resume
24255crashing process when attached to it using MS-Windows JIT debugging (AeDebug).
24256
24257To use it, create or edit the following keys in
24258@code{HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\AeDebug} and/or
24259@code{HKLM\SOFTWARE\Wow6432Node\Microsoft\Windows NT\CurrentVersion\AeDebug}
24260(for x86_64 versions):
24261
24262@itemize @minus
24263@item
24264@code{Debugger} (REG_SZ) --- a command to launch the debugger.
24265Suggested command is: @code{@var{fully-qualified-path-to-gdb.exe} -ex
24266"attach %ld" -ex "signal-event %ld" -ex "continue"}.
24267
24268The first @code{%ld} will be replaced by the process ID of the
24269crashing process, the second @code{%ld} will be replaced by the ID of
24270the event that blocks the crashing process, waiting for @value{GDBN}
24271to attach.
24272
24273@item
24274@code{Auto} (REG_SZ) --- either @code{1} or @code{0}. @code{1} will
24275make the system run debugger specified by the Debugger key
24276automatically, @code{0} will cause a dialog box with ``OK'' and
24277``Cancel'' buttons to appear, which allows the user to either
24278terminate the crashing process (OK) or debug it (Cancel).
24279@end itemize
24280
be90c084 24281@kindex set cygwin-exceptions
e16b02ee
EZ
24282@cindex debugging the Cygwin DLL
24283@cindex Cygwin DLL, debugging
be90c084 24284@item set cygwin-exceptions @var{mode}
e16b02ee
EZ
24285If @var{mode} is @code{on}, @value{GDBN} will break on exceptions that
24286happen inside the Cygwin DLL. If @var{mode} is @code{off},
24287@value{GDBN} will delay recognition of exceptions, and may ignore some
24288exceptions which seem to be caused by internal Cygwin DLL
24289``bookkeeping''. This option is meant primarily for debugging the
24290Cygwin DLL itself; the default value is @code{off} to avoid annoying
24291@value{GDBN} users with false @code{SIGSEGV} signals.
be90c084
CF
24292
24293@kindex show cygwin-exceptions
24294@item show cygwin-exceptions
e16b02ee
EZ
24295Displays whether @value{GDBN} will break on exceptions that happen
24296inside the Cygwin DLL itself.
be90c084 24297
b383017d 24298@kindex set new-console
78c47bea 24299@item set new-console @var{mode}
b383017d 24300If @var{mode} is @code{on} the debuggee will
78c47bea 24301be started in a new console on next start.
e03e5e7b 24302If @var{mode} is @code{off}, the debuggee will
78c47bea
PM
24303be started in the same console as the debugger.
24304
24305@kindex show new-console
24306@item show new-console
24307Displays whether a new console is used
24308when the debuggee is started.
24309
24310@kindex set new-group
24311@item set new-group @var{mode}
24312This boolean value controls whether the debuggee should
24313start a new group or stay in the same group as the debugger.
24314This affects the way the Windows OS handles
c8aa23ab 24315@samp{Ctrl-C}.
78c47bea
PM
24316
24317@kindex show new-group
24318@item show new-group
24319Displays current value of new-group boolean.
24320
24321@kindex set debugevents
24322@item set debugevents
219eec71
EZ
24323This boolean value adds debug output concerning kernel events related
24324to the debuggee seen by the debugger. This includes events that
24325signal thread and process creation and exit, DLL loading and
24326unloading, console interrupts, and debugging messages produced by the
24327Windows @code{OutputDebugString} API call.
78c47bea
PM
24328
24329@kindex set debugexec
24330@item set debugexec
b383017d 24331This boolean value adds debug output concerning execute events
219eec71 24332(such as resume thread) seen by the debugger.
78c47bea
PM
24333
24334@kindex set debugexceptions
24335@item set debugexceptions
219eec71
EZ
24336This boolean value adds debug output concerning exceptions in the
24337debuggee seen by the debugger.
78c47bea
PM
24338
24339@kindex set debugmemory
24340@item set debugmemory
219eec71
EZ
24341This boolean value adds debug output concerning debuggee memory reads
24342and writes by the debugger.
78c47bea
PM
24343
24344@kindex set shell
24345@item set shell
24346This boolean values specifies whether the debuggee is called
24347via a shell or directly (default value is on).
24348
24349@kindex show shell
24350@item show shell
24351Displays if the debuggee will be started with a shell.
24352
24353@end table
24354
be448670 24355@menu
79a6e687 24356* Non-debug DLL Symbols:: Support for DLLs without debugging symbols
be448670
CF
24357@end menu
24358
79a6e687
BW
24359@node Non-debug DLL Symbols
24360@subsubsection Support for DLLs without Debugging Symbols
be448670
CF
24361@cindex DLLs with no debugging symbols
24362@cindex Minimal symbols and DLLs
24363
24364Very often on windows, some of the DLLs that your program relies on do
24365not include symbolic debugging information (for example,
db2e3e2e 24366@file{kernel32.dll}). When @value{GDBN} doesn't recognize any debugging
be448670 24367symbols in a DLL, it relies on the minimal amount of symbolic
db2e3e2e 24368information contained in the DLL's export table. This section
be448670
CF
24369describes working with such symbols, known internally to @value{GDBN} as
24370``minimal symbols''.
24371
24372Note that before the debugged program has started execution, no DLLs
db2e3e2e 24373will have been loaded. The easiest way around this problem is simply to
be448670 24374start the program --- either by setting a breakpoint or letting the
95060284 24375program run once to completion.
be448670 24376
79a6e687 24377@subsubsection DLL Name Prefixes
be448670
CF
24378
24379In keeping with the naming conventions used by the Microsoft debugging
24380tools, DLL export symbols are made available with a prefix based on the
24381DLL name, for instance @code{KERNEL32!CreateFileA}. The plain name is
24382also entered into the symbol table, so @code{CreateFileA} is often
99e008fe 24383sufficient. In some cases there will be name clashes within a program
be448670
CF
24384(particularly if the executable itself includes full debugging symbols)
24385necessitating the use of the fully qualified name when referring to the
99e008fe 24386contents of the DLL. Use single-quotes around the name to avoid the
be448670
CF
24387exclamation mark (``!'') being interpreted as a language operator.
24388
24389Note that the internal name of the DLL may be all upper-case, even
99e008fe 24390though the file name of the DLL is lower-case, or vice-versa. Since
be448670
CF
24391symbols within @value{GDBN} are @emph{case-sensitive} this may cause
24392some confusion. If in doubt, try the @code{info functions} and
0869d01b
NR
24393@code{info variables} commands or even @code{maint print msymbols}
24394(@pxref{Symbols}). Here's an example:
be448670
CF
24395
24396@smallexample
f7dc1244 24397(@value{GDBP}) info function CreateFileA
be448670
CF
24398All functions matching regular expression "CreateFileA":
24399
24400Non-debugging symbols:
244010x77e885f4 CreateFileA
244020x77e885f4 KERNEL32!CreateFileA
24403@end smallexample
24404
24405@smallexample
f7dc1244 24406(@value{GDBP}) info function !
be448670
CF
24407All functions matching regular expression "!":
24408
24409Non-debugging symbols:
244100x6100114c cygwin1!__assert
244110x61004034 cygwin1!_dll_crt0@@0
244120x61004240 cygwin1!dll_crt0(per_process *)
24413[etc...]
24414@end smallexample
24415
79a6e687 24416@subsubsection Working with Minimal Symbols
be448670
CF
24417
24418Symbols extracted from a DLL's export table do not contain very much
24419type information. All that @value{GDBN} can do is guess whether a symbol
24420refers to a function or variable depending on the linker section that
24421contains the symbol. Also note that the actual contents of the memory
24422contained in a DLL are not available unless the program is running. This
24423means that you cannot examine the contents of a variable or disassemble
24424a function within a DLL without a running program.
24425
24426Variables are generally treated as pointers and dereferenced
24427automatically. For this reason, it is often necessary to prefix a
24428variable name with the address-of operator (``&'') and provide explicit
24429type information in the command. Here's an example of the type of
24430problem:
24431
24432@smallexample
f7dc1244 24433(@value{GDBP}) print 'cygwin1!__argv'
d69cf9b2 24434'cygwin1!__argv' has unknown type; cast it to its declared type
be448670
CF
24435@end smallexample
24436
24437@smallexample
f7dc1244 24438(@value{GDBP}) x 'cygwin1!__argv'
d69cf9b2 24439'cygwin1!__argv' has unknown type; cast it to its declared type
be448670
CF
24440@end smallexample
24441
24442And two possible solutions:
24443
24444@smallexample
f7dc1244 24445(@value{GDBP}) print ((char **)'cygwin1!__argv')[0]
be448670
CF
24446$2 = 0x22fd98 "/cygdrive/c/mydirectory/myprogram"
24447@end smallexample
24448
24449@smallexample
f7dc1244 24450(@value{GDBP}) x/2x &'cygwin1!__argv'
be448670 244510x610c0aa8 <cygwin1!__argv>: 0x10021608 0x00000000
f7dc1244 24452(@value{GDBP}) x/x 0x10021608
be448670 244530x10021608: 0x0022fd98
f7dc1244 24454(@value{GDBP}) x/s 0x0022fd98
be448670
CF
244550x22fd98: "/cygdrive/c/mydirectory/myprogram"
24456@end smallexample
24457
24458Setting a break point within a DLL is possible even before the program
24459starts execution. However, under these circumstances, @value{GDBN} can't
24460examine the initial instructions of the function in order to skip the
24461function's frame set-up code. You can work around this by using ``*&''
24462to set the breakpoint at a raw memory address:
24463
24464@smallexample
f7dc1244 24465(@value{GDBP}) break *&'python22!PyOS_Readline'
be448670
CF
24466Breakpoint 1 at 0x1e04eff0
24467@end smallexample
24468
24469The author of these extensions is not entirely convinced that setting a
24470break point within a shared DLL like @file{kernel32.dll} is completely
24471safe.
24472
14d6dd68 24473@node Hurd Native
79a6e687 24474@subsection Commands Specific to @sc{gnu} Hurd Systems
14d6dd68
EZ
24475@cindex @sc{gnu} Hurd debugging
24476
24477This subsection describes @value{GDBN} commands specific to the
24478@sc{gnu} Hurd native debugging.
24479
24480@table @code
24481@item set signals
24482@itemx set sigs
24483@kindex set signals@r{, Hurd command}
24484@kindex set sigs@r{, Hurd command}
24485This command toggles the state of inferior signal interception by
24486@value{GDBN}. Mach exceptions, such as breakpoint traps, are not
24487affected by this command. @code{sigs} is a shorthand alias for
24488@code{signals}.
24489
24490@item show signals
24491@itemx show sigs
24492@kindex show signals@r{, Hurd command}
24493@kindex show sigs@r{, Hurd command}
24494Show the current state of intercepting inferior's signals.
24495
24496@item set signal-thread
24497@itemx set sigthread
24498@kindex set signal-thread
24499@kindex set sigthread
24500This command tells @value{GDBN} which thread is the @code{libc} signal
24501thread. That thread is run when a signal is delivered to a running
24502process. @code{set sigthread} is the shorthand alias of @code{set
24503signal-thread}.
24504
24505@item show signal-thread
24506@itemx show sigthread
24507@kindex show signal-thread
24508@kindex show sigthread
24509These two commands show which thread will run when the inferior is
24510delivered a signal.
24511
24512@item set stopped
24513@kindex set stopped@r{, Hurd command}
24514This commands tells @value{GDBN} that the inferior process is stopped,
24515as with the @code{SIGSTOP} signal. The stopped process can be
24516continued by delivering a signal to it.
24517
24518@item show stopped
24519@kindex show stopped@r{, Hurd command}
24520This command shows whether @value{GDBN} thinks the debuggee is
24521stopped.
24522
24523@item set exceptions
24524@kindex set exceptions@r{, Hurd command}
24525Use this command to turn off trapping of exceptions in the inferior.
24526When exception trapping is off, neither breakpoints nor
24527single-stepping will work. To restore the default, set exception
24528trapping on.
24529
24530@item show exceptions
24531@kindex show exceptions@r{, Hurd command}
24532Show the current state of trapping exceptions in the inferior.
24533
24534@item set task pause
24535@kindex set task@r{, Hurd commands}
24536@cindex task attributes (@sc{gnu} Hurd)
24537@cindex pause current task (@sc{gnu} Hurd)
24538This command toggles task suspension when @value{GDBN} has control.
24539Setting it to on takes effect immediately, and the task is suspended
24540whenever @value{GDBN} gets control. Setting it to off will take
24541effect the next time the inferior is continued. If this option is set
24542to off, you can use @code{set thread default pause on} or @code{set
24543thread pause on} (see below) to pause individual threads.
24544
24545@item show task pause
24546@kindex show task@r{, Hurd commands}
24547Show the current state of task suspension.
24548
24549@item set task detach-suspend-count
24550@cindex task suspend count
24551@cindex detach from task, @sc{gnu} Hurd
24552This command sets the suspend count the task will be left with when
24553@value{GDBN} detaches from it.
24554
24555@item show task detach-suspend-count
24556Show the suspend count the task will be left with when detaching.
24557
24558@item set task exception-port
24559@itemx set task excp
24560@cindex task exception port, @sc{gnu} Hurd
24561This command sets the task exception port to which @value{GDBN} will
24562forward exceptions. The argument should be the value of the @dfn{send
24563rights} of the task. @code{set task excp} is a shorthand alias.
24564
24565@item set noninvasive
24566@cindex noninvasive task options
24567This command switches @value{GDBN} to a mode that is the least
24568invasive as far as interfering with the inferior is concerned. This
24569is the same as using @code{set task pause}, @code{set exceptions}, and
24570@code{set signals} to values opposite to the defaults.
24571
24572@item info send-rights
24573@itemx info receive-rights
24574@itemx info port-rights
24575@itemx info port-sets
24576@itemx info dead-names
24577@itemx info ports
24578@itemx info psets
24579@cindex send rights, @sc{gnu} Hurd
24580@cindex receive rights, @sc{gnu} Hurd
24581@cindex port rights, @sc{gnu} Hurd
24582@cindex port sets, @sc{gnu} Hurd
24583@cindex dead names, @sc{gnu} Hurd
24584These commands display information about, respectively, send rights,
24585receive rights, port rights, port sets, and dead names of a task.
24586There are also shorthand aliases: @code{info ports} for @code{info
24587port-rights} and @code{info psets} for @code{info port-sets}.
24588
24589@item set thread pause
24590@kindex set thread@r{, Hurd command}
24591@cindex thread properties, @sc{gnu} Hurd
24592@cindex pause current thread (@sc{gnu} Hurd)
24593This command toggles current thread suspension when @value{GDBN} has
24594control. Setting it to on takes effect immediately, and the current
24595thread is suspended whenever @value{GDBN} gets control. Setting it to
24596off will take effect the next time the inferior is continued.
24597Normally, this command has no effect, since when @value{GDBN} has
24598control, the whole task is suspended. However, if you used @code{set
24599task pause off} (see above), this command comes in handy to suspend
24600only the current thread.
24601
24602@item show thread pause
24603@kindex show thread@r{, Hurd command}
24604This command shows the state of current thread suspension.
24605
24606@item set thread run
d3e8051b 24607This command sets whether the current thread is allowed to run.
14d6dd68
EZ
24608
24609@item show thread run
24610Show whether the current thread is allowed to run.
24611
24612@item set thread detach-suspend-count
24613@cindex thread suspend count, @sc{gnu} Hurd
24614@cindex detach from thread, @sc{gnu} Hurd
24615This command sets the suspend count @value{GDBN} will leave on a
24616thread when detaching. This number is relative to the suspend count
24617found by @value{GDBN} when it notices the thread; use @code{set thread
24618takeover-suspend-count} to force it to an absolute value.
24619
24620@item show thread detach-suspend-count
24621Show the suspend count @value{GDBN} will leave on the thread when
24622detaching.
24623
24624@item set thread exception-port
24625@itemx set thread excp
24626Set the thread exception port to which to forward exceptions. This
24627overrides the port set by @code{set task exception-port} (see above).
24628@code{set thread excp} is the shorthand alias.
24629
24630@item set thread takeover-suspend-count
24631Normally, @value{GDBN}'s thread suspend counts are relative to the
24632value @value{GDBN} finds when it notices each thread. This command
24633changes the suspend counts to be absolute instead.
24634
24635@item set thread default
24636@itemx show thread default
24637@cindex thread default settings, @sc{gnu} Hurd
24638Each of the above @code{set thread} commands has a @code{set thread
24639default} counterpart (e.g., @code{set thread default pause}, @code{set
24640thread default exception-port}, etc.). The @code{thread default}
24641variety of commands sets the default thread properties for all
24642threads; you can then change the properties of individual threads with
24643the non-default commands.
24644@end table
24645
a80b95ba
TG
24646@node Darwin
24647@subsection Darwin
24648@cindex Darwin
24649
24650@value{GDBN} provides the following commands specific to the Darwin target:
24651
24652@table @code
24653@item set debug darwin @var{num}
24654@kindex set debug darwin
24655When set to a non zero value, enables debugging messages specific to
24656the Darwin support. Higher values produce more verbose output.
24657
24658@item show debug darwin
24659@kindex show debug darwin
24660Show the current state of Darwin messages.
24661
24662@item set debug mach-o @var{num}
24663@kindex set debug mach-o
24664When set to a non zero value, enables debugging messages while
24665@value{GDBN} is reading Darwin object files. (@dfn{Mach-O} is the
24666file format used on Darwin for object and executable files.) Higher
24667values produce more verbose output. This is a command to diagnose
24668problems internal to @value{GDBN} and should not be needed in normal
24669usage.
24670
24671@item show debug mach-o
24672@kindex show debug mach-o
24673Show the current state of Mach-O file messages.
24674
24675@item set mach-exceptions on
24676@itemx set mach-exceptions off
24677@kindex set mach-exceptions
24678On Darwin, faults are first reported as a Mach exception and are then
24679mapped to a Posix signal. Use this command to turn on trapping of
24680Mach exceptions in the inferior. This might be sometimes useful to
24681better understand the cause of a fault. The default is off.
24682
24683@item show mach-exceptions
24684@kindex show mach-exceptions
24685Show the current state of exceptions trapping.
24686@end table
24687
e9076973
JB
24688@node FreeBSD
24689@subsection FreeBSD
24690@cindex FreeBSD
24691
24692When the ABI of a system call is changed in the FreeBSD kernel, this
24693is implemented by leaving a compatibility system call using the old
24694ABI at the existing number and allocating a new system call number for
24695the version using the new ABI. As a convenience, when a system call
24696is caught by name (@pxref{catch syscall}), compatibility system calls
24697are also caught.
24698
24699For example, FreeBSD 12 introduced a new variant of the @code{kevent}
24700system call and catching the @code{kevent} system call by name catches
24701both variants:
24702
24703@smallexample
24704(@value{GDBP}) catch syscall kevent
24705Catchpoint 1 (syscalls 'freebsd11_kevent' [363] 'kevent' [560])
24706(@value{GDBP})
24707@end smallexample
24708
a64548ea 24709
8e04817f
AC
24710@node Embedded OS
24711@section Embedded Operating Systems
104c1213 24712
8e04817f
AC
24713This section describes configurations involving the debugging of
24714embedded operating systems that are available for several different
24715architectures.
d4f3574e 24716
8e04817f
AC
24717@value{GDBN} includes the ability to debug programs running on
24718various real-time operating systems.
104c1213 24719
6d2ebf8b 24720@node Embedded Processors
104c1213
JM
24721@section Embedded Processors
24722
24723This section goes into details specific to particular embedded
24724configurations.
24725
c45da7e6
EZ
24726@cindex send command to simulator
24727Whenever a specific embedded processor has a simulator, @value{GDBN}
24728allows to send an arbitrary command to the simulator.
24729
24730@table @code
24731@item sim @var{command}
24732@kindex sim@r{, a command}
24733Send an arbitrary @var{command} string to the simulator. Consult the
24734documentation for the specific simulator in use for information about
24735acceptable commands.
24736@end table
24737
7d86b5d5 24738
104c1213 24739@menu
ad0a504f 24740* ARC:: Synopsys ARC
bb615428 24741* ARM:: ARM
39791af2 24742* BPF:: eBPF
104c1213 24743* M68K:: Motorola M68K
08be9d71 24744* MicroBlaze:: Xilinx MicroBlaze
104c1213 24745* MIPS Embedded:: MIPS Embedded
a994fec4 24746* OpenRISC 1000:: OpenRISC 1000 (or1k)
4acd40f3 24747* PowerPC Embedded:: PowerPC Embedded
a64548ea
EZ
24748* AVR:: Atmel AVR
24749* CRIS:: CRIS
24750* Super-H:: Renesas Super-H
104c1213
JM
24751@end menu
24752
ad0a504f
AK
24753@node ARC
24754@subsection Synopsys ARC
24755@cindex Synopsys ARC
24756@cindex ARC specific commands
24757@cindex ARC600
24758@cindex ARC700
24759@cindex ARC EM
24760@cindex ARC HS
24761
24762@value{GDBN} provides the following ARC-specific commands:
24763
24764@table @code
24765@item set debug arc
24766@kindex set debug arc
24767Control the level of ARC specific debug messages. Use 0 for no messages (the
fe5f7374 24768default), 1 for debug messages, and 2 for even more debug messages.
ad0a504f
AK
24769
24770@item show debug arc
24771@kindex show debug arc
24772Show the level of ARC specific debugging in operation.
24773
eea78757
AK
24774@item maint print arc arc-instruction @var{address}
24775@kindex maint print arc arc-instruction
24776Print internal disassembler information about instruction at a given address.
24777
ad0a504f
AK
24778@end table
24779
6d2ebf8b 24780@node ARM
104c1213 24781@subsection ARM
8e04817f 24782
e2f4edfd
EZ
24783@value{GDBN} provides the following ARM-specific commands:
24784
24785@table @code
24786@item set arm disassembler
24787@kindex set arm
24788This commands selects from a list of disassembly styles. The
24789@code{"std"} style is the standard style.
24790
24791@item show arm disassembler
24792@kindex show arm
24793Show the current disassembly style.
24794
24795@item set arm apcs32
24796@cindex ARM 32-bit mode
24797This command toggles ARM operation mode between 32-bit and 26-bit.
24798
24799@item show arm apcs32
24800Display the current usage of the ARM 32-bit mode.
24801
24802@item set arm fpu @var{fputype}
24803This command sets the ARM floating-point unit (FPU) type. The
24804argument @var{fputype} can be one of these:
24805
24806@table @code
24807@item auto
24808Determine the FPU type by querying the OS ABI.
24809@item softfpa
24810Software FPU, with mixed-endian doubles on little-endian ARM
24811processors.
24812@item fpa
24813GCC-compiled FPA co-processor.
24814@item softvfp
24815Software FPU with pure-endian doubles.
24816@item vfp
24817VFP co-processor.
24818@end table
24819
24820@item show arm fpu
24821Show the current type of the FPU.
24822
24823@item set arm abi
24824This command forces @value{GDBN} to use the specified ABI.
24825
24826@item show arm abi
24827Show the currently used ABI.
24828
0428b8f5
DJ
24829@item set arm fallback-mode (arm|thumb|auto)
24830@value{GDBN} uses the symbol table, when available, to determine
24831whether instructions are ARM or Thumb. This command controls
24832@value{GDBN}'s default behavior when the symbol table is not
24833available. The default is @samp{auto}, which causes @value{GDBN} to
24834use the current execution mode (from the @code{T} bit in the @code{CPSR}
24835register).
24836
24837@item show arm fallback-mode
24838Show the current fallback instruction mode.
24839
24840@item set arm force-mode (arm|thumb|auto)
24841This command overrides use of the symbol table to determine whether
24842instructions are ARM or Thumb. The default is @samp{auto}, which
24843causes @value{GDBN} to use the symbol table and then the setting
24844of @samp{set arm fallback-mode}.
24845
24846@item show arm force-mode
24847Show the current forced instruction mode.
24848
e2f4edfd
EZ
24849@item set debug arm
24850Toggle whether to display ARM-specific debugging messages from the ARM
24851target support subsystem.
24852
24853@item show debug arm
24854Show whether ARM-specific debugging messages are enabled.
24855@end table
24856
ee8e71d4
EZ
24857@table @code
24858@item target sim @r{[}@var{simargs}@r{]} @dots{}
24859The @value{GDBN} ARM simulator accepts the following optional arguments.
24860
24861@table @code
24862@item --swi-support=@var{type}
697aa1b7 24863Tell the simulator which SWI interfaces to support. The argument
ee8e71d4
EZ
24864@var{type} may be a comma separated list of the following values.
24865The default value is @code{all}.
24866
24867@table @code
24868@item none
24869@item demon
24870@item angel
24871@item redboot
24872@item all
24873@end table
24874@end table
24875@end table
e2f4edfd 24876
39791af2
JM
24877@node BPF
24878@subsection BPF
24879
24880@table @code
24881@item target sim @r{[}@var{simargs}@r{]} @dots{}
24882The @value{GDBN} BPF simulator accepts the following optional arguments.
24883
24884@table @code
24885@item --skb-data-offset=@var{offset}
24886Tell the simulator the offset, measured in bytes, of the
24887@code{skb_data} field in the kernel @code{struct sk_buff} structure.
24888This offset is used by some BPF specific-purpose load/store
24889instructions. Defaults to 0.
24890@end table
24891@end table
24892
8e04817f
AC
24893@node M68K
24894@subsection M68k
24895
bb615428 24896The Motorola m68k configuration includes ColdFire support.
8e04817f 24897
08be9d71
ME
24898@node MicroBlaze
24899@subsection MicroBlaze
24900@cindex Xilinx MicroBlaze
24901@cindex XMD, Xilinx Microprocessor Debugger
24902
24903The MicroBlaze is a soft-core processor supported on various Xilinx
24904FPGAs, such as Spartan or Virtex series. Boards with these processors
24905usually have JTAG ports which connect to a host system running the Xilinx
24906Embedded Development Kit (EDK) or Software Development Kit (SDK).
24907This host system is used to download the configuration bitstream to
24908the target FPGA. The Xilinx Microprocessor Debugger (XMD) program
24909communicates with the target board using the JTAG interface and
24910presents a @code{gdbserver} interface to the board. By default
24911@code{xmd} uses port @code{1234}. (While it is possible to change
24912this default port, it requires the use of undocumented @code{xmd}
24913commands. Contact Xilinx support if you need to do this.)
24914
24915Use these GDB commands to connect to the MicroBlaze target processor.
24916
24917@table @code
24918@item target remote :1234
24919Use this command to connect to the target if you are running @value{GDBN}
24920on the same system as @code{xmd}.
24921
24922@item target remote @var{xmd-host}:1234
24923Use this command to connect to the target if it is connected to @code{xmd}
24924running on a different system named @var{xmd-host}.
24925
24926@item load
24927Use this command to download a program to the MicroBlaze target.
24928
24929@item set debug microblaze @var{n}
24930Enable MicroBlaze-specific debugging messages if non-zero.
24931
24932@item show debug microblaze @var{n}
24933Show MicroBlaze-specific debugging level.
24934@end table
24935
8e04817f 24936@node MIPS Embedded
eb17f351 24937@subsection @acronym{MIPS} Embedded
8e04817f 24938
8e04817f 24939@noindent
f7c38292 24940@value{GDBN} supports these special commands for @acronym{MIPS} targets:
104c1213 24941
8e04817f 24942@table @code
8e04817f
AC
24943@item set mipsfpu double
24944@itemx set mipsfpu single
24945@itemx set mipsfpu none
a64548ea 24946@itemx set mipsfpu auto
8e04817f
AC
24947@itemx show mipsfpu
24948@kindex set mipsfpu
24949@kindex show mipsfpu
eb17f351
EZ
24950@cindex @acronym{MIPS} remote floating point
24951@cindex floating point, @acronym{MIPS} remote
24952If your target board does not support the @acronym{MIPS} floating point
8e04817f
AC
24953coprocessor, you should use the command @samp{set mipsfpu none} (if you
24954need this, you may wish to put the command in your @value{GDBN} init
24955file). This tells @value{GDBN} how to find the return value of
24956functions which return floating point values. It also allows
24957@value{GDBN} to avoid saving the floating point registers when calling
24958functions on the board. If you are using a floating point coprocessor
24959with only single precision floating point support, as on the @sc{r4650}
24960processor, use the command @samp{set mipsfpu single}. The default
24961double precision floating point coprocessor may be selected using
24962@samp{set mipsfpu double}.
104c1213 24963
8e04817f
AC
24964In previous versions the only choices were double precision or no
24965floating point, so @samp{set mipsfpu on} will select double precision
24966and @samp{set mipsfpu off} will select no floating point.
104c1213 24967
8e04817f
AC
24968As usual, you can inquire about the @code{mipsfpu} variable with
24969@samp{show mipsfpu}.
8e04817f 24970@end table
104c1213 24971
a994fec4
FJ
24972@node OpenRISC 1000
24973@subsection OpenRISC 1000
24974@cindex OpenRISC 1000
24975
24976@noindent
24977The OpenRISC 1000 provides a free RISC instruction set architecture. It is
24978mainly provided as a soft-core which can run on Xilinx, Altera and other
24979FPGA's.
24980
24981@value{GDBN} for OpenRISC supports the below commands when connecting to
24982a target:
24983
24984@table @code
24985
24986@kindex target sim
24987@item target sim
24988
24989Runs the builtin CPU simulator which can run very basic
24990programs but does not support most hardware functions like MMU.
24991For more complex use cases the user is advised to run an external
24992target, and connect using @samp{target remote}.
24993
24994Example: @code{target sim}
24995
24996@item set debug or1k
24997Toggle whether to display OpenRISC-specific debugging messages from the
24998OpenRISC target support subsystem.
24999
25000@item show debug or1k
25001Show whether OpenRISC-specific debugging messages are enabled.
25002@end table
25003
4acd40f3
TJB
25004@node PowerPC Embedded
25005@subsection PowerPC Embedded
104c1213 25006
66b73624
TJB
25007@cindex DVC register
25008@value{GDBN} supports using the DVC (Data Value Compare) register to
25009implement in hardware simple hardware watchpoint conditions of the form:
25010
25011@smallexample
cc4bc93e
AB
25012(@value{GDBP}) watch @var{address|variable} \
25013 if @var{address|variable} == @var{constant expression}
66b73624
TJB
25014@end smallexample
25015
e09342b5
TJB
25016The DVC register will be automatically used when @value{GDBN} detects
25017such pattern in a condition expression, and the created watchpoint uses one
25018debug register (either the @code{exact-watchpoints} option is on and the
25019variable is scalar, or the variable has a length of one byte). This feature
25020is available in native @value{GDBN} running on a Linux kernel version 2.6.34
25021or newer.
25022
25023When running on PowerPC embedded processors, @value{GDBN} automatically uses
25024ranged hardware watchpoints, unless the @code{exact-watchpoints} option is on,
25025in which case watchpoints using only one debug register are created when
25026watching variables of scalar types.
25027
25028You can create an artificial array to watch an arbitrary memory
25029region using one of the following commands (@pxref{Expressions}):
25030
25031@smallexample
25032(@value{GDBP}) watch *((char *) @var{address})@@@var{length}
25033(@value{GDBP}) watch @{char[@var{length}]@} @var{address}
25034@end smallexample
66b73624 25035
9c06b0b4
TJB
25036PowerPC embedded processors support masked watchpoints. See the discussion
25037about the @code{mask} argument in @ref{Set Watchpoints}.
25038
f1310107
TJB
25039@cindex ranged breakpoint
25040PowerPC embedded processors support hardware accelerated
25041@dfn{ranged breakpoints}. A ranged breakpoint stops execution of
25042the inferior whenever it executes an instruction at any address within
25043the range it specifies. To set a ranged breakpoint in @value{GDBN},
25044use the @code{break-range} command.
25045
55eddb0f
DJ
25046@value{GDBN} provides the following PowerPC-specific commands:
25047
104c1213 25048@table @code
f1310107
TJB
25049@kindex break-range
25050@item break-range @var{start-location}, @var{end-location}
697aa1b7
EZ
25051Set a breakpoint for an address range given by
25052@var{start-location} and @var{end-location}, which can specify a function name,
f1310107
TJB
25053a line number, an offset of lines from the current line or from the start
25054location, or an address of an instruction (see @ref{Specify Location},
25055for a list of all the possible ways to specify a @var{location}.)
25056The breakpoint will stop execution of the inferior whenever it
25057executes an instruction at any address within the specified range,
25058(including @var{start-location} and @var{end-location}.)
25059
55eddb0f
DJ
25060@kindex set powerpc
25061@item set powerpc soft-float
25062@itemx show powerpc soft-float
25063Force @value{GDBN} to use (or not use) a software floating point calling
25064convention. By default, @value{GDBN} selects the calling convention based
25065on the selected architecture and the provided executable file.
25066
25067@item set powerpc vector-abi
25068@itemx show powerpc vector-abi
25069Force @value{GDBN} to use the specified calling convention for vector
25070arguments and return values. The valid options are @samp{auto};
25071@samp{generic}, to avoid vector registers even if they are present;
25072@samp{altivec}, to use AltiVec registers; and @samp{spe} to use SPE
25073registers. By default, @value{GDBN} selects the calling convention
25074based on the selected architecture and the provided executable file.
25075
e09342b5
TJB
25076@item set powerpc exact-watchpoints
25077@itemx show powerpc exact-watchpoints
25078Allow @value{GDBN} to use only one debug register when watching a variable
25079of scalar type, thus assuming that the variable is accessed through the
25080address of its first byte.
25081
104c1213
JM
25082@end table
25083
a64548ea
EZ
25084@node AVR
25085@subsection Atmel AVR
25086@cindex AVR
25087
25088When configured for debugging the Atmel AVR, @value{GDBN} supports the
25089following AVR-specific commands:
25090
25091@table @code
25092@item info io_registers
25093@kindex info io_registers@r{, AVR}
25094@cindex I/O registers (Atmel AVR)
25095This command displays information about the AVR I/O registers. For
25096each register, @value{GDBN} prints its number and value.
25097@end table
25098
25099@node CRIS
25100@subsection CRIS
25101@cindex CRIS
25102
25103When configured for debugging CRIS, @value{GDBN} provides the
25104following CRIS-specific commands:
25105
25106@table @code
25107@item set cris-version @var{ver}
25108@cindex CRIS version
e22e55c9
OF
25109Set the current CRIS version to @var{ver}, either @samp{10} or @samp{32}.
25110The CRIS version affects register names and sizes. This command is useful in
25111case autodetection of the CRIS version fails.
a64548ea
EZ
25112
25113@item show cris-version
25114Show the current CRIS version.
25115
25116@item set cris-dwarf2-cfi
25117@cindex DWARF-2 CFI and CRIS
e22e55c9
OF
25118Set the usage of DWARF-2 CFI for CRIS debugging. The default is @samp{on}.
25119Change to @samp{off} when using @code{gcc-cris} whose version is below
25120@code{R59}.
a64548ea
EZ
25121
25122@item show cris-dwarf2-cfi
25123Show the current state of using DWARF-2 CFI.
e22e55c9
OF
25124
25125@item set cris-mode @var{mode}
25126@cindex CRIS mode
25127Set the current CRIS mode to @var{mode}. It should only be changed when
25128debugging in guru mode, in which case it should be set to
25129@samp{guru} (the default is @samp{normal}).
25130
25131@item show cris-mode
25132Show the current CRIS mode.
a64548ea
EZ
25133@end table
25134
25135@node Super-H
25136@subsection Renesas Super-H
25137@cindex Super-H
25138
25139For the Renesas Super-H processor, @value{GDBN} provides these
25140commands:
25141
25142@table @code
c055b101
CV
25143@item set sh calling-convention @var{convention}
25144@kindex set sh calling-convention
25145Set the calling-convention used when calling functions from @value{GDBN}.
25146Allowed values are @samp{gcc}, which is the default setting, and @samp{renesas}.
25147With the @samp{gcc} setting, functions are called using the @value{NGCC} calling
25148convention. If the DWARF-2 information of the called function specifies
25149that the function follows the Renesas calling convention, the function
25150is called using the Renesas calling convention. If the calling convention
25151is set to @samp{renesas}, the Renesas calling convention is always used,
25152regardless of the DWARF-2 information. This can be used to override the
25153default of @samp{gcc} if debug information is missing, or the compiler
25154does not emit the DWARF-2 calling convention entry for a function.
25155
25156@item show sh calling-convention
25157@kindex show sh calling-convention
25158Show the current calling convention setting.
25159
a64548ea
EZ
25160@end table
25161
25162
8e04817f
AC
25163@node Architectures
25164@section Architectures
104c1213 25165
8e04817f
AC
25166This section describes characteristics of architectures that affect
25167all uses of @value{GDBN} with the architecture, both native and cross.
104c1213 25168
8e04817f 25169@menu
430ed3f0 25170* AArch64::
9c16f35a 25171* i386::
8e04817f
AC
25172* Alpha::
25173* MIPS::
a64548ea 25174* HPPA:: HP PA architecture
4acd40f3 25175* PowerPC::
a1217d97 25176* Nios II::
58afddc6 25177* Sparc64::
51d21d60 25178* S12Z::
8e04817f 25179@end menu
104c1213 25180
430ed3f0
MS
25181@node AArch64
25182@subsection AArch64
25183@cindex AArch64 support
25184
25185When @value{GDBN} is debugging the AArch64 architecture, it provides the
25186following special commands:
25187
25188@table @code
25189@item set debug aarch64
25190@kindex set debug aarch64
25191This command determines whether AArch64 architecture-specific debugging
25192messages are to be displayed.
25193
25194@item show debug aarch64
25195Show whether AArch64 debugging messages are displayed.
25196
25197@end table
25198
1461bdac
AH
25199@subsubsection AArch64 SVE.
25200@cindex AArch64 SVE.
25201
25202When @value{GDBN} is debugging the AArch64 architecture, if the Scalable Vector
25203Extension (SVE) is present, then @value{GDBN} will provide the vector registers
25204@code{$z0} through @code{$z31}, vector predicate registers @code{$p0} through
25205@code{$p15}, and the @code{$ffr} register. In addition, the pseudo register
25206@code{$vg} will be provided. This is the vector granule for the current thread
25207and represents the number of 64-bit chunks in an SVE @code{z} register.
25208
25209If the vector length changes, then the @code{$vg} register will be updated,
25210but the lengths of the @code{z} and @code{p} registers will not change. This
25211is a known limitation of @value{GDBN} and does not affect the execution of the
25212target process.
25213
3d31bc39
AH
25214@subsubsection AArch64 Pointer Authentication.
25215@cindex AArch64 Pointer Authentication.
25216
25217When @value{GDBN} is debugging the AArch64 architecture, and the program is
25218using the v8.3-A feature Pointer Authentication (PAC), then whenever the link
1ba7cdcd 25219register @code{$lr} is pointing to an PAC function its value will be masked.
3d31bc39 25220When GDB prints a backtrace, any addresses that required unmasking will be
aa7ca1bb
AH
25221postfixed with the marker [PAC]. When using the MI, this is printed as part
25222of the @code{addr_flags} field.
1461bdac 25223
362a0700
LM
25224@subsubsection AArch64 Memory Tagging Extension.
25225@cindex AArch64 Memory Tagging Extension.
25226
25227When @value{GDBN} is debugging the AArch64 architecture, the program is
25228using the v8.5-A feature Memory Tagging Extension (MTE) and there is support
25229in the kernel for MTE, @value{GDBN} will make memory tagging functionality
25230available for inspection and editing of logical and allocation tags.
25231@xref{Memory Tagging}.
25232
25233To aid debugging, @value{GDBN} will output additional information when SIGSEGV
25234signals are generated as a result of memory tag failures.
25235
25236If the tag violation is synchronous, the following will be shown:
25237
25238@smallexample
25239Program received signal SIGSEGV, Segmentation fault
25240Memory tag violation while accessing address 0x0500fffff7ff8000
25241Allocation tag 0x1
25242Logical tag 0x5.
25243@end smallexample
25244
25245If the tag violation is asynchronous, the fault address is not available.
25246In this case @value{GDBN} will show the following:
25247
25248@smallexample
25249Program received signal SIGSEGV, Segmentation fault
25250Memory tag violation
25251Fault address unavailable.
25252@end smallexample
25253
25254A special register, @code{tag_ctl}, is made available through the
25255@code{org.gnu.gdb.aarch64.mte} feature. This register exposes some
25256options that can be controlled at runtime and emulates the @code{prctl}
25257option @code{PR_SET_TAGGED_ADDR_CTRL}. For further information, see the
25258documentation in the Linux kernel.
25259
9c16f35a 25260@node i386
db2e3e2e 25261@subsection x86 Architecture-specific Issues
9c16f35a
EZ
25262
25263@table @code
25264@item set struct-convention @var{mode}
25265@kindex set struct-convention
25266@cindex struct return convention
25267@cindex struct/union returned in registers
25268Set the convention used by the inferior to return @code{struct}s and
25269@code{union}s from functions to @var{mode}. Possible values of
25270@var{mode} are @code{"pcc"}, @code{"reg"}, and @code{"default"} (the
25271default). @code{"default"} or @code{"pcc"} means that @code{struct}s
25272are returned on the stack, while @code{"reg"} means that a
25273@code{struct} or a @code{union} whose size is 1, 2, 4, or 8 bytes will
25274be returned in a register.
25275
25276@item show struct-convention
25277@kindex show struct-convention
25278Show the current setting of the convention to return @code{struct}s
25279from functions.
966f0aef 25280@end table
29c1c244 25281
ca8941bb 25282
bc504a31
PA
25283@subsubsection Intel @dfn{Memory Protection Extensions} (MPX).
25284@cindex Intel Memory Protection Extensions (MPX).
ca8941bb 25285
ca8941bb
WT
25286Memory Protection Extension (MPX) adds the bound registers @samp{BND0}
25287@footnote{The register named with capital letters represent the architecture
25288registers.} through @samp{BND3}. Bound registers store a pair of 64-bit values
25289which are the lower bound and upper bound. Bounds are effective addresses or
25290memory locations. The upper bounds are architecturally represented in 1's
25291complement form. A bound having lower bound = 0, and upper bound = 0
25292(1's complement of all bits set) will allow access to the entire address space.
25293
25294@samp{BND0} through @samp{BND3} are represented in @value{GDBN} as @samp{bnd0raw}
25295through @samp{bnd3raw}. Pseudo registers @samp{bnd0} through @samp{bnd3}
25296display the upper bound performing the complement of one operation on the
25297upper bound value, i.e.@ when upper bound in @samp{bnd0raw} is 0 in the
25298@value{GDBN} @samp{bnd0} it will be @code{0xfff@dots{}}. In this sense it
25299can also be noted that the upper bounds are inclusive.
25300
25301As an example, assume that the register BND0 holds bounds for a pointer having
25302access allowed for the range between 0x32 and 0x71. The values present on
25303bnd0raw and bnd registers are presented as follows:
25304
25305@smallexample
25306 bnd0raw = @{0x32, 0xffffffff8e@}
25307 bnd0 = @{lbound = 0x32, ubound = 0x71@} : size 64
25308@end smallexample
25309
22f25c9d
EZ
25310This way the raw value can be accessed via bnd0raw@dots{}bnd3raw. Any
25311change on bnd0@dots{}bnd3 or bnd0raw@dots{}bnd3raw is reflect on its
25312counterpart. When the bnd0@dots{}bnd3 registers are displayed via
25313Python, the display includes the memory size, in bits, accessible to
25314the pointer.
9c16f35a 25315
29c1c244
WT
25316Bounds can also be stored in bounds tables, which are stored in
25317application memory. These tables store bounds for pointers by specifying
25318the bounds pointer's value along with its bounds. Evaluating and changing
25319bounds located in bound tables is therefore interesting while investigating
25320bugs on MPX context. @value{GDBN} provides commands for this purpose:
25321
966f0aef 25322@table @code
29c1c244
WT
25323@item show mpx bound @var{pointer}
25324@kindex show mpx bound
25325Display bounds of the given @var{pointer}.
25326
25327@item set mpx bound @var{pointer}, @var{lbound}, @var{ubound}
25328@kindex set mpx bound
25329Set the bounds of a pointer in the bound table.
25330This command takes three parameters: @var{pointer} is the pointers
25331whose bounds are to be changed, @var{lbound} and @var{ubound} are new values
25332for lower and upper bounds respectively.
25333@end table
25334
4a612d6f
WT
25335When you call an inferior function on an Intel MPX enabled program,
25336GDB sets the inferior's bound registers to the init (disabled) state
25337before calling the function. As a consequence, bounds checks for the
25338pointer arguments passed to the function will always pass.
25339
25340This is necessary because when you call an inferior function, the
25341program is usually in the middle of the execution of other function.
25342Since at that point bound registers are in an arbitrary state, not
25343clearing them would lead to random bound violations in the called
25344function.
25345
25346You can still examine the influence of the bound registers on the
25347execution of the called function by stopping the execution of the
25348called function at its prologue, setting bound registers, and
25349continuing the execution. For example:
25350
25351@smallexample
25352 $ break *upper
25353 Breakpoint 2 at 0x4009de: file i386-mpx-call.c, line 47.
25354 $ print upper (a, b, c, d, 1)
25355 Breakpoint 2, upper (a=0x0, b=0x6e0000005b, c=0x0, d=0x0, len=48)....
25356 $ print $bnd0
5cf70512 25357 @{lbound = 0x0, ubound = ffffffff@} : size -1
4a612d6f
WT
25358@end smallexample
25359
25360At this last step the value of bnd0 can be changed for investigation of bound
25361violations caused along the execution of the call. In order to know how to
25362set the bound registers or bound table for the call consult the ABI.
25363
8e04817f
AC
25364@node Alpha
25365@subsection Alpha
104c1213 25366
8e04817f 25367See the following section.
104c1213 25368
8e04817f 25369@node MIPS
eb17f351 25370@subsection @acronym{MIPS}
104c1213 25371
8e04817f 25372@cindex stack on Alpha
eb17f351 25373@cindex stack on @acronym{MIPS}
8e04817f 25374@cindex Alpha stack
eb17f351
EZ
25375@cindex @acronym{MIPS} stack
25376Alpha- and @acronym{MIPS}-based computers use an unusual stack frame, which
8e04817f
AC
25377sometimes requires @value{GDBN} to search backward in the object code to
25378find the beginning of a function.
104c1213 25379
eb17f351 25380@cindex response time, @acronym{MIPS} debugging
8e04817f
AC
25381To improve response time (especially for embedded applications, where
25382@value{GDBN} may be restricted to a slow serial line for this search)
25383you may want to limit the size of this search, using one of these
25384commands:
104c1213 25385
8e04817f 25386@table @code
eb17f351 25387@cindex @code{heuristic-fence-post} (Alpha, @acronym{MIPS})
8e04817f
AC
25388@item set heuristic-fence-post @var{limit}
25389Restrict @value{GDBN} to examining at most @var{limit} bytes in its
25390search for the beginning of a function. A value of @var{0} (the
25391default) means there is no limit. However, except for @var{0}, the
25392larger the limit the more bytes @code{heuristic-fence-post} must search
e2f4edfd
EZ
25393and therefore the longer it takes to run. You should only need to use
25394this command when debugging a stripped executable.
104c1213 25395
8e04817f
AC
25396@item show heuristic-fence-post
25397Display the current limit.
25398@end table
104c1213
JM
25399
25400@noindent
8e04817f 25401These commands are available @emph{only} when @value{GDBN} is configured
eb17f351 25402for debugging programs on Alpha or @acronym{MIPS} processors.
104c1213 25403
eb17f351 25404Several @acronym{MIPS}-specific commands are available when debugging @acronym{MIPS}
a64548ea
EZ
25405programs:
25406
25407@table @code
a64548ea
EZ
25408@item set mips abi @var{arg}
25409@kindex set mips abi
eb17f351
EZ
25410@cindex set ABI for @acronym{MIPS}
25411Tell @value{GDBN} which @acronym{MIPS} ABI is used by the inferior. Possible
a64548ea
EZ
25412values of @var{arg} are:
25413
25414@table @samp
25415@item auto
25416The default ABI associated with the current binary (this is the
25417default).
25418@item o32
25419@item o64
25420@item n32
25421@item n64
25422@item eabi32
25423@item eabi64
a64548ea
EZ
25424@end table
25425
25426@item show mips abi
25427@kindex show mips abi
eb17f351 25428Show the @acronym{MIPS} ABI used by @value{GDBN} to debug the inferior.
a64548ea 25429
4cc0665f
MR
25430@item set mips compression @var{arg}
25431@kindex set mips compression
25432@cindex code compression, @acronym{MIPS}
25433Tell @value{GDBN} which @acronym{MIPS} compressed
25434@acronym{ISA, Instruction Set Architecture} encoding is used by the
25435inferior. @value{GDBN} uses this for code disassembly and other
25436internal interpretation purposes. This setting is only referred to
25437when no executable has been associated with the debugging session or
25438the executable does not provide information about the encoding it uses.
25439Otherwise this setting is automatically updated from information
25440provided by the executable.
25441
25442Possible values of @var{arg} are @samp{mips16} and @samp{micromips}.
25443The default compressed @acronym{ISA} encoding is @samp{mips16}, as
25444executables containing @acronym{MIPS16} code frequently are not
25445identified as such.
25446
25447This setting is ``sticky''; that is, it retains its value across
25448debugging sessions until reset either explicitly with this command or
25449implicitly from an executable.
25450
25451The compiler and/or assembler typically add symbol table annotations to
25452identify functions compiled for the @acronym{MIPS16} or
25453@acronym{microMIPS} @acronym{ISA}s. If these function-scope annotations
25454are present, @value{GDBN} uses them in preference to the global
25455compressed @acronym{ISA} encoding setting.
25456
25457@item show mips compression
25458@kindex show mips compression
25459Show the @acronym{MIPS} compressed @acronym{ISA} encoding used by
25460@value{GDBN} to debug the inferior.
25461
a64548ea
EZ
25462@item set mipsfpu
25463@itemx show mipsfpu
25464@xref{MIPS Embedded, set mipsfpu}.
25465
25466@item set mips mask-address @var{arg}
25467@kindex set mips mask-address
eb17f351 25468@cindex @acronym{MIPS} addresses, masking
a64548ea 25469This command determines whether the most-significant 32 bits of 64-bit
eb17f351 25470@acronym{MIPS} addresses are masked off. The argument @var{arg} can be
a64548ea
EZ
25471@samp{on}, @samp{off}, or @samp{auto}. The latter is the default
25472setting, which lets @value{GDBN} determine the correct value.
25473
25474@item show mips mask-address
25475@kindex show mips mask-address
eb17f351 25476Show whether the upper 32 bits of @acronym{MIPS} addresses are masked off or
a64548ea
EZ
25477not.
25478
25479@item set remote-mips64-transfers-32bit-regs
25480@kindex set remote-mips64-transfers-32bit-regs
eb17f351
EZ
25481This command controls compatibility with 64-bit @acronym{MIPS} targets that
25482transfer data in 32-bit quantities. If you have an old @acronym{MIPS} 64 target
a64548ea
EZ
25483that transfers 32 bits for some registers, like @sc{sr} and @sc{fsr},
25484and 64 bits for other registers, set this option to @samp{on}.
25485
25486@item show remote-mips64-transfers-32bit-regs
25487@kindex show remote-mips64-transfers-32bit-regs
eb17f351 25488Show the current setting of compatibility with older @acronym{MIPS} 64 targets.
a64548ea
EZ
25489
25490@item set debug mips
25491@kindex set debug mips
eb17f351 25492This command turns on and off debugging messages for the @acronym{MIPS}-specific
a64548ea
EZ
25493target code in @value{GDBN}.
25494
25495@item show debug mips
25496@kindex show debug mips
eb17f351 25497Show the current setting of @acronym{MIPS} debugging messages.
a64548ea
EZ
25498@end table
25499
25500
25501@node HPPA
25502@subsection HPPA
25503@cindex HPPA support
25504
d3e8051b 25505When @value{GDBN} is debugging the HP PA architecture, it provides the
a64548ea
EZ
25506following special commands:
25507
25508@table @code
25509@item set debug hppa
25510@kindex set debug hppa
db2e3e2e 25511This command determines whether HPPA architecture-specific debugging
a64548ea
EZ
25512messages are to be displayed.
25513
25514@item show debug hppa
25515Show whether HPPA debugging messages are displayed.
25516
25517@item maint print unwind @var{address}
25518@kindex maint print unwind@r{, HPPA}
25519This command displays the contents of the unwind table entry at the
25520given @var{address}.
25521
25522@end table
25523
104c1213 25524
4acd40f3
TJB
25525@node PowerPC
25526@subsection PowerPC
25527@cindex PowerPC architecture
25528
25529When @value{GDBN} is debugging the PowerPC architecture, it provides a set of
25530pseudo-registers to enable inspection of 128-bit wide Decimal Floating Point
25531numbers stored in the floating point registers. These values must be stored
25532in two consecutive registers, always starting at an even register like
25533@code{f0} or @code{f2}.
25534
25535The pseudo-registers go from @code{$dl0} through @code{$dl15}, and are formed
25536by joining the even/odd register pairs @code{f0} and @code{f1} for @code{$dl0},
25537@code{f2} and @code{f3} for @code{$dl1} and so on.
25538
aeac0ff9 25539For POWER7 processors, @value{GDBN} provides a set of pseudo-registers, the 64-bit
677c5bb1
LM
25540wide Extended Floating Point Registers (@samp{f32} through @samp{f63}).
25541
a1217d97
SL
25542@node Nios II
25543@subsection Nios II
25544@cindex Nios II architecture
25545
25546When @value{GDBN} is debugging the Nios II architecture,
25547it provides the following special commands:
25548
25549@table @code
25550
25551@item set debug nios2
25552@kindex set debug nios2
25553This command turns on and off debugging messages for the Nios II
25554target code in @value{GDBN}.
25555
25556@item show debug nios2
25557@kindex show debug nios2
25558Show the current setting of Nios II debugging messages.
25559@end table
23d964e7 25560
58afddc6
WP
25561@node Sparc64
25562@subsection Sparc64
25563@cindex Sparc64 support
25564@cindex Application Data Integrity
25565@subsubsection ADI Support
25566
25567The M7 processor supports an Application Data Integrity (ADI) feature that
25568detects invalid data accesses. When software allocates memory and enables
25569ADI on the allocated memory, it chooses a 4-bit version number, sets the
25570version in the upper 4 bits of the 64-bit pointer to that data, and stores
25571the 4-bit version in every cacheline of that data. Hardware saves the latter
25572in spare bits in the cache and memory hierarchy. On each load and store,
25573the processor compares the upper 4 VA (virtual address) bits to the
25574cacheline's version. If there is a mismatch, the processor generates a
25575version mismatch trap which can be either precise or disrupting. The trap
25576is an error condition which the kernel delivers to the process as a SIGSEGV
25577signal.
25578
25579Note that only 64-bit applications can use ADI and need to be built with
25580ADI-enabled.
25581
25582Values of the ADI version tags, which are in granularity of a
25583cacheline (64 bytes), can be viewed or modified.
25584
25585
25586@table @code
25587@kindex adi examine
25588@item adi (examine | x) [ / @var{n} ] @var{addr}
25589
25590The @code{adi examine} command displays the value of one ADI version tag per
25591cacheline.
25592
25593@var{n} is a decimal integer specifying the number in bytes; the default
25594is 1. It specifies how much ADI version information, at the ratio of 1:ADI
25595block size, to display.
25596
25597@var{addr} is the address in user address space where you want @value{GDBN}
25598to begin displaying the ADI version tags.
25599
25600Below is an example of displaying ADI versions of variable "shmaddr".
25601
25602@smallexample
25603(@value{GDBP}) adi x/100 shmaddr
25604 0xfff800010002c000: 0 0
25605@end smallexample
25606
25607@kindex adi assign
25608@item adi (assign | a) [ / @var{n} ] @var{addr} = @var{tag}
25609
25610The @code{adi assign} command is used to assign new ADI version tag
25611to an address.
25612
25613@var{n} is a decimal integer specifying the number in bytes;
25614the default is 1. It specifies how much ADI version information, at the
25615ratio of 1:ADI block size, to modify.
25616
25617@var{addr} is the address in user address space where you want @value{GDBN}
25618to begin modifying the ADI version tags.
25619
25620@var{tag} is the new ADI version tag.
25621
25622For example, do the following to modify then verify ADI versions of
25623variable "shmaddr":
25624
25625@smallexample
25626(@value{GDBP}) adi a/100 shmaddr = 7
25627(@value{GDBP}) adi x/100 shmaddr
25628 0xfff800010002c000: 7 7
25629@end smallexample
25630
25631@end table
25632
51d21d60
JD
25633@node S12Z
25634@subsection S12Z
25635@cindex S12Z support
25636
25637When @value{GDBN} is debugging the S12Z architecture,
25638it provides the following special command:
25639
25640@table @code
25641@item maint info bdccsr
25642@kindex maint info bdccsr@r{, S12Z}
25643This command displays the current value of the microprocessor's
25644BDCCSR register.
25645@end table
25646
25647
8e04817f
AC
25648@node Controlling GDB
25649@chapter Controlling @value{GDBN}
25650
25651You can alter the way @value{GDBN} interacts with you by using the
25652@code{set} command. For commands controlling how @value{GDBN} displays
79a6e687 25653data, see @ref{Print Settings, ,Print Settings}. Other settings are
8e04817f
AC
25654described here.
25655
25656@menu
25657* Prompt:: Prompt
25658* Editing:: Command editing
d620b259 25659* Command History:: Command history
8e04817f 25660* Screen Size:: Screen size
140a4bc0 25661* Output Styling:: Output styling
8e04817f 25662* Numbers:: Numbers
1e698235 25663* ABI:: Configuring the current ABI
bf88dd68 25664* Auto-loading:: Automatically loading associated files
8e04817f
AC
25665* Messages/Warnings:: Optional warnings and messages
25666* Debugging Output:: Optional messages about internal happenings
14fb1bac 25667* Other Misc Settings:: Other Miscellaneous Settings
8e04817f
AC
25668@end menu
25669
25670@node Prompt
25671@section Prompt
104c1213 25672
8e04817f 25673@cindex prompt
104c1213 25674
8e04817f
AC
25675@value{GDBN} indicates its readiness to read a command by printing a string
25676called the @dfn{prompt}. This string is normally @samp{(@value{GDBP})}. You
25677can change the prompt string with the @code{set prompt} command. For
25678instance, when debugging @value{GDBN} with @value{GDBN}, it is useful to change
25679the prompt in one of the @value{GDBN} sessions so that you can always tell
25680which one you are talking to.
104c1213 25681
8e04817f
AC
25682@emph{Note:} @code{set prompt} does not add a space for you after the
25683prompt you set. This allows you to set a prompt which ends in a space
25684or a prompt that does not.
104c1213 25685
8e04817f
AC
25686@table @code
25687@kindex set prompt
25688@item set prompt @var{newprompt}
25689Directs @value{GDBN} to use @var{newprompt} as its prompt string henceforth.
104c1213 25690
8e04817f
AC
25691@kindex show prompt
25692@item show prompt
25693Prints a line of the form: @samp{Gdb's prompt is: @var{your-prompt}}
104c1213
JM
25694@end table
25695
fa3a4f15
PM
25696Versions of @value{GDBN} that ship with Python scripting enabled have
25697prompt extensions. The commands for interacting with these extensions
25698are:
25699
25700@table @code
25701@kindex set extended-prompt
25702@item set extended-prompt @var{prompt}
25703Set an extended prompt that allows for substitutions.
25704@xref{gdb.prompt}, for a list of escape sequences that can be used for
25705substitution. Any escape sequences specified as part of the prompt
25706string are replaced with the corresponding strings each time the prompt
25707is displayed.
25708
25709For example:
25710
25711@smallexample
25712set extended-prompt Current working directory: \w (gdb)
25713@end smallexample
25714
25715Note that when an extended-prompt is set, it takes control of the
25716@var{prompt_hook} hook. @xref{prompt_hook}, for further information.
25717
25718@kindex show extended-prompt
25719@item show extended-prompt
25720Prints the extended prompt. Any escape sequences specified as part of
25721the prompt string with @code{set extended-prompt}, are replaced with the
25722corresponding strings each time the prompt is displayed.
25723@end table
25724
8e04817f 25725@node Editing
79a6e687 25726@section Command Editing
8e04817f
AC
25727@cindex readline
25728@cindex command line editing
104c1213 25729
703663ab 25730@value{GDBN} reads its input commands via the @dfn{Readline} interface. This
8e04817f
AC
25731@sc{gnu} library provides consistent behavior for programs which provide a
25732command line interface to the user. Advantages are @sc{gnu} Emacs-style
25733or @dfn{vi}-style inline editing of commands, @code{csh}-like history
25734substitution, and a storage and recall of command history across
25735debugging sessions.
104c1213 25736
8e04817f
AC
25737You may control the behavior of command line editing in @value{GDBN} with the
25738command @code{set}.
104c1213 25739
8e04817f
AC
25740@table @code
25741@kindex set editing
25742@cindex editing
25743@item set editing
25744@itemx set editing on
25745Enable command line editing (enabled by default).
104c1213 25746
8e04817f
AC
25747@item set editing off
25748Disable command line editing.
104c1213 25749
8e04817f
AC
25750@kindex show editing
25751@item show editing
25752Show whether command line editing is enabled.
104c1213
JM
25753@end table
25754
39037522
TT
25755@ifset SYSTEM_READLINE
25756@xref{Command Line Editing, , , rluserman, GNU Readline Library},
25757@end ifset
25758@ifclear SYSTEM_READLINE
25759@xref{Command Line Editing},
25760@end ifclear
25761for more details about the Readline
703663ab
EZ
25762interface. Users unfamiliar with @sc{gnu} Emacs or @code{vi} are
25763encouraged to read that chapter.
25764
11061048
TT
25765@cindex Readline application name
25766@value{GDBN} sets the Readline application name to @samp{gdb}. This
25767is useful for conditions in @file{.inputrc}.
25768
c71acd15
TT
25769@cindex operate-and-get-next
25770@value{GDBN} defines a bindable Readline command,
25771@code{operate-and-get-next}. This is bound to @kbd{C-o} by default.
25772This command accepts the current line for execution and fetches the
25773next line relative to the current line from the history for editing.
25774Any argument is ignored.
25775
d620b259 25776@node Command History
79a6e687 25777@section Command History
703663ab 25778@cindex command history
8e04817f
AC
25779
25780@value{GDBN} can keep track of the commands you type during your
25781debugging sessions, so that you can be certain of precisely what
25782happened. Use these commands to manage the @value{GDBN} command
25783history facility.
104c1213 25784
703663ab 25785@value{GDBN} uses the @sc{gnu} History library, a part of the Readline
39037522
TT
25786package, to provide the history facility.
25787@ifset SYSTEM_READLINE
25788@xref{Using History Interactively, , , history, GNU History Library},
25789@end ifset
25790@ifclear SYSTEM_READLINE
25791@xref{Using History Interactively},
25792@end ifclear
25793for the detailed description of the History library.
703663ab 25794
d620b259 25795To issue a command to @value{GDBN} without affecting certain aspects of
9e6c4bd5
NR
25796the state which is seen by users, prefix it with @samp{server }
25797(@pxref{Server Prefix}). This
d620b259
NR
25798means that this command will not affect the command history, nor will it
25799affect @value{GDBN}'s notion of which command to repeat if @key{RET} is
25800pressed on a line by itself.
25801
25802@cindex @code{server}, command prefix
25803The server prefix does not affect the recording of values into the value
25804history; to print a value without recording it into the value history,
25805use the @code{output} command instead of the @code{print} command.
25806
703663ab
EZ
25807Here is the description of @value{GDBN} commands related to command
25808history.
25809
104c1213 25810@table @code
8e04817f
AC
25811@cindex history substitution
25812@cindex history file
25813@kindex set history filename
4644b6e3 25814@cindex @env{GDBHISTFILE}, environment variable
63e163f2 25815@item set history filename @r{[}@var{fname}@r{]}
8e04817f
AC
25816Set the name of the @value{GDBN} command history file to @var{fname}.
25817This is the file where @value{GDBN} reads an initial command history
25818list, and where it writes the command history from this session when it
25819exits. You can access this list through history expansion or through
25820the history command editing characters listed below. This file defaults
e43c3e2a 25821to the value of the environment variable @env{GDBHISTFILE}, or to
8e04817f
AC
25822@file{./.gdb_history} (@file{./_gdb_history} on MS-DOS) if this variable
25823is not set.
104c1213 25824
e43c3e2a 25825The @env{GDBHISTFILE} environment variable is read after processing
63e163f2
AB
25826any @value{GDBN} initialization files (@pxref{Startup}) and after
25827processing any commands passed using command line options (for
25828example, @code{-ex}).
25829
e43c3e2a 25830If the @var{fname} argument is not given, or if the @env{GDBHISTFILE}
63e163f2
AB
25831is the empty string then @value{GDBN} will neither try to load an
25832existing history file, nor will it try to save the history on exit.
25833
9c16f35a
EZ
25834@cindex save command history
25835@kindex set history save
8e04817f
AC
25836@item set history save
25837@itemx set history save on
25838Record command history in a file, whose name may be specified with the
63e163f2
AB
25839@code{set history filename} command. By default, this option is
25840disabled. The command history will be recorded when @value{GDBN}
25841exits. If @code{set history filename} is set to the empty string then
25842history saving is disabled, even when @code{set history save} is
25843@code{on}.
104c1213 25844
8e04817f 25845@item set history save off
63e163f2
AB
25846Don't record the command history into the file specified by @code{set
25847history filename} when @value{GDBN} exits.
104c1213 25848
8e04817f 25849@cindex history size
9c16f35a 25850@kindex set history size
b58c513b 25851@cindex @env{GDBHISTSIZE}, environment variable
8e04817f 25852@item set history size @var{size}
f81d1120 25853@itemx set history size unlimited
8e04817f 25854Set the number of commands which @value{GDBN} keeps in its history list.
bc460514
PP
25855This defaults to the value of the environment variable @env{GDBHISTSIZE}, or
25856to 256 if this variable is not set. Non-numeric values of @env{GDBHISTSIZE}
0eacb298
PP
25857are ignored. If @var{size} is @code{unlimited} or if @env{GDBHISTSIZE} is
25858either a negative number or the empty string, then the number of commands
25859@value{GDBN} keeps in the history list is unlimited.
fc637f04 25860
e43c3e2a 25861The @env{GDBHISTSIZE} environment variable is read after processing
63e163f2
AB
25862any @value{GDBN} initialization files (@pxref{Startup}) and after
25863processing any commands passed using command line options (for
25864example, @code{-ex}).
25865
fc637f04
PP
25866@cindex remove duplicate history
25867@kindex set history remove-duplicates
25868@item set history remove-duplicates @var{count}
25869@itemx set history remove-duplicates unlimited
25870Control the removal of duplicate history entries in the command history list.
25871If @var{count} is non-zero, @value{GDBN} will look back at the last @var{count}
25872history entries and remove the first entry that is a duplicate of the current
25873entry being added to the command history list. If @var{count} is
25874@code{unlimited} then this lookbehind is unbounded. If @var{count} is 0, then
25875removal of duplicate history entries is disabled.
25876
25877Only history entries added during the current session are considered for
25878removal. This option is set to 0 by default.
25879
104c1213
JM
25880@end table
25881
8e04817f 25882History expansion assigns special meaning to the character @kbd{!}.
39037522
TT
25883@ifset SYSTEM_READLINE
25884@xref{Event Designators, , , history, GNU History Library},
25885@end ifset
25886@ifclear SYSTEM_READLINE
25887@xref{Event Designators},
25888@end ifclear
25889for more details.
8e04817f 25890
703663ab 25891@cindex history expansion, turn on/off
8e04817f
AC
25892Since @kbd{!} is also the logical not operator in C, history expansion
25893is off by default. If you decide to enable history expansion with the
25894@code{set history expansion on} command, you may sometimes need to
25895follow @kbd{!} (when it is used as logical not, in an expression) with
25896a space or a tab to prevent it from being expanded. The readline
25897history facilities do not attempt substitution on the strings
25898@kbd{!=} and @kbd{!(}, even when history expansion is enabled.
25899
25900The commands to control history expansion are:
104c1213
JM
25901
25902@table @code
8e04817f
AC
25903@item set history expansion on
25904@itemx set history expansion
703663ab 25905@kindex set history expansion
8e04817f 25906Enable history expansion. History expansion is off by default.
104c1213 25907
8e04817f
AC
25908@item set history expansion off
25909Disable history expansion.
104c1213 25910
8e04817f
AC
25911@c @group
25912@kindex show history
25913@item show history
25914@itemx show history filename
25915@itemx show history save
25916@itemx show history size
25917@itemx show history expansion
25918These commands display the state of the @value{GDBN} history parameters.
25919@code{show history} by itself displays all four states.
25920@c @end group
25921@end table
25922
25923@table @code
9c16f35a
EZ
25924@kindex show commands
25925@cindex show last commands
25926@cindex display command history
8e04817f
AC
25927@item show commands
25928Display the last ten commands in the command history.
104c1213 25929
8e04817f
AC
25930@item show commands @var{n}
25931Print ten commands centered on command number @var{n}.
25932
25933@item show commands +
25934Print ten commands just after the commands last printed.
104c1213
JM
25935@end table
25936
8e04817f 25937@node Screen Size
79a6e687 25938@section Screen Size
8e04817f 25939@cindex size of screen
f179cf97
EZ
25940@cindex screen size
25941@cindex pagination
25942@cindex page size
8e04817f 25943@cindex pauses in output
104c1213 25944
8e04817f
AC
25945Certain commands to @value{GDBN} may produce large amounts of
25946information output to the screen. To help you read all of it,
25947@value{GDBN} pauses and asks you for input at the end of each page of
eb6af809
TT
25948output. Type @key{RET} when you want to see one more page of output,
25949@kbd{q} to discard the remaining output, or @kbd{c} to continue
25950without paging for the rest of the current command. Also, the screen
25951width setting determines when to wrap lines of output. Depending on
25952what is being printed, @value{GDBN} tries to break the line at a
25953readable place, rather than simply letting it overflow onto the
25954following line.
8e04817f
AC
25955
25956Normally @value{GDBN} knows the size of the screen from the terminal
25957driver software. For example, on Unix @value{GDBN} uses the termcap data base
e43c3e2a 25958together with the value of the @env{TERM} environment variable and the
8e04817f
AC
25959@code{stty rows} and @code{stty cols} settings. If this is not correct,
25960you can override it with the @code{set height} and @code{set
25961width} commands:
25962
25963@table @code
25964@kindex set height
25965@kindex set width
25966@kindex show width
25967@kindex show height
25968@item set height @var{lpp}
f81d1120 25969@itemx set height unlimited
8e04817f
AC
25970@itemx show height
25971@itemx set width @var{cpl}
f81d1120 25972@itemx set width unlimited
8e04817f
AC
25973@itemx show width
25974These @code{set} commands specify a screen height of @var{lpp} lines and
25975a screen width of @var{cpl} characters. The associated @code{show}
25976commands display the current settings.
104c1213 25977
f81d1120
PA
25978If you specify a height of either @code{unlimited} or zero lines,
25979@value{GDBN} does not pause during output no matter how long the
25980output is. This is useful if output is to a file or to an editor
25981buffer.
104c1213 25982
f81d1120
PA
25983Likewise, you can specify @samp{set width unlimited} or @samp{set
25984width 0} to prevent @value{GDBN} from wrapping its output.
9c16f35a
EZ
25985
25986@item set pagination on
25987@itemx set pagination off
25988@kindex set pagination
25989Turn the output pagination on or off; the default is on. Turning
f81d1120 25990pagination off is the alternative to @code{set height unlimited}. Note that
7c953934
TT
25991running @value{GDBN} with the @option{--batch} option (@pxref{Mode
25992Options, -batch}) also automatically disables pagination.
9c16f35a
EZ
25993
25994@item show pagination
25995@kindex show pagination
25996Show the current pagination mode.
104c1213
JM
25997@end table
25998
140a4bc0
TT
25999@node Output Styling
26000@section Output Styling
26001@cindex styling
26002@cindex colors
26003
26004@kindex set style
26005@kindex show style
26006@value{GDBN} can style its output on a capable terminal. This is
7557a514
AH
26007enabled by default on most systems, but disabled by default when in
26008batch mode (@pxref{Mode Options}). Various style settings are available;
26009and styles can also be disabled entirely.
140a4bc0
TT
26010
26011@table @code
26012@item set style enabled @samp{on|off}
26013Enable or disable all styling. The default is host-dependent, with
26014most hosts defaulting to @samp{on}.
26015
26016@item show style enabled
26017Show the current state of styling.
d085f989
TT
26018
26019@item set style sources @samp{on|off}
26020Enable or disable source code styling. This affects whether source
26021code, such as the output of the @code{list} command, is styled. Note
26022that source styling only works if styling in general is enabled, and
26023if @value{GDBN} was linked with the GNU Source Highlight library. The
26024default is @samp{on}.
26025
26026@item show style sources
26027Show the current state of source code styling.
140a4bc0
TT
26028@end table
26029
26030Subcommands of @code{set style} control specific forms of styling.
26031These subcommands all follow the same pattern: each style-able object
26032can be styled with a foreground color, a background color, and an
26033intensity.
26034
26035For example, the style of file names can be controlled using the
26036@code{set style filename} group of commands:
26037
26038@table @code
26039@item set style filename background @var{color}
26040Set the background to @var{color}. Valid colors are @samp{none}
26041(meaning the terminal's default color), @samp{black}, @samp{red},
e3624a40 26042@samp{green}, @samp{yellow}, @samp{blue}, @samp{magenta}, @samp{cyan},
140a4bc0
TT
26043and@samp{white}.
26044
26045@item set style filename foreground @var{color}
26046Set the foreground to @var{color}. Valid colors are @samp{none}
26047(meaning the terminal's default color), @samp{black}, @samp{red},
e3624a40 26048@samp{green}, @samp{yellow}, @samp{blue}, @samp{magenta}, @samp{cyan},
140a4bc0
TT
26049and@samp{white}.
26050
26051@item set style filename intensity @var{value}
26052Set the intensity to @var{value}. Valid intensities are @samp{normal}
26053(the default), @samp{bold}, and @samp{dim}.
26054@end table
26055
e664d728
PW
26056The @code{show style} command and its subcommands are styling
26057a style name in their output using its own style.
26058So, use @command{show style} to see the complete list of styles,
26059their characteristics and the visual aspect of each style.
26060
140a4bc0
TT
26061The style-able objects are:
26062@table @code
26063@item filename
e3624a40
EZ
26064Control the styling of file names. By default, this style's
26065foreground color is green.
140a4bc0
TT
26066
26067@item function
26068Control the styling of function names. These are managed with the
e3624a40
EZ
26069@code{set style function} family of commands. By default, this
26070style's foreground color is yellow.
140a4bc0
TT
26071
26072@item variable
26073Control the styling of variable names. These are managed with the
e3624a40
EZ
26074@code{set style variable} family of commands. By default, this style's
26075foreground color is cyan.
140a4bc0
TT
26076
26077@item address
26078Control the styling of addresses. These are managed with the
e3624a40
EZ
26079@code{set style address} family of commands. By default, this style's
26080foreground color is blue.
e664d728 26081
9d2d8a16
AB
26082@item version
26083Control the styling of @value{GDBN}'s version number text. By
26084default, this style's foreground color is magenta and it has bold
26085intensity. The version number is displayed in two places, the output
26086of @command{show version}, and when @value{GDBN} starts up.
26087
92e4e97a
AB
26088In order to control how @value{GDBN} styles the version number at
26089startup, add the @code{set style version} family of commands to the
26090early initialization command file (@pxref{Initialization
26091Files}).
9d2d8a16 26092
e664d728
PW
26093@item title
26094Control the styling of titles. These are managed with the
26095@code{set style title} family of commands. By default, this style's
26096intensity is bold. Commands are using the title style to improve
6b92c0d3 26097the readability of large output. For example, the commands
e664d728
PW
26098@command{apropos} and @command{help} are using the title style
26099for the command names.
26100
26101@item highlight
26102Control the styling of highlightings. These are managed with the
26103@code{set style highlight} family of commands. By default, this style's
26104foreground color is red. Commands are using the highlight style to draw
26105the user attention to some specific parts of their output. For example,
26106the command @command{apropos -v REGEXP} uses the highlight style to
26107mark the documentation parts matching @var{regexp}.
26108
a2a7af0c
TT
26109@item tui-border
26110Control the styling of the TUI border. Note that, unlike other
26111styling options, only the color of the border can be controlled via
26112@code{set style}. This was done for compatibility reasons, as TUI
26113controls to set the border's intensity predated the addition of
26114general styling to @value{GDBN}. @xref{TUI Configuration}.
26115
26116@item tui-active-border
26117Control the styling of the active TUI border; that is, the TUI window
26118that has the focus.
26119
140a4bc0
TT
26120@end table
26121
8e04817f
AC
26122@node Numbers
26123@section Numbers
26124@cindex number representation
26125@cindex entering numbers
104c1213 26126
8e04817f
AC
26127You can always enter numbers in octal, decimal, or hexadecimal in
26128@value{GDBN} by the usual conventions: octal numbers begin with
26129@samp{0}, decimal numbers end with @samp{.}, and hexadecimal numbers
eb2dae08
EZ
26130begin with @samp{0x}. Numbers that neither begin with @samp{0} or
26131@samp{0x}, nor end with a @samp{.} are, by default, entered in base
2613210; likewise, the default display for numbers---when no particular
26133format is specified---is base 10. You can change the default base for
26134both input and output with the commands described below.
104c1213 26135
8e04817f
AC
26136@table @code
26137@kindex set input-radix
26138@item set input-radix @var{base}
26139Set the default base for numeric input. Supported choices
697aa1b7 26140for @var{base} are decimal 8, 10, or 16. The base must itself be
eb2dae08 26141specified either unambiguously or using the current input radix; for
8e04817f 26142example, any of
104c1213 26143
8e04817f 26144@smallexample
9c16f35a
EZ
26145set input-radix 012
26146set input-radix 10.
26147set input-radix 0xa
8e04817f 26148@end smallexample
104c1213 26149
8e04817f 26150@noindent
9c16f35a 26151sets the input base to decimal. On the other hand, @samp{set input-radix 10}
eb2dae08
EZ
26152leaves the input radix unchanged, no matter what it was, since
26153@samp{10}, being without any leading or trailing signs of its base, is
26154interpreted in the current radix. Thus, if the current radix is 16,
26155@samp{10} is interpreted in hex, i.e.@: as 16 decimal, which doesn't
26156change the radix.
104c1213 26157
8e04817f
AC
26158@kindex set output-radix
26159@item set output-radix @var{base}
26160Set the default base for numeric display. Supported choices
697aa1b7 26161for @var{base} are decimal 8, 10, or 16. The base must itself be
eb2dae08 26162specified either unambiguously or using the current input radix.
104c1213 26163
8e04817f
AC
26164@kindex show input-radix
26165@item show input-radix
26166Display the current default base for numeric input.
104c1213 26167
8e04817f
AC
26168@kindex show output-radix
26169@item show output-radix
26170Display the current default base for numeric display.
9c16f35a
EZ
26171
26172@item set radix @r{[}@var{base}@r{]}
26173@itemx show radix
26174@kindex set radix
26175@kindex show radix
26176These commands set and show the default base for both input and output
26177of numbers. @code{set radix} sets the radix of input and output to
26178the same base; without an argument, it resets the radix back to its
26179default value of 10.
26180
8e04817f 26181@end table
104c1213 26182
1e698235 26183@node ABI
79a6e687 26184@section Configuring the Current ABI
1e698235
DJ
26185
26186@value{GDBN} can determine the @dfn{ABI} (Application Binary Interface) of your
26187application automatically. However, sometimes you need to override its
26188conclusions. Use these commands to manage @value{GDBN}'s view of the
26189current ABI.
26190
98b45e30
DJ
26191@cindex OS ABI
26192@kindex set osabi
b4e9345d 26193@kindex show osabi
430ed3f0 26194@cindex Newlib OS ABI and its influence on the longjmp handling
98b45e30
DJ
26195
26196One @value{GDBN} configuration can debug binaries for multiple operating
b383017d 26197system targets, either via remote debugging or native emulation.
98b45e30
DJ
26198@value{GDBN} will autodetect the @dfn{OS ABI} (Operating System ABI) in use,
26199but you can override its conclusion using the @code{set osabi} command.
26200One example where this is useful is in debugging of binaries which use
26201an alternate C library (e.g.@: @sc{uClibc} for @sc{gnu}/Linux) which does
26202not have the same identifying marks that the standard C library for your
26203platform provides.
26204
430ed3f0
MS
26205When @value{GDBN} is debugging the AArch64 architecture, it provides a
26206``Newlib'' OS ABI. This is useful for handling @code{setjmp} and
26207@code{longjmp} when debugging binaries that use the @sc{newlib} C library.
26208The ``Newlib'' OS ABI can be selected by @code{set osabi Newlib}.
26209
98b45e30
DJ
26210@table @code
26211@item show osabi
26212Show the OS ABI currently in use.
26213
26214@item set osabi
26215With no argument, show the list of registered available OS ABI's.
26216
26217@item set osabi @var{abi}
26218Set the current OS ABI to @var{abi}.
26219@end table
26220
1e698235 26221@cindex float promotion
1e698235
DJ
26222
26223Generally, the way that an argument of type @code{float} is passed to a
26224function depends on whether the function is prototyped. For a prototyped
26225(i.e.@: ANSI/ISO style) function, @code{float} arguments are passed unchanged,
26226according to the architecture's convention for @code{float}. For unprototyped
26227(i.e.@: K&R style) functions, @code{float} arguments are first promoted to type
26228@code{double} and then passed.
26229
26230Unfortunately, some forms of debug information do not reliably indicate whether
26231a function is prototyped. If @value{GDBN} calls a function that is not marked
26232as prototyped, it consults @kbd{set coerce-float-to-double}.
26233
26234@table @code
a8f24a35 26235@kindex set coerce-float-to-double
1e698235
DJ
26236@item set coerce-float-to-double
26237@itemx set coerce-float-to-double on
26238Arguments of type @code{float} will be promoted to @code{double} when passed
26239to an unprototyped function. This is the default setting.
26240
26241@item set coerce-float-to-double off
26242Arguments of type @code{float} will be passed directly to unprototyped
26243functions.
9c16f35a
EZ
26244
26245@kindex show coerce-float-to-double
26246@item show coerce-float-to-double
26247Show the current setting of promoting @code{float} to @code{double}.
1e698235
DJ
26248@end table
26249
f1212245
DJ
26250@kindex set cp-abi
26251@kindex show cp-abi
26252@value{GDBN} needs to know the ABI used for your program's C@t{++}
26253objects. The correct C@t{++} ABI depends on which C@t{++} compiler was
26254used to build your application. @value{GDBN} only fully supports
26255programs with a single C@t{++} ABI; if your program contains code using
26256multiple C@t{++} ABI's or if @value{GDBN} can not identify your
26257program's ABI correctly, you can tell @value{GDBN} which ABI to use.
26258Currently supported ABI's include ``gnu-v2'', for @code{g++} versions
26259before 3.0, ``gnu-v3'', for @code{g++} versions 3.0 and later, and
26260``hpaCC'' for the HP ANSI C@t{++} compiler. Other C@t{++} compilers may
26261use the ``gnu-v2'' or ``gnu-v3'' ABI's as well. The default setting is
26262``auto''.
26263
26264@table @code
26265@item show cp-abi
26266Show the C@t{++} ABI currently in use.
26267
26268@item set cp-abi
26269With no argument, show the list of supported C@t{++} ABI's.
26270
26271@item set cp-abi @var{abi}
26272@itemx set cp-abi auto
26273Set the current C@t{++} ABI to @var{abi}, or return to automatic detection.
26274@end table
26275
bf88dd68
JK
26276@node Auto-loading
26277@section Automatically loading associated files
26278@cindex auto-loading
26279
26280@value{GDBN} sometimes reads files with commands and settings automatically,
26281without being explicitly told so by the user. We call this feature
26282@dfn{auto-loading}. While auto-loading is useful for automatically adapting
26283@value{GDBN} to the needs of your project, it can sometimes produce unexpected
26284results or introduce security risks (e.g., if the file comes from untrusted
26285sources).
26286
71b8c845
DE
26287There are various kinds of files @value{GDBN} can automatically load.
26288In addition to these files, @value{GDBN} supports auto-loading code written
26289in various extension languages. @xref{Auto-loading extensions}.
26290
c1668e4e
JK
26291Note that loading of these associated files (including the local @file{.gdbinit}
26292file) requires accordingly configured @code{auto-load safe-path}
26293(@pxref{Auto-loading safe path}).
26294
bf88dd68
JK
26295For these reasons, @value{GDBN} includes commands and options to let you
26296control when to auto-load files and which files should be auto-loaded.
26297
26298@table @code
26299@anchor{set auto-load off}
26300@kindex set auto-load off
26301@item set auto-load off
26302Globally disable loading of all auto-loaded files.
26303You may want to use this command with the @samp{-iex} option
26304(@pxref{Option -init-eval-command}) such as:
26305@smallexample
26306$ @kbd{gdb -iex "set auto-load off" untrusted-executable corefile}
26307@end smallexample
26308
26309Be aware that system init file (@pxref{System-wide configuration})
26310and init files from your home directory (@pxref{Home Directory Init File})
26311still get read (as they come from generally trusted directories).
26312To prevent @value{GDBN} from auto-loading even those init files, use the
26313@option{-nx} option (@pxref{Mode Options}), in addition to
26314@code{set auto-load no}.
26315
26316@anchor{show auto-load}
26317@kindex show auto-load
26318@item show auto-load
26319Show whether auto-loading of each specific @samp{auto-load} file(s) is enabled
26320or disabled.
26321
26322@smallexample
26323(gdb) show auto-load
26324gdb-scripts: Auto-loading of canned sequences of commands scripts is on.
26325libthread-db: Auto-loading of inferior specific libthread_db is on.
1ccacbcd
JK
26326local-gdbinit: Auto-loading of .gdbinit script from current directory
26327 is on.
bf88dd68 26328python-scripts: Auto-loading of Python scripts is on.
bccbefd2 26329safe-path: List of directories from which it is safe to auto-load files
1564a261 26330 is $debugdir:$datadir/auto-load.
7349ff92 26331scripts-directory: List of directories from which to load auto-loaded scripts
1564a261 26332 is $debugdir:$datadir/auto-load.
bf88dd68
JK
26333@end smallexample
26334
26335@anchor{info auto-load}
26336@kindex info auto-load
26337@item info auto-load
26338Print whether each specific @samp{auto-load} file(s) have been auto-loaded or
26339not.
26340
26341@smallexample
26342(gdb) info auto-load
26343gdb-scripts:
26344Loaded Script
26345Yes /home/user/gdb/gdb-gdb.gdb
26346libthread-db: No auto-loaded libthread-db.
1ccacbcd
JK
26347local-gdbinit: Local .gdbinit file "/home/user/gdb/.gdbinit" has been
26348 loaded.
bf88dd68
JK
26349python-scripts:
26350Loaded Script
26351Yes /home/user/gdb/gdb-gdb.py
26352@end smallexample
26353@end table
26354
bf88dd68
JK
26355These are @value{GDBN} control commands for the auto-loading:
26356
26357@multitable @columnfractions .5 .5
26358@item @xref{set auto-load off}.
26359@tab Disable auto-loading globally.
26360@item @xref{show auto-load}.
26361@tab Show setting of all kinds of files.
26362@item @xref{info auto-load}.
26363@tab Show state of all kinds of files.
26364@item @xref{set auto-load gdb-scripts}.
26365@tab Control for @value{GDBN} command scripts.
26366@item @xref{show auto-load gdb-scripts}.
26367@tab Show setting of @value{GDBN} command scripts.
26368@item @xref{info auto-load gdb-scripts}.
26369@tab Show state of @value{GDBN} command scripts.
26370@item @xref{set auto-load python-scripts}.
26371@tab Control for @value{GDBN} Python scripts.
26372@item @xref{show auto-load python-scripts}.
26373@tab Show setting of @value{GDBN} Python scripts.
26374@item @xref{info auto-load python-scripts}.
26375@tab Show state of @value{GDBN} Python scripts.
ed3ef339
DE
26376@item @xref{set auto-load guile-scripts}.
26377@tab Control for @value{GDBN} Guile scripts.
26378@item @xref{show auto-load guile-scripts}.
26379@tab Show setting of @value{GDBN} Guile scripts.
26380@item @xref{info auto-load guile-scripts}.
26381@tab Show state of @value{GDBN} Guile scripts.
7349ff92
JK
26382@item @xref{set auto-load scripts-directory}.
26383@tab Control for @value{GDBN} auto-loaded scripts location.
26384@item @xref{show auto-load scripts-directory}.
26385@tab Show @value{GDBN} auto-loaded scripts location.
f10c5b19
JK
26386@item @xref{add-auto-load-scripts-directory}.
26387@tab Add directory for auto-loaded scripts location list.
bf88dd68
JK
26388@item @xref{set auto-load local-gdbinit}.
26389@tab Control for init file in the current directory.
26390@item @xref{show auto-load local-gdbinit}.
26391@tab Show setting of init file in the current directory.
26392@item @xref{info auto-load local-gdbinit}.
26393@tab Show state of init file in the current directory.
26394@item @xref{set auto-load libthread-db}.
26395@tab Control for thread debugging library.
26396@item @xref{show auto-load libthread-db}.
26397@tab Show setting of thread debugging library.
26398@item @xref{info auto-load libthread-db}.
26399@tab Show state of thread debugging library.
bccbefd2
JK
26400@item @xref{set auto-load safe-path}.
26401@tab Control directories trusted for automatic loading.
26402@item @xref{show auto-load safe-path}.
26403@tab Show directories trusted for automatic loading.
26404@item @xref{add-auto-load-safe-path}.
26405@tab Add directory trusted for automatic loading.
bf88dd68
JK
26406@end multitable
26407
04de9f3e
AB
26408@menu
26409* Init File in the Current Directory:: @samp{set/show/info auto-load local-gdbinit}
26410* libthread_db.so.1 file:: @samp{set/show/info auto-load libthread-db}
26411
26412* Auto-loading safe path:: @samp{set/show/info auto-load safe-path}
26413* Auto-loading verbose mode:: @samp{set/show debug auto-load}
26414@end menu
26415
bf88dd68
JK
26416@node Init File in the Current Directory
26417@subsection Automatically loading init file in the current directory
26418@cindex auto-loading init file in the current directory
26419
26420By default, @value{GDBN} reads and executes the canned sequences of commands
26421from init file (if any) in the current working directory,
26422see @ref{Init File in the Current Directory during Startup}.
26423
c1668e4e
JK
26424Note that loading of this local @file{.gdbinit} file also requires accordingly
26425configured @code{auto-load safe-path} (@pxref{Auto-loading safe path}).
26426
bf88dd68
JK
26427@table @code
26428@anchor{set auto-load local-gdbinit}
26429@kindex set auto-load local-gdbinit
26430@item set auto-load local-gdbinit [on|off]
26431Enable or disable the auto-loading of canned sequences of commands
26432(@pxref{Sequences}) found in init file in the current directory.
26433
26434@anchor{show auto-load local-gdbinit}
26435@kindex show auto-load local-gdbinit
26436@item show auto-load local-gdbinit
26437Show whether auto-loading of canned sequences of commands from init file in the
26438current directory is enabled or disabled.
26439
26440@anchor{info auto-load local-gdbinit}
26441@kindex info auto-load local-gdbinit
26442@item info auto-load local-gdbinit
26443Print whether canned sequences of commands from init file in the
26444current directory have been auto-loaded.
26445@end table
26446
26447@node libthread_db.so.1 file
26448@subsection Automatically loading thread debugging library
26449@cindex auto-loading libthread_db.so.1
26450
26451This feature is currently present only on @sc{gnu}/Linux native hosts.
26452
26453@value{GDBN} reads in some cases thread debugging library from places specific
26454to the inferior (@pxref{set libthread-db-search-path}).
26455
26456The special @samp{libthread-db-search-path} entry @samp{$sdir} is processed
26457without checking this @samp{set auto-load libthread-db} switch as system
26458libraries have to be trusted in general. In all other cases of
26459@samp{libthread-db-search-path} entries @value{GDBN} checks first if @samp{set
26460auto-load libthread-db} is enabled before trying to open such thread debugging
26461library.
26462
c1668e4e
JK
26463Note that loading of this debugging library also requires accordingly configured
26464@code{auto-load safe-path} (@pxref{Auto-loading safe path}).
26465
bf88dd68
JK
26466@table @code
26467@anchor{set auto-load libthread-db}
26468@kindex set auto-load libthread-db
26469@item set auto-load libthread-db [on|off]
26470Enable or disable the auto-loading of inferior specific thread debugging library.
26471
26472@anchor{show auto-load libthread-db}
26473@kindex show auto-load libthread-db
26474@item show auto-load libthread-db
26475Show whether auto-loading of inferior specific thread debugging library is
26476enabled or disabled.
26477
26478@anchor{info auto-load libthread-db}
26479@kindex info auto-load libthread-db
26480@item info auto-load libthread-db
26481Print the list of all loaded inferior specific thread debugging libraries and
26482for each such library print list of inferior @var{pid}s using it.
26483@end table
26484
bccbefd2
JK
26485@node Auto-loading safe path
26486@subsection Security restriction for auto-loading
26487@cindex auto-loading safe-path
26488
26489As the files of inferior can come from untrusted source (such as submitted by
26490an application user) @value{GDBN} does not always load any files automatically.
26491@value{GDBN} provides the @samp{set auto-load safe-path} setting to list
26492directories trusted for loading files not explicitly requested by user.
202cbf1c 26493Each directory can also be a shell wildcard pattern.
bccbefd2
JK
26494
26495If the path is not set properly you will see a warning and the file will not
26496get loaded:
26497
26498@smallexample
26499$ ./gdb -q ./gdb
0bab6cf1 26500Reading symbols from /home/user/gdb/gdb...
bccbefd2 26501warning: File "/home/user/gdb/gdb-gdb.gdb" auto-loading has been
1564a261
JK
26502 declined by your `auto-load safe-path' set
26503 to "$debugdir:$datadir/auto-load".
bccbefd2 26504warning: File "/home/user/gdb/gdb-gdb.py" auto-loading has been
1564a261
JK
26505 declined by your `auto-load safe-path' set
26506 to "$debugdir:$datadir/auto-load".
bccbefd2
JK
26507@end smallexample
26508
2c91021c
JK
26509@noindent
26510To instruct @value{GDBN} to go ahead and use the init files anyway,
26511invoke @value{GDBN} like this:
26512
26513@smallexample
26514$ gdb -q -iex "set auto-load safe-path /home/user/gdb" ./gdb
26515@end smallexample
26516
bccbefd2
JK
26517The list of trusted directories is controlled by the following commands:
26518
26519@table @code
26520@anchor{set auto-load safe-path}
26521@kindex set auto-load safe-path
af2c1515 26522@item set auto-load safe-path @r{[}@var{directories}@r{]}
bccbefd2
JK
26523Set the list of directories (and their subdirectories) trusted for automatic
26524loading and execution of scripts. You can also enter a specific trusted file.
202cbf1c
JK
26525Each directory can also be a shell wildcard pattern; wildcards do not match
26526directory separator - see @code{FNM_PATHNAME} for system function @code{fnmatch}
26527(@pxref{Wildcard Matching, fnmatch, , libc, GNU C Library Reference Manual}).
af2c1515
JK
26528If you omit @var{directories}, @samp{auto-load safe-path} will be reset to
26529its default value as specified during @value{GDBN} compilation.
26530
d9242c17 26531The list of directories uses path separator (@samp{:} on GNU and Unix
bccbefd2
JK
26532systems, @samp{;} on MS-Windows and MS-DOS) to separate directories, similarly
26533to the @env{PATH} environment variable.
26534
26535@anchor{show auto-load safe-path}
26536@kindex show auto-load safe-path
26537@item show auto-load safe-path
26538Show the list of directories trusted for automatic loading and execution of
26539scripts.
26540
26541@anchor{add-auto-load-safe-path}
26542@kindex add-auto-load-safe-path
26543@item add-auto-load-safe-path
413b59ae
JK
26544Add an entry (or list of entries) to the list of directories trusted for
26545automatic loading and execution of scripts. Multiple entries may be delimited
26546by the host platform path separator in use.
bccbefd2
JK
26547@end table
26548
7349ff92 26549This variable defaults to what @code{--with-auto-load-dir} has been configured
1564a261
JK
26550to (@pxref{with-auto-load-dir}). @file{$debugdir} and @file{$datadir}
26551substitution applies the same as for @ref{set auto-load scripts-directory}.
26552The default @code{set auto-load safe-path} value can be also overriden by
26553@value{GDBN} configuration option @option{--with-auto-load-safe-path}.
6dea1fbd 26554
6dea1fbd
JK
26555Setting this variable to @file{/} disables this security protection,
26556corresponding @value{GDBN} configuration option is
26557@option{--without-auto-load-safe-path}.
bccbefd2
JK
26558This variable is supposed to be set to the system directories writable by the
26559system superuser only. Users can add their source directories in init files in
26560their home directories (@pxref{Home Directory Init File}). See also deprecated
26561init file in the current directory
26562(@pxref{Init File in the Current Directory during Startup}).
26563
26564To force @value{GDBN} to load the files it declined to load in the previous
26565example, you could use one of the following ways:
26566
0511cc75
JK
26567@table @asis
26568@item @file{~/.gdbinit}: @samp{add-auto-load-safe-path ~/src/gdb}
bccbefd2
JK
26569Specify this trusted directory (or a file) as additional component of the list.
26570You have to specify also any existing directories displayed by
26571by @samp{show auto-load safe-path} (such as @samp{/usr:/bin} in this example).
26572
174bb630 26573@item @kbd{gdb -iex "set auto-load safe-path /usr:/bin:~/src/gdb" @dots{}}
bccbefd2
JK
26574Specify this directory as in the previous case but just for a single
26575@value{GDBN} session.
26576
af2c1515 26577@item @kbd{gdb -iex "set auto-load safe-path /" @dots{}}
bccbefd2
JK
26578Disable auto-loading safety for a single @value{GDBN} session.
26579This assumes all the files you debug during this @value{GDBN} session will come
26580from trusted sources.
26581
26582@item @kbd{./configure --without-auto-load-safe-path}
26583During compilation of @value{GDBN} you may disable any auto-loading safety.
26584This assumes all the files you will ever debug with this @value{GDBN} come from
26585trusted sources.
0511cc75 26586@end table
bccbefd2
JK
26587
26588On the other hand you can also explicitly forbid automatic files loading which
26589also suppresses any such warning messages:
26590
0511cc75 26591@table @asis
174bb630 26592@item @kbd{gdb -iex "set auto-load no" @dots{}}
bccbefd2
JK
26593You can use @value{GDBN} command-line option for a single @value{GDBN} session.
26594
0511cc75 26595@item @file{~/.gdbinit}: @samp{set auto-load no}
bccbefd2
JK
26596Disable auto-loading globally for the user
26597(@pxref{Home Directory Init File}). While it is improbable, you could also
26598use system init file instead (@pxref{System-wide configuration}).
0511cc75 26599@end table
bccbefd2
JK
26600
26601This setting applies to the file names as entered by user. If no entry matches
26602@value{GDBN} tries as a last resort to also resolve all the file names into
26603their canonical form (typically resolving symbolic links) and compare the
26604entries again. @value{GDBN} already canonicalizes most of the filenames on its
26605own before starting the comparison so a canonical form of directories is
26606recommended to be entered.
26607
4dc84fd1
JK
26608@node Auto-loading verbose mode
26609@subsection Displaying files tried for auto-load
26610@cindex auto-loading verbose mode
26611
26612For better visibility of all the file locations where you can place scripts to
26613be auto-loaded with inferior --- or to protect yourself against accidental
26614execution of untrusted scripts --- @value{GDBN} provides a feature for printing
26615all the files attempted to be loaded. Both existing and non-existing files may
26616be printed.
26617
26618For example the list of directories from which it is safe to auto-load files
26619(@pxref{Auto-loading safe path}) applies also to canonicalized filenames which
26620may not be too obvious while setting it up.
26621
26622@smallexample
0070f25a 26623(gdb) set debug auto-load on
4dc84fd1
JK
26624(gdb) file ~/src/t/true
26625auto-load: Loading canned sequences of commands script "/tmp/true-gdb.gdb"
26626 for objfile "/tmp/true".
26627auto-load: Updating directories of "/usr:/opt".
26628auto-load: Using directory "/usr".
26629auto-load: Using directory "/opt".
26630warning: File "/tmp/true-gdb.gdb" auto-loading has been declined
26631 by your `auto-load safe-path' set to "/usr:/opt".
26632@end smallexample
26633
26634@table @code
26635@anchor{set debug auto-load}
26636@kindex set debug auto-load
26637@item set debug auto-load [on|off]
26638Set whether to print the filenames attempted to be auto-loaded.
26639
26640@anchor{show debug auto-load}
26641@kindex show debug auto-load
26642@item show debug auto-load
26643Show whether printing of the filenames attempted to be auto-loaded is turned
26644on or off.
26645@end table
26646
8e04817f 26647@node Messages/Warnings
79a6e687 26648@section Optional Warnings and Messages
104c1213 26649
9c16f35a
EZ
26650@cindex verbose operation
26651@cindex optional warnings
8e04817f
AC
26652By default, @value{GDBN} is silent about its inner workings. If you are
26653running on a slow machine, you may want to use the @code{set verbose}
26654command. This makes @value{GDBN} tell you when it does a lengthy
26655internal operation, so you will not think it has crashed.
104c1213 26656
8e04817f
AC
26657Currently, the messages controlled by @code{set verbose} are those
26658which announce that the symbol table for a source file is being read;
79a6e687 26659see @code{symbol-file} in @ref{Files, ,Commands to Specify Files}.
104c1213 26660
8e04817f
AC
26661@table @code
26662@kindex set verbose
26663@item set verbose on
26664Enables @value{GDBN} output of certain informational messages.
104c1213 26665
8e04817f
AC
26666@item set verbose off
26667Disables @value{GDBN} output of certain informational messages.
104c1213 26668
8e04817f
AC
26669@kindex show verbose
26670@item show verbose
26671Displays whether @code{set verbose} is on or off.
26672@end table
104c1213 26673
8e04817f
AC
26674By default, if @value{GDBN} encounters bugs in the symbol table of an
26675object file, it is silent; but if you are debugging a compiler, you may
79a6e687
BW
26676find this information useful (@pxref{Symbol Errors, ,Errors Reading
26677Symbol Files}).
104c1213 26678
8e04817f 26679@table @code
104c1213 26680
8e04817f
AC
26681@kindex set complaints
26682@item set complaints @var{limit}
26683Permits @value{GDBN} to output @var{limit} complaints about each type of
26684unusual symbols before becoming silent about the problem. Set
26685@var{limit} to zero to suppress all complaints; set it to a large number
26686to prevent complaints from being suppressed.
104c1213 26687
8e04817f
AC
26688@kindex show complaints
26689@item show complaints
26690Displays how many symbol complaints @value{GDBN} is permitted to produce.
104c1213 26691
8e04817f 26692@end table
104c1213 26693
d837706a 26694@anchor{confirmation requests}
8e04817f
AC
26695By default, @value{GDBN} is cautious, and asks what sometimes seems to be a
26696lot of stupid questions to confirm certain commands. For example, if
26697you try to run a program which is already running:
104c1213 26698
474c8240 26699@smallexample
8e04817f
AC
26700(@value{GDBP}) run
26701The program being debugged has been started already.
26702Start it from the beginning? (y or n)
474c8240 26703@end smallexample
104c1213 26704
8e04817f
AC
26705If you are willing to unflinchingly face the consequences of your own
26706commands, you can disable this ``feature'':
104c1213 26707
8e04817f 26708@table @code
104c1213 26709
8e04817f
AC
26710@kindex set confirm
26711@cindex flinching
26712@cindex confirmation
26713@cindex stupid questions
26714@item set confirm off
7c953934
TT
26715Disables confirmation requests. Note that running @value{GDBN} with
26716the @option{--batch} option (@pxref{Mode Options, -batch}) also
26717automatically disables confirmation requests.
104c1213 26718
8e04817f
AC
26719@item set confirm on
26720Enables confirmation requests (the default).
104c1213 26721
8e04817f
AC
26722@kindex show confirm
26723@item show confirm
26724Displays state of confirmation requests.
26725
26726@end table
104c1213 26727
16026cd7
AS
26728@cindex command tracing
26729If you need to debug user-defined commands or sourced files you may find it
26730useful to enable @dfn{command tracing}. In this mode each command will be
26731printed as it is executed, prefixed with one or more @samp{+} symbols, the
26732quantity denoting the call depth of each command.
26733
26734@table @code
26735@kindex set trace-commands
26736@cindex command scripts, debugging
26737@item set trace-commands on
26738Enable command tracing.
26739@item set trace-commands off
26740Disable command tracing.
26741@item show trace-commands
26742Display the current state of command tracing.
26743@end table
26744
8e04817f 26745@node Debugging Output
79a6e687 26746@section Optional Messages about Internal Happenings
4644b6e3
EZ
26747@cindex optional debugging messages
26748
da316a69
EZ
26749@value{GDBN} has commands that enable optional debugging messages from
26750various @value{GDBN} subsystems; normally these commands are of
26751interest to @value{GDBN} maintainers, or when reporting a bug. This
26752section documents those commands.
26753
104c1213 26754@table @code
a8f24a35
EZ
26755@kindex set exec-done-display
26756@item set exec-done-display
26757Turns on or off the notification of asynchronous commands'
26758completion. When on, @value{GDBN} will print a message when an
26759asynchronous command finishes its execution. The default is off.
26760@kindex show exec-done-display
26761@item show exec-done-display
26762Displays the current setting of asynchronous command completion
26763notification.
7b085b1c 26764
4644b6e3 26765@kindex set debug
be9a8770
PA
26766@cindex ARM AArch64
26767@item set debug aarch64
26768Turns on or off display of debugging messages related to ARM AArch64.
26769The default is off.
26770@kindex show debug
26771@item show debug aarch64
26772Displays the current state of displaying debugging messages related to
26773ARM AArch64.
7b085b1c 26774
4644b6e3 26775@cindex gdbarch debugging info
a8f24a35 26776@cindex architecture debugging info
8e04817f 26777@item set debug arch
a8f24a35 26778Turns on or off display of gdbarch debugging info. The default is off
8e04817f
AC
26779@item show debug arch
26780Displays the current state of displaying gdbarch debugging info.
7b085b1c 26781
9a005eb9
JB
26782@item set debug aix-solib
26783@cindex AIX shared library debugging
26784Control display of debugging messages from the AIX shared library
26785support module. The default is off.
7b085b1c 26786@item show debug aix-solib
9a005eb9 26787Show the current state of displaying AIX shared library debugging messages.
7b085b1c 26788
721c2651
EZ
26789@item set debug aix-thread
26790@cindex AIX threads
26791Display debugging messages about inner workings of the AIX thread
26792module.
26793@item show debug aix-thread
26794Show the current state of AIX thread debugging info display.
7b085b1c 26795
900e11f9
JK
26796@item set debug check-physname
26797@cindex physname
26798Check the results of the ``physname'' computation. When reading DWARF
26799debugging information for C@t{++}, @value{GDBN} attempts to compute
26800each entity's name. @value{GDBN} can do this computation in two
26801different ways, depending on exactly what information is present.
26802When enabled, this setting causes @value{GDBN} to compute the names
26803both ways and display any discrepancies.
26804@item show debug check-physname
26805Show the current state of ``physname'' checking.
7b085b1c 26806
be9a8770
PA
26807@item set debug coff-pe-read
26808@cindex COFF/PE exported symbols
26809Control display of debugging messages related to reading of COFF/PE
26810exported symbols. The default is off.
26811@item show debug coff-pe-read
26812Displays the current state of displaying debugging messages related to
26813reading of COFF/PE exported symbols.
7b085b1c 26814
b4f54984
DE
26815@item set debug dwarf-die
26816@cindex DWARF DIEs
26817Dump DWARF DIEs after they are read in.
d97bc12b
DE
26818The value is the number of nesting levels to print.
26819A value of zero turns off the display.
b4f54984
DE
26820@item show debug dwarf-die
26821Show the current state of DWARF DIE debugging.
7b085b1c 26822
27e0867f
DE
26823@item set debug dwarf-line
26824@cindex DWARF Line Tables
26825Turns on or off display of debugging messages related to reading
26826DWARF line tables. The default is 0 (off).
26827A value of 1 provides basic information.
26828A value greater than 1 provides more verbose information.
26829@item show debug dwarf-line
26830Show the current state of DWARF line table debugging.
7b085b1c 26831
b4f54984
DE
26832@item set debug dwarf-read
26833@cindex DWARF Reading
45cfd468 26834Turns on or off display of debugging messages related to reading
73be47f5
DE
26835DWARF debug info. The default is 0 (off).
26836A value of 1 provides basic information.
26837A value greater than 1 provides more verbose information.
b4f54984
DE
26838@item show debug dwarf-read
26839Show the current state of DWARF reader debugging.
7b085b1c 26840
237fc4c9
PA
26841@item set debug displaced
26842@cindex displaced stepping debugging info
26843Turns on or off display of @value{GDBN} debugging info for the
26844displaced stepping support. The default is off.
26845@item show debug displaced
26846Displays the current state of displaying @value{GDBN} debugging info
26847related to displaced stepping.
7b085b1c 26848
8e04817f 26849@item set debug event
4644b6e3 26850@cindex event debugging info
a8f24a35 26851Turns on or off display of @value{GDBN} event debugging info. The
8e04817f 26852default is off.
8e04817f
AC
26853@item show debug event
26854Displays the current state of displaying @value{GDBN} event debugging
26855info.
7b085b1c 26856
8d378f27
SM
26857@item set debug event-loop
26858@cindex event-loop debugging
26859Controls output of debugging info about the event loop. The possible
26860values are @samp{off}, @samp{all} (shows all debugging info) and
26861@samp{all-except-ui} (shows all debugging info except those about
26862UI-related events).
26863@item show debug event-loop
26864Shows the current state of displaying debugging info about the event
26865loop.
26866
8e04817f 26867@item set debug expression
4644b6e3 26868@cindex expression debugging info
721c2651
EZ
26869Turns on or off display of debugging info about @value{GDBN}
26870expression parsing. The default is off.
8e04817f 26871@item show debug expression
721c2651
EZ
26872Displays the current state of displaying debugging info about
26873@value{GDBN} expression parsing.
7b085b1c 26874
6e9567fe
JB
26875@item set debug fbsd-lwp
26876@cindex FreeBSD LWP debug messages
26877Turns on or off debugging messages from the FreeBSD LWP debug support.
26878@item show debug fbsd-lwp
26879Show the current state of FreeBSD LWP debugging messages.
7b085b1c 26880
386a8676
JB
26881@item set debug fbsd-nat
26882@cindex FreeBSD native target debug messages
26883Turns on or off debugging messages from the FreeBSD native target.
26884@item show debug fbsd-nat
26885Show the current state of FreeBSD native target debugging messages.
7b085b1c 26886
a5c641b5
AB
26887@item set debug fortran-array-slicing
26888@cindex fortran array slicing debugging info
26889Turns on or off display of @value{GDBN} Fortran array slicing
26890debugging info. The default is off.
26891
26892@item show debug fortran-array-slicing
26893Displays the current state of displaying @value{GDBN} Fortran array
26894slicing debugging info.
26895
7453dc06 26896@item set debug frame
4644b6e3 26897@cindex frame debugging info
7453dc06
AC
26898Turns on or off display of @value{GDBN} frame debugging info. The
26899default is off.
7453dc06
AC
26900@item show debug frame
26901Displays the current state of displaying @value{GDBN} frame debugging
26902info.
7b085b1c 26903
cbe54154
PA
26904@item set debug gnu-nat
26905@cindex @sc{gnu}/Hurd debug messages
67ebd9cb 26906Turn on or off debugging messages from the @sc{gnu}/Hurd debug support.
cbe54154
PA
26907@item show debug gnu-nat
26908Show the current state of @sc{gnu}/Hurd debugging messages.
7b085b1c 26909
30e91e0b
RC
26910@item set debug infrun
26911@cindex inferior debugging info
26912Turns on or off display of @value{GDBN} debugging info for running the inferior.
26913The default is off. @file{infrun.c} contains GDB's runtime state machine used
26914for implementing operations such as single-stepping the inferior.
26915@item show debug infrun
26916Displays the current state of @value{GDBN} inferior debugging.
7b085b1c 26917
a255712f
PP
26918@item set debug jit
26919@cindex just-in-time compilation, debugging messages
67ebd9cb 26920Turn on or off debugging messages from JIT debug support.
a255712f
PP
26921@item show debug jit
26922Displays the current state of @value{GDBN} JIT debugging.
7b085b1c 26923
da316a69
EZ
26924@item set debug lin-lwp
26925@cindex @sc{gnu}/Linux LWP debug messages
26926@cindex Linux lightweight processes
67ebd9cb 26927Turn on or off debugging messages from the Linux LWP debug support.
da316a69
EZ
26928@item show debug lin-lwp
26929Show the current state of Linux LWP debugging messages.
7b085b1c 26930
7a6a1731
GB
26931@item set debug linux-namespaces
26932@cindex @sc{gnu}/Linux namespaces debug messages
67ebd9cb 26933Turn on or off debugging messages from the Linux namespaces debug support.
7a6a1731
GB
26934@item show debug linux-namespaces
26935Show the current state of Linux namespaces debugging messages.
7b085b1c 26936
be9a8770
PA
26937@item set debug mach-o
26938@cindex Mach-O symbols processing
26939Control display of debugging messages related to Mach-O symbols
26940processing. The default is off.
26941@item show debug mach-o
26942Displays the current state of displaying debugging messages related to
26943reading of COFF/PE exported symbols.
7b085b1c 26944
c9b6281a
YQ
26945@item set debug notification
26946@cindex remote async notification debugging info
67ebd9cb 26947Turn on or off debugging messages about remote async notification.
c9b6281a
YQ
26948The default is off.
26949@item show debug notification
26950Displays the current state of remote async notification debugging messages.
7b085b1c 26951
2b4855ab 26952@item set debug observer
4644b6e3 26953@cindex observer debugging info
2b4855ab
AC
26954Turns on or off display of @value{GDBN} observer debugging. This
26955includes info such as the notification of observable events.
2b4855ab
AC
26956@item show debug observer
26957Displays the current state of observer debugging.
7b085b1c 26958
8e04817f 26959@item set debug overload
4644b6e3 26960@cindex C@t{++} overload debugging info
8e04817f 26961Turns on or off display of @value{GDBN} C@t{++} overload debugging
359df76b 26962info. This includes info such as ranking of functions, etc. The default
8e04817f 26963is off.
8e04817f
AC
26964@item show debug overload
26965Displays the current state of displaying @value{GDBN} C@t{++} overload
26966debugging info.
7b085b1c 26967
92981e24
TT
26968@cindex expression parser, debugging info
26969@cindex debug expression parser
26970@item set debug parser
26971Turns on or off the display of expression parser debugging output.
26972Internally, this sets the @code{yydebug} variable in the expression
26973parser. @xref{Tracing, , Tracing Your Parser, bison, Bison}, for
26974details. The default is off.
26975@item show debug parser
26976Show the current state of expression parser debugging.
7b085b1c 26977
8e04817f
AC
26978@cindex packets, reporting on stdout
26979@cindex serial connections, debugging
605a56cb
DJ
26980@cindex debug remote protocol
26981@cindex remote protocol debugging
26982@cindex display remote packets
8e04817f
AC
26983@item set debug remote
26984Turns on or off display of reports on all packets sent back and forth across
26985the serial line to the remote machine. The info is printed on the
26986@value{GDBN} standard output stream. The default is off.
8e04817f
AC
26987@item show debug remote
26988Displays the state of display of remote packets.
c4dcb155 26989
6cc8564b
LM
26990@item set debug remote-packet-max-chars
26991Sets the maximum number of characters to display for each remote packet when
26992@code{set debug remote} is on. This is useful to prevent @value{GDBN} from
26993displaying lengthy remote packets and polluting the console.
26994
26995The default value is @code{512}, which means @value{GDBN} will truncate each
26996remote packet after 512 bytes.
26997
26998Setting this option to @code{unlimited} will disable truncation and will output
26999the full length of the remote packets.
27000@item show debug remote-packet-max-chars
27001Displays the number of bytes to output for remote packet debugging.
27002
c4dcb155
SM
27003@item set debug separate-debug-file
27004Turns on or off display of debug output about separate debug file search.
27005@item show debug separate-debug-file
27006Displays the state of separate debug file search debug output.
27007
8e04817f
AC
27008@item set debug serial
27009Turns on or off display of @value{GDBN} serial debugging info. The
27010default is off.
8e04817f
AC
27011@item show debug serial
27012Displays the current state of displaying @value{GDBN} serial debugging
27013info.
7b085b1c 27014
c45da7e6
EZ
27015@item set debug solib-frv
27016@cindex FR-V shared-library debugging
67ebd9cb 27017Turn on or off debugging messages for FR-V shared-library code.
c45da7e6
EZ
27018@item show debug solib-frv
27019Display the current state of FR-V shared-library code debugging
27020messages.
7b085b1c 27021
cc485e62
DE
27022@item set debug symbol-lookup
27023@cindex symbol lookup
27024Turns on or off display of debugging messages related to symbol lookup.
27025The default is 0 (off).
27026A value of 1 provides basic information.
27027A value greater than 1 provides more verbose information.
27028@item show debug symbol-lookup
27029Show the current state of symbol lookup debugging messages.
7b085b1c 27030
8fb8eb5c
DE
27031@item set debug symfile
27032@cindex symbol file functions
27033Turns on or off display of debugging messages related to symbol file functions.
27034The default is off. @xref{Files}.
27035@item show debug symfile
27036Show the current state of symbol file debugging messages.
7b085b1c 27037
45cfd468
DE
27038@item set debug symtab-create
27039@cindex symbol table creation
27040Turns on or off display of debugging messages related to symbol table creation.
db0fec5c
DE
27041The default is 0 (off).
27042A value of 1 provides basic information.
27043A value greater than 1 provides more verbose information.
45cfd468
DE
27044@item show debug symtab-create
27045Show the current state of symbol table creation debugging.
7b085b1c 27046
8e04817f 27047@item set debug target
4644b6e3 27048@cindex target debugging info
8e04817f
AC
27049Turns on or off display of @value{GDBN} target debugging info. This info
27050includes what is going on at the target level of GDB, as it happens. The
701b08bb 27051default is 0. Set it to 1 to track events, and to 2 to also track the
3cecbbbe 27052value of large memory transfers.
8e04817f
AC
27053@item show debug target
27054Displays the current state of displaying @value{GDBN} target debugging
27055info.
7b085b1c 27056
75feb17d 27057@item set debug timestamp
6b92c0d3 27058@cindex timestamping debugging info
75feb17d
DJ
27059Turns on or off display of timestamps with @value{GDBN} debugging info.
27060When enabled, seconds and microseconds are displayed before each debugging
27061message.
27062@item show debug timestamp
27063Displays the current state of displaying timestamps with @value{GDBN}
27064debugging info.
7b085b1c 27065
f989a1c8 27066@item set debug varobj
4644b6e3 27067@cindex variable object debugging info
8e04817f
AC
27068Turns on or off display of @value{GDBN} variable object debugging
27069info. The default is off.
f989a1c8 27070@item show debug varobj
8e04817f
AC
27071Displays the current state of displaying @value{GDBN} variable object
27072debugging info.
7b085b1c 27073
e776119f
DJ
27074@item set debug xml
27075@cindex XML parser debugging
67ebd9cb 27076Turn on or off debugging messages for built-in XML parsers.
e776119f
DJ
27077@item show debug xml
27078Displays the current state of XML debugging messages.
8e04817f 27079@end table
104c1213 27080
14fb1bac
JB
27081@node Other Misc Settings
27082@section Other Miscellaneous Settings
27083@cindex miscellaneous settings
27084
27085@table @code
27086@kindex set interactive-mode
27087@item set interactive-mode
7bfc9434
JB
27088If @code{on}, forces @value{GDBN} to assume that GDB was started
27089in a terminal. In practice, this means that @value{GDBN} should wait
27090for the user to answer queries generated by commands entered at
27091the command prompt. If @code{off}, forces @value{GDBN} to operate
27092in the opposite mode, and it uses the default answers to all queries.
27093If @code{auto} (the default), @value{GDBN} tries to determine whether
27094its standard input is a terminal, and works in interactive-mode if it
27095is, non-interactively otherwise.
14fb1bac
JB
27096
27097In the vast majority of cases, the debugger should be able to guess
27098correctly which mode should be used. But this setting can be useful
27099in certain specific cases, such as running a MinGW @value{GDBN}
27100inside a cygwin window.
27101
27102@kindex show interactive-mode
27103@item show interactive-mode
27104Displays whether the debugger is operating in interactive mode or not.
27105@end table
27106
d57a3c85
TJB
27107@node Extending GDB
27108@chapter Extending @value{GDBN}
27109@cindex extending GDB
27110
71b8c845
DE
27111@value{GDBN} provides several mechanisms for extension.
27112@value{GDBN} also provides the ability to automatically load
27113extensions when it reads a file for debugging. This allows the
27114user to automatically customize @value{GDBN} for the program
27115being debugged.
d57a3c85 27116
71b8c845 27117To facilitate the use of extension languages, @value{GDBN} is capable
95433b34 27118of evaluating the contents of a file. When doing so, @value{GDBN}
71b8c845 27119can recognize which extension language is being used by looking at
95433b34
JB
27120the filename extension. Files with an unrecognized filename extension
27121are always treated as a @value{GDBN} Command Files.
27122@xref{Command Files,, Command files}.
27123
27124You can control how @value{GDBN} evaluates these files with the following
27125setting:
27126
27127@table @code
27128@kindex set script-extension
27129@kindex show script-extension
27130@item set script-extension off
27131All scripts are always evaluated as @value{GDBN} Command Files.
27132
27133@item set script-extension soft
27134The debugger determines the scripting language based on filename
27135extension. If this scripting language is supported, @value{GDBN}
27136evaluates the script using that language. Otherwise, it evaluates
27137the file as a @value{GDBN} Command File.
27138
27139@item set script-extension strict
27140The debugger determines the scripting language based on filename
27141extension, and evaluates the script using that language. If the
27142language is not supported, then the evaluation fails.
27143
27144@item show script-extension
27145Display the current value of the @code{script-extension} option.
27146
27147@end table
27148
ed2a2229
CB
27149@ifset SYSTEM_GDBINIT_DIR
27150This setting is not used for files in the system-wide gdbinit directory.
27151Files in that directory must have an extension matching their language,
27152or have a @file{.gdb} extension to be interpreted as regular @value{GDBN}
27153commands. @xref{Startup}.
27154@end ifset
27155
04de9f3e
AB
27156@menu
27157* Sequences:: Canned Sequences of @value{GDBN} Commands
27158* Aliases:: Command Aliases
27159* Python:: Extending @value{GDBN} using Python
27160* Guile:: Extending @value{GDBN} using Guile
27161* Auto-loading extensions:: Automatically loading extensions
27162* Multiple Extension Languages:: Working with multiple extension languages
27163@end menu
27164
8e04817f 27165@node Sequences
d57a3c85 27166@section Canned Sequences of Commands
104c1213 27167
8e04817f 27168Aside from breakpoint commands (@pxref{Break Commands, ,Breakpoint
79a6e687 27169Command Lists}), @value{GDBN} provides two ways to store sequences of
8e04817f
AC
27170commands for execution as a unit: user-defined commands and command
27171files.
104c1213 27172
8e04817f 27173@menu
fcc73fe3
EZ
27174* Define:: How to define your own commands
27175* Hooks:: Hooks for user-defined commands
27176* Command Files:: How to write scripts of commands to be stored in a file
27177* Output:: Commands for controlled output
71b8c845 27178* Auto-loading sequences:: Controlling auto-loaded command files
8e04817f 27179@end menu
104c1213 27180
8e04817f 27181@node Define
d57a3c85 27182@subsection User-defined Commands
104c1213 27183
8e04817f 27184@cindex user-defined command
fcc73fe3 27185@cindex arguments, to user-defined commands
8e04817f
AC
27186A @dfn{user-defined command} is a sequence of @value{GDBN} commands to
27187which you assign a new name as a command. This is done with the
df3ee9ca 27188@code{define} command. User commands may accept an unlimited number of arguments
8e04817f 27189separated by whitespace. Arguments are accessed within the user command
df3ee9ca 27190via @code{$arg0@dots{}$argN}. A trivial example:
104c1213 27191
8e04817f
AC
27192@smallexample
27193define adder
27194 print $arg0 + $arg1 + $arg2
c03c782f 27195end
8e04817f 27196@end smallexample
104c1213
JM
27197
27198@noindent
8e04817f 27199To execute the command use:
104c1213 27200
8e04817f
AC
27201@smallexample
27202adder 1 2 3
27203@end smallexample
104c1213 27204
8e04817f
AC
27205@noindent
27206This defines the command @code{adder}, which prints the sum of
27207its three arguments. Note the arguments are text substitutions, so they may
27208reference variables, use complex expressions, or even perform inferior
27209functions calls.
104c1213 27210
fcc73fe3
EZ
27211@cindex argument count in user-defined commands
27212@cindex how many arguments (user-defined commands)
c03c782f 27213In addition, @code{$argc} may be used to find out how many arguments have
df3ee9ca 27214been passed.
c03c782f
AS
27215
27216@smallexample
27217define adder
27218 if $argc == 2
27219 print $arg0 + $arg1
27220 end
27221 if $argc == 3
27222 print $arg0 + $arg1 + $arg2
27223 end
27224end
27225@end smallexample
27226
01770bbd
PA
27227Combining with the @code{eval} command (@pxref{eval}) makes it easier
27228to process a variable number of arguments:
27229
27230@smallexample
27231define adder
27232 set $i = 0
27233 set $sum = 0
27234 while $i < $argc
27235 eval "set $sum = $sum + $arg%d", $i
27236 set $i = $i + 1
27237 end
27238 print $sum
27239end
27240@end smallexample
27241
104c1213 27242@table @code
104c1213 27243
8e04817f
AC
27244@kindex define
27245@item define @var{commandname}
27246Define a command named @var{commandname}. If there is already a command
27247by that name, you are asked to confirm that you want to redefine it.
697aa1b7 27248The argument @var{commandname} may be a bare command name consisting of letters,
bf498525
PW
27249numbers, dashes, dots, and underscores. It may also start with any
27250predefined or user-defined prefix command.
27251For example, @samp{define target my-target} creates
adb483fe 27252a user-defined @samp{target my-target} command.
104c1213 27253
8e04817f
AC
27254The definition of the command is made up of other @value{GDBN} command lines,
27255which are given following the @code{define} command. The end of these
27256commands is marked by a line containing @code{end}.
104c1213 27257
8e04817f 27258@kindex document
ca91424e 27259@kindex end@r{ (user-defined commands)}
8e04817f
AC
27260@item document @var{commandname}
27261Document the user-defined command @var{commandname}, so that it can be
27262accessed by @code{help}. The command @var{commandname} must already be
27263defined. This command reads lines of documentation just as @code{define}
27264reads the lines of the command definition, ending with @code{end}.
27265After the @code{document} command is finished, @code{help} on command
27266@var{commandname} displays the documentation you have written.
104c1213 27267
8e04817f
AC
27268You may use the @code{document} command again to change the
27269documentation of a command. Redefining the command with @code{define}
27270does not change the documentation.
104c1213 27271
bf498525
PW
27272@kindex define-prefix
27273@item define-prefix @var{commandname}
27274Define or mark the command @var{commandname} as a user-defined prefix
27275command. Once marked, @var{commandname} can be used as prefix command
27276by the @code{define} command.
27277Note that @code{define-prefix} can be used with a not yet defined
27278@var{commandname}. In such a case, @var{commandname} is defined as
27279an empty user-defined command.
27280In case you redefine a command that was marked as a user-defined
27281prefix command, the subcommands of the redefined command are kept
27282(and @value{GDBN} indicates so to the user).
27283
27284Example:
27285@example
27286(gdb) define-prefix abc
27287(gdb) define-prefix abc def
27288(gdb) define abc def
27289Type commands for definition of "abc def".
27290End with a line saying just "end".
27291>echo command initial def\n
27292>end
27293(gdb) define abc def ghi
27294Type commands for definition of "abc def ghi".
27295End with a line saying just "end".
27296>echo command ghi\n
27297>end
27298(gdb) define abc def
27299Keeping subcommands of prefix command "def".
27300Redefine command "def"? (y or n) y
27301Type commands for definition of "abc def".
27302End with a line saying just "end".
27303>echo command def\n
27304>end
27305(gdb) abc def ghi
27306command ghi
27307(gdb) abc def
27308command def
27309(gdb)
27310@end example
27311
c45da7e6
EZ
27312@kindex dont-repeat
27313@cindex don't repeat command
27314@item dont-repeat
27315Used inside a user-defined command, this tells @value{GDBN} that this
27316command should not be repeated when the user hits @key{RET}
27317(@pxref{Command Syntax, repeat last command}).
27318
8e04817f
AC
27319@kindex help user-defined
27320@item help user-defined
7d74f244 27321List all user-defined commands and all python commands defined in class
6b92c0d3 27322COMMAND_USER. The first line of the documentation or docstring is
7d74f244 27323included (if any).
104c1213 27324
8e04817f
AC
27325@kindex show user
27326@item show user
27327@itemx show user @var{commandname}
27328Display the @value{GDBN} commands used to define @var{commandname} (but
27329not its documentation). If no @var{commandname} is given, display the
27330definitions for all user-defined commands.
7d74f244 27331This does not work for user-defined python commands.
104c1213 27332
fcc73fe3 27333@cindex infinite recursion in user-defined commands
20f01a46
DH
27334@kindex show max-user-call-depth
27335@kindex set max-user-call-depth
27336@item show max-user-call-depth
5ca0cb28
DH
27337@itemx set max-user-call-depth
27338The value of @code{max-user-call-depth} controls how many recursion
3f94c067 27339levels are allowed in user-defined commands before @value{GDBN} suspects an
5ca0cb28 27340infinite recursion and aborts the command.
7d74f244 27341This does not apply to user-defined python commands.
104c1213
JM
27342@end table
27343
fcc73fe3
EZ
27344In addition to the above commands, user-defined commands frequently
27345use control flow commands, described in @ref{Command Files}.
27346
8e04817f
AC
27347When user-defined commands are executed, the
27348commands of the definition are not printed. An error in any command
27349stops execution of the user-defined command.
104c1213 27350
8e04817f
AC
27351If used interactively, commands that would ask for confirmation proceed
27352without asking when used inside a user-defined command. Many @value{GDBN}
27353commands that normally print messages to say what they are doing omit the
27354messages when used in a user-defined command.
104c1213 27355
8e04817f 27356@node Hooks
d57a3c85 27357@subsection User-defined Command Hooks
8e04817f
AC
27358@cindex command hooks
27359@cindex hooks, for commands
27360@cindex hooks, pre-command
104c1213 27361
8e04817f 27362@kindex hook
8e04817f
AC
27363You may define @dfn{hooks}, which are a special kind of user-defined
27364command. Whenever you run the command @samp{foo}, if the user-defined
27365command @samp{hook-foo} exists, it is executed (with no arguments)
27366before that command.
104c1213 27367
8e04817f
AC
27368@cindex hooks, post-command
27369@kindex hookpost
8e04817f
AC
27370A hook may also be defined which is run after the command you executed.
27371Whenever you run the command @samp{foo}, if the user-defined command
27372@samp{hookpost-foo} exists, it is executed (with no arguments) after
27373that command. Post-execution hooks may exist simultaneously with
27374pre-execution hooks, for the same command.
104c1213 27375
8e04817f 27376It is valid for a hook to call the command which it hooks. If this
9f1c6395 27377occurs, the hook is not re-executed, thereby avoiding infinite recursion.
104c1213 27378
8e04817f
AC
27379@c It would be nice if hookpost could be passed a parameter indicating
27380@c if the command it hooks executed properly or not. FIXME!
104c1213 27381
8e04817f
AC
27382@kindex stop@r{, a pseudo-command}
27383In addition, a pseudo-command, @samp{stop} exists. Defining
27384(@samp{hook-stop}) makes the associated commands execute every time
27385execution stops in your program: before breakpoint commands are run,
27386displays are printed, or the stack frame is printed.
104c1213 27387
8e04817f
AC
27388For example, to ignore @code{SIGALRM} signals while
27389single-stepping, but treat them normally during normal execution,
27390you could define:
104c1213 27391
474c8240 27392@smallexample
8e04817f
AC
27393define hook-stop
27394handle SIGALRM nopass
27395end
104c1213 27396
8e04817f
AC
27397define hook-run
27398handle SIGALRM pass
27399end
104c1213 27400
8e04817f 27401define hook-continue
d3e8051b 27402handle SIGALRM pass
8e04817f 27403end
474c8240 27404@end smallexample
104c1213 27405
d3e8051b 27406As a further example, to hook at the beginning and end of the @code{echo}
b383017d 27407command, and to add extra text to the beginning and end of the message,
8e04817f 27408you could define:
104c1213 27409
474c8240 27410@smallexample
8e04817f
AC
27411define hook-echo
27412echo <<<---
27413end
104c1213 27414
8e04817f
AC
27415define hookpost-echo
27416echo --->>>\n
27417end
104c1213 27418
8e04817f
AC
27419(@value{GDBP}) echo Hello World
27420<<<---Hello World--->>>
27421(@value{GDBP})
104c1213 27422
474c8240 27423@end smallexample
104c1213 27424
8e04817f
AC
27425You can define a hook for any single-word command in @value{GDBN}, but
27426not for command aliases; you should define a hook for the basic command
c1468174 27427name, e.g.@: @code{backtrace} rather than @code{bt}.
8e04817f
AC
27428@c FIXME! So how does Joe User discover whether a command is an alias
27429@c or not?
adb483fe
DJ
27430You can hook a multi-word command by adding @code{hook-} or
27431@code{hookpost-} to the last word of the command, e.g.@:
27432@samp{define target hook-remote} to add a hook to @samp{target remote}.
27433
8e04817f
AC
27434If an error occurs during the execution of your hook, execution of
27435@value{GDBN} commands stops and @value{GDBN} issues a prompt
27436(before the command that you actually typed had a chance to run).
104c1213 27437
8e04817f
AC
27438If you try to define a hook which does not match any known command, you
27439get a warning from the @code{define} command.
c906108c 27440
8e04817f 27441@node Command Files
d57a3c85 27442@subsection Command Files
c906108c 27443
8e04817f 27444@cindex command files
fcc73fe3 27445@cindex scripting commands
6fc08d32
EZ
27446A command file for @value{GDBN} is a text file made of lines that are
27447@value{GDBN} commands. Comments (lines starting with @kbd{#}) may
27448also be included. An empty line in a command file does nothing; it
27449does not mean to repeat the last command, as it would from the
27450terminal.
c906108c 27451
6fc08d32 27452You can request the execution of a command file with the @code{source}
95433b34
JB
27453command. Note that the @code{source} command is also used to evaluate
27454scripts that are not Command Files. The exact behavior can be configured
27455using the @code{script-extension} setting.
27456@xref{Extending GDB,, Extending GDB}.
c906108c 27457
8e04817f
AC
27458@table @code
27459@kindex source
ca91424e 27460@cindex execute commands from a file
3f7b2faa 27461@item source [-s] [-v] @var{filename}
8e04817f 27462Execute the command file @var{filename}.
c906108c
SS
27463@end table
27464
fcc73fe3
EZ
27465The lines in a command file are generally executed sequentially,
27466unless the order of execution is changed by one of the
27467@emph{flow-control commands} described below. The commands are not
a71ec265
DH
27468printed as they are executed. An error in any command terminates
27469execution of the command file and control is returned to the console.
c906108c 27470
08001717
DE
27471@value{GDBN} first searches for @var{filename} in the current directory.
27472If the file is not found there, and @var{filename} does not specify a
27473directory, then @value{GDBN} also looks for the file on the source search path
27474(specified with the @samp{directory} command);
27475except that @file{$cdir} is not searched because the compilation directory
27476is not relevant to scripts.
4b505b12 27477
3f7b2faa
DE
27478If @code{-s} is specified, then @value{GDBN} searches for @var{filename}
27479on the search path even if @var{filename} specifies a directory.
27480The search is done by appending @var{filename} to each element of the
27481search path. So, for example, if @var{filename} is @file{mylib/myscript}
27482and the search path contains @file{/home/user} then @value{GDBN} will
27483look for the script @file{/home/user/mylib/myscript}.
27484The search is also done if @var{filename} is an absolute path.
27485For example, if @var{filename} is @file{/tmp/myscript} and
27486the search path contains @file{/home/user} then @value{GDBN} will
27487look for the script @file{/home/user/tmp/myscript}.
27488For DOS-like systems, if @var{filename} contains a drive specification,
27489it is stripped before concatenation. For example, if @var{filename} is
27490@file{d:myscript} and the search path contains @file{c:/tmp} then @value{GDBN}
27491will look for the script @file{c:/tmp/myscript}.
27492
16026cd7
AS
27493If @code{-v}, for verbose mode, is given then @value{GDBN} displays
27494each command as it is executed. The option must be given before
27495@var{filename}, and is interpreted as part of the filename anywhere else.
27496
8e04817f
AC
27497Commands that would ask for confirmation if used interactively proceed
27498without asking when used in a command file. Many @value{GDBN} commands that
27499normally print messages to say what they are doing omit the messages
27500when called from command files.
c906108c 27501
8e04817f
AC
27502@value{GDBN} also accepts command input from standard input. In this
27503mode, normal output goes to standard output and error output goes to
27504standard error. Errors in a command file supplied on standard input do
6fc08d32 27505not terminate execution of the command file---execution continues with
8e04817f 27506the next command.
c906108c 27507
474c8240 27508@smallexample
8e04817f 27509gdb < cmds > log 2>&1
474c8240 27510@end smallexample
c906108c 27511
8e04817f
AC
27512(The syntax above will vary depending on the shell used.) This example
27513will execute commands from the file @file{cmds}. All output and errors
27514would be directed to @file{log}.
c906108c 27515
fcc73fe3
EZ
27516Since commands stored on command files tend to be more general than
27517commands typed interactively, they frequently need to deal with
27518complicated situations, such as different or unexpected values of
27519variables and symbols, changes in how the program being debugged is
27520built, etc. @value{GDBN} provides a set of flow-control commands to
27521deal with these complexities. Using these commands, you can write
27522complex scripts that loop over data structures, execute commands
27523conditionally, etc.
27524
27525@table @code
27526@kindex if
27527@kindex else
27528@item if
27529@itemx else
27530This command allows to include in your script conditionally executed
27531commands. The @code{if} command takes a single argument, which is an
27532expression to evaluate. It is followed by a series of commands that
27533are executed only if the expression is true (its value is nonzero).
27534There can then optionally be an @code{else} line, followed by a series
27535of commands that are only executed if the expression was false. The
27536end of the list is marked by a line containing @code{end}.
27537
27538@kindex while
27539@item while
27540This command allows to write loops. Its syntax is similar to
27541@code{if}: the command takes a single argument, which is an expression
27542to evaluate, and must be followed by the commands to execute, one per
27543line, terminated by an @code{end}. These commands are called the
27544@dfn{body} of the loop. The commands in the body of @code{while} are
27545executed repeatedly as long as the expression evaluates to true.
27546
27547@kindex loop_break
27548@item loop_break
27549This command exits the @code{while} loop in whose body it is included.
27550Execution of the script continues after that @code{while}s @code{end}
27551line.
27552
27553@kindex loop_continue
27554@item loop_continue
27555This command skips the execution of the rest of the body of commands
27556in the @code{while} loop in whose body it is included. Execution
27557branches to the beginning of the @code{while} loop, where it evaluates
27558the controlling expression.
ca91424e
EZ
27559
27560@kindex end@r{ (if/else/while commands)}
27561@item end
27562Terminate the block of commands that are the body of @code{if},
27563@code{else}, or @code{while} flow-control commands.
fcc73fe3
EZ
27564@end table
27565
27566
8e04817f 27567@node Output
d57a3c85 27568@subsection Commands for Controlled Output
c906108c 27569
8e04817f
AC
27570During the execution of a command file or a user-defined command, normal
27571@value{GDBN} output is suppressed; the only output that appears is what is
27572explicitly printed by the commands in the definition. This section
27573describes three commands useful for generating exactly the output you
27574want.
c906108c
SS
27575
27576@table @code
8e04817f
AC
27577@kindex echo
27578@item echo @var{text}
27579@c I do not consider backslash-space a standard C escape sequence
27580@c because it is not in ANSI.
27581Print @var{text}. Nonprinting characters can be included in
27582@var{text} using C escape sequences, such as @samp{\n} to print a
27583newline. @strong{No newline is printed unless you specify one.}
27584In addition to the standard C escape sequences, a backslash followed
27585by a space stands for a space. This is useful for displaying a
27586string with spaces at the beginning or the end, since leading and
27587trailing spaces are otherwise trimmed from all arguments.
27588To print @samp{@w{ }and foo =@w{ }}, use the command
27589@samp{echo \@w{ }and foo = \@w{ }}.
c906108c 27590
8e04817f
AC
27591A backslash at the end of @var{text} can be used, as in C, to continue
27592the command onto subsequent lines. For example,
c906108c 27593
474c8240 27594@smallexample
8e04817f
AC
27595echo This is some text\n\
27596which is continued\n\
27597onto several lines.\n
474c8240 27598@end smallexample
c906108c 27599
8e04817f 27600produces the same output as
c906108c 27601
474c8240 27602@smallexample
8e04817f
AC
27603echo This is some text\n
27604echo which is continued\n
27605echo onto several lines.\n
474c8240 27606@end smallexample
c906108c 27607
8e04817f
AC
27608@kindex output
27609@item output @var{expression}
27610Print the value of @var{expression} and nothing but that value: no
27611newlines, no @samp{$@var{nn} = }. The value is not entered in the
27612value history either. @xref{Expressions, ,Expressions}, for more information
27613on expressions.
c906108c 27614
8e04817f
AC
27615@item output/@var{fmt} @var{expression}
27616Print the value of @var{expression} in format @var{fmt}. You can use
27617the same formats as for @code{print}. @xref{Output Formats,,Output
79a6e687 27618Formats}, for more information.
c906108c 27619
8e04817f 27620@kindex printf
82160952
EZ
27621@item printf @var{template}, @var{expressions}@dots{}
27622Print the values of one or more @var{expressions} under the control of
27623the string @var{template}. To print several values, make
27624@var{expressions} be a comma-separated list of individual expressions,
27625which may be either numbers or pointers. Their values are printed as
27626specified by @var{template}, exactly as a C program would do by
27627executing the code below:
c906108c 27628
474c8240 27629@smallexample
82160952 27630printf (@var{template}, @var{expressions}@dots{});
474c8240 27631@end smallexample
c906108c 27632
82160952
EZ
27633As in @code{C} @code{printf}, ordinary characters in @var{template}
27634are printed verbatim, while @dfn{conversion specification} introduced
27635by the @samp{%} character cause subsequent @var{expressions} to be
27636evaluated, their values converted and formatted according to type and
27637style information encoded in the conversion specifications, and then
27638printed.
27639
8e04817f 27640For example, you can print two values in hex like this:
c906108c 27641
8e04817f
AC
27642@smallexample
27643printf "foo, bar-foo = 0x%x, 0x%x\n", foo, bar-foo
27644@end smallexample
c906108c 27645
82160952
EZ
27646@code{printf} supports all the standard @code{C} conversion
27647specifications, including the flags and modifiers between the @samp{%}
27648character and the conversion letter, with the following exceptions:
27649
27650@itemize @bullet
27651@item
27652The argument-ordering modifiers, such as @samp{2$}, are not supported.
27653
27654@item
27655The modifier @samp{*} is not supported for specifying precision or
27656width.
27657
27658@item
27659The @samp{'} flag (for separation of digits into groups according to
27660@code{LC_NUMERIC'}) is not supported.
27661
27662@item
27663The type modifiers @samp{hh}, @samp{j}, @samp{t}, and @samp{z} are not
27664supported.
27665
27666@item
27667The conversion letter @samp{n} (as in @samp{%n}) is not supported.
27668
27669@item
27670The conversion letters @samp{a} and @samp{A} are not supported.
27671@end itemize
27672
27673@noindent
27674Note that the @samp{ll} type modifier is supported only if the
27675underlying @code{C} implementation used to build @value{GDBN} supports
27676the @code{long long int} type, and the @samp{L} type modifier is
27677supported only if @code{long double} type is available.
27678
27679As in @code{C}, @code{printf} supports simple backslash-escape
27680sequences, such as @code{\n}, @samp{\t}, @samp{\\}, @samp{\"},
27681@samp{\a}, and @samp{\f}, that consist of backslash followed by a
27682single character. Octal and hexadecimal escape sequences are not
27683supported.
1a619819
LM
27684
27685Additionally, @code{printf} supports conversion specifications for DFP
0aea4bf3
LM
27686(@dfn{Decimal Floating Point}) types using the following length modifiers
27687together with a floating point specifier.
1a619819
LM
27688letters:
27689
27690@itemize @bullet
27691@item
27692@samp{H} for printing @code{Decimal32} types.
27693
27694@item
27695@samp{D} for printing @code{Decimal64} types.
27696
27697@item
27698@samp{DD} for printing @code{Decimal128} types.
27699@end itemize
27700
27701If the underlying @code{C} implementation used to build @value{GDBN} has
0aea4bf3 27702support for the three length modifiers for DFP types, other modifiers
3b784c4f 27703such as width and precision will also be available for @value{GDBN} to use.
1a619819
LM
27704
27705In case there is no such @code{C} support, no additional modifiers will be
27706available and the value will be printed in the standard way.
27707
27708Here's an example of printing DFP types using the above conversion letters:
27709@smallexample
0aea4bf3 27710printf "D32: %Hf - D64: %Df - D128: %DDf\n",1.2345df,1.2E10dd,1.2E1dl
1a619819
LM
27711@end smallexample
27712
01770bbd 27713@anchor{eval}
f1421989
HZ
27714@kindex eval
27715@item eval @var{template}, @var{expressions}@dots{}
27716Convert the values of one or more @var{expressions} under the control of
27717the string @var{template} to a command line, and call it.
27718
c906108c
SS
27719@end table
27720
71b8c845
DE
27721@node Auto-loading sequences
27722@subsection Controlling auto-loading native @value{GDBN} scripts
27723@cindex native script auto-loading
27724
27725When a new object file is read (for example, due to the @code{file}
27726command, or because the inferior has loaded a shared library),
27727@value{GDBN} will look for the command file @file{@var{objfile}-gdb.gdb}.
27728@xref{Auto-loading extensions}.
27729
27730Auto-loading can be enabled or disabled,
27731and the list of auto-loaded scripts can be printed.
27732
27733@table @code
27734@anchor{set auto-load gdb-scripts}
27735@kindex set auto-load gdb-scripts
27736@item set auto-load gdb-scripts [on|off]
27737Enable or disable the auto-loading of canned sequences of commands scripts.
27738
27739@anchor{show auto-load gdb-scripts}
27740@kindex show auto-load gdb-scripts
27741@item show auto-load gdb-scripts
27742Show whether auto-loading of canned sequences of commands scripts is enabled or
27743disabled.
27744
27745@anchor{info auto-load gdb-scripts}
27746@kindex info auto-load gdb-scripts
27747@cindex print list of auto-loaded canned sequences of commands scripts
27748@item info auto-load gdb-scripts [@var{regexp}]
27749Print the list of all canned sequences of commands scripts that @value{GDBN}
27750auto-loaded.
27751@end table
27752
27753If @var{regexp} is supplied only canned sequences of commands scripts with
27754matching names are printed.
27755
a72d0f3d
AB
27756@node Aliases
27757@section Command Aliases
27758@cindex aliases for commands
27759
a72d0f3d
AB
27760Aliases allow you to define alternate spellings for existing commands.
27761For example, if a new @value{GDBN} command defined in Python
27762(@pxref{Python}) has a long name, it is handy to have an abbreviated
27763version of it that involves less typing.
27764
27765@value{GDBN} itself uses aliases. For example @samp{s} is an alias
27766of the @samp{step} command even though it is otherwise an ambiguous
27767abbreviation of other commands like @samp{set} and @samp{show}.
27768
27769Aliases are also used to provide shortened or more common versions
27770of multi-word commands. For example, @value{GDBN} provides the
27771@samp{tty} alias of the @samp{set inferior-tty} command.
27772
27773You can define a new alias with the @samp{alias} command.
27774
27775@table @code
27776
27777@kindex alias
27778@item alias [-a] [--] @var{alias} = @var{command} [@var{default-args}]
27779
27780@end table
27781
27782@var{alias} specifies the name of the new alias. Each word of
27783@var{alias} must consist of letters, numbers, dashes and underscores.
27784
27785@var{command} specifies the name of an existing command
27786that is being aliased.
27787
27788@var{command} can also be the name of an existing alias. In this
27789case, @var{command} cannot be an alias that has default arguments.
27790
27791The @samp{-a} option specifies that the new alias is an abbreviation
27792of the command. Abbreviations are not used in command completion.
27793
27794The @samp{--} option specifies the end of options,
27795and is useful when @var{alias} begins with a dash.
27796
27797You can specify @var{default-args} for your alias. These
27798@var{default-args} will be automatically added before the alias
27799arguments typed explicitly on the command line.
27800
27801For example, the below defines an alias @code{btfullall} that shows all local
27802variables and all frame arguments:
27803@smallexample
27804(@value{GDBP}) alias btfullall = backtrace -full -frame-arguments all
27805@end smallexample
27806
27807For more information about @var{default-args}, see @ref{Command
27808aliases default args, ,Default Arguments}.
27809
27810Here is a simple example showing how to make an abbreviation of a
27811command so that there is less to type. Suppose you were tired of
27812typing @samp{disas}, the current shortest unambiguous abbreviation of
27813the @samp{disassemble} command and you wanted an even shorter version
27814named @samp{di}. The following will accomplish this.
27815
27816@smallexample
27817(gdb) alias -a di = disas
27818@end smallexample
27819
27820Note that aliases are different from user-defined commands. With a
27821user-defined command, you also need to write documentation for it with
27822the @samp{document} command. An alias automatically picks up the
27823documentation of the existing command.
27824
27825Here is an example where we make @samp{elms} an abbreviation of
27826@samp{elements} in the @samp{set print elements} command.
27827This is to show that you can make an abbreviation of any part
27828of a command.
27829
27830@smallexample
27831(gdb) alias -a set print elms = set print elements
27832(gdb) alias -a show print elms = show print elements
27833(gdb) set p elms 20
27834(gdb) show p elms
27835Limit on string chars or array elements to print is 200.
27836@end smallexample
27837
27838Note that if you are defining an alias of a @samp{set} command,
27839and you want to have an alias for the corresponding @samp{show}
27840command, then you need to define the latter separately.
27841
27842Unambiguously abbreviated commands are allowed in @var{command} and
27843@var{alias}, just as they are normally.
27844
27845@smallexample
27846(gdb) alias -a set pr elms = set p ele
27847@end smallexample
27848
27849Finally, here is an example showing the creation of a one word
27850alias for a more complex command.
27851This creates alias @samp{spe} of the command @samp{set print elements}.
27852
27853@smallexample
27854(gdb) alias spe = set print elements
27855(gdb) spe 20
27856@end smallexample
27857
fe461d2f
AB
27858@menu
27859* Command aliases default args:: Default arguments for aliases
27860@end menu
27861
a72d0f3d
AB
27862@node Command aliases default args
27863@subsection Default Arguments
27864@cindex aliases for commands, default arguments
27865
27866You can tell @value{GDBN} to always prepend some default arguments to
27867the list of arguments provided explicitly by the user when using a
27868user-defined alias.
27869
27870If you repeatedly use the same arguments or options for a command, you
27871can define an alias for this command and tell @value{GDBN} to
27872automatically prepend these arguments or options to the list of
27873arguments you type explicitly when using the alias@footnote{@value{GDBN}
27874could easily accept default arguments for pre-defined commands and aliases,
27875but it was deemed this would be confusing, and so is not allowed.}.
27876
27877For example, if you often use the command @code{thread apply all}
27878specifying to work on the threads in ascending order and to continue in case it
27879encounters an error, you can tell @value{GDBN} to automatically preprend
27880the @code{-ascending} and @code{-c} options by using:
27881
27882@smallexample
27883(@value{GDBP}) alias thread apply asc-all = thread apply all -ascending -c
27884@end smallexample
27885
27886Once you have defined this alias with its default args, any time you type
27887the @code{thread apply asc-all} followed by @code{some arguments},
27888@value{GDBN} will execute @code{thread apply all -ascending -c some arguments}.
27889
27890To have even less to type, you can also define a one word alias:
27891@smallexample
27892(@value{GDBP}) alias t_a_c = thread apply all -ascending -c
27893@end smallexample
27894
27895As usual, unambiguous abbreviations can be used for @var{alias}
27896and @var{default-args}.
27897
27898The different aliases of a command do not share their default args.
27899For example, you define a new alias @code{bt_ALL} showing all possible
27900information and another alias @code{bt_SMALL} showing very limited information
27901using:
27902@smallexample
27903(@value{GDBP}) alias bt_ALL = backtrace -entry-values both -frame-arg all \
27904 -past-main -past-entry -full
27905(@value{GDBP}) alias bt_SMALL = backtrace -entry-values no -frame-arg none \
27906 -past-main off -past-entry off
27907@end smallexample
27908
27909(For more on using the @code{alias} command, see @ref{Aliases}.)
27910
27911Default args are not limited to the arguments and options of @var{command},
27912but can specify nested commands if @var{command} accepts such a nested command
27913as argument.
27914For example, the below defines @code{faalocalsoftype} that lists the
27915frames having locals of a certain type, together with the matching
27916local vars:
27917@smallexample
27918(@value{GDBP}) alias faalocalsoftype = frame apply all info locals -q -t
27919(@value{GDBP}) faalocalsoftype int
27920#1 0x55554f5e in sleeper_or_burner (v=0xdf50) at sleepers.c:86
27921i = 0
27922ret = 21845
27923@end smallexample
27924
27925This is also very useful to define an alias for a set of nested @code{with}
27926commands to have a particular combination of temporary settings. For example,
27927the below defines the alias @code{pp10} that pretty prints an expression
27928argument, with a maximum of 10 elements if the expression is a string or
27929an array:
27930@smallexample
27931(@value{GDBP}) alias pp10 = with print pretty -- with print elements 10 -- print
27932@end smallexample
27933This defines the alias @code{pp10} as being a sequence of 3 commands.
27934The first part @code{with print pretty --} temporarily activates the setting
27935@code{set print pretty}, then launches the command that follows the separator
27936@code{--}.
27937The command following the first part is also a @code{with} command that
27938temporarily changes the setting @code{set print elements} to 10, then
27939launches the command that follows the second separator @code{--}.
27940The third part @code{print} is the command the @code{pp10} alias will launch,
27941using the temporary values of the settings and the arguments explicitly given
27942by the user.
27943For more information about the @code{with} command usage,
27944see @ref{Command Settings}.
27945
329baa95
DE
27946@c Python docs live in a separate file.
27947@include python.texi
0e3509db 27948
ed3ef339
DE
27949@c Guile docs live in a separate file.
27950@include guile.texi
27951
71b8c845
DE
27952@node Auto-loading extensions
27953@section Auto-loading extensions
27954@cindex auto-loading extensions
27955
d8c4766d
AB
27956@value{GDBN} provides two mechanisms for automatically loading
27957extensions when a new object file is read (for example, due to the
27958@code{file} command, or because the inferior has loaded a shared
27959library): @file{@var{objfile}-gdb.@var{ext}} (@pxref{objfile-gdbdotext
27960file,,The @file{@var{objfile}-gdb.@var{ext}} file}) and the
27961@code{.debug_gdb_scripts} section of modern file formats like ELF
bb3c2d4d 27962(@pxref{dotdebug_gdb_scripts section,,The @code{.debug_gdb_scripts}
d8c4766d
AB
27963section}). For a discussion of the differences between these two
27964approaches see @ref{Which flavor to choose?}.
71b8c845
DE
27965
27966The auto-loading feature is useful for supplying application-specific
27967debugging commands and features.
27968
27969Auto-loading can be enabled or disabled,
27970and the list of auto-loaded scripts can be printed.
27971See the @samp{auto-loading} section of each extension language
27972for more information.
27973For @value{GDBN} command files see @ref{Auto-loading sequences}.
27974For Python files see @ref{Python Auto-loading}.
27975
27976Note that loading of this script file also requires accordingly configured
27977@code{auto-load safe-path} (@pxref{Auto-loading safe path}).
27978
d8c4766d
AB
27979@menu
27980* objfile-gdbdotext file:: The @file{@var{objfile}-gdb.@var{ext}} file
27981* dotdebug_gdb_scripts section:: The @code{.debug_gdb_scripts} section
27982* Which flavor to choose?:: Choosing between these approaches
27983@end menu
27984
71b8c845
DE
27985@node objfile-gdbdotext file
27986@subsection The @file{@var{objfile}-gdb.@var{ext}} file
27987@cindex @file{@var{objfile}-gdb.gdb}
27988@cindex @file{@var{objfile}-gdb.py}
27989@cindex @file{@var{objfile}-gdb.scm}
27990
27991When a new object file is read, @value{GDBN} looks for a file named
27992@file{@var{objfile}-gdb.@var{ext}} (we call it @var{script-name} below),
27993where @var{objfile} is the object file's name and
27994where @var{ext} is the file extension for the extension language:
27995
27996@table @code
27997@item @file{@var{objfile}-gdb.gdb}
27998GDB's own command language
27999@item @file{@var{objfile}-gdb.py}
28000Python
ed3ef339
DE
28001@item @file{@var{objfile}-gdb.scm}
28002Guile
71b8c845
DE
28003@end table
28004
28005@var{script-name} is formed by ensuring that the file name of @var{objfile}
28006is absolute, following all symlinks, and resolving @code{.} and @code{..}
28007components, and appending the @file{-gdb.@var{ext}} suffix.
28008If this file exists and is readable, @value{GDBN} will evaluate it as a
28009script in the specified extension language.
28010
28011If this file does not exist, then @value{GDBN} will look for
28012@var{script-name} file in all of the directories as specified below.
6e2469ff
HD
28013(On MS-Windows/MS-DOS, the drive letter of the executable's leading
28014directories is converted to a one-letter subdirectory, i.e.@:
28015@file{d:/usr/bin/} is converted to @file{/d/usr/bin/}, because Windows
28016filesystems disallow colons in file names.)
71b8c845
DE
28017
28018Note that loading of these files requires an accordingly configured
28019@code{auto-load safe-path} (@pxref{Auto-loading safe path}).
28020
28021For object files using @file{.exe} suffix @value{GDBN} tries to load first the
28022scripts normally according to its @file{.exe} filename. But if no scripts are
28023found @value{GDBN} also tries script filenames matching the object file without
28024its @file{.exe} suffix. This @file{.exe} stripping is case insensitive and it
28025is attempted on any platform. This makes the script filenames compatible
28026between Unix and MS-Windows hosts.
28027
28028@table @code
28029@anchor{set auto-load scripts-directory}
28030@kindex set auto-load scripts-directory
28031@item set auto-load scripts-directory @r{[}@var{directories}@r{]}
28032Control @value{GDBN} auto-loaded scripts location. Multiple directory entries
28033may be delimited by the host platform path separator in use
28034(@samp{:} on Unix, @samp{;} on MS-Windows and MS-DOS).
28035
28036Each entry here needs to be covered also by the security setting
28037@code{set auto-load safe-path} (@pxref{set auto-load safe-path}).
28038
28039@anchor{with-auto-load-dir}
28040This variable defaults to @file{$debugdir:$datadir/auto-load}. The default
28041@code{set auto-load safe-path} value can be also overriden by @value{GDBN}
28042configuration option @option{--with-auto-load-dir}.
28043
28044Any reference to @file{$debugdir} will get replaced by
28045@var{debug-file-directory} value (@pxref{Separate Debug Files}) and any
28046reference to @file{$datadir} will get replaced by @var{data-directory} which is
28047determined at @value{GDBN} startup (@pxref{Data Files}). @file{$debugdir} and
28048@file{$datadir} must be placed as a directory component --- either alone or
28049delimited by @file{/} or @file{\} directory separators, depending on the host
28050platform.
28051
28052The list of directories uses path separator (@samp{:} on GNU and Unix
28053systems, @samp{;} on MS-Windows and MS-DOS) to separate directories, similarly
28054to the @env{PATH} environment variable.
28055
28056@anchor{show auto-load scripts-directory}
28057@kindex show auto-load scripts-directory
28058@item show auto-load scripts-directory
28059Show @value{GDBN} auto-loaded scripts location.
f10c5b19
JK
28060
28061@anchor{add-auto-load-scripts-directory}
28062@kindex add-auto-load-scripts-directory
28063@item add-auto-load-scripts-directory @r{[}@var{directories}@dots{}@r{]}
28064Add an entry (or list of entries) to the list of auto-loaded scripts locations.
28065Multiple entries may be delimited by the host platform path separator in use.
71b8c845
DE
28066@end table
28067
28068@value{GDBN} does not track which files it has already auto-loaded this way.
28069@value{GDBN} will load the associated script every time the corresponding
28070@var{objfile} is opened.
28071So your @file{-gdb.@var{ext}} file should be careful to avoid errors if it
28072is evaluated more than once.
28073
28074@node dotdebug_gdb_scripts section
28075@subsection The @code{.debug_gdb_scripts} section
28076@cindex @code{.debug_gdb_scripts} section
28077
28078For systems using file formats like ELF and COFF,
28079when @value{GDBN} loads a new object file
28080it will look for a special section named @code{.debug_gdb_scripts}.
9f050062
DE
28081If this section exists, its contents is a list of null-terminated entries
28082specifying scripts to load. Each entry begins with a non-null prefix byte that
28083specifies the kind of entry, typically the extension language and whether the
28084script is in a file or inlined in @code{.debug_gdb_scripts}.
71b8c845 28085
9f050062
DE
28086The following entries are supported:
28087
28088@table @code
28089@item SECTION_SCRIPT_ID_PYTHON_FILE = 1
28090@item SECTION_SCRIPT_ID_SCHEME_FILE = 3
28091@item SECTION_SCRIPT_ID_PYTHON_TEXT = 4
28092@item SECTION_SCRIPT_ID_SCHEME_TEXT = 6
28093@end table
28094
28095@subsubsection Script File Entries
28096
28097If the entry specifies a file, @value{GDBN} will look for the file first
28098in the current directory and then along the source search path
71b8c845
DE
28099(@pxref{Source Path, ,Specifying Source Directories}),
28100except that @file{$cdir} is not searched, since the compilation
28101directory is not relevant to scripts.
28102
9f050062 28103File entries can be placed in section @code{.debug_gdb_scripts} with,
71b8c845
DE
28104for example, this GCC macro for Python scripts.
28105
28106@example
28107/* Note: The "MS" section flags are to remove duplicates. */
28108#define DEFINE_GDB_PY_SCRIPT(script_name) \
28109 asm("\
28110.pushsection \".debug_gdb_scripts\", \"MS\",@@progbits,1\n\
28111.byte 1 /* Python */\n\
28112.asciz \"" script_name "\"\n\
28113.popsection \n\
28114");
28115@end example
28116
28117@noindent
ed3ef339 28118For Guile scripts, replace @code{.byte 1} with @code{.byte 3}.
71b8c845
DE
28119Then one can reference the macro in a header or source file like this:
28120
28121@example
28122DEFINE_GDB_PY_SCRIPT ("my-app-scripts.py")
28123@end example
28124
28125The script name may include directories if desired.
28126
28127Note that loading of this script file also requires accordingly configured
28128@code{auto-load safe-path} (@pxref{Auto-loading safe path}).
28129
28130If the macro invocation is put in a header, any application or library
28131using this header will get a reference to the specified script,
28132and with the use of @code{"MS"} attributes on the section, the linker
28133will remove duplicates.
28134
9f050062
DE
28135@subsubsection Script Text Entries
28136
28137Script text entries allow to put the executable script in the entry
28138itself instead of loading it from a file.
28139The first line of the entry, everything after the prefix byte and up to
28140the first newline (@code{0xa}) character, is the script name, and must not
28141contain any kind of space character, e.g., spaces or tabs.
28142The rest of the entry, up to the trailing null byte, is the script to
28143execute in the specified language. The name needs to be unique among
28144all script names, as @value{GDBN} executes each script only once based
28145on its name.
28146
28147Here is an example from file @file{py-section-script.c} in the @value{GDBN}
28148testsuite.
28149
28150@example
28151#include "symcat.h"
28152#include "gdb/section-scripts.h"
28153asm(
28154".pushsection \".debug_gdb_scripts\", \"MS\",@@progbits,1\n"
28155".byte " XSTRING (SECTION_SCRIPT_ID_PYTHON_TEXT) "\n"
28156".ascii \"gdb.inlined-script\\n\"\n"
28157".ascii \"class test_cmd (gdb.Command):\\n\"\n"
28158".ascii \" def __init__ (self):\\n\"\n"
28159".ascii \" super (test_cmd, self).__init__ ("
28160 "\\\"test-cmd\\\", gdb.COMMAND_OBSCURE)\\n\"\n"
28161".ascii \" def invoke (self, arg, from_tty):\\n\"\n"
28162".ascii \" print (\\\"test-cmd output, arg = %s\\\" % arg)\\n\"\n"
28163".ascii \"test_cmd ()\\n\"\n"
28164".byte 0\n"
28165".popsection\n"
28166);
28167@end example
28168
28169Loading of inlined scripts requires a properly configured
28170@code{auto-load safe-path} (@pxref{Auto-loading safe path}).
28171The path to specify in @code{auto-load safe-path} is the path of the file
28172containing the @code{.debug_gdb_scripts} section.
28173
71b8c845
DE
28174@node Which flavor to choose?
28175@subsection Which flavor to choose?
28176
28177Given the multiple ways of auto-loading extensions, it might not always
28178be clear which one to choose. This section provides some guidance.
28179
28180@noindent
28181Benefits of the @file{-gdb.@var{ext}} way:
28182
28183@itemize @bullet
28184@item
28185Can be used with file formats that don't support multiple sections.
28186
28187@item
28188Ease of finding scripts for public libraries.
28189
28190Scripts specified in the @code{.debug_gdb_scripts} section are searched for
28191in the source search path.
28192For publicly installed libraries, e.g., @file{libstdc++}, there typically
28193isn't a source directory in which to find the script.
28194
28195@item
28196Doesn't require source code additions.
28197@end itemize
28198
28199@noindent
28200Benefits of the @code{.debug_gdb_scripts} way:
28201
28202@itemize @bullet
28203@item
28204Works with static linking.
28205
28206Scripts for libraries done the @file{-gdb.@var{ext}} way require an objfile to
28207trigger their loading. When an application is statically linked the only
28208objfile available is the executable, and it is cumbersome to attach all the
28209scripts from all the input libraries to the executable's
28210@file{-gdb.@var{ext}} script.
28211
28212@item
28213Works with classes that are entirely inlined.
28214
28215Some classes can be entirely inlined, and thus there may not be an associated
28216shared library to attach a @file{-gdb.@var{ext}} script to.
28217
28218@item
28219Scripts needn't be copied out of the source tree.
28220
28221In some circumstances, apps can be built out of large collections of internal
28222libraries, and the build infrastructure necessary to install the
28223@file{-gdb.@var{ext}} scripts in a place where @value{GDBN} can find them is
28224cumbersome. It may be easier to specify the scripts in the
28225@code{.debug_gdb_scripts} section as relative paths, and add a path to the
28226top of the source tree to the source search path.
28227@end itemize
28228
ed3ef339
DE
28229@node Multiple Extension Languages
28230@section Multiple Extension Languages
28231
28232The Guile and Python extension languages do not share any state,
28233and generally do not interfere with each other.
28234There are some things to be aware of, however.
28235
28236@subsection Python comes first
28237
28238Python was @value{GDBN}'s first extension language, and to avoid breaking
28239existing behaviour Python comes first. This is generally solved by the
28240``first one wins'' principle. @value{GDBN} maintains a list of enabled
28241extension languages, and when it makes a call to an extension language,
28242(say to pretty-print a value), it tries each in turn until an extension
28243language indicates it has performed the request (e.g., has returned the
28244pretty-printed form of a value).
28245This extends to errors while performing such requests: If an error happens
28246while, for example, trying to pretty-print an object then the error is
28247reported and any following extension languages are not tried.
28248
21c294e6
AC
28249@node Interpreters
28250@chapter Command Interpreters
28251@cindex command interpreters
28252
28253@value{GDBN} supports multiple command interpreters, and some command
28254infrastructure to allow users or user interface writers to switch
28255between interpreters or run commands in other interpreters.
28256
28257@value{GDBN} currently supports two command interpreters, the console
28258interpreter (sometimes called the command-line interpreter or @sc{cli})
28259and the machine interface interpreter (or @sc{gdb/mi}). This manual
28260describes both of these interfaces in great detail.
28261
28262By default, @value{GDBN} will start with the console interpreter.
28263However, the user may choose to start @value{GDBN} with another
28264interpreter by specifying the @option{-i} or @option{--interpreter}
28265startup options. Defined interpreters include:
28266
28267@table @code
28268@item console
28269@cindex console interpreter
28270The traditional console or command-line interpreter. This is the most often
28271used interpreter with @value{GDBN}. With no interpreter specified at runtime,
28272@value{GDBN} will use this interpreter.
28273
28274@item mi
28275@cindex mi interpreter
b4be1b06 28276The newest @sc{gdb/mi} interface (currently @code{mi3}). Used primarily
21c294e6
AC
28277by programs wishing to use @value{GDBN} as a backend for a debugger GUI
28278or an IDE. For more information, see @ref{GDB/MI, ,The @sc{gdb/mi}
28279Interface}.
28280
b4be1b06
SM
28281@item mi3
28282@cindex mi3 interpreter
28283The @sc{gdb/mi} interface introduced in @value{GDBN} 9.1.
28284
21c294e6
AC
28285@item mi2
28286@cindex mi2 interpreter
b4be1b06 28287The @sc{gdb/mi} interface introduced in @value{GDBN} 6.0.
21c294e6
AC
28288
28289@item mi1
28290@cindex mi1 interpreter
b4be1b06 28291The @sc{gdb/mi} interface introduced in @value{GDBN} 5.1.
21c294e6
AC
28292
28293@end table
28294
28295@cindex invoke another interpreter
21c294e6
AC
28296
28297@kindex interpreter-exec
86f78169
PA
28298You may execute commands in any interpreter from the current
28299interpreter using the appropriate command. If you are running the
28300console interpreter, simply use the @code{interpreter-exec} command:
21c294e6
AC
28301
28302@smallexample
28303interpreter-exec mi "-data-list-register-names"
28304@end smallexample
28305
28306@sc{gdb/mi} has a similar command, although it is only available in versions of
28307@value{GDBN} which support @sc{gdb/mi} version 2 (or greater).
28308
86f78169
PA
28309Note that @code{interpreter-exec} only changes the interpreter for the
28310duration of the specified command. It does not change the interpreter
28311permanently.
28312
28313@cindex start a new independent interpreter
28314
28315Although you may only choose a single interpreter at startup, it is
28316possible to run an independent interpreter on a specified input/output
28317device (usually a tty).
28318
28319For example, consider a debugger GUI or IDE that wants to provide a
28320@value{GDBN} console view. It may do so by embedding a terminal
28321emulator widget in its GUI, starting @value{GDBN} in the traditional
28322command-line mode with stdin/stdout/stderr redirected to that
28323terminal, and then creating an MI interpreter running on a specified
28324input/output device. The console interpreter created by @value{GDBN}
28325at startup handles commands the user types in the terminal widget,
28326while the GUI controls and synchronizes state with @value{GDBN} using
28327the separate MI interpreter.
28328
28329To start a new secondary @dfn{user interface} running MI, use the
28330@code{new-ui} command:
28331
28332@kindex new-ui
28333@cindex new user interface
28334@smallexample
28335new-ui @var{interpreter} @var{tty}
28336@end smallexample
28337
28338The @var{interpreter} parameter specifies the interpreter to run.
28339This accepts the same values as the @code{interpreter-exec} command.
28340For example, @samp{console}, @samp{mi}, @samp{mi2}, etc. The
28341@var{tty} parameter specifies the name of the bidirectional file the
28342interpreter uses for input/output, usually the name of a
28343pseudoterminal slave on Unix systems. For example:
28344
28345@smallexample
28346(@value{GDBP}) new-ui mi /dev/pts/9
28347@end smallexample
28348
28349@noindent
28350runs an MI interpreter on @file{/dev/pts/9}.
28351
8e04817f
AC
28352@node TUI
28353@chapter @value{GDBN} Text User Interface
28354@cindex TUI
d0d5df6f 28355@cindex Text User Interface
c906108c 28356
46ba6afa 28357The @value{GDBN} Text User Interface (TUI) is a terminal
d0d5df6f
AC
28358interface which uses the @code{curses} library to show the source
28359file, the assembly output, the program registers and @value{GDBN}
46ba6afa
BW
28360commands in separate text windows. The TUI mode is supported only
28361on platforms where a suitable version of the @code{curses} library
28362is available.
d0d5df6f 28363
46ba6afa 28364The TUI mode is enabled by default when you invoke @value{GDBN} as
217bff3e 28365@samp{@value{GDBP} -tui}.
46ba6afa 28366You can also switch in and out of TUI mode while @value{GDBN} runs by
a4ea0946 28367using various TUI commands and key bindings, such as @command{tui
bcd8537c 28368enable} or @kbd{C-x C-a}. @xref{TUI Commands, ,TUI Commands}, and
a4ea0946 28369@ref{TUI Keys, ,TUI Key Bindings}.
c906108c 28370
04de9f3e
AB
28371@menu
28372* TUI Overview:: TUI overview
28373* TUI Keys:: TUI key bindings
28374* TUI Single Key Mode:: TUI single key mode
28375* TUI Commands:: TUI-specific commands
28376* TUI Configuration:: TUI configuration variables
28377@end menu
28378
8e04817f 28379@node TUI Overview
79a6e687 28380@section TUI Overview
c906108c 28381
46ba6afa 28382In TUI mode, @value{GDBN} can display several text windows:
c906108c 28383
8e04817f
AC
28384@table @emph
28385@item command
28386This window is the @value{GDBN} command window with the @value{GDBN}
46ba6afa
BW
28387prompt and the @value{GDBN} output. The @value{GDBN} input is still
28388managed using readline.
c906108c 28389
8e04817f
AC
28390@item source
28391The source window shows the source file of the program. The current
46ba6afa 28392line and active breakpoints are displayed in this window.
c906108c 28393
8e04817f
AC
28394@item assembly
28395The assembly window shows the disassembly output of the program.
c906108c 28396
8e04817f 28397@item register
46ba6afa
BW
28398This window shows the processor registers. Registers are highlighted
28399when their values change.
c906108c
SS
28400@end table
28401
269c21fe 28402The source and assembly windows show the current program position
46ba6afa
BW
28403by highlighting the current line and marking it with a @samp{>} marker.
28404Breakpoints are indicated with two markers. The first marker
269c21fe
SC
28405indicates the breakpoint type:
28406
28407@table @code
28408@item B
28409Breakpoint which was hit at least once.
28410
28411@item b
28412Breakpoint which was never hit.
28413
28414@item H
28415Hardware breakpoint which was hit at least once.
28416
28417@item h
28418Hardware breakpoint which was never hit.
269c21fe
SC
28419@end table
28420
28421The second marker indicates whether the breakpoint is enabled or not:
28422
28423@table @code
28424@item +
28425Breakpoint is enabled.
28426
28427@item -
28428Breakpoint is disabled.
269c21fe
SC
28429@end table
28430
46ba6afa
BW
28431The source, assembly and register windows are updated when the current
28432thread changes, when the frame changes, or when the program counter
28433changes.
28434
28435These windows are not all visible at the same time. The command
28436window is always visible. The others can be arranged in several
28437layouts:
c906108c 28438
8e04817f
AC
28439@itemize @bullet
28440@item
46ba6afa 28441source only,
2df3850c 28442
8e04817f 28443@item
46ba6afa 28444assembly only,
8e04817f
AC
28445
28446@item
46ba6afa 28447source and assembly,
8e04817f
AC
28448
28449@item
46ba6afa 28450source and registers, or
c906108c 28451
8e04817f 28452@item
46ba6afa 28453assembly and registers.
8e04817f 28454@end itemize
c906108c 28455
ee325b61
TT
28456These are the standard layouts, but other layouts can be defined.
28457
46ba6afa 28458A status line above the command window shows the following information:
b7bb15bc
SC
28459
28460@table @emph
28461@item target
46ba6afa 28462Indicates the current @value{GDBN} target.
b7bb15bc
SC
28463(@pxref{Targets, ,Specifying a Debugging Target}).
28464
28465@item process
46ba6afa 28466Gives the current process or thread number.
b7bb15bc
SC
28467When no process is being debugged, this field is set to @code{No process}.
28468
28469@item function
28470Gives the current function name for the selected frame.
28471The name is demangled if demangling is turned on (@pxref{Print Settings}).
46ba6afa 28472When there is no symbol corresponding to the current program counter,
b7bb15bc
SC
28473the string @code{??} is displayed.
28474
28475@item line
28476Indicates the current line number for the selected frame.
46ba6afa 28477When the current line number is not known, the string @code{??} is displayed.
b7bb15bc
SC
28478
28479@item pc
28480Indicates the current program counter address.
b7bb15bc
SC
28481@end table
28482
8e04817f
AC
28483@node TUI Keys
28484@section TUI Key Bindings
28485@cindex TUI key bindings
c906108c 28486
8e04817f 28487The TUI installs several key bindings in the readline keymaps
39037522
TT
28488@ifset SYSTEM_READLINE
28489(@pxref{Command Line Editing, , , rluserman, GNU Readline Library}).
28490@end ifset
28491@ifclear SYSTEM_READLINE
28492(@pxref{Command Line Editing}).
28493@end ifclear
28494The following key bindings are installed for both TUI mode and the
28495@value{GDBN} standard mode.
c906108c 28496
8e04817f
AC
28497@table @kbd
28498@kindex C-x C-a
28499@item C-x C-a
28500@kindex C-x a
28501@itemx C-x a
28502@kindex C-x A
28503@itemx C-x A
46ba6afa
BW
28504Enter or leave the TUI mode. When leaving the TUI mode,
28505the curses window management stops and @value{GDBN} operates using
28506its standard mode, writing on the terminal directly. When reentering
28507the TUI mode, control is given back to the curses windows.
8e04817f 28508The screen is then refreshed.
c906108c 28509
c86d74cc
TT
28510This key binding uses the bindable Readline function
28511@code{tui-switch-mode}.
28512
8e04817f
AC
28513@kindex C-x 1
28514@item C-x 1
28515Use a TUI layout with only one window. The layout will
28516either be @samp{source} or @samp{assembly}. When the TUI mode
28517is not active, it will switch to the TUI mode.
2df3850c 28518
8e04817f 28519Think of this key binding as the Emacs @kbd{C-x 1} binding.
c906108c 28520
c86d74cc
TT
28521This key binding uses the bindable Readline function
28522@code{tui-delete-other-windows}.
28523
8e04817f
AC
28524@kindex C-x 2
28525@item C-x 2
28526Use a TUI layout with at least two windows. When the current
46ba6afa 28527layout already has two windows, the next layout with two windows is used.
8e04817f
AC
28528When a new layout is chosen, one window will always be common to the
28529previous layout and the new one.
c906108c 28530
8e04817f 28531Think of it as the Emacs @kbd{C-x 2} binding.
2df3850c 28532
c86d74cc
TT
28533This key binding uses the bindable Readline function
28534@code{tui-change-windows}.
28535
72ffddc9
SC
28536@kindex C-x o
28537@item C-x o
28538Change the active window. The TUI associates several key bindings
46ba6afa 28539(like scrolling and arrow keys) with the active window. This command
72ffddc9
SC
28540gives the focus to the next TUI window.
28541
28542Think of it as the Emacs @kbd{C-x o} binding.
28543
c86d74cc
TT
28544This key binding uses the bindable Readline function
28545@code{tui-other-window}.
28546
7cf36c78
SC
28547@kindex C-x s
28548@item C-x s
46ba6afa
BW
28549Switch in and out of the TUI SingleKey mode that binds single
28550keys to @value{GDBN} commands (@pxref{TUI Single Key Mode}).
c86d74cc
TT
28551
28552This key binding uses the bindable Readline function
28553@code{next-keymap}.
c906108c
SS
28554@end table
28555
46ba6afa 28556The following key bindings only work in the TUI mode:
5d161b24 28557
46ba6afa 28558@table @asis
8e04817f 28559@kindex PgUp
46ba6afa 28560@item @key{PgUp}
8e04817f 28561Scroll the active window one page up.
c906108c 28562
8e04817f 28563@kindex PgDn
46ba6afa 28564@item @key{PgDn}
8e04817f 28565Scroll the active window one page down.
c906108c 28566
8e04817f 28567@kindex Up
46ba6afa 28568@item @key{Up}
8e04817f 28569Scroll the active window one line up.
c906108c 28570
8e04817f 28571@kindex Down
46ba6afa 28572@item @key{Down}
8e04817f 28573Scroll the active window one line down.
c906108c 28574
8e04817f 28575@kindex Left
46ba6afa 28576@item @key{Left}
8e04817f 28577Scroll the active window one column left.
c906108c 28578
8e04817f 28579@kindex Right
46ba6afa 28580@item @key{Right}
8e04817f 28581Scroll the active window one column right.
c906108c 28582
8e04817f 28583@kindex C-L
46ba6afa 28584@item @kbd{C-L}
8e04817f 28585Refresh the screen.
8e04817f 28586@end table
c906108c 28587
46ba6afa
BW
28588Because the arrow keys scroll the active window in the TUI mode, they
28589are not available for their normal use by readline unless the command
28590window has the focus. When another window is active, you must use
28591other readline key bindings such as @kbd{C-p}, @kbd{C-n}, @kbd{C-b}
28592and @kbd{C-f} to control the command window.
8e04817f 28593
7cf36c78
SC
28594@node TUI Single Key Mode
28595@section TUI Single Key Mode
28596@cindex TUI single key mode
28597
46ba6afa
BW
28598The TUI also provides a @dfn{SingleKey} mode, which binds several
28599frequently used @value{GDBN} commands to single keys. Type @kbd{C-x s} to
28600switch into this mode, where the following key bindings are used:
7cf36c78
SC
28601
28602@table @kbd
28603@kindex c @r{(SingleKey TUI key)}
28604@item c
28605continue
28606
28607@kindex d @r{(SingleKey TUI key)}
28608@item d
28609down
28610
28611@kindex f @r{(SingleKey TUI key)}
28612@item f
28613finish
28614
28615@kindex n @r{(SingleKey TUI key)}
28616@item n
28617next
28618
a5afdb16
RK
28619@kindex o @r{(SingleKey TUI key)}
28620@item o
28621nexti. The shortcut letter @samp{o} stands for ``step Over''.
28622
7cf36c78
SC
28623@kindex q @r{(SingleKey TUI key)}
28624@item q
46ba6afa 28625exit the SingleKey mode.
7cf36c78
SC
28626
28627@kindex r @r{(SingleKey TUI key)}
28628@item r
28629run
28630
28631@kindex s @r{(SingleKey TUI key)}
28632@item s
28633step
28634
a5afdb16
RK
28635@kindex i @r{(SingleKey TUI key)}
28636@item i
28637stepi. The shortcut letter @samp{i} stands for ``step Into''.
28638
7cf36c78
SC
28639@kindex u @r{(SingleKey TUI key)}
28640@item u
28641up
28642
28643@kindex v @r{(SingleKey TUI key)}
28644@item v
28645info locals
28646
28647@kindex w @r{(SingleKey TUI key)}
28648@item w
28649where
7cf36c78
SC
28650@end table
28651
28652Other keys temporarily switch to the @value{GDBN} command prompt.
28653The key that was pressed is inserted in the editing buffer so that
28654it is possible to type most @value{GDBN} commands without interaction
46ba6afa
BW
28655with the TUI SingleKey mode. Once the command is entered the TUI
28656SingleKey mode is restored. The only way to permanently leave
7f9087cb 28657this mode is by typing @kbd{q} or @kbd{C-x s}.
7cf36c78 28658
11061048
TT
28659@cindex SingleKey keymap name
28660If @value{GDBN} was built with Readline 8.0 or later, the TUI
28661SingleKey keymap will be named @samp{SingleKey}. This can be used in
28662@file{.inputrc} to add additional bindings to this keymap.
7cf36c78 28663
8e04817f 28664@node TUI Commands
db2e3e2e 28665@section TUI-specific Commands
8e04817f
AC
28666@cindex TUI commands
28667
28668The TUI has specific commands to control the text windows.
46ba6afa
BW
28669These commands are always available, even when @value{GDBN} is not in
28670the TUI mode. When @value{GDBN} is in the standard mode, most
28671of these commands will automatically switch to the TUI mode.
c906108c 28672
ff12863f
PA
28673Note that if @value{GDBN}'s @code{stdout} is not connected to a
28674terminal, or @value{GDBN} has been started with the machine interface
28675interpreter (@pxref{GDB/MI, ,The @sc{gdb/mi} Interface}), most of
28676these commands will fail with an error, because it would not be
28677possible or desirable to enable curses window management.
28678
c906108c 28679@table @code
a4ea0946
AB
28680@item tui enable
28681@kindex tui enable
28682Activate TUI mode. The last active TUI window layout will be used if
760f7560 28683TUI mode has previously been used in the current debugging session,
a4ea0946
AB
28684otherwise a default layout is used.
28685
28686@item tui disable
28687@kindex tui disable
28688Disable TUI mode, returning to the console interpreter.
28689
3d757584
SC
28690@item info win
28691@kindex info win
28692List and give the size of all displayed windows.
28693
ee325b61
TT
28694@item tui new-layout @var{name} @var{window} @var{weight} @r{[}@var{window} @var{weight}@dots{}@r{]}
28695@kindex tui new-layout
28696Create a new TUI layout. The new layout will be named @var{name}, and
28697can be accessed using the @code{layout} command (see below).
28698
7c043ba6
TT
28699Each @var{window} parameter is either the name of a window to display,
28700or a window description. The windows will be displayed from top to
28701bottom in the order listed.
28702
28703The names of the windows are the same as the ones given to the
ee325b61 28704@code{focus} command (see below); additional, the @code{status}
7c043ba6
TT
28705window can be specified. Note that, because it is of fixed height,
28706the weight assigned to the status window is of no importance. It is
28707conventional to use @samp{0} here.
28708
28709A window description looks a bit like an invocation of @code{tui
28710new-layout}, and is of the form
28711@{@r{[}@code{-horizontal}@r{]}@var{window} @var{weight} @r{[}@var{window} @var{weight}@dots{}@r{]}@}.
28712
28713This specifies a sub-layout. If @code{-horizontal} is given, the
28714windows in this description will be arranged side-by-side, rather than
28715top-to-bottom.
ee325b61
TT
28716
28717Each @var{weight} is an integer. It is the weight of this window
28718relative to all the other windows in the layout. These numbers are
28719used to calculate how much of the screen is given to each window.
28720
28721For example:
28722
28723@example
28724(gdb) tui new-layout example src 1 regs 1 status 0 cmd 1
28725@end example
28726
28727Here, the new layout is called @samp{example}. It shows the source
28728and register windows, followed by the status window, and then finally
28729the command window. The non-status windows all have the same weight,
28730so the terminal will be split into three roughly equal sections.
28731
7c043ba6
TT
28732Here is a more complex example, showing a horizontal layout:
28733
28734@example
28735(gdb) tui new-layout example @{-horizontal src 1 asm 1@} 2 status 0 cmd 1
28736@end example
28737
28738This will result in side-by-side source and assembly windows; with the
28739status and command window being beneath these, filling the entire
28740width of the terminal. Because they have weight 2, the source and
28741assembly windows will be twice the height of the command window.
28742
6008fc5f 28743@item layout @var{name}
4644b6e3 28744@kindex layout
ee325b61
TT
28745Changes which TUI windows are displayed. The @var{name} parameter
28746controls which layout is shown. It can be either one of the built-in
28747layout names, or the name of a layout defined by the user using
28748@code{tui new-layout}.
28749
28750The built-in layouts are as follows:
6008fc5f
AB
28751
28752@table @code
28753@item next
8e04817f 28754Display the next layout.
2df3850c 28755
6008fc5f 28756@item prev
8e04817f 28757Display the previous layout.
c906108c 28758
6008fc5f
AB
28759@item src
28760Display the source and command windows.
c906108c 28761
6008fc5f
AB
28762@item asm
28763Display the assembly and command windows.
c906108c 28764
6008fc5f
AB
28765@item split
28766Display the source, assembly, and command windows.
c906108c 28767
6008fc5f
AB
28768@item regs
28769When in @code{src} layout display the register, source, and command
28770windows. When in @code{asm} or @code{split} layout display the
28771register, assembler, and command windows.
28772@end table
8e04817f 28773
6008fc5f 28774@item focus @var{name}
8e04817f 28775@kindex focus
6008fc5f
AB
28776Changes which TUI window is currently active for scrolling. The
28777@var{name} parameter can be any of the following:
28778
28779@table @code
28780@item next
46ba6afa
BW
28781Make the next window active for scrolling.
28782
6008fc5f 28783@item prev
46ba6afa
BW
28784Make the previous window active for scrolling.
28785
6008fc5f 28786@item src
46ba6afa
BW
28787Make the source window active for scrolling.
28788
6008fc5f 28789@item asm
46ba6afa
BW
28790Make the assembly window active for scrolling.
28791
6008fc5f 28792@item regs
46ba6afa
BW
28793Make the register window active for scrolling.
28794
6008fc5f 28795@item cmd
46ba6afa 28796Make the command window active for scrolling.
6008fc5f 28797@end table
c906108c 28798
8e04817f
AC
28799@item refresh
28800@kindex refresh
7f9087cb 28801Refresh the screen. This is similar to typing @kbd{C-L}.
c906108c 28802
51f0e40d 28803@item tui reg @var{group}
6a1b180d 28804@kindex tui reg
51f0e40d
AB
28805Changes the register group displayed in the tui register window to
28806@var{group}. If the register window is not currently displayed this
28807command will cause the register window to be displayed. The list of
28808register groups, as well as their order is target specific. The
28809following groups are available on most targets:
28810@table @code
28811@item next
28812Repeatedly selecting this group will cause the display to cycle
28813through all of the available register groups.
28814
28815@item prev
28816Repeatedly selecting this group will cause the display to cycle
28817through all of the available register groups in the reverse order to
28818@var{next}.
28819
28820@item general
28821Display the general registers.
28822@item float
28823Display the floating point registers.
28824@item system
28825Display the system registers.
28826@item vector
28827Display the vector registers.
28828@item all
28829Display all registers.
28830@end table
6a1b180d 28831
8e04817f
AC
28832@item update
28833@kindex update
28834Update the source window and the current execution point.
c906108c 28835
8e04817f
AC
28836@item winheight @var{name} +@var{count}
28837@itemx winheight @var{name} -@var{count}
28838@kindex winheight
28839Change the height of the window @var{name} by @var{count}
28840lines. Positive counts increase the height, while negative counts
bf555842
EZ
28841decrease it. The @var{name} parameter can be one of @code{src} (the
28842source window), @code{cmd} (the command window), @code{asm} (the
28843disassembly window), or @code{regs} (the register display window).
d6677607 28844@end table
2df3850c 28845
8e04817f 28846@node TUI Configuration
79a6e687 28847@section TUI Configuration Variables
8e04817f 28848@cindex TUI configuration variables
c906108c 28849
46ba6afa 28850Several configuration variables control the appearance of TUI windows.
c906108c 28851
8e04817f
AC
28852@table @code
28853@item set tui border-kind @var{kind}
28854@kindex set tui border-kind
28855Select the border appearance for the source, assembly and register windows.
28856The possible values are the following:
28857@table @code
28858@item space
28859Use a space character to draw the border.
c906108c 28860
8e04817f 28861@item ascii
46ba6afa 28862Use @sc{ascii} characters @samp{+}, @samp{-} and @samp{|} to draw the border.
c906108c 28863
8e04817f
AC
28864@item acs
28865Use the Alternate Character Set to draw the border. The border is
28866drawn using character line graphics if the terminal supports them.
8e04817f 28867@end table
c78b4128 28868
8e04817f
AC
28869@item set tui border-mode @var{mode}
28870@kindex set tui border-mode
46ba6afa
BW
28871@itemx set tui active-border-mode @var{mode}
28872@kindex set tui active-border-mode
28873Select the display attributes for the borders of the inactive windows
28874or the active window. The @var{mode} can be one of the following:
8e04817f
AC
28875@table @code
28876@item normal
28877Use normal attributes to display the border.
c906108c 28878
8e04817f
AC
28879@item standout
28880Use standout mode.
c906108c 28881
8e04817f
AC
28882@item reverse
28883Use reverse video mode.
c906108c 28884
8e04817f
AC
28885@item half
28886Use half bright mode.
c906108c 28887
8e04817f
AC
28888@item half-standout
28889Use half bright and standout mode.
c906108c 28890
8e04817f
AC
28891@item bold
28892Use extra bright or bold mode.
c78b4128 28893
8e04817f
AC
28894@item bold-standout
28895Use extra bright or bold and standout mode.
8e04817f 28896@end table
7806cea7
TT
28897
28898@item set tui tab-width @var{nchars}
28899@kindex set tui tab-width
28900@kindex tabset
28901Set the width of tab stops to be @var{nchars} characters. This
28902setting affects the display of TAB characters in the source and
28903assembly windows.
d1da6b01
TT
28904
28905@item set tui compact-source @r{[}on@r{|}off@r{]}
28906@kindex set tui compact-source
28907Set whether the TUI source window is displayed in ``compact'' form.
28908The default display uses more space for line numbers and starts the
28909source text at the next tab stop; the compact display uses only as
28910much space as is needed for the line numbers in the current file, and
28911only a single space to separate the line numbers from the source.
7806cea7 28912@end table
c78b4128 28913
a2a7af0c
TT
28914Note that the colors of the TUI borders can be controlled using the
28915appropriate @code{set style} commands. @xref{Output Styling}.
28916
8e04817f
AC
28917@node Emacs
28918@chapter Using @value{GDBN} under @sc{gnu} Emacs
c78b4128 28919
8e04817f
AC
28920@cindex Emacs
28921@cindex @sc{gnu} Emacs
28922A special interface allows you to use @sc{gnu} Emacs to view (and
28923edit) the source files for the program you are debugging with
28924@value{GDBN}.
c906108c 28925
8e04817f
AC
28926To use this interface, use the command @kbd{M-x gdb} in Emacs. Give the
28927executable file you want to debug as an argument. This command starts
28928@value{GDBN} as a subprocess of Emacs, with input and output through a newly
28929created Emacs buffer.
28930@c (Do not use the @code{-tui} option to run @value{GDBN} from Emacs.)
c906108c 28931
5e252a2e 28932Running @value{GDBN} under Emacs can be just like running @value{GDBN} normally except for two
8e04817f 28933things:
c906108c 28934
8e04817f
AC
28935@itemize @bullet
28936@item
5e252a2e
NR
28937All ``terminal'' input and output goes through an Emacs buffer, called
28938the GUD buffer.
c906108c 28939
8e04817f
AC
28940This applies both to @value{GDBN} commands and their output, and to the input
28941and output done by the program you are debugging.
bf0184be 28942
8e04817f
AC
28943This is useful because it means that you can copy the text of previous
28944commands and input them again; you can even use parts of the output
28945in this way.
bf0184be 28946
8e04817f
AC
28947All the facilities of Emacs' Shell mode are available for interacting
28948with your program. In particular, you can send signals the usual
28949way---for example, @kbd{C-c C-c} for an interrupt, @kbd{C-c C-z} for a
28950stop.
bf0184be
ND
28951
28952@item
8e04817f 28953@value{GDBN} displays source code through Emacs.
bf0184be 28954
8e04817f
AC
28955Each time @value{GDBN} displays a stack frame, Emacs automatically finds the
28956source file for that frame and puts an arrow (@samp{=>}) at the
28957left margin of the current line. Emacs uses a separate buffer for
28958source display, and splits the screen to show both your @value{GDBN} session
28959and the source.
bf0184be 28960
8e04817f
AC
28961Explicit @value{GDBN} @code{list} or search commands still produce output as
28962usual, but you probably have no reason to use them from Emacs.
5e252a2e
NR
28963@end itemize
28964
28965We call this @dfn{text command mode}. Emacs 22.1, and later, also uses
28966a graphical mode, enabled by default, which provides further buffers
28967that can control the execution and describe the state of your program.
28968@xref{GDB Graphical Interface,,, Emacs, The @sc{gnu} Emacs Manual}.
c906108c 28969
64fabec2
AC
28970If you specify an absolute file name when prompted for the @kbd{M-x
28971gdb} argument, then Emacs sets your current working directory to where
28972your program resides. If you only specify the file name, then Emacs
7a9dd1b2 28973sets your current working directory to the directory associated
64fabec2 28974with the previous buffer. In this case, @value{GDBN} may find your
e43c3e2a 28975program by searching your environment's @env{PATH} variable, but on
64fabec2
AC
28976some operating systems it might not find the source. So, although the
28977@value{GDBN} input and output session proceeds normally, the auxiliary
28978buffer does not display the current source and line of execution.
28979
28980The initial working directory of @value{GDBN} is printed on the top
5e252a2e
NR
28981line of the GUD buffer and this serves as a default for the commands
28982that specify files for @value{GDBN} to operate on. @xref{Files,
28983,Commands to Specify Files}.
64fabec2
AC
28984
28985By default, @kbd{M-x gdb} calls the program called @file{gdb}. If you
28986need to call @value{GDBN} by a different name (for example, if you
28987keep several configurations around, with different names) you can
28988customize the Emacs variable @code{gud-gdb-command-name} to run the
28989one you want.
8e04817f 28990
5e252a2e 28991In the GUD buffer, you can use these special Emacs commands in
8e04817f 28992addition to the standard Shell mode commands:
c906108c 28993
8e04817f
AC
28994@table @kbd
28995@item C-h m
5e252a2e 28996Describe the features of Emacs' GUD Mode.
c906108c 28997
64fabec2 28998@item C-c C-s
8e04817f
AC
28999Execute to another source line, like the @value{GDBN} @code{step} command; also
29000update the display window to show the current file and location.
c906108c 29001
64fabec2 29002@item C-c C-n
8e04817f
AC
29003Execute to next source line in this function, skipping all function
29004calls, like the @value{GDBN} @code{next} command. Then update the display window
29005to show the current file and location.
c906108c 29006
64fabec2 29007@item C-c C-i
8e04817f
AC
29008Execute one instruction, like the @value{GDBN} @code{stepi} command; update
29009display window accordingly.
c906108c 29010
8e04817f
AC
29011@item C-c C-f
29012Execute until exit from the selected stack frame, like the @value{GDBN}
29013@code{finish} command.
c906108c 29014
64fabec2 29015@item C-c C-r
8e04817f
AC
29016Continue execution of your program, like the @value{GDBN} @code{continue}
29017command.
b433d00b 29018
64fabec2 29019@item C-c <
8e04817f
AC
29020Go up the number of frames indicated by the numeric argument
29021(@pxref{Arguments, , Numeric Arguments, Emacs, The @sc{gnu} Emacs Manual}),
29022like the @value{GDBN} @code{up} command.
b433d00b 29023
64fabec2 29024@item C-c >
8e04817f
AC
29025Go down the number of frames indicated by the numeric argument, like the
29026@value{GDBN} @code{down} command.
8e04817f 29027@end table
c906108c 29028
7f9087cb 29029In any source file, the Emacs command @kbd{C-x @key{SPC}} (@code{gud-break})
8e04817f 29030tells @value{GDBN} to set a breakpoint on the source line point is on.
c906108c 29031
5e252a2e
NR
29032In text command mode, if you type @kbd{M-x speedbar}, Emacs displays a
29033separate frame which shows a backtrace when the GUD buffer is current.
29034Move point to any frame in the stack and type @key{RET} to make it
29035become the current frame and display the associated source in the
29036source buffer. Alternatively, click @kbd{Mouse-2} to make the
29037selected frame become the current one. In graphical mode, the
29038speedbar displays watch expressions.
64fabec2 29039
8e04817f
AC
29040If you accidentally delete the source-display buffer, an easy way to get
29041it back is to type the command @code{f} in the @value{GDBN} buffer, to
29042request a frame display; when you run under Emacs, this recreates
29043the source buffer if necessary to show you the context of the current
29044frame.
c906108c 29045
8e04817f
AC
29046The source files displayed in Emacs are in ordinary Emacs buffers
29047which are visiting the source files in the usual way. You can edit
29048the files with these buffers if you wish; but keep in mind that @value{GDBN}
29049communicates with Emacs in terms of line numbers. If you add or
29050delete lines from the text, the line numbers that @value{GDBN} knows cease
29051to correspond properly with the code.
b383017d 29052
5e252a2e
NR
29053A more detailed description of Emacs' interaction with @value{GDBN} is
29054given in the Emacs manual (@pxref{Debuggers,,, Emacs, The @sc{gnu}
29055Emacs Manual}).
c906108c 29056
922fbb7b
AC
29057@node GDB/MI
29058@chapter The @sc{gdb/mi} Interface
29059
29060@unnumberedsec Function and Purpose
29061
29062@cindex @sc{gdb/mi}, its purpose
6b5e8c01
NR
29063@sc{gdb/mi} is a line based machine oriented text interface to
29064@value{GDBN} and is activated by specifying using the
29065@option{--interpreter} command line option (@pxref{Mode Options}). It
29066is specifically intended to support the development of systems which
29067use the debugger as just one small component of a larger system.
922fbb7b
AC
29068
29069This chapter is a specification of the @sc{gdb/mi} interface. It is written
29070in the form of a reference manual.
29071
29072Note that @sc{gdb/mi} is still under construction, so some of the
af6eff6f
NR
29073features described below are incomplete and subject to change
29074(@pxref{GDB/MI Development and Front Ends, , @sc{gdb/mi} Development and Front Ends}).
922fbb7b
AC
29075
29076@unnumberedsec Notation and Terminology
29077
29078@cindex notational conventions, for @sc{gdb/mi}
29079This chapter uses the following notation:
29080
29081@itemize @bullet
29082@item
29083@code{|} separates two alternatives.
29084
29085@item
29086@code{[ @var{something} ]} indicates that @var{something} is optional:
29087it may or may not be given.
29088
29089@item
29090@code{( @var{group} )*} means that @var{group} inside the parentheses
29091may repeat zero or more times.
29092
29093@item
29094@code{( @var{group} )+} means that @var{group} inside the parentheses
29095may repeat one or more times.
29096
29097@item
29098@code{"@var{string}"} means a literal @var{string}.
29099@end itemize
29100
29101@ignore
29102@heading Dependencies
29103@end ignore
29104
922fbb7b 29105@menu
c3b108f7 29106* GDB/MI General Design::
922fbb7b
AC
29107* GDB/MI Command Syntax::
29108* GDB/MI Compatibility with CLI::
af6eff6f 29109* GDB/MI Development and Front Ends::
922fbb7b 29110* GDB/MI Output Records::
ef21caaf 29111* GDB/MI Simple Examples::
922fbb7b 29112* GDB/MI Command Description Format::
ef21caaf 29113* GDB/MI Breakpoint Commands::
3fa7bf06 29114* GDB/MI Catchpoint Commands::
a2c02241
NR
29115* GDB/MI Program Context::
29116* GDB/MI Thread Commands::
5d77fe44 29117* GDB/MI Ada Tasking Commands::
a2c02241
NR
29118* GDB/MI Program Execution::
29119* GDB/MI Stack Manipulation::
29120* GDB/MI Variable Objects::
922fbb7b 29121* GDB/MI Data Manipulation::
a2c02241
NR
29122* GDB/MI Tracepoint Commands::
29123* GDB/MI Symbol Query::
351ff01a 29124* GDB/MI File Commands::
922fbb7b
AC
29125@ignore
29126* GDB/MI Kod Commands::
29127* GDB/MI Memory Overlay Commands::
29128* GDB/MI Signal Handling Commands::
29129@end ignore
922fbb7b 29130* GDB/MI Target Manipulation::
a6b151f1 29131* GDB/MI File Transfer Commands::
58d06528 29132* GDB/MI Ada Exceptions Commands::
d192b373 29133* GDB/MI Support Commands::
ef21caaf 29134* GDB/MI Miscellaneous Commands::
922fbb7b
AC
29135@end menu
29136
c3b108f7
VP
29137@c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
29138@node GDB/MI General Design
29139@section @sc{gdb/mi} General Design
29140@cindex GDB/MI General Design
29141
29142Interaction of a @sc{GDB/MI} frontend with @value{GDBN} involves three
29143parts---commands sent to @value{GDBN}, responses to those commands
29144and notifications. Each command results in exactly one response,
29145indicating either successful completion of the command, or an error.
29146For the commands that do not resume the target, the response contains the
29147requested information. For the commands that resume the target, the
29148response only indicates whether the target was successfully resumed.
29149Notifications is the mechanism for reporting changes in the state of the
29150target, or in @value{GDBN} state, that cannot conveniently be associated with
29151a command and reported as part of that command response.
29152
29153The important examples of notifications are:
29154@itemize @bullet
29155
29156@item
29157Exec notifications. These are used to report changes in
29158target state---when a target is resumed, or stopped. It would not
29159be feasible to include this information in response of resuming
29160commands, because one resume commands can result in multiple events in
29161different threads. Also, quite some time may pass before any event
29162happens in the target, while a frontend needs to know whether the resuming
29163command itself was successfully executed.
29164
29165@item
29166Console output, and status notifications. Console output
29167notifications are used to report output of CLI commands, as well as
29168diagnostics for other commands. Status notifications are used to
29169report the progress of a long-running operation. Naturally, including
29170this information in command response would mean no output is produced
29171until the command is finished, which is undesirable.
29172
29173@item
29174General notifications. Commands may have various side effects on
29175the @value{GDBN} or target state beyond their official purpose. For example,
29176a command may change the selected thread. Although such changes can
29177be included in command response, using notification allows for more
29178orthogonal frontend design.
29179
29180@end itemize
29181
29182There's no guarantee that whenever an MI command reports an error,
29183@value{GDBN} or the target are in any specific state, and especially,
29184the state is not reverted to the state before the MI command was
29185processed. Therefore, whenever an MI command results in an error,
29186we recommend that the frontend refreshes all the information shown in
29187the user interface.
29188
508094de
NR
29189
29190@menu
29191* Context management::
29192* Asynchronous and non-stop modes::
29193* Thread groups::
29194@end menu
29195
29196@node Context management
c3b108f7
VP
29197@subsection Context management
29198
403cb6b1
JB
29199@subsubsection Threads and Frames
29200
c3b108f7
VP
29201In most cases when @value{GDBN} accesses the target, this access is
29202done in context of a specific thread and frame (@pxref{Frames}).
29203Often, even when accessing global data, the target requires that a thread
29204be specified. The CLI interface maintains the selected thread and frame,
29205and supplies them to target on each command. This is convenient,
29206because a command line user would not want to specify that information
29207explicitly on each command, and because user interacts with
29208@value{GDBN} via a single terminal, so no confusion is possible as
29209to what thread and frame are the current ones.
29210
29211In the case of MI, the concept of selected thread and frame is less
29212useful. First, a frontend can easily remember this information
29213itself. Second, a graphical frontend can have more than one window,
29214each one used for debugging a different thread, and the frontend might
29215want to access additional threads for internal purposes. This
29216increases the risk that by relying on implicitly selected thread, the
29217frontend may be operating on a wrong one. Therefore, each MI command
29218should explicitly specify which thread and frame to operate on. To
29219make it possible, each MI command accepts the @samp{--thread} and
5d5658a1
PA
29220@samp{--frame} options, the value to each is @value{GDBN} global
29221identifier for thread and frame to operate on.
c3b108f7
VP
29222
29223Usually, each top-level window in a frontend allows the user to select
29224a thread and a frame, and remembers the user selection for further
29225operations. However, in some cases @value{GDBN} may suggest that the
4034d0ff
AT
29226current thread or frame be changed. For example, when stopping on a
29227breakpoint it is reasonable to switch to the thread where breakpoint is
29228hit. For another example, if the user issues the CLI @samp{thread} or
29229@samp{frame} commands via the frontend, it is desirable to change the
29230frontend's selection to the one specified by user. @value{GDBN}
29231communicates the suggestion to change current thread and frame using the
29232@samp{=thread-selected} notification.
c3b108f7
VP
29233
29234Note that historically, MI shares the selected thread with CLI, so
29235frontends used the @code{-thread-select} to execute commands in the
29236right context. However, getting this to work right is cumbersome. The
29237simplest way is for frontend to emit @code{-thread-select} command
29238before every command. This doubles the number of commands that need
29239to be sent. The alternative approach is to suppress @code{-thread-select}
29240if the selected thread in @value{GDBN} is supposed to be identical to the
29241thread the frontend wants to operate on. However, getting this
29242optimization right can be tricky. In particular, if the frontend
29243sends several commands to @value{GDBN}, and one of the commands changes the
29244selected thread, then the behaviour of subsequent commands will
29245change. So, a frontend should either wait for response from such
29246problematic commands, or explicitly add @code{-thread-select} for
29247all subsequent commands. No frontend is known to do this exactly
29248right, so it is suggested to just always pass the @samp{--thread} and
29249@samp{--frame} options.
29250
403cb6b1
JB
29251@subsubsection Language
29252
29253The execution of several commands depends on which language is selected.
29254By default, the current language (@pxref{show language}) is used.
29255But for commands known to be language-sensitive, it is recommended
29256to use the @samp{--language} option. This option takes one argument,
29257which is the name of the language to use while executing the command.
29258For instance:
29259
29260@smallexample
29261-data-evaluate-expression --language c "sizeof (void*)"
29262^done,value="4"
29263(gdb)
29264@end smallexample
29265
29266The valid language names are the same names accepted by the
29267@samp{set language} command (@pxref{Manually}), excluding @samp{auto},
29268@samp{local} or @samp{unknown}.
29269
508094de 29270@node Asynchronous and non-stop modes
c3b108f7
VP
29271@subsection Asynchronous command execution and non-stop mode
29272
29273On some targets, @value{GDBN} is capable of processing MI commands
29274even while the target is running. This is called @dfn{asynchronous
29275command execution} (@pxref{Background Execution}). The frontend may
6b92c0d3 29276specify a preference for asynchronous execution using the
329ea579 29277@code{-gdb-set mi-async 1} command, which should be emitted before
c3b108f7
VP
29278either running the executable or attaching to the target. After the
29279frontend has started the executable or attached to the target, it can
29280find if asynchronous execution is enabled using the
29281@code{-list-target-features} command.
29282
329ea579
PA
29283@table @code
29284@item -gdb-set mi-async on
29285@item -gdb-set mi-async off
29286Set whether MI is in asynchronous mode.
29287
29288When @code{off}, which is the default, MI execution commands (e.g.,
29289@code{-exec-continue}) are foreground commands, and @value{GDBN} waits
29290for the program to stop before processing further commands.
29291
29292When @code{on}, MI execution commands are background execution
29293commands (e.g., @code{-exec-continue} becomes the equivalent of the
29294@code{c&} CLI command), and so @value{GDBN} is capable of processing
29295MI commands even while the target is running.
29296
29297@item -gdb-show mi-async
29298Show whether MI asynchronous mode is enabled.
29299@end table
29300
29301Note: In @value{GDBN} version 7.7 and earlier, this option was called
29302@code{target-async} instead of @code{mi-async}, and it had the effect
29303of both putting MI in asynchronous mode and making CLI background
29304commands possible. CLI background commands are now always possible
29305``out of the box'' if the target supports them. The old spelling is
29306kept as a deprecated alias for backwards compatibility.
29307
c3b108f7
VP
29308Even if @value{GDBN} can accept a command while target is running,
29309many commands that access the target do not work when the target is
29310running. Therefore, asynchronous command execution is most useful
29311when combined with non-stop mode (@pxref{Non-Stop Mode}). Then,
29312it is possible to examine the state of one thread, while other threads
29313are running.
29314
29315When a given thread is running, MI commands that try to access the
29316target in the context of that thread may not work, or may work only on
29317some targets. In particular, commands that try to operate on thread's
29318stack will not work, on any target. Commands that read memory, or
29319modify breakpoints, may work or not work, depending on the target. Note
29320that even commands that operate on global state, such as @code{print},
29321@code{set}, and breakpoint commands, still access the target in the
29322context of a specific thread, so frontend should try to find a
29323stopped thread and perform the operation on that thread (using the
29324@samp{--thread} option).
29325
29326Which commands will work in the context of a running thread is
29327highly target dependent. However, the two commands
29328@code{-exec-interrupt}, to stop a thread, and @code{-thread-info},
29329to find the state of a thread, will always work.
29330
508094de 29331@node Thread groups
c3b108f7
VP
29332@subsection Thread groups
29333@value{GDBN} may be used to debug several processes at the same time.
6b92c0d3 29334On some platforms, @value{GDBN} may support debugging of several
c3b108f7
VP
29335hardware systems, each one having several cores with several different
29336processes running on each core. This section describes the MI
29337mechanism to support such debugging scenarios.
29338
29339The key observation is that regardless of the structure of the
29340target, MI can have a global list of threads, because most commands that
29341accept the @samp{--thread} option do not need to know what process that
29342thread belongs to. Therefore, it is not necessary to introduce
29343neither additional @samp{--process} option, nor an notion of the
29344current process in the MI interface. The only strictly new feature
29345that is required is the ability to find how the threads are grouped
29346into processes.
29347
29348To allow the user to discover such grouping, and to support arbitrary
29349hierarchy of machines/cores/processes, MI introduces the concept of a
29350@dfn{thread group}. Thread group is a collection of threads and other
29351thread groups. A thread group always has a string identifier, a type,
29352and may have additional attributes specific to the type. A new
29353command, @code{-list-thread-groups}, returns the list of top-level
29354thread groups, which correspond to processes that @value{GDBN} is
29355debugging at the moment. By passing an identifier of a thread group
29356to the @code{-list-thread-groups} command, it is possible to obtain
29357the members of specific thread group.
29358
29359To allow the user to easily discover processes, and other objects, he
29360wishes to debug, a concept of @dfn{available thread group} is
29361introduced. Available thread group is an thread group that
29362@value{GDBN} is not debugging, but that can be attached to, using the
29363@code{-target-attach} command. The list of available top-level thread
29364groups can be obtained using @samp{-list-thread-groups --available}.
29365In general, the content of a thread group may be only retrieved only
29366after attaching to that thread group.
29367
65c574f6 29368Thread groups are related to inferiors (@pxref{Inferiors Connections and
a79b8f6e
VP
29369Programs}). Each inferior corresponds to a thread group of a special
29370type @samp{process}, and some additional operations are permitted on
29371such thread groups.
29372
922fbb7b
AC
29373@c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
29374@node GDB/MI Command Syntax
29375@section @sc{gdb/mi} Command Syntax
29376
29377@menu
29378* GDB/MI Input Syntax::
29379* GDB/MI Output Syntax::
922fbb7b
AC
29380@end menu
29381
29382@node GDB/MI Input Syntax
29383@subsection @sc{gdb/mi} Input Syntax
29384
29385@cindex input syntax for @sc{gdb/mi}
29386@cindex @sc{gdb/mi}, input syntax
29387@table @code
29388@item @var{command} @expansion{}
29389@code{@var{cli-command} | @var{mi-command}}
29390
29391@item @var{cli-command} @expansion{}
29392@code{[ @var{token} ] @var{cli-command} @var{nl}}, where
29393@var{cli-command} is any existing @value{GDBN} CLI command.
29394
29395@item @var{mi-command} @expansion{}
29396@code{[ @var{token} ] "-" @var{operation} ( " " @var{option} )*
29397@code{[} " --" @code{]} ( " " @var{parameter} )* @var{nl}}
29398
29399@item @var{token} @expansion{}
29400"any sequence of digits"
29401
29402@item @var{option} @expansion{}
29403@code{"-" @var{parameter} [ " " @var{parameter} ]}
29404
29405@item @var{parameter} @expansion{}
29406@code{@var{non-blank-sequence} | @var{c-string}}
29407
29408@item @var{operation} @expansion{}
29409@emph{any of the operations described in this chapter}
29410
29411@item @var{non-blank-sequence} @expansion{}
29412@emph{anything, provided it doesn't contain special characters such as
29413"-", @var{nl}, """ and of course " "}
29414
29415@item @var{c-string} @expansion{}
29416@code{""" @var{seven-bit-iso-c-string-content} """}
29417
29418@item @var{nl} @expansion{}
29419@code{CR | CR-LF}
29420@end table
29421
29422@noindent
29423Notes:
29424
29425@itemize @bullet
29426@item
29427The CLI commands are still handled by the @sc{mi} interpreter; their
29428output is described below.
29429
29430@item
29431The @code{@var{token}}, when present, is passed back when the command
29432finishes.
29433
29434@item
29435Some @sc{mi} commands accept optional arguments as part of the parameter
29436list. Each option is identified by a leading @samp{-} (dash) and may be
29437followed by an optional argument parameter. Options occur first in the
29438parameter list and can be delimited from normal parameters using
29439@samp{--} (this is useful when some parameters begin with a dash).
29440@end itemize
29441
29442Pragmatics:
29443
29444@itemize @bullet
29445@item
29446We want easy access to the existing CLI syntax (for debugging).
29447
29448@item
29449We want it to be easy to spot a @sc{mi} operation.
29450@end itemize
29451
29452@node GDB/MI Output Syntax
29453@subsection @sc{gdb/mi} Output Syntax
29454
29455@cindex output syntax of @sc{gdb/mi}
29456@cindex @sc{gdb/mi}, output syntax
29457The output from @sc{gdb/mi} consists of zero or more out-of-band records
29458followed, optionally, by a single result record. This result record
29459is for the most recent command. The sequence of output records is
594fe323 29460terminated by @samp{(gdb)}.
922fbb7b
AC
29461
29462If an input command was prefixed with a @code{@var{token}} then the
29463corresponding output for that command will also be prefixed by that same
29464@var{token}.
29465
29466@table @code
29467@item @var{output} @expansion{}
594fe323 29468@code{( @var{out-of-band-record} )* [ @var{result-record} ] "(gdb)" @var{nl}}
922fbb7b
AC
29469
29470@item @var{result-record} @expansion{}
29471@code{ [ @var{token} ] "^" @var{result-class} ( "," @var{result} )* @var{nl}}
29472
29473@item @var{out-of-band-record} @expansion{}
29474@code{@var{async-record} | @var{stream-record}}
29475
29476@item @var{async-record} @expansion{}
29477@code{@var{exec-async-output} | @var{status-async-output} | @var{notify-async-output}}
29478
29479@item @var{exec-async-output} @expansion{}
dcf106f3 29480@code{[ @var{token} ] "*" @var{async-output nl}}
922fbb7b
AC
29481
29482@item @var{status-async-output} @expansion{}
dcf106f3 29483@code{[ @var{token} ] "+" @var{async-output nl}}
922fbb7b
AC
29484
29485@item @var{notify-async-output} @expansion{}
dcf106f3 29486@code{[ @var{token} ] "=" @var{async-output nl}}
922fbb7b
AC
29487
29488@item @var{async-output} @expansion{}
dcf106f3 29489@code{@var{async-class} ( "," @var{result} )*}
922fbb7b
AC
29490
29491@item @var{result-class} @expansion{}
29492@code{"done" | "running" | "connected" | "error" | "exit"}
29493
29494@item @var{async-class} @expansion{}
29495@code{"stopped" | @var{others}} (where @var{others} will be added
29496depending on the needs---this is still in development).
29497
29498@item @var{result} @expansion{}
29499@code{ @var{variable} "=" @var{value}}
29500
29501@item @var{variable} @expansion{}
29502@code{ @var{string} }
29503
29504@item @var{value} @expansion{}
29505@code{ @var{const} | @var{tuple} | @var{list} }
29506
29507@item @var{const} @expansion{}
29508@code{@var{c-string}}
29509
29510@item @var{tuple} @expansion{}
29511@code{ "@{@}" | "@{" @var{result} ( "," @var{result} )* "@}" }
29512
29513@item @var{list} @expansion{}
29514@code{ "[]" | "[" @var{value} ( "," @var{value} )* "]" | "["
29515@var{result} ( "," @var{result} )* "]" }
29516
29517@item @var{stream-record} @expansion{}
29518@code{@var{console-stream-output} | @var{target-stream-output} | @var{log-stream-output}}
29519
29520@item @var{console-stream-output} @expansion{}
dcf106f3 29521@code{"~" @var{c-string nl}}
922fbb7b
AC
29522
29523@item @var{target-stream-output} @expansion{}
dcf106f3 29524@code{"@@" @var{c-string nl}}
922fbb7b
AC
29525
29526@item @var{log-stream-output} @expansion{}
dcf106f3 29527@code{"&" @var{c-string nl}}
922fbb7b
AC
29528
29529@item @var{nl} @expansion{}
29530@code{CR | CR-LF}
29531
29532@item @var{token} @expansion{}
29533@emph{any sequence of digits}.
29534@end table
29535
29536@noindent
29537Notes:
29538
29539@itemize @bullet
29540@item
29541All output sequences end in a single line containing a period.
29542
29543@item
721c02de
VP
29544The @code{@var{token}} is from the corresponding request. Note that
29545for all async output, while the token is allowed by the grammar and
29546may be output by future versions of @value{GDBN} for select async
29547output messages, it is generally omitted. Frontends should treat
29548all async output as reporting general changes in the state of the
29549target and there should be no need to associate async output to any
29550prior command.
922fbb7b
AC
29551
29552@item
29553@cindex status output in @sc{gdb/mi}
29554@var{status-async-output} contains on-going status information about the
29555progress of a slow operation. It can be discarded. All status output is
29556prefixed by @samp{+}.
29557
29558@item
29559@cindex async output in @sc{gdb/mi}
29560@var{exec-async-output} contains asynchronous state change on the target
29561(stopped, started, disappeared). All async output is prefixed by
29562@samp{*}.
29563
29564@item
29565@cindex notify output in @sc{gdb/mi}
29566@var{notify-async-output} contains supplementary information that the
29567client should handle (e.g., a new breakpoint information). All notify
29568output is prefixed by @samp{=}.
29569
29570@item
29571@cindex console output in @sc{gdb/mi}
29572@var{console-stream-output} is output that should be displayed as is in the
29573console. It is the textual response to a CLI command. All the console
29574output is prefixed by @samp{~}.
29575
29576@item
29577@cindex target output in @sc{gdb/mi}
29578@var{target-stream-output} is the output produced by the target program.
29579All the target output is prefixed by @samp{@@}.
29580
29581@item
29582@cindex log output in @sc{gdb/mi}
29583@var{log-stream-output} is output text coming from @value{GDBN}'s internals, for
29584instance messages that should be displayed as part of an error log. All
29585the log output is prefixed by @samp{&}.
29586
29587@item
29588@cindex list output in @sc{gdb/mi}
29589New @sc{gdb/mi} commands should only output @var{lists} containing
29590@var{values}.
29591
29592
29593@end itemize
29594
29595@xref{GDB/MI Stream Records, , @sc{gdb/mi} Stream Records}, for more
29596details about the various output records.
29597
922fbb7b
AC
29598@c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
29599@node GDB/MI Compatibility with CLI
29600@section @sc{gdb/mi} Compatibility with CLI
29601
29602@cindex compatibility, @sc{gdb/mi} and CLI
29603@cindex @sc{gdb/mi}, compatibility with CLI
922fbb7b 29604
a2c02241
NR
29605For the developers convenience CLI commands can be entered directly,
29606but there may be some unexpected behaviour. For example, commands
29607that query the user will behave as if the user replied yes, breakpoint
29608command lists are not executed and some CLI commands, such as
29609@code{if}, @code{when} and @code{define}, prompt for further input with
29610@samp{>}, which is not valid MI output.
ef21caaf
NR
29611
29612This feature may be removed at some stage in the future and it is
a2c02241
NR
29613recommended that front ends use the @code{-interpreter-exec} command
29614(@pxref{-interpreter-exec}).
922fbb7b 29615
af6eff6f
NR
29616@c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
29617@node GDB/MI Development and Front Ends
29618@section @sc{gdb/mi} Development and Front Ends
29619@cindex @sc{gdb/mi} development
29620
29621The application which takes the MI output and presents the state of the
29622program being debugged to the user is called a @dfn{front end}.
29623
1fea0d53
SM
29624Since @sc{gdb/mi} is used by a variety of front ends to @value{GDBN}, changes
29625to the MI interface may break existing usage. This section describes how the
29626protocol changes and how to request previous version of the protocol when it
29627does.
af6eff6f
NR
29628
29629Some changes in MI need not break a carefully designed front end, and
29630for these the MI version will remain unchanged. The following is a
29631list of changes that may occur within one level, so front ends should
29632parse MI output in a way that can handle them:
29633
29634@itemize @bullet
29635@item
29636New MI commands may be added.
29637
29638@item
29639New fields may be added to the output of any MI command.
29640
36ece8b3
NR
29641@item
29642The range of values for fields with specified values, e.g.,
9f708cb2 29643@code{in_scope} (@pxref{-var-update}) may be extended.
36ece8b3 29644
af6eff6f
NR
29645@c The format of field's content e.g type prefix, may change so parse it
29646@c at your own risk. Yes, in general?
29647
29648@c The order of fields may change? Shouldn't really matter but it might
29649@c resolve inconsistencies.
29650@end itemize
29651
29652If the changes are likely to break front ends, the MI version level
1fea0d53
SM
29653will be increased by one. The new versions of the MI protocol are not compatible
29654with the old versions. Old versions of MI remain available, allowing front ends
29655to keep using them until they are modified to use the latest MI version.
af6eff6f 29656
1fea0d53
SM
29657Since @code{--interpreter=mi} always points to the latest MI version, it is
29658recommended that front ends request a specific version of MI when launching
29659@value{GDBN} (e.g. @code{--interpreter=mi2}) to make sure they get an
29660interpreter with the MI version they expect.
29661
09f2921c 29662The following table gives a summary of the released versions of the MI
1fea0d53
SM
29663interface: the version number, the version of GDB in which it first appeared
29664and the breaking changes compared to the previous version.
29665
29666@multitable @columnfractions .05 .05 .9
29667@headitem MI version @tab GDB version @tab Breaking changes
29668
29669@item
29670@center 1
29671@tab
29672@center 5.1
29673@tab
29674None
29675
29676@item
29677@center 2
29678@tab
29679@center 6.0
29680@tab
29681
29682@itemize
29683@item
29684The @code{-environment-pwd}, @code{-environment-directory} and
29685@code{-environment-path} commands now returns values using the MI output
29686syntax, rather than CLI output syntax.
29687
29688@item
29689@code{-var-list-children}'s @code{children} result field is now a list, rather
29690than a tuple.
29691
29692@item
29693@code{-var-update}'s @code{changelist} result field is now a list, rather than
29694a tuple.
29695@end itemize
29696
b4be1b06
SM
29697@item
29698@center 3
29699@tab
29700@center 9.1
29701@tab
29702
29703@itemize
29704@item
29705The output of information about multi-location breakpoints has changed in the
29706responses to the @code{-break-insert} and @code{-break-info} commands, as well
29707as in the @code{=breakpoint-created} and @code{=breakpoint-modified} events.
29708The multiple locations are now placed in a @code{locations} field, whose value
29709is a list.
29710@end itemize
29711
1fea0d53 29712@end multitable
af6eff6f 29713
b4be1b06
SM
29714If your front end cannot yet migrate to a more recent version of the
29715MI protocol, you can nevertheless selectively enable specific features
29716available in those recent MI versions, using the following commands:
29717
29718@table @code
29719
29720@item -fix-multi-location-breakpoint-output
29721Use the output for multi-location breakpoints which was introduced by
29722MI 3, even when using MI versions 2 or 1. This command has no
29723effect when using MI version 3 or later.
29724
5c85e20d 29725@end table
b4be1b06 29726
af6eff6f
NR
29727The best way to avoid unexpected changes in MI that might break your front
29728end is to make your project known to @value{GDBN} developers and
7a9a6b69 29729follow development on @email{gdb@@sourceware.org} and
fa0f268d 29730@email{gdb-patches@@sourceware.org}.
af6eff6f
NR
29731@cindex mailing lists
29732
922fbb7b
AC
29733@c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
29734@node GDB/MI Output Records
29735@section @sc{gdb/mi} Output Records
29736
29737@menu
29738* GDB/MI Result Records::
29739* GDB/MI Stream Records::
82f68b1c 29740* GDB/MI Async Records::
54516a0b 29741* GDB/MI Breakpoint Information::
c3b108f7 29742* GDB/MI Frame Information::
dc146f7c 29743* GDB/MI Thread Information::
4368ebeb 29744* GDB/MI Ada Exception Information::
922fbb7b
AC
29745@end menu
29746
29747@node GDB/MI Result Records
29748@subsection @sc{gdb/mi} Result Records
29749
29750@cindex result records in @sc{gdb/mi}
29751@cindex @sc{gdb/mi}, result records
29752In addition to a number of out-of-band notifications, the response to a
29753@sc{gdb/mi} command includes one of the following result indications:
29754
29755@table @code
29756@findex ^done
29757@item "^done" [ "," @var{results} ]
29758The synchronous operation was successful, @code{@var{results}} are the return
29759values.
29760
29761@item "^running"
29762@findex ^running
8e9c5e02
VP
29763This result record is equivalent to @samp{^done}. Historically, it
29764was output instead of @samp{^done} if the command has resumed the
29765target. This behaviour is maintained for backward compatibility, but
29766all frontends should treat @samp{^done} and @samp{^running}
29767identically and rely on the @samp{*running} output record to determine
29768which threads are resumed.
922fbb7b 29769
ef21caaf
NR
29770@item "^connected"
29771@findex ^connected
3f94c067 29772@value{GDBN} has connected to a remote target.
ef21caaf 29773
2ea126fa 29774@item "^error" "," "msg=" @var{c-string} [ "," "code=" @var{c-string} ]
922fbb7b 29775@findex ^error
2ea126fa
JB
29776The operation failed. The @code{msg=@var{c-string}} variable contains
29777the corresponding error message.
29778
29779If present, the @code{code=@var{c-string}} variable provides an error
29780code on which consumers can rely on to detect the corresponding
29781error condition. At present, only one error code is defined:
29782
29783@table @samp
29784@item "undefined-command"
29785Indicates that the command causing the error does not exist.
29786@end table
ef21caaf
NR
29787
29788@item "^exit"
29789@findex ^exit
3f94c067 29790@value{GDBN} has terminated.
ef21caaf 29791
922fbb7b
AC
29792@end table
29793
29794@node GDB/MI Stream Records
29795@subsection @sc{gdb/mi} Stream Records
29796
29797@cindex @sc{gdb/mi}, stream records
29798@cindex stream records in @sc{gdb/mi}
29799@value{GDBN} internally maintains a number of output streams: the console, the
29800target, and the log. The output intended for each of these streams is
29801funneled through the @sc{gdb/mi} interface using @dfn{stream records}.
29802
29803Each stream record begins with a unique @dfn{prefix character} which
29804identifies its stream (@pxref{GDB/MI Output Syntax, , @sc{gdb/mi} Output
29805Syntax}). In addition to the prefix, each stream record contains a
29806@code{@var{string-output}}. This is either raw text (with an implicit new
29807line) or a quoted C string (which does not contain an implicit newline).
29808
29809@table @code
29810@item "~" @var{string-output}
29811The console output stream contains text that should be displayed in the
29812CLI console window. It contains the textual responses to CLI commands.
29813
29814@item "@@" @var{string-output}
29815The target output stream contains any textual output from the running
ef21caaf
NR
29816target. This is only present when GDB's event loop is truly
29817asynchronous, which is currently only the case for remote targets.
922fbb7b
AC
29818
29819@item "&" @var{string-output}
29820The log stream contains debugging messages being produced by @value{GDBN}'s
29821internals.
29822@end table
29823
82f68b1c
VP
29824@node GDB/MI Async Records
29825@subsection @sc{gdb/mi} Async Records
922fbb7b 29826
82f68b1c
VP
29827@cindex async records in @sc{gdb/mi}
29828@cindex @sc{gdb/mi}, async records
29829@dfn{Async} records are used to notify the @sc{gdb/mi} client of
922fbb7b 29830additional changes that have occurred. Those changes can either be a
82f68b1c 29831consequence of @sc{gdb/mi} commands (e.g., a breakpoint modified) or a result of
922fbb7b
AC
29832target activity (e.g., target stopped).
29833
8eb41542 29834The following is the list of possible async records:
922fbb7b
AC
29835
29836@table @code
034dad6f 29837
e1ac3328 29838@item *running,thread-id="@var{thread}"
5d5658a1 29839The target is now running. The @var{thread} field can be the global
09f2921c 29840thread ID of the thread that is now running, and it can be
5d5658a1
PA
29841@samp{all} if all threads are running. The frontend should assume
29842that no interaction with a running thread is possible after this
29843notification is produced. The frontend should not assume that this
29844notification is output only once for any command. @value{GDBN} may
29845emit this notification several times, either for different threads,
29846because it cannot resume all threads together, or even for a single
29847thread, if the thread must be stepped though some code before letting
29848it run freely.
e1ac3328 29849
dc146f7c 29850@item *stopped,reason="@var{reason}",thread-id="@var{id}",stopped-threads="@var{stopped}",core="@var{core}"
82f68b1c
VP
29851The target has stopped. The @var{reason} field can have one of the
29852following values:
034dad6f
BR
29853
29854@table @code
29855@item breakpoint-hit
29856A breakpoint was reached.
29857@item watchpoint-trigger
29858A watchpoint was triggered.
29859@item read-watchpoint-trigger
29860A read watchpoint was triggered.
29861@item access-watchpoint-trigger
29862An access watchpoint was triggered.
29863@item function-finished
29864An -exec-finish or similar CLI command was accomplished.
29865@item location-reached
29866An -exec-until or similar CLI command was accomplished.
29867@item watchpoint-scope
29868A watchpoint has gone out of scope.
29869@item end-stepping-range
29870An -exec-next, -exec-next-instruction, -exec-step, -exec-step-instruction or
29871similar CLI command was accomplished.
29872@item exited-signalled
29873The inferior exited because of a signal.
29874@item exited
29875The inferior exited.
29876@item exited-normally
29877The inferior exited normally.
29878@item signal-received
29879A signal was received by the inferior.
36dfb11c
TT
29880@item solib-event
29881The inferior has stopped due to a library being loaded or unloaded.
edcc5120
TT
29882This can happen when @code{stop-on-solib-events} (@pxref{Files}) is
29883set or when a @code{catch load} or @code{catch unload} catchpoint is
29884in use (@pxref{Set Catchpoints}).
36dfb11c
TT
29885@item fork
29886The inferior has forked. This is reported when @code{catch fork}
29887(@pxref{Set Catchpoints}) has been used.
29888@item vfork
29889The inferior has vforked. This is reported in when @code{catch vfork}
29890(@pxref{Set Catchpoints}) has been used.
29891@item syscall-entry
29892The inferior entered a system call. This is reported when @code{catch
29893syscall} (@pxref{Set Catchpoints}) has been used.
a64c9f7b 29894@item syscall-return
36dfb11c
TT
29895The inferior returned from a system call. This is reported when
29896@code{catch syscall} (@pxref{Set Catchpoints}) has been used.
29897@item exec
29898The inferior called @code{exec}. This is reported when @code{catch exec}
29899(@pxref{Set Catchpoints}) has been used.
922fbb7b
AC
29900@end table
29901
5d5658a1
PA
29902The @var{id} field identifies the global thread ID of the thread
29903that directly caused the stop -- for example by hitting a breakpoint.
29904Depending on whether all-stop
c3b108f7
VP
29905mode is in effect (@pxref{All-Stop Mode}), @value{GDBN} may either
29906stop all threads, or only the thread that directly triggered the stop.
29907If all threads are stopped, the @var{stopped} field will have the
29908value of @code{"all"}. Otherwise, the value of the @var{stopped}
29909field will be a list of thread identifiers. Presently, this list will
29910always include a single thread, but frontend should be prepared to see
dc146f7c
VP
29911several threads in the list. The @var{core} field reports the
29912processor core on which the stop event has happened. This field may be absent
29913if such information is not available.
c3b108f7 29914
a79b8f6e
VP
29915@item =thread-group-added,id="@var{id}"
29916@itemx =thread-group-removed,id="@var{id}"
29917A thread group was either added or removed. The @var{id} field
29918contains the @value{GDBN} identifier of the thread group. When a thread
29919group is added, it generally might not be associated with a running
29920process. When a thread group is removed, its id becomes invalid and
29921cannot be used in any way.
29922
29923@item =thread-group-started,id="@var{id}",pid="@var{pid}"
29924A thread group became associated with a running program,
29925either because the program was just started or the thread group
29926was attached to a program. The @var{id} field contains the
29927@value{GDBN} identifier of the thread group. The @var{pid} field
29928contains process identifier, specific to the operating system.
29929
8cf64490 29930@item =thread-group-exited,id="@var{id}"[,exit-code="@var{code}"]
a79b8f6e
VP
29931A thread group is no longer associated with a running program,
29932either because the program has exited, or because it was detached
c3b108f7 29933from. The @var{id} field contains the @value{GDBN} identifier of the
697aa1b7 29934thread group. The @var{code} field is the exit code of the inferior; it exists
8cf64490 29935only when the inferior exited with some code.
c3b108f7
VP
29936
29937@item =thread-created,id="@var{id}",group-id="@var{gid}"
29938@itemx =thread-exited,id="@var{id}",group-id="@var{gid}"
82f68b1c 29939A thread either was created, or has exited. The @var{id} field
5d5658a1 29940contains the global @value{GDBN} identifier of the thread. The @var{gid}
c3b108f7 29941field identifies the thread group this thread belongs to.
66bb093b 29942
4034d0ff
AT
29943@item =thread-selected,id="@var{id}"[,frame="@var{frame}"]
29944Informs that the selected thread or frame were changed. This notification
29945is not emitted as result of the @code{-thread-select} or
29946@code{-stack-select-frame} commands, but is emitted whenever an MI command
29947that is not documented to change the selected thread and frame actually
29948changes them. In particular, invoking, directly or indirectly
29949(via user-defined command), the CLI @code{thread} or @code{frame} commands,
29950will generate this notification. Changing the thread or frame from another
29951user interface (see @ref{Interpreters}) will also generate this notification.
29952
29953The @var{frame} field is only present if the newly selected thread is
29954stopped. See @ref{GDB/MI Frame Information} for the format of its value.
66bb093b
VP
29955
29956We suggest that in response to this notification, front ends
29957highlight the selected thread and cause subsequent commands to apply to
29958that thread.
29959
c86cf029
VP
29960@item =library-loaded,...
29961Reports that a new library file was loaded by the program. This
51457a05
MAL
29962notification has 5 fields---@var{id}, @var{target-name},
29963@var{host-name}, @var{symbols-loaded} and @var{ranges}. The @var{id} field is an
c86cf029
VP
29964opaque identifier of the library. For remote debugging case,
29965@var{target-name} and @var{host-name} fields give the name of the
134eb42c
VP
29966library file on the target, and on the host respectively. For native
29967debugging, both those fields have the same value. The
f1cbe1d3
TT
29968@var{symbols-loaded} field is emitted only for backward compatibility
29969and should not be relied on to convey any useful information. The
29970@var{thread-group} field, if present, specifies the id of the thread
29971group in whose context the library was loaded. If the field is
29972absent, it means the library was loaded in the context of all present
51457a05
MAL
29973thread groups. The @var{ranges} field specifies the ranges of addresses belonging
29974to this library.
c86cf029
VP
29975
29976@item =library-unloaded,...
134eb42c 29977Reports that a library was unloaded by the program. This notification
c86cf029 29978has 3 fields---@var{id}, @var{target-name} and @var{host-name} with
a79b8f6e
VP
29979the same meaning as for the @code{=library-loaded} notification.
29980The @var{thread-group} field, if present, specifies the id of the
29981thread group in whose context the library was unloaded. If the field is
29982absent, it means the library was unloaded in the context of all present
29983thread groups.
c86cf029 29984
201b4506
YQ
29985@item =traceframe-changed,num=@var{tfnum},tracepoint=@var{tpnum}
29986@itemx =traceframe-changed,end
29987Reports that the trace frame was changed and its new number is
29988@var{tfnum}. The number of the tracepoint associated with this trace
29989frame is @var{tpnum}.
29990
134a2066 29991@item =tsv-created,name=@var{name},initial=@var{initial}
bb25a15c 29992Reports that the new trace state variable @var{name} is created with
134a2066 29993initial value @var{initial}.
bb25a15c
YQ
29994
29995@item =tsv-deleted,name=@var{name}
29996@itemx =tsv-deleted
29997Reports that the trace state variable @var{name} is deleted or all
29998trace state variables are deleted.
29999
134a2066
YQ
30000@item =tsv-modified,name=@var{name},initial=@var{initial}[,current=@var{current}]
30001Reports that the trace state variable @var{name} is modified with
30002the initial value @var{initial}. The current value @var{current} of
30003trace state variable is optional and is reported if the current
30004value of trace state variable is known.
30005
8d3788bd
VP
30006@item =breakpoint-created,bkpt=@{...@}
30007@itemx =breakpoint-modified,bkpt=@{...@}
d9f08f52 30008@itemx =breakpoint-deleted,id=@var{number}
8d3788bd
VP
30009Reports that a breakpoint was created, modified, or deleted,
30010respectively. Only user-visible breakpoints are reported to the MI
30011user.
30012
30013The @var{bkpt} argument is of the same form as returned by the various
d9f08f52
YQ
30014breakpoint commands; @xref{GDB/MI Breakpoint Commands}. The
30015@var{number} is the ordinal number of the breakpoint.
8d3788bd
VP
30016
30017Note that if a breakpoint is emitted in the result record of a
30018command, then it will not also be emitted in an async record.
30019
38b022b4 30020@item =record-started,thread-group="@var{id}",method="@var{method}"[,format="@var{format}"]
82a90ccf
YQ
30021@itemx =record-stopped,thread-group="@var{id}"
30022Execution log recording was either started or stopped on an
30023inferior. The @var{id} is the @value{GDBN} identifier of the thread
30024group corresponding to the affected inferior.
30025
38b022b4
SM
30026The @var{method} field indicates the method used to record execution. If the
30027method in use supports multiple recording formats, @var{format} will be present
8504e097 30028and contain the currently used format. @xref{Process Record and Replay},
38b022b4
SM
30029for existing method and format values.
30030
5b9afe8a
YQ
30031@item =cmd-param-changed,param=@var{param},value=@var{value}
30032Reports that a parameter of the command @code{set @var{param}} is
30033changed to @var{value}. In the multi-word @code{set} command,
30034the @var{param} is the whole parameter list to @code{set} command.
30035For example, In command @code{set check type on}, @var{param}
30036is @code{check type} and @var{value} is @code{on}.
8de0566d
YQ
30037
30038@item =memory-changed,thread-group=@var{id},addr=@var{addr},len=@var{len}[,type="code"]
30039Reports that bytes from @var{addr} to @var{data} + @var{len} were
30040written in an inferior. The @var{id} is the identifier of the
30041thread group corresponding to the affected inferior. The optional
30042@code{type="code"} part is reported if the memory written to holds
30043executable code.
82f68b1c
VP
30044@end table
30045
54516a0b
TT
30046@node GDB/MI Breakpoint Information
30047@subsection @sc{gdb/mi} Breakpoint Information
30048
30049When @value{GDBN} reports information about a breakpoint, a
30050tracepoint, a watchpoint, or a catchpoint, it uses a tuple with the
30051following fields:
30052
30053@table @code
30054@item number
b4be1b06 30055The breakpoint number.
54516a0b
TT
30056
30057@item type
30058The type of the breakpoint. For ordinary breakpoints this will be
30059@samp{breakpoint}, but many values are possible.
30060
8ac3646f
TT
30061@item catch-type
30062If the type of the breakpoint is @samp{catchpoint}, then this
30063indicates the exact type of catchpoint.
30064
54516a0b
TT
30065@item disp
30066This is the breakpoint disposition---either @samp{del}, meaning that
30067the breakpoint will be deleted at the next stop, or @samp{keep},
30068meaning that the breakpoint will not be deleted.
30069
30070@item enabled
30071This indicates whether the breakpoint is enabled, in which case the
30072value is @samp{y}, or disabled, in which case the value is @samp{n}.
30073Note that this is not the same as the field @code{enable}.
30074
30075@item addr
30076The address of the breakpoint. This may be a hexidecimal number,
30077giving the address; or the string @samp{<PENDING>}, for a pending
30078breakpoint; or the string @samp{<MULTIPLE>}, for a breakpoint with
30079multiple locations. This field will not be present if no address can
30080be determined. For example, a watchpoint does not have an address.
30081
aa7ca1bb
AH
30082@item addr_flags
30083Optional field containing any flags related to the address. These flags are
30084architecture-dependent; see @ref{Architectures} for their meaning for a
30085particular CPU.
30086
54516a0b
TT
30087@item func
30088If known, the function in which the breakpoint appears.
30089If not known, this field is not present.
30090
30091@item filename
30092The name of the source file which contains this function, if known.
30093If not known, this field is not present.
30094
30095@item fullname
30096The full file name of the source file which contains this function, if
30097known. If not known, this field is not present.
30098
30099@item line
30100The line number at which this breakpoint appears, if known.
30101If not known, this field is not present.
30102
30103@item at
30104If the source file is not known, this field may be provided. If
30105provided, this holds the address of the breakpoint, possibly followed
30106by a symbol name.
30107
30108@item pending
30109If this breakpoint is pending, this field is present and holds the
30110text used to set the breakpoint, as entered by the user.
30111
30112@item evaluated-by
30113Where this breakpoint's condition is evaluated, either @samp{host} or
30114@samp{target}.
30115
30116@item thread
30117If this is a thread-specific breakpoint, then this identifies the
30118thread in which the breakpoint can trigger.
30119
30120@item task
30121If this breakpoint is restricted to a particular Ada task, then this
30122field will hold the task identifier.
30123
30124@item cond
30125If the breakpoint is conditional, this is the condition expression.
30126
30127@item ignore
30128The ignore count of the breakpoint.
30129
30130@item enable
30131The enable count of the breakpoint.
30132
30133@item traceframe-usage
30134FIXME.
30135
30136@item static-tracepoint-marker-string-id
30137For a static tracepoint, the name of the static tracepoint marker.
30138
30139@item mask
30140For a masked watchpoint, this is the mask.
30141
30142@item pass
30143A tracepoint's pass count.
30144
30145@item original-location
30146The location of the breakpoint as originally specified by the user.
30147This field is optional.
30148
30149@item times
30150The number of times the breakpoint has been hit.
30151
30152@item installed
30153This field is only given for tracepoints. This is either @samp{y},
30154meaning that the tracepoint is installed, or @samp{n}, meaning that it
30155is not.
30156
30157@item what
30158Some extra data, the exact contents of which are type-dependent.
30159
b4be1b06
SM
30160@item locations
30161This field is present if the breakpoint has multiple locations. It is also
30162exceptionally present if the breakpoint is enabled and has a single, disabled
30163location.
30164
6b92c0d3 30165The value is a list of locations. The format of a location is described below.
b4be1b06
SM
30166
30167@end table
30168
30169A location in a multi-location breakpoint is represented as a tuple with the
30170following fields:
30171
30172@table @code
30173
30174@item number
30175The location number as a dotted pair, like @samp{1.2}. The first digit is the
30176number of the parent breakpoint. The second digit is the number of the
30177location within that breakpoint.
30178
30179@item enabled
85c88e2a
TBA
30180There are three possible values, with the following meanings:
30181@table @code
30182@item y
30183The location is enabled.
30184@item n
30185The location is disabled by the user.
30186@item N
30187The location is disabled because the breakpoint condition is invalid
30188at this location.
30189@end table
b4be1b06
SM
30190
30191@item addr
30192The address of this location as an hexidecimal number.
30193
aa7ca1bb
AH
30194@item addr_flags
30195Optional field containing any flags related to the address. These flags are
30196architecture-dependent; see @ref{Architectures} for their meaning for a
30197particular CPU.
30198
b4be1b06
SM
30199@item func
30200If known, the function in which the location appears.
30201If not known, this field is not present.
30202
30203@item file
30204The name of the source file which contains this location, if known.
30205If not known, this field is not present.
30206
30207@item fullname
30208The full file name of the source file which contains this location, if
30209known. If not known, this field is not present.
30210
30211@item line
30212The line number at which this location appears, if known.
30213If not known, this field is not present.
30214
30215@item thread-groups
30216The thread groups this location is in.
30217
54516a0b
TT
30218@end table
30219
30220For example, here is what the output of @code{-break-insert}
30221(@pxref{GDB/MI Breakpoint Commands}) might be:
30222
30223@smallexample
30224-> -break-insert main
30225<- ^done,bkpt=@{number="1",type="breakpoint",disp="keep",
30226 enabled="y",addr="0x08048564",func="main",file="myprog.c",
998580f1
MK
30227 fullname="/home/nickrob/myprog.c",line="68",thread-groups=["i1"],
30228 times="0"@}
54516a0b
TT
30229<- (gdb)
30230@end smallexample
30231
c3b108f7
VP
30232@node GDB/MI Frame Information
30233@subsection @sc{gdb/mi} Frame Information
30234
30235Response from many MI commands includes an information about stack
30236frame. This information is a tuple that may have the following
30237fields:
30238
30239@table @code
30240@item level
30241The level of the stack frame. The innermost frame has the level of
30242zero. This field is always present.
30243
30244@item func
30245The name of the function corresponding to the frame. This field may
30246be absent if @value{GDBN} is unable to determine the function name.
30247
30248@item addr
30249The code address for the frame. This field is always present.
30250
aa7ca1bb
AH
30251@item addr_flags
30252Optional field containing any flags related to the address. These flags are
30253architecture-dependent; see @ref{Architectures} for their meaning for a
30254particular CPU.
30255
c3b108f7
VP
30256@item file
30257The name of the source files that correspond to the frame's code
30258address. This field may be absent.
30259
30260@item line
30261The source line corresponding to the frames' code address. This field
30262may be absent.
30263
30264@item from
30265The name of the binary file (either executable or shared library) the
30266corresponds to the frame's code address. This field may be absent.
30267
30268@end table
82f68b1c 30269
dc146f7c
VP
30270@node GDB/MI Thread Information
30271@subsection @sc{gdb/mi} Thread Information
30272
30273Whenever @value{GDBN} has to report an information about a thread, it
ebe553db
SM
30274uses a tuple with the following fields. The fields are always present unless
30275stated otherwise.
dc146f7c
VP
30276
30277@table @code
30278@item id
ebe553db 30279The global numeric id assigned to the thread by @value{GDBN}.
dc146f7c
VP
30280
30281@item target-id
ebe553db 30282The target-specific string identifying the thread.
dc146f7c
VP
30283
30284@item details
30285Additional information about the thread provided by the target.
30286It is supposed to be human-readable and not interpreted by the
30287frontend. This field is optional.
30288
ebe553db
SM
30289@item name
30290The name of the thread. If the user specified a name using the
30291@code{thread name} command, then this name is given. Otherwise, if
30292@value{GDBN} can extract the thread name from the target, then that
30293name is given. If @value{GDBN} cannot find the thread name, then this
30294field is omitted.
30295
dc146f7c 30296@item state
ebe553db
SM
30297The execution state of the thread, either @samp{stopped} or @samp{running},
30298depending on whether the thread is presently running.
30299
30300@item frame
30301The stack frame currently executing in the thread. This field is only present
30302if the thread is stopped. Its format is documented in
30303@ref{GDB/MI Frame Information}.
dc146f7c
VP
30304
30305@item core
30306The value of this field is an integer number of the processor core the
30307thread was last seen on. This field is optional.
30308@end table
30309
956a9fb9
JB
30310@node GDB/MI Ada Exception Information
30311@subsection @sc{gdb/mi} Ada Exception Information
30312
30313Whenever a @code{*stopped} record is emitted because the program
30314stopped after hitting an exception catchpoint (@pxref{Set Catchpoints}),
30315@value{GDBN} provides the name of the exception that was raised via
e547c119
JB
30316the @code{exception-name} field. Also, for exceptions that were raised
30317with an exception message, @value{GDBN} provides that message via
30318the @code{exception-message} field.
922fbb7b 30319
ef21caaf
NR
30320@c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
30321@node GDB/MI Simple Examples
30322@section Simple Examples of @sc{gdb/mi} Interaction
30323@cindex @sc{gdb/mi}, simple examples
30324
30325This subsection presents several simple examples of interaction using
30326the @sc{gdb/mi} interface. In these examples, @samp{->} means that the
30327following line is passed to @sc{gdb/mi} as input, while @samp{<-} means
30328the output received from @sc{gdb/mi}.
30329
d3e8051b 30330Note the line breaks shown in the examples are here only for
ef21caaf
NR
30331readability, they don't appear in the real output.
30332
79a6e687 30333@subheading Setting a Breakpoint
ef21caaf
NR
30334
30335Setting a breakpoint generates synchronous output which contains detailed
30336information of the breakpoint.
30337
30338@smallexample
30339-> -break-insert main
30340<- ^done,bkpt=@{number="1",type="breakpoint",disp="keep",
30341 enabled="y",addr="0x08048564",func="main",file="myprog.c",
998580f1
MK
30342 fullname="/home/nickrob/myprog.c",line="68",thread-groups=["i1"],
30343 times="0"@}
ef21caaf
NR
30344<- (gdb)
30345@end smallexample
30346
30347@subheading Program Execution
30348
30349Program execution generates asynchronous records and MI gives the
30350reason that execution stopped.
30351
30352@smallexample
30353-> -exec-run
30354<- ^running
30355<- (gdb)
a47ec5fe 30356<- *stopped,reason="breakpoint-hit",disp="keep",bkptno="1",thread-id="0",
ef21caaf
NR
30357 frame=@{addr="0x08048564",func="main",
30358 args=[@{name="argc",value="1"@},@{name="argv",value="0xbfc4d4d4"@}],
6d52907e
JV
30359 file="myprog.c",fullname="/home/nickrob/myprog.c",line="68",
30360 arch="i386:x86_64"@}
ef21caaf
NR
30361<- (gdb)
30362-> -exec-continue
30363<- ^running
30364<- (gdb)
30365<- *stopped,reason="exited-normally"
30366<- (gdb)
30367@end smallexample
30368
3f94c067 30369@subheading Quitting @value{GDBN}
ef21caaf 30370
3f94c067 30371Quitting @value{GDBN} just prints the result class @samp{^exit}.
ef21caaf
NR
30372
30373@smallexample
30374-> (gdb)
30375<- -gdb-exit
30376<- ^exit
30377@end smallexample
30378
a6b29f87
VP
30379Please note that @samp{^exit} is printed immediately, but it might
30380take some time for @value{GDBN} to actually exit. During that time, @value{GDBN}
30381performs necessary cleanups, including killing programs being debugged
30382or disconnecting from debug hardware, so the frontend should wait till
30383@value{GDBN} exits and should only forcibly kill @value{GDBN} if it
30384fails to exit in reasonable time.
30385
a2c02241 30386@subheading A Bad Command
ef21caaf
NR
30387
30388Here's what happens if you pass a non-existent command:
30389
30390@smallexample
30391-> -rubbish
30392<- ^error,msg="Undefined MI command: rubbish"
594fe323 30393<- (gdb)
ef21caaf
NR
30394@end smallexample
30395
30396
922fbb7b
AC
30397@c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
30398@node GDB/MI Command Description Format
30399@section @sc{gdb/mi} Command Description Format
30400
30401The remaining sections describe blocks of commands. Each block of
30402commands is laid out in a fashion similar to this section.
30403
922fbb7b
AC
30404@subheading Motivation
30405
30406The motivation for this collection of commands.
30407
30408@subheading Introduction
30409
30410A brief introduction to this collection of commands as a whole.
30411
30412@subheading Commands
30413
30414For each command in the block, the following is described:
30415
30416@subsubheading Synopsis
30417
30418@smallexample
30419 -command @var{args}@dots{}
30420@end smallexample
30421
922fbb7b
AC
30422@subsubheading Result
30423
265eeb58 30424@subsubheading @value{GDBN} Command
922fbb7b 30425
265eeb58 30426The corresponding @value{GDBN} CLI command(s), if any.
922fbb7b
AC
30427
30428@subsubheading Example
30429
ef21caaf
NR
30430Example(s) formatted for readability. Some of the described commands have
30431not been implemented yet and these are labeled N.A.@: (not available).
30432
30433
922fbb7b 30434@c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
ef21caaf
NR
30435@node GDB/MI Breakpoint Commands
30436@section @sc{gdb/mi} Breakpoint Commands
922fbb7b
AC
30437
30438@cindex breakpoint commands for @sc{gdb/mi}
30439@cindex @sc{gdb/mi}, breakpoint commands
30440This section documents @sc{gdb/mi} commands for manipulating
30441breakpoints.
30442
30443@subheading The @code{-break-after} Command
30444@findex -break-after
30445
30446@subsubheading Synopsis
30447
30448@smallexample
30449 -break-after @var{number} @var{count}
30450@end smallexample
30451
30452The breakpoint number @var{number} is not in effect until it has been
30453hit @var{count} times. To see how this is reflected in the output of
30454the @samp{-break-list} command, see the description of the
30455@samp{-break-list} command below.
30456
30457@subsubheading @value{GDBN} Command
30458
30459The corresponding @value{GDBN} command is @samp{ignore}.
30460
30461@subsubheading Example
30462
30463@smallexample
594fe323 30464(gdb)
922fbb7b 30465-break-insert main
a47ec5fe
AR
30466^done,bkpt=@{number="1",type="breakpoint",disp="keep",
30467enabled="y",addr="0x000100d0",func="main",file="hello.c",
998580f1
MK
30468fullname="/home/foo/hello.c",line="5",thread-groups=["i1"],
30469times="0"@}
594fe323 30470(gdb)
922fbb7b
AC
30471-break-after 1 3
30472~
30473^done
594fe323 30474(gdb)
922fbb7b
AC
30475-break-list
30476^done,BreakpointTable=@{nr_rows="1",nr_cols="6",
30477hdr=[@{width="3",alignment="-1",col_name="number",colhdr="Num"@},
30478@{width="14",alignment="-1",col_name="type",colhdr="Type"@},
30479@{width="4",alignment="-1",col_name="disp",colhdr="Disp"@},
30480@{width="3",alignment="-1",col_name="enabled",colhdr="Enb"@},
30481@{width="10",alignment="-1",col_name="addr",colhdr="Address"@},
30482@{width="40",alignment="2",col_name="what",colhdr="What"@}],
30483body=[bkpt=@{number="1",type="breakpoint",disp="keep",enabled="y",
948d5102 30484addr="0x000100d0",func="main",file="hello.c",fullname="/home/foo/hello.c",
998580f1 30485line="5",thread-groups=["i1"],times="0",ignore="3"@}]@}
594fe323 30486(gdb)
922fbb7b
AC
30487@end smallexample
30488
30489@ignore
30490@subheading The @code{-break-catch} Command
30491@findex -break-catch
48cb2d85 30492@end ignore
922fbb7b
AC
30493
30494@subheading The @code{-break-commands} Command
30495@findex -break-commands
922fbb7b 30496
48cb2d85
VP
30497@subsubheading Synopsis
30498
30499@smallexample
30500 -break-commands @var{number} [ @var{command1} ... @var{commandN} ]
30501@end smallexample
30502
30503Specifies the CLI commands that should be executed when breakpoint
30504@var{number} is hit. The parameters @var{command1} to @var{commandN}
30505are the commands. If no command is specified, any previously-set
30506commands are cleared. @xref{Break Commands}. Typical use of this
30507functionality is tracing a program, that is, printing of values of
30508some variables whenever breakpoint is hit and then continuing.
30509
30510@subsubheading @value{GDBN} Command
30511
30512The corresponding @value{GDBN} command is @samp{commands}.
30513
30514@subsubheading Example
30515
30516@smallexample
30517(gdb)
30518-break-insert main
30519^done,bkpt=@{number="1",type="breakpoint",disp="keep",
30520enabled="y",addr="0x000100d0",func="main",file="hello.c",
998580f1
MK
30521fullname="/home/foo/hello.c",line="5",thread-groups=["i1"],
30522times="0"@}
48cb2d85
VP
30523(gdb)
30524-break-commands 1 "print v" "continue"
30525^done
30526(gdb)
30527@end smallexample
922fbb7b
AC
30528
30529@subheading The @code{-break-condition} Command
30530@findex -break-condition
30531
30532@subsubheading Synopsis
30533
30534@smallexample
30535 -break-condition @var{number} @var{expr}
30536@end smallexample
30537
30538Breakpoint @var{number} will stop the program only if the condition in
30539@var{expr} is true. The condition becomes part of the
30540@samp{-break-list} output (see the description of the @samp{-break-list}
30541command below).
30542
30543@subsubheading @value{GDBN} Command
30544
30545The corresponding @value{GDBN} command is @samp{condition}.
30546
30547@subsubheading Example
30548
30549@smallexample
594fe323 30550(gdb)
922fbb7b
AC
30551-break-condition 1 1
30552^done
594fe323 30553(gdb)
922fbb7b
AC
30554-break-list
30555^done,BreakpointTable=@{nr_rows="1",nr_cols="6",
30556hdr=[@{width="3",alignment="-1",col_name="number",colhdr="Num"@},
30557@{width="14",alignment="-1",col_name="type",colhdr="Type"@},
30558@{width="4",alignment="-1",col_name="disp",colhdr="Disp"@},
30559@{width="3",alignment="-1",col_name="enabled",colhdr="Enb"@},
30560@{width="10",alignment="-1",col_name="addr",colhdr="Address"@},
30561@{width="40",alignment="2",col_name="what",colhdr="What"@}],
30562body=[bkpt=@{number="1",type="breakpoint",disp="keep",enabled="y",
948d5102 30563addr="0x000100d0",func="main",file="hello.c",fullname="/home/foo/hello.c",
998580f1 30564line="5",cond="1",thread-groups=["i1"],times="0",ignore="3"@}]@}
594fe323 30565(gdb)
922fbb7b
AC
30566@end smallexample
30567
30568@subheading The @code{-break-delete} Command
30569@findex -break-delete
30570
30571@subsubheading Synopsis
30572
30573@smallexample
30574 -break-delete ( @var{breakpoint} )+
30575@end smallexample
30576
30577Delete the breakpoint(s) whose number(s) are specified in the argument
30578list. This is obviously reflected in the breakpoint list.
30579
79a6e687 30580@subsubheading @value{GDBN} Command
922fbb7b
AC
30581
30582The corresponding @value{GDBN} command is @samp{delete}.
30583
30584@subsubheading Example
30585
30586@smallexample
594fe323 30587(gdb)
922fbb7b
AC
30588-break-delete 1
30589^done
594fe323 30590(gdb)
922fbb7b
AC
30591-break-list
30592^done,BreakpointTable=@{nr_rows="0",nr_cols="6",
30593hdr=[@{width="3",alignment="-1",col_name="number",colhdr="Num"@},
30594@{width="14",alignment="-1",col_name="type",colhdr="Type"@},
30595@{width="4",alignment="-1",col_name="disp",colhdr="Disp"@},
30596@{width="3",alignment="-1",col_name="enabled",colhdr="Enb"@},
30597@{width="10",alignment="-1",col_name="addr",colhdr="Address"@},
30598@{width="40",alignment="2",col_name="what",colhdr="What"@}],
30599body=[]@}
594fe323 30600(gdb)
922fbb7b
AC
30601@end smallexample
30602
30603@subheading The @code{-break-disable} Command
30604@findex -break-disable
30605
30606@subsubheading Synopsis
30607
30608@smallexample
30609 -break-disable ( @var{breakpoint} )+
30610@end smallexample
30611
30612Disable the named @var{breakpoint}(s). The field @samp{enabled} in the
30613break list is now set to @samp{n} for the named @var{breakpoint}(s).
30614
30615@subsubheading @value{GDBN} Command
30616
30617The corresponding @value{GDBN} command is @samp{disable}.
30618
30619@subsubheading Example
30620
30621@smallexample
594fe323 30622(gdb)
922fbb7b
AC
30623-break-disable 2
30624^done
594fe323 30625(gdb)
922fbb7b
AC
30626-break-list
30627^done,BreakpointTable=@{nr_rows="1",nr_cols="6",
30628hdr=[@{width="3",alignment="-1",col_name="number",colhdr="Num"@},
30629@{width="14",alignment="-1",col_name="type",colhdr="Type"@},
30630@{width="4",alignment="-1",col_name="disp",colhdr="Disp"@},
30631@{width="3",alignment="-1",col_name="enabled",colhdr="Enb"@},
30632@{width="10",alignment="-1",col_name="addr",colhdr="Address"@},
30633@{width="40",alignment="2",col_name="what",colhdr="What"@}],
30634body=[bkpt=@{number="2",type="breakpoint",disp="keep",enabled="n",
948d5102 30635addr="0x000100d0",func="main",file="hello.c",fullname="/home/foo/hello.c",
998580f1 30636line="5",thread-groups=["i1"],times="0"@}]@}
594fe323 30637(gdb)
922fbb7b
AC
30638@end smallexample
30639
30640@subheading The @code{-break-enable} Command
30641@findex -break-enable
30642
30643@subsubheading Synopsis
30644
30645@smallexample
30646 -break-enable ( @var{breakpoint} )+
30647@end smallexample
30648
30649Enable (previously disabled) @var{breakpoint}(s).
30650
30651@subsubheading @value{GDBN} Command
30652
30653The corresponding @value{GDBN} command is @samp{enable}.
30654
30655@subsubheading Example
30656
30657@smallexample
594fe323 30658(gdb)
922fbb7b
AC
30659-break-enable 2
30660^done
594fe323 30661(gdb)
922fbb7b
AC
30662-break-list
30663^done,BreakpointTable=@{nr_rows="1",nr_cols="6",
30664hdr=[@{width="3",alignment="-1",col_name="number",colhdr="Num"@},
30665@{width="14",alignment="-1",col_name="type",colhdr="Type"@},
30666@{width="4",alignment="-1",col_name="disp",colhdr="Disp"@},
30667@{width="3",alignment="-1",col_name="enabled",colhdr="Enb"@},
30668@{width="10",alignment="-1",col_name="addr",colhdr="Address"@},
30669@{width="40",alignment="2",col_name="what",colhdr="What"@}],
30670body=[bkpt=@{number="2",type="breakpoint",disp="keep",enabled="y",
948d5102 30671addr="0x000100d0",func="main",file="hello.c",fullname="/home/foo/hello.c",
998580f1 30672line="5",thread-groups=["i1"],times="0"@}]@}
594fe323 30673(gdb)
922fbb7b
AC
30674@end smallexample
30675
30676@subheading The @code{-break-info} Command
30677@findex -break-info
30678
30679@subsubheading Synopsis
30680
30681@smallexample
30682 -break-info @var{breakpoint}
30683@end smallexample
30684
30685@c REDUNDANT???
30686Get information about a single breakpoint.
30687
54516a0b
TT
30688The result is a table of breakpoints. @xref{GDB/MI Breakpoint
30689Information}, for details on the format of each breakpoint in the
30690table.
30691
79a6e687 30692@subsubheading @value{GDBN} Command
922fbb7b
AC
30693
30694The corresponding @value{GDBN} command is @samp{info break @var{breakpoint}}.
30695
30696@subsubheading Example
30697N.A.
30698
30699@subheading The @code{-break-insert} Command
30700@findex -break-insert
629500fa 30701@anchor{-break-insert}
922fbb7b
AC
30702
30703@subsubheading Synopsis
30704
30705@smallexample
6791b117 30706 -break-insert [ -t ] [ -h ] [ -f ] [ -d ] [ -a ] [ --qualified ]
10e578d7 30707 [ -c @var{condition} ] [ --force-condition ] [ -i @var{ignore-count} ]
472a2379 30708 [ -p @var{thread-id} ] [ @var{location} ]
922fbb7b
AC
30709@end smallexample
30710
30711@noindent
afe8ab22 30712If specified, @var{location}, can be one of:
922fbb7b 30713
629500fa
KS
30714@table @var
30715@item linespec location
30716A linespec location. @xref{Linespec Locations}.
30717
30718@item explicit location
30719An explicit location. @sc{gdb/mi} explicit locations are
30720analogous to the CLI's explicit locations using the option names
30721listed below. @xref{Explicit Locations}.
30722
30723@table @samp
30724@item --source @var{filename}
30725The source file name of the location. This option requires the use
30726of either @samp{--function} or @samp{--line}.
30727
30728@item --function @var{function}
30729The name of a function or method.
922fbb7b 30730
629500fa
KS
30731@item --label @var{label}
30732The name of a label.
30733
30734@item --line @var{lineoffset}
30735An absolute or relative line offset from the start of the location.
30736@end table
30737
30738@item address location
30739An address location, *@var{address}. @xref{Address Locations}.
30740@end table
30741
30742@noindent
922fbb7b
AC
30743The possible optional parameters of this command are:
30744
30745@table @samp
30746@item -t
948d5102 30747Insert a temporary breakpoint.
922fbb7b
AC
30748@item -h
30749Insert a hardware breakpoint.
afe8ab22
VP
30750@item -f
30751If @var{location} cannot be parsed (for example if it
30752refers to unknown files or functions), create a pending
30753breakpoint. Without this flag, @value{GDBN} will report
30754an error, and won't create a breakpoint, if @var{location}
30755cannot be parsed.
41447f92
VP
30756@item -d
30757Create a disabled breakpoint.
18148017
VP
30758@item -a
30759Create a tracepoint. @xref{Tracepoints}. When this parameter
30760is used together with @samp{-h}, a fast tracepoint is created.
472a2379
KS
30761@item -c @var{condition}
30762Make the breakpoint conditional on @var{condition}.
10e578d7
TBA
30763@item --force-condition
30764Forcibly define the breakpoint even if the condition is invalid at
30765all of the breakpoint locations.
472a2379
KS
30766@item -i @var{ignore-count}
30767Initialize the @var{ignore-count}.
30768@item -p @var{thread-id}
5d5658a1
PA
30769Restrict the breakpoint to the thread with the specified global
30770@var{thread-id}.
6791b117
PA
30771@item --qualified
30772This option makes @value{GDBN} interpret a function name specified as
30773a complete fully-qualified name.
922fbb7b
AC
30774@end table
30775
30776@subsubheading Result
30777
54516a0b
TT
30778@xref{GDB/MI Breakpoint Information}, for details on the format of the
30779resulting breakpoint.
922fbb7b
AC
30780
30781Note: this format is open to change.
30782@c An out-of-band breakpoint instead of part of the result?
30783
30784@subsubheading @value{GDBN} Command
30785
30786The corresponding @value{GDBN} commands are @samp{break}, @samp{tbreak},
496ee73e 30787@samp{hbreak}, and @samp{thbreak}. @c and @samp{rbreak}.
922fbb7b
AC
30788
30789@subsubheading Example
30790
30791@smallexample
594fe323 30792(gdb)
922fbb7b 30793-break-insert main
948d5102 30794^done,bkpt=@{number="1",addr="0x0001072c",file="recursive2.c",
998580f1
MK
30795fullname="/home/foo/recursive2.c,line="4",thread-groups=["i1"],
30796times="0"@}
594fe323 30797(gdb)
922fbb7b 30798-break-insert -t foo
948d5102 30799^done,bkpt=@{number="2",addr="0x00010774",file="recursive2.c",
998580f1
MK
30800fullname="/home/foo/recursive2.c,line="11",thread-groups=["i1"],
30801times="0"@}
594fe323 30802(gdb)
922fbb7b
AC
30803-break-list
30804^done,BreakpointTable=@{nr_rows="2",nr_cols="6",
30805hdr=[@{width="3",alignment="-1",col_name="number",colhdr="Num"@},
30806@{width="14",alignment="-1",col_name="type",colhdr="Type"@},
30807@{width="4",alignment="-1",col_name="disp",colhdr="Disp"@},
30808@{width="3",alignment="-1",col_name="enabled",colhdr="Enb"@},
30809@{width="10",alignment="-1",col_name="addr",colhdr="Address"@},
30810@{width="40",alignment="2",col_name="what",colhdr="What"@}],
30811body=[bkpt=@{number="1",type="breakpoint",disp="keep",enabled="y",
948d5102 30812addr="0x0001072c", func="main",file="recursive2.c",
998580f1
MK
30813fullname="/home/foo/recursive2.c,"line="4",thread-groups=["i1"],
30814times="0"@},
922fbb7b 30815bkpt=@{number="2",type="breakpoint",disp="del",enabled="y",
948d5102 30816addr="0x00010774",func="foo",file="recursive2.c",
998580f1
MK
30817fullname="/home/foo/recursive2.c",line="11",thread-groups=["i1"],
30818times="0"@}]@}
594fe323 30819(gdb)
496ee73e
KS
30820@c -break-insert -r foo.*
30821@c ~int foo(int, int);
30822@c ^done,bkpt=@{number="3",addr="0x00010774",file="recursive2.c,
998580f1
MK
30823@c "fullname="/home/foo/recursive2.c",line="11",thread-groups=["i1"],
30824@c times="0"@}
496ee73e 30825@c (gdb)
922fbb7b
AC
30826@end smallexample
30827
c5867ab6
HZ
30828@subheading The @code{-dprintf-insert} Command
30829@findex -dprintf-insert
30830
30831@subsubheading Synopsis
30832
30833@smallexample
6791b117 30834 -dprintf-insert [ -t ] [ -f ] [ -d ] [ --qualified ]
10e578d7 30835 [ -c @var{condition} ] [--force-condition] [ -i @var{ignore-count} ]
c5867ab6
HZ
30836 [ -p @var{thread-id} ] [ @var{location} ] [ @var{format} ]
30837 [ @var{argument} ]
30838@end smallexample
30839
30840@noindent
6791b117
PA
30841If supplied, @var{location} and @code{--qualified} may be specified
30842the same way as for the @code{-break-insert} command.
30843@xref{-break-insert}.
c5867ab6
HZ
30844
30845The possible optional parameters of this command are:
30846
30847@table @samp
30848@item -t
30849Insert a temporary breakpoint.
30850@item -f
30851If @var{location} cannot be parsed (for example, if it
30852refers to unknown files or functions), create a pending
30853breakpoint. Without this flag, @value{GDBN} will report
30854an error, and won't create a breakpoint, if @var{location}
30855cannot be parsed.
30856@item -d
30857Create a disabled breakpoint.
30858@item -c @var{condition}
30859Make the breakpoint conditional on @var{condition}.
10e578d7
TBA
30860@item --force-condition
30861Forcibly define the breakpoint even if the condition is invalid at
30862all of the breakpoint locations.
c5867ab6
HZ
30863@item -i @var{ignore-count}
30864Set the ignore count of the breakpoint (@pxref{Conditions, ignore count})
30865to @var{ignore-count}.
30866@item -p @var{thread-id}
5d5658a1
PA
30867Restrict the breakpoint to the thread with the specified global
30868@var{thread-id}.
c5867ab6
HZ
30869@end table
30870
30871@subsubheading Result
30872
30873@xref{GDB/MI Breakpoint Information}, for details on the format of the
30874resulting breakpoint.
30875
30876@c An out-of-band breakpoint instead of part of the result?
30877
30878@subsubheading @value{GDBN} Command
30879
30880The corresponding @value{GDBN} command is @samp{dprintf}.
30881
30882@subsubheading Example
30883
30884@smallexample
30885(gdb)
308864-dprintf-insert foo "At foo entry\n"
308874^done,bkpt=@{number="1",type="dprintf",disp="keep",enabled="y",
30888addr="0x000000000040061b",func="foo",file="mi-dprintf.c",
30889fullname="mi-dprintf.c",line="25",thread-groups=["i1"],
30890times="0",script=@{"printf \"At foo entry\\n\"","continue"@},
30891original-location="foo"@}
30892(gdb)
308935-dprintf-insert 26 "arg=%d, g=%d\n" arg g
308945^done,bkpt=@{number="2",type="dprintf",disp="keep",enabled="y",
30895addr="0x000000000040062a",func="foo",file="mi-dprintf.c",
30896fullname="mi-dprintf.c",line="26",thread-groups=["i1"],
30897times="0",script=@{"printf \"arg=%d, g=%d\\n\", arg, g","continue"@},
30898original-location="mi-dprintf.c:26"@}
30899(gdb)
30900@end smallexample
30901
922fbb7b
AC
30902@subheading The @code{-break-list} Command
30903@findex -break-list
30904
30905@subsubheading Synopsis
30906
30907@smallexample
30908 -break-list
30909@end smallexample
30910
30911Displays the list of inserted breakpoints, showing the following fields:
30912
30913@table @samp
30914@item Number
30915number of the breakpoint
30916@item Type
30917type of the breakpoint: @samp{breakpoint} or @samp{watchpoint}
30918@item Disposition
30919should the breakpoint be deleted or disabled when it is hit: @samp{keep}
30920or @samp{nokeep}
30921@item Enabled
30922is the breakpoint enabled or no: @samp{y} or @samp{n}
30923@item Address
30924memory location at which the breakpoint is set
30925@item What
30926logical location of the breakpoint, expressed by function name, file
30927name, line number
998580f1
MK
30928@item Thread-groups
30929list of thread groups to which this breakpoint applies
922fbb7b
AC
30930@item Times
30931number of times the breakpoint has been hit
30932@end table
30933
30934If there are no breakpoints or watchpoints, the @code{BreakpointTable}
30935@code{body} field is an empty list.
30936
30937@subsubheading @value{GDBN} Command
30938
30939The corresponding @value{GDBN} command is @samp{info break}.
30940
30941@subsubheading Example
30942
30943@smallexample
594fe323 30944(gdb)
922fbb7b
AC
30945-break-list
30946^done,BreakpointTable=@{nr_rows="2",nr_cols="6",
30947hdr=[@{width="3",alignment="-1",col_name="number",colhdr="Num"@},
30948@{width="14",alignment="-1",col_name="type",colhdr="Type"@},
30949@{width="4",alignment="-1",col_name="disp",colhdr="Disp"@},
30950@{width="3",alignment="-1",col_name="enabled",colhdr="Enb"@},
30951@{width="10",alignment="-1",col_name="addr",colhdr="Address"@},
30952@{width="40",alignment="2",col_name="what",colhdr="What"@}],
30953body=[bkpt=@{number="1",type="breakpoint",disp="keep",enabled="y",
998580f1
MK
30954addr="0x000100d0",func="main",file="hello.c",line="5",thread-groups=["i1"],
30955times="0"@},
922fbb7b 30956bkpt=@{number="2",type="breakpoint",disp="keep",enabled="y",
948d5102 30957addr="0x00010114",func="foo",file="hello.c",fullname="/home/foo/hello.c",
998580f1 30958line="13",thread-groups=["i1"],times="0"@}]@}
594fe323 30959(gdb)
922fbb7b
AC
30960@end smallexample
30961
30962Here's an example of the result when there are no breakpoints:
30963
30964@smallexample
594fe323 30965(gdb)
922fbb7b
AC
30966-break-list
30967^done,BreakpointTable=@{nr_rows="0",nr_cols="6",
30968hdr=[@{width="3",alignment="-1",col_name="number",colhdr="Num"@},
30969@{width="14",alignment="-1",col_name="type",colhdr="Type"@},
30970@{width="4",alignment="-1",col_name="disp",colhdr="Disp"@},
30971@{width="3",alignment="-1",col_name="enabled",colhdr="Enb"@},
30972@{width="10",alignment="-1",col_name="addr",colhdr="Address"@},
30973@{width="40",alignment="2",col_name="what",colhdr="What"@}],
30974body=[]@}
594fe323 30975(gdb)
922fbb7b
AC
30976@end smallexample
30977
18148017
VP
30978@subheading The @code{-break-passcount} Command
30979@findex -break-passcount
30980
30981@subsubheading Synopsis
30982
30983@smallexample
30984 -break-passcount @var{tracepoint-number} @var{passcount}
30985@end smallexample
30986
30987Set the passcount for tracepoint @var{tracepoint-number} to
30988@var{passcount}. If the breakpoint referred to by @var{tracepoint-number}
30989is not a tracepoint, error is emitted. This corresponds to CLI
30990command @samp{passcount}.
30991
922fbb7b
AC
30992@subheading The @code{-break-watch} Command
30993@findex -break-watch
30994
30995@subsubheading Synopsis
30996
30997@smallexample
30998 -break-watch [ -a | -r ]
30999@end smallexample
31000
31001Create a watchpoint. With the @samp{-a} option it will create an
d3e8051b 31002@dfn{access} watchpoint, i.e., a watchpoint that triggers either on a
922fbb7b 31003read from or on a write to the memory location. With the @samp{-r}
d3e8051b 31004option, the watchpoint created is a @dfn{read} watchpoint, i.e., it will
922fbb7b
AC
31005trigger only when the memory location is accessed for reading. Without
31006either of the options, the watchpoint created is a regular watchpoint,
d3e8051b 31007i.e., it will trigger when the memory location is accessed for writing.
79a6e687 31008@xref{Set Watchpoints, , Setting Watchpoints}.
922fbb7b
AC
31009
31010Note that @samp{-break-list} will report a single list of watchpoints and
31011breakpoints inserted.
31012
31013@subsubheading @value{GDBN} Command
31014
31015The corresponding @value{GDBN} commands are @samp{watch}, @samp{awatch}, and
31016@samp{rwatch}.
31017
31018@subsubheading Example
31019
31020Setting a watchpoint on a variable in the @code{main} function:
31021
31022@smallexample
594fe323 31023(gdb)
922fbb7b
AC
31024-break-watch x
31025^done,wpt=@{number="2",exp="x"@}
594fe323 31026(gdb)
922fbb7b
AC
31027-exec-continue
31028^running
0869d01b
NR
31029(gdb)
31030*stopped,reason="watchpoint-trigger",wpt=@{number="2",exp="x"@},
922fbb7b 31031value=@{old="-268439212",new="55"@},
76ff342d 31032frame=@{func="main",args=[],file="recursive2.c",
6d52907e 31033fullname="/home/foo/bar/recursive2.c",line="5",arch="i386:x86_64"@}
594fe323 31034(gdb)
922fbb7b
AC
31035@end smallexample
31036
31037Setting a watchpoint on a variable local to a function. @value{GDBN} will stop
31038the program execution twice: first for the variable changing value, then
31039for the watchpoint going out of scope.
31040
31041@smallexample
594fe323 31042(gdb)
922fbb7b
AC
31043-break-watch C
31044^done,wpt=@{number="5",exp="C"@}
594fe323 31045(gdb)
922fbb7b
AC
31046-exec-continue
31047^running
0869d01b
NR
31048(gdb)
31049*stopped,reason="watchpoint-trigger",
922fbb7b
AC
31050wpt=@{number="5",exp="C"@},value=@{old="-276895068",new="3"@},
31051frame=@{func="callee4",args=[],
76ff342d 31052file="../../../devo/gdb/testsuite/gdb.mi/basics.c",
6d52907e
JV
31053fullname="/home/foo/bar/devo/gdb/testsuite/gdb.mi/basics.c",line="13",
31054arch="i386:x86_64"@}
594fe323 31055(gdb)
922fbb7b
AC
31056-exec-continue
31057^running
0869d01b
NR
31058(gdb)
31059*stopped,reason="watchpoint-scope",wpnum="5",
922fbb7b
AC
31060frame=@{func="callee3",args=[@{name="strarg",
31061value="0x11940 \"A string argument.\""@}],
76ff342d 31062file="../../../devo/gdb/testsuite/gdb.mi/basics.c",
6d52907e
JV
31063fullname="/home/foo/bar/devo/gdb/testsuite/gdb.mi/basics.c",line="18",
31064arch="i386:x86_64"@}
594fe323 31065(gdb)
922fbb7b
AC
31066@end smallexample
31067
31068Listing breakpoints and watchpoints, at different points in the program
31069execution. Note that once the watchpoint goes out of scope, it is
31070deleted.
31071
31072@smallexample
594fe323 31073(gdb)
922fbb7b
AC
31074-break-watch C
31075^done,wpt=@{number="2",exp="C"@}
594fe323 31076(gdb)
922fbb7b
AC
31077-break-list
31078^done,BreakpointTable=@{nr_rows="2",nr_cols="6",
31079hdr=[@{width="3",alignment="-1",col_name="number",colhdr="Num"@},
31080@{width="14",alignment="-1",col_name="type",colhdr="Type"@},
31081@{width="4",alignment="-1",col_name="disp",colhdr="Disp"@},
31082@{width="3",alignment="-1",col_name="enabled",colhdr="Enb"@},
31083@{width="10",alignment="-1",col_name="addr",colhdr="Address"@},
31084@{width="40",alignment="2",col_name="what",colhdr="What"@}],
31085body=[bkpt=@{number="1",type="breakpoint",disp="keep",enabled="y",
31086addr="0x00010734",func="callee4",
948d5102 31087file="../../../devo/gdb/testsuite/gdb.mi/basics.c",
998580f1
MK
31088fullname="/home/foo/devo/gdb/testsuite/gdb.mi/basics.c"line="8",thread-groups=["i1"],
31089times="1"@},
922fbb7b 31090bkpt=@{number="2",type="watchpoint",disp="keep",
998580f1 31091enabled="y",addr="",what="C",thread-groups=["i1"],times="0"@}]@}
594fe323 31092(gdb)
922fbb7b
AC
31093-exec-continue
31094^running
0869d01b
NR
31095(gdb)
31096*stopped,reason="watchpoint-trigger",wpt=@{number="2",exp="C"@},
922fbb7b
AC
31097value=@{old="-276895068",new="3"@},
31098frame=@{func="callee4",args=[],
76ff342d 31099file="../../../devo/gdb/testsuite/gdb.mi/basics.c",
6d52907e
JV
31100fullname="/home/foo/bar/devo/gdb/testsuite/gdb.mi/basics.c",line="13",
31101arch="i386:x86_64"@}
594fe323 31102(gdb)
922fbb7b
AC
31103-break-list
31104^done,BreakpointTable=@{nr_rows="2",nr_cols="6",
31105hdr=[@{width="3",alignment="-1",col_name="number",colhdr="Num"@},
31106@{width="14",alignment="-1",col_name="type",colhdr="Type"@},
31107@{width="4",alignment="-1",col_name="disp",colhdr="Disp"@},
31108@{width="3",alignment="-1",col_name="enabled",colhdr="Enb"@},
31109@{width="10",alignment="-1",col_name="addr",colhdr="Address"@},
31110@{width="40",alignment="2",col_name="what",colhdr="What"@}],
31111body=[bkpt=@{number="1",type="breakpoint",disp="keep",enabled="y",
31112addr="0x00010734",func="callee4",
948d5102 31113file="../../../devo/gdb/testsuite/gdb.mi/basics.c",
998580f1
MK
31114fullname="/home/foo/devo/gdb/testsuite/gdb.mi/basics.c",line="8",thread-groups=["i1"],
31115times="1"@},
922fbb7b 31116bkpt=@{number="2",type="watchpoint",disp="keep",
998580f1 31117enabled="y",addr="",what="C",thread-groups=["i1"],times="-5"@}]@}
594fe323 31118(gdb)
922fbb7b
AC
31119-exec-continue
31120^running
31121^done,reason="watchpoint-scope",wpnum="2",
31122frame=@{func="callee3",args=[@{name="strarg",
31123value="0x11940 \"A string argument.\""@}],
76ff342d 31124file="../../../devo/gdb/testsuite/gdb.mi/basics.c",
6d52907e
JV
31125fullname="/home/foo/bar/devo/gdb/testsuite/gdb.mi/basics.c",line="18",
31126arch="i386:x86_64"@}
594fe323 31127(gdb)
922fbb7b
AC
31128-break-list
31129^done,BreakpointTable=@{nr_rows="1",nr_cols="6",
31130hdr=[@{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"@}],
31136body=[bkpt=@{number="1",type="breakpoint",disp="keep",enabled="y",
31137addr="0x00010734",func="callee4",
948d5102
NR
31138file="../../../devo/gdb/testsuite/gdb.mi/basics.c",
31139fullname="/home/foo/devo/gdb/testsuite/gdb.mi/basics.c",line="8",
998580f1 31140thread-groups=["i1"],times="1"@}]@}
594fe323 31141(gdb)
922fbb7b
AC
31142@end smallexample
31143
3fa7bf06
MG
31144
31145@c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
31146@node GDB/MI Catchpoint Commands
31147@section @sc{gdb/mi} Catchpoint Commands
31148
31149This section documents @sc{gdb/mi} commands for manipulating
31150catchpoints.
31151
40555925
JB
31152@menu
31153* Shared Library GDB/MI Catchpoint Commands::
31154* Ada Exception GDB/MI Catchpoint Commands::
30056ea0 31155* C++ Exception GDB/MI Catchpoint Commands::
40555925
JB
31156@end menu
31157
31158@node Shared Library GDB/MI Catchpoint Commands
31159@subsection Shared Library @sc{gdb/mi} Catchpoints
31160
3fa7bf06
MG
31161@subheading The @code{-catch-load} Command
31162@findex -catch-load
31163
31164@subsubheading Synopsis
31165
31166@smallexample
31167 -catch-load [ -t ] [ -d ] @var{regexp}
31168@end smallexample
31169
31170Add a catchpoint for library load events. If the @samp{-t} option is used,
31171the catchpoint is a temporary one (@pxref{Set Breaks, ,Setting
31172Breakpoints}). If the @samp{-d} option is used, the catchpoint is created
31173in a disabled state. The @samp{regexp} argument is a regular
31174expression used to match the name of the loaded library.
31175
31176
31177@subsubheading @value{GDBN} Command
31178
31179The corresponding @value{GDBN} command is @samp{catch load}.
31180
31181@subsubheading Example
31182
31183@smallexample
31184-catch-load -t foo.so
31185^done,bkpt=@{number="1",type="catchpoint",disp="del",enabled="y",
8ac3646f 31186what="load of library matching foo.so",catch-type="load",times="0"@}
3fa7bf06
MG
31187(gdb)
31188@end smallexample
31189
31190
31191@subheading The @code{-catch-unload} Command
31192@findex -catch-unload
31193
31194@subsubheading Synopsis
31195
31196@smallexample
31197 -catch-unload [ -t ] [ -d ] @var{regexp}
31198@end smallexample
31199
31200Add a catchpoint for library unload events. If the @samp{-t} option is
31201used, the catchpoint is a temporary one (@pxref{Set Breaks, ,Setting
31202Breakpoints}). If the @samp{-d} option is used, the catchpoint is
31203created in a disabled state. The @samp{regexp} argument is a regular
31204expression used to match the name of the unloaded library.
31205
31206@subsubheading @value{GDBN} Command
31207
31208The corresponding @value{GDBN} command is @samp{catch unload}.
31209
31210@subsubheading Example
31211
31212@smallexample
31213-catch-unload -d bar.so
31214^done,bkpt=@{number="2",type="catchpoint",disp="keep",enabled="n",
8ac3646f 31215what="load of library matching bar.so",catch-type="unload",times="0"@}
3fa7bf06
MG
31216(gdb)
31217@end smallexample
31218
40555925
JB
31219@node Ada Exception GDB/MI Catchpoint Commands
31220@subsection Ada Exception @sc{gdb/mi} Catchpoints
31221
31222The following @sc{gdb/mi} commands can be used to create catchpoints
31223that stop the execution when Ada exceptions are being raised.
31224
31225@subheading The @code{-catch-assert} Command
31226@findex -catch-assert
31227
31228@subsubheading Synopsis
31229
31230@smallexample
31231 -catch-assert [ -c @var{condition}] [ -d ] [ -t ]
31232@end smallexample
31233
31234Add a catchpoint for failed Ada assertions.
31235
31236The possible optional parameters for this command are:
31237
31238@table @samp
31239@item -c @var{condition}
31240Make the catchpoint conditional on @var{condition}.
31241@item -d
31242Create a disabled catchpoint.
31243@item -t
31244Create a temporary catchpoint.
31245@end table
31246
31247@subsubheading @value{GDBN} Command
31248
31249The corresponding @value{GDBN} command is @samp{catch assert}.
31250
31251@subsubheading Example
31252
31253@smallexample
31254-catch-assert
31255^done,bkptno="5",bkpt=@{number="5",type="breakpoint",disp="keep",
31256enabled="y",addr="0x0000000000404888",what="failed Ada assertions",
31257thread-groups=["i1"],times="0",
31258original-location="__gnat_debug_raise_assert_failure"@}
31259(gdb)
31260@end smallexample
31261
31262@subheading The @code{-catch-exception} Command
31263@findex -catch-exception
31264
31265@subsubheading Synopsis
31266
31267@smallexample
31268 -catch-exception [ -c @var{condition}] [ -d ] [ -e @var{exception-name} ]
31269 [ -t ] [ -u ]
31270@end smallexample
31271
31272Add a catchpoint stopping when Ada exceptions are raised.
31273By default, the command stops the program when any Ada exception
31274gets raised. But it is also possible, by using some of the
31275optional parameters described below, to create more selective
31276catchpoints.
31277
31278The possible optional parameters for this command are:
31279
31280@table @samp
31281@item -c @var{condition}
31282Make the catchpoint conditional on @var{condition}.
31283@item -d
31284Create a disabled catchpoint.
31285@item -e @var{exception-name}
31286Only stop when @var{exception-name} is raised. This option cannot
31287be used combined with @samp{-u}.
31288@item -t
31289Create a temporary catchpoint.
31290@item -u
31291Stop only when an unhandled exception gets raised. This option
31292cannot be used combined with @samp{-e}.
31293@end table
31294
31295@subsubheading @value{GDBN} Command
31296
31297The corresponding @value{GDBN} commands are @samp{catch exception}
31298and @samp{catch exception unhandled}.
31299
31300@subsubheading Example
31301
31302@smallexample
31303-catch-exception -e Program_Error
31304^done,bkptno="4",bkpt=@{number="4",type="breakpoint",disp="keep",
31305enabled="y",addr="0x0000000000404874",
31306what="`Program_Error' Ada exception", thread-groups=["i1"],
31307times="0",original-location="__gnat_debug_raise_exception"@}
31308(gdb)
31309@end smallexample
3fa7bf06 31310
bea298f9
XR
31311@subheading The @code{-catch-handlers} Command
31312@findex -catch-handlers
31313
31314@subsubheading Synopsis
31315
31316@smallexample
31317 -catch-handlers [ -c @var{condition}] [ -d ] [ -e @var{exception-name} ]
31318 [ -t ]
31319@end smallexample
31320
31321Add a catchpoint stopping when Ada exceptions are handled.
31322By default, the command stops the program when any Ada exception
31323gets handled. But it is also possible, by using some of the
31324optional parameters described below, to create more selective
31325catchpoints.
31326
31327The possible optional parameters for this command are:
31328
31329@table @samp
31330@item -c @var{condition}
31331Make the catchpoint conditional on @var{condition}.
31332@item -d
31333Create a disabled catchpoint.
31334@item -e @var{exception-name}
31335Only stop when @var{exception-name} is handled.
31336@item -t
31337Create a temporary catchpoint.
31338@end table
31339
31340@subsubheading @value{GDBN} Command
31341
31342The corresponding @value{GDBN} command is @samp{catch handlers}.
31343
31344@subsubheading Example
31345
31346@smallexample
31347-catch-handlers -e Constraint_Error
31348^done,bkptno="4",bkpt=@{number="4",type="breakpoint",disp="keep",
31349enabled="y",addr="0x0000000000402f68",
31350what="`Constraint_Error' Ada exception handlers",thread-groups=["i1"],
31351times="0",original-location="__gnat_begin_handler"@}
31352(gdb)
31353@end smallexample
31354
30056ea0
AB
31355@node C++ Exception GDB/MI Catchpoint Commands
31356@subsection C@t{++} Exception @sc{gdb/mi} Catchpoints
31357
31358The following @sc{gdb/mi} commands can be used to create catchpoints
31359that stop the execution when C@t{++} exceptions are being throw, rethrown,
31360or caught.
31361
31362@subheading The @code{-catch-throw} Command
31363@findex -catch-throw
31364
31365@subsubheading Synopsis
31366
31367@smallexample
31368 -catch-throw [ -t ] [ -r @var{regexp}]
31369@end smallexample
31370
31371Stop when the debuggee throws a C@t{++} exception. If @var{regexp} is
31372given, then only exceptions whose type matches the regular expression
31373will be caught.
31374
31375If @samp{-t} is given, then the catchpoint is enabled only for one
31376stop, the catchpoint is automatically deleted after stopping once for
31377the event.
31378
31379@subsubheading @value{GDBN} Command
31380
31381The corresponding @value{GDBN} commands are @samp{catch throw}
31382and @samp{tcatch throw} (@pxref{Set Catchpoints}).
31383
31384@subsubheading Example
31385
31386@smallexample
31387-catch-throw -r exception_type
cb1e4e32
PA
31388^done,bkpt=@{number="1",type="catchpoint",disp="keep",enabled="y",
31389 what="exception throw",catch-type="throw",
31390 thread-groups=["i1"],
30056ea0
AB
31391 regexp="exception_type",times="0"@}
31392(gdb)
31393-exec-run
31394^running
31395(gdb)
31396~"\n"
31397~"Catchpoint 1 (exception thrown), 0x00007ffff7ae00ed
31398 in __cxa_throw () from /lib64/libstdc++.so.6\n"
31399*stopped,bkptno="1",reason="breakpoint-hit",disp="keep",
31400 frame=@{addr="0x00007ffff7ae00ed",func="__cxa_throw",
31401 args=[],from="/lib64/libstdc++.so.6",arch="i386:x86-64"@},
31402 thread-id="1",stopped-threads="all",core="6"
31403(gdb)
31404@end smallexample
31405
31406@subheading The @code{-catch-rethrow} Command
31407@findex -catch-rethrow
31408
31409@subsubheading Synopsis
31410
31411@smallexample
31412 -catch-rethrow [ -t ] [ -r @var{regexp}]
31413@end smallexample
31414
31415Stop when a C@t{++} exception is re-thrown. If @var{regexp} is given,
31416then only exceptions whose type matches the regular expression will be
31417caught.
31418
31419If @samp{-t} is given, then the catchpoint is enabled only for one
31420stop, the catchpoint is automatically deleted after the first event is
31421caught.
31422
31423@subsubheading @value{GDBN} Command
31424
31425The corresponding @value{GDBN} commands are @samp{catch rethrow}
31426and @samp{tcatch rethrow} (@pxref{Set Catchpoints}).
31427
31428@subsubheading Example
31429
31430@smallexample
31431-catch-rethrow -r exception_type
cb1e4e32
PA
31432^done,bkpt=@{number="1",type="catchpoint",disp="keep",enabled="y",
31433 what="exception rethrow",catch-type="rethrow",
31434 thread-groups=["i1"],
30056ea0
AB
31435 regexp="exception_type",times="0"@}
31436(gdb)
31437-exec-run
31438^running
31439(gdb)
31440~"\n"
31441~"Catchpoint 1 (exception rethrown), 0x00007ffff7ae00ed
31442 in __cxa_rethrow () from /lib64/libstdc++.so.6\n"
31443*stopped,bkptno="1",reason="breakpoint-hit",disp="keep",
31444 frame=@{addr="0x00007ffff7ae00ed",func="__cxa_rethrow",
31445 args=[],from="/lib64/libstdc++.so.6",arch="i386:x86-64"@},
31446 thread-id="1",stopped-threads="all",core="6"
31447(gdb)
31448@end smallexample
31449
31450@subheading The @code{-catch-catch} Command
31451@findex -catch-catch
31452
31453@subsubheading Synopsis
31454
31455@smallexample
31456 -catch-catch [ -t ] [ -r @var{regexp}]
31457@end smallexample
31458
31459Stop when the debuggee catches a C@t{++} exception. If @var{regexp}
31460is given, then only exceptions whose type matches the regular
31461expression will be caught.
31462
31463If @samp{-t} is given, then the catchpoint is enabled only for one
31464stop, the catchpoint is automatically deleted after the first event is
31465caught.
31466
31467@subsubheading @value{GDBN} Command
31468
31469The corresponding @value{GDBN} commands are @samp{catch catch}
31470and @samp{tcatch catch} (@pxref{Set Catchpoints}).
31471
31472@subsubheading Example
31473
31474@smallexample
31475-catch-catch -r exception_type
cb1e4e32
PA
31476^done,bkpt=@{number="1",type="catchpoint",disp="keep",enabled="y",
31477 what="exception catch",catch-type="catch",
31478 thread-groups=["i1"],
30056ea0
AB
31479 regexp="exception_type",times="0"@}
31480(gdb)
31481-exec-run
31482^running
31483(gdb)
31484~"\n"
31485~"Catchpoint 1 (exception caught), 0x00007ffff7ae00ed
31486 in __cxa_begin_catch () from /lib64/libstdc++.so.6\n"
31487*stopped,bkptno="1",reason="breakpoint-hit",disp="keep",
31488 frame=@{addr="0x00007ffff7ae00ed",func="__cxa_begin_catch",
31489 args=[],from="/lib64/libstdc++.so.6",arch="i386:x86-64"@},
31490 thread-id="1",stopped-threads="all",core="6"
31491(gdb)
31492@end smallexample
31493
922fbb7b 31494@c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
a2c02241
NR
31495@node GDB/MI Program Context
31496@section @sc{gdb/mi} Program Context
922fbb7b 31497
a2c02241
NR
31498@subheading The @code{-exec-arguments} Command
31499@findex -exec-arguments
922fbb7b 31500
922fbb7b
AC
31501
31502@subsubheading Synopsis
31503
31504@smallexample
a2c02241 31505 -exec-arguments @var{args}
922fbb7b
AC
31506@end smallexample
31507
a2c02241
NR
31508Set the inferior program arguments, to be used in the next
31509@samp{-exec-run}.
922fbb7b 31510
a2c02241 31511@subsubheading @value{GDBN} Command
922fbb7b 31512
a2c02241 31513The corresponding @value{GDBN} command is @samp{set args}.
922fbb7b 31514
a2c02241 31515@subsubheading Example
922fbb7b 31516
fbc5282e
MK
31517@smallexample
31518(gdb)
31519-exec-arguments -v word
31520^done
31521(gdb)
31522@end smallexample
922fbb7b 31523
a2c02241 31524
9901a55b 31525@ignore
a2c02241
NR
31526@subheading The @code{-exec-show-arguments} Command
31527@findex -exec-show-arguments
31528
31529@subsubheading Synopsis
31530
31531@smallexample
31532 -exec-show-arguments
31533@end smallexample
31534
31535Print the arguments of the program.
922fbb7b
AC
31536
31537@subsubheading @value{GDBN} Command
31538
a2c02241 31539The corresponding @value{GDBN} command is @samp{show args}.
922fbb7b
AC
31540
31541@subsubheading Example
a2c02241 31542N.A.
9901a55b 31543@end ignore
922fbb7b 31544
922fbb7b 31545
a2c02241
NR
31546@subheading The @code{-environment-cd} Command
31547@findex -environment-cd
922fbb7b 31548
a2c02241 31549@subsubheading Synopsis
922fbb7b
AC
31550
31551@smallexample
a2c02241 31552 -environment-cd @var{pathdir}
922fbb7b
AC
31553@end smallexample
31554
a2c02241 31555Set @value{GDBN}'s working directory.
922fbb7b 31556
a2c02241 31557@subsubheading @value{GDBN} Command
922fbb7b 31558
a2c02241
NR
31559The corresponding @value{GDBN} command is @samp{cd}.
31560
31561@subsubheading Example
922fbb7b
AC
31562
31563@smallexample
594fe323 31564(gdb)
a2c02241
NR
31565-environment-cd /kwikemart/marge/ezannoni/flathead-dev/devo/gdb
31566^done
594fe323 31567(gdb)
922fbb7b
AC
31568@end smallexample
31569
31570
a2c02241
NR
31571@subheading The @code{-environment-directory} Command
31572@findex -environment-directory
922fbb7b
AC
31573
31574@subsubheading Synopsis
31575
31576@smallexample
a2c02241 31577 -environment-directory [ -r ] [ @var{pathdir} ]+
922fbb7b
AC
31578@end smallexample
31579
a2c02241
NR
31580Add directories @var{pathdir} to beginning of search path for source files.
31581If the @samp{-r} option is used, the search path is reset to the default
31582search path. If directories @var{pathdir} are supplied in addition to the
31583@samp{-r} option, the search path is first reset and then addition
31584occurs as normal.
31585Multiple directories may be specified, separated by blanks. Specifying
31586multiple directories in a single command
31587results in the directories added to the beginning of the
31588search path in the same order they were presented in the command.
31589If blanks are needed as
31590part of a directory name, double-quotes should be used around
31591the name. In the command output, the path will show up separated
d3e8051b 31592by the system directory-separator character. The directory-separator
a2c02241
NR
31593character must not be used
31594in any directory name.
31595If no directories are specified, the current search path is displayed.
922fbb7b
AC
31596
31597@subsubheading @value{GDBN} Command
31598
a2c02241 31599The corresponding @value{GDBN} command is @samp{dir}.
922fbb7b
AC
31600
31601@subsubheading Example
31602
922fbb7b 31603@smallexample
594fe323 31604(gdb)
a2c02241
NR
31605-environment-directory /kwikemart/marge/ezannoni/flathead-dev/devo/gdb
31606^done,source-path="/kwikemart/marge/ezannoni/flathead-dev/devo/gdb:$cdir:$cwd"
594fe323 31607(gdb)
a2c02241
NR
31608-environment-directory ""
31609^done,source-path="/kwikemart/marge/ezannoni/flathead-dev/devo/gdb:$cdir:$cwd"
594fe323 31610(gdb)
a2c02241
NR
31611-environment-directory -r /home/jjohnstn/src/gdb /usr/src
31612^done,source-path="/home/jjohnstn/src/gdb:/usr/src:$cdir:$cwd"
594fe323 31613(gdb)
a2c02241
NR
31614-environment-directory -r
31615^done,source-path="$cdir:$cwd"
594fe323 31616(gdb)
922fbb7b
AC
31617@end smallexample
31618
31619
a2c02241
NR
31620@subheading The @code{-environment-path} Command
31621@findex -environment-path
922fbb7b
AC
31622
31623@subsubheading Synopsis
31624
31625@smallexample
a2c02241 31626 -environment-path [ -r ] [ @var{pathdir} ]+
922fbb7b
AC
31627@end smallexample
31628
a2c02241
NR
31629Add directories @var{pathdir} to beginning of search path for object files.
31630If the @samp{-r} option is used, the search path is reset to the original
31631search path that existed at gdb start-up. If directories @var{pathdir} are
31632supplied in addition to the
31633@samp{-r} option, the search path is first reset and then addition
31634occurs as normal.
31635Multiple directories may be specified, separated by blanks. Specifying
31636multiple directories in a single command
31637results in the directories added to the beginning of the
31638search path in the same order they were presented in the command.
31639If blanks are needed as
31640part of a directory name, double-quotes should be used around
31641the name. In the command output, the path will show up separated
d3e8051b 31642by the system directory-separator character. The directory-separator
a2c02241
NR
31643character must not be used
31644in any directory name.
31645If no directories are specified, the current path is displayed.
31646
922fbb7b
AC
31647
31648@subsubheading @value{GDBN} Command
31649
a2c02241 31650The corresponding @value{GDBN} command is @samp{path}.
922fbb7b
AC
31651
31652@subsubheading Example
31653
922fbb7b 31654@smallexample
594fe323 31655(gdb)
a2c02241
NR
31656-environment-path
31657^done,path="/usr/bin"
594fe323 31658(gdb)
a2c02241
NR
31659-environment-path /kwikemart/marge/ezannoni/flathead-dev/ppc-eabi/gdb /bin
31660^done,path="/kwikemart/marge/ezannoni/flathead-dev/ppc-eabi/gdb:/bin:/usr/bin"
594fe323 31661(gdb)
a2c02241
NR
31662-environment-path -r /usr/local/bin
31663^done,path="/usr/local/bin:/usr/bin"
594fe323 31664(gdb)
922fbb7b
AC
31665@end smallexample
31666
31667
a2c02241
NR
31668@subheading The @code{-environment-pwd} Command
31669@findex -environment-pwd
922fbb7b
AC
31670
31671@subsubheading Synopsis
31672
31673@smallexample
a2c02241 31674 -environment-pwd
922fbb7b
AC
31675@end smallexample
31676
a2c02241 31677Show the current working directory.
922fbb7b 31678
79a6e687 31679@subsubheading @value{GDBN} Command
922fbb7b 31680
a2c02241 31681The corresponding @value{GDBN} command is @samp{pwd}.
922fbb7b
AC
31682
31683@subsubheading Example
31684
922fbb7b 31685@smallexample
594fe323 31686(gdb)
a2c02241
NR
31687-environment-pwd
31688^done,cwd="/kwikemart/marge/ezannoni/flathead-dev/devo/gdb"
594fe323 31689(gdb)
922fbb7b
AC
31690@end smallexample
31691
a2c02241
NR
31692@c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
31693@node GDB/MI Thread Commands
31694@section @sc{gdb/mi} Thread Commands
31695
31696
31697@subheading The @code{-thread-info} Command
31698@findex -thread-info
922fbb7b
AC
31699
31700@subsubheading Synopsis
31701
31702@smallexample
8e8901c5 31703 -thread-info [ @var{thread-id} ]
922fbb7b
AC
31704@end smallexample
31705
5d5658a1
PA
31706Reports information about either a specific thread, if the
31707@var{thread-id} parameter is present, or about all threads.
31708@var{thread-id} is the thread's global thread ID. When printing
31709information about all threads, also reports the global ID of the
31710current thread.
8e8901c5 31711
79a6e687 31712@subsubheading @value{GDBN} Command
922fbb7b 31713
8e8901c5
VP
31714The @samp{info thread} command prints the same information
31715about all threads.
922fbb7b 31716
4694da01 31717@subsubheading Result
922fbb7b 31718
ebe553db 31719The result contains the following attributes:
4694da01
TT
31720
31721@table @samp
ebe553db
SM
31722@item threads
31723A list of threads. The format of the elements of the list is described in
31724@ref{GDB/MI Thread Information}.
31725
31726@item current-thread-id
31727The global id of the currently selected thread. This field is omitted if there
31728is no selected thread (for example, when the selected inferior is not running,
31729and therefore has no threads) or if a @var{thread-id} argument was passed to
31730the command.
4694da01
TT
31731
31732@end table
31733
31734@subsubheading Example
31735
31736@smallexample
31737-thread-info
31738^done,threads=[
31739@{id="2",target-id="Thread 0xb7e14b90 (LWP 21257)",
31740 frame=@{level="0",addr="0xffffe410",func="__kernel_vsyscall",
31741 args=[]@},state="running"@},
31742@{id="1",target-id="Thread 0xb7e156b0 (LWP 21254)",
31743 frame=@{level="0",addr="0x0804891f",func="foo",
31744 args=[@{name="i",value="10"@}],
6d52907e 31745 file="/tmp/a.c",fullname="/tmp/a.c",line="158",arch="i386:x86_64"@},
4694da01
TT
31746 state="running"@}],
31747current-thread-id="1"
31748(gdb)
31749@end smallexample
31750
a2c02241
NR
31751@subheading The @code{-thread-list-ids} Command
31752@findex -thread-list-ids
922fbb7b 31753
a2c02241 31754@subsubheading Synopsis
922fbb7b 31755
a2c02241
NR
31756@smallexample
31757 -thread-list-ids
31758@end smallexample
922fbb7b 31759
5d5658a1
PA
31760Produces a list of the currently known global @value{GDBN} thread ids.
31761At the end of the list it also prints the total number of such
31762threads.
922fbb7b 31763
c3b108f7
VP
31764This command is retained for historical reasons, the
31765@code{-thread-info} command should be used instead.
31766
922fbb7b
AC
31767@subsubheading @value{GDBN} Command
31768
a2c02241 31769Part of @samp{info threads} supplies the same information.
922fbb7b
AC
31770
31771@subsubheading Example
31772
922fbb7b 31773@smallexample
594fe323 31774(gdb)
a2c02241
NR
31775-thread-list-ids
31776^done,thread-ids=@{thread-id="3",thread-id="2",thread-id="1"@},
592375cd 31777current-thread-id="1",number-of-threads="3"
594fe323 31778(gdb)
922fbb7b
AC
31779@end smallexample
31780
a2c02241
NR
31781
31782@subheading The @code{-thread-select} Command
31783@findex -thread-select
922fbb7b
AC
31784
31785@subsubheading Synopsis
31786
31787@smallexample
5d5658a1 31788 -thread-select @var{thread-id}
922fbb7b
AC
31789@end smallexample
31790
5d5658a1
PA
31791Make thread with global thread number @var{thread-id} the current
31792thread. It prints the number of the new current thread, and the
31793topmost frame for that thread.
922fbb7b 31794
c3b108f7
VP
31795This command is deprecated in favor of explicitly using the
31796@samp{--thread} option to each command.
31797
922fbb7b
AC
31798@subsubheading @value{GDBN} Command
31799
a2c02241 31800The corresponding @value{GDBN} command is @samp{thread}.
922fbb7b
AC
31801
31802@subsubheading Example
922fbb7b
AC
31803
31804@smallexample
594fe323 31805(gdb)
a2c02241
NR
31806-exec-next
31807^running
594fe323 31808(gdb)
a2c02241
NR
31809*stopped,reason="end-stepping-range",thread-id="2",line="187",
31810file="../../../devo/gdb/testsuite/gdb.threads/linux-dp.c"
594fe323 31811(gdb)
a2c02241
NR
31812-thread-list-ids
31813^done,
31814thread-ids=@{thread-id="3",thread-id="2",thread-id="1"@},
31815number-of-threads="3"
594fe323 31816(gdb)
a2c02241
NR
31817-thread-select 3
31818^done,new-thread-id="3",
31819frame=@{level="0",func="vprintf",
31820args=[@{name="format",value="0x8048e9c \"%*s%c %d %c\\n\""@},
6d52907e 31821@{name="arg",value="0x2"@}],file="vprintf.c",line="31",arch="i386:x86_64"@}
594fe323 31822(gdb)
922fbb7b
AC
31823@end smallexample
31824
5d77fe44
JB
31825@c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
31826@node GDB/MI Ada Tasking Commands
31827@section @sc{gdb/mi} Ada Tasking Commands
31828
31829@subheading The @code{-ada-task-info} Command
31830@findex -ada-task-info
31831
31832@subsubheading Synopsis
31833
31834@smallexample
31835 -ada-task-info [ @var{task-id} ]
31836@end smallexample
31837
31838Reports information about either a specific Ada task, if the
31839@var{task-id} parameter is present, or about all Ada tasks.
31840
31841@subsubheading @value{GDBN} Command
31842
31843The @samp{info tasks} command prints the same information
31844about all Ada tasks (@pxref{Ada Tasks}).
31845
31846@subsubheading Result
31847
31848The result is a table of Ada tasks. The following columns are
31849defined for each Ada task:
31850
31851@table @samp
31852@item current
31853This field exists only for the current thread. It has the value @samp{*}.
31854
31855@item id
31856The identifier that @value{GDBN} uses to refer to the Ada task.
31857
31858@item task-id
31859The identifier that the target uses to refer to the Ada task.
31860
31861@item thread-id
5d5658a1
PA
31862The global thread identifier of the thread corresponding to the Ada
31863task.
5d77fe44
JB
31864
31865This field should always exist, as Ada tasks are always implemented
31866on top of a thread. But if @value{GDBN} cannot find this corresponding
31867thread for any reason, the field is omitted.
31868
31869@item parent-id
31870This field exists only when the task was created by another task.
31871In this case, it provides the ID of the parent task.
31872
31873@item priority
31874The base priority of the task.
31875
31876@item state
31877The current state of the task. For a detailed description of the
31878possible states, see @ref{Ada Tasks}.
31879
31880@item name
31881The name of the task.
31882
31883@end table
31884
31885@subsubheading Example
31886
31887@smallexample
31888-ada-task-info
31889^done,tasks=@{nr_rows="3",nr_cols="8",
31890hdr=[@{width="1",alignment="-1",col_name="current",colhdr=""@},
31891@{width="3",alignment="1",col_name="id",colhdr="ID"@},
31892@{width="9",alignment="1",col_name="task-id",colhdr="TID"@},
31893@{width="4",alignment="1",col_name="thread-id",colhdr=""@},
31894@{width="4",alignment="1",col_name="parent-id",colhdr="P-ID"@},
31895@{width="3",alignment="1",col_name="priority",colhdr="Pri"@},
31896@{width="22",alignment="-1",col_name="state",colhdr="State"@},
31897@{width="1",alignment="2",col_name="name",colhdr="Name"@}],
31898body=[@{current="*",id="1",task-id=" 644010",thread-id="1",priority="48",
31899state="Child Termination Wait",name="main_task"@}]@}
31900(gdb)
31901@end smallexample
31902
a2c02241
NR
31903@c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
31904@node GDB/MI Program Execution
31905@section @sc{gdb/mi} Program Execution
922fbb7b 31906
ef21caaf 31907These are the asynchronous commands which generate the out-of-band
3f94c067 31908record @samp{*stopped}. Currently @value{GDBN} only really executes
ef21caaf
NR
31909asynchronously with remote targets and this interaction is mimicked in
31910other cases.
922fbb7b 31911
922fbb7b
AC
31912@subheading The @code{-exec-continue} Command
31913@findex -exec-continue
31914
31915@subsubheading Synopsis
31916
31917@smallexample
540aa8e7 31918 -exec-continue [--reverse] [--all|--thread-group N]
922fbb7b
AC
31919@end smallexample
31920
540aa8e7
MS
31921Resumes the execution of the inferior program, which will continue
31922to execute until it reaches a debugger stop event. If the
31923@samp{--reverse} option is specified, execution resumes in reverse until
31924it reaches a stop event. Stop events may include
31925@itemize @bullet
31926@item
31927breakpoints or watchpoints
31928@item
31929signals or exceptions
31930@item
31931the end of the process (or its beginning under @samp{--reverse})
31932@item
31933the end or beginning of a replay log if one is being used.
31934@end itemize
31935In all-stop mode (@pxref{All-Stop
31936Mode}), may resume only one thread, or all threads, depending on the
31937value of the @samp{scheduler-locking} variable. If @samp{--all} is
a79b8f6e 31938specified, all threads (in all inferiors) will be resumed. The @samp{--all} option is
540aa8e7
MS
31939ignored in all-stop mode. If the @samp{--thread-group} options is
31940specified, then all threads in that thread group are resumed.
922fbb7b
AC
31941
31942@subsubheading @value{GDBN} Command
31943
31944The corresponding @value{GDBN} corresponding is @samp{continue}.
31945
31946@subsubheading Example
31947
31948@smallexample
31949-exec-continue
31950^running
594fe323 31951(gdb)
922fbb7b 31952@@Hello world
a47ec5fe
AR
31953*stopped,reason="breakpoint-hit",disp="keep",bkptno="2",frame=@{
31954func="foo",args=[],file="hello.c",fullname="/home/foo/bar/hello.c",
6d52907e 31955line="13",arch="i386:x86_64"@}
594fe323 31956(gdb)
922fbb7b
AC
31957@end smallexample
31958
31959
31960@subheading The @code{-exec-finish} Command
31961@findex -exec-finish
31962
31963@subsubheading Synopsis
31964
31965@smallexample
540aa8e7 31966 -exec-finish [--reverse]
922fbb7b
AC
31967@end smallexample
31968
ef21caaf
NR
31969Resumes the execution of the inferior program until the current
31970function is exited. Displays the results returned by the function.
540aa8e7
MS
31971If the @samp{--reverse} option is specified, resumes the reverse
31972execution of the inferior program until the point where current
31973function was called.
922fbb7b
AC
31974
31975@subsubheading @value{GDBN} Command
31976
31977The corresponding @value{GDBN} command is @samp{finish}.
31978
31979@subsubheading Example
31980
31981Function returning @code{void}.
31982
31983@smallexample
31984-exec-finish
31985^running
594fe323 31986(gdb)
922fbb7b
AC
31987@@hello from foo
31988*stopped,reason="function-finished",frame=@{func="main",args=[],
6d52907e 31989file="hello.c",fullname="/home/foo/bar/hello.c",line="7",arch="i386:x86_64"@}
594fe323 31990(gdb)
922fbb7b
AC
31991@end smallexample
31992
31993Function returning other than @code{void}. The name of the internal
31994@value{GDBN} variable storing the result is printed, together with the
31995value itself.
31996
31997@smallexample
31998-exec-finish
31999^running
594fe323 32000(gdb)
922fbb7b
AC
32001*stopped,reason="function-finished",frame=@{addr="0x000107b0",func="foo",
32002args=[@{name="a",value="1"],@{name="b",value="9"@}@},
6d52907e
JV
32003file="recursive2.c",fullname="/home/foo/bar/recursive2.c",line="14",
32004arch="i386:x86_64"@},
922fbb7b 32005gdb-result-var="$1",return-value="0"
594fe323 32006(gdb)
922fbb7b
AC
32007@end smallexample
32008
32009
32010@subheading The @code{-exec-interrupt} Command
32011@findex -exec-interrupt
32012
32013@subsubheading Synopsis
32014
32015@smallexample
c3b108f7 32016 -exec-interrupt [--all|--thread-group N]
922fbb7b
AC
32017@end smallexample
32018
ef21caaf
NR
32019Interrupts the background execution of the target. Note how the token
32020associated with the stop message is the one for the execution command
32021that has been interrupted. The token for the interrupt itself only
32022appears in the @samp{^done} output. If the user is trying to
922fbb7b
AC
32023interrupt a non-running program, an error message will be printed.
32024
c3b108f7
VP
32025Note that when asynchronous execution is enabled, this command is
32026asynchronous just like other execution commands. That is, first the
32027@samp{^done} response will be printed, and the target stop will be
32028reported after that using the @samp{*stopped} notification.
32029
32030In non-stop mode, only the context thread is interrupted by default.
a79b8f6e
VP
32031All threads (in all inferiors) will be interrupted if the
32032@samp{--all} option is specified. If the @samp{--thread-group}
32033option is specified, all threads in that group will be interrupted.
c3b108f7 32034
922fbb7b
AC
32035@subsubheading @value{GDBN} Command
32036
32037The corresponding @value{GDBN} command is @samp{interrupt}.
32038
32039@subsubheading Example
32040
32041@smallexample
594fe323 32042(gdb)
922fbb7b
AC
32043111-exec-continue
32044111^running
32045
594fe323 32046(gdb)
922fbb7b
AC
32047222-exec-interrupt
32048222^done
594fe323 32049(gdb)
922fbb7b 32050111*stopped,signal-name="SIGINT",signal-meaning="Interrupt",
76ff342d 32051frame=@{addr="0x00010140",func="foo",args=[],file="try.c",
6d52907e 32052fullname="/home/foo/bar/try.c",line="13",arch="i386:x86_64"@}
594fe323 32053(gdb)
922fbb7b 32054
594fe323 32055(gdb)
922fbb7b
AC
32056-exec-interrupt
32057^error,msg="mi_cmd_exec_interrupt: Inferior not executing."
594fe323 32058(gdb)
922fbb7b
AC
32059@end smallexample
32060
83eba9b7
VP
32061@subheading The @code{-exec-jump} Command
32062@findex -exec-jump
32063
32064@subsubheading Synopsis
32065
32066@smallexample
32067 -exec-jump @var{location}
32068@end smallexample
32069
32070Resumes execution of the inferior program at the location specified by
32071parameter. @xref{Specify Location}, for a description of the
32072different forms of @var{location}.
32073
32074@subsubheading @value{GDBN} Command
32075
32076The corresponding @value{GDBN} command is @samp{jump}.
32077
32078@subsubheading Example
32079
32080@smallexample
32081-exec-jump foo.c:10
32082*running,thread-id="all"
32083^running
32084@end smallexample
32085
922fbb7b
AC
32086
32087@subheading The @code{-exec-next} Command
32088@findex -exec-next
32089
32090@subsubheading Synopsis
32091
32092@smallexample
540aa8e7 32093 -exec-next [--reverse]
922fbb7b
AC
32094@end smallexample
32095
ef21caaf
NR
32096Resumes execution of the inferior program, stopping when the beginning
32097of the next source line is reached.
922fbb7b 32098
540aa8e7
MS
32099If the @samp{--reverse} option is specified, resumes reverse execution
32100of the inferior program, stopping at the beginning of the previous
32101source line. If you issue this command on the first line of a
32102function, it will take you back to the caller of that function, to the
32103source line where the function was called.
32104
32105
922fbb7b
AC
32106@subsubheading @value{GDBN} Command
32107
32108The corresponding @value{GDBN} command is @samp{next}.
32109
32110@subsubheading Example
32111
32112@smallexample
32113-exec-next
32114^running
594fe323 32115(gdb)
922fbb7b 32116*stopped,reason="end-stepping-range",line="8",file="hello.c"
594fe323 32117(gdb)
922fbb7b
AC
32118@end smallexample
32119
32120
32121@subheading The @code{-exec-next-instruction} Command
32122@findex -exec-next-instruction
32123
32124@subsubheading Synopsis
32125
32126@smallexample
540aa8e7 32127 -exec-next-instruction [--reverse]
922fbb7b
AC
32128@end smallexample
32129
ef21caaf
NR
32130Executes one machine instruction. If the instruction is a function
32131call, continues until the function returns. If the program stops at an
32132instruction in the middle of a source line, the address will be
32133printed as well.
922fbb7b 32134
540aa8e7
MS
32135If the @samp{--reverse} option is specified, resumes reverse execution
32136of the inferior program, stopping at the previous instruction. If the
32137previously executed instruction was a return from another function,
32138it will continue to execute in reverse until the call to that function
32139(from the current stack frame) is reached.
32140
922fbb7b
AC
32141@subsubheading @value{GDBN} Command
32142
32143The corresponding @value{GDBN} command is @samp{nexti}.
32144
32145@subsubheading Example
32146
32147@smallexample
594fe323 32148(gdb)
922fbb7b
AC
32149-exec-next-instruction
32150^running
32151
594fe323 32152(gdb)
922fbb7b
AC
32153*stopped,reason="end-stepping-range",
32154addr="0x000100d4",line="5",file="hello.c"
594fe323 32155(gdb)
922fbb7b
AC
32156@end smallexample
32157
32158
32159@subheading The @code{-exec-return} Command
32160@findex -exec-return
32161
32162@subsubheading Synopsis
32163
32164@smallexample
32165 -exec-return
32166@end smallexample
32167
32168Makes current function return immediately. Doesn't execute the inferior.
32169Displays the new current frame.
32170
32171@subsubheading @value{GDBN} Command
32172
32173The corresponding @value{GDBN} command is @samp{return}.
32174
32175@subsubheading Example
32176
32177@smallexample
594fe323 32178(gdb)
922fbb7b
AC
32179200-break-insert callee4
32180200^done,bkpt=@{number="1",addr="0x00010734",
32181file="../../../devo/gdb/testsuite/gdb.mi/basics.c",line="8"@}
594fe323 32182(gdb)
922fbb7b
AC
32183000-exec-run
32184000^running
594fe323 32185(gdb)
a47ec5fe 32186000*stopped,reason="breakpoint-hit",disp="keep",bkptno="1",
922fbb7b 32187frame=@{func="callee4",args=[],
76ff342d 32188file="../../../devo/gdb/testsuite/gdb.mi/basics.c",
6d52907e
JV
32189fullname="/home/foo/bar/devo/gdb/testsuite/gdb.mi/basics.c",line="8",
32190arch="i386:x86_64"@}
594fe323 32191(gdb)
922fbb7b
AC
32192205-break-delete
32193205^done
594fe323 32194(gdb)
922fbb7b
AC
32195111-exec-return
32196111^done,frame=@{level="0",func="callee3",
32197args=[@{name="strarg",
32198value="0x11940 \"A string argument.\""@}],
76ff342d 32199file="../../../devo/gdb/testsuite/gdb.mi/basics.c",
6d52907e
JV
32200fullname="/home/foo/bar/devo/gdb/testsuite/gdb.mi/basics.c",line="18",
32201arch="i386:x86_64"@}
594fe323 32202(gdb)
922fbb7b
AC
32203@end smallexample
32204
32205
32206@subheading The @code{-exec-run} Command
32207@findex -exec-run
32208
32209@subsubheading Synopsis
32210
32211@smallexample
5713b9b5 32212 -exec-run [ --all | --thread-group N ] [ --start ]
922fbb7b
AC
32213@end smallexample
32214
ef21caaf
NR
32215Starts execution of the inferior from the beginning. The inferior
32216executes until either a breakpoint is encountered or the program
32217exits. In the latter case the output will include an exit code, if
32218the program has exited exceptionally.
922fbb7b 32219
5713b9b5
JB
32220When neither the @samp{--all} nor the @samp{--thread-group} option
32221is specified, the current inferior is started. If the
a79b8f6e
VP
32222@samp{--thread-group} option is specified, it should refer to a thread
32223group of type @samp{process}, and that thread group will be started.
32224If the @samp{--all} option is specified, then all inferiors will be started.
32225
5713b9b5
JB
32226Using the @samp{--start} option instructs the debugger to stop
32227the execution at the start of the inferior's main subprogram,
32228following the same behavior as the @code{start} command
32229(@pxref{Starting}).
32230
922fbb7b
AC
32231@subsubheading @value{GDBN} Command
32232
32233The corresponding @value{GDBN} command is @samp{run}.
32234
ef21caaf 32235@subsubheading Examples
922fbb7b
AC
32236
32237@smallexample
594fe323 32238(gdb)
922fbb7b
AC
32239-break-insert main
32240^done,bkpt=@{number="1",addr="0x0001072c",file="recursive2.c",line="4"@}
594fe323 32241(gdb)
922fbb7b
AC
32242-exec-run
32243^running
594fe323 32244(gdb)
a47ec5fe 32245*stopped,reason="breakpoint-hit",disp="keep",bkptno="1",
76ff342d 32246frame=@{func="main",args=[],file="recursive2.c",
6d52907e 32247fullname="/home/foo/bar/recursive2.c",line="4",arch="i386:x86_64"@}
594fe323 32248(gdb)
922fbb7b
AC
32249@end smallexample
32250
ef21caaf
NR
32251@noindent
32252Program exited normally:
32253
32254@smallexample
594fe323 32255(gdb)
ef21caaf
NR
32256-exec-run
32257^running
594fe323 32258(gdb)
ef21caaf
NR
32259x = 55
32260*stopped,reason="exited-normally"
594fe323 32261(gdb)
ef21caaf
NR
32262@end smallexample
32263
32264@noindent
32265Program exited exceptionally:
32266
32267@smallexample
594fe323 32268(gdb)
ef21caaf
NR
32269-exec-run
32270^running
594fe323 32271(gdb)
ef21caaf
NR
32272x = 55
32273*stopped,reason="exited",exit-code="01"
594fe323 32274(gdb)
ef21caaf
NR
32275@end smallexample
32276
32277Another way the program can terminate is if it receives a signal such as
32278@code{SIGINT}. In this case, @sc{gdb/mi} displays this:
32279
32280@smallexample
594fe323 32281(gdb)
ef21caaf
NR
32282*stopped,reason="exited-signalled",signal-name="SIGINT",
32283signal-meaning="Interrupt"
32284@end smallexample
32285
922fbb7b 32286
a2c02241
NR
32287@c @subheading -exec-signal
32288
32289
32290@subheading The @code{-exec-step} Command
32291@findex -exec-step
922fbb7b
AC
32292
32293@subsubheading Synopsis
32294
32295@smallexample
540aa8e7 32296 -exec-step [--reverse]
922fbb7b
AC
32297@end smallexample
32298
a2c02241
NR
32299Resumes execution of the inferior program, stopping when the beginning
32300of the next source line is reached, if the next source line is not a
32301function call. If it is, stop at the first instruction of the called
540aa8e7
MS
32302function. If the @samp{--reverse} option is specified, resumes reverse
32303execution of the inferior program, stopping at the beginning of the
32304previously executed source line.
922fbb7b
AC
32305
32306@subsubheading @value{GDBN} Command
32307
a2c02241 32308The corresponding @value{GDBN} command is @samp{step}.
922fbb7b
AC
32309
32310@subsubheading Example
32311
32312Stepping into a function:
32313
32314@smallexample
32315-exec-step
32316^running
594fe323 32317(gdb)
922fbb7b
AC
32318*stopped,reason="end-stepping-range",
32319frame=@{func="foo",args=[@{name="a",value="10"@},
76ff342d 32320@{name="b",value="0"@}],file="recursive2.c",
6d52907e 32321fullname="/home/foo/bar/recursive2.c",line="11",arch="i386:x86_64"@}
594fe323 32322(gdb)
922fbb7b
AC
32323@end smallexample
32324
32325Regular stepping:
32326
32327@smallexample
32328-exec-step
32329^running
594fe323 32330(gdb)
922fbb7b 32331*stopped,reason="end-stepping-range",line="14",file="recursive2.c"
594fe323 32332(gdb)
922fbb7b
AC
32333@end smallexample
32334
32335
32336@subheading The @code{-exec-step-instruction} Command
32337@findex -exec-step-instruction
32338
32339@subsubheading Synopsis
32340
32341@smallexample
540aa8e7 32342 -exec-step-instruction [--reverse]
922fbb7b
AC
32343@end smallexample
32344
540aa8e7
MS
32345Resumes the inferior which executes one machine instruction. If the
32346@samp{--reverse} option is specified, resumes reverse execution of the
32347inferior program, stopping at the previously executed instruction.
32348The output, once @value{GDBN} has stopped, will vary depending on
32349whether we have stopped in the middle of a source line or not. In the
32350former case, the address at which the program stopped will be printed
32351as well.
922fbb7b
AC
32352
32353@subsubheading @value{GDBN} Command
32354
32355The corresponding @value{GDBN} command is @samp{stepi}.
32356
32357@subsubheading Example
32358
32359@smallexample
594fe323 32360(gdb)
922fbb7b
AC
32361-exec-step-instruction
32362^running
32363
594fe323 32364(gdb)
922fbb7b 32365*stopped,reason="end-stepping-range",
76ff342d 32366frame=@{func="foo",args=[],file="try.c",
6d52907e 32367fullname="/home/foo/bar/try.c",line="10",arch="i386:x86_64"@}
594fe323 32368(gdb)
922fbb7b
AC
32369-exec-step-instruction
32370^running
32371
594fe323 32372(gdb)
922fbb7b 32373*stopped,reason="end-stepping-range",
76ff342d 32374frame=@{addr="0x000100f4",func="foo",args=[],file="try.c",
6d52907e 32375fullname="/home/foo/bar/try.c",line="10",arch="i386:x86_64"@}
594fe323 32376(gdb)
922fbb7b
AC
32377@end smallexample
32378
32379
32380@subheading The @code{-exec-until} Command
32381@findex -exec-until
32382
32383@subsubheading Synopsis
32384
32385@smallexample
32386 -exec-until [ @var{location} ]
32387@end smallexample
32388
ef21caaf
NR
32389Executes the inferior until the @var{location} specified in the
32390argument is reached. If there is no argument, the inferior executes
32391until a source line greater than the current one is reached. The
32392reason for stopping in this case will be @samp{location-reached}.
922fbb7b
AC
32393
32394@subsubheading @value{GDBN} Command
32395
32396The corresponding @value{GDBN} command is @samp{until}.
32397
32398@subsubheading Example
32399
32400@smallexample
594fe323 32401(gdb)
922fbb7b
AC
32402-exec-until recursive2.c:6
32403^running
594fe323 32404(gdb)
922fbb7b
AC
32405x = 55
32406*stopped,reason="location-reached",frame=@{func="main",args=[],
6d52907e
JV
32407file="recursive2.c",fullname="/home/foo/bar/recursive2.c",line="6",
32408arch="i386:x86_64"@}
594fe323 32409(gdb)
922fbb7b
AC
32410@end smallexample
32411
32412@ignore
32413@subheading -file-clear
32414Is this going away????
32415@end ignore
32416
351ff01a 32417@c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
a2c02241
NR
32418@node GDB/MI Stack Manipulation
32419@section @sc{gdb/mi} Stack Manipulation Commands
351ff01a 32420
1e611234
PM
32421@subheading The @code{-enable-frame-filters} Command
32422@findex -enable-frame-filters
32423
32424@smallexample
32425-enable-frame-filters
32426@end smallexample
32427
32428@value{GDBN} allows Python-based frame filters to affect the output of
32429the MI commands relating to stack traces. As there is no way to
32430implement this in a fully backward-compatible way, a front end must
32431request that this functionality be enabled.
32432
32433Once enabled, this feature cannot be disabled.
32434
32435Note that if Python support has not been compiled into @value{GDBN},
32436this command will still succeed (and do nothing).
922fbb7b 32437
a2c02241
NR
32438@subheading The @code{-stack-info-frame} Command
32439@findex -stack-info-frame
922fbb7b
AC
32440
32441@subsubheading Synopsis
32442
32443@smallexample
a2c02241 32444 -stack-info-frame
922fbb7b
AC
32445@end smallexample
32446
a2c02241 32447Get info on the selected frame.
922fbb7b
AC
32448
32449@subsubheading @value{GDBN} Command
32450
a2c02241
NR
32451The corresponding @value{GDBN} command is @samp{info frame} or @samp{frame}
32452(without arguments).
922fbb7b
AC
32453
32454@subsubheading Example
32455
32456@smallexample
594fe323 32457(gdb)
a2c02241
NR
32458-stack-info-frame
32459^done,frame=@{level="1",addr="0x0001076c",func="callee3",
32460file="../../../devo/gdb/testsuite/gdb.mi/basics.c",
6d52907e
JV
32461fullname="/home/foo/bar/devo/gdb/testsuite/gdb.mi/basics.c",line="17",
32462arch="i386:x86_64"@}
594fe323 32463(gdb)
922fbb7b
AC
32464@end smallexample
32465
a2c02241
NR
32466@subheading The @code{-stack-info-depth} Command
32467@findex -stack-info-depth
922fbb7b
AC
32468
32469@subsubheading Synopsis
32470
32471@smallexample
a2c02241 32472 -stack-info-depth [ @var{max-depth} ]
922fbb7b
AC
32473@end smallexample
32474
a2c02241
NR
32475Return the depth of the stack. If the integer argument @var{max-depth}
32476is specified, do not count beyond @var{max-depth} frames.
922fbb7b
AC
32477
32478@subsubheading @value{GDBN} Command
32479
a2c02241 32480There's no equivalent @value{GDBN} command.
922fbb7b
AC
32481
32482@subsubheading Example
32483
a2c02241
NR
32484For a stack with frame levels 0 through 11:
32485
922fbb7b 32486@smallexample
594fe323 32487(gdb)
a2c02241
NR
32488-stack-info-depth
32489^done,depth="12"
594fe323 32490(gdb)
a2c02241
NR
32491-stack-info-depth 4
32492^done,depth="4"
594fe323 32493(gdb)
a2c02241
NR
32494-stack-info-depth 12
32495^done,depth="12"
594fe323 32496(gdb)
a2c02241
NR
32497-stack-info-depth 11
32498^done,depth="11"
594fe323 32499(gdb)
a2c02241
NR
32500-stack-info-depth 13
32501^done,depth="12"
594fe323 32502(gdb)
922fbb7b
AC
32503@end smallexample
32504
1e611234 32505@anchor{-stack-list-arguments}
a2c02241
NR
32506@subheading The @code{-stack-list-arguments} Command
32507@findex -stack-list-arguments
922fbb7b
AC
32508
32509@subsubheading Synopsis
32510
32511@smallexample
6211c335 32512 -stack-list-arguments [ --no-frame-filters ] [ --skip-unavailable ] @var{print-values}
a2c02241 32513 [ @var{low-frame} @var{high-frame} ]
922fbb7b
AC
32514@end smallexample
32515
a2c02241
NR
32516Display a list of the arguments for the frames between @var{low-frame}
32517and @var{high-frame} (inclusive). If @var{low-frame} and
2f1acb09
VP
32518@var{high-frame} are not provided, list the arguments for the whole
32519call stack. If the two arguments are equal, show the single frame
32520at the corresponding level. It is an error if @var{low-frame} is
32521larger than the actual number of frames. On the other hand,
32522@var{high-frame} may be larger than the actual number of frames, in
32523which case only existing frames will be returned.
a2c02241 32524
3afae151
VP
32525If @var{print-values} is 0 or @code{--no-values}, print only the names of
32526the variables; if it is 1 or @code{--all-values}, print also their
32527values; and if it is 2 or @code{--simple-values}, print the name,
32528type and value for simple data types, and the name and type for arrays,
1e611234
PM
32529structures and unions. If the option @code{--no-frame-filters} is
32530supplied, then Python frame filters will not be executed.
32531
6211c335
YQ
32532If the @code{--skip-unavailable} option is specified, arguments that
32533are not available are not listed. Partially available arguments
32534are still displayed, however.
922fbb7b 32535
b3372f91
VP
32536Use of this command to obtain arguments in a single frame is
32537deprecated in favor of the @samp{-stack-list-variables} command.
32538
922fbb7b
AC
32539@subsubheading @value{GDBN} Command
32540
a2c02241
NR
32541@value{GDBN} does not have an equivalent command. @code{gdbtk} has a
32542@samp{gdb_get_args} command which partially overlaps with the
32543functionality of @samp{-stack-list-arguments}.
922fbb7b
AC
32544
32545@subsubheading Example
922fbb7b 32546
a2c02241 32547@smallexample
594fe323 32548(gdb)
a2c02241
NR
32549-stack-list-frames
32550^done,
32551stack=[
32552frame=@{level="0",addr="0x00010734",func="callee4",
32553file="../../../devo/gdb/testsuite/gdb.mi/basics.c",
6d52907e
JV
32554fullname="/home/foo/bar/devo/gdb/testsuite/gdb.mi/basics.c",line="8",
32555arch="i386:x86_64"@},
a2c02241
NR
32556frame=@{level="1",addr="0x0001076c",func="callee3",
32557file="../../../devo/gdb/testsuite/gdb.mi/basics.c",
6d52907e
JV
32558fullname="/home/foo/bar/devo/gdb/testsuite/gdb.mi/basics.c",line="17",
32559arch="i386:x86_64"@},
a2c02241
NR
32560frame=@{level="2",addr="0x0001078c",func="callee2",
32561file="../../../devo/gdb/testsuite/gdb.mi/basics.c",
6d52907e
JV
32562fullname="/home/foo/bar/devo/gdb/testsuite/gdb.mi/basics.c",line="22",
32563arch="i386:x86_64"@},
a2c02241
NR
32564frame=@{level="3",addr="0x000107b4",func="callee1",
32565file="../../../devo/gdb/testsuite/gdb.mi/basics.c",
6d52907e
JV
32566fullname="/home/foo/bar/devo/gdb/testsuite/gdb.mi/basics.c",line="27",
32567arch="i386:x86_64"@},
a2c02241
NR
32568frame=@{level="4",addr="0x000107e0",func="main",
32569file="../../../devo/gdb/testsuite/gdb.mi/basics.c",
6d52907e
JV
32570fullname="/home/foo/bar/devo/gdb/testsuite/gdb.mi/basics.c",line="32",
32571arch="i386:x86_64"@}]
594fe323 32572(gdb)
a2c02241
NR
32573-stack-list-arguments 0
32574^done,
32575stack-args=[
32576frame=@{level="0",args=[]@},
32577frame=@{level="1",args=[name="strarg"]@},
32578frame=@{level="2",args=[name="intarg",name="strarg"]@},
32579frame=@{level="3",args=[name="intarg",name="strarg",name="fltarg"]@},
32580frame=@{level="4",args=[]@}]
594fe323 32581(gdb)
a2c02241
NR
32582-stack-list-arguments 1
32583^done,
32584stack-args=[
32585frame=@{level="0",args=[]@},
32586frame=@{level="1",
32587 args=[@{name="strarg",value="0x11940 \"A string argument.\""@}]@},
32588frame=@{level="2",args=[
32589@{name="intarg",value="2"@},
32590@{name="strarg",value="0x11940 \"A string argument.\""@}]@},
32591@{frame=@{level="3",args=[
32592@{name="intarg",value="2"@},
32593@{name="strarg",value="0x11940 \"A string argument.\""@},
32594@{name="fltarg",value="3.5"@}]@},
32595frame=@{level="4",args=[]@}]
594fe323 32596(gdb)
a2c02241
NR
32597-stack-list-arguments 0 2 2
32598^done,stack-args=[frame=@{level="2",args=[name="intarg",name="strarg"]@}]
594fe323 32599(gdb)
a2c02241
NR
32600-stack-list-arguments 1 2 2
32601^done,stack-args=[frame=@{level="2",
32602args=[@{name="intarg",value="2"@},
32603@{name="strarg",value="0x11940 \"A string argument.\""@}]@}]
594fe323 32604(gdb)
a2c02241
NR
32605@end smallexample
32606
32607@c @subheading -stack-list-exception-handlers
922fbb7b 32608
a2c02241 32609
1e611234 32610@anchor{-stack-list-frames}
a2c02241
NR
32611@subheading The @code{-stack-list-frames} Command
32612@findex -stack-list-frames
1abaf70c
BR
32613
32614@subsubheading Synopsis
32615
32616@smallexample
1e611234 32617 -stack-list-frames [ --no-frame-filters @var{low-frame} @var{high-frame} ]
1abaf70c
BR
32618@end smallexample
32619
a2c02241
NR
32620List the frames currently on the stack. For each frame it displays the
32621following info:
32622
32623@table @samp
32624@item @var{level}
d3e8051b 32625The frame number, 0 being the topmost frame, i.e., the innermost function.
a2c02241
NR
32626@item @var{addr}
32627The @code{$pc} value for that frame.
32628@item @var{func}
32629Function name.
32630@item @var{file}
32631File name of the source file where the function lives.
7d288aaa
TT
32632@item @var{fullname}
32633The full file name of the source file where the function lives.
a2c02241
NR
32634@item @var{line}
32635Line number corresponding to the @code{$pc}.
7d288aaa
TT
32636@item @var{from}
32637The shared library where this function is defined. This is only given
32638if the frame's function is not known.
6d52907e
JV
32639@item @var{arch}
32640Frame's architecture.
a2c02241
NR
32641@end table
32642
32643If invoked without arguments, this command prints a backtrace for the
32644whole stack. If given two integer arguments, it shows the frames whose
32645levels are between the two arguments (inclusive). If the two arguments
2ab1eb7a
VP
32646are equal, it shows the single frame at the corresponding level. It is
32647an error if @var{low-frame} is larger than the actual number of
a5451f4e 32648frames. On the other hand, @var{high-frame} may be larger than the
1e611234
PM
32649actual number of frames, in which case only existing frames will be
32650returned. If the option @code{--no-frame-filters} is supplied, then
32651Python frame filters will not be executed.
1abaf70c
BR
32652
32653@subsubheading @value{GDBN} Command
32654
a2c02241 32655The corresponding @value{GDBN} commands are @samp{backtrace} and @samp{where}.
1abaf70c
BR
32656
32657@subsubheading Example
32658
a2c02241
NR
32659Full stack backtrace:
32660
1abaf70c 32661@smallexample
594fe323 32662(gdb)
a2c02241
NR
32663-stack-list-frames
32664^done,stack=
32665[frame=@{level="0",addr="0x0001076c",func="foo",
6d52907e
JV
32666 file="recursive2.c",fullname="/home/foo/bar/recursive2.c",line="11",
32667 arch="i386:x86_64"@},
a2c02241 32668frame=@{level="1",addr="0x000107a4",func="foo",
6d52907e
JV
32669 file="recursive2.c",fullname="/home/foo/bar/recursive2.c",line="14",
32670 arch="i386:x86_64"@},
a2c02241 32671frame=@{level="2",addr="0x000107a4",func="foo",
6d52907e
JV
32672 file="recursive2.c",fullname="/home/foo/bar/recursive2.c",line="14",
32673 arch="i386:x86_64"@},
a2c02241 32674frame=@{level="3",addr="0x000107a4",func="foo",
6d52907e
JV
32675 file="recursive2.c",fullname="/home/foo/bar/recursive2.c",line="14",
32676 arch="i386:x86_64"@},
a2c02241 32677frame=@{level="4",addr="0x000107a4",func="foo",
6d52907e
JV
32678 file="recursive2.c",fullname="/home/foo/bar/recursive2.c",line="14",
32679 arch="i386:x86_64"@},
a2c02241 32680frame=@{level="5",addr="0x000107a4",func="foo",
6d52907e
JV
32681 file="recursive2.c",fullname="/home/foo/bar/recursive2.c",line="14",
32682 arch="i386:x86_64"@},
a2c02241 32683frame=@{level="6",addr="0x000107a4",func="foo",
6d52907e
JV
32684 file="recursive2.c",fullname="/home/foo/bar/recursive2.c",line="14",
32685 arch="i386:x86_64"@},
a2c02241 32686frame=@{level="7",addr="0x000107a4",func="foo",
6d52907e
JV
32687 file="recursive2.c",fullname="/home/foo/bar/recursive2.c",line="14",
32688 arch="i386:x86_64"@},
a2c02241 32689frame=@{level="8",addr="0x000107a4",func="foo",
6d52907e
JV
32690 file="recursive2.c",fullname="/home/foo/bar/recursive2.c",line="14",
32691 arch="i386:x86_64"@},
a2c02241 32692frame=@{level="9",addr="0x000107a4",func="foo",
6d52907e
JV
32693 file="recursive2.c",fullname="/home/foo/bar/recursive2.c",line="14",
32694 arch="i386:x86_64"@},
a2c02241 32695frame=@{level="10",addr="0x000107a4",func="foo",
6d52907e
JV
32696 file="recursive2.c",fullname="/home/foo/bar/recursive2.c",line="14",
32697 arch="i386:x86_64"@},
a2c02241 32698frame=@{level="11",addr="0x00010738",func="main",
6d52907e
JV
32699 file="recursive2.c",fullname="/home/foo/bar/recursive2.c",line="4",
32700 arch="i386:x86_64"@}]
594fe323 32701(gdb)
1abaf70c
BR
32702@end smallexample
32703
a2c02241 32704Show frames between @var{low_frame} and @var{high_frame}:
1abaf70c 32705
a2c02241 32706@smallexample
594fe323 32707(gdb)
a2c02241
NR
32708-stack-list-frames 3 5
32709^done,stack=
32710[frame=@{level="3",addr="0x000107a4",func="foo",
6d52907e
JV
32711 file="recursive2.c",fullname="/home/foo/bar/recursive2.c",line="14",
32712 arch="i386:x86_64"@},
a2c02241 32713frame=@{level="4",addr="0x000107a4",func="foo",
6d52907e
JV
32714 file="recursive2.c",fullname="/home/foo/bar/recursive2.c",line="14",
32715 arch="i386:x86_64"@},
a2c02241 32716frame=@{level="5",addr="0x000107a4",func="foo",
6d52907e
JV
32717 file="recursive2.c",fullname="/home/foo/bar/recursive2.c",line="14",
32718 arch="i386:x86_64"@}]
594fe323 32719(gdb)
a2c02241 32720@end smallexample
922fbb7b 32721
a2c02241 32722Show a single frame:
922fbb7b
AC
32723
32724@smallexample
594fe323 32725(gdb)
a2c02241
NR
32726-stack-list-frames 3 3
32727^done,stack=
32728[frame=@{level="3",addr="0x000107a4",func="foo",
6d52907e
JV
32729 file="recursive2.c",fullname="/home/foo/bar/recursive2.c",line="14",
32730 arch="i386:x86_64"@}]
594fe323 32731(gdb)
922fbb7b
AC
32732@end smallexample
32733
922fbb7b 32734
a2c02241
NR
32735@subheading The @code{-stack-list-locals} Command
32736@findex -stack-list-locals
1e611234 32737@anchor{-stack-list-locals}
57c22c6c 32738
a2c02241 32739@subsubheading Synopsis
922fbb7b
AC
32740
32741@smallexample
6211c335 32742 -stack-list-locals [ --no-frame-filters ] [ --skip-unavailable ] @var{print-values}
922fbb7b
AC
32743@end smallexample
32744
a2c02241
NR
32745Display the local variable names for the selected frame. If
32746@var{print-values} is 0 or @code{--no-values}, print only the names of
32747the variables; if it is 1 or @code{--all-values}, print also their
32748values; and if it is 2 or @code{--simple-values}, print the name,
3afae151 32749type and value for simple data types, and the name and type for arrays,
a2c02241
NR
32750structures and unions. In this last case, a frontend can immediately
32751display the value of simple data types and create variable objects for
d3e8051b 32752other data types when the user wishes to explore their values in
1e611234
PM
32753more detail. If the option @code{--no-frame-filters} is supplied, then
32754Python frame filters will not be executed.
922fbb7b 32755
6211c335
YQ
32756If the @code{--skip-unavailable} option is specified, local variables
32757that are not available are not listed. Partially available local
32758variables are still displayed, however.
32759
b3372f91
VP
32760This command is deprecated in favor of the
32761@samp{-stack-list-variables} command.
32762
922fbb7b
AC
32763@subsubheading @value{GDBN} Command
32764
a2c02241 32765@samp{info locals} in @value{GDBN}, @samp{gdb_get_locals} in @code{gdbtk}.
922fbb7b
AC
32766
32767@subsubheading Example
922fbb7b
AC
32768
32769@smallexample
594fe323 32770(gdb)
a2c02241
NR
32771-stack-list-locals 0
32772^done,locals=[name="A",name="B",name="C"]
594fe323 32773(gdb)
a2c02241
NR
32774-stack-list-locals --all-values
32775^done,locals=[@{name="A",value="1"@},@{name="B",value="2"@},
32776 @{name="C",value="@{1, 2, 3@}"@}]
32777-stack-list-locals --simple-values
32778^done,locals=[@{name="A",type="int",value="1"@},
32779 @{name="B",type="int",value="2"@},@{name="C",type="int [3]"@}]
594fe323 32780(gdb)
922fbb7b
AC
32781@end smallexample
32782
1e611234 32783@anchor{-stack-list-variables}
b3372f91
VP
32784@subheading The @code{-stack-list-variables} Command
32785@findex -stack-list-variables
32786
32787@subsubheading Synopsis
32788
32789@smallexample
6211c335 32790 -stack-list-variables [ --no-frame-filters ] [ --skip-unavailable ] @var{print-values}
b3372f91
VP
32791@end smallexample
32792
32793Display the names of local variables and function arguments for the selected frame. If
32794@var{print-values} is 0 or @code{--no-values}, print only the names of
32795the variables; if it is 1 or @code{--all-values}, print also their
32796values; and if it is 2 or @code{--simple-values}, print the name,
3afae151 32797type and value for simple data types, and the name and type for arrays,
1e611234
PM
32798structures and unions. If the option @code{--no-frame-filters} is
32799supplied, then Python frame filters will not be executed.
b3372f91 32800
6211c335
YQ
32801If the @code{--skip-unavailable} option is specified, local variables
32802and arguments that are not available are not listed. Partially
32803available arguments and local variables are still displayed, however.
32804
b3372f91
VP
32805@subsubheading Example
32806
32807@smallexample
32808(gdb)
32809-stack-list-variables --thread 1 --frame 0 --all-values
4f412fd0 32810^done,variables=[@{name="x",value="11"@},@{name="s",value="@{a = 1, b = 2@}"@}]
b3372f91
VP
32811(gdb)
32812@end smallexample
32813
922fbb7b 32814
a2c02241
NR
32815@subheading The @code{-stack-select-frame} Command
32816@findex -stack-select-frame
922fbb7b
AC
32817
32818@subsubheading Synopsis
32819
32820@smallexample
a2c02241 32821 -stack-select-frame @var{framenum}
922fbb7b
AC
32822@end smallexample
32823
a2c02241
NR
32824Change the selected frame. Select a different frame @var{framenum} on
32825the stack.
922fbb7b 32826
c3b108f7
VP
32827This command in deprecated in favor of passing the @samp{--frame}
32828option to every command.
32829
922fbb7b
AC
32830@subsubheading @value{GDBN} Command
32831
a2c02241
NR
32832The corresponding @value{GDBN} commands are @samp{frame}, @samp{up},
32833@samp{down}, @samp{select-frame}, @samp{up-silent}, and @samp{down-silent}.
922fbb7b
AC
32834
32835@subsubheading Example
32836
32837@smallexample
594fe323 32838(gdb)
a2c02241 32839-stack-select-frame 2
922fbb7b 32840^done
594fe323 32841(gdb)
922fbb7b
AC
32842@end smallexample
32843
32844@c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
a2c02241
NR
32845@node GDB/MI Variable Objects
32846@section @sc{gdb/mi} Variable Objects
922fbb7b 32847
a1b5960f 32848@ignore
922fbb7b 32849
a2c02241 32850@subheading Motivation for Variable Objects in @sc{gdb/mi}
922fbb7b 32851
a2c02241
NR
32852For the implementation of a variable debugger window (locals, watched
32853expressions, etc.), we are proposing the adaptation of the existing code
32854used by @code{Insight}.
922fbb7b 32855
a2c02241 32856The two main reasons for that are:
922fbb7b 32857
a2c02241
NR
32858@enumerate 1
32859@item
32860It has been proven in practice (it is already on its second generation).
922fbb7b 32861
a2c02241
NR
32862@item
32863It will shorten development time (needless to say how important it is
32864now).
32865@end enumerate
922fbb7b 32866
a2c02241
NR
32867The original interface was designed to be used by Tcl code, so it was
32868slightly changed so it could be used through @sc{gdb/mi}. This section
32869describes the @sc{gdb/mi} operations that will be available and gives some
32870hints about their use.
922fbb7b 32871
a2c02241
NR
32872@emph{Note}: In addition to the set of operations described here, we
32873expect the @sc{gui} implementation of a variable window to require, at
32874least, the following operations:
922fbb7b 32875
a2c02241
NR
32876@itemize @bullet
32877@item @code{-gdb-show} @code{output-radix}
32878@item @code{-stack-list-arguments}
32879@item @code{-stack-list-locals}
32880@item @code{-stack-select-frame}
32881@end itemize
922fbb7b 32882
a1b5960f
VP
32883@end ignore
32884
c8b2f53c 32885@subheading Introduction to Variable Objects
922fbb7b 32886
a2c02241 32887@cindex variable objects in @sc{gdb/mi}
c8b2f53c
VP
32888
32889Variable objects are "object-oriented" MI interface for examining and
32890changing values of expressions. Unlike some other MI interfaces that
32891work with expressions, variable objects are specifically designed for
32892simple and efficient presentation in the frontend. A variable object
32893is identified by string name. When a variable object is created, the
32894frontend specifies the expression for that variable object. The
32895expression can be a simple variable, or it can be an arbitrary complex
32896expression, and can even involve CPU registers. After creating a
32897variable object, the frontend can invoke other variable object
32898operations---for example to obtain or change the value of a variable
32899object, or to change display format.
32900
32901Variable objects have hierarchical tree structure. Any variable object
32902that corresponds to a composite type, such as structure in C, has
32903a number of child variable objects, for example corresponding to each
32904element of a structure. A child variable object can itself have
32905children, recursively. Recursion ends when we reach
25d5ea92
VP
32906leaf variable objects, which always have built-in types. Child variable
32907objects are created only by explicit request, so if a frontend
32908is not interested in the children of a particular variable object, no
32909child will be created.
c8b2f53c
VP
32910
32911For a leaf variable object it is possible to obtain its value as a
32912string, or set the value from a string. String value can be also
32913obtained for a non-leaf variable object, but it's generally a string
32914that only indicates the type of the object, and does not list its
32915contents. Assignment to a non-leaf variable object is not allowed.
32916
32917A frontend does not need to read the values of all variable objects each time
32918the program stops. Instead, MI provides an update command that lists all
32919variable objects whose values has changed since the last update
32920operation. This considerably reduces the amount of data that must
25d5ea92
VP
32921be transferred to the frontend. As noted above, children variable
32922objects are created on demand, and only leaf variable objects have a
32923real value. As result, gdb will read target memory only for leaf
32924variables that frontend has created.
32925
32926The automatic update is not always desirable. For example, a frontend
32927might want to keep a value of some expression for future reference,
32928and never update it. For another example, fetching memory is
32929relatively slow for embedded targets, so a frontend might want
32930to disable automatic update for the variables that are either not
32931visible on the screen, or ``closed''. This is possible using so
32932called ``frozen variable objects''. Such variable objects are never
32933implicitly updated.
922fbb7b 32934
c3b108f7
VP
32935Variable objects can be either @dfn{fixed} or @dfn{floating}. For the
32936fixed variable object, the expression is parsed when the variable
32937object is created, including associating identifiers to specific
32938variables. The meaning of expression never changes. For a floating
32939variable object the values of variables whose names appear in the
32940expressions are re-evaluated every time in the context of the current
32941frame. Consider this example:
32942
32943@smallexample
32944void do_work(...)
32945@{
32946 struct work_state state;
32947
32948 if (...)
32949 do_work(...);
32950@}
32951@end smallexample
32952
32953If a fixed variable object for the @code{state} variable is created in
7a9dd1b2 32954this function, and we enter the recursive call, the variable
c3b108f7
VP
32955object will report the value of @code{state} in the top-level
32956@code{do_work} invocation. On the other hand, a floating variable
32957object will report the value of @code{state} in the current frame.
32958
32959If an expression specified when creating a fixed variable object
32960refers to a local variable, the variable object becomes bound to the
32961thread and frame in which the variable object is created. When such
32962variable object is updated, @value{GDBN} makes sure that the
32963thread/frame combination the variable object is bound to still exists,
32964and re-evaluates the variable object in context of that thread/frame.
32965
a2c02241
NR
32966The following is the complete set of @sc{gdb/mi} operations defined to
32967access this functionality:
922fbb7b 32968
a2c02241
NR
32969@multitable @columnfractions .4 .6
32970@item @strong{Operation}
32971@tab @strong{Description}
922fbb7b 32972
0cc7d26f
TT
32973@item @code{-enable-pretty-printing}
32974@tab enable Python-based pretty-printing
a2c02241
NR
32975@item @code{-var-create}
32976@tab create a variable object
32977@item @code{-var-delete}
22d8a470 32978@tab delete the variable object and/or its children
a2c02241
NR
32979@item @code{-var-set-format}
32980@tab set the display format of this variable
32981@item @code{-var-show-format}
32982@tab show the display format of this variable
32983@item @code{-var-info-num-children}
32984@tab tells how many children this object has
32985@item @code{-var-list-children}
32986@tab return a list of the object's children
32987@item @code{-var-info-type}
32988@tab show the type of this variable object
32989@item @code{-var-info-expression}
02142340
VP
32990@tab print parent-relative expression that this variable object represents
32991@item @code{-var-info-path-expression}
32992@tab print full expression that this variable object represents
a2c02241
NR
32993@item @code{-var-show-attributes}
32994@tab is this variable editable? does it exist here?
32995@item @code{-var-evaluate-expression}
32996@tab get the value of this variable
32997@item @code{-var-assign}
32998@tab set the value of this variable
32999@item @code{-var-update}
33000@tab update the variable and its children
25d5ea92 33001@item @code{-var-set-frozen}
6b92c0d3 33002@tab set frozenness attribute
0cc7d26f
TT
33003@item @code{-var-set-update-range}
33004@tab set range of children to display on update
a2c02241 33005@end multitable
922fbb7b 33006
a2c02241
NR
33007In the next subsection we describe each operation in detail and suggest
33008how it can be used.
922fbb7b 33009
a2c02241 33010@subheading Description And Use of Operations on Variable Objects
922fbb7b 33011
0cc7d26f
TT
33012@subheading The @code{-enable-pretty-printing} Command
33013@findex -enable-pretty-printing
33014
33015@smallexample
33016-enable-pretty-printing
33017@end smallexample
33018
33019@value{GDBN} allows Python-based visualizers to affect the output of the
33020MI variable object commands. However, because there was no way to
33021implement this in a fully backward-compatible way, a front end must
33022request that this functionality be enabled.
33023
33024Once enabled, this feature cannot be disabled.
33025
33026Note that if Python support has not been compiled into @value{GDBN},
33027this command will still succeed (and do nothing).
33028
f43030c4
TT
33029This feature is currently (as of @value{GDBN} 7.0) experimental, and
33030may work differently in future versions of @value{GDBN}.
33031
a2c02241
NR
33032@subheading The @code{-var-create} Command
33033@findex -var-create
ef21caaf 33034
a2c02241 33035@subsubheading Synopsis
ef21caaf 33036
a2c02241
NR
33037@smallexample
33038 -var-create @{@var{name} | "-"@}
c3b108f7 33039 @{@var{frame-addr} | "*" | "@@"@} @var{expression}
a2c02241
NR
33040@end smallexample
33041
33042This operation creates a variable object, which allows the monitoring of
33043a variable, the result of an expression, a memory cell or a CPU
33044register.
ef21caaf 33045
a2c02241
NR
33046The @var{name} parameter is the string by which the object can be
33047referenced. It must be unique. If @samp{-} is specified, the varobj
33048system will generate a string ``varNNNNNN'' automatically. It will be
c3b108f7 33049unique provided that one does not specify @var{name} of that format.
a2c02241 33050The command fails if a duplicate name is found.
ef21caaf 33051
a2c02241
NR
33052The frame under which the expression should be evaluated can be
33053specified by @var{frame-addr}. A @samp{*} indicates that the current
c3b108f7
VP
33054frame should be used. A @samp{@@} indicates that a floating variable
33055object must be created.
922fbb7b 33056
a2c02241
NR
33057@var{expression} is any expression valid on the current language set (must not
33058begin with a @samp{*}), or one of the following:
922fbb7b 33059
a2c02241
NR
33060@itemize @bullet
33061@item
33062@samp{*@var{addr}}, where @var{addr} is the address of a memory cell
922fbb7b 33063
a2c02241
NR
33064@item
33065@samp{*@var{addr}-@var{addr}} --- a memory address range (TBD)
922fbb7b 33066
a2c02241
NR
33067@item
33068@samp{$@var{regname}} --- a CPU register name
33069@end itemize
922fbb7b 33070
0cc7d26f
TT
33071@cindex dynamic varobj
33072A varobj's contents may be provided by a Python-based pretty-printer. In this
33073case the varobj is known as a @dfn{dynamic varobj}. Dynamic varobjs
33074have slightly different semantics in some cases. If the
33075@code{-enable-pretty-printing} command is not sent, then @value{GDBN}
33076will never create a dynamic varobj. This ensures backward
33077compatibility for existing clients.
33078
a2c02241 33079@subsubheading Result
922fbb7b 33080
0cc7d26f
TT
33081This operation returns attributes of the newly-created varobj. These
33082are:
33083
33084@table @samp
33085@item name
33086The name of the varobj.
33087
33088@item numchild
33089The number of children of the varobj. This number is not necessarily
33090reliable for a dynamic varobj. Instead, you must examine the
33091@samp{has_more} attribute.
33092
33093@item value
33094The varobj's scalar value. For a varobj whose type is some sort of
33095aggregate (e.g., a @code{struct}), or for a dynamic varobj, this value
33096will not be interesting.
33097
33098@item type
33099The varobj's type. This is a string representation of the type, as
8264ba82
AG
33100would be printed by the @value{GDBN} CLI. If @samp{print object}
33101(@pxref{Print Settings, set print object}) is set to @code{on}, the
33102@emph{actual} (derived) type of the object is shown rather than the
33103@emph{declared} one.
0cc7d26f
TT
33104
33105@item thread-id
33106If a variable object is bound to a specific thread, then this is the
5d5658a1 33107thread's global identifier.
0cc7d26f
TT
33108
33109@item has_more
33110For a dynamic varobj, this indicates whether there appear to be any
33111children available. For a non-dynamic varobj, this will be 0.
33112
33113@item dynamic
33114This attribute will be present and have the value @samp{1} if the
33115varobj is a dynamic varobj. If the varobj is not a dynamic varobj,
33116then this attribute will not be present.
33117
33118@item displayhint
33119A dynamic varobj can supply a display hint to the front end. The
33120value comes directly from the Python pretty-printer object's
4c374409 33121@code{display_hint} method. @xref{Pretty Printing API}.
0cc7d26f
TT
33122@end table
33123
33124Typical output will look like this:
922fbb7b
AC
33125
33126@smallexample
0cc7d26f
TT
33127 name="@var{name}",numchild="@var{N}",type="@var{type}",thread-id="@var{M}",
33128 has_more="@var{has_more}"
dcaaae04
NR
33129@end smallexample
33130
a2c02241
NR
33131
33132@subheading The @code{-var-delete} Command
33133@findex -var-delete
922fbb7b
AC
33134
33135@subsubheading Synopsis
33136
33137@smallexample
22d8a470 33138 -var-delete [ -c ] @var{name}
922fbb7b
AC
33139@end smallexample
33140
a2c02241 33141Deletes a previously created variable object and all of its children.
22d8a470 33142With the @samp{-c} option, just deletes the children.
922fbb7b 33143
a2c02241 33144Returns an error if the object @var{name} is not found.
922fbb7b 33145
922fbb7b 33146
a2c02241
NR
33147@subheading The @code{-var-set-format} Command
33148@findex -var-set-format
922fbb7b 33149
a2c02241 33150@subsubheading Synopsis
922fbb7b
AC
33151
33152@smallexample
a2c02241 33153 -var-set-format @var{name} @var{format-spec}
922fbb7b
AC
33154@end smallexample
33155
a2c02241
NR
33156Sets the output format for the value of the object @var{name} to be
33157@var{format-spec}.
33158
de051565 33159@anchor{-var-set-format}
a2c02241
NR
33160The syntax for the @var{format-spec} is as follows:
33161
33162@smallexample
33163 @var{format-spec} @expansion{}
1c35a88f 33164 @{binary | decimal | hexadecimal | octal | natural | zero-hexadecimal@}
a2c02241
NR
33165@end smallexample
33166
c8b2f53c
VP
33167The natural format is the default format choosen automatically
33168based on the variable type (like decimal for an @code{int}, hex
33169for pointers, etc.).
33170
1c35a88f
LM
33171The zero-hexadecimal format has a representation similar to hexadecimal
33172but with padding zeroes to the left of the value. For example, a 32-bit
33173hexadecimal value of 0x1234 would be represented as 0x00001234 in the
33174zero-hexadecimal format.
33175
c8b2f53c
VP
33176For a variable with children, the format is set only on the
33177variable itself, and the children are not affected.
a2c02241
NR
33178
33179@subheading The @code{-var-show-format} Command
33180@findex -var-show-format
922fbb7b
AC
33181
33182@subsubheading Synopsis
33183
33184@smallexample
a2c02241 33185 -var-show-format @var{name}
922fbb7b
AC
33186@end smallexample
33187
a2c02241 33188Returns the format used to display the value of the object @var{name}.
922fbb7b 33189
a2c02241
NR
33190@smallexample
33191 @var{format} @expansion{}
33192 @var{format-spec}
33193@end smallexample
922fbb7b 33194
922fbb7b 33195
a2c02241
NR
33196@subheading The @code{-var-info-num-children} Command
33197@findex -var-info-num-children
33198
33199@subsubheading Synopsis
33200
33201@smallexample
33202 -var-info-num-children @var{name}
33203@end smallexample
33204
33205Returns the number of children of a variable object @var{name}:
33206
33207@smallexample
33208 numchild=@var{n}
33209@end smallexample
33210
0cc7d26f
TT
33211Note that this number is not completely reliable for a dynamic varobj.
33212It will return the current number of children, but more children may
33213be available.
33214
a2c02241
NR
33215
33216@subheading The @code{-var-list-children} Command
33217@findex -var-list-children
33218
33219@subsubheading Synopsis
33220
33221@smallexample
0cc7d26f 33222 -var-list-children [@var{print-values}] @var{name} [@var{from} @var{to}]
a2c02241 33223@end smallexample
b569d230 33224@anchor{-var-list-children}
a2c02241
NR
33225
33226Return a list of the children of the specified variable object and
33227create variable objects for them, if they do not already exist. With
f5011d11 33228a single argument or if @var{print-values} has a value of 0 or
a2c02241
NR
33229@code{--no-values}, print only the names of the variables; if
33230@var{print-values} is 1 or @code{--all-values}, also print their
33231values; and if it is 2 or @code{--simple-values} print the name and
33232value for simple data types and just the name for arrays, structures
33233and unions.
922fbb7b 33234
0cc7d26f
TT
33235@var{from} and @var{to}, if specified, indicate the range of children
33236to report. If @var{from} or @var{to} is less than zero, the range is
33237reset and all children will be reported. Otherwise, children starting
33238at @var{from} (zero-based) and up to and excluding @var{to} will be
33239reported.
33240
33241If a child range is requested, it will only affect the current call to
33242@code{-var-list-children}, but not future calls to @code{-var-update}.
33243For this, you must instead use @code{-var-set-update-range}. The
33244intent of this approach is to enable a front end to implement any
33245update approach it likes; for example, scrolling a view may cause the
33246front end to request more children with @code{-var-list-children}, and
33247then the front end could call @code{-var-set-update-range} with a
33248different range to ensure that future updates are restricted to just
33249the visible items.
33250
b569d230
EZ
33251For each child the following results are returned:
33252
33253@table @var
33254
33255@item name
33256Name of the variable object created for this child.
33257
33258@item exp
33259The expression to be shown to the user by the front end to designate this child.
33260For example this may be the name of a structure member.
33261
0cc7d26f
TT
33262For a dynamic varobj, this value cannot be used to form an
33263expression. There is no way to do this at all with a dynamic varobj.
33264
b569d230
EZ
33265For C/C@t{++} structures there are several pseudo children returned to
33266designate access qualifiers. For these pseudo children @var{exp} is
33267@samp{public}, @samp{private}, or @samp{protected}. In this case the
33268type and value are not present.
33269
0cc7d26f
TT
33270A dynamic varobj will not report the access qualifying
33271pseudo-children, regardless of the language. This information is not
33272available at all with a dynamic varobj.
33273
b569d230 33274@item numchild
0cc7d26f
TT
33275Number of children this child has. For a dynamic varobj, this will be
332760.
b569d230
EZ
33277
33278@item type
8264ba82
AG
33279The type of the child. If @samp{print object}
33280(@pxref{Print Settings, set print object}) is set to @code{on}, the
33281@emph{actual} (derived) type of the object is shown rather than the
33282@emph{declared} one.
b569d230
EZ
33283
33284@item value
33285If values were requested, this is the value.
33286
33287@item thread-id
5d5658a1
PA
33288If this variable object is associated with a thread, this is the
33289thread's global thread id. Otherwise this result is not present.
b569d230
EZ
33290
33291@item frozen
33292If the variable object is frozen, this variable will be present with a value of 1.
c78feb39 33293
9df9dbe0
YQ
33294@item displayhint
33295A dynamic varobj can supply a display hint to the front end. The
33296value comes directly from the Python pretty-printer object's
33297@code{display_hint} method. @xref{Pretty Printing API}.
33298
c78feb39
YQ
33299@item dynamic
33300This attribute will be present and have the value @samp{1} if the
33301varobj is a dynamic varobj. If the varobj is not a dynamic varobj,
33302then this attribute will not be present.
33303
b569d230
EZ
33304@end table
33305
0cc7d26f
TT
33306The result may have its own attributes:
33307
33308@table @samp
33309@item displayhint
33310A dynamic varobj can supply a display hint to the front end. The
33311value comes directly from the Python pretty-printer object's
4c374409 33312@code{display_hint} method. @xref{Pretty Printing API}.
0cc7d26f
TT
33313
33314@item has_more
33315This is an integer attribute which is nonzero if there are children
33316remaining after the end of the selected range.
33317@end table
33318
922fbb7b
AC
33319@subsubheading Example
33320
33321@smallexample
594fe323 33322(gdb)
a2c02241 33323 -var-list-children n
b569d230 33324 ^done,numchild=@var{n},children=[child=@{name=@var{name},exp=@var{exp},
a2c02241 33325 numchild=@var{n},type=@var{type}@},@r{(repeats N times)}]
594fe323 33326(gdb)
a2c02241 33327 -var-list-children --all-values n
b569d230 33328 ^done,numchild=@var{n},children=[child=@{name=@var{name},exp=@var{exp},
a2c02241 33329 numchild=@var{n},value=@var{value},type=@var{type}@},@r{(repeats N times)}]
922fbb7b
AC
33330@end smallexample
33331
922fbb7b 33332
a2c02241
NR
33333@subheading The @code{-var-info-type} Command
33334@findex -var-info-type
922fbb7b 33335
a2c02241
NR
33336@subsubheading Synopsis
33337
33338@smallexample
33339 -var-info-type @var{name}
33340@end smallexample
33341
33342Returns the type of the specified variable @var{name}. The type is
33343returned as a string in the same format as it is output by the
33344@value{GDBN} CLI:
33345
33346@smallexample
33347 type=@var{typename}
33348@end smallexample
33349
33350
33351@subheading The @code{-var-info-expression} Command
33352@findex -var-info-expression
922fbb7b
AC
33353
33354@subsubheading Synopsis
33355
33356@smallexample
a2c02241 33357 -var-info-expression @var{name}
922fbb7b
AC
33358@end smallexample
33359
02142340
VP
33360Returns a string that is suitable for presenting this
33361variable object in user interface. The string is generally
33362not valid expression in the current language, and cannot be evaluated.
33363
33364For example, if @code{a} is an array, and variable object
33365@code{A} was created for @code{a}, then we'll get this output:
922fbb7b 33366
a2c02241 33367@smallexample
02142340
VP
33368(gdb) -var-info-expression A.1
33369^done,lang="C",exp="1"
a2c02241 33370@end smallexample
922fbb7b 33371
a2c02241 33372@noindent
fa4d0c40
YQ
33373Here, the value of @code{lang} is the language name, which can be
33374found in @ref{Supported Languages}.
02142340
VP
33375
33376Note that the output of the @code{-var-list-children} command also
33377includes those expressions, so the @code{-var-info-expression} command
33378is of limited use.
33379
33380@subheading The @code{-var-info-path-expression} Command
33381@findex -var-info-path-expression
33382
33383@subsubheading Synopsis
33384
33385@smallexample
33386 -var-info-path-expression @var{name}
33387@end smallexample
33388
33389Returns an expression that can be evaluated in the current
33390context and will yield the same value that a variable object has.
33391Compare this with the @code{-var-info-expression} command, which
33392result can be used only for UI presentation. Typical use of
33393the @code{-var-info-path-expression} command is creating a
33394watchpoint from a variable object.
33395
0cc7d26f
TT
33396This command is currently not valid for children of a dynamic varobj,
33397and will give an error when invoked on one.
33398
02142340
VP
33399For example, suppose @code{C} is a C@t{++} class, derived from class
33400@code{Base}, and that the @code{Base} class has a member called
33401@code{m_size}. Assume a variable @code{c} is has the type of
33402@code{C} and a variable object @code{C} was created for variable
33403@code{c}. Then, we'll get this output:
33404@smallexample
33405(gdb) -var-info-path-expression C.Base.public.m_size
33406^done,path_expr=((Base)c).m_size)
33407@end smallexample
922fbb7b 33408
a2c02241
NR
33409@subheading The @code{-var-show-attributes} Command
33410@findex -var-show-attributes
922fbb7b 33411
a2c02241 33412@subsubheading Synopsis
922fbb7b 33413
a2c02241
NR
33414@smallexample
33415 -var-show-attributes @var{name}
33416@end smallexample
922fbb7b 33417
a2c02241 33418List attributes of the specified variable object @var{name}:
922fbb7b
AC
33419
33420@smallexample
a2c02241 33421 status=@var{attr} [ ( ,@var{attr} )* ]
922fbb7b
AC
33422@end smallexample
33423
a2c02241
NR
33424@noindent
33425where @var{attr} is @code{@{ @{ editable | noneditable @} | TBD @}}.
33426
33427@subheading The @code{-var-evaluate-expression} Command
33428@findex -var-evaluate-expression
33429
33430@subsubheading Synopsis
33431
33432@smallexample
de051565 33433 -var-evaluate-expression [-f @var{format-spec}] @var{name}
a2c02241
NR
33434@end smallexample
33435
33436Evaluates the expression that is represented by the specified variable
de051565
MK
33437object and returns its value as a string. The format of the string
33438can be specified with the @samp{-f} option. The possible values of
33439this option are the same as for @code{-var-set-format}
33440(@pxref{-var-set-format}). If the @samp{-f} option is not specified,
33441the current display format will be used. The current display format
33442can be changed using the @code{-var-set-format} command.
a2c02241
NR
33443
33444@smallexample
33445 value=@var{value}
33446@end smallexample
33447
33448Note that one must invoke @code{-var-list-children} for a variable
33449before the value of a child variable can be evaluated.
33450
33451@subheading The @code{-var-assign} Command
33452@findex -var-assign
33453
33454@subsubheading Synopsis
33455
33456@smallexample
33457 -var-assign @var{name} @var{expression}
33458@end smallexample
33459
33460Assigns the value of @var{expression} to the variable object specified
33461by @var{name}. The object must be @samp{editable}. If the variable's
33462value is altered by the assign, the variable will show up in any
33463subsequent @code{-var-update} list.
33464
33465@subsubheading Example
922fbb7b
AC
33466
33467@smallexample
594fe323 33468(gdb)
a2c02241
NR
33469-var-assign var1 3
33470^done,value="3"
594fe323 33471(gdb)
a2c02241
NR
33472-var-update *
33473^done,changelist=[@{name="var1",in_scope="true",type_changed="false"@}]
594fe323 33474(gdb)
922fbb7b
AC
33475@end smallexample
33476
a2c02241
NR
33477@subheading The @code{-var-update} Command
33478@findex -var-update
33479
33480@subsubheading Synopsis
33481
33482@smallexample
33483 -var-update [@var{print-values}] @{@var{name} | "*"@}
33484@end smallexample
33485
c8b2f53c
VP
33486Reevaluate the expressions corresponding to the variable object
33487@var{name} and all its direct and indirect children, and return the
36ece8b3
NR
33488list of variable objects whose values have changed; @var{name} must
33489be a root variable object. Here, ``changed'' means that the result of
33490@code{-var-evaluate-expression} before and after the
33491@code{-var-update} is different. If @samp{*} is used as the variable
9f708cb2
VP
33492object names, all existing variable objects are updated, except
33493for frozen ones (@pxref{-var-set-frozen}). The option
36ece8b3 33494@var{print-values} determines whether both names and values, or just
de051565 33495names are printed. The possible values of this option are the same
36ece8b3
NR
33496as for @code{-var-list-children} (@pxref{-var-list-children}). It is
33497recommended to use the @samp{--all-values} option, to reduce the
33498number of MI commands needed on each program stop.
c8b2f53c 33499
c3b108f7
VP
33500With the @samp{*} parameter, if a variable object is bound to a
33501currently running thread, it will not be updated, without any
33502diagnostic.
a2c02241 33503
0cc7d26f
TT
33504If @code{-var-set-update-range} was previously used on a varobj, then
33505only the selected range of children will be reported.
922fbb7b 33506
0cc7d26f
TT
33507@code{-var-update} reports all the changed varobjs in a tuple named
33508@samp{changelist}.
33509
33510Each item in the change list is itself a tuple holding:
33511
33512@table @samp
33513@item name
33514The name of the varobj.
33515
33516@item value
33517If values were requested for this update, then this field will be
33518present and will hold the value of the varobj.
922fbb7b 33519
0cc7d26f 33520@item in_scope
9f708cb2 33521@anchor{-var-update}
0cc7d26f 33522This field is a string which may take one of three values:
36ece8b3
NR
33523
33524@table @code
33525@item "true"
33526The variable object's current value is valid.
33527
33528@item "false"
33529The variable object does not currently hold a valid value but it may
33530hold one in the future if its associated expression comes back into
33531scope.
33532
33533@item "invalid"
33534The variable object no longer holds a valid value.
33535This can occur when the executable file being debugged has changed,
33536either through recompilation or by using the @value{GDBN} @code{file}
33537command. The front end should normally choose to delete these variable
33538objects.
33539@end table
33540
33541In the future new values may be added to this list so the front should
33542be prepared for this possibility. @xref{GDB/MI Development and Front Ends, ,@sc{GDB/MI} Development and Front Ends}.
33543
0cc7d26f
TT
33544@item type_changed
33545This is only present if the varobj is still valid. If the type
33546changed, then this will be the string @samp{true}; otherwise it will
33547be @samp{false}.
33548
7191c139
JB
33549When a varobj's type changes, its children are also likely to have
33550become incorrect. Therefore, the varobj's children are automatically
33551deleted when this attribute is @samp{true}. Also, the varobj's update
33552range, when set using the @code{-var-set-update-range} command, is
33553unset.
33554
0cc7d26f
TT
33555@item new_type
33556If the varobj's type changed, then this field will be present and will
33557hold the new type.
33558
33559@item new_num_children
33560For a dynamic varobj, if the number of children changed, or if the
33561type changed, this will be the new number of children.
33562
33563The @samp{numchild} field in other varobj responses is generally not
33564valid for a dynamic varobj -- it will show the number of children that
33565@value{GDBN} knows about, but because dynamic varobjs lazily
33566instantiate their children, this will not reflect the number of
33567children which may be available.
33568
33569The @samp{new_num_children} attribute only reports changes to the
33570number of children known by @value{GDBN}. This is the only way to
33571detect whether an update has removed children (which necessarily can
33572only happen at the end of the update range).
33573
33574@item displayhint
33575The display hint, if any.
33576
33577@item has_more
33578This is an integer value, which will be 1 if there are more children
33579available outside the varobj's update range.
33580
33581@item dynamic
33582This attribute will be present and have the value @samp{1} if the
33583varobj is a dynamic varobj. If the varobj is not a dynamic varobj,
33584then this attribute will not be present.
33585
33586@item new_children
33587If new children were added to a dynamic varobj within the selected
33588update range (as set by @code{-var-set-update-range}), then they will
33589be listed in this attribute.
33590@end table
33591
33592@subsubheading Example
33593
33594@smallexample
33595(gdb)
33596-var-assign var1 3
33597^done,value="3"
33598(gdb)
33599-var-update --all-values var1
33600^done,changelist=[@{name="var1",value="3",in_scope="true",
33601type_changed="false"@}]
33602(gdb)
33603@end smallexample
33604
25d5ea92
VP
33605@subheading The @code{-var-set-frozen} Command
33606@findex -var-set-frozen
9f708cb2 33607@anchor{-var-set-frozen}
25d5ea92
VP
33608
33609@subsubheading Synopsis
33610
33611@smallexample
9f708cb2 33612 -var-set-frozen @var{name} @var{flag}
25d5ea92
VP
33613@end smallexample
33614
9f708cb2 33615Set the frozenness flag on the variable object @var{name}. The
25d5ea92 33616@var{flag} parameter should be either @samp{1} to make the variable
9f708cb2 33617frozen or @samp{0} to make it unfrozen. If a variable object is
25d5ea92 33618frozen, then neither itself, nor any of its children, are
9f708cb2 33619implicitly updated by @code{-var-update} of
25d5ea92
VP
33620a parent variable or by @code{-var-update *}. Only
33621@code{-var-update} of the variable itself will update its value and
33622values of its children. After a variable object is unfrozen, it is
33623implicitly updated by all subsequent @code{-var-update} operations.
33624Unfreezing a variable does not update it, only subsequent
33625@code{-var-update} does.
33626
33627@subsubheading Example
33628
33629@smallexample
33630(gdb)
33631-var-set-frozen V 1
33632^done
33633(gdb)
33634@end smallexample
33635
0cc7d26f
TT
33636@subheading The @code{-var-set-update-range} command
33637@findex -var-set-update-range
33638@anchor{-var-set-update-range}
33639
33640@subsubheading Synopsis
33641
33642@smallexample
33643 -var-set-update-range @var{name} @var{from} @var{to}
33644@end smallexample
33645
33646Set the range of children to be returned by future invocations of
33647@code{-var-update}.
33648
33649@var{from} and @var{to} indicate the range of children to report. If
33650@var{from} or @var{to} is less than zero, the range is reset and all
33651children will be reported. Otherwise, children starting at @var{from}
33652(zero-based) and up to and excluding @var{to} will be reported.
33653
33654@subsubheading Example
33655
33656@smallexample
33657(gdb)
33658-var-set-update-range V 1 2
33659^done
33660@end smallexample
33661
b6313243
TT
33662@subheading The @code{-var-set-visualizer} command
33663@findex -var-set-visualizer
33664@anchor{-var-set-visualizer}
33665
33666@subsubheading Synopsis
33667
33668@smallexample
33669 -var-set-visualizer @var{name} @var{visualizer}
33670@end smallexample
33671
33672Set a visualizer for the variable object @var{name}.
33673
33674@var{visualizer} is the visualizer to use. The special value
33675@samp{None} means to disable any visualizer in use.
33676
33677If not @samp{None}, @var{visualizer} must be a Python expression.
33678This expression must evaluate to a callable object which accepts a
33679single argument. @value{GDBN} will call this object with the value of
33680the varobj @var{name} as an argument (this is done so that the same
33681Python pretty-printing code can be used for both the CLI and MI).
33682When called, this object must return an object which conforms to the
4c374409 33683pretty-printing interface (@pxref{Pretty Printing API}).
b6313243
TT
33684
33685The pre-defined function @code{gdb.default_visualizer} may be used to
33686select a visualizer by following the built-in process
33687(@pxref{Selecting Pretty-Printers}). This is done automatically when
33688a varobj is created, and so ordinarily is not needed.
33689
33690This feature is only available if Python support is enabled. The MI
d192b373 33691command @code{-list-features} (@pxref{GDB/MI Support Commands})
b6313243
TT
33692can be used to check this.
33693
33694@subsubheading Example
33695
33696Resetting the visualizer:
33697
33698@smallexample
33699(gdb)
33700-var-set-visualizer V None
33701^done
33702@end smallexample
33703
33704Reselecting the default (type-based) visualizer:
33705
33706@smallexample
33707(gdb)
33708-var-set-visualizer V gdb.default_visualizer
33709^done
33710@end smallexample
33711
33712Suppose @code{SomeClass} is a visualizer class. A lambda expression
33713can be used to instantiate this class for a varobj:
33714
33715@smallexample
33716(gdb)
33717-var-set-visualizer V "lambda val: SomeClass()"
33718^done
33719@end smallexample
25d5ea92 33720
a2c02241
NR
33721@c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
33722@node GDB/MI Data Manipulation
33723@section @sc{gdb/mi} Data Manipulation
922fbb7b 33724
a2c02241
NR
33725@cindex data manipulation, in @sc{gdb/mi}
33726@cindex @sc{gdb/mi}, data manipulation
33727This section describes the @sc{gdb/mi} commands that manipulate data:
33728examine memory and registers, evaluate expressions, etc.
33729
a86c90e6
SM
33730For details about what an addressable memory unit is,
33731@pxref{addressable memory unit}.
33732
a2c02241
NR
33733@c REMOVED FROM THE INTERFACE.
33734@c @subheading -data-assign
33735@c Change the value of a program variable. Plenty of side effects.
79a6e687 33736@c @subsubheading GDB Command
a2c02241
NR
33737@c set variable
33738@c @subsubheading Example
33739@c N.A.
33740
33741@subheading The @code{-data-disassemble} Command
33742@findex -data-disassemble
922fbb7b
AC
33743
33744@subsubheading Synopsis
33745
33746@smallexample
a2c02241
NR
33747 -data-disassemble
33748 [ -s @var{start-addr} -e @var{end-addr} ]
26fb3983 33749 | [ -a @var{addr} ]
a2c02241
NR
33750 | [ -f @var{filename} -l @var{linenum} [ -n @var{lines} ] ]
33751 -- @var{mode}
922fbb7b
AC
33752@end smallexample
33753
a2c02241
NR
33754@noindent
33755Where:
33756
33757@table @samp
33758@item @var{start-addr}
33759is the beginning address (or @code{$pc})
33760@item @var{end-addr}
33761is the end address
26fb3983
JV
33762@item @var{addr}
33763is an address anywhere within (or the name of) the function to
33764disassemble. If an address is specified, the whole function
33765surrounding that address will be disassembled. If a name is
33766specified, the whole function with that name will be disassembled.
a2c02241
NR
33767@item @var{filename}
33768is the name of the file to disassemble
33769@item @var{linenum}
33770is the line number to disassemble around
33771@item @var{lines}
d3e8051b 33772is the number of disassembly lines to be produced. If it is -1,
a2c02241
NR
33773the whole function will be disassembled, in case no @var{end-addr} is
33774specified. If @var{end-addr} is specified as a non-zero value, and
33775@var{lines} is lower than the number of disassembly lines between
33776@var{start-addr} and @var{end-addr}, only @var{lines} lines are
33777displayed; if @var{lines} is higher than the number of lines between
33778@var{start-addr} and @var{end-addr}, only the lines up to @var{end-addr}
33779are displayed.
33780@item @var{mode}
6ff0ba5f
DE
33781is one of:
33782@itemize @bullet
33783@item 0 disassembly only
33784@item 1 mixed source and disassembly (deprecated)
33785@item 2 disassembly with raw opcodes
33786@item 3 mixed source and disassembly with raw opcodes (deprecated)
33787@item 4 mixed source and disassembly
33788@item 5 mixed source and disassembly with raw opcodes
33789@end itemize
33790
33791Modes 1 and 3 are deprecated. The output is ``source centric''
33792which hasn't proved useful in practice.
33793@xref{Machine Code}, for a discussion of the difference between
33794@code{/m} and @code{/s} output of the @code{disassemble} command.
a2c02241
NR
33795@end table
33796
33797@subsubheading Result
33798
ed8a1c2d
AB
33799The result of the @code{-data-disassemble} command will be a list named
33800@samp{asm_insns}, the contents of this list depend on the @var{mode}
33801used with the @code{-data-disassemble} command.
a2c02241 33802
ed8a1c2d
AB
33803For modes 0 and 2 the @samp{asm_insns} list contains tuples with the
33804following fields:
33805
33806@table @code
33807@item address
33808The address at which this instruction was disassembled.
33809
33810@item func-name
33811The name of the function this instruction is within.
33812
33813@item offset
33814The decimal offset in bytes from the start of @samp{func-name}.
33815
33816@item inst
33817The text disassembly for this @samp{address}.
33818
33819@item opcodes
6ff0ba5f 33820This field is only present for modes 2, 3 and 5. This contains the raw opcode
ed8a1c2d
AB
33821bytes for the @samp{inst} field.
33822
33823@end table
33824
6ff0ba5f 33825For modes 1, 3, 4 and 5 the @samp{asm_insns} list contains tuples named
ed8a1c2d 33826@samp{src_and_asm_line}, each of which has the following fields:
a2c02241 33827
ed8a1c2d
AB
33828@table @code
33829@item line
33830The line number within @samp{file}.
33831
33832@item file
33833The file name from the compilation unit. This might be an absolute
33834file name or a relative file name depending on the compile command
33835used.
33836
33837@item fullname
f35a17b5
JK
33838Absolute file name of @samp{file}. It is converted to a canonical form
33839using the source file search path
33840(@pxref{Source Path, ,Specifying Source Directories})
33841and after resolving all the symbolic links.
33842
33843If the source file is not found this field will contain the path as
33844present in the debug information.
ed8a1c2d
AB
33845
33846@item line_asm_insn
33847This is a list of tuples containing the disassembly for @samp{line} in
33848@samp{file}. The fields of each tuple are the same as for
33849@code{-data-disassemble} in @var{mode} 0 and 2, so @samp{address},
33850@samp{func-name}, @samp{offset}, @samp{inst}, and optionally
33851@samp{opcodes}.
33852
33853@end table
33854
33855Note that whatever included in the @samp{inst} field, is not
33856manipulated directly by @sc{gdb/mi}, i.e., it is not possible to
33857adjust its format.
922fbb7b
AC
33858
33859@subsubheading @value{GDBN} Command
33860
ed8a1c2d 33861The corresponding @value{GDBN} command is @samp{disassemble}.
922fbb7b
AC
33862
33863@subsubheading Example
33864
a2c02241
NR
33865Disassemble from the current value of @code{$pc} to @code{$pc + 20}:
33866
922fbb7b 33867@smallexample
594fe323 33868(gdb)
a2c02241
NR
33869-data-disassemble -s $pc -e "$pc + 20" -- 0
33870^done,
33871asm_insns=[
33872@{address="0x000107c0",func-name="main",offset="4",
33873inst="mov 2, %o0"@},
33874@{address="0x000107c4",func-name="main",offset="8",
33875inst="sethi %hi(0x11800), %o2"@},
33876@{address="0x000107c8",func-name="main",offset="12",
33877inst="or %o2, 0x140, %o1\t! 0x11940 <_lib_version+8>"@},
33878@{address="0x000107cc",func-name="main",offset="16",
33879inst="sethi %hi(0x11800), %o2"@},
33880@{address="0x000107d0",func-name="main",offset="20",
33881inst="or %o2, 0x168, %o4\t! 0x11968 <_lib_version+48>"@}]
594fe323 33882(gdb)
a2c02241
NR
33883@end smallexample
33884
33885Disassemble the whole @code{main} function. Line 32 is part of
33886@code{main}.
33887
33888@smallexample
33889-data-disassemble -f basics.c -l 32 -- 0
33890^done,asm_insns=[
33891@{address="0x000107bc",func-name="main",offset="0",
33892inst="save %sp, -112, %sp"@},
33893@{address="0x000107c0",func-name="main",offset="4",
33894inst="mov 2, %o0"@},
33895@{address="0x000107c4",func-name="main",offset="8",
33896inst="sethi %hi(0x11800), %o2"@},
33897[@dots{}]
33898@{address="0x0001081c",func-name="main",offset="96",inst="ret "@},
33899@{address="0x00010820",func-name="main",offset="100",inst="restore "@}]
594fe323 33900(gdb)
922fbb7b
AC
33901@end smallexample
33902
a2c02241 33903Disassemble 3 instructions from the start of @code{main}:
922fbb7b 33904
a2c02241 33905@smallexample
594fe323 33906(gdb)
a2c02241
NR
33907-data-disassemble -f basics.c -l 32 -n 3 -- 0
33908^done,asm_insns=[
33909@{address="0x000107bc",func-name="main",offset="0",
33910inst="save %sp, -112, %sp"@},
33911@{address="0x000107c0",func-name="main",offset="4",
33912inst="mov 2, %o0"@},
33913@{address="0x000107c4",func-name="main",offset="8",
33914inst="sethi %hi(0x11800), %o2"@}]
594fe323 33915(gdb)
a2c02241
NR
33916@end smallexample
33917
33918Disassemble 3 instructions from the start of @code{main} in mixed mode:
33919
33920@smallexample
594fe323 33921(gdb)
a2c02241
NR
33922-data-disassemble -f basics.c -l 32 -n 3 -- 1
33923^done,asm_insns=[
33924src_and_asm_line=@{line="31",
ed8a1c2d
AB
33925file="../../../src/gdb/testsuite/gdb.mi/basics.c",
33926fullname="/absolute/path/to/src/gdb/testsuite/gdb.mi/basics.c",
33927line_asm_insn=[@{address="0x000107bc",
33928func-name="main",offset="0",inst="save %sp, -112, %sp"@}]@},
a2c02241 33929src_and_asm_line=@{line="32",
ed8a1c2d
AB
33930file="../../../src/gdb/testsuite/gdb.mi/basics.c",
33931fullname="/absolute/path/to/src/gdb/testsuite/gdb.mi/basics.c",
33932line_asm_insn=[@{address="0x000107c0",
33933func-name="main",offset="4",inst="mov 2, %o0"@},
a2c02241
NR
33934@{address="0x000107c4",func-name="main",offset="8",
33935inst="sethi %hi(0x11800), %o2"@}]@}]
594fe323 33936(gdb)
a2c02241
NR
33937@end smallexample
33938
33939
33940@subheading The @code{-data-evaluate-expression} Command
33941@findex -data-evaluate-expression
922fbb7b
AC
33942
33943@subsubheading Synopsis
33944
33945@smallexample
a2c02241 33946 -data-evaluate-expression @var{expr}
922fbb7b
AC
33947@end smallexample
33948
a2c02241
NR
33949Evaluate @var{expr} as an expression. The expression could contain an
33950inferior function call. The function call will execute synchronously.
33951If the expression contains spaces, it must be enclosed in double quotes.
922fbb7b
AC
33952
33953@subsubheading @value{GDBN} Command
33954
a2c02241
NR
33955The corresponding @value{GDBN} commands are @samp{print}, @samp{output}, and
33956@samp{call}. In @code{gdbtk} only, there's a corresponding
33957@samp{gdb_eval} command.
922fbb7b
AC
33958
33959@subsubheading Example
33960
a2c02241
NR
33961In the following example, the numbers that precede the commands are the
33962@dfn{tokens} described in @ref{GDB/MI Command Syntax, ,@sc{gdb/mi}
33963Command Syntax}. Notice how @sc{gdb/mi} returns the same tokens in its
33964output.
33965
922fbb7b 33966@smallexample
a2c02241
NR
33967211-data-evaluate-expression A
33968211^done,value="1"
594fe323 33969(gdb)
a2c02241
NR
33970311-data-evaluate-expression &A
33971311^done,value="0xefffeb7c"
594fe323 33972(gdb)
a2c02241
NR
33973411-data-evaluate-expression A+3
33974411^done,value="4"
594fe323 33975(gdb)
a2c02241
NR
33976511-data-evaluate-expression "A + 3"
33977511^done,value="4"
594fe323 33978(gdb)
a2c02241 33979@end smallexample
922fbb7b
AC
33980
33981
a2c02241
NR
33982@subheading The @code{-data-list-changed-registers} Command
33983@findex -data-list-changed-registers
922fbb7b
AC
33984
33985@subsubheading Synopsis
33986
33987@smallexample
a2c02241 33988 -data-list-changed-registers
922fbb7b
AC
33989@end smallexample
33990
a2c02241 33991Display a list of the registers that have changed.
922fbb7b
AC
33992
33993@subsubheading @value{GDBN} Command
33994
a2c02241
NR
33995@value{GDBN} doesn't have a direct analog for this command; @code{gdbtk}
33996has the corresponding command @samp{gdb_changed_register_list}.
922fbb7b
AC
33997
33998@subsubheading Example
922fbb7b 33999
a2c02241 34000On a PPC MBX board:
922fbb7b
AC
34001
34002@smallexample
594fe323 34003(gdb)
a2c02241
NR
34004-exec-continue
34005^running
922fbb7b 34006
594fe323 34007(gdb)
a47ec5fe
AR
34008*stopped,reason="breakpoint-hit",disp="keep",bkptno="1",frame=@{
34009func="main",args=[],file="try.c",fullname="/home/foo/bar/try.c",
6d52907e 34010line="5",arch="powerpc"@}
594fe323 34011(gdb)
a2c02241
NR
34012-data-list-changed-registers
34013^done,changed-registers=["0","1","2","4","5","6","7","8","9",
34014"10","11","13","14","15","16","17","18","19","20","21","22","23",
34015"24","25","26","27","28","30","31","64","65","66","67","69"]
594fe323 34016(gdb)
a2c02241 34017@end smallexample
922fbb7b
AC
34018
34019
a2c02241
NR
34020@subheading The @code{-data-list-register-names} Command
34021@findex -data-list-register-names
922fbb7b
AC
34022
34023@subsubheading Synopsis
34024
34025@smallexample
a2c02241 34026 -data-list-register-names [ ( @var{regno} )+ ]
922fbb7b
AC
34027@end smallexample
34028
a2c02241
NR
34029Show a list of register names for the current target. If no arguments
34030are given, it shows a list of the names of all the registers. If
34031integer numbers are given as arguments, it will print a list of the
34032names of the registers corresponding to the arguments. To ensure
34033consistency between a register name and its number, the output list may
34034include empty register names.
922fbb7b
AC
34035
34036@subsubheading @value{GDBN} Command
34037
a2c02241
NR
34038@value{GDBN} does not have a command which corresponds to
34039@samp{-data-list-register-names}. In @code{gdbtk} there is a
34040corresponding command @samp{gdb_regnames}.
922fbb7b
AC
34041
34042@subsubheading Example
922fbb7b 34043
a2c02241
NR
34044For the PPC MBX board:
34045@smallexample
594fe323 34046(gdb)
a2c02241
NR
34047-data-list-register-names
34048^done,register-names=["r0","r1","r2","r3","r4","r5","r6","r7",
34049"r8","r9","r10","r11","r12","r13","r14","r15","r16","r17","r18",
34050"r19","r20","r21","r22","r23","r24","r25","r26","r27","r28","r29",
34051"r30","r31","f0","f1","f2","f3","f4","f5","f6","f7","f8","f9",
34052"f10","f11","f12","f13","f14","f15","f16","f17","f18","f19","f20",
34053"f21","f22","f23","f24","f25","f26","f27","f28","f29","f30","f31",
34054"", "pc","ps","cr","lr","ctr","xer"]
594fe323 34055(gdb)
a2c02241
NR
34056-data-list-register-names 1 2 3
34057^done,register-names=["r1","r2","r3"]
594fe323 34058(gdb)
a2c02241 34059@end smallexample
922fbb7b 34060
a2c02241
NR
34061@subheading The @code{-data-list-register-values} Command
34062@findex -data-list-register-values
922fbb7b
AC
34063
34064@subsubheading Synopsis
34065
34066@smallexample
c898adb7
YQ
34067 -data-list-register-values
34068 [ @code{--skip-unavailable} ] @var{fmt} [ ( @var{regno} )*]
922fbb7b
AC
34069@end smallexample
34070
697aa1b7
EZ
34071Display the registers' contents. The format according to which the
34072registers' contents are to be returned is given by @var{fmt}, followed
34073by an optional list of numbers specifying the registers to display. A
34074missing list of numbers indicates that the contents of all the
34075registers must be returned. The @code{--skip-unavailable} option
34076indicates that only the available registers are to be returned.
a2c02241
NR
34077
34078Allowed formats for @var{fmt} are:
34079
34080@table @code
34081@item x
34082Hexadecimal
34083@item o
34084Octal
34085@item t
34086Binary
34087@item d
34088Decimal
34089@item r
34090Raw
34091@item N
34092Natural
34093@end table
922fbb7b
AC
34094
34095@subsubheading @value{GDBN} Command
34096
a2c02241
NR
34097The corresponding @value{GDBN} commands are @samp{info reg}, @samp{info
34098all-reg}, and (in @code{gdbtk}) @samp{gdb_fetch_registers}.
922fbb7b
AC
34099
34100@subsubheading Example
922fbb7b 34101
a2c02241
NR
34102For a PPC MBX board (note: line breaks are for readability only, they
34103don't appear in the actual output):
34104
34105@smallexample
594fe323 34106(gdb)
a2c02241
NR
34107-data-list-register-values r 64 65
34108^done,register-values=[@{number="64",value="0xfe00a300"@},
34109@{number="65",value="0x00029002"@}]
594fe323 34110(gdb)
a2c02241
NR
34111-data-list-register-values x
34112^done,register-values=[@{number="0",value="0xfe0043c8"@},
34113@{number="1",value="0x3fff88"@},@{number="2",value="0xfffffffe"@},
34114@{number="3",value="0x0"@},@{number="4",value="0xa"@},
34115@{number="5",value="0x3fff68"@},@{number="6",value="0x3fff58"@},
34116@{number="7",value="0xfe011e98"@},@{number="8",value="0x2"@},
34117@{number="9",value="0xfa202820"@},@{number="10",value="0xfa202808"@},
34118@{number="11",value="0x1"@},@{number="12",value="0x0"@},
34119@{number="13",value="0x4544"@},@{number="14",value="0xffdfffff"@},
34120@{number="15",value="0xffffffff"@},@{number="16",value="0xfffffeff"@},
34121@{number="17",value="0xefffffed"@},@{number="18",value="0xfffffffe"@},
34122@{number="19",value="0xffffffff"@},@{number="20",value="0xffffffff"@},
34123@{number="21",value="0xffffffff"@},@{number="22",value="0xfffffff7"@},
34124@{number="23",value="0xffffffff"@},@{number="24",value="0xffffffff"@},
34125@{number="25",value="0xffffffff"@},@{number="26",value="0xfffffffb"@},
34126@{number="27",value="0xffffffff"@},@{number="28",value="0xf7bfffff"@},
34127@{number="29",value="0x0"@},@{number="30",value="0xfe010000"@},
34128@{number="31",value="0x0"@},@{number="32",value="0x0"@},
34129@{number="33",value="0x0"@},@{number="34",value="0x0"@},
34130@{number="35",value="0x0"@},@{number="36",value="0x0"@},
34131@{number="37",value="0x0"@},@{number="38",value="0x0"@},
34132@{number="39",value="0x0"@},@{number="40",value="0x0"@},
34133@{number="41",value="0x0"@},@{number="42",value="0x0"@},
34134@{number="43",value="0x0"@},@{number="44",value="0x0"@},
34135@{number="45",value="0x0"@},@{number="46",value="0x0"@},
34136@{number="47",value="0x0"@},@{number="48",value="0x0"@},
34137@{number="49",value="0x0"@},@{number="50",value="0x0"@},
34138@{number="51",value="0x0"@},@{number="52",value="0x0"@},
34139@{number="53",value="0x0"@},@{number="54",value="0x0"@},
34140@{number="55",value="0x0"@},@{number="56",value="0x0"@},
34141@{number="57",value="0x0"@},@{number="58",value="0x0"@},
34142@{number="59",value="0x0"@},@{number="60",value="0x0"@},
34143@{number="61",value="0x0"@},@{number="62",value="0x0"@},
34144@{number="63",value="0x0"@},@{number="64",value="0xfe00a300"@},
34145@{number="65",value="0x29002"@},@{number="66",value="0x202f04b5"@},
34146@{number="67",value="0xfe0043b0"@},@{number="68",value="0xfe00b3e4"@},
34147@{number="69",value="0x20002b03"@}]
594fe323 34148(gdb)
a2c02241 34149@end smallexample
922fbb7b 34150
a2c02241
NR
34151
34152@subheading The @code{-data-read-memory} Command
34153@findex -data-read-memory
922fbb7b 34154
8dedea02
VP
34155This command is deprecated, use @code{-data-read-memory-bytes} instead.
34156
922fbb7b
AC
34157@subsubheading Synopsis
34158
34159@smallexample
a2c02241
NR
34160 -data-read-memory [ -o @var{byte-offset} ]
34161 @var{address} @var{word-format} @var{word-size}
34162 @var{nr-rows} @var{nr-cols} [ @var{aschar} ]
922fbb7b
AC
34163@end smallexample
34164
a2c02241
NR
34165@noindent
34166where:
922fbb7b 34167
a2c02241
NR
34168@table @samp
34169@item @var{address}
34170An expression specifying the address of the first memory word to be
34171read. Complex expressions containing embedded white space should be
34172quoted using the C convention.
922fbb7b 34173
a2c02241
NR
34174@item @var{word-format}
34175The format to be used to print the memory words. The notation is the
34176same as for @value{GDBN}'s @code{print} command (@pxref{Output Formats,
79a6e687 34177,Output Formats}).
922fbb7b 34178
a2c02241
NR
34179@item @var{word-size}
34180The size of each memory word in bytes.
922fbb7b 34181
a2c02241
NR
34182@item @var{nr-rows}
34183The number of rows in the output table.
922fbb7b 34184
a2c02241
NR
34185@item @var{nr-cols}
34186The number of columns in the output table.
922fbb7b 34187
a2c02241
NR
34188@item @var{aschar}
34189If present, indicates that each row should include an @sc{ascii} dump. The
34190value of @var{aschar} is used as a padding character when a byte is not a
34191member of the printable @sc{ascii} character set (printable @sc{ascii}
34192characters are those whose code is between 32 and 126, inclusively).
922fbb7b 34193
a2c02241
NR
34194@item @var{byte-offset}
34195An offset to add to the @var{address} before fetching memory.
34196@end table
922fbb7b 34197
a2c02241
NR
34198This command displays memory contents as a table of @var{nr-rows} by
34199@var{nr-cols} words, each word being @var{word-size} bytes. In total,
34200@code{@var{nr-rows} * @var{nr-cols} * @var{word-size}} bytes are read
34201(returned as @samp{total-bytes}). Should less than the requested number
34202of bytes be returned by the target, the missing words are identified
34203using @samp{N/A}. The number of bytes read from the target is returned
34204in @samp{nr-bytes} and the starting address used to read memory in
34205@samp{addr}.
34206
34207The address of the next/previous row or page is available in
34208@samp{next-row} and @samp{prev-row}, @samp{next-page} and
34209@samp{prev-page}.
922fbb7b
AC
34210
34211@subsubheading @value{GDBN} Command
34212
a2c02241
NR
34213The corresponding @value{GDBN} command is @samp{x}. @code{gdbtk} has
34214@samp{gdb_get_mem} memory read command.
922fbb7b
AC
34215
34216@subsubheading Example
32e7087d 34217
a2c02241
NR
34218Read six bytes of memory starting at @code{bytes+6} but then offset by
34219@code{-6} bytes. Format as three rows of two columns. One byte per
34220word. Display each word in hex.
32e7087d
JB
34221
34222@smallexample
594fe323 34223(gdb)
a2c02241
NR
342249-data-read-memory -o -6 -- bytes+6 x 1 3 2
342259^done,addr="0x00001390",nr-bytes="6",total-bytes="6",
34226next-row="0x00001396",prev-row="0x0000138e",next-page="0x00001396",
34227prev-page="0x0000138a",memory=[
34228@{addr="0x00001390",data=["0x00","0x01"]@},
34229@{addr="0x00001392",data=["0x02","0x03"]@},
34230@{addr="0x00001394",data=["0x04","0x05"]@}]
594fe323 34231(gdb)
32e7087d
JB
34232@end smallexample
34233
a2c02241
NR
34234Read two bytes of memory starting at address @code{shorts + 64} and
34235display as a single word formatted in decimal.
32e7087d 34236
32e7087d 34237@smallexample
594fe323 34238(gdb)
a2c02241
NR
342395-data-read-memory shorts+64 d 2 1 1
342405^done,addr="0x00001510",nr-bytes="2",total-bytes="2",
34241next-row="0x00001512",prev-row="0x0000150e",
34242next-page="0x00001512",prev-page="0x0000150e",memory=[
34243@{addr="0x00001510",data=["128"]@}]
594fe323 34244(gdb)
32e7087d
JB
34245@end smallexample
34246
a2c02241
NR
34247Read thirty two bytes of memory starting at @code{bytes+16} and format
34248as eight rows of four columns. Include a string encoding with @samp{x}
34249used as the non-printable character.
922fbb7b
AC
34250
34251@smallexample
594fe323 34252(gdb)
a2c02241
NR
342534-data-read-memory bytes+16 x 1 8 4 x
342544^done,addr="0x000013a0",nr-bytes="32",total-bytes="32",
34255next-row="0x000013c0",prev-row="0x0000139c",
34256next-page="0x000013c0",prev-page="0x00001380",memory=[
34257@{addr="0x000013a0",data=["0x10","0x11","0x12","0x13"],ascii="xxxx"@},
34258@{addr="0x000013a4",data=["0x14","0x15","0x16","0x17"],ascii="xxxx"@},
34259@{addr="0x000013a8",data=["0x18","0x19","0x1a","0x1b"],ascii="xxxx"@},
34260@{addr="0x000013ac",data=["0x1c","0x1d","0x1e","0x1f"],ascii="xxxx"@},
34261@{addr="0x000013b0",data=["0x20","0x21","0x22","0x23"],ascii=" !\"#"@},
34262@{addr="0x000013b4",data=["0x24","0x25","0x26","0x27"],ascii="$%&'"@},
34263@{addr="0x000013b8",data=["0x28","0x29","0x2a","0x2b"],ascii="()*+"@},
34264@{addr="0x000013bc",data=["0x2c","0x2d","0x2e","0x2f"],ascii=",-./"@}]
594fe323 34265(gdb)
922fbb7b
AC
34266@end smallexample
34267
8dedea02
VP
34268@subheading The @code{-data-read-memory-bytes} Command
34269@findex -data-read-memory-bytes
34270
34271@subsubheading Synopsis
34272
34273@smallexample
a86c90e6 34274 -data-read-memory-bytes [ -o @var{offset} ]
8dedea02
VP
34275 @var{address} @var{count}
34276@end smallexample
34277
34278@noindent
34279where:
34280
34281@table @samp
34282@item @var{address}
a86c90e6
SM
34283An expression specifying the address of the first addressable memory unit
34284to be read. Complex expressions containing embedded white space should be
8dedea02
VP
34285quoted using the C convention.
34286
34287@item @var{count}
a86c90e6
SM
34288The number of addressable memory units to read. This should be an integer
34289literal.
8dedea02 34290
a86c90e6
SM
34291@item @var{offset}
34292The offset relative to @var{address} at which to start reading. This
34293should be an integer literal. This option is provided so that a frontend
34294is not required to first evaluate address and then perform address
34295arithmetics itself.
8dedea02
VP
34296
34297@end table
34298
34299This command attempts to read all accessible memory regions in the
34300specified range. First, all regions marked as unreadable in the memory
34301map (if one is defined) will be skipped. @xref{Memory Region
34302Attributes}. Second, @value{GDBN} will attempt to read the remaining
34303regions. For each one, if reading full region results in an errors,
34304@value{GDBN} will try to read a subset of the region.
34305
a86c90e6
SM
34306In general, every single memory unit in the region may be readable or not,
34307and the only way to read every readable unit is to try a read at
8dedea02 34308every address, which is not practical. Therefore, @value{GDBN} will
a86c90e6 34309attempt to read all accessible memory units at either beginning or the end
8dedea02 34310of the region, using a binary division scheme. This heuristic works
6b92c0d3 34311well for reading across a memory map boundary. Note that if a region
8dedea02
VP
34312has a readable range that is neither at the beginning or the end,
34313@value{GDBN} will not read it.
34314
34315The result record (@pxref{GDB/MI Result Records}) that is output of
34316the command includes a field named @samp{memory} whose content is a
34317list of tuples. Each tuple represent a successfully read memory block
34318and has the following fields:
34319
34320@table @code
34321@item begin
34322The start address of the memory block, as hexadecimal literal.
34323
34324@item end
34325The end address of the memory block, as hexadecimal literal.
34326
34327@item offset
34328The offset of the memory block, as hexadecimal literal, relative to
34329the start address passed to @code{-data-read-memory-bytes}.
34330
34331@item contents
34332The contents of the memory block, in hex.
34333
34334@end table
34335
34336
34337
34338@subsubheading @value{GDBN} Command
34339
34340The corresponding @value{GDBN} command is @samp{x}.
34341
34342@subsubheading Example
34343
34344@smallexample
34345(gdb)
34346-data-read-memory-bytes &a 10
34347^done,memory=[@{begin="0xbffff154",offset="0x00000000",
34348 end="0xbffff15e",
34349 contents="01000000020000000300"@}]
34350(gdb)
34351@end smallexample
34352
34353
34354@subheading The @code{-data-write-memory-bytes} Command
34355@findex -data-write-memory-bytes
34356
34357@subsubheading Synopsis
34358
34359@smallexample
34360 -data-write-memory-bytes @var{address} @var{contents}
62747a60 34361 -data-write-memory-bytes @var{address} @var{contents} @r{[}@var{count}@r{]}
8dedea02
VP
34362@end smallexample
34363
34364@noindent
34365where:
34366
34367@table @samp
34368@item @var{address}
a86c90e6
SM
34369An expression specifying the address of the first addressable memory unit
34370to be written. Complex expressions containing embedded white space should
34371be quoted using the C convention.
8dedea02
VP
34372
34373@item @var{contents}
a86c90e6
SM
34374The hex-encoded data to write. It is an error if @var{contents} does
34375not represent an integral number of addressable memory units.
8dedea02 34376
62747a60 34377@item @var{count}
a86c90e6
SM
34378Optional argument indicating the number of addressable memory units to be
34379written. If @var{count} is greater than @var{contents}' length,
34380@value{GDBN} will repeatedly write @var{contents} until it fills
34381@var{count} memory units.
62747a60 34382
8dedea02
VP
34383@end table
34384
34385@subsubheading @value{GDBN} Command
34386
34387There's no corresponding @value{GDBN} command.
34388
34389@subsubheading Example
34390
34391@smallexample
34392(gdb)
34393-data-write-memory-bytes &a "aabbccdd"
34394^done
34395(gdb)
34396@end smallexample
34397
62747a60
TT
34398@smallexample
34399(gdb)
34400-data-write-memory-bytes &a "aabbccdd" 16e
34401^done
34402(gdb)
34403@end smallexample
8dedea02 34404
a2c02241
NR
34405@c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
34406@node GDB/MI Tracepoint Commands
34407@section @sc{gdb/mi} Tracepoint Commands
922fbb7b 34408
18148017
VP
34409The commands defined in this section implement MI support for
34410tracepoints. For detailed introduction, see @ref{Tracepoints}.
34411
34412@subheading The @code{-trace-find} Command
34413@findex -trace-find
34414
34415@subsubheading Synopsis
34416
34417@smallexample
34418 -trace-find @var{mode} [@var{parameters}@dots{}]
34419@end smallexample
34420
34421Find a trace frame using criteria defined by @var{mode} and
34422@var{parameters}. The following table lists permissible
34423modes and their parameters. For details of operation, see @ref{tfind}.
34424
34425@table @samp
34426
34427@item none
34428No parameters are required. Stops examining trace frames.
34429
34430@item frame-number
34431An integer is required as parameter. Selects tracepoint frame with
34432that index.
34433
34434@item tracepoint-number
34435An integer is required as parameter. Finds next
34436trace frame that corresponds to tracepoint with the specified number.
34437
34438@item pc
34439An address is required as parameter. Finds
34440next trace frame that corresponds to any tracepoint at the specified
34441address.
34442
34443@item pc-inside-range
34444Two addresses are required as parameters. Finds next trace
34445frame that corresponds to a tracepoint at an address inside the
34446specified range. Both bounds are considered to be inside the range.
34447
34448@item pc-outside-range
34449Two addresses are required as parameters. Finds
34450next trace frame that corresponds to a tracepoint at an address outside
34451the specified range. Both bounds are considered to be inside the range.
34452
34453@item line
34454Line specification is required as parameter. @xref{Specify Location}.
34455Finds next trace frame that corresponds to a tracepoint at
34456the specified location.
34457
34458@end table
34459
34460If @samp{none} was passed as @var{mode}, the response does not
34461have fields. Otherwise, the response may have the following fields:
34462
34463@table @samp
34464@item found
34465This field has either @samp{0} or @samp{1} as the value, depending
34466on whether a matching tracepoint was found.
34467
34468@item traceframe
34469The index of the found traceframe. This field is present iff
34470the @samp{found} field has value of @samp{1}.
34471
34472@item tracepoint
34473The index of the found tracepoint. This field is present iff
34474the @samp{found} field has value of @samp{1}.
34475
34476@item frame
34477The information about the frame corresponding to the found trace
34478frame. This field is present only if a trace frame was found.
cd64ee31 34479@xref{GDB/MI Frame Information}, for description of this field.
18148017
VP
34480
34481@end table
34482
7d13fe92
SS
34483@subsubheading @value{GDBN} Command
34484
34485The corresponding @value{GDBN} command is @samp{tfind}.
34486
18148017
VP
34487@subheading -trace-define-variable
34488@findex -trace-define-variable
34489
34490@subsubheading Synopsis
34491
34492@smallexample
34493 -trace-define-variable @var{name} [ @var{value} ]
34494@end smallexample
34495
34496Create trace variable @var{name} if it does not exist. If
34497@var{value} is specified, sets the initial value of the specified
34498trace variable to that value. Note that the @var{name} should start
34499with the @samp{$} character.
34500
7d13fe92
SS
34501@subsubheading @value{GDBN} Command
34502
34503The corresponding @value{GDBN} command is @samp{tvariable}.
34504
dc673c81
YQ
34505@subheading The @code{-trace-frame-collected} Command
34506@findex -trace-frame-collected
34507
34508@subsubheading Synopsis
34509
34510@smallexample
34511 -trace-frame-collected
34512 [--var-print-values @var{var_pval}]
34513 [--comp-print-values @var{comp_pval}]
34514 [--registers-format @var{regformat}]
34515 [--memory-contents]
34516@end smallexample
34517
34518This command returns the set of collected objects, register names,
34519trace state variable names, memory ranges and computed expressions
34520that have been collected at a particular trace frame. The optional
34521parameters to the command affect the output format in different ways.
34522See the output description table below for more details.
34523
34524The reported names can be used in the normal manner to create
34525varobjs and inspect the objects themselves. The items returned by
34526this command are categorized so that it is clear which is a variable,
34527which is a register, which is a trace state variable, which is a
34528memory range and which is a computed expression.
34529
34530For instance, if the actions were
34531@smallexample
34532collect myVar, myArray[myIndex], myObj.field, myPtr->field, myCount + 2
34533collect *(int*)0xaf02bef0@@40
34534@end smallexample
34535
34536@noindent
34537the object collected in its entirety would be @code{myVar}. The
34538object @code{myArray} would be partially collected, because only the
34539element at index @code{myIndex} would be collected. The remaining
34540objects would be computed expressions.
34541
34542An example output would be:
34543
34544@smallexample
34545(gdb)
34546-trace-frame-collected
34547^done,
34548 explicit-variables=[@{name="myVar",value="1"@}],
34549 computed-expressions=[@{name="myArray[myIndex]",value="0"@},
34550 @{name="myObj.field",value="0"@},
34551 @{name="myPtr->field",value="1"@},
34552 @{name="myCount + 2",value="3"@},
34553 @{name="$tvar1 + 1",value="43970027"@}],
34554 registers=[@{number="0",value="0x7fe2c6e79ec8"@},
34555 @{number="1",value="0x0"@},
34556 @{number="2",value="0x4"@},
34557 ...
34558 @{number="125",value="0x0"@}],
34559 tvars=[@{name="$tvar1",current="43970026"@}],
34560 memory=[@{address="0x0000000000602264",length="4"@},
34561 @{address="0x0000000000615bc0",length="4"@}]
34562(gdb)
34563@end smallexample
34564
34565Where:
34566
34567@table @code
34568@item explicit-variables
34569The set of objects that have been collected in their entirety (as
34570opposed to collecting just a few elements of an array or a few struct
34571members). For each object, its name and value are printed.
34572The @code{--var-print-values} option affects how or whether the value
34573field is output. If @var{var_pval} is 0, then print only the names;
34574if it is 1, print also their values; and if it is 2, print the name,
34575type and value for simple data types, and the name and type for
34576arrays, structures and unions.
34577
34578@item computed-expressions
34579The set of computed expressions that have been collected at the
34580current trace frame. The @code{--comp-print-values} option affects
34581this set like the @code{--var-print-values} option affects the
34582@code{explicit-variables} set. See above.
34583
34584@item registers
34585The registers that have been collected at the current trace frame.
34586For each register collected, the name and current value are returned.
34587The value is formatted according to the @code{--registers-format}
34588option. See the @command{-data-list-register-values} command for a
34589list of the allowed formats. The default is @samp{x}.
34590
34591@item tvars
34592The trace state variables that have been collected at the current
34593trace frame. For each trace state variable collected, the name and
34594current value are returned.
34595
34596@item memory
34597The set of memory ranges that have been collected at the current trace
34598frame. Its content is a list of tuples. Each tuple represents a
34599collected memory range and has the following fields:
34600
34601@table @code
34602@item address
34603The start address of the memory range, as hexadecimal literal.
34604
34605@item length
34606The length of the memory range, as decimal literal.
34607
34608@item contents
34609The contents of the memory block, in hex. This field is only present
34610if the @code{--memory-contents} option is specified.
34611
34612@end table
34613
34614@end table
34615
34616@subsubheading @value{GDBN} Command
34617
34618There is no corresponding @value{GDBN} command.
34619
34620@subsubheading Example
34621
18148017
VP
34622@subheading -trace-list-variables
34623@findex -trace-list-variables
922fbb7b 34624
18148017 34625@subsubheading Synopsis
922fbb7b 34626
18148017
VP
34627@smallexample
34628 -trace-list-variables
34629@end smallexample
922fbb7b 34630
18148017
VP
34631Return a table of all defined trace variables. Each element of the
34632table has the following fields:
922fbb7b 34633
18148017
VP
34634@table @samp
34635@item name
34636The name of the trace variable. This field is always present.
922fbb7b 34637
18148017
VP
34638@item initial
34639The initial value. This is a 64-bit signed integer. This
34640field is always present.
922fbb7b 34641
18148017
VP
34642@item current
34643The value the trace variable has at the moment. This is a 64-bit
34644signed integer. This field is absent iff current value is
34645not defined, for example if the trace was never run, or is
34646presently running.
922fbb7b 34647
18148017 34648@end table
922fbb7b 34649
7d13fe92
SS
34650@subsubheading @value{GDBN} Command
34651
34652The corresponding @value{GDBN} command is @samp{tvariables}.
34653
18148017 34654@subsubheading Example
922fbb7b 34655
18148017
VP
34656@smallexample
34657(gdb)
34658-trace-list-variables
34659^done,trace-variables=@{nr_rows="1",nr_cols="3",
34660hdr=[@{width="15",alignment="-1",col_name="name",colhdr="Name"@},
34661 @{width="11",alignment="-1",col_name="initial",colhdr="Initial"@},
34662 @{width="11",alignment="-1",col_name="current",colhdr="Current"@}],
34663body=[variable=@{name="$trace_timestamp",initial="0"@}
34664 variable=@{name="$foo",initial="10",current="15"@}]@}
34665(gdb)
34666@end smallexample
922fbb7b 34667
18148017
VP
34668@subheading -trace-save
34669@findex -trace-save
922fbb7b 34670
18148017
VP
34671@subsubheading Synopsis
34672
34673@smallexample
99e61eda 34674 -trace-save [ -r ] [ -ctf ] @var{filename}
18148017
VP
34675@end smallexample
34676
34677Saves the collected trace data to @var{filename}. Without the
34678@samp{-r} option, the data is downloaded from the target and saved
34679in a local file. With the @samp{-r} option the target is asked
34680to perform the save.
34681
99e61eda
SM
34682By default, this command will save the trace in the tfile format. You can
34683supply the optional @samp{-ctf} argument to save it the CTF format. See
34684@ref{Trace Files} for more information about CTF.
34685
7d13fe92
SS
34686@subsubheading @value{GDBN} Command
34687
34688The corresponding @value{GDBN} command is @samp{tsave}.
34689
18148017
VP
34690
34691@subheading -trace-start
34692@findex -trace-start
34693
34694@subsubheading Synopsis
34695
34696@smallexample
34697 -trace-start
34698@end smallexample
922fbb7b 34699
be06ba8c 34700Starts a tracing experiment. The result of this command does not
18148017 34701have any fields.
922fbb7b 34702
7d13fe92
SS
34703@subsubheading @value{GDBN} Command
34704
34705The corresponding @value{GDBN} command is @samp{tstart}.
34706
18148017
VP
34707@subheading -trace-status
34708@findex -trace-status
922fbb7b 34709
18148017
VP
34710@subsubheading Synopsis
34711
34712@smallexample
34713 -trace-status
34714@end smallexample
34715
a97153c7 34716Obtains the status of a tracing experiment. The result may include
18148017
VP
34717the following fields:
34718
34719@table @samp
34720
34721@item supported
34722May have a value of either @samp{0}, when no tracing operations are
34723supported, @samp{1}, when all tracing operations are supported, or
34724@samp{file} when examining trace file. In the latter case, examining
34725of trace frame is possible but new tracing experiement cannot be
34726started. This field is always present.
34727
34728@item running
34729May have a value of either @samp{0} or @samp{1} depending on whether
34730tracing experiement is in progress on target. This field is present
34731if @samp{supported} field is not @samp{0}.
34732
34733@item stop-reason
34734Report the reason why the tracing was stopped last time. This field
34735may be absent iff tracing was never stopped on target yet. The
34736value of @samp{request} means the tracing was stopped as result of
34737the @code{-trace-stop} command. The value of @samp{overflow} means
34738the tracing buffer is full. The value of @samp{disconnection} means
34739tracing was automatically stopped when @value{GDBN} has disconnected.
34740The value of @samp{passcount} means tracing was stopped when a
34741tracepoint was passed a maximal number of times for that tracepoint.
34742This field is present if @samp{supported} field is not @samp{0}.
34743
34744@item stopping-tracepoint
34745The number of tracepoint whose passcount as exceeded. This field is
34746present iff the @samp{stop-reason} field has the value of
34747@samp{passcount}.
34748
34749@item frames
87290684
SS
34750@itemx frames-created
34751The @samp{frames} field is a count of the total number of trace frames
34752in the trace buffer, while @samp{frames-created} is the total created
34753during the run, including ones that were discarded, such as when a
34754circular trace buffer filled up. Both fields are optional.
18148017
VP
34755
34756@item buffer-size
34757@itemx buffer-free
34758These fields tell the current size of the tracing buffer and the
87290684 34759remaining space. These fields are optional.
18148017 34760
a97153c7
PA
34761@item circular
34762The value of the circular trace buffer flag. @code{1} means that the
34763trace buffer is circular and old trace frames will be discarded if
34764necessary to make room, @code{0} means that the trace buffer is linear
34765and may fill up.
34766
34767@item disconnected
34768The value of the disconnected tracing flag. @code{1} means that
34769tracing will continue after @value{GDBN} disconnects, @code{0} means
34770that the trace run will stop.
34771
f5911ea1
HAQ
34772@item trace-file
34773The filename of the trace file being examined. This field is
34774optional, and only present when examining a trace file.
34775
18148017
VP
34776@end table
34777
7d13fe92
SS
34778@subsubheading @value{GDBN} Command
34779
34780The corresponding @value{GDBN} command is @samp{tstatus}.
34781
18148017
VP
34782@subheading -trace-stop
34783@findex -trace-stop
34784
34785@subsubheading Synopsis
34786
34787@smallexample
34788 -trace-stop
34789@end smallexample
922fbb7b 34790
18148017
VP
34791Stops a tracing experiment. The result of this command has the same
34792fields as @code{-trace-status}, except that the @samp{supported} and
34793@samp{running} fields are not output.
922fbb7b 34794
7d13fe92
SS
34795@subsubheading @value{GDBN} Command
34796
34797The corresponding @value{GDBN} command is @samp{tstop}.
34798
922fbb7b 34799
a2c02241
NR
34800@c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
34801@node GDB/MI Symbol Query
34802@section @sc{gdb/mi} Symbol Query Commands
922fbb7b
AC
34803
34804
9901a55b 34805@ignore
a2c02241
NR
34806@subheading The @code{-symbol-info-address} Command
34807@findex -symbol-info-address
922fbb7b
AC
34808
34809@subsubheading Synopsis
34810
34811@smallexample
a2c02241 34812 -symbol-info-address @var{symbol}
922fbb7b
AC
34813@end smallexample
34814
a2c02241 34815Describe where @var{symbol} is stored.
922fbb7b
AC
34816
34817@subsubheading @value{GDBN} Command
34818
a2c02241 34819The corresponding @value{GDBN} command is @samp{info address}.
922fbb7b
AC
34820
34821@subsubheading Example
34822N.A.
34823
34824
a2c02241
NR
34825@subheading The @code{-symbol-info-file} Command
34826@findex -symbol-info-file
922fbb7b
AC
34827
34828@subsubheading Synopsis
34829
34830@smallexample
a2c02241 34831 -symbol-info-file
922fbb7b
AC
34832@end smallexample
34833
a2c02241 34834Show the file for the symbol.
922fbb7b 34835
a2c02241 34836@subsubheading @value{GDBN} Command
922fbb7b 34837
a2c02241
NR
34838There's no equivalent @value{GDBN} command. @code{gdbtk} has
34839@samp{gdb_find_file}.
922fbb7b
AC
34840
34841@subsubheading Example
34842N.A.
7dc42066
AB
34843@end ignore
34844
34845@subheading The @code{-symbol-info-functions} Command
34846@findex -symbol-info-functions
34847@anchor{-symbol-info-functions}
34848
34849@subsubheading Synopsis
34850
34851@smallexample
34852 -symbol-info-functions [--include-nondebug]
34853 [--type @var{type_regexp}]
34854 [--name @var{name_regexp}]
c2512106 34855 [--max-results @var{limit}]
7dc42066
AB
34856@end smallexample
34857
34858@noindent
34859Return a list containing the names and types for all global functions
34860taken from the debug information. The functions are grouped by source
34861file, and shown with the line number on which each function is
34862defined.
922fbb7b 34863
7dc42066
AB
34864The @code{--include-nondebug} option causes the output to include
34865code symbols from the symbol table.
922fbb7b 34866
7dc42066
AB
34867The options @code{--type} and @code{--name} allow the symbols returned
34868to be filtered based on either the name of the function, or the type
34869signature of the function.
34870
c2512106
AB
34871The option @code{--max-results} restricts the command to return no
34872more than @var{limit} results. If exactly @var{limit} results are
34873returned then there might be additional results available if a higher
34874limit is used.
34875
7dc42066
AB
34876@subsubheading @value{GDBN} Command
34877
34878The corresponding @value{GDBN} command is @samp{info functions}.
34879
34880@subsubheading Example
34881@smallexample
34882@group
34883(gdb)
34884-symbol-info-functions
34885^done,symbols=
34886 @{debug=
34887 [@{filename="/project/gdb/testsuite/gdb.mi/mi-sym-info-1.c",
34888 fullname="/project/gdb/testsuite/gdb.mi/mi-sym-info-1.c",
34889 symbols=[@{line="36", name="f4", type="void (int *)",
34890 description="void f4(int *);"@},
34891 @{line="42", name="main", type="int ()",
34892 description="int main();"@},
34893 @{line="30", name="f1", type="my_int_t (int, int)",
34894 description="static my_int_t f1(int, int);"@}]@},
34895 @{filename="/project/gdb/testsuite/gdb.mi/mi-sym-info-2.c",
34896 fullname="/project/gdb/testsuite/gdb.mi/mi-sym-info-2.c",
34897 symbols=[@{line="33", name="f2", type="float (another_float_t)",
34898 description="float f2(another_float_t);"@},
34899 @{line="39", name="f3", type="int (another_int_t)",
34900 description="int f3(another_int_t);"@},
34901 @{line="27", name="f1", type="another_float_t (int)",
34902 description="static another_float_t f1(int);"@}]@}]@}
34903@end group
34904@group
34905(gdb)
34906-symbol-info-functions --name f1
34907^done,symbols=
34908 @{debug=
34909 [@{filename="/project/gdb/testsuite/gdb.mi/mi-sym-info-1.c",
34910 fullname="/project/gdb/testsuite/gdb.mi/mi-sym-info-1.c",
34911 symbols=[@{line="30", name="f1", type="my_int_t (int, int)",
34912 description="static my_int_t f1(int, int);"@}]@},
34913 @{filename="/project/gdb/testsuite/gdb.mi/mi-sym-info-2.c",
34914 fullname="/project/gdb/testsuite/gdb.mi/mi-sym-info-2.c",
34915 symbols=[@{line="27", name="f1", type="another_float_t (int)",
34916 description="static another_float_t f1(int);"@}]@}]@}
34917@end group
34918@group
34919(gdb)
34920-symbol-info-functions --type void
34921^done,symbols=
34922 @{debug=
34923 [@{filename="/project/gdb/testsuite/gdb.mi/mi-sym-info-1.c",
34924 fullname="/project/gdb/testsuite/gdb.mi/mi-sym-info-1.c",
34925 symbols=[@{line="36", name="f4", type="void (int *)",
34926 description="void f4(int *);"@}]@}]@}
34927@end group
34928@group
34929(gdb)
34930-symbol-info-functions --include-nondebug
34931^done,symbols=
34932 @{debug=
34933 [@{filename="/project/gdb/testsuite/gdb.mi/mi-sym-info-1.c",
34934 fullname="/project/gdb/testsuite/gdb.mi/mi-sym-info-1.c",
34935 symbols=[@{line="36", name="f4", type="void (int *)",
34936 description="void f4(int *);"@},
34937 @{line="42", name="main", type="int ()",
34938 description="int main();"@},
34939 @{line="30", name="f1", type="my_int_t (int, int)",
34940 description="static my_int_t f1(int, int);"@}]@},
34941 @{filename="/project/gdb/testsuite/gdb.mi/mi-sym-info-2.c",
34942 fullname="/project/gdb/testsuite/gdb.mi/mi-sym-info-2.c",
34943 symbols=[@{line="33", name="f2", type="float (another_float_t)",
34944 description="float f2(another_float_t);"@},
34945 @{line="39", name="f3", type="int (another_int_t)",
34946 description="int f3(another_int_t);"@},
34947 @{line="27", name="f1", type="another_float_t (int)",
34948 description="static another_float_t f1(int);"@}]@}],
34949 nondebug=
34950 [@{address="0x0000000000400398",name="_init"@},
34951 @{address="0x00000000004003b0",name="_start"@},
34952 ...
34953 ]@}
34954@end group
34955@end smallexample
34956
293b38d6
AB
34957@subheading The @code{-symbol-info-module-functions} Command
34958@findex -symbol-info-module-functions
34959@anchor{-symbol-info-module-functions}
34960
34961@subsubheading Synopsis
34962
34963@smallexample
34964 -symbol-info-module-functions [--module @var{module_regexp}]
34965 [--name @var{name_regexp}]
34966 [--type @var{type_regexp}]
34967@end smallexample
34968
34969@noindent
34970Return a list containing the names of all known functions within all
34971know Fortran modules. The functions are grouped by source file and
34972containing module, and shown with the line number on which each
34973function is defined.
34974
34975The option @code{--module} only returns results for modules matching
34976@var{module_regexp}. The option @code{--name} only returns functions
34977whose name matches @var{name_regexp}, and @code{--type} only returns
34978functions whose type matches @var{type_regexp}.
34979
34980@subsubheading @value{GDBN} Command
34981
34982The corresponding @value{GDBN} command is @samp{info module functions}.
34983
34984@subsubheading Example
34985
34986@smallexample
34987@group
34988(gdb)
34989-symbol-info-module-functions
34990^done,symbols=
34991 [@{module="mod1",
34992 files=[@{filename="/project/gdb/testsuite/gdb.mi/mi-fortran-modules-2.f90",
34993 fullname="/project/gdb/testsuite/gdb.mi/mi-fortran-modules-2.f90",
34994 symbols=[@{line="21",name="mod1::check_all",type="void (void)",
34995 description="void mod1::check_all(void);"@}]@}]@},
34996 @{module="mod2",
34997 files=[@{filename="/project/gdb/testsuite/gdb.mi/mi-fortran-modules-2.f90",
34998 fullname="/project/gdb/testsuite/gdb.mi/mi-fortran-modules-2.f90",
34999 symbols=[@{line="30",name="mod2::check_var_i",type="void (void)",
35000 description="void mod2::check_var_i(void);"@}]@}]@},
35001 @{module="mod3",
35002 files=[@{filename="/projec/gdb/testsuite/gdb.mi/mi-fortran-modules.f90",
35003 fullname="/projec/gdb/testsuite/gdb.mi/mi-fortran-modules.f90",
35004 symbols=[@{line="21",name="mod3::check_all",type="void (void)",
35005 description="void mod3::check_all(void);"@},
35006 @{line="27",name="mod3::check_mod2",type="void (void)",
35007 description="void mod3::check_mod2(void);"@}]@}]@},
35008 @{module="modmany",
35009 files=[@{filename="/project/gdb/testsuite/gdb.mi/mi-fortran-modules.f90",
35010 fullname="/project/gdb/testsuite/gdb.mi/mi-fortran-modules.f90",
35011 symbols=[@{line="35",name="modmany::check_some",type="void (void)",
35012 description="void modmany::check_some(void);"@}]@}]@},
35013 @{module="moduse",
35014 files=[@{filename="/project/gdb/testsuite/gdb.mi/mi-fortran-modules.f90",
35015 fullname="/project/gdb/testsuite/gdb.mi/mi-fortran-modules.f90",
35016 symbols=[@{line="44",name="moduse::check_all",type="void (void)",
35017 description="void moduse::check_all(void);"@},
35018 @{line="49",name="moduse::check_var_x",type="void (void)",
35019 description="void moduse::check_var_x(void);"@}]@}]@}]
35020@end group
35021@end smallexample
35022
35023@subheading The @code{-symbol-info-module-variables} Command
35024@findex -symbol-info-module-variables
35025@anchor{-symbol-info-module-variables}
35026
35027@subsubheading Synopsis
35028
35029@smallexample
35030 -symbol-info-module-variables [--module @var{module_regexp}]
35031 [--name @var{name_regexp}]
35032 [--type @var{type_regexp}]
35033@end smallexample
35034
35035@noindent
35036Return a list containing the names of all known variables within all
35037know Fortran modules. The variables are grouped by source file and
35038containing module, and shown with the line number on which each
35039variable is defined.
35040
35041The option @code{--module} only returns results for modules matching
35042@var{module_regexp}. The option @code{--name} only returns variables
35043whose name matches @var{name_regexp}, and @code{--type} only returns
35044variables whose type matches @var{type_regexp}.
35045
35046@subsubheading @value{GDBN} Command
35047
35048The corresponding @value{GDBN} command is @samp{info module variables}.
35049
35050@subsubheading Example
35051
35052@smallexample
35053@group
35054(gdb)
35055-symbol-info-module-variables
35056^done,symbols=
35057 [@{module="mod1",
35058 files=[@{filename="/project/gdb/testsuite/gdb.mi/mi-fortran-modules-2.f90",
35059 fullname="/project/gdb/testsuite/gdb.mi/mi-fortran-modules-2.f90",
35060 symbols=[@{line="18",name="mod1::var_const",type="integer(kind=4)",
35061 description="integer(kind=4) mod1::var_const;"@},
35062 @{line="17",name="mod1::var_i",type="integer(kind=4)",
35063 description="integer(kind=4) mod1::var_i;"@}]@}]@},
35064 @{module="mod2",
35065 files=[@{filename="/project/gdb/testsuite/gdb.mi/mi-fortran-modules-2.f90",
35066 fullname="/project/gdb/testsuite/gdb.mi/mi-fortran-modules-2.f90",
35067 symbols=[@{line="28",name="mod2::var_i",type="integer(kind=4)",
35068 description="integer(kind=4) mod2::var_i;"@}]@}]@},
35069 @{module="mod3",
35070 files=[@{filename="/project/gdb/testsuite/gdb.mi/mi-fortran-modules.f90",
35071 fullname="/project/gdb/testsuite/gdb.mi/mi-fortran-modules.f90",
35072 symbols=[@{line="18",name="mod3::mod1",type="integer(kind=4)",
35073 description="integer(kind=4) mod3::mod1;"@},
35074 @{line="17",name="mod3::mod2",type="integer(kind=4)",
35075 description="integer(kind=4) mod3::mod2;"@},
35076 @{line="19",name="mod3::var_i",type="integer(kind=4)",
35077 description="integer(kind=4) mod3::var_i;"@}]@}]@},
35078 @{module="modmany",
35079 files=[@{filename="/project/gdb/testsuite/gdb.mi/mi-fortran-modules.f90",
35080 fullname="/project/gdb/testsuite/gdb.mi/mi-fortran-modules.f90",
35081 symbols=[@{line="33",name="modmany::var_a",type="integer(kind=4)",
35082 description="integer(kind=4) modmany::var_a;"@},
35083 @{line="33",name="modmany::var_b",type="integer(kind=4)",
35084 description="integer(kind=4) modmany::var_b;"@},
35085 @{line="33",name="modmany::var_c",type="integer(kind=4)",
35086 description="integer(kind=4) modmany::var_c;"@},
35087 @{line="33",name="modmany::var_i",type="integer(kind=4)",
35088 description="integer(kind=4) modmany::var_i;"@}]@}]@},
35089 @{module="moduse",
35090 files=[@{filename="/project/gdb/testsuite/gdb.mi/mi-fortran-modules.f90",
35091 fullname="/project/gdb/testsuite/gdb.mi/mi-fortran-modules.f90",
35092 symbols=[@{line="42",name="moduse::var_x",type="integer(kind=4)",
35093 description="integer(kind=4) moduse::var_x;"@},
35094 @{line="42",name="moduse::var_y",type="integer(kind=4)",
35095 description="integer(kind=4) moduse::var_y;"@}]@}]@}]
35096@end group
35097@end smallexample
35098
db5960b4
AB
35099@subheading The @code{-symbol-info-modules} Command
35100@findex -symbol-info-modules
35101@anchor{-symbol-info-modules}
35102
35103@subsubheading Synopsis
35104
35105@smallexample
35106 -symbol-info-modules [--name @var{name_regexp}]
c2512106
AB
35107 [--max-results @var{limit}]
35108
db5960b4
AB
35109@end smallexample
35110
35111@noindent
35112Return a list containing the names of all known Fortran modules. The
35113modules are grouped by source file, and shown with the line number on
35114which each modules is defined.
35115
35116The option @code{--name} allows the modules returned to be filtered
35117based the name of the module.
35118
c2512106
AB
35119The option @code{--max-results} restricts the command to return no
35120more than @var{limit} results. If exactly @var{limit} results are
35121returned then there might be additional results available if a higher
35122limit is used.
35123
db5960b4
AB
35124@subsubheading @value{GDBN} Command
35125
35126The corresponding @value{GDBN} command is @samp{info modules}.
35127
35128@subsubheading Example
35129@smallexample
35130@group
35131(gdb)
35132-symbol-info-modules
35133^done,symbols=
35134 @{debug=
35135 [@{filename="/project/gdb/testsuite/gdb.mi/mi-fortran-modules-2.f90",
35136 fullname="/project/gdb/testsuite/gdb.mi/mi-fortran-modules-2.f90",
35137 symbols=[@{line="16",name="mod1"@},
35138 @{line="22",name="mod2"@}]@},
35139 @{filename="/project/gdb/testsuite/gdb.mi/mi-fortran-modules.f90",
35140 fullname="/project/gdb/testsuite/gdb.mi/mi-fortran-modules.f90",
35141 symbols=[@{line="16",name="mod3"@},
35142 @{line="22",name="modmany"@},
35143 @{line="26",name="moduse"@}]@}]@}
35144@end group
35145@group
35146(gdb)
35147-symbol-info-modules --name mod[123]
35148^done,symbols=
35149 @{debug=
35150 [@{filename="/project/gdb/testsuite/gdb.mi/mi-fortran-modules-2.f90",
35151 fullname="/project/gdb/testsuite/gdb.mi/mi-fortran-modules-2.f90",
35152 symbols=[@{line="16",name="mod1"@},
35153 @{line="22",name="mod2"@}]@},
35154 @{filename="/project/gdb/testsuite/gdb.mi/mi-fortran-modules.f90",
35155 fullname="/project/gdb/testsuite/gdb.mi/mi-fortran-modules.f90",
35156 symbols=[@{line="16",name="mod3"@}]@}]@}
35157@end group
35158@end smallexample
35159
7dc42066
AB
35160@subheading The @code{-symbol-info-types} Command
35161@findex -symbol-info-types
35162@anchor{-symbol-info-types}
922fbb7b
AC
35163
35164@subsubheading Synopsis
35165
35166@smallexample
7dc42066 35167 -symbol-info-types [--name @var{name_regexp}]
c2512106
AB
35168 [--max-results @var{limit}]
35169
922fbb7b
AC
35170@end smallexample
35171
7dc42066
AB
35172@noindent
35173Return a list of all defined types. The types are grouped by source
35174file, and shown with the line number on which each user defined type
35175is defined. Some base types are not defined in the source code but
35176are added to the debug information by the compiler, for example
35177@code{int}, @code{float}, etc.; these types do not have an associated
35178line number.
35179
35180The option @code{--name} allows the list of types returned to be
35181filtered by name.
922fbb7b 35182
c2512106
AB
35183The option @code{--max-results} restricts the command to return no
35184more than @var{limit} results. If exactly @var{limit} results are
35185returned then there might be additional results available if a higher
35186limit is used.
35187
922fbb7b
AC
35188@subsubheading @value{GDBN} Command
35189
7dc42066 35190The corresponding @value{GDBN} command is @samp{info types}.
922fbb7b
AC
35191
35192@subsubheading Example
7dc42066
AB
35193@smallexample
35194@group
35195(gdb)
35196-symbol-info-types
35197^done,symbols=
35198 @{debug=
35199 [@{filename="gdb.mi/mi-sym-info-1.c",
35200 fullname="/project/gdb/testsuite/gdb.mi/mi-sym-info-1.c",
35201 symbols=[@{name="float"@},
35202 @{name="int"@},
35203 @{line="27",name="typedef int my_int_t;"@}]@},
35204 @{filename="gdb.mi/mi-sym-info-2.c",
35205 fullname="/project/gdb.mi/mi-sym-info-2.c",
35206 symbols=[@{line="24",name="typedef float another_float_t;"@},
35207 @{line="23",name="typedef int another_int_t;"@},
35208 @{name="float"@},
35209 @{name="int"@}]@}]@}
35210@end group
35211@group
35212(gdb)
35213-symbol-info-types --name _int_
35214^done,symbols=
35215 @{debug=
35216 [@{filename="gdb.mi/mi-sym-info-1.c",
35217 fullname="/project/gdb/testsuite/gdb.mi/mi-sym-info-1.c",
35218 symbols=[@{line="27",name="typedef int my_int_t;"@}]@},
35219 @{filename="gdb.mi/mi-sym-info-2.c",
35220 fullname="/project/gdb.mi/mi-sym-info-2.c",
35221 symbols=[@{line="23",name="typedef int another_int_t;"@}]@}]@}
35222@end group
35223@end smallexample
35224
35225@subheading The @code{-symbol-info-variables} Command
35226@findex -symbol-info-variables
35227@anchor{-symbol-info-variables}
35228
35229@subsubheading Synopsis
35230
35231@smallexample
35232 -symbol-info-variables [--include-nondebug]
35233 [--type @var{type_regexp}]
35234 [--name @var{name_regexp}]
c2512106
AB
35235 [--max-results @var{limit}]
35236
7dc42066
AB
35237@end smallexample
35238
35239@noindent
35240Return a list containing the names and types for all global variables
35241taken from the debug information. The variables are grouped by source
35242file, and shown with the line number on which each variable is
35243defined.
35244
35245The @code{--include-nondebug} option causes the output to include
35246data symbols from the symbol table.
35247
35248The options @code{--type} and @code{--name} allow the symbols returned
35249to be filtered based on either the name of the variable, or the type
35250of the variable.
35251
c2512106
AB
35252The option @code{--max-results} restricts the command to return no
35253more than @var{limit} results. If exactly @var{limit} results are
35254returned then there might be additional results available if a higher
35255limit is used.
35256
7dc42066 35257@subsubheading @value{GDBN} Command
922fbb7b 35258
7dc42066 35259The corresponding @value{GDBN} command is @samp{info variables}.
922fbb7b 35260
7dc42066
AB
35261@subsubheading Example
35262@smallexample
35263@group
35264(gdb)
35265-symbol-info-variables
35266^done,symbols=
35267 @{debug=
35268 [@{filename="/project/gdb/testsuite/gdb.mi/mi-sym-info-1.c",
35269 fullname="/project/gdb/testsuite/gdb.mi/mi-sym-info-1.c",
35270 symbols=[@{line="25",name="global_f1",type="float",
35271 description="static float global_f1;"@},
35272 @{line="24",name="global_i1",type="int",
35273 description="static int global_i1;"@}]@},
35274 @{filename="/project/gdb/testsuite/gdb.mi/mi-sym-info-2.c",
35275 fullname="/project/gdb/testsuite/gdb.mi/mi-sym-info-2.c",
35276 symbols=[@{line="21",name="global_f2",type="int",
35277 description="int global_f2;"@},
35278 @{line="20",name="global_i2",type="int",
35279 description="int global_i2;"@},
35280 @{line="19",name="global_f1",type="float",
35281 description="static float global_f1;"@},
35282 @{line="18",name="global_i1",type="int",
35283 description="static int global_i1;"@}]@}]@}
35284@end group
35285@group
35286(gdb)
35287-symbol-info-variables --name f1
35288^done,symbols=
35289 @{debug=
35290 [@{filename="/project/gdb/testsuite/gdb.mi/mi-sym-info-1.c",
35291 fullname="/project/gdb/testsuite/gdb.mi/mi-sym-info-1.c",
35292 symbols=[@{line="25",name="global_f1",type="float",
35293 description="static float global_f1;"@}]@},
35294 @{filename="/project/gdb/testsuite/gdb.mi/mi-sym-info-2.c",
35295 fullname="/project/gdb/testsuite/gdb.mi/mi-sym-info-2.c",
35296 symbols=[@{line="19",name="global_f1",type="float",
35297 description="static float global_f1;"@}]@}]@}
35298@end group
35299@group
35300(gdb)
35301-symbol-info-variables --type float
35302^done,symbols=
35303 @{debug=
35304 [@{filename="/project/gdb/testsuite/gdb.mi/mi-sym-info-1.c",
35305 fullname="/project/gdb/testsuite/gdb.mi/mi-sym-info-1.c",
35306 symbols=[@{line="25",name="global_f1",type="float",
35307 description="static float global_f1;"@}]@},
35308 @{filename="/project/gdb/testsuite/gdb.mi/mi-sym-info-2.c",
35309 fullname="/project/gdb/testsuite/gdb.mi/mi-sym-info-2.c",
35310 symbols=[@{line="19",name="global_f1",type="float",
35311 description="static float global_f1;"@}]@}]@}
35312@end group
35313@group
35314(gdb)
35315-symbol-info-variables --include-nondebug
35316^done,symbols=
35317 @{debug=
35318 [@{filename="/project/gdb/testsuite/gdb.mi/mi-sym-info-1.c",
35319 fullname="/project/gdb/testsuite/gdb.mi/mi-sym-info-1.c",
35320 symbols=[@{line="25",name="global_f1",type="float",
35321 description="static float global_f1;"@},
35322 @{line="24",name="global_i1",type="int",
35323 description="static int global_i1;"@}]@},
35324 @{filename="/project/gdb/testsuite/gdb.mi/mi-sym-info-2.c",
35325 fullname="/project/gdb/testsuite/gdb.mi/mi-sym-info-2.c",
35326 symbols=[@{line="21",name="global_f2",type="int",
35327 description="int global_f2;"@},
35328 @{line="20",name="global_i2",type="int",
35329 description="int global_i2;"@},
35330 @{line="19",name="global_f1",type="float",
35331 description="static float global_f1;"@},
35332 @{line="18",name="global_i1",type="int",
35333 description="static int global_i1;"@}]@}],
35334 nondebug=
35335 [@{address="0x00000000004005d0",name="_IO_stdin_used"@},
35336 @{address="0x00000000004005d8",name="__dso_handle"@}
35337 ...
35338 ]@}
35339@end group
35340@end smallexample
35341
35342@ignore
a2c02241
NR
35343@subheading The @code{-symbol-info-line} Command
35344@findex -symbol-info-line
922fbb7b
AC
35345
35346@subsubheading Synopsis
35347
35348@smallexample
a2c02241 35349 -symbol-info-line
922fbb7b
AC
35350@end smallexample
35351
a2c02241 35352Show the core addresses of the code for a source line.
922fbb7b 35353
a2c02241 35354@subsubheading @value{GDBN} Command
922fbb7b 35355
a2c02241
NR
35356The corresponding @value{GDBN} command is @samp{info line}.
35357@code{gdbtk} has the @samp{gdb_get_line} and @samp{gdb_get_file} commands.
922fbb7b
AC
35358
35359@subsubheading Example
a2c02241 35360N.A.
922fbb7b
AC
35361
35362
a2c02241
NR
35363@subheading The @code{-symbol-info-symbol} Command
35364@findex -symbol-info-symbol
07f31aa6
DJ
35365
35366@subsubheading Synopsis
35367
a2c02241
NR
35368@smallexample
35369 -symbol-info-symbol @var{addr}
35370@end smallexample
07f31aa6 35371
a2c02241 35372Describe what symbol is at location @var{addr}.
07f31aa6 35373
a2c02241 35374@subsubheading @value{GDBN} Command
07f31aa6 35375
a2c02241 35376The corresponding @value{GDBN} command is @samp{info symbol}.
07f31aa6
DJ
35377
35378@subsubheading Example
a2c02241 35379N.A.
07f31aa6
DJ
35380
35381
a2c02241
NR
35382@subheading The @code{-symbol-list-functions} Command
35383@findex -symbol-list-functions
922fbb7b
AC
35384
35385@subsubheading Synopsis
35386
35387@smallexample
a2c02241 35388 -symbol-list-functions
922fbb7b
AC
35389@end smallexample
35390
a2c02241 35391List the functions in the executable.
922fbb7b
AC
35392
35393@subsubheading @value{GDBN} Command
35394
a2c02241
NR
35395@samp{info functions} in @value{GDBN}, @samp{gdb_listfunc} and
35396@samp{gdb_search} in @code{gdbtk}.
922fbb7b
AC
35397
35398@subsubheading Example
a2c02241 35399N.A.
9901a55b 35400@end ignore
922fbb7b
AC
35401
35402
a2c02241
NR
35403@subheading The @code{-symbol-list-lines} Command
35404@findex -symbol-list-lines
922fbb7b
AC
35405
35406@subsubheading Synopsis
35407
35408@smallexample
a2c02241 35409 -symbol-list-lines @var{filename}
922fbb7b
AC
35410@end smallexample
35411
a2c02241
NR
35412Print the list of lines that contain code and their associated program
35413addresses for the given source filename. The entries are sorted in
35414ascending PC order.
922fbb7b
AC
35415
35416@subsubheading @value{GDBN} Command
35417
a2c02241 35418There is no corresponding @value{GDBN} command.
922fbb7b
AC
35419
35420@subsubheading Example
a2c02241 35421@smallexample
594fe323 35422(gdb)
a2c02241
NR
35423-symbol-list-lines basics.c
35424^done,lines=[@{pc="0x08048554",line="7"@},@{pc="0x0804855a",line="8"@}]
594fe323 35425(gdb)
a2c02241 35426@end smallexample
922fbb7b
AC
35427
35428
9901a55b 35429@ignore
a2c02241
NR
35430@subheading The @code{-symbol-list-types} Command
35431@findex -symbol-list-types
922fbb7b
AC
35432
35433@subsubheading Synopsis
35434
35435@smallexample
a2c02241 35436 -symbol-list-types
922fbb7b
AC
35437@end smallexample
35438
a2c02241 35439List all the type names.
922fbb7b
AC
35440
35441@subsubheading @value{GDBN} Command
35442
a2c02241
NR
35443The corresponding commands are @samp{info types} in @value{GDBN},
35444@samp{gdb_search} in @code{gdbtk}.
922fbb7b
AC
35445
35446@subsubheading Example
35447N.A.
35448
35449
a2c02241
NR
35450@subheading The @code{-symbol-list-variables} Command
35451@findex -symbol-list-variables
922fbb7b
AC
35452
35453@subsubheading Synopsis
35454
35455@smallexample
a2c02241 35456 -symbol-list-variables
922fbb7b
AC
35457@end smallexample
35458
a2c02241 35459List all the global and static variable names.
922fbb7b
AC
35460
35461@subsubheading @value{GDBN} Command
35462
a2c02241 35463@samp{info variables} in @value{GDBN}, @samp{gdb_search} in @code{gdbtk}.
922fbb7b
AC
35464
35465@subsubheading Example
35466N.A.
35467
35468
a2c02241
NR
35469@subheading The @code{-symbol-locate} Command
35470@findex -symbol-locate
922fbb7b
AC
35471
35472@subsubheading Synopsis
35473
35474@smallexample
a2c02241 35475 -symbol-locate
922fbb7b
AC
35476@end smallexample
35477
922fbb7b
AC
35478@subsubheading @value{GDBN} Command
35479
a2c02241 35480@samp{gdb_loc} in @code{gdbtk}.
922fbb7b
AC
35481
35482@subsubheading Example
35483N.A.
35484
35485
a2c02241
NR
35486@subheading The @code{-symbol-type} Command
35487@findex -symbol-type
922fbb7b
AC
35488
35489@subsubheading Synopsis
35490
35491@smallexample
a2c02241 35492 -symbol-type @var{variable}
922fbb7b
AC
35493@end smallexample
35494
a2c02241 35495Show type of @var{variable}.
922fbb7b 35496
a2c02241 35497@subsubheading @value{GDBN} Command
922fbb7b 35498
a2c02241
NR
35499The corresponding @value{GDBN} command is @samp{ptype}, @code{gdbtk} has
35500@samp{gdb_obj_variable}.
35501
35502@subsubheading Example
35503N.A.
9901a55b 35504@end ignore
a2c02241
NR
35505
35506
35507@c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
35508@node GDB/MI File Commands
35509@section @sc{gdb/mi} File Commands
35510
35511This section describes the GDB/MI commands to specify executable file names
35512and to read in and obtain symbol table information.
35513
35514@subheading The @code{-file-exec-and-symbols} Command
35515@findex -file-exec-and-symbols
35516
35517@subsubheading Synopsis
922fbb7b
AC
35518
35519@smallexample
a2c02241 35520 -file-exec-and-symbols @var{file}
922fbb7b
AC
35521@end smallexample
35522
a2c02241
NR
35523Specify the executable file to be debugged. This file is the one from
35524which the symbol table is also read. If no file is specified, the
35525command clears the executable and symbol information. If breakpoints
35526are set when using this command with no arguments, @value{GDBN} will produce
35527error messages. Otherwise, no output is produced, except a completion
35528notification.
35529
922fbb7b
AC
35530@subsubheading @value{GDBN} Command
35531
a2c02241 35532The corresponding @value{GDBN} command is @samp{file}.
922fbb7b
AC
35533
35534@subsubheading Example
35535
35536@smallexample
594fe323 35537(gdb)
a2c02241
NR
35538-file-exec-and-symbols /kwikemart/marge/ezannoni/TRUNK/mbx/hello.mbx
35539^done
594fe323 35540(gdb)
922fbb7b
AC
35541@end smallexample
35542
922fbb7b 35543
a2c02241
NR
35544@subheading The @code{-file-exec-file} Command
35545@findex -file-exec-file
922fbb7b
AC
35546
35547@subsubheading Synopsis
35548
35549@smallexample
a2c02241 35550 -file-exec-file @var{file}
922fbb7b
AC
35551@end smallexample
35552
a2c02241
NR
35553Specify the executable file to be debugged. Unlike
35554@samp{-file-exec-and-symbols}, the symbol table is @emph{not} read
35555from this file. If used without argument, @value{GDBN} clears the information
35556about the executable file. No output is produced, except a completion
35557notification.
922fbb7b 35558
a2c02241
NR
35559@subsubheading @value{GDBN} Command
35560
35561The corresponding @value{GDBN} command is @samp{exec-file}.
922fbb7b
AC
35562
35563@subsubheading Example
a2c02241
NR
35564
35565@smallexample
594fe323 35566(gdb)
a2c02241
NR
35567-file-exec-file /kwikemart/marge/ezannoni/TRUNK/mbx/hello.mbx
35568^done
594fe323 35569(gdb)
a2c02241 35570@end smallexample
922fbb7b
AC
35571
35572
9901a55b 35573@ignore
a2c02241
NR
35574@subheading The @code{-file-list-exec-sections} Command
35575@findex -file-list-exec-sections
922fbb7b
AC
35576
35577@subsubheading Synopsis
35578
35579@smallexample
a2c02241 35580 -file-list-exec-sections
922fbb7b
AC
35581@end smallexample
35582
a2c02241
NR
35583List the sections of the current executable file.
35584
922fbb7b
AC
35585@subsubheading @value{GDBN} Command
35586
a2c02241
NR
35587The @value{GDBN} command @samp{info file} shows, among the rest, the same
35588information as this command. @code{gdbtk} has a corresponding command
35589@samp{gdb_load_info}.
922fbb7b
AC
35590
35591@subsubheading Example
35592N.A.
9901a55b 35593@end ignore
922fbb7b
AC
35594
35595
a2c02241
NR
35596@subheading The @code{-file-list-exec-source-file} Command
35597@findex -file-list-exec-source-file
922fbb7b
AC
35598
35599@subsubheading Synopsis
35600
35601@smallexample
a2c02241 35602 -file-list-exec-source-file
922fbb7b
AC
35603@end smallexample
35604
a2c02241 35605List the line number, the current source file, and the absolute path
44288b44
NR
35606to the current source file for the current executable. The macro
35607information field has a value of @samp{1} or @samp{0} depending on
35608whether or not the file includes preprocessor macro information.
922fbb7b
AC
35609
35610@subsubheading @value{GDBN} Command
35611
a2c02241 35612The @value{GDBN} equivalent is @samp{info source}
922fbb7b
AC
35613
35614@subsubheading Example
35615
922fbb7b 35616@smallexample
594fe323 35617(gdb)
a2c02241 35618123-file-list-exec-source-file
44288b44 35619123^done,line="1",file="foo.c",fullname="/home/bar/foo.c,macro-info="1"
594fe323 35620(gdb)
922fbb7b
AC
35621@end smallexample
35622
35623
a2c02241
NR
35624@subheading The @code{-file-list-exec-source-files} Command
35625@findex -file-list-exec-source-files
922fbb7b
AC
35626
35627@subsubheading Synopsis
35628
35629@smallexample
a2c02241 35630 -file-list-exec-source-files
922fbb7b
AC
35631@end smallexample
35632
a2c02241
NR
35633List the source files for the current executable.
35634
f35a17b5
JK
35635It will always output both the filename and fullname (absolute file
35636name) of a source file.
922fbb7b
AC
35637
35638@subsubheading @value{GDBN} Command
35639
a2c02241
NR
35640The @value{GDBN} equivalent is @samp{info sources}.
35641@code{gdbtk} has an analogous command @samp{gdb_listfiles}.
922fbb7b
AC
35642
35643@subsubheading Example
922fbb7b 35644@smallexample
594fe323 35645(gdb)
a2c02241
NR
35646-file-list-exec-source-files
35647^done,files=[
35648@{file=foo.c,fullname=/home/foo.c@},
35649@{file=/home/bar.c,fullname=/home/bar.c@},
35650@{file=gdb_could_not_find_fullpath.c@}]
594fe323 35651(gdb)
922fbb7b
AC
35652@end smallexample
35653
a2c02241
NR
35654@subheading The @code{-file-list-shared-libraries} Command
35655@findex -file-list-shared-libraries
922fbb7b 35656
a2c02241 35657@subsubheading Synopsis
922fbb7b 35658
a2c02241 35659@smallexample
51457a05 35660 -file-list-shared-libraries [ @var{regexp} ]
a2c02241 35661@end smallexample
922fbb7b 35662
a2c02241 35663List the shared libraries in the program.
51457a05
MAL
35664With a regular expression @var{regexp}, only those libraries whose
35665names match @var{regexp} are listed.
922fbb7b 35666
a2c02241 35667@subsubheading @value{GDBN} Command
922fbb7b 35668
51457a05
MAL
35669The corresponding @value{GDBN} command is @samp{info shared}. The fields
35670have a similar meaning to the @code{=library-loaded} notification.
35671The @code{ranges} field specifies the multiple segments belonging to this
35672library. Each range has the following fields:
35673
35674@table @samp
35675@item from
35676The address defining the inclusive lower bound of the segment.
35677@item to
35678The address defining the exclusive upper bound of the segment.
35679@end table
922fbb7b 35680
a2c02241 35681@subsubheading Example
51457a05
MAL
35682@smallexample
35683(gdb)
35684-file-list-exec-source-files
35685^done,shared-libraries=[
35686@{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"@}]@},
35687@{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"@}]@}]
35688(gdb)
35689@end smallexample
922fbb7b
AC
35690
35691
51457a05 35692@ignore
a2c02241
NR
35693@subheading The @code{-file-list-symbol-files} Command
35694@findex -file-list-symbol-files
922fbb7b 35695
a2c02241 35696@subsubheading Synopsis
922fbb7b 35697
a2c02241
NR
35698@smallexample
35699 -file-list-symbol-files
35700@end smallexample
922fbb7b 35701
a2c02241 35702List symbol files.
922fbb7b 35703
a2c02241 35704@subsubheading @value{GDBN} Command
922fbb7b 35705
a2c02241 35706The corresponding @value{GDBN} command is @samp{info file} (part of it).
922fbb7b 35707
a2c02241
NR
35708@subsubheading Example
35709N.A.
9901a55b 35710@end ignore
922fbb7b 35711
922fbb7b 35712
a2c02241
NR
35713@subheading The @code{-file-symbol-file} Command
35714@findex -file-symbol-file
922fbb7b 35715
a2c02241 35716@subsubheading Synopsis
922fbb7b 35717
a2c02241
NR
35718@smallexample
35719 -file-symbol-file @var{file}
35720@end smallexample
922fbb7b 35721
a2c02241
NR
35722Read symbol table info from the specified @var{file} argument. When
35723used without arguments, clears @value{GDBN}'s symbol table info. No output is
35724produced, except for a completion notification.
922fbb7b 35725
a2c02241 35726@subsubheading @value{GDBN} Command
922fbb7b 35727
a2c02241 35728The corresponding @value{GDBN} command is @samp{symbol-file}.
922fbb7b 35729
a2c02241 35730@subsubheading Example
922fbb7b 35731
a2c02241 35732@smallexample
594fe323 35733(gdb)
a2c02241
NR
35734-file-symbol-file /kwikemart/marge/ezannoni/TRUNK/mbx/hello.mbx
35735^done
594fe323 35736(gdb)
a2c02241 35737@end smallexample
922fbb7b 35738
a2c02241 35739@ignore
a2c02241
NR
35740@c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
35741@node GDB/MI Memory Overlay Commands
35742@section @sc{gdb/mi} Memory Overlay Commands
922fbb7b 35743
a2c02241 35744The memory overlay commands are not implemented.
922fbb7b 35745
a2c02241 35746@c @subheading -overlay-auto
922fbb7b 35747
a2c02241 35748@c @subheading -overlay-list-mapping-state
922fbb7b 35749
a2c02241 35750@c @subheading -overlay-list-overlays
922fbb7b 35751
a2c02241 35752@c @subheading -overlay-map
922fbb7b 35753
a2c02241 35754@c @subheading -overlay-off
922fbb7b 35755
a2c02241 35756@c @subheading -overlay-on
922fbb7b 35757
a2c02241 35758@c @subheading -overlay-unmap
922fbb7b 35759
a2c02241
NR
35760@c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
35761@node GDB/MI Signal Handling Commands
35762@section @sc{gdb/mi} Signal Handling Commands
922fbb7b 35763
a2c02241 35764Signal handling commands are not implemented.
922fbb7b 35765
a2c02241 35766@c @subheading -signal-handle
922fbb7b 35767
a2c02241 35768@c @subheading -signal-list-handle-actions
922fbb7b 35769
a2c02241
NR
35770@c @subheading -signal-list-signal-types
35771@end ignore
922fbb7b 35772
922fbb7b 35773
a2c02241
NR
35774@c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
35775@node GDB/MI Target Manipulation
35776@section @sc{gdb/mi} Target Manipulation Commands
922fbb7b
AC
35777
35778
a2c02241
NR
35779@subheading The @code{-target-attach} Command
35780@findex -target-attach
922fbb7b
AC
35781
35782@subsubheading Synopsis
35783
35784@smallexample
c3b108f7 35785 -target-attach @var{pid} | @var{gid} | @var{file}
922fbb7b
AC
35786@end smallexample
35787
c3b108f7
VP
35788Attach to a process @var{pid} or a file @var{file} outside of
35789@value{GDBN}, or a thread group @var{gid}. If attaching to a thread
35790group, the id previously returned by
35791@samp{-list-thread-groups --available} must be used.
922fbb7b 35792
79a6e687 35793@subsubheading @value{GDBN} Command
922fbb7b 35794
a2c02241 35795The corresponding @value{GDBN} command is @samp{attach}.
922fbb7b 35796
a2c02241 35797@subsubheading Example
b56e7235
VP
35798@smallexample
35799(gdb)
35800-target-attach 34
35801=thread-created,id="1"
5ae4183a 35802*stopped,thread-id="1",frame=@{addr="0xb7f7e410",func="bar",args=[]@}
b56e7235
VP
35803^done
35804(gdb)
35805@end smallexample
a2c02241 35806
9901a55b 35807@ignore
a2c02241
NR
35808@subheading The @code{-target-compare-sections} Command
35809@findex -target-compare-sections
922fbb7b
AC
35810
35811@subsubheading Synopsis
35812
35813@smallexample
a2c02241 35814 -target-compare-sections [ @var{section} ]
922fbb7b
AC
35815@end smallexample
35816
a2c02241
NR
35817Compare data of section @var{section} on target to the exec file.
35818Without the argument, all sections are compared.
922fbb7b 35819
a2c02241 35820@subsubheading @value{GDBN} Command
922fbb7b 35821
a2c02241 35822The @value{GDBN} equivalent is @samp{compare-sections}.
922fbb7b 35823
a2c02241
NR
35824@subsubheading Example
35825N.A.
9901a55b 35826@end ignore
a2c02241
NR
35827
35828
35829@subheading The @code{-target-detach} Command
35830@findex -target-detach
922fbb7b
AC
35831
35832@subsubheading Synopsis
35833
35834@smallexample
c3b108f7 35835 -target-detach [ @var{pid} | @var{gid} ]
922fbb7b
AC
35836@end smallexample
35837
a2c02241 35838Detach from the remote target which normally resumes its execution.
c3b108f7
VP
35839If either @var{pid} or @var{gid} is specified, detaches from either
35840the specified process, or specified thread group. There's no output.
a2c02241 35841
79a6e687 35842@subsubheading @value{GDBN} Command
a2c02241
NR
35843
35844The corresponding @value{GDBN} command is @samp{detach}.
35845
35846@subsubheading Example
922fbb7b
AC
35847
35848@smallexample
594fe323 35849(gdb)
a2c02241
NR
35850-target-detach
35851^done
594fe323 35852(gdb)
922fbb7b
AC
35853@end smallexample
35854
35855
a2c02241
NR
35856@subheading The @code{-target-disconnect} Command
35857@findex -target-disconnect
922fbb7b
AC
35858
35859@subsubheading Synopsis
35860
123dc839 35861@smallexample
a2c02241 35862 -target-disconnect
123dc839 35863@end smallexample
922fbb7b 35864
a2c02241
NR
35865Disconnect from the remote target. There's no output and the target is
35866generally not resumed.
35867
79a6e687 35868@subsubheading @value{GDBN} Command
a2c02241
NR
35869
35870The corresponding @value{GDBN} command is @samp{disconnect}.
bc8ced35
NR
35871
35872@subsubheading Example
922fbb7b
AC
35873
35874@smallexample
594fe323 35875(gdb)
a2c02241
NR
35876-target-disconnect
35877^done
594fe323 35878(gdb)
922fbb7b
AC
35879@end smallexample
35880
35881
a2c02241
NR
35882@subheading The @code{-target-download} Command
35883@findex -target-download
922fbb7b
AC
35884
35885@subsubheading Synopsis
35886
35887@smallexample
a2c02241 35888 -target-download
922fbb7b
AC
35889@end smallexample
35890
a2c02241
NR
35891Loads the executable onto the remote target.
35892It prints out an update message every half second, which includes the fields:
35893
35894@table @samp
35895@item section
35896The name of the section.
35897@item section-sent
35898The size of what has been sent so far for that section.
35899@item section-size
35900The size of the section.
35901@item total-sent
35902The total size of what was sent so far (the current and the previous sections).
35903@item total-size
35904The size of the overall executable to download.
35905@end table
35906
35907@noindent
35908Each message is sent as status record (@pxref{GDB/MI Output Syntax, ,
35909@sc{gdb/mi} Output Syntax}).
35910
35911In addition, it prints the name and size of the sections, as they are
35912downloaded. These messages include the following fields:
35913
35914@table @samp
35915@item section
35916The name of the section.
35917@item section-size
35918The size of the section.
35919@item total-size
35920The size of the overall executable to download.
35921@end table
35922
35923@noindent
35924At the end, a summary is printed.
35925
35926@subsubheading @value{GDBN} Command
35927
35928The corresponding @value{GDBN} command is @samp{load}.
35929
35930@subsubheading Example
35931
35932Note: each status message appears on a single line. Here the messages
35933have been broken down so that they can fit onto a page.
922fbb7b
AC
35934
35935@smallexample
594fe323 35936(gdb)
a2c02241
NR
35937-target-download
35938+download,@{section=".text",section-size="6668",total-size="9880"@}
35939+download,@{section=".text",section-sent="512",section-size="6668",
35940total-sent="512",total-size="9880"@}
35941+download,@{section=".text",section-sent="1024",section-size="6668",
35942total-sent="1024",total-size="9880"@}
35943+download,@{section=".text",section-sent="1536",section-size="6668",
35944total-sent="1536",total-size="9880"@}
35945+download,@{section=".text",section-sent="2048",section-size="6668",
35946total-sent="2048",total-size="9880"@}
35947+download,@{section=".text",section-sent="2560",section-size="6668",
35948total-sent="2560",total-size="9880"@}
35949+download,@{section=".text",section-sent="3072",section-size="6668",
35950total-sent="3072",total-size="9880"@}
35951+download,@{section=".text",section-sent="3584",section-size="6668",
35952total-sent="3584",total-size="9880"@}
35953+download,@{section=".text",section-sent="4096",section-size="6668",
35954total-sent="4096",total-size="9880"@}
35955+download,@{section=".text",section-sent="4608",section-size="6668",
35956total-sent="4608",total-size="9880"@}
35957+download,@{section=".text",section-sent="5120",section-size="6668",
35958total-sent="5120",total-size="9880"@}
35959+download,@{section=".text",section-sent="5632",section-size="6668",
35960total-sent="5632",total-size="9880"@}
35961+download,@{section=".text",section-sent="6144",section-size="6668",
35962total-sent="6144",total-size="9880"@}
35963+download,@{section=".text",section-sent="6656",section-size="6668",
35964total-sent="6656",total-size="9880"@}
35965+download,@{section=".init",section-size="28",total-size="9880"@}
35966+download,@{section=".fini",section-size="28",total-size="9880"@}
35967+download,@{section=".data",section-size="3156",total-size="9880"@}
35968+download,@{section=".data",section-sent="512",section-size="3156",
35969total-sent="7236",total-size="9880"@}
35970+download,@{section=".data",section-sent="1024",section-size="3156",
35971total-sent="7748",total-size="9880"@}
35972+download,@{section=".data",section-sent="1536",section-size="3156",
35973total-sent="8260",total-size="9880"@}
35974+download,@{section=".data",section-sent="2048",section-size="3156",
35975total-sent="8772",total-size="9880"@}
35976+download,@{section=".data",section-sent="2560",section-size="3156",
35977total-sent="9284",total-size="9880"@}
35978+download,@{section=".data",section-sent="3072",section-size="3156",
35979total-sent="9796",total-size="9880"@}
35980^done,address="0x10004",load-size="9880",transfer-rate="6586",
35981write-rate="429"
594fe323 35982(gdb)
922fbb7b
AC
35983@end smallexample
35984
35985
9901a55b 35986@ignore
a2c02241
NR
35987@subheading The @code{-target-exec-status} Command
35988@findex -target-exec-status
922fbb7b
AC
35989
35990@subsubheading Synopsis
35991
35992@smallexample
a2c02241 35993 -target-exec-status
922fbb7b
AC
35994@end smallexample
35995
a2c02241
NR
35996Provide information on the state of the target (whether it is running or
35997not, for instance).
922fbb7b 35998
a2c02241 35999@subsubheading @value{GDBN} Command
922fbb7b 36000
a2c02241
NR
36001There's no equivalent @value{GDBN} command.
36002
36003@subsubheading Example
36004N.A.
922fbb7b 36005
a2c02241
NR
36006
36007@subheading The @code{-target-list-available-targets} Command
36008@findex -target-list-available-targets
922fbb7b
AC
36009
36010@subsubheading Synopsis
36011
36012@smallexample
a2c02241 36013 -target-list-available-targets
922fbb7b
AC
36014@end smallexample
36015
a2c02241 36016List the possible targets to connect to.
922fbb7b 36017
a2c02241 36018@subsubheading @value{GDBN} Command
922fbb7b 36019
a2c02241 36020The corresponding @value{GDBN} command is @samp{help target}.
922fbb7b 36021
a2c02241
NR
36022@subsubheading Example
36023N.A.
36024
36025
36026@subheading The @code{-target-list-current-targets} Command
36027@findex -target-list-current-targets
922fbb7b
AC
36028
36029@subsubheading Synopsis
36030
36031@smallexample
a2c02241 36032 -target-list-current-targets
922fbb7b
AC
36033@end smallexample
36034
a2c02241 36035Describe the current target.
922fbb7b 36036
a2c02241 36037@subsubheading @value{GDBN} Command
922fbb7b 36038
a2c02241
NR
36039The corresponding information is printed by @samp{info file} (among
36040other things).
922fbb7b 36041
a2c02241
NR
36042@subsubheading Example
36043N.A.
36044
36045
36046@subheading The @code{-target-list-parameters} Command
36047@findex -target-list-parameters
922fbb7b
AC
36048
36049@subsubheading Synopsis
36050
36051@smallexample
a2c02241 36052 -target-list-parameters
922fbb7b
AC
36053@end smallexample
36054
a2c02241 36055@c ????
9901a55b 36056@end ignore
a2c02241
NR
36057
36058@subsubheading @value{GDBN} Command
36059
36060No equivalent.
922fbb7b
AC
36061
36062@subsubheading Example
a2c02241
NR
36063N.A.
36064
78cbbba8
LM
36065@subheading The @code{-target-flash-erase} Command
36066@findex -target-flash-erase
36067
36068@subsubheading Synopsis
36069
36070@smallexample
36071 -target-flash-erase
36072@end smallexample
36073
36074Erases all known flash memory regions on the target.
36075
36076The corresponding @value{GDBN} command is @samp{flash-erase}.
36077
36078The output is a list of flash regions that have been erased, with starting
36079addresses and memory region sizes.
36080
36081@smallexample
36082(gdb)
36083-target-flash-erase
36084^done,erased-regions=@{address="0x0",size="0x40000"@}
36085(gdb)
36086@end smallexample
a2c02241
NR
36087
36088@subheading The @code{-target-select} Command
36089@findex -target-select
36090
36091@subsubheading Synopsis
922fbb7b
AC
36092
36093@smallexample
a2c02241 36094 -target-select @var{type} @var{parameters @dots{}}
922fbb7b
AC
36095@end smallexample
36096
a2c02241 36097Connect @value{GDBN} to the remote target. This command takes two args:
922fbb7b 36098
a2c02241
NR
36099@table @samp
36100@item @var{type}
75c99385 36101The type of target, for instance @samp{remote}, etc.
a2c02241
NR
36102@item @var{parameters}
36103Device names, host names and the like. @xref{Target Commands, ,
79a6e687 36104Commands for Managing Targets}, for more details.
a2c02241
NR
36105@end table
36106
36107The output is a connection notification, followed by the address at
36108which the target program is, in the following form:
922fbb7b
AC
36109
36110@smallexample
a2c02241
NR
36111^connected,addr="@var{address}",func="@var{function name}",
36112 args=[@var{arg list}]
922fbb7b
AC
36113@end smallexample
36114
a2c02241
NR
36115@subsubheading @value{GDBN} Command
36116
36117The corresponding @value{GDBN} command is @samp{target}.
265eeb58
NR
36118
36119@subsubheading Example
922fbb7b 36120
265eeb58 36121@smallexample
594fe323 36122(gdb)
75c99385 36123-target-select remote /dev/ttya
a2c02241 36124^connected,addr="0xfe00a300",func="??",args=[]
594fe323 36125(gdb)
265eeb58 36126@end smallexample
ef21caaf 36127
a6b151f1
DJ
36128@c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
36129@node GDB/MI File Transfer Commands
36130@section @sc{gdb/mi} File Transfer Commands
36131
36132
36133@subheading The @code{-target-file-put} Command
36134@findex -target-file-put
36135
36136@subsubheading Synopsis
36137
36138@smallexample
36139 -target-file-put @var{hostfile} @var{targetfile}
36140@end smallexample
36141
36142Copy file @var{hostfile} from the host system (the machine running
36143@value{GDBN}) to @var{targetfile} on the target system.
36144
36145@subsubheading @value{GDBN} Command
36146
36147The corresponding @value{GDBN} command is @samp{remote put}.
36148
36149@subsubheading Example
36150
36151@smallexample
36152(gdb)
36153-target-file-put localfile remotefile
36154^done
36155(gdb)
36156@end smallexample
36157
36158
1763a388 36159@subheading The @code{-target-file-get} Command
a6b151f1
DJ
36160@findex -target-file-get
36161
36162@subsubheading Synopsis
36163
36164@smallexample
36165 -target-file-get @var{targetfile} @var{hostfile}
36166@end smallexample
36167
36168Copy file @var{targetfile} from the target system to @var{hostfile}
36169on the host system.
36170
36171@subsubheading @value{GDBN} Command
36172
36173The corresponding @value{GDBN} command is @samp{remote get}.
36174
36175@subsubheading Example
36176
36177@smallexample
36178(gdb)
36179-target-file-get remotefile localfile
36180^done
36181(gdb)
36182@end smallexample
36183
36184
36185@subheading The @code{-target-file-delete} Command
36186@findex -target-file-delete
36187
36188@subsubheading Synopsis
36189
36190@smallexample
36191 -target-file-delete @var{targetfile}
36192@end smallexample
36193
36194Delete @var{targetfile} from the target system.
36195
36196@subsubheading @value{GDBN} Command
36197
36198The corresponding @value{GDBN} command is @samp{remote delete}.
36199
36200@subsubheading Example
36201
36202@smallexample
36203(gdb)
36204-target-file-delete remotefile
36205^done
36206(gdb)
36207@end smallexample
36208
36209
58d06528
JB
36210@c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
36211@node GDB/MI Ada Exceptions Commands
36212@section Ada Exceptions @sc{gdb/mi} Commands
36213
36214@subheading The @code{-info-ada-exceptions} Command
36215@findex -info-ada-exceptions
36216
36217@subsubheading Synopsis
36218
36219@smallexample
36220 -info-ada-exceptions [ @var{regexp}]
36221@end smallexample
36222
36223List all Ada exceptions defined within the program being debugged.
36224With a regular expression @var{regexp}, only those exceptions whose
36225names match @var{regexp} are listed.
36226
36227@subsubheading @value{GDBN} Command
36228
36229The corresponding @value{GDBN} command is @samp{info exceptions}.
36230
36231@subsubheading Result
36232
36233The result is a table of Ada exceptions. The following columns are
36234defined for each exception:
36235
36236@table @samp
36237@item name
36238The name of the exception.
36239
36240@item address
36241The address of the exception.
36242
36243@end table
36244
36245@subsubheading Example
36246
36247@smallexample
36248-info-ada-exceptions aint
36249^done,ada-exceptions=@{nr_rows="2",nr_cols="2",
36250hdr=[@{width="1",alignment="-1",col_name="name",colhdr="Name"@},
36251@{width="1",alignment="-1",col_name="address",colhdr="Address"@}],
36252body=[@{name="constraint_error",address="0x0000000000613da0"@},
36253@{name="const.aint_global_e",address="0x0000000000613b00"@}]@}
36254@end smallexample
36255
36256@subheading Catching Ada Exceptions
36257
36258The commands describing how to ask @value{GDBN} to stop when a program
36259raises an exception are described at @ref{Ada Exception GDB/MI
36260Catchpoint Commands}.
36261
36262
ef21caaf 36263@c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
d192b373
JB
36264@node GDB/MI Support Commands
36265@section @sc{gdb/mi} Support Commands
ef21caaf 36266
d192b373
JB
36267Since new commands and features get regularly added to @sc{gdb/mi},
36268some commands are available to help front-ends query the debugger
36269about support for these capabilities. Similarly, it is also possible
36270to query @value{GDBN} about target support of certain features.
ef21caaf 36271
6b7cbff1
JB
36272@subheading The @code{-info-gdb-mi-command} Command
36273@cindex @code{-info-gdb-mi-command}
36274@findex -info-gdb-mi-command
36275
36276@subsubheading Synopsis
36277
36278@smallexample
36279 -info-gdb-mi-command @var{cmd_name}
36280@end smallexample
36281
36282Query support for the @sc{gdb/mi} command named @var{cmd_name}.
36283
36284Note that the dash (@code{-}) starting all @sc{gdb/mi} commands
36285is technically not part of the command name (@pxref{GDB/MI Input
36286Syntax}), and thus should be omitted in @var{cmd_name}. However,
36287for ease of use, this command also accepts the form with the leading
36288dash.
36289
36290@subsubheading @value{GDBN} Command
36291
36292There is no corresponding @value{GDBN} command.
36293
36294@subsubheading Result
36295
36296The result is a tuple. There is currently only one field:
36297
36298@table @samp
36299@item exists
36300This field is equal to @code{"true"} if the @sc{gdb/mi} command exists,
36301@code{"false"} otherwise.
36302
36303@end table
36304
36305@subsubheading Example
36306
36307Here is an example where the @sc{gdb/mi} command does not exist:
36308
36309@smallexample
36310-info-gdb-mi-command unsupported-command
36311^done,command=@{exists="false"@}
36312@end smallexample
36313
36314@noindent
36315And here is an example where the @sc{gdb/mi} command is known
36316to the debugger:
36317
36318@smallexample
36319-info-gdb-mi-command symbol-list-lines
36320^done,command=@{exists="true"@}
36321@end smallexample
36322
084344da
VP
36323@subheading The @code{-list-features} Command
36324@findex -list-features
9b26f0fb 36325@cindex supported @sc{gdb/mi} features, list
084344da
VP
36326
36327Returns a list of particular features of the MI protocol that
36328this version of gdb implements. A feature can be a command,
36329or a new field in an output of some command, or even an
36330important bugfix. While a frontend can sometimes detect presence
36331of a feature at runtime, it is easier to perform detection at debugger
d192b373 36332startup.
084344da
VP
36333
36334The command returns a list of strings, with each string naming an
36335available feature. Each returned string is just a name, it does not
d192b373 36336have any internal structure. The list of possible feature names
084344da
VP
36337is given below.
36338
36339Example output:
36340
36341@smallexample
36342(gdb) -list-features
36343^done,result=["feature1","feature2"]
36344@end smallexample
36345
36346The current list of features is:
36347
edef6000 36348@ftable @samp
30e026bb 36349@item frozen-varobjs
a05336a1 36350Indicates support for the @code{-var-set-frozen} command, as well
6b92c0d3 36351as possible presence of the @code{frozen} field in the output
30e026bb
VP
36352of @code{-varobj-create}.
36353@item pending-breakpoints
a05336a1
JB
36354Indicates support for the @option{-f} option to the @code{-break-insert}
36355command.
b6313243 36356@item python
a05336a1 36357Indicates Python scripting support, Python-based
b6313243
TT
36358pretty-printing commands, and possible presence of the
36359@samp{display_hint} field in the output of @code{-var-list-children}
30e026bb 36360@item thread-info
a05336a1 36361Indicates support for the @code{-thread-info} command.
8dedea02 36362@item data-read-memory-bytes
a05336a1 36363Indicates support for the @code{-data-read-memory-bytes} and the
8dedea02 36364@code{-data-write-memory-bytes} commands.
39c4d40a
TT
36365@item breakpoint-notifications
36366Indicates that changes to breakpoints and breakpoints created via the
36367CLI will be announced via async records.
5d77fe44 36368@item ada-task-info
6adcee18 36369Indicates support for the @code{-ada-task-info} command.
422ad5c2
JB
36370@item language-option
36371Indicates that all @sc{gdb/mi} commands accept the @option{--language}
36372option (@pxref{Context management}).
6b7cbff1
JB
36373@item info-gdb-mi-command
36374Indicates support for the @code{-info-gdb-mi-command} command.
2ea126fa
JB
36375@item undefined-command-error-code
36376Indicates support for the "undefined-command" error code in error result
36377records, produced when trying to execute an undefined @sc{gdb/mi} command
36378(@pxref{GDB/MI Result Records}).
72bfa06c
JB
36379@item exec-run-start-option
36380Indicates that the @code{-exec-run} command supports the @option{--start}
36381option (@pxref{GDB/MI Program Execution}).
26fb3983
JV
36382@item data-disassemble-a-option
36383Indicates that the @code{-data-disassemble} command supports the @option{-a}
36384option (@pxref{GDB/MI Data Manipulation}).
edef6000 36385@end ftable
084344da 36386
c6ebd6cf
VP
36387@subheading The @code{-list-target-features} Command
36388@findex -list-target-features
36389
36390Returns a list of particular features that are supported by the
36391target. Those features affect the permitted MI commands, but
36392unlike the features reported by the @code{-list-features} command, the
36393features depend on which target GDB is using at the moment. Whenever
36394a target can change, due to commands such as @code{-target-select},
36395@code{-target-attach} or @code{-exec-run}, the list of target features
36396may change, and the frontend should obtain it again.
36397Example output:
36398
36399@smallexample
b3d3b4bd 36400(gdb) -list-target-features
c6ebd6cf
VP
36401^done,result=["async"]
36402@end smallexample
36403
36404The current list of features is:
36405
36406@table @samp
36407@item async
36408Indicates that the target is capable of asynchronous command
36409execution, which means that @value{GDBN} will accept further commands
36410while the target is running.
36411
f75d858b
MK
36412@item reverse
36413Indicates that the target is capable of reverse execution.
36414@xref{Reverse Execution}, for more information.
36415
c6ebd6cf
VP
36416@end table
36417
d192b373
JB
36418@c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
36419@node GDB/MI Miscellaneous Commands
36420@section Miscellaneous @sc{gdb/mi} Commands
36421
36422@c @subheading -gdb-complete
36423
36424@subheading The @code{-gdb-exit} Command
36425@findex -gdb-exit
36426
36427@subsubheading Synopsis
36428
36429@smallexample
36430 -gdb-exit
36431@end smallexample
36432
36433Exit @value{GDBN} immediately.
36434
36435@subsubheading @value{GDBN} Command
36436
36437Approximately corresponds to @samp{quit}.
36438
36439@subsubheading Example
36440
36441@smallexample
36442(gdb)
36443-gdb-exit
36444^exit
36445@end smallexample
36446
36447
36448@ignore
36449@subheading The @code{-exec-abort} Command
36450@findex -exec-abort
36451
36452@subsubheading Synopsis
36453
36454@smallexample
36455 -exec-abort
36456@end smallexample
36457
36458Kill the inferior running program.
36459
36460@subsubheading @value{GDBN} Command
36461
36462The corresponding @value{GDBN} command is @samp{kill}.
36463
36464@subsubheading Example
36465N.A.
36466@end ignore
36467
36468
36469@subheading The @code{-gdb-set} Command
36470@findex -gdb-set
36471
36472@subsubheading Synopsis
36473
36474@smallexample
36475 -gdb-set
36476@end smallexample
36477
36478Set an internal @value{GDBN} variable.
36479@c IS THIS A DOLLAR VARIABLE? OR SOMETHING LIKE ANNOTATE ?????
36480
36481@subsubheading @value{GDBN} Command
36482
36483The corresponding @value{GDBN} command is @samp{set}.
36484
36485@subsubheading Example
36486
36487@smallexample
36488(gdb)
36489-gdb-set $foo=3
36490^done
36491(gdb)
36492@end smallexample
36493
36494
36495@subheading The @code{-gdb-show} Command
36496@findex -gdb-show
36497
36498@subsubheading Synopsis
36499
36500@smallexample
36501 -gdb-show
36502@end smallexample
36503
36504Show the current value of a @value{GDBN} variable.
36505
36506@subsubheading @value{GDBN} Command
36507
36508The corresponding @value{GDBN} command is @samp{show}.
36509
36510@subsubheading Example
36511
36512@smallexample
36513(gdb)
36514-gdb-show annotate
36515^done,value="0"
36516(gdb)
36517@end smallexample
36518
36519@c @subheading -gdb-source
36520
36521
36522@subheading The @code{-gdb-version} Command
36523@findex -gdb-version
36524
36525@subsubheading Synopsis
36526
36527@smallexample
36528 -gdb-version
36529@end smallexample
36530
36531Show version information for @value{GDBN}. Used mostly in testing.
36532
36533@subsubheading @value{GDBN} Command
36534
36535The @value{GDBN} equivalent is @samp{show version}. @value{GDBN} by
36536default shows this information when you start an interactive session.
36537
36538@subsubheading Example
36539
36540@c This example modifies the actual output from GDB to avoid overfull
36541@c box in TeX.
36542@smallexample
36543(gdb)
36544-gdb-version
36545~GNU gdb 5.2.1
36546~Copyright 2000 Free Software Foundation, Inc.
36547~GDB is free software, covered by the GNU General Public License, and
36548~you are welcome to change it and/or distribute copies of it under
36549~ certain conditions.
36550~Type "show copying" to see the conditions.
36551~There is absolutely no warranty for GDB. Type "show warranty" for
36552~ details.
36553~This GDB was configured as
36554 "--host=sparc-sun-solaris2.5.1 --target=ppc-eabi".
36555^done
36556(gdb)
36557@end smallexample
36558
c3b108f7
VP
36559@subheading The @code{-list-thread-groups} Command
36560@findex -list-thread-groups
36561
36562@subheading Synopsis
36563
36564@smallexample
dc146f7c 36565-list-thread-groups [ --available ] [ --recurse 1 ] [ @var{group} ... ]
c3b108f7
VP
36566@end smallexample
36567
dc146f7c
VP
36568Lists thread groups (@pxref{Thread groups}). When a single thread
36569group is passed as the argument, lists the children of that group.
36570When several thread group are passed, lists information about those
36571thread groups. Without any parameters, lists information about all
36572top-level thread groups.
36573
36574Normally, thread groups that are being debugged are reported.
36575With the @samp{--available} option, @value{GDBN} reports thread groups
36576available on the target.
36577
36578The output of this command may have either a @samp{threads} result or
36579a @samp{groups} result. The @samp{thread} result has a list of tuples
36580as value, with each tuple describing a thread (@pxref{GDB/MI Thread
36581Information}). The @samp{groups} result has a list of tuples as value,
36582each tuple describing a thread group. If top-level groups are
36583requested (that is, no parameter is passed), or when several groups
36584are passed, the output always has a @samp{groups} result. The format
36585of the @samp{group} result is described below.
36586
36587To reduce the number of roundtrips it's possible to list thread groups
36588together with their children, by passing the @samp{--recurse} option
36589and the recursion depth. Presently, only recursion depth of 1 is
36590permitted. If this option is present, then every reported thread group
36591will also include its children, either as @samp{group} or
36592@samp{threads} field.
36593
36594In general, any combination of option and parameters is permitted, with
36595the following caveats:
36596
36597@itemize @bullet
36598@item
36599When a single thread group is passed, the output will typically
36600be the @samp{threads} result. Because threads may not contain
36601anything, the @samp{recurse} option will be ignored.
36602
36603@item
36604When the @samp{--available} option is passed, limited information may
36605be available. In particular, the list of threads of a process might
36606be inaccessible. Further, specifying specific thread groups might
36607not give any performance advantage over listing all thread groups.
36608The frontend should assume that @samp{-list-thread-groups --available}
36609is always an expensive operation and cache the results.
36610
36611@end itemize
36612
36613The @samp{groups} result is a list of tuples, where each tuple may
36614have the following fields:
36615
36616@table @code
36617@item id
36618Identifier of the thread group. This field is always present.
a79b8f6e
VP
36619The identifier is an opaque string; frontends should not try to
36620convert it to an integer, even though it might look like one.
dc146f7c
VP
36621
36622@item type
36623The type of the thread group. At present, only @samp{process} is a
36624valid type.
36625
36626@item pid
36627The target-specific process identifier. This field is only present
a79b8f6e 36628for thread groups of type @samp{process} and only if the process exists.
c3b108f7 36629
2ddf4301
SM
36630@item exit-code
36631The exit code of this group's last exited thread, formatted in octal.
36632This field is only present for thread groups of type @samp{process} and
36633only if the process is not running.
36634
dc146f7c
VP
36635@item num_children
36636The number of children this thread group has. This field may be
36637absent for an available thread group.
36638
36639@item threads
36640This field has a list of tuples as value, each tuple describing a
36641thread. It may be present if the @samp{--recurse} option is
36642specified, and it's actually possible to obtain the threads.
36643
36644@item cores
36645This field is a list of integers, each identifying a core that one
36646thread of the group is running on. This field may be absent if
36647such information is not available.
36648
a79b8f6e
VP
36649@item executable
36650The name of the executable file that corresponds to this thread group.
36651The field is only present for thread groups of type @samp{process},
36652and only if there is a corresponding executable file.
36653
dc146f7c 36654@end table
c3b108f7
VP
36655
36656@subheading Example
36657
36658@smallexample
b9de3b91 36659(@value{GDBP})
c3b108f7
VP
36660-list-thread-groups
36661^done,groups=[@{id="17",type="process",pid="yyy",num_children="2"@}]
36662-list-thread-groups 17
36663^done,threads=[@{id="2",target-id="Thread 0xb7e14b90 (LWP 21257)",
36664 frame=@{level="0",addr="0xffffe410",func="__kernel_vsyscall",args=[]@},state="running"@},
36665@{id="1",target-id="Thread 0xb7e156b0 (LWP 21254)",
36666 frame=@{level="0",addr="0x0804891f",func="foo",args=[@{name="i",value="10"@}],
6d52907e 36667 file="/tmp/a.c",fullname="/tmp/a.c",line="158",arch="i386:x86_64"@},state="running"@}]]
dc146f7c
VP
36668-list-thread-groups --available
36669^done,groups=[@{id="17",type="process",pid="yyy",num_children="2",cores=[1,2]@}]
36670-list-thread-groups --available --recurse 1
36671 ^done,groups=[@{id="17", types="process",pid="yyy",num_children="2",cores=[1,2],
36672 threads=[@{id="1",target-id="Thread 0xb7e14b90",cores=[1]@},
36673 @{id="2",target-id="Thread 0xb7e14b90",cores=[2]@}]@},..]
36674-list-thread-groups --available --recurse 1 17 18
36675^done,groups=[@{id="17", types="process",pid="yyy",num_children="2",cores=[1,2],
36676 threads=[@{id="1",target-id="Thread 0xb7e14b90",cores=[1]@},
36677 @{id="2",target-id="Thread 0xb7e14b90",cores=[2]@}]@},...]
c3b108f7 36678@end smallexample
c6ebd6cf 36679
f3e0e960
SS
36680@subheading The @code{-info-os} Command
36681@findex -info-os
36682
36683@subsubheading Synopsis
36684
36685@smallexample
36686-info-os [ @var{type} ]
36687@end smallexample
36688
36689If no argument is supplied, the command returns a table of available
36690operating-system-specific information types. If one of these types is
36691supplied as an argument @var{type}, then the command returns a table
36692of data of that type.
36693
36694The types of information available depend on the target operating
36695system.
36696
36697@subsubheading @value{GDBN} Command
36698
36699The corresponding @value{GDBN} command is @samp{info os}.
36700
36701@subsubheading Example
36702
36703When run on a @sc{gnu}/Linux system, the output will look something
36704like this:
36705
36706@smallexample
b9de3b91 36707(@value{GDBP})
f3e0e960 36708-info-os
d33279b3 36709^done,OSDataTable=@{nr_rows="10",nr_cols="3",
f3e0e960 36710hdr=[@{width="10",alignment="-1",col_name="col0",colhdr="Type"@},
71caed83
SS
36711 @{width="10",alignment="-1",col_name="col1",colhdr="Description"@},
36712 @{width="10",alignment="-1",col_name="col2",colhdr="Title"@}],
d33279b3
AT
36713body=[item=@{col0="cpus",col1="Listing of all cpus/cores on the system",
36714 col2="CPUs"@},
36715 item=@{col0="files",col1="Listing of all file descriptors",
36716 col2="File descriptors"@},
36717 item=@{col0="modules",col1="Listing of all loaded kernel modules",
36718 col2="Kernel modules"@},
36719 item=@{col0="msg",col1="Listing of all message queues",
36720 col2="Message queues"@},
36721 item=@{col0="processes",col1="Listing of all processes",
71caed83
SS
36722 col2="Processes"@},
36723 item=@{col0="procgroups",col1="Listing of all process groups",
36724 col2="Process groups"@},
71caed83
SS
36725 item=@{col0="semaphores",col1="Listing of all semaphores",
36726 col2="Semaphores"@},
d33279b3
AT
36727 item=@{col0="shm",col1="Listing of all shared-memory regions",
36728 col2="Shared-memory regions"@},
36729 item=@{col0="sockets",col1="Listing of all internet-domain sockets",
36730 col2="Sockets"@},
36731 item=@{col0="threads",col1="Listing of all threads",
36732 col2="Threads"@}]
b9de3b91 36733(@value{GDBP})
f3e0e960
SS
36734-info-os processes
36735^done,OSDataTable=@{nr_rows="190",nr_cols="4",
36736hdr=[@{width="10",alignment="-1",col_name="col0",colhdr="pid"@},
36737 @{width="10",alignment="-1",col_name="col1",colhdr="user"@},
36738 @{width="10",alignment="-1",col_name="col2",colhdr="command"@},
36739 @{width="10",alignment="-1",col_name="col3",colhdr="cores"@}],
36740body=[item=@{col0="1",col1="root",col2="/sbin/init",col3="0"@},
36741 item=@{col0="2",col1="root",col2="[kthreadd]",col3="1"@},
36742 item=@{col0="3",col1="root",col2="[ksoftirqd/0]",col3="0"@},
36743 ...
36744 item=@{col0="26446",col1="stan",col2="bash",col3="0"@},
36745 item=@{col0="28152",col1="stan",col2="bash",col3="1"@}]@}
b9de3b91 36746(@value{GDBP})
f3e0e960 36747@end smallexample
a79b8f6e 36748
71caed83
SS
36749(Note that the MI output here includes a @code{"Title"} column that
36750does not appear in command-line @code{info os}; this column is useful
36751for MI clients that want to enumerate the types of data, such as in a
36752popup menu, but is needless clutter on the command line, and
36753@code{info os} omits it.)
36754
a79b8f6e
VP
36755@subheading The @code{-add-inferior} Command
36756@findex -add-inferior
36757
36758@subheading Synopsis
36759
36760@smallexample
36761-add-inferior
36762@end smallexample
36763
65c574f6 36764Creates a new inferior (@pxref{Inferiors Connections and Programs}). The created
a79b8f6e
VP
36765inferior is not associated with any executable. Such association may
36766be established with the @samp{-file-exec-and-symbols} command
36767(@pxref{GDB/MI File Commands}). The command response has a single
b7742092 36768field, @samp{inferior}, whose value is the identifier of the
a79b8f6e
VP
36769thread group corresponding to the new inferior.
36770
36771@subheading Example
36772
36773@smallexample
b9de3b91 36774(@value{GDBP})
a79b8f6e 36775-add-inferior
b7742092 36776^done,inferior="i3"
a79b8f6e
VP
36777@end smallexample
36778
ef21caaf
NR
36779@subheading The @code{-interpreter-exec} Command
36780@findex -interpreter-exec
36781
36782@subheading Synopsis
36783
36784@smallexample
36785-interpreter-exec @var{interpreter} @var{command}
36786@end smallexample
a2c02241 36787@anchor{-interpreter-exec}
ef21caaf
NR
36788
36789Execute the specified @var{command} in the given @var{interpreter}.
36790
36791@subheading @value{GDBN} Command
36792
36793The corresponding @value{GDBN} command is @samp{interpreter-exec}.
36794
36795@subheading Example
36796
36797@smallexample
594fe323 36798(gdb)
ef21caaf
NR
36799-interpreter-exec console "break main"
36800&"During symbol reading, couldn't parse type; debugger out of date?.\n"
36801&"During symbol reading, bad structure-type format.\n"
36802~"Breakpoint 1 at 0x8074fc6: file ../../src/gdb/main.c, line 743.\n"
36803^done
594fe323 36804(gdb)
ef21caaf
NR
36805@end smallexample
36806
36807@subheading The @code{-inferior-tty-set} Command
36808@findex -inferior-tty-set
36809
36810@subheading Synopsis
36811
36812@smallexample
36813-inferior-tty-set /dev/pts/1
36814@end smallexample
36815
36816Set terminal for future runs of the program being debugged.
36817
36818@subheading @value{GDBN} Command
36819
36820The corresponding @value{GDBN} command is @samp{set inferior-tty} /dev/pts/1.
36821
36822@subheading Example
36823
36824@smallexample
594fe323 36825(gdb)
ef21caaf
NR
36826-inferior-tty-set /dev/pts/1
36827^done
594fe323 36828(gdb)
ef21caaf
NR
36829@end smallexample
36830
36831@subheading The @code{-inferior-tty-show} Command
36832@findex -inferior-tty-show
36833
36834@subheading Synopsis
36835
36836@smallexample
36837-inferior-tty-show
36838@end smallexample
36839
36840Show terminal for future runs of program being debugged.
36841
36842@subheading @value{GDBN} Command
36843
36844The corresponding @value{GDBN} command is @samp{show inferior-tty}.
36845
36846@subheading Example
36847
36848@smallexample
594fe323 36849(gdb)
ef21caaf
NR
36850-inferior-tty-set /dev/pts/1
36851^done
594fe323 36852(gdb)
ef21caaf
NR
36853-inferior-tty-show
36854^done,inferior_tty_terminal="/dev/pts/1"
594fe323 36855(gdb)
ef21caaf 36856@end smallexample
922fbb7b 36857
a4eefcd8
NR
36858@subheading The @code{-enable-timings} Command
36859@findex -enable-timings
36860
36861@subheading Synopsis
36862
36863@smallexample
36864-enable-timings [yes | no]
36865@end smallexample
36866
36867Toggle the printing of the wallclock, user and system times for an MI
36868command as a field in its output. This command is to help frontend
36869developers optimize the performance of their code. No argument is
36870equivalent to @samp{yes}.
36871
36872@subheading @value{GDBN} Command
36873
36874No equivalent.
36875
36876@subheading Example
36877
36878@smallexample
36879(gdb)
36880-enable-timings
36881^done
36882(gdb)
36883-break-insert main
36884^done,bkpt=@{number="1",type="breakpoint",disp="keep",enabled="y",
36885addr="0x080484ed",func="main",file="myprog.c",
998580f1
MK
36886fullname="/home/nickrob/myprog.c",line="73",thread-groups=["i1"],
36887times="0"@},
a4eefcd8
NR
36888time=@{wallclock="0.05185",user="0.00800",system="0.00000"@}
36889(gdb)
36890-enable-timings no
36891^done
36892(gdb)
36893-exec-run
36894^running
36895(gdb)
a47ec5fe 36896*stopped,reason="breakpoint-hit",disp="keep",bkptno="1",thread-id="0",
a4eefcd8
NR
36897frame=@{addr="0x080484ed",func="main",args=[@{name="argc",value="1"@},
36898@{name="argv",value="0xbfb60364"@}],file="myprog.c",
6d52907e 36899fullname="/home/nickrob/myprog.c",line="73",arch="i386:x86_64"@}
a4eefcd8
NR
36900(gdb)
36901@end smallexample
36902
26648588
JV
36903@subheading The @code{-complete} Command
36904@findex -complete
36905
36906@subheading Synopsis
36907
36908@smallexample
36909-complete @var{command}
36910@end smallexample
36911
36912Show a list of completions for partially typed CLI @var{command}.
36913
36914This command is intended for @sc{gdb/mi} frontends that cannot use two separate
7166f90a 36915CLI and MI channels --- for example: because of lack of PTYs like on Windows or
26648588
JV
36916because @value{GDBN} is used remotely via a SSH connection.
36917
36918@subheading Result
36919
36920The result consists of two or three fields:
36921
36922@table @samp
36923@item completion
36924This field contains the completed @var{command}. If @var{command}
36925has no known completions, this field is omitted.
36926
36927@item matches
36928This field contains a (possibly empty) array of matches. It is always present.
36929
36930@item max_completions_reached
36931This field contains @code{1} if number of known completions is above
7166f90a 36932@code{max-completions} limit (@pxref{Completion}), otherwise it contains
26648588
JV
36933@code{0}. It is always present.
36934
36935@end table
36936
36937@subheading @value{GDBN} Command
36938
36939The corresponding @value{GDBN} command is @samp{complete}.
36940
36941@subheading Example
36942
36943@smallexample
36944(gdb)
36945-complete br
36946^done,completion="break",
36947 matches=["break","break-range"],
36948 max_completions_reached="0"
36949(gdb)
36950-complete "b ma"
36951^done,completion="b ma",
36952 matches=["b madvise","b main"],max_completions_reached="0"
36953(gdb)
36954-complete "b push_b"
36955^done,completion="b push_back(",
36956 matches=[
36957 "b A::push_back(void*)",
36958 "b std::string::push_back(char)",
36959 "b std::vector<int, std::allocator<int> >::push_back(int&&)"],
36960 max_completions_reached="0"
36961(gdb)
36962-complete "nonexist"
36963^done,matches=[],max_completions_reached="0"
36964(gdb)
36965
36966@end smallexample
36967
922fbb7b
AC
36968@node Annotations
36969@chapter @value{GDBN} Annotations
36970
086432e2
AC
36971This chapter describes annotations in @value{GDBN}. Annotations were
36972designed to interface @value{GDBN} to graphical user interfaces or other
36973similar programs which want to interact with @value{GDBN} at a
922fbb7b
AC
36974relatively high level.
36975
d3e8051b 36976The annotation mechanism has largely been superseded by @sc{gdb/mi}
086432e2
AC
36977(@pxref{GDB/MI}).
36978
922fbb7b
AC
36979@ignore
36980This is Edition @value{EDITION}, @value{DATE}.
36981@end ignore
36982
36983@menu
36984* Annotations Overview:: What annotations are; the general syntax.
9e6c4bd5 36985* Server Prefix:: Issuing a command without affecting user state.
922fbb7b
AC
36986* Prompting:: Annotations marking @value{GDBN}'s need for input.
36987* Errors:: Annotations for error messages.
922fbb7b
AC
36988* Invalidation:: Some annotations describe things now invalid.
36989* Annotations for Running::
36990 Whether the program is running, how it stopped, etc.
36991* Source Annotations:: Annotations describing source code.
922fbb7b
AC
36992@end menu
36993
36994@node Annotations Overview
36995@section What is an Annotation?
36996@cindex annotations
36997
922fbb7b
AC
36998Annotations start with a newline character, two @samp{control-z}
36999characters, and the name of the annotation. If there is no additional
37000information associated with this annotation, the name of the annotation
37001is followed immediately by a newline. If there is additional
37002information, the name of the annotation is followed by a space, the
37003additional information, and a newline. The additional information
37004cannot contain newline characters.
37005
37006Any output not beginning with a newline and two @samp{control-z}
37007characters denotes literal output from @value{GDBN}. Currently there is
37008no need for @value{GDBN} to output a newline followed by two
37009@samp{control-z} characters, but if there was such a need, the
37010annotations could be extended with an @samp{escape} annotation which
37011means those three characters as output.
37012
086432e2
AC
37013The annotation @var{level}, which is specified using the
37014@option{--annotate} command line option (@pxref{Mode Options}), controls
37015how much information @value{GDBN} prints together with its prompt,
37016values of expressions, source lines, and other types of output. Level 0
d3e8051b 37017is for no annotations, level 1 is for use when @value{GDBN} is run as a
086432e2
AC
37018subprocess of @sc{gnu} Emacs, level 3 is the maximum annotation suitable
37019for programs that control @value{GDBN}, and level 2 annotations have
37020been made obsolete (@pxref{Limitations, , Limitations of the Annotation
09d4efe1
EZ
37021Interface, annotate, GDB's Obsolete Annotations}).
37022
37023@table @code
37024@kindex set annotate
37025@item set annotate @var{level}
e09f16f9 37026The @value{GDBN} command @code{set annotate} sets the level of
09d4efe1 37027annotations to the specified @var{level}.
9c16f35a
EZ
37028
37029@item show annotate
37030@kindex show annotate
37031Show the current annotation level.
09d4efe1
EZ
37032@end table
37033
37034This chapter describes level 3 annotations.
086432e2 37035
922fbb7b
AC
37036A simple example of starting up @value{GDBN} with annotations is:
37037
37038@smallexample
086432e2
AC
37039$ @kbd{gdb --annotate=3}
37040GNU gdb 6.0
37041Copyright 2003 Free Software Foundation, Inc.
922fbb7b
AC
37042GDB is free software, covered by the GNU General Public License,
37043and you are welcome to change it and/or distribute copies of it
37044under certain conditions.
37045Type "show copying" to see the conditions.
37046There is absolutely no warranty for GDB. Type "show warranty"
37047for details.
086432e2 37048This GDB was configured as "i386-pc-linux-gnu"
922fbb7b
AC
37049
37050^Z^Zpre-prompt
f7dc1244 37051(@value{GDBP})
922fbb7b 37052^Z^Zprompt
086432e2 37053@kbd{quit}
922fbb7b
AC
37054
37055^Z^Zpost-prompt
b383017d 37056$
922fbb7b
AC
37057@end smallexample
37058
37059Here @samp{quit} is input to @value{GDBN}; the rest is output from
37060@value{GDBN}. The three lines beginning @samp{^Z^Z} (where @samp{^Z}
37061denotes a @samp{control-z} character) are annotations; the rest is
37062output from @value{GDBN}.
37063
9e6c4bd5
NR
37064@node Server Prefix
37065@section The Server Prefix
37066@cindex server prefix
37067
37068If you prefix a command with @samp{server } then it will not affect
37069the command history, nor will it affect @value{GDBN}'s notion of which
37070command to repeat if @key{RET} is pressed on a line by itself. This
37071means that commands can be run behind a user's back by a front-end in
37072a transparent manner.
37073
d837706a
NR
37074The @code{server } prefix does not affect the recording of values into
37075the value history; to print a value without recording it into the
37076value history, use the @code{output} command instead of the
37077@code{print} command.
37078
37079Using this prefix also disables confirmation requests
37080(@pxref{confirmation requests}).
9e6c4bd5 37081
922fbb7b
AC
37082@node Prompting
37083@section Annotation for @value{GDBN} Input
37084
37085@cindex annotations for prompts
37086When @value{GDBN} prompts for input, it annotates this fact so it is possible
37087to know when to send output, when the output from a given command is
37088over, etc.
37089
37090Different kinds of input each have a different @dfn{input type}. Each
37091input type has three annotations: a @code{pre-} annotation, which
37092denotes the beginning of any prompt which is being output, a plain
37093annotation, which denotes the end of the prompt, and then a @code{post-}
37094annotation which denotes the end of any echo which may (or may not) be
37095associated with the input. For example, the @code{prompt} input type
37096features the following annotations:
37097
37098@smallexample
37099^Z^Zpre-prompt
37100^Z^Zprompt
37101^Z^Zpost-prompt
37102@end smallexample
37103
37104The input types are
37105
37106@table @code
e5ac9b53
EZ
37107@findex pre-prompt annotation
37108@findex prompt annotation
37109@findex post-prompt annotation
922fbb7b
AC
37110@item prompt
37111When @value{GDBN} is prompting for a command (the main @value{GDBN} prompt).
37112
e5ac9b53
EZ
37113@findex pre-commands annotation
37114@findex commands annotation
37115@findex post-commands annotation
922fbb7b
AC
37116@item commands
37117When @value{GDBN} prompts for a set of commands, like in the @code{commands}
37118command. The annotations are repeated for each command which is input.
37119
e5ac9b53
EZ
37120@findex pre-overload-choice annotation
37121@findex overload-choice annotation
37122@findex post-overload-choice annotation
922fbb7b
AC
37123@item overload-choice
37124When @value{GDBN} wants the user to select between various overloaded functions.
37125
e5ac9b53
EZ
37126@findex pre-query annotation
37127@findex query annotation
37128@findex post-query annotation
922fbb7b
AC
37129@item query
37130When @value{GDBN} wants the user to confirm a potentially dangerous operation.
37131
e5ac9b53
EZ
37132@findex pre-prompt-for-continue annotation
37133@findex prompt-for-continue annotation
37134@findex post-prompt-for-continue annotation
922fbb7b
AC
37135@item prompt-for-continue
37136When @value{GDBN} is asking the user to press return to continue. Note: Don't
37137expect this to work well; instead use @code{set height 0} to disable
37138prompting. This is because the counting of lines is buggy in the
37139presence of annotations.
37140@end table
37141
37142@node Errors
37143@section Errors
37144@cindex annotations for errors, warnings and interrupts
37145
e5ac9b53 37146@findex quit annotation
922fbb7b
AC
37147@smallexample
37148^Z^Zquit
37149@end smallexample
37150
37151This annotation occurs right before @value{GDBN} responds to an interrupt.
37152
e5ac9b53 37153@findex error annotation
922fbb7b
AC
37154@smallexample
37155^Z^Zerror
37156@end smallexample
37157
37158This annotation occurs right before @value{GDBN} responds to an error.
37159
37160Quit and error annotations indicate that any annotations which @value{GDBN} was
37161in the middle of may end abruptly. For example, if a
37162@code{value-history-begin} annotation is followed by a @code{error}, one
37163cannot expect to receive the matching @code{value-history-end}. One
37164cannot expect not to receive it either, however; an error annotation
37165does not necessarily mean that @value{GDBN} is immediately returning all the way
37166to the top level.
37167
e5ac9b53 37168@findex error-begin annotation
922fbb7b
AC
37169A quit or error annotation may be preceded by
37170
37171@smallexample
37172^Z^Zerror-begin
37173@end smallexample
37174
37175Any output between that and the quit or error annotation is the error
37176message.
37177
37178Warning messages are not yet annotated.
37179@c If we want to change that, need to fix warning(), type_error(),
37180@c range_error(), and possibly other places.
37181
922fbb7b
AC
37182@node Invalidation
37183@section Invalidation Notices
37184
37185@cindex annotations for invalidation messages
37186The following annotations say that certain pieces of state may have
37187changed.
37188
37189@table @code
e5ac9b53 37190@findex frames-invalid annotation
922fbb7b
AC
37191@item ^Z^Zframes-invalid
37192
37193The frames (for example, output from the @code{backtrace} command) may
37194have changed.
37195
e5ac9b53 37196@findex breakpoints-invalid annotation
922fbb7b
AC
37197@item ^Z^Zbreakpoints-invalid
37198
37199The breakpoints may have changed. For example, the user just added or
37200deleted a breakpoint.
37201@end table
37202
37203@node Annotations for Running
37204@section Running the Program
37205@cindex annotations for running programs
37206
e5ac9b53
EZ
37207@findex starting annotation
37208@findex stopping annotation
922fbb7b 37209When the program starts executing due to a @value{GDBN} command such as
b383017d 37210@code{step} or @code{continue},
922fbb7b
AC
37211
37212@smallexample
37213^Z^Zstarting
37214@end smallexample
37215
b383017d 37216is output. When the program stops,
922fbb7b
AC
37217
37218@smallexample
37219^Z^Zstopped
37220@end smallexample
37221
37222is output. Before the @code{stopped} annotation, a variety of
37223annotations describe how the program stopped.
37224
37225@table @code
e5ac9b53 37226@findex exited annotation
922fbb7b
AC
37227@item ^Z^Zexited @var{exit-status}
37228The program exited, and @var{exit-status} is the exit status (zero for
37229successful exit, otherwise nonzero).
37230
e5ac9b53
EZ
37231@findex signalled annotation
37232@findex signal-name annotation
37233@findex signal-name-end annotation
37234@findex signal-string annotation
37235@findex signal-string-end annotation
922fbb7b
AC
37236@item ^Z^Zsignalled
37237The program exited with a signal. After the @code{^Z^Zsignalled}, the
37238annotation continues:
37239
37240@smallexample
37241@var{intro-text}
37242^Z^Zsignal-name
37243@var{name}
37244^Z^Zsignal-name-end
37245@var{middle-text}
37246^Z^Zsignal-string
37247@var{string}
37248^Z^Zsignal-string-end
37249@var{end-text}
37250@end smallexample
37251
37252@noindent
37253where @var{name} is the name of the signal, such as @code{SIGILL} or
37254@code{SIGSEGV}, and @var{string} is the explanation of the signal, such
697aa1b7 37255as @code{Illegal Instruction} or @code{Segmentation fault}. The arguments
922fbb7b
AC
37256@var{intro-text}, @var{middle-text}, and @var{end-text} are for the
37257user's benefit and have no particular format.
37258
e5ac9b53 37259@findex signal annotation
922fbb7b
AC
37260@item ^Z^Zsignal
37261The syntax of this annotation is just like @code{signalled}, but @value{GDBN} is
37262just saying that the program received the signal, not that it was
37263terminated with it.
37264
e5ac9b53 37265@findex breakpoint annotation
922fbb7b
AC
37266@item ^Z^Zbreakpoint @var{number}
37267The program hit breakpoint number @var{number}.
37268
e5ac9b53 37269@findex watchpoint annotation
922fbb7b
AC
37270@item ^Z^Zwatchpoint @var{number}
37271The program hit watchpoint number @var{number}.
37272@end table
37273
37274@node Source Annotations
37275@section Displaying Source
37276@cindex annotations for source display
37277
e5ac9b53 37278@findex source annotation
922fbb7b
AC
37279The following annotation is used instead of displaying source code:
37280
37281@smallexample
37282^Z^Zsource @var{filename}:@var{line}:@var{character}:@var{middle}:@var{addr}
37283@end smallexample
37284
37285where @var{filename} is an absolute file name indicating which source
37286file, @var{line} is the line number within that file (where 1 is the
37287first line in the file), @var{character} is the character position
37288within the file (where 0 is the first character in the file) (for most
37289debug formats this will necessarily point to the beginning of a line),
37290@var{middle} is @samp{middle} if @var{addr} is in the middle of the
37291line, or @samp{beg} if @var{addr} is at the beginning of the line, and
37292@var{addr} is the address in the target program associated with the
697aa1b7 37293source which is being displayed. The @var{addr} is in the form @samp{0x}
922fbb7b
AC
37294followed by one or more lowercase hex digits (note that this does not
37295depend on the language).
37296
4efc6507
DE
37297@node JIT Interface
37298@chapter JIT Compilation Interface
37299@cindex just-in-time compilation
37300@cindex JIT compilation interface
37301
37302This chapter documents @value{GDBN}'s @dfn{just-in-time} (JIT) compilation
37303interface. A JIT compiler is a program or library that generates native
37304executable code at runtime and executes it, usually in order to achieve good
37305performance while maintaining platform independence.
37306
37307Programs that use JIT compilation are normally difficult to debug because
37308portions of their code are generated at runtime, instead of being loaded from
37309object files, which is where @value{GDBN} normally finds the program's symbols
37310and debug information. In order to debug programs that use JIT compilation,
37311@value{GDBN} has an interface that allows the program to register in-memory
37312symbol files with @value{GDBN} at runtime.
37313
37314If you are using @value{GDBN} to debug a program that uses this interface, then
37315it should work transparently so long as you have not stripped the binary. If
37316you are developing a JIT compiler, then the interface is documented in the rest
37317of this chapter. At this time, the only known client of this interface is the
37318LLVM JIT.
37319
37320Broadly speaking, the JIT interface mirrors the dynamic loader interface. The
37321JIT compiler communicates with @value{GDBN} by writing data into a global
6b92c0d3 37322variable and calling a function at a well-known symbol. When @value{GDBN}
4efc6507
DE
37323attaches, it reads a linked list of symbol files from the global variable to
37324find existing code, and puts a breakpoint in the function so that it can find
37325out about additional code.
37326
37327@menu
37328* Declarations:: Relevant C struct declarations
37329* Registering Code:: Steps to register code
37330* Unregistering Code:: Steps to unregister code
f85b53f8 37331* Custom Debug Info:: Emit debug information in a custom format
4efc6507
DE
37332@end menu
37333
37334@node Declarations
37335@section JIT Declarations
37336
37337These are the relevant struct declarations that a C program should include to
37338implement the interface:
37339
37340@smallexample
37341typedef enum
37342@{
37343 JIT_NOACTION = 0,
37344 JIT_REGISTER_FN,
37345 JIT_UNREGISTER_FN
37346@} jit_actions_t;
37347
37348struct jit_code_entry
37349@{
37350 struct jit_code_entry *next_entry;
37351 struct jit_code_entry *prev_entry;
37352 const char *symfile_addr;
37353 uint64_t symfile_size;
37354@};
37355
37356struct jit_descriptor
37357@{
37358 uint32_t version;
37359 /* This type should be jit_actions_t, but we use uint32_t
37360 to be explicit about the bitwidth. */
37361 uint32_t action_flag;
37362 struct jit_code_entry *relevant_entry;
37363 struct jit_code_entry *first_entry;
37364@};
37365
37366/* GDB puts a breakpoint in this function. */
37367void __attribute__((noinline)) __jit_debug_register_code() @{ @};
37368
37369/* Make sure to specify the version statically, because the
37370 debugger may check the version before we can set it. */
37371struct jit_descriptor __jit_debug_descriptor = @{ 1, 0, 0, 0 @};
37372@end smallexample
37373
37374If the JIT is multi-threaded, then it is important that the JIT synchronize any
37375modifications to this global data properly, which can easily be done by putting
37376a global mutex around modifications to these structures.
37377
37378@node Registering Code
37379@section Registering Code
37380
37381To register code with @value{GDBN}, the JIT should follow this protocol:
37382
37383@itemize @bullet
37384@item
37385Generate an object file in memory with symbols and other desired debug
37386information. The file must include the virtual addresses of the sections.
37387
37388@item
37389Create a code entry for the file, which gives the start and size of the symbol
37390file.
37391
37392@item
37393Add it to the linked list in the JIT descriptor.
37394
37395@item
37396Point the relevant_entry field of the descriptor at the entry.
37397
37398@item
37399Set @code{action_flag} to @code{JIT_REGISTER} and call
37400@code{__jit_debug_register_code}.
37401@end itemize
37402
37403When @value{GDBN} is attached and the breakpoint fires, @value{GDBN} uses the
37404@code{relevant_entry} pointer so it doesn't have to walk the list looking for
37405new code. However, the linked list must still be maintained in order to allow
37406@value{GDBN} to attach to a running process and still find the symbol files.
37407
37408@node Unregistering Code
37409@section Unregistering Code
37410
37411If code is freed, then the JIT should use the following protocol:
37412
37413@itemize @bullet
37414@item
37415Remove the code entry corresponding to the code from the linked list.
37416
37417@item
37418Point the @code{relevant_entry} field of the descriptor at the code entry.
37419
37420@item
37421Set @code{action_flag} to @code{JIT_UNREGISTER} and call
37422@code{__jit_debug_register_code}.
37423@end itemize
37424
37425If the JIT frees or recompiles code without unregistering it, then @value{GDBN}
37426and the JIT will leak the memory used for the associated symbol files.
37427
f85b53f8
SD
37428@node Custom Debug Info
37429@section Custom Debug Info
37430@cindex custom JIT debug info
37431@cindex JIT debug info reader
37432
37433Generating debug information in platform-native file formats (like ELF
37434or COFF) may be an overkill for JIT compilers; especially if all the
37435debug info is used for is displaying a meaningful backtrace. The
37436issue can be resolved by having the JIT writers decide on a debug info
37437format and also provide a reader that parses the debug info generated
37438by the JIT compiler. This section gives a brief overview on writing
37439such a parser. More specific details can be found in the source file
37440@file{gdb/jit-reader.in}, which is also installed as a header at
37441@file{@var{includedir}/gdb/jit-reader.h} for easy inclusion.
37442
37443The reader is implemented as a shared object (so this functionality is
37444not available on platforms which don't allow loading shared objects at
37445runtime). Two @value{GDBN} commands, @code{jit-reader-load} and
37446@code{jit-reader-unload} are provided, to be used to load and unload
37447the readers from a preconfigured directory. Once loaded, the shared
37448object is used the parse the debug information emitted by the JIT
37449compiler.
37450
37451@menu
37452* Using JIT Debug Info Readers:: How to use supplied readers correctly
37453* Writing JIT Debug Info Readers:: Creating a debug-info reader
37454@end menu
37455
37456@node Using JIT Debug Info Readers
37457@subsection Using JIT Debug Info Readers
37458@kindex jit-reader-load
37459@kindex jit-reader-unload
37460
37461Readers can be loaded and unloaded using the @code{jit-reader-load}
37462and @code{jit-reader-unload} commands.
37463
37464@table @code
c9fb1240 37465@item jit-reader-load @var{reader}
697aa1b7 37466Load the JIT reader named @var{reader}, which is a shared
c9fb1240
SD
37467object specified as either an absolute or a relative file name. In
37468the latter case, @value{GDBN} will try to load the reader from a
37469pre-configured directory, usually @file{@var{libdir}/gdb/} on a UNIX
37470system (here @var{libdir} is the system library directory, often
37471@file{/usr/local/lib}).
37472
37473Only one reader can be active at a time; trying to load a second
37474reader when one is already loaded will result in @value{GDBN}
37475reporting an error. A new JIT reader can be loaded by first unloading
37476the current one using @code{jit-reader-unload} and then invoking
37477@code{jit-reader-load}.
f85b53f8
SD
37478
37479@item jit-reader-unload
37480Unload the currently loaded JIT reader.
37481
37482@end table
37483
37484@node Writing JIT Debug Info Readers
37485@subsection Writing JIT Debug Info Readers
37486@cindex writing JIT debug info readers
37487
37488As mentioned, a reader is essentially a shared object conforming to a
37489certain ABI. This ABI is described in @file{jit-reader.h}.
37490
37491@file{jit-reader.h} defines the structures, macros and functions
37492required to write a reader. It is installed (along with
37493@value{GDBN}), in @file{@var{includedir}/gdb} where @var{includedir} is
37494the system include directory.
37495
37496Readers need to be released under a GPL compatible license. A reader
37497can be declared as released under such a license by placing the macro
37498@code{GDB_DECLARE_GPL_COMPATIBLE_READER} in a source file.
37499
37500The entry point for readers is the symbol @code{gdb_init_reader},
37501which is expected to be a function with the prototype
37502
37503@findex gdb_init_reader
37504@smallexample
37505extern struct gdb_reader_funcs *gdb_init_reader (void);
37506@end smallexample
37507
37508@cindex @code{struct gdb_reader_funcs}
37509
37510@code{struct gdb_reader_funcs} contains a set of pointers to callback
37511functions. These functions are executed to read the debug info
37512generated by the JIT compiler (@code{read}), to unwind stack frames
37513(@code{unwind}) and to create canonical frame IDs
27f7b2f6 37514(@code{get_frame_id}). It also has a callback that is called when the
f85b53f8
SD
37515reader is being unloaded (@code{destroy}). The struct looks like this
37516
37517@smallexample
37518struct gdb_reader_funcs
37519@{
37520 /* Must be set to GDB_READER_INTERFACE_VERSION. */
37521 int reader_version;
37522
37523 /* For use by the reader. */
37524 void *priv_data;
37525
37526 gdb_read_debug_info *read;
37527 gdb_unwind_frame *unwind;
37528 gdb_get_frame_id *get_frame_id;
37529 gdb_destroy_reader *destroy;
37530@};
37531@end smallexample
37532
37533@cindex @code{struct gdb_symbol_callbacks}
37534@cindex @code{struct gdb_unwind_callbacks}
37535
37536The callbacks are provided with another set of callbacks by
37537@value{GDBN} to do their job. For @code{read}, these callbacks are
37538passed in a @code{struct gdb_symbol_callbacks} and for @code{unwind}
37539and @code{get_frame_id}, in a @code{struct gdb_unwind_callbacks}.
37540@code{struct gdb_symbol_callbacks} has callbacks to create new object
37541files and new symbol tables inside those object files. @code{struct
37542gdb_unwind_callbacks} has callbacks to read registers off the current
37543frame and to write out the values of the registers in the previous
37544frame. Both have a callback (@code{target_read}) to read bytes off the
37545target's address space.
37546
d1feda86
YQ
37547@node In-Process Agent
37548@chapter In-Process Agent
37549@cindex debugging agent
37550The traditional debugging model is conceptually low-speed, but works fine,
37551because most bugs can be reproduced in debugging-mode execution. However,
37552as multi-core or many-core processors are becoming mainstream, and
37553multi-threaded programs become more and more popular, there should be more
37554and more bugs that only manifest themselves at normal-mode execution, for
37555example, thread races, because debugger's interference with the program's
37556timing may conceal the bugs. On the other hand, in some applications,
37557it is not feasible for the debugger to interrupt the program's execution
37558long enough for the developer to learn anything helpful about its behavior.
37559If the program's correctness depends on its real-time behavior, delays
37560introduced by a debugger might cause the program to fail, even when the
37561code itself is correct. It is useful to be able to observe the program's
37562behavior without interrupting it.
37563
37564Therefore, traditional debugging model is too intrusive to reproduce
37565some bugs. In order to reduce the interference with the program, we can
37566reduce the number of operations performed by debugger. The
37567@dfn{In-Process Agent}, a shared library, is running within the same
37568process with inferior, and is able to perform some debugging operations
37569itself. As a result, debugger is only involved when necessary, and
37570performance of debugging can be improved accordingly. Note that
37571interference with program can be reduced but can't be removed completely,
37572because the in-process agent will still stop or slow down the program.
37573
37574The in-process agent can interpret and execute Agent Expressions
37575(@pxref{Agent Expressions}) during performing debugging operations. The
37576agent expressions can be used for different purposes, such as collecting
37577data in tracepoints, and condition evaluation in breakpoints.
37578
37579@anchor{Control Agent}
37580You can control whether the in-process agent is used as an aid for
37581debugging with the following commands:
37582
37583@table @code
37584@kindex set agent on
37585@item set agent on
37586Causes the in-process agent to perform some operations on behalf of the
37587debugger. Just which operations requested by the user will be done
37588by the in-process agent depends on the its capabilities. For example,
37589if you request to evaluate breakpoint conditions in the in-process agent,
37590and the in-process agent has such capability as well, then breakpoint
37591conditions will be evaluated in the in-process agent.
37592
37593@kindex set agent off
37594@item set agent off
37595Disables execution of debugging operations by the in-process agent. All
37596of the operations will be performed by @value{GDBN}.
37597
37598@kindex show agent
37599@item show agent
37600Display the current setting of execution of debugging operations by
37601the in-process agent.
37602@end table
37603
16bdd41f
YQ
37604@menu
37605* In-Process Agent Protocol::
37606@end menu
37607
37608@node In-Process Agent Protocol
37609@section In-Process Agent Protocol
37610@cindex in-process agent protocol
37611
37612The in-process agent is able to communicate with both @value{GDBN} and
37613GDBserver (@pxref{In-Process Agent}). This section documents the protocol
37614used for communications between @value{GDBN} or GDBserver and the IPA.
37615In general, @value{GDBN} or GDBserver sends commands
37616(@pxref{IPA Protocol Commands}) and data to in-process agent, and then
37617in-process agent replies back with the return result of the command, or
37618some other information. The data sent to in-process agent is composed
37619of primitive data types, such as 4-byte or 8-byte type, and composite
37620types, which are called objects (@pxref{IPA Protocol Objects}).
37621
37622@menu
37623* IPA Protocol Objects::
37624* IPA Protocol Commands::
37625@end menu
37626
37627@node IPA Protocol Objects
37628@subsection IPA Protocol Objects
37629@cindex ipa protocol objects
37630
37631The commands sent to and results received from agent may contain some
37632complex data types called @dfn{objects}.
37633
37634The in-process agent is running on the same machine with @value{GDBN}
37635or GDBserver, so it doesn't have to handle as much differences between
37636two ends as remote protocol (@pxref{Remote Protocol}) tries to handle.
37637However, there are still some differences of two ends in two processes:
37638
37639@enumerate
37640@item
37641word size. On some 64-bit machines, @value{GDBN} or GDBserver can be
37642compiled as a 64-bit executable, while in-process agent is a 32-bit one.
37643@item
37644ABI. Some machines may have multiple types of ABI, @value{GDBN} or
37645GDBserver is compiled with one, and in-process agent is compiled with
37646the other one.
37647@end enumerate
37648
37649Here are the IPA Protocol Objects:
37650
37651@enumerate
37652@item
37653agent expression object. It represents an agent expression
37654(@pxref{Agent Expressions}).
37655@anchor{agent expression object}
37656@item
37657tracepoint action object. It represents a tracepoint action
37658(@pxref{Tracepoint Actions,,Tracepoint Action Lists}) to collect registers,
37659memory, static trace data and to evaluate expression.
37660@anchor{tracepoint action object}
37661@item
37662tracepoint object. It represents a tracepoint (@pxref{Tracepoints}).
37663@anchor{tracepoint object}
37664
37665@end enumerate
37666
37667The following table describes important attributes of each IPA protocol
37668object:
37669
37670@multitable @columnfractions .30 .20 .50
37671@headitem Name @tab Size @tab Description
37672@item @emph{agent expression object} @tab @tab
37673@item length @tab 4 @tab length of bytes code
37674@item byte code @tab @var{length} @tab contents of byte code
37675@item @emph{tracepoint action for collecting memory} @tab @tab
37676@item 'M' @tab 1 @tab type of tracepoint action
37677@item addr @tab 8 @tab if @var{basereg} is @samp{-1}, @var{addr} is the
37678address of the lowest byte to collect, otherwise @var{addr} is the offset
37679of @var{basereg} for memory collecting.
37680@item len @tab 8 @tab length of memory for collecting
37681@item basereg @tab 4 @tab the register number containing the starting
37682memory address for collecting.
37683@item @emph{tracepoint action for collecting registers} @tab @tab
37684@item 'R' @tab 1 @tab type of tracepoint action
37685@item @emph{tracepoint action for collecting static trace data} @tab @tab
37686@item 'L' @tab 1 @tab type of tracepoint action
37687@item @emph{tracepoint action for expression evaluation} @tab @tab
37688@item 'X' @tab 1 @tab type of tracepoint action
37689@item agent expression @tab length of @tab @ref{agent expression object}
37690@item @emph{tracepoint object} @tab @tab
37691@item number @tab 4 @tab number of tracepoint
37692@item address @tab 8 @tab address of tracepoint inserted on
37693@item type @tab 4 @tab type of tracepoint
37694@item enabled @tab 1 @tab enable or disable of tracepoint
37695@item step_count @tab 8 @tab step
37696@item pass_count @tab 8 @tab pass
37697@item numactions @tab 4 @tab number of tracepoint actions
37698@item hit count @tab 8 @tab hit count
37699@item trace frame usage @tab 8 @tab trace frame usage
37700@item compiled_cond @tab 8 @tab compiled condition
37701@item orig_size @tab 8 @tab orig size
37702@item condition @tab 4 if condition is NULL otherwise length of
37703@ref{agent expression object}
37704@tab zero if condition is NULL, otherwise is
37705@ref{agent expression object}
37706@item actions @tab variable
37707@tab numactions number of @ref{tracepoint action object}
37708@end multitable
37709
37710@node IPA Protocol Commands
37711@subsection IPA Protocol Commands
37712@cindex ipa protocol commands
37713
37714The spaces in each command are delimiters to ease reading this commands
37715specification. They don't exist in real commands.
37716
37717@table @samp
37718
37719@item FastTrace:@var{tracepoint_object} @var{gdb_jump_pad_head}
37720Installs a new fast tracepoint described by @var{tracepoint_object}
697aa1b7 37721(@pxref{tracepoint object}). The @var{gdb_jump_pad_head}, 8-byte long, is the
16bdd41f
YQ
37722head of @dfn{jumppad}, which is used to jump to data collection routine
37723in IPA finally.
37724
37725Replies:
37726@table @samp
37727@item OK @var{target_address} @var{gdb_jump_pad_head} @var{fjump_size} @var{fjump}
37728@var{target_address} is address of tracepoint in the inferior.
697aa1b7 37729The @var{gdb_jump_pad_head} is updated head of jumppad. Both of
16bdd41f 37730@var{target_address} and @var{gdb_jump_pad_head} are 8-byte long.
697aa1b7
EZ
37731The @var{fjump} contains a sequence of instructions jump to jumppad entry.
37732The @var{fjump_size}, 4-byte long, is the size of @var{fjump}.
16bdd41f
YQ
37733@item E @var{NN}
37734for an error
37735
37736@end table
37737
7255706c
YQ
37738@item close
37739Closes the in-process agent. This command is sent when @value{GDBN} or GDBserver
37740is about to kill inferiors.
37741
16bdd41f
YQ
37742@item qTfSTM
37743@xref{qTfSTM}.
37744@item qTsSTM
37745@xref{qTsSTM}.
37746@item qTSTMat
37747@xref{qTSTMat}.
37748@item probe_marker_at:@var{address}
37749Asks in-process agent to probe the marker at @var{address}.
37750
37751Replies:
37752@table @samp
37753@item E @var{NN}
37754for an error
37755@end table
37756@item unprobe_marker_at:@var{address}
37757Asks in-process agent to unprobe the marker at @var{address}.
37758@end table
37759
8e04817f
AC
37760@node GDB Bugs
37761@chapter Reporting Bugs in @value{GDBN}
37762@cindex bugs in @value{GDBN}
37763@cindex reporting bugs in @value{GDBN}
c906108c 37764
8e04817f 37765Your bug reports play an essential role in making @value{GDBN} reliable.
c906108c 37766
8e04817f
AC
37767Reporting a bug may help you by bringing a solution to your problem, or it
37768may not. But in any case the principal function of a bug report is to help
37769the entire community by making the next version of @value{GDBN} work better. Bug
37770reports are your contribution to the maintenance of @value{GDBN}.
c906108c 37771
8e04817f
AC
37772In order for a bug report to serve its purpose, you must include the
37773information that enables us to fix the bug.
c4555f82
SC
37774
37775@menu
8e04817f
AC
37776* Bug Criteria:: Have you found a bug?
37777* Bug Reporting:: How to report bugs
c4555f82
SC
37778@end menu
37779
8e04817f 37780@node Bug Criteria
79a6e687 37781@section Have You Found a Bug?
8e04817f 37782@cindex bug criteria
c4555f82 37783
8e04817f 37784If you are not sure whether you have found a bug, here are some guidelines:
c4555f82
SC
37785
37786@itemize @bullet
8e04817f
AC
37787@cindex fatal signal
37788@cindex debugger crash
37789@cindex crash of debugger
c4555f82 37790@item
8e04817f
AC
37791If the debugger gets a fatal signal, for any input whatever, that is a
37792@value{GDBN} bug. Reliable debuggers never crash.
37793
37794@cindex error on valid input
37795@item
37796If @value{GDBN} produces an error message for valid input, that is a
37797bug. (Note that if you're cross debugging, the problem may also be
37798somewhere in the connection to the target.)
c4555f82 37799
8e04817f 37800@cindex invalid input
c4555f82 37801@item
8e04817f
AC
37802If @value{GDBN} does not produce an error message for invalid input,
37803that is a bug. However, you should note that your idea of
37804``invalid input'' might be our idea of ``an extension'' or ``support
37805for traditional practice''.
37806
37807@item
37808If you are an experienced user of debugging tools, your suggestions
37809for improvement of @value{GDBN} are welcome in any case.
c4555f82
SC
37810@end itemize
37811
8e04817f 37812@node Bug Reporting
79a6e687 37813@section How to Report Bugs
8e04817f
AC
37814@cindex bug reports
37815@cindex @value{GDBN} bugs, reporting
37816
37817A number of companies and individuals offer support for @sc{gnu} products.
37818If you obtained @value{GDBN} from a support organization, we recommend you
37819contact that organization first.
37820
37821You can find contact information for many support companies and
37822individuals in the file @file{etc/SERVICE} in the @sc{gnu} Emacs
37823distribution.
37824@c should add a web page ref...
37825
c16158bc
JM
37826@ifset BUGURL
37827@ifset BUGURL_DEFAULT
129188f6 37828In any event, we also recommend that you submit bug reports for
d3e8051b 37829@value{GDBN}. The preferred method is to submit them directly using
129188f6
AC
37830@uref{http://www.gnu.org/software/gdb/bugs/, @value{GDBN}'s Bugs web
37831page}. Alternatively, the @email{bug-gdb@@gnu.org, e-mail gateway} can
37832be used.
8e04817f
AC
37833
37834@strong{Do not send bug reports to @samp{info-gdb}, or to
37835@samp{help-gdb}, or to any newsgroups.} Most users of @value{GDBN} do
37836not want to receive bug reports. Those that do have arranged to receive
37837@samp{bug-gdb}.
37838
37839The mailing list @samp{bug-gdb} has a newsgroup @samp{gnu.gdb.bug} which
37840serves as a repeater. The mailing list and the newsgroup carry exactly
37841the same messages. Often people think of posting bug reports to the
37842newsgroup instead of mailing them. This appears to work, but it has one
37843problem which can be crucial: a newsgroup posting often lacks a mail
37844path back to the sender. Thus, if we need to ask for more information,
37845we may be unable to reach you. For this reason, it is better to send
37846bug reports to the mailing list.
c16158bc
JM
37847@end ifset
37848@ifclear BUGURL_DEFAULT
37849In any event, we also recommend that you submit bug reports for
37850@value{GDBN} to @value{BUGURL}.
37851@end ifclear
37852@end ifset
c4555f82 37853
8e04817f
AC
37854The fundamental principle of reporting bugs usefully is this:
37855@strong{report all the facts}. If you are not sure whether to state a
37856fact or leave it out, state it!
c4555f82 37857
8e04817f
AC
37858Often people omit facts because they think they know what causes the
37859problem and assume that some details do not matter. Thus, you might
37860assume that the name of the variable you use in an example does not matter.
37861Well, probably it does not, but one cannot be sure. Perhaps the bug is a
37862stray memory reference which happens to fetch from the location where that
37863name is stored in memory; perhaps, if the name were different, the contents
37864of that location would fool the debugger into doing the right thing despite
37865the bug. Play it safe and give a specific, complete example. That is the
37866easiest thing for you to do, and the most helpful.
c4555f82 37867
8e04817f
AC
37868Keep in mind that the purpose of a bug report is to enable us to fix the
37869bug. It may be that the bug has been reported previously, but neither
37870you nor we can know that unless your bug report is complete and
37871self-contained.
c4555f82 37872
8e04817f
AC
37873Sometimes people give a few sketchy facts and ask, ``Does this ring a
37874bell?'' Those bug reports are useless, and we urge everyone to
37875@emph{refuse to respond to them} except to chide the sender to report
37876bugs properly.
37877
37878To enable us to fix the bug, you should include all these things:
c4555f82
SC
37879
37880@itemize @bullet
37881@item
8e04817f
AC
37882The version of @value{GDBN}. @value{GDBN} announces it if you start
37883with no arguments; you can also print it at any time using @code{show
37884version}.
c4555f82 37885
8e04817f
AC
37886Without this, we will not know whether there is any point in looking for
37887the bug in the current version of @value{GDBN}.
c4555f82
SC
37888
37889@item
8e04817f
AC
37890The type of machine you are using, and the operating system name and
37891version number.
c4555f82 37892
6eaaf48b
EZ
37893@item
37894The details of the @value{GDBN} build-time configuration.
37895@value{GDBN} shows these details if you invoke it with the
37896@option{--configuration} command-line option, or if you type
37897@code{show configuration} at @value{GDBN}'s prompt.
37898
c4555f82 37899@item
c1468174 37900What compiler (and its version) was used to compile @value{GDBN}---e.g.@:
8e04817f 37901``@value{GCC}--2.8.1''.
c4555f82
SC
37902
37903@item
8e04817f 37904What compiler (and its version) was used to compile the program you are
c1468174 37905debugging---e.g.@: ``@value{GCC}--2.8.1'', or ``HP92453-01 A.10.32.03 HP
3f94c067
BW
37906C Compiler''. For @value{NGCC}, you can say @kbd{@value{GCC} --version}
37907to get this information; for other compilers, see the documentation for
37908those compilers.
c4555f82 37909
8e04817f
AC
37910@item
37911The command arguments you gave the compiler to compile your example and
37912observe the bug. For example, did you use @samp{-O}? To guarantee
37913you will not omit something important, list them all. A copy of the
37914Makefile (or the output from make) is sufficient.
c4555f82 37915
8e04817f
AC
37916If we were to try to guess the arguments, we would probably guess wrong
37917and then we might not encounter the bug.
c4555f82 37918
8e04817f
AC
37919@item
37920A complete input script, and all necessary source files, that will
37921reproduce the bug.
c4555f82 37922
8e04817f
AC
37923@item
37924A description of what behavior you observe that you believe is
37925incorrect. For example, ``It gets a fatal signal.''
c4555f82 37926
8e04817f
AC
37927Of course, if the bug is that @value{GDBN} gets a fatal signal, then we
37928will certainly notice it. But if the bug is incorrect output, we might
37929not notice unless it is glaringly wrong. You might as well not give us
37930a chance to make a mistake.
c4555f82 37931
8e04817f
AC
37932Even if the problem you experience is a fatal signal, you should still
37933say so explicitly. Suppose something strange is going on, such as, your
37934copy of @value{GDBN} is out of synch, or you have encountered a bug in
37935the C library on your system. (This has happened!) Your copy might
37936crash and ours would not. If you told us to expect a crash, then when
37937ours fails to crash, we would know that the bug was not happening for
37938us. If you had not told us to expect a crash, then we would not be able
37939to draw any conclusion from our observations.
c4555f82 37940
e0c07bf0
MC
37941@pindex script
37942@cindex recording a session script
37943To collect all this information, you can use a session recording program
37944such as @command{script}, which is available on many Unix systems.
37945Just run your @value{GDBN} session inside @command{script} and then
37946include the @file{typescript} file with your bug report.
37947
37948Another way to record a @value{GDBN} session is to run @value{GDBN}
37949inside Emacs and then save the entire buffer to a file.
37950
8e04817f
AC
37951@item
37952If you wish to suggest changes to the @value{GDBN} source, send us context
37953diffs. If you even discuss something in the @value{GDBN} source, refer to
37954it by context, not by line number.
c4555f82 37955
8e04817f
AC
37956The line numbers in our development sources will not match those in your
37957sources. Your line numbers would convey no useful information to us.
c4555f82 37958
8e04817f 37959@end itemize
c4555f82 37960
8e04817f 37961Here are some things that are not necessary:
c4555f82 37962
8e04817f
AC
37963@itemize @bullet
37964@item
37965A description of the envelope of the bug.
c4555f82 37966
8e04817f
AC
37967Often people who encounter a bug spend a lot of time investigating
37968which changes to the input file will make the bug go away and which
37969changes will not affect it.
c4555f82 37970
8e04817f
AC
37971This is often time consuming and not very useful, because the way we
37972will find the bug is by running a single example under the debugger
37973with breakpoints, not by pure deduction from a series of examples.
37974We recommend that you save your time for something else.
c4555f82 37975
8e04817f
AC
37976Of course, if you can find a simpler example to report @emph{instead}
37977of the original one, that is a convenience for us. Errors in the
37978output will be easier to spot, running under the debugger will take
37979less time, and so on.
c4555f82 37980
8e04817f
AC
37981However, simplification is not vital; if you do not want to do this,
37982report the bug anyway and send us the entire test case you used.
c4555f82 37983
8e04817f
AC
37984@item
37985A patch for the bug.
c4555f82 37986
8e04817f
AC
37987A patch for the bug does help us if it is a good one. But do not omit
37988the necessary information, such as the test case, on the assumption that
37989a patch is all we need. We might see problems with your patch and decide
37990to fix the problem another way, or we might not understand it at all.
c4555f82 37991
8e04817f
AC
37992Sometimes with a program as complicated as @value{GDBN} it is very hard to
37993construct an example that will make the program follow a certain path
37994through the code. If you do not send us the example, we will not be able
37995to construct one, so we will not be able to verify that the bug is fixed.
c4555f82 37996
8e04817f
AC
37997And if we cannot understand what bug you are trying to fix, or why your
37998patch should be an improvement, we will not install it. A test case will
37999help us to understand.
c4555f82 38000
8e04817f
AC
38001@item
38002A guess about what the bug is or what it depends on.
c4555f82 38003
8e04817f
AC
38004Such guesses are usually wrong. Even we cannot guess right about such
38005things without first using the debugger to find the facts.
38006@end itemize
c4555f82 38007
8e04817f
AC
38008@c The readline documentation is distributed with the readline code
38009@c and consists of the two following files:
cc88a640
JK
38010@c rluser.texi
38011@c hsuser.texi
8e04817f
AC
38012@c Use -I with makeinfo to point to the appropriate directory,
38013@c environment var TEXINPUTS with TeX.
39037522 38014@ifclear SYSTEM_READLINE
5bdf8622 38015@include rluser.texi
cc88a640 38016@include hsuser.texi
39037522 38017@end ifclear
c4555f82 38018
4ceed123
JB
38019@node In Memoriam
38020@appendix In Memoriam
38021
9ed350ad
JB
38022The @value{GDBN} project mourns the loss of the following long-time
38023contributors:
4ceed123
JB
38024
38025@table @code
38026@item Fred Fish
9ed350ad
JB
38027Fred was a long-standing contributor to @value{GDBN} (1991-2006), and
38028to Free Software in general. Outside of @value{GDBN}, he was known in
38029the Amiga world for his series of Fish Disks, and the GeekGadget project.
4ceed123
JB
38030
38031@item Michael Snyder
9ed350ad
JB
38032Michael was one of the Global Maintainers of the @value{GDBN} project,
38033with contributions recorded as early as 1996, until 2011. In addition
38034to his day to day participation, he was a large driving force behind
38035adding Reverse Debugging to @value{GDBN}.
4ceed123
JB
38036@end table
38037
38038Beyond their technical contributions to the project, they were also
38039enjoyable members of the Free Software Community. We will miss them.
c4555f82 38040
8e04817f
AC
38041@node Formatting Documentation
38042@appendix Formatting Documentation
c4555f82 38043
8e04817f
AC
38044@cindex @value{GDBN} reference card
38045@cindex reference card
38046The @value{GDBN} 4 release includes an already-formatted reference card, ready
38047for printing with PostScript or Ghostscript, in the @file{gdb}
38048subdirectory of the main source directory@footnote{In
38049@file{gdb-@value{GDBVN}/gdb/refcard.ps} of the version @value{GDBVN}
38050release.}. If you can use PostScript or Ghostscript with your printer,
38051you can print the reference card immediately with @file{refcard.ps}.
c4555f82 38052
8e04817f
AC
38053The release also includes the source for the reference card. You
38054can format it, using @TeX{}, by typing:
c4555f82 38055
474c8240 38056@smallexample
8e04817f 38057make refcard.dvi
474c8240 38058@end smallexample
c4555f82 38059
8e04817f
AC
38060The @value{GDBN} reference card is designed to print in @dfn{landscape}
38061mode on US ``letter'' size paper;
38062that is, on a sheet 11 inches wide by 8.5 inches
38063high. You will need to specify this form of printing as an option to
38064your @sc{dvi} output program.
c4555f82 38065
8e04817f 38066@cindex documentation
c4555f82 38067
8e04817f
AC
38068All the documentation for @value{GDBN} comes as part of the machine-readable
38069distribution. The documentation is written in Texinfo format, which is
38070a documentation system that uses a single source file to produce both
38071on-line information and a printed manual. You can use one of the Info
38072formatting commands to create the on-line version of the documentation
38073and @TeX{} (or @code{texi2roff}) to typeset the printed version.
c4555f82 38074
8e04817f
AC
38075@value{GDBN} includes an already formatted copy of the on-line Info
38076version of this manual in the @file{gdb} subdirectory. The main Info
38077file is @file{gdb-@value{GDBVN}/gdb/gdb.info}, and it refers to
38078subordinate files matching @samp{gdb.info*} in the same directory. If
38079necessary, you can print out these files, or read them with any editor;
38080but they are easier to read using the @code{info} subsystem in @sc{gnu}
38081Emacs or the standalone @code{info} program, available as part of the
38082@sc{gnu} Texinfo distribution.
c4555f82 38083
8e04817f
AC
38084If you want to format these Info files yourself, you need one of the
38085Info formatting programs, such as @code{texinfo-format-buffer} or
38086@code{makeinfo}.
c4555f82 38087
8e04817f
AC
38088If you have @code{makeinfo} installed, and are in the top level
38089@value{GDBN} source directory (@file{gdb-@value{GDBVN}}, in the case of
38090version @value{GDBVN}), you can make the Info file by typing:
c4555f82 38091
474c8240 38092@smallexample
8e04817f
AC
38093cd gdb
38094make gdb.info
474c8240 38095@end smallexample
c4555f82 38096
8e04817f
AC
38097If you want to typeset and print copies of this manual, you need @TeX{},
38098a program to print its @sc{dvi} output files, and @file{texinfo.tex}, the
38099Texinfo definitions file.
c4555f82 38100
8e04817f
AC
38101@TeX{} is a typesetting program; it does not print files directly, but
38102produces output files called @sc{dvi} files. To print a typeset
38103document, you need a program to print @sc{dvi} files. If your system
38104has @TeX{} installed, chances are it has such a program. The precise
38105command to use depends on your system; @kbd{lpr -d} is common; another
38106(for PostScript devices) is @kbd{dvips}. The @sc{dvi} print command may
38107require a file name without any extension or a @samp{.dvi} extension.
c4555f82 38108
8e04817f
AC
38109@TeX{} also requires a macro definitions file called
38110@file{texinfo.tex}. This file tells @TeX{} how to typeset a document
38111written in Texinfo format. On its own, @TeX{} cannot either read or
38112typeset a Texinfo file. @file{texinfo.tex} is distributed with GDB
38113and is located in the @file{gdb-@var{version-number}/texinfo}
38114directory.
c4555f82 38115
8e04817f 38116If you have @TeX{} and a @sc{dvi} printer program installed, you can
d3e8051b 38117typeset and print this manual. First switch to the @file{gdb}
8e04817f
AC
38118subdirectory of the main source directory (for example, to
38119@file{gdb-@value{GDBVN}/gdb}) and type:
c4555f82 38120
474c8240 38121@smallexample
8e04817f 38122make gdb.dvi
474c8240 38123@end smallexample
c4555f82 38124
8e04817f 38125Then give @file{gdb.dvi} to your @sc{dvi} printing program.
c4555f82 38126
8e04817f
AC
38127@node Installing GDB
38128@appendix Installing @value{GDBN}
8e04817f 38129@cindex installation
c4555f82 38130
7fa2210b
DJ
38131@menu
38132* Requirements:: Requirements for building @value{GDBN}
db2e3e2e 38133* Running Configure:: Invoking the @value{GDBN} @file{configure} script
7fa2210b
DJ
38134* Separate Objdir:: Compiling @value{GDBN} in another directory
38135* Config Names:: Specifying names for hosts and targets
38136* Configure Options:: Summary of options for configure
098b41a6 38137* System-wide configuration:: Having a system-wide init file
7fa2210b
DJ
38138@end menu
38139
38140@node Requirements
79a6e687 38141@section Requirements for Building @value{GDBN}
7fa2210b
DJ
38142@cindex building @value{GDBN}, requirements for
38143
38144Building @value{GDBN} requires various tools and packages to be available.
38145Other packages will be used only if they are found.
38146
79a6e687 38147@heading Tools/Packages Necessary for Building @value{GDBN}
7fa2210b 38148@table @asis
7f0bd420
TT
38149@item C@t{++}11 compiler
38150@value{GDBN} is written in C@t{++}11. It should be buildable with any
38151recent C@t{++}11 compiler, e.g.@: GCC.
7fa2210b 38152
7f0bd420
TT
38153@item GNU make
38154@value{GDBN}'s build system relies on features only found in the GNU
38155make program. Other variants of @code{make} will not work.
904cb749
JB
38156
38157@item GMP (The GNU Multiple Precision Arithmetic Library)
38158@value{GDBN} now uses GMP to perform some of its arithmetics.
38159This library may be included with your operating system distribution;
38160if it is not, you can get the latest version from
38161@url{https://gmplib.org/}. If GMP is installed at an unusual path,
38162you can use the @option{--with-libgmp-prefix} option to specify
38163its location.
38164
7fa2210b
DJ
38165@end table
38166
79a6e687 38167@heading Tools/Packages Optional for Building @value{GDBN}
7fa2210b
DJ
38168@table @asis
38169@item Expat
123dc839 38170@anchor{Expat}
7fa2210b
DJ
38171@value{GDBN} can use the Expat XML parsing library. This library may be
38172included with your operating system distribution; if it is not, you
38173can get the latest version from @url{http://expat.sourceforge.net}.
db2e3e2e 38174The @file{configure} script will search for this library in several
7fa2210b
DJ
38175standard locations; if it is installed in an unusual path, you can
38176use the @option{--with-libexpat-prefix} option to specify its location.
38177
9cceb671
DJ
38178Expat is used for:
38179
38180@itemize @bullet
38181@item
38182Remote protocol memory maps (@pxref{Memory Map Format})
38183@item
38184Target descriptions (@pxref{Target Descriptions})
38185@item
2268b414
JK
38186Remote shared library lists (@xref{Library List Format},
38187or alternatively @pxref{Library List Format for SVR4 Targets})
9cceb671
DJ
38188@item
38189MS-Windows shared libraries (@pxref{Shared Libraries})
b3b9301e
PA
38190@item
38191Traceframe info (@pxref{Traceframe Info Format})
2ae8c8e7 38192@item
f4abbc16
MM
38193Branch trace (@pxref{Branch Trace Format},
38194@pxref{Branch Trace Configuration Format})
9cceb671 38195@end itemize
7fa2210b 38196
7f0bd420
TT
38197@item Guile
38198@value{GDBN} can be scripted using GNU Guile. @xref{Guile}. By
38199default, @value{GDBN} will be compiled if the Guile libraries are
38200installed and are found by @file{configure}. You can use the
38201@code{--with-guile} option to request Guile, and pass either the Guile
38202version number or the file name of the relevant @code{pkg-config}
38203program to choose a particular version of Guile.
38204
38205@item iconv
38206@value{GDBN}'s features related to character sets (@pxref{Character
38207Sets}) require a functioning @code{iconv} implementation. If you are
38208on a GNU system, then this is provided by the GNU C Library. Some
38209other systems also provide a working @code{iconv}.
38210
38211If @value{GDBN} is using the @code{iconv} program which is installed
38212in a non-standard place, you will need to tell @value{GDBN} where to
38213find it. This is done with @option{--with-iconv-bin} which specifies
38214the directory that contains the @code{iconv} program. This program is
38215run in order to make a list of the available character sets.
38216
38217On systems without @code{iconv}, you can install GNU Libiconv. If
38218Libiconv is installed in a standard place, @value{GDBN} will
38219automatically use it if it is needed. If you have previously
38220installed Libiconv in a non-standard place, you can use the
38221@option{--with-libiconv-prefix} option to @file{configure}.
38222
38223@value{GDBN}'s top-level @file{configure} and @file{Makefile} will
38224arrange to build Libiconv if a directory named @file{libiconv} appears
38225in the top-most source directory. If Libiconv is built this way, and
38226if the operating system does not provide a suitable @code{iconv}
38227implementation, then the just-built library will automatically be used
38228by @value{GDBN}. One easy way to set this up is to download GNU
38229Libiconv, unpack it inside the top-level directory of the @value{GDBN}
38230source tree, and then rename the directory holding the Libiconv source
38231code to @samp{libiconv}.
38232
38233@item lzma
38234@value{GDBN} can support debugging sections that are compressed with
38235the LZMA library. @xref{MiniDebugInfo}. If this library is not
38236included with your operating system, you can find it in the xz package
38237at @url{http://tukaani.org/xz/}. If the LZMA library is available in
38238the usual place, then the @file{configure} script will use it
38239automatically. If it is installed in an unusual path, you can use the
38240@option{--with-lzma-prefix} option to specify its location.
38241
2400729e
UW
38242@item MPFR
38243@anchor{MPFR}
38244@value{GDBN} can use the GNU MPFR multiple-precision floating-point
38245library. This library may be included with your operating system
38246distribution; if it is not, you can get the latest version from
38247@url{http://www.mpfr.org}. The @file{configure} script will search
38248for this library in several standard locations; if it is installed
38249in an unusual path, you can use the @option{--with-libmpfr-prefix}
38250option to specify its location.
38251
38252GNU MPFR is used to emulate target floating-point arithmetic during
38253expression evaluation when the target uses different floating-point
38254formats than the host. If GNU MPFR it is not available, @value{GDBN}
38255will fall back to using host floating-point arithmetic.
38256
7f0bd420
TT
38257@item Python
38258@value{GDBN} can be scripted using Python language. @xref{Python}.
38259By default, @value{GDBN} will be compiled if the Python libraries are
38260installed and are found by @file{configure}. You can use the
38261@code{--with-python} option to request Python, and pass either the
38262file name of the relevant @code{python} executable, or the name of the
38263directory in which Python is installed, to choose a particular
38264installation of Python.
38265
31fffb02
CS
38266@item zlib
38267@cindex compressed debug sections
38268@value{GDBN} will use the @samp{zlib} library, if available, to read
38269compressed debug sections. Some linkers, such as GNU gold, are capable
38270of producing binaries with compressed debug sections. If @value{GDBN}
38271is compiled with @samp{zlib}, it will be able to read the debug
38272information in such binaries.
38273
38274The @samp{zlib} library is likely included with your operating system
38275distribution; if it is not, you can get the latest version from
38276@url{http://zlib.net}.
7fa2210b
DJ
38277@end table
38278
38279@node Running Configure
db2e3e2e 38280@section Invoking the @value{GDBN} @file{configure} Script
7fa2210b 38281@cindex configuring @value{GDBN}
db2e3e2e 38282@value{GDBN} comes with a @file{configure} script that automates the process
8e04817f
AC
38283of preparing @value{GDBN} for installation; you can then use @code{make} to
38284build the @code{gdb} program.
38285@iftex
38286@c irrelevant in info file; it's as current as the code it lives with.
38287@footnote{If you have a more recent version of @value{GDBN} than @value{GDBVN},
38288look at the @file{README} file in the sources; we may have improved the
38289installation procedures since publishing this manual.}
38290@end iftex
c4555f82 38291
8e04817f
AC
38292The @value{GDBN} distribution includes all the source code you need for
38293@value{GDBN} in a single directory, whose name is usually composed by
38294appending the version number to @samp{gdb}.
c4555f82 38295
8e04817f
AC
38296For example, the @value{GDBN} version @value{GDBVN} distribution is in the
38297@file{gdb-@value{GDBVN}} directory. That directory contains:
c4555f82 38298
8e04817f
AC
38299@table @code
38300@item gdb-@value{GDBVN}/configure @r{(and supporting files)}
38301script for configuring @value{GDBN} and all its supporting libraries
c4555f82 38302
8e04817f
AC
38303@item gdb-@value{GDBVN}/gdb
38304the source specific to @value{GDBN} itself
c4555f82 38305
8e04817f
AC
38306@item gdb-@value{GDBVN}/bfd
38307source for the Binary File Descriptor library
c906108c 38308
8e04817f
AC
38309@item gdb-@value{GDBVN}/include
38310@sc{gnu} include files
c906108c 38311
8e04817f
AC
38312@item gdb-@value{GDBVN}/libiberty
38313source for the @samp{-liberty} free software library
c906108c 38314
8e04817f
AC
38315@item gdb-@value{GDBVN}/opcodes
38316source for the library of opcode tables and disassemblers
c906108c 38317
8e04817f
AC
38318@item gdb-@value{GDBVN}/readline
38319source for the @sc{gnu} command-line interface
8e04817f 38320@end table
c906108c 38321
7f0bd420
TT
38322There may be other subdirectories as well.
38323
db2e3e2e 38324The simplest way to configure and build @value{GDBN} is to run @file{configure}
8e04817f
AC
38325from the @file{gdb-@var{version-number}} source directory, which in
38326this example is the @file{gdb-@value{GDBVN}} directory.
c906108c 38327
8e04817f 38328First switch to the @file{gdb-@var{version-number}} source directory
db2e3e2e 38329if you are not already in it; then run @file{configure}. Pass the
8e04817f
AC
38330identifier for the platform on which @value{GDBN} will run as an
38331argument.
c906108c 38332
8e04817f 38333For example:
c906108c 38334
474c8240 38335@smallexample
8e04817f 38336cd gdb-@value{GDBVN}
7f0bd420 38337./configure
8e04817f 38338make
474c8240 38339@end smallexample
c906108c 38340
7f0bd420
TT
38341Running @samp{configure} and then running @code{make} builds the
38342included supporting libraries, then @code{gdb} itself. The configured
38343source files, and the binaries, are left in the corresponding source
38344directories.
c906108c 38345
8e04817f 38346@need 750
db2e3e2e 38347@file{configure} is a Bourne-shell (@code{/bin/sh}) script; if your
8e04817f
AC
38348system does not recognize this automatically when you run a different
38349shell, you may need to run @code{sh} on it explicitly:
c906108c 38350
474c8240 38351@smallexample
7f0bd420 38352sh configure
474c8240 38353@end smallexample
c906108c 38354
db2e3e2e 38355You should run the @file{configure} script from the top directory in the
94e91d6d 38356source tree, the @file{gdb-@var{version-number}} directory. If you run
db2e3e2e 38357@file{configure} from one of the subdirectories, you will configure only
94e91d6d 38358that subdirectory. That is usually not what you want. In particular,
db2e3e2e 38359if you run the first @file{configure} from the @file{gdb} subdirectory
94e91d6d
MC
38360of the @file{gdb-@var{version-number}} directory, you will omit the
38361configuration of @file{bfd}, @file{readline}, and other sibling
38362directories of the @file{gdb} subdirectory. This leads to build errors
38363about missing include files such as @file{bfd/bfd.h}.
c906108c 38364
7f0bd420
TT
38365You can install @code{@value{GDBN}} anywhere. The best way to do this
38366is to pass the @code{--prefix} option to @code{configure}, and then
38367install it with @code{make install}.
c906108c 38368
8e04817f 38369@node Separate Objdir
79a6e687 38370@section Compiling @value{GDBN} in Another Directory
c906108c 38371
8e04817f
AC
38372If you want to run @value{GDBN} versions for several host or target machines,
38373you need a different @code{gdb} compiled for each combination of
db2e3e2e 38374host and target. @file{configure} is designed to make this easy by
8e04817f
AC
38375allowing you to generate each configuration in a separate subdirectory,
38376rather than in the source directory. If your @code{make} program
38377handles the @samp{VPATH} feature (@sc{gnu} @code{make} does), running
38378@code{make} in each of these directories builds the @code{gdb}
38379program specified there.
c906108c 38380
db2e3e2e 38381To build @code{gdb} in a separate directory, run @file{configure}
8e04817f 38382with the @samp{--srcdir} option to specify where to find the source.
db2e3e2e
BW
38383(You also need to specify a path to find @file{configure}
38384itself from your working directory. If the path to @file{configure}
8e04817f
AC
38385would be the same as the argument to @samp{--srcdir}, you can leave out
38386the @samp{--srcdir} option; it is assumed.)
c906108c 38387
8e04817f
AC
38388For example, with version @value{GDBVN}, you can build @value{GDBN} in a
38389separate directory for a Sun 4 like this:
c906108c 38390
474c8240 38391@smallexample
8e04817f
AC
38392@group
38393cd gdb-@value{GDBVN}
38394mkdir ../gdb-sun4
38395cd ../gdb-sun4
7f0bd420 38396../gdb-@value{GDBVN}/configure
8e04817f
AC
38397make
38398@end group
474c8240 38399@end smallexample
c906108c 38400
db2e3e2e 38401When @file{configure} builds a configuration using a remote source
8e04817f
AC
38402directory, it creates a tree for the binaries with the same structure
38403(and using the same names) as the tree under the source directory. In
38404the example, you'd find the Sun 4 library @file{libiberty.a} in the
38405directory @file{gdb-sun4/libiberty}, and @value{GDBN} itself in
38406@file{gdb-sun4/gdb}.
c906108c 38407
94e91d6d
MC
38408Make sure that your path to the @file{configure} script has just one
38409instance of @file{gdb} in it. If your path to @file{configure} looks
38410like @file{../gdb-@value{GDBVN}/gdb/configure}, you are configuring only
38411one subdirectory of @value{GDBN}, not the whole package. This leads to
38412build errors about missing include files such as @file{bfd/bfd.h}.
38413
8e04817f
AC
38414One popular reason to build several @value{GDBN} configurations in separate
38415directories is to configure @value{GDBN} for cross-compiling (where
38416@value{GDBN} runs on one machine---the @dfn{host}---while debugging
38417programs that run on another machine---the @dfn{target}).
38418You specify a cross-debugging target by
db2e3e2e 38419giving the @samp{--target=@var{target}} option to @file{configure}.
c906108c 38420
8e04817f
AC
38421When you run @code{make} to build a program or library, you must run
38422it in a configured directory---whatever directory you were in when you
db2e3e2e 38423called @file{configure} (or one of its subdirectories).
c906108c 38424
db2e3e2e 38425The @code{Makefile} that @file{configure} generates in each source
8e04817f
AC
38426directory also runs recursively. If you type @code{make} in a source
38427directory such as @file{gdb-@value{GDBVN}} (or in a separate configured
38428directory configured with @samp{--srcdir=@var{dirname}/gdb-@value{GDBVN}}), you
38429will build all the required libraries, and then build GDB.
c906108c 38430
8e04817f
AC
38431When you have multiple hosts or targets configured in separate
38432directories, you can run @code{make} on them in parallel (for example,
38433if they are NFS-mounted on each of the hosts); they will not interfere
38434with each other.
c906108c 38435
8e04817f 38436@node Config Names
79a6e687 38437@section Specifying Names for Hosts and Targets
c906108c 38438
db2e3e2e 38439The specifications used for hosts and targets in the @file{configure}
8e04817f
AC
38440script are based on a three-part naming scheme, but some short predefined
38441aliases are also supported. The full naming scheme encodes three pieces
38442of information in the following pattern:
c906108c 38443
474c8240 38444@smallexample
8e04817f 38445@var{architecture}-@var{vendor}-@var{os}
474c8240 38446@end smallexample
c906108c 38447
8e04817f
AC
38448For example, you can use the alias @code{sun4} as a @var{host} argument,
38449or as the value for @var{target} in a @code{--target=@var{target}}
38450option. The equivalent full name is @samp{sparc-sun-sunos4}.
c906108c 38451
db2e3e2e 38452The @file{configure} script accompanying @value{GDBN} does not provide
8e04817f 38453any query facility to list all supported host and target names or
db2e3e2e 38454aliases. @file{configure} calls the Bourne shell script
8e04817f
AC
38455@code{config.sub} to map abbreviations to full names; you can read the
38456script, if you wish, or you can use it to test your guesses on
38457abbreviations---for example:
c906108c 38458
8e04817f
AC
38459@smallexample
38460% sh config.sub i386-linux
38461i386-pc-linux-gnu
38462% sh config.sub alpha-linux
38463alpha-unknown-linux-gnu
38464% sh config.sub hp9k700
38465hppa1.1-hp-hpux
38466% sh config.sub sun4
38467sparc-sun-sunos4.1.1
38468% sh config.sub sun3
38469m68k-sun-sunos4.1.1
38470% sh config.sub i986v
38471Invalid configuration `i986v': machine `i986v' not recognized
38472@end smallexample
c906108c 38473
8e04817f
AC
38474@noindent
38475@code{config.sub} is also distributed in the @value{GDBN} source
38476directory (@file{gdb-@value{GDBVN}}, for version @value{GDBVN}).
d700128c 38477
8e04817f 38478@node Configure Options
db2e3e2e 38479@section @file{configure} Options
c906108c 38480
db2e3e2e 38481Here is a summary of the @file{configure} options and arguments that
7f0bd420
TT
38482are most often useful for building @value{GDBN}. @file{configure}
38483also has several other options not listed here. @inforef{Running
38484configure scripts,,autoconf.info}, for a full
38485explanation of @file{configure}.
c906108c 38486
474c8240 38487@smallexample
8e04817f
AC
38488configure @r{[}--help@r{]}
38489 @r{[}--prefix=@var{dir}@r{]}
38490 @r{[}--exec-prefix=@var{dir}@r{]}
38491 @r{[}--srcdir=@var{dirname}@r{]}
8e04817f 38492 @r{[}--target=@var{target}@r{]}
474c8240 38493@end smallexample
c906108c 38494
8e04817f
AC
38495@noindent
38496You may introduce options with a single @samp{-} rather than
38497@samp{--} if you prefer; but you may abbreviate option names if you use
38498@samp{--}.
c906108c 38499
8e04817f
AC
38500@table @code
38501@item --help
db2e3e2e 38502Display a quick summary of how to invoke @file{configure}.
c906108c 38503
8e04817f
AC
38504@item --prefix=@var{dir}
38505Configure the source to install programs and files under directory
38506@file{@var{dir}}.
c906108c 38507
8e04817f
AC
38508@item --exec-prefix=@var{dir}
38509Configure the source to install programs under directory
38510@file{@var{dir}}.
c906108c 38511
8e04817f
AC
38512@c avoid splitting the warning from the explanation:
38513@need 2000
38514@item --srcdir=@var{dirname}
8e04817f
AC
38515Use this option to make configurations in directories separate from the
38516@value{GDBN} source directories. Among other things, you can use this to
38517build (or maintain) several configurations simultaneously, in separate
db2e3e2e 38518directories. @file{configure} writes configuration-specific files in
8e04817f 38519the current directory, but arranges for them to use the source in the
db2e3e2e 38520directory @var{dirname}. @file{configure} creates directories under
8e04817f
AC
38521the working directory in parallel to the source directories below
38522@var{dirname}.
c906108c 38523
8e04817f
AC
38524@item --target=@var{target}
38525Configure @value{GDBN} for cross-debugging programs running on the specified
38526@var{target}. Without this option, @value{GDBN} is configured to debug
38527programs that run on the same machine (@var{host}) as @value{GDBN} itself.
c906108c 38528
a95746f9
TT
38529There is no convenient way to generate a list of all available
38530targets. Also see the @code{--enable-targets} option, below.
8e04817f 38531@end table
c906108c 38532
a95746f9
TT
38533There are many other options that are specific to @value{GDBN}. This
38534lists just the most common ones; there are some very specialized
38535options not described here.
38536
38537@table @code
38538@item --enable-targets=@r{[}@var{target}@r{]}@dots{}
38539@itemx --enable-targets=all
38540Configure @value{GDBN} for cross-debugging programs running on the
38541specified list of targets. The special value @samp{all} configures
38542@value{GDBN} for debugging programs running on any target it supports.
38543
38544@item --with-gdb-datadir=@var{path}
38545Set the @value{GDBN}-specific data directory. @value{GDBN} will look
38546here for certain supporting files or scripts. This defaults to the
6b92c0d3 38547@file{gdb} subdirectory of @samp{datadir} (which can be set using
a95746f9
TT
38548@code{--datadir}).
38549
38550@item --with-relocated-sources=@var{dir}
38551Sets up the default source path substitution rule so that directory
38552names recorded in debug information will be automatically adjusted for
38553any directory under @var{dir}. @var{dir} should be a subdirectory of
38554@value{GDBN}'s configured prefix, the one mentioned in the
38555@code{--prefix} or @code{--exec-prefix} options to configure. This
38556option is useful if GDB is supposed to be moved to a different place
38557after it is built.
38558
38559@item --enable-64-bit-bfd
38560Enable 64-bit support in BFD on 32-bit hosts.
38561
38562@item --disable-gdbmi
38563Build @value{GDBN} without the GDB/MI machine interface
38564(@pxref{GDB/MI}).
38565
38566@item --enable-tui
38567Build @value{GDBN} with the text-mode full-screen user interface
38568(TUI). Requires a curses library (ncurses and cursesX are also
38569supported).
38570
38571@item --with-curses
38572Use the curses library instead of the termcap library, for text-mode
38573terminal operations.
38574
0d79cdc4
AM
38575@item --with-debuginfod
38576Build @value{GDBN} with libdebuginfod, the debuginfod client library.
38577Used to automatically fetch source files and separate debug files from
38578debuginfod servers using the associated executable's build ID. Enabled
38579by default if libdebuginfod is installed and found at configure time.
38580debuginfod is packaged with elfutils, starting with version 0.178. You
38581can get the latest version from `https://sourceware.org/elfutils/'.
38582
a95746f9
TT
38583@item --with-libunwind-ia64
38584Use the libunwind library for unwinding function call stack on ia64
38585target platforms. See http://www.nongnu.org/libunwind/index.html for
38586details.
38587
38588@item --with-system-readline
38589Use the readline library installed on the host, rather than the
86c6b807
TT
38590library supplied as part of @value{GDBN}. Readline 7 or newer is
38591required; this is enforced by the build system.
a95746f9
TT
38592
38593@item --with-system-zlib
38594Use the zlib library installed on the host, rather than the library
38595supplied as part of @value{GDBN}.
38596
38597@item --with-expat
38598Build @value{GDBN} with Expat, a library for XML parsing. (Done by
38599default if libexpat is installed and found at configure time.) This
38600library is used to read XML files supplied with @value{GDBN}. If it
38601is unavailable, some features, such as remote protocol memory maps,
38602target descriptions, and shared library lists, that are based on XML
38603files, will not be available in @value{GDBN}. If your host does not
38604have libexpat installed, you can get the latest version from
38605`http://expat.sourceforge.net'.
38606
38607@item --with-libiconv-prefix@r{[}=@var{dir}@r{]}
38608
38609Build @value{GDBN} with GNU libiconv, a character set encoding
38610conversion library. This is not done by default, as on GNU systems
38611the @code{iconv} that is built in to the C library is sufficient. If
38612your host does not have a working @code{iconv}, you can get the latest
38613version of GNU iconv from `https://www.gnu.org/software/libiconv/'.
38614
38615@value{GDBN}'s build system also supports building GNU libiconv as
38616part of the overall build. @xref{Requirements}.
38617
38618@item --with-lzma
38619Build @value{GDBN} with LZMA, a compression library. (Done by default
38620if liblzma is installed and found at configure time.) LZMA is used by
38621@value{GDBN}'s "mini debuginfo" feature, which is only useful on
38622platforms using the ELF object file format. If your host does not
38623have liblzma installed, you can get the latest version from
38624`https://tukaani.org/xz/'.
38625
38626@item --with-mpfr
38627Build @value{GDBN} with GNU MPFR, a library for multiple-precision
38628floating-point computation with correct rounding. (Done by default if
38629GNU MPFR is installed and found at configure time.) This library is
38630used to emulate target floating-point arithmetic during expression
38631evaluation when the target uses different floating-point formats than
38632the host. If GNU MPFR is not available, @value{GDBN} will fall back
38633to using host floating-point arithmetic. If your host does not have
38634GNU MPFR installed, you can get the latest version from
38635`http://www.mpfr.org'.
38636
38637@item --with-python@r{[}=@var{python}@r{]}
38638Build @value{GDBN} with Python scripting support. (Done by default if
38639libpython is present and found at configure time.) Python makes
38640@value{GDBN} scripting much more powerful than the restricted CLI
38641scripting language. If your host does not have Python installed, you
38642can find it on `http://www.python.org/download/'. The oldest version
2c3fc25d 38643of Python supported by GDB is 2.6. The optional argument @var{python}
a95746f9
TT
38644is used to find the Python headers and libraries. It can be either
38645the name of a Python executable, or the name of the directory in which
38646Python is installed.
38647
38648@item --with-guile[=GUILE]'
38649Build @value{GDBN} with GNU Guile scripting support. (Done by default
38650if libguile is present and found at configure time.) If your host
38651does not have Guile installed, you can find it at
38652`https://www.gnu.org/software/guile/'. The optional argument GUILE
38653can be a version number, which will cause @code{configure} to try to
38654use that version of Guile; or the file name of a @code{pkg-config}
38655executable, which will be queried to find the information needed to
38656compile and link against Guile.
38657
38658@item --without-included-regex
38659Don't use the regex library included with @value{GDBN} (as part of the
38660libiberty library). This is the default on hosts with version 2 of
38661the GNU C library.
38662
38663@item --with-sysroot=@var{dir}
38664Use @var{dir} as the default system root directory for libraries whose
38665file names begin with @file{/lib}' or @file{/usr/lib'}. (The value of
38666@var{dir} can be modified at run time by using the @command{set
38667sysroot} command.) If @var{dir} is under the @value{GDBN} configured
38668prefix (set with @code{--prefix} or @code{--exec-prefix options}, the
38669default system root will be automatically adjusted if and when
38670@value{GDBN} is moved to a different location.
38671
38672@item --with-system-gdbinit=@var{file}
38673Configure @value{GDBN} to automatically load a system-wide init file.
38674@var{file} should be an absolute file name. If @var{file} is in a
38675directory under the configured prefix, and @value{GDBN} is moved to
38676another location after being built, the location of the system-wide
38677init file will be adjusted accordingly.
38678
ed2a2229
CB
38679@item --with-system-gdbinit-dir=@var{directory}
38680Configure @value{GDBN} to automatically load init files from a
38681system-wide directory. @var{directory} should be an absolute directory
38682name. If @var{directory} is in a directory under the configured
38683prefix, and @value{GDBN} is moved to another location after being
38684built, the location of the system-wide init directory will be
38685adjusted accordingly.
38686
a95746f9
TT
38687@item --enable-build-warnings
38688When building the @value{GDBN} sources, ask the compiler to warn about
38689any code which looks even vaguely suspicious. It passes many
38690different warning flags, depending on the exact version of the
38691compiler you are using.
38692
38693@item --enable-werror
38694Treat compiler warnings as werrors. It adds the @code{-Werror} flag
38695to the compiler, which will fail the compilation if the compiler
38696outputs any warning messages.
f35d5ade
TT
38697
38698@item --enable-ubsan
eff98030
TT
38699Enable the GCC undefined behavior sanitizer. This is disabled by
38700default, but passing @code{--enable-ubsan=yes} or
38701@code{--enable-ubsan=auto} to @code{configure} will enable it. The
38702undefined behavior sanitizer checks for C@t{++} undefined behavior.
38703It has a performance cost, so if you are looking at @value{GDBN}'s
38704performance, you should disable it. The undefined behavior sanitizer
38705was first introduced in GCC 4.9.
a95746f9 38706@end table
c906108c 38707
098b41a6
JG
38708@node System-wide configuration
38709@section System-wide configuration and settings
38710@cindex system-wide init file
38711
ed2a2229
CB
38712@value{GDBN} can be configured to have a system-wide init file and a
38713system-wide init file directory; this file and files in that directory
38714(if they have a recognized file extension) will be read and executed at
38715startup (@pxref{Startup, , What @value{GDBN} does during startup}).
098b41a6 38716
ed2a2229 38717Here are the corresponding configure options:
098b41a6
JG
38718
38719@table @code
38720@item --with-system-gdbinit=@var{file}
38721Specify that the default location of the system-wide init file is
38722@var{file}.
ed2a2229
CB
38723@item --with-system-gdbinit-dir=@var{directory}
38724Specify that the default location of the system-wide init file directory
38725is @var{directory}.
098b41a6
JG
38726@end table
38727
38728If @value{GDBN} has been configured with the option @option{--prefix=$prefix},
ed2a2229 38729they may be subject to relocation. Two possible cases:
098b41a6
JG
38730
38731@itemize @bullet
38732@item
ed2a2229 38733If the default location of this init file/directory contains @file{$prefix},
098b41a6
JG
38734it will be subject to relocation. Suppose that the configure options
38735are @option{--prefix=$prefix --with-system-gdbinit=$prefix/etc/gdbinit};
38736if @value{GDBN} is moved from @file{$prefix} to @file{$install}, the system
38737init file is looked for as @file{$install/etc/gdbinit} instead of
38738@file{$prefix/etc/gdbinit}.
38739
38740@item
38741By contrast, if the default location does not contain the prefix,
38742it will not be relocated. E.g.@: if @value{GDBN} has been configured with
38743@option{--prefix=/usr/local --with-system-gdbinit=/usr/share/gdb/gdbinit},
38744then @value{GDBN} will always look for @file{/usr/share/gdb/gdbinit},
38745wherever @value{GDBN} is installed.
38746@end itemize
38747
e64e0392
DE
38748If the configured location of the system-wide init file (as given by the
38749@option{--with-system-gdbinit} option at configure time) is in the
38750data-directory (as specified by @option{--with-gdb-datadir} at configure
38751time) or in one of its subdirectories, then @value{GDBN} will look for the
38752system-wide init file in the directory specified by the
38753@option{--data-directory} command-line option.
38754Note that the system-wide init file is only read once, during @value{GDBN}
38755initialization. If the data-directory is changed after @value{GDBN} has
38756started with the @code{set data-directory} command, the file will not be
38757reread.
38758
ed2a2229
CB
38759This applies similarly to the system-wide directory specified in
38760@option{--with-system-gdbinit-dir}.
38761
38762Any supported scripting language can be used for these init files, as long
38763as the file extension matches the scripting language. To be interpreted
38764as regular @value{GDBN} commands, the files needs to have a @file{.gdb}
38765extension.
38766
5901af59
JB
38767@menu
38768* System-wide Configuration Scripts:: Installed System-wide Configuration Scripts
38769@end menu
38770
38771@node System-wide Configuration Scripts
0201faac
JB
38772@subsection Installed System-wide Configuration Scripts
38773@cindex system-wide configuration scripts
38774
38775The @file{system-gdbinit} directory, located inside the data-directory
38776(as specified by @option{--with-gdb-datadir} at configure time) contains
38777a number of scripts which can be used as system-wide init files. To
38778automatically source those scripts at startup, @value{GDBN} should be
38779configured with @option{--with-system-gdbinit}. Otherwise, any user
38780should be able to source them by hand as needed.
38781
38782The following scripts are currently available:
38783@itemize @bullet
38784
38785@item @file{elinos.py}
38786@pindex elinos.py
38787@cindex ELinOS system-wide configuration script
38788This script is useful when debugging a program on an ELinOS target.
38789It takes advantage of the environment variables defined in a standard
38790ELinOS environment in order to determine the location of the system
38791shared libraries, and then sets the @samp{solib-absolute-prefix}
38792and @samp{solib-search-path} variables appropriately.
38793
38794@item @file{wrs-linux.py}
38795@pindex wrs-linux.py
38796@cindex Wind River Linux system-wide configuration script
38797This script is useful when debugging a program on a target running
38798Wind River Linux. It expects the @env{ENV_PREFIX} to be set to
38799the host-side sysroot used by the target system.
38800
38801@end itemize
38802
8e04817f
AC
38803@node Maintenance Commands
38804@appendix Maintenance Commands
38805@cindex maintenance commands
38806@cindex internal commands
c906108c 38807
8e04817f 38808In addition to commands intended for @value{GDBN} users, @value{GDBN}
09d4efe1
EZ
38809includes a number of commands intended for @value{GDBN} developers,
38810that are not documented elsewhere in this manual. These commands are
da316a69
EZ
38811provided here for reference. (For commands that turn on debugging
38812messages, see @ref{Debugging Output}.)
c906108c 38813
8e04817f 38814@table @code
09d4efe1 38815@kindex maint agent
782b2b07 38816@kindex maint agent-eval
f77cc5f0
HZ
38817@item maint agent @r{[}-at @var{location}@r{,}@r{]} @var{expression}
38818@itemx maint agent-eval @r{[}-at @var{location}@r{,}@r{]} @var{expression}
09d4efe1
EZ
38819Translate the given @var{expression} into remote agent bytecodes.
38820This command is useful for debugging the Agent Expression mechanism
782b2b07
SS
38821(@pxref{Agent Expressions}). The @samp{agent} version produces an
38822expression useful for data collection, such as by tracepoints, while
38823@samp{maint agent-eval} produces an expression that evaluates directly
38824to a result. For instance, a collection expression for @code{globa +
38825globb} will include bytecodes to record four bytes of memory at each
38826of the addresses of @code{globa} and @code{globb}, while discarding
38827the result of the addition, while an evaluation expression will do the
38828addition and return the sum.
f77cc5f0
HZ
38829If @code{-at} is given, generate remote agent bytecode for @var{location}.
38830If not, generate remote agent bytecode for current frame PC address.
09d4efe1 38831
d3ce09f5
SS
38832@kindex maint agent-printf
38833@item maint agent-printf @var{format},@var{expr},...
38834Translate the given format string and list of argument expressions
38835into remote agent bytecodes and display them as a disassembled list.
38836This command is useful for debugging the agent version of dynamic
6dd24dfa 38837printf (@pxref{Dynamic Printf}).
d3ce09f5 38838
8e04817f
AC
38839@kindex maint info breakpoints
38840@item @anchor{maint info breakpoints}maint info breakpoints
38841Using the same format as @samp{info breakpoints}, display both the
38842breakpoints you've set explicitly, and those @value{GDBN} is using for
38843internal purposes. Internal breakpoints are shown with negative
38844breakpoint numbers. The type column identifies what kind of breakpoint
38845is shown:
c906108c 38846
8e04817f
AC
38847@table @code
38848@item breakpoint
38849Normal, explicitly set breakpoint.
c906108c 38850
8e04817f
AC
38851@item watchpoint
38852Normal, explicitly set watchpoint.
c906108c 38853
8e04817f
AC
38854@item longjmp
38855Internal breakpoint, used to handle correctly stepping through
38856@code{longjmp} calls.
c906108c 38857
8e04817f
AC
38858@item longjmp resume
38859Internal breakpoint at the target of a @code{longjmp}.
c906108c 38860
8e04817f
AC
38861@item until
38862Temporary internal breakpoint used by the @value{GDBN} @code{until} command.
c906108c 38863
8e04817f
AC
38864@item finish
38865Temporary internal breakpoint used by the @value{GDBN} @code{finish} command.
c906108c 38866
8e04817f
AC
38867@item shlib events
38868Shared library events.
c906108c 38869
8e04817f 38870@end table
c906108c 38871
b0627500
MM
38872@kindex maint info btrace
38873@item maint info btrace
38874Pint information about raw branch tracing data.
38875
38876@kindex maint btrace packet-history
38877@item maint btrace packet-history
38878Print the raw branch trace packets that are used to compute the
38879execution history for the @samp{record btrace} command. Both the
38880information and the format in which it is printed depend on the btrace
38881recording format.
38882
38883@table @code
38884@item bts
38885For the BTS recording format, print a list of blocks of sequential
38886code. For each block, the following information is printed:
38887
38888@table @asis
38889@item Block number
38890Newer blocks have higher numbers. The oldest block has number zero.
38891@item Lowest @samp{PC}
38892@item Highest @samp{PC}
38893@end table
38894
38895@item pt
bc504a31
PA
38896For the Intel Processor Trace recording format, print a list of
38897Intel Processor Trace packets. For each packet, the following
b0627500
MM
38898information is printed:
38899
38900@table @asis
38901@item Packet number
38902Newer packets have higher numbers. The oldest packet has number zero.
38903@item Trace offset
38904The packet's offset in the trace stream.
38905@item Packet opcode and payload
38906@end table
38907@end table
38908
38909@kindex maint btrace clear-packet-history
38910@item maint btrace clear-packet-history
38911Discards the cached packet history printed by the @samp{maint btrace
38912packet-history} command. The history will be computed again when
38913needed.
38914
38915@kindex maint btrace clear
38916@item maint btrace clear
38917Discard the branch trace data. The data will be fetched anew and the
38918branch trace will be recomputed when needed.
38919
38920This implicitly truncates the branch trace to a single branch trace
38921buffer. When updating branch trace incrementally, the branch trace
38922available to @value{GDBN} may be bigger than a single branch trace
38923buffer.
38924
38925@kindex maint set btrace pt skip-pad
38926@item maint set btrace pt skip-pad
38927@kindex maint show btrace pt skip-pad
38928@item maint show btrace pt skip-pad
38929Control whether @value{GDBN} will skip PAD packets when computing the
38930packet history.
38931
fff08868
HZ
38932@kindex set displaced-stepping
38933@kindex show displaced-stepping
237fc4c9
PA
38934@cindex displaced stepping support
38935@cindex out-of-line single-stepping
fff08868
HZ
38936@item set displaced-stepping
38937@itemx show displaced-stepping
237fc4c9 38938Control whether or not @value{GDBN} will do @dfn{displaced stepping}
fff08868
HZ
38939if the target supports it. Displaced stepping is a way to single-step
38940over breakpoints without removing them from the inferior, by executing
38941an out-of-line copy of the instruction that was originally at the
38942breakpoint location. It is also known as out-of-line single-stepping.
38943
38944@table @code
38945@item set displaced-stepping on
38946If the target architecture supports it, @value{GDBN} will use
38947displaced stepping to step over breakpoints.
38948
38949@item set displaced-stepping off
38950@value{GDBN} will not use displaced stepping to step over breakpoints,
38951even if such is supported by the target architecture.
38952
38953@cindex non-stop mode, and @samp{set displaced-stepping}
38954@item set displaced-stepping auto
38955This is the default mode. @value{GDBN} will use displaced stepping
38956only if non-stop mode is active (@pxref{Non-Stop Mode}) and the target
38957architecture supports displaced stepping.
38958@end table
237fc4c9 38959
7d0c9981
DE
38960@kindex maint check-psymtabs
38961@item maint check-psymtabs
38962Check the consistency of currently expanded psymtabs versus symtabs.
38963Use this to check, for example, whether a symbol is in one but not the other.
38964
09d4efe1
EZ
38965@kindex maint check-symtabs
38966@item maint check-symtabs
7d0c9981
DE
38967Check the consistency of currently expanded symtabs.
38968
38969@kindex maint expand-symtabs
38970@item maint expand-symtabs [@var{regexp}]
38971Expand symbol tables.
38972If @var{regexp} is specified, only expand symbol tables for file
38973names matching @var{regexp}.
09d4efe1 38974
992c7d70
GB
38975@kindex maint set catch-demangler-crashes
38976@kindex maint show catch-demangler-crashes
38977@cindex demangler crashes
38978@item maint set catch-demangler-crashes [on|off]
38979@itemx maint show catch-demangler-crashes
38980Control whether @value{GDBN} should attempt to catch crashes in the
38981symbol name demangler. The default is to attempt to catch crashes.
38982If enabled, the first time a crash is caught, a core file is created,
38983the offending symbol is displayed and the user is presented with the
38984option to terminate the current session.
38985
09d4efe1
EZ
38986@kindex maint cplus first_component
38987@item maint cplus first_component @var{name}
38988Print the first C@t{++} class/namespace component of @var{name}.
38989
38990@kindex maint cplus namespace
38991@item maint cplus namespace
38992Print the list of possible C@t{++} namespaces.
38993
09d4efe1
EZ
38994@kindex maint deprecate
38995@kindex maint undeprecate
38996@cindex deprecated commands
38997@item maint deprecate @var{command} @r{[}@var{replacement}@r{]}
38998@itemx maint undeprecate @var{command}
38999Deprecate or undeprecate the named @var{command}. Deprecated commands
39000cause @value{GDBN} to issue a warning when you use them. The optional
39001argument @var{replacement} says which newer command should be used in
39002favor of the deprecated one; if it is given, @value{GDBN} will mention
39003the replacement as part of the warning.
39004
39005@kindex maint dump-me
39006@item maint dump-me
721c2651 39007@cindex @code{SIGQUIT} signal, dump core of @value{GDBN}
09d4efe1 39008Cause a fatal signal in the debugger and force it to dump its core.
721c2651
EZ
39009This is supported only on systems which support aborting a program
39010with the @code{SIGQUIT} signal.
09d4efe1 39011
8d30a00d
AC
39012@kindex maint internal-error
39013@kindex maint internal-warning
57fcfb1b
GB
39014@kindex maint demangler-warning
39015@cindex demangler crashes
09d4efe1
EZ
39016@item maint internal-error @r{[}@var{message-text}@r{]}
39017@itemx maint internal-warning @r{[}@var{message-text}@r{]}
57fcfb1b
GB
39018@itemx maint demangler-warning @r{[}@var{message-text}@r{]}
39019
39020Cause @value{GDBN} to call the internal function @code{internal_error},
39021@code{internal_warning} or @code{demangler_warning} and hence behave
7ee67ee4 39022as though an internal problem has been detected. In addition to
57fcfb1b
GB
39023reporting the internal problem, these functions give the user the
39024opportunity to either quit @value{GDBN} or (for @code{internal_error}
39025and @code{internal_warning}) create a core file of the current
8d30a00d
AC
39026@value{GDBN} session.
39027
09d4efe1
EZ
39028These commands take an optional parameter @var{message-text} that is
39029used as the text of the error or warning message.
39030
d3e8051b 39031Here's an example of using @code{internal-error}:
09d4efe1 39032
8d30a00d 39033@smallexample
f7dc1244 39034(@value{GDBP}) @kbd{maint internal-error testing, 1, 2}
8d30a00d
AC
39035@dots{}/maint.c:121: internal-error: testing, 1, 2
39036A problem internal to GDB has been detected. Further
39037debugging may prove unreliable.
39038Quit this debugging session? (y or n) @kbd{n}
39039Create a core file? (y or n) @kbd{n}
f7dc1244 39040(@value{GDBP})
8d30a00d
AC
39041@end smallexample
39042
3c16cced
PA
39043@cindex @value{GDBN} internal error
39044@cindex internal errors, control of @value{GDBN} behavior
57fcfb1b 39045@cindex demangler crashes
3c16cced
PA
39046
39047@kindex maint set internal-error
39048@kindex maint show internal-error
39049@kindex maint set internal-warning
39050@kindex maint show internal-warning
57fcfb1b
GB
39051@kindex maint set demangler-warning
39052@kindex maint show demangler-warning
3c16cced
PA
39053@item maint set internal-error @var{action} [ask|yes|no]
39054@itemx maint show internal-error @var{action}
39055@itemx maint set internal-warning @var{action} [ask|yes|no]
39056@itemx maint show internal-warning @var{action}
57fcfb1b
GB
39057@itemx maint set demangler-warning @var{action} [ask|yes|no]
39058@itemx maint show demangler-warning @var{action}
3c16cced
PA
39059When @value{GDBN} reports an internal problem (error or warning) it
39060gives the user the opportunity to both quit @value{GDBN} and create a
39061core file of the current @value{GDBN} session. These commands let you
39062override the default behaviour for each particular @var{action},
39063described in the table below.
39064
39065@table @samp
39066@item quit
39067You can specify that @value{GDBN} should always (yes) or never (no)
39068quit. The default is to ask the user what to do.
39069
39070@item corefile
39071You can specify that @value{GDBN} should always (yes) or never (no)
57fcfb1b
GB
39072create a core file. The default is to ask the user what to do. Note
39073that there is no @code{corefile} option for @code{demangler-warning}:
39074demangler warnings always create a core file and this cannot be
39075disabled.
3c16cced
PA
39076@end table
39077
09d4efe1
EZ
39078@kindex maint packet
39079@item maint packet @var{text}
39080If @value{GDBN} is talking to an inferior via the serial protocol,
39081then this command sends the string @var{text} to the inferior, and
39082displays the response packet. @value{GDBN} supplies the initial
39083@samp{$} character, the terminating @samp{#} character, and the
39084checksum.
39085
39086@kindex maint print architecture
39087@item maint print architecture @r{[}@var{file}@r{]}
39088Print the entire architecture configuration. The optional argument
39089@var{file} names the file where the output goes.
8d30a00d 39090
ab33b152
AB
39091@kindex maint print c-tdesc
39092@item maint print c-tdesc @r{[}-single-feature@r{]} @r{[}@var{file}@r{]}
8e2141c6
YQ
39093Print the target description (@pxref{Target Descriptions}) as
39094a C source file. By default, the target description is for the current
39095target, but if the optional argument @var{file} is provided, that file
39096is used to produce the description. The @var{file} should be an XML
39097document, of the form described in @ref{Target Description Format}.
39098The created source file is built into @value{GDBN} when @value{GDBN} is
39099built again. This command is used by developers after they add or
39100modify XML target descriptions.
81adfced 39101
ab33b152
AB
39102When the optional flag @samp{-single-feature} is provided then the
39103target description being processed (either the default, or from
39104@var{file}) must only contain a single feature. The source file
39105produced is different in this case.
39106
caa7fd04
AB
39107@kindex maint print xml-tdesc
39108@item maint print xml-tdesc @r{[}@var{file}@r{]}
39109Print the target description (@pxref{Target Descriptions}) as an XML
39110file. By default print the target description for the current target,
39111but if the optional argument @var{file} is provided, then that file is
39112read in by GDB and then used to produce the description. The
39113@var{file} should be an XML document, of the form described in
39114@ref{Target Description Format}.
39115
27d41eac
YQ
39116@kindex maint check xml-descriptions
39117@item maint check xml-descriptions @var{dir}
39118Check that the target descriptions dynamically created by @value{GDBN}
39119equal the descriptions created from XML files found in @var{dir}.
39120
41fc26a2 39121@anchor{maint check libthread-db}
5045b3d7
GB
39122@kindex maint check libthread-db
39123@item maint check libthread-db
39124Run integrity checks on the current inferior's thread debugging
39125library. This exercises all @code{libthread_db} functionality used by
39126@value{GDBN} on GNU/Linux systems, and by extension also exercises the
39127@code{proc_service} functions provided by @value{GDBN} that
39128@code{libthread_db} uses. Note that parts of the test may be skipped
39129on some platforms when debugging core files.
39130
b089853a
KB
39131@kindex maint print core-file-backed-mappings
39132@cindex memory address space mappings
39133@item maint print core-file-backed-mappings
39134Print the file-backed mappings which were loaded from a core file note.
39135This output represents state internal to @value{GDBN} and should be
39136similar to the mappings displayed by the @code{info proc mappings}
39137command.
39138
00905d52
AC
39139@kindex maint print dummy-frames
39140@item maint print dummy-frames
00905d52
AC
39141Prints the contents of @value{GDBN}'s internal dummy-frame stack.
39142
39143@smallexample
f7dc1244 39144(@value{GDBP}) @kbd{b add}
00905d52 39145@dots{}
f7dc1244 39146(@value{GDBP}) @kbd{print add(2,3)}
00905d52
AC
39147Breakpoint 2, add (a=2, b=3) at @dots{}
3914858 return (a + b);
39149The program being debugged stopped while in a function called from GDB.
39150@dots{}
f7dc1244 39151(@value{GDBP}) @kbd{maint print dummy-frames}
b67a2c6f 391520xa8206d8: id=@{stack=0xbfffe734,code=0xbfffe73f,!special@}, ptid=process 9353
f7dc1244 39153(@value{GDBP})
00905d52
AC
39154@end smallexample
39155
39156Takes an optional file parameter.
39157
0680b120
AC
39158@kindex maint print registers
39159@kindex maint print raw-registers
39160@kindex maint print cooked-registers
617073a9 39161@kindex maint print register-groups
c21236dc 39162@kindex maint print remote-registers
09d4efe1
EZ
39163@item maint print registers @r{[}@var{file}@r{]}
39164@itemx maint print raw-registers @r{[}@var{file}@r{]}
39165@itemx maint print cooked-registers @r{[}@var{file}@r{]}
39166@itemx maint print register-groups @r{[}@var{file}@r{]}
c21236dc 39167@itemx maint print remote-registers @r{[}@var{file}@r{]}
0680b120
AC
39168Print @value{GDBN}'s internal register data structures.
39169
617073a9 39170The command @code{maint print raw-registers} includes the contents of
c21236dc
PA
39171the raw register cache; the command @code{maint print
39172cooked-registers} includes the (cooked) value of all registers,
39173including registers which aren't available on the target nor visible
39174to user; the command @code{maint print register-groups} includes the
39175groups that each register is a member of; and the command @code{maint
39176print remote-registers} includes the remote target's register numbers
0a7cfe2c 39177and offsets in the `G' packets.
0680b120 39178
09d4efe1
EZ
39179These commands take an optional parameter, a file name to which to
39180write the information.
0680b120 39181
617073a9 39182@kindex maint print reggroups
09d4efe1
EZ
39183@item maint print reggroups @r{[}@var{file}@r{]}
39184Print @value{GDBN}'s internal register group data structures. The
39185optional argument @var{file} tells to what file to write the
39186information.
617073a9 39187
09d4efe1 39188The register groups info looks like this:
617073a9
AC
39189
39190@smallexample
f7dc1244 39191(@value{GDBP}) @kbd{maint print reggroups}
b383017d
RM
39192 Group Type
39193 general user
39194 float user
39195 all user
39196 vector user
39197 system user
39198 save internal
39199 restore internal
617073a9
AC
39200@end smallexample
39201
50a5f187 39202@kindex maint flush register-cache
09d4efe1 39203@kindex flushregs
50a5f187
AB
39204@cindex register cache, flushing
39205@item maint flush register-cache
39206@itemx flushregs
39207Flush the contents of the register cache and as a consequence the
39208frame cache. This command is useful when debugging issues related to
39209register fetching, or frame unwinding. The command @code{flushregs}
39210is deprecated in favor of @code{maint flush register-cache}.
09d4efe1
EZ
39211
39212@kindex maint print objfiles
39213@cindex info for known object files
52e260a3
DE
39214@item maint print objfiles @r{[}@var{regexp}@r{]}
39215Print a dump of all known object files.
39216If @var{regexp} is specified, only print object files whose names
39217match @var{regexp}. For each object file, this command prints its name,
39218address in memory, and all of its psymtabs and symtabs.
09d4efe1 39219
f5b95c01
AA
39220@kindex maint print user-registers
39221@cindex user registers
39222@item maint print user-registers
39223List all currently available @dfn{user registers}. User registers
39224typically provide alternate names for actual hardware registers. They
39225include the four ``standard'' registers @code{$fp}, @code{$pc},
39226@code{$sp}, and @code{$ps}. @xref{standard registers}. User
39227registers can be used in expressions in the same way as the canonical
39228register names, but only the latter are listed by the @code{info
39229registers} and @code{maint print registers} commands.
39230
8a1ea21f
DE
39231@kindex maint print section-scripts
39232@cindex info for known .debug_gdb_scripts-loaded scripts
39233@item maint print section-scripts [@var{regexp}]
39234Print a dump of scripts specified in the @code{.debug_gdb_section} section.
39235If @var{regexp} is specified, only print scripts loaded by object files
39236matching @var{regexp}.
39237For each script, this command prints its name as specified in the objfile,
39238and the full path if known.
8e0583c8 39239@xref{dotdebug_gdb_scripts section}.
8a1ea21f 39240
09d4efe1
EZ
39241@kindex maint print statistics
39242@cindex bcache statistics
39243@item maint print statistics
39244This command prints, for each object file in the program, various data
39245about that object file followed by the byte cache (@dfn{bcache})
39246statistics for the object file. The objfile data includes the number
d3e8051b 39247of minimal, partial, full, and stabs symbols, the number of types
09d4efe1
EZ
39248defined by the objfile, the number of as yet unexpanded psym tables,
39249the number of line tables and string tables, and the amount of memory
39250used by the various tables. The bcache statistics include the counts,
39251sizes, and counts of duplicates of all and unique objects, max,
39252average, and median entry size, total memory used and its overhead and
39253savings, and various measures of the hash table size and chain
39254lengths.
39255
c7ba131e
JB
39256@kindex maint print target-stack
39257@cindex target stack description
39258@item maint print target-stack
39259A @dfn{target} is an interface between the debugger and a particular
39260kind of file or process. Targets can be stacked in @dfn{strata},
39261so that more than one target can potentially respond to a request.
39262In particular, memory accesses will walk down the stack of targets
39263until they find a target that is interested in handling that particular
39264address.
39265
39266This command prints a short description of each layer that was pushed on
39267the @dfn{target stack}, starting from the top layer down to the bottom one.
39268
09d4efe1
EZ
39269@kindex maint print type
39270@cindex type chain of a data type
39271@item maint print type @var{expr}
39272Print the type chain for a type specified by @var{expr}. The argument
39273can be either a type name or a symbol. If it is a symbol, the type of
39274that symbol is described. The type chain produced by this command is
39275a recursive definition of the data type as stored in @value{GDBN}'s
39276data structures, including its flags and contained types.
39277
dcd1f979
TT
39278@kindex maint selftest
39279@cindex self tests
1526853e 39280@item maint selftest @r{[}@var{filter}@r{]}
dcd1f979
TT
39281Run any self tests that were compiled in to @value{GDBN}. This will
39282print a message showing how many tests were run, and how many failed.
1526853e
SM
39283If a @var{filter} is passed, only the tests with @var{filter} in their
39284name will by ran.
39285
3c2fcaf9 39286@kindex maint info selftests
1526853e
SM
39287@cindex self tests
39288@item maint info selftests
39289List the selftests compiled in to @value{GDBN}.
dcd1f979 39290
b4f54984
DE
39291@kindex maint set dwarf always-disassemble
39292@kindex maint show dwarf always-disassemble
39293@item maint set dwarf always-disassemble
39294@item maint show dwarf always-disassemble
9eae7c52
TT
39295Control the behavior of @code{info address} when using DWARF debugging
39296information.
39297
39298The default is @code{off}, which means that @value{GDBN} should try to
39299describe a variable's location in an easily readable format. When
39300@code{on}, @value{GDBN} will instead display the DWARF location
39301expression in an assembly-like format. Note that some locations are
39302too complex for @value{GDBN} to describe simply; in this case you will
39303always see the disassembly form.
39304
39305Here is an example of the resulting disassembly:
39306
39307@smallexample
39308(gdb) info addr argc
39309Symbol "argc" is a complex DWARF expression:
39310 1: DW_OP_fbreg 0
39311@end smallexample
39312
39313For more information on these expressions, see
39314@uref{http://www.dwarfstd.org/, the DWARF standard}.
39315
b4f54984
DE
39316@kindex maint set dwarf max-cache-age
39317@kindex maint show dwarf max-cache-age
39318@item maint set dwarf max-cache-age
39319@itemx maint show dwarf max-cache-age
39320Control the DWARF compilation unit cache.
09d4efe1 39321
b4f54984 39322@cindex DWARF compilation units cache
09d4efe1 39323In object files with inter-compilation-unit references, such as those
b4f54984 39324produced by the GCC option @samp{-feliminate-dwarf2-dups}, the DWARF
09d4efe1
EZ
39325reader needs to frequently refer to previously read compilation units.
39326This setting controls how long a compilation unit will remain in the
39327cache if it is not referenced. A higher limit means that cached
39328compilation units will be stored in memory longer, and more total
39329memory will be used. Setting it to zero disables caching, which will
39330slow down @value{GDBN} startup, but reduce memory consumption.
39331
3c3bb058
AB
39332@kindex maint set dwarf unwinders
39333@kindex maint show dwarf unwinders
39334@item maint set dwarf unwinders
39335@itemx maint show dwarf unwinders
39336Control use of the DWARF frame unwinders.
39337
39338@cindex DWARF frame unwinders
39339Many targets that support DWARF debugging use @value{GDBN}'s DWARF
39340frame unwinders to build the backtrace. Many of these targets will
39341also have a second mechanism for building the backtrace for use in
39342cases where DWARF information is not available, this second mechanism
39343is often an analysis of a function's prologue.
39344
39345In order to extend testing coverage of the second level stack
39346unwinding mechanisms it is helpful to be able to disable the DWARF
39347stack unwinders, this can be done with this switch.
39348
39349In normal use of @value{GDBN} disabling the DWARF unwinders is not
39350advisable, there are cases that are better handled through DWARF than
39351prologue analysis, and the debug experience is likely to be better
39352with the DWARF frame unwinders enabled.
39353
39354If DWARF frame unwinders are not supported for a particular target
39355architecture, then enabling this flag does not cause them to be used.
22138db6
TT
39356
39357@kindex maint set worker-threads
39358@kindex maint show worker-threads
39359@item maint set worker-threads
39360@item maint show worker-threads
39361Control the number of worker threads that may be used by @value{GDBN}.
39362On capable hosts, @value{GDBN} may use multiple threads to speed up
39363certain CPU-intensive operations, such as demangling symbol names.
39364While the number of threads used by @value{GDBN} may vary, this
39365command can be used to set an upper bound on this number. The default
39366is @code{unlimited}, which lets @value{GDBN} choose a reasonable
39367number. Note that this only controls worker threads started by
39368@value{GDBN} itself; libraries used by @value{GDBN} may start threads
39369of their own.
39370
e7ba9c65
DJ
39371@kindex maint set profile
39372@kindex maint show profile
39373@cindex profiling GDB
39374@item maint set profile
39375@itemx maint show profile
39376Control profiling of @value{GDBN}.
39377
39378Profiling will be disabled until you use the @samp{maint set profile}
39379command to enable it. When you enable profiling, the system will begin
39380collecting timing and execution count data; when you disable profiling or
39381exit @value{GDBN}, the results will be written to a log file. Remember that
39382if you use profiling, @value{GDBN} will overwrite the profiling log file
39383(often called @file{gmon.out}). If you have a record of important profiling
39384data in a @file{gmon.out} file, be sure to move it to a safe location.
39385
39386Configuring with @samp{--enable-profiling} arranges for @value{GDBN} to be
b383017d 39387compiled with the @samp{-pg} compiler option.
e7ba9c65 39388
cbe54154
PA
39389@kindex maint set show-debug-regs
39390@kindex maint show show-debug-regs
eac35c4e 39391@cindex hardware debug registers
cbe54154
PA
39392@item maint set show-debug-regs
39393@itemx maint show show-debug-regs
eac35c4e 39394Control whether to show variables that mirror the hardware debug
6dd315ba 39395registers. Use @code{on} to enable, @code{off} to disable. If
3f94c067 39396enabled, the debug registers values are shown when @value{GDBN} inserts or
09d4efe1
EZ
39397removes a hardware breakpoint or watchpoint, and when the inferior
39398triggers a hardware-assisted breakpoint or watchpoint.
39399
711e434b
PM
39400@kindex maint set show-all-tib
39401@kindex maint show show-all-tib
39402@item maint set show-all-tib
39403@itemx maint show show-all-tib
39404Control whether to show all non zero areas within a 1k block starting
39405at thread local base, when using the @samp{info w32 thread-information-block}
39406command.
39407
329ea579
PA
39408@kindex maint set target-async
39409@kindex maint show target-async
39410@item maint set target-async
39411@itemx maint show target-async
39412This controls whether @value{GDBN} targets operate in synchronous or
39413asynchronous mode (@pxref{Background Execution}). Normally the
39414default is asynchronous, if it is available; but this can be changed
39415to more easily debug problems occurring only in synchronous mode.
39416
fbea99ea
PA
39417@kindex maint set target-non-stop @var{mode} [on|off|auto]
39418@kindex maint show target-non-stop
39419@item maint set target-non-stop
39420@itemx maint show target-non-stop
39421
39422This controls whether @value{GDBN} targets always operate in non-stop
39423mode even if @code{set non-stop} is @code{off} (@pxref{Non-Stop
39424Mode}). The default is @code{auto}, meaning non-stop mode is enabled
39425if supported by the target.
39426
39427@table @code
39428@item maint set target-non-stop auto
39429This is the default mode. @value{GDBN} controls the target in
39430non-stop mode if the target supports it.
39431
39432@item maint set target-non-stop on
39433@value{GDBN} controls the target in non-stop mode even if the target
39434does not indicate support.
39435
39436@item maint set target-non-stop off
39437@value{GDBN} does not control the target in non-stop mode even if the
39438target supports it.
39439@end table
39440
45e42163
TT
39441@kindex maint set tui-resize-message
39442@kindex maint show tui-resize-message
39443@item maint set tui-resize-message
39444@item maint show tui-resize-message
39445Control whether @value{GDBN} displays a message each time the terminal
39446is resized when in TUI mode. The default is @code{off}, which means
39447that @value{GDBN} is silent during resizes. When @code{on},
39448@value{GDBN} will display a message after a resize is completed; the
39449message will include a number indicating how many times the terminal
39450has been resized. This setting is intended for use by the test suite,
39451where it would otherwise be difficult to determine when a resize and
39452refresh has been completed.
39453
bd712aed
DE
39454@kindex maint set per-command
39455@kindex maint show per-command
39456@item maint set per-command
39457@itemx maint show per-command
39458@cindex resources used by commands
09d4efe1 39459
bd712aed
DE
39460@value{GDBN} can display the resources used by each command.
39461This is useful in debugging performance problems.
39462
39463@table @code
39464@item maint set per-command space [on|off]
39465@itemx maint show per-command space
39466Enable or disable the printing of the memory used by GDB for each command.
39467If enabled, @value{GDBN} will display how much memory each command
39468took, following the command's own output.
39469This can also be requested by invoking @value{GDBN} with the
39470@option{--statistics} command-line switch (@pxref{Mode Options}).
39471
39472@item maint set per-command time [on|off]
39473@itemx maint show per-command time
39474Enable or disable the printing of the execution time of @value{GDBN}
39475for each command.
39476If enabled, @value{GDBN} will display how much time it
09d4efe1 39477took to execute each command, following the command's own output.
0a1c4d10
DE
39478Both CPU time and wallclock time are printed.
39479Printing both is useful when trying to determine whether the cost is
bd712aed 39480CPU or, e.g., disk/network latency.
0a1c4d10
DE
39481Note that the CPU time printed is for @value{GDBN} only, it does not include
39482the execution time of the inferior because there's no mechanism currently
39483to compute how much time was spent by @value{GDBN} and how much time was
39484spent by the program been debugged.
09d4efe1
EZ
39485This can also be requested by invoking @value{GDBN} with the
39486@option{--statistics} command-line switch (@pxref{Mode Options}).
39487
bd712aed
DE
39488@item maint set per-command symtab [on|off]
39489@itemx maint show per-command symtab
39490Enable or disable the printing of basic symbol table statistics
39491for each command.
39492If enabled, @value{GDBN} will display the following information:
39493
215b9f98
EZ
39494@enumerate a
39495@item
39496number of symbol tables
39497@item
39498number of primary symbol tables
39499@item
39500number of blocks in the blockvector
39501@end enumerate
bd712aed
DE
39502@end table
39503
5045b3d7
GB
39504@kindex maint set check-libthread-db
39505@kindex maint show check-libthread-db
39506@item maint set check-libthread-db [on|off]
39507@itemx maint show check-libthread-db
39508Control whether @value{GDBN} should run integrity checks on inferior
39509specific thread debugging libraries as they are loaded. The default
39510is not to perform such checks. If any check fails @value{GDBN} will
39511unload the library and continue searching for a suitable candidate as
39512described in @ref{set libthread-db-search-path}. For more information
39513about the tests, see @ref{maint check libthread-db}.
39514
bd712aed
DE
39515@kindex maint space
39516@cindex memory used by commands
39517@item maint space @var{value}
39518An alias for @code{maint set per-command space}.
39519A non-zero value enables it, zero disables it.
39520
39521@kindex maint time
39522@cindex time of command execution
39523@item maint time @var{value}
39524An alias for @code{maint set per-command time}.
39525A non-zero value enables it, zero disables it.
39526
09d4efe1
EZ
39527@kindex maint translate-address
39528@item maint translate-address @r{[}@var{section}@r{]} @var{addr}
39529Find the symbol stored at the location specified by the address
39530@var{addr} and an optional section name @var{section}. If found,
39531@value{GDBN} prints the name of the closest symbol and an offset from
39532the symbol's location to the specified address. This is similar to
39533the @code{info address} command (@pxref{Symbols}), except that this
39534command also allows to find symbols in other sections.
ae038cb0 39535
c14c28ba
PP
39536If section was not specified, the section in which the symbol was found
39537is also printed. For dynamically linked executables, the name of
39538executable or shared library containing the symbol is printed as well.
39539
3345721a
PA
39540@kindex maint test-options
39541@item maint test-options require-delimiter
39542@itemx maint test-options unknown-is-error
39543@itemx maint test-options unknown-is-operand
39544These commands are used by the testsuite to validate the command
39545options framework. The @code{require-delimiter} variant requires a
39546double-dash delimiter to indicate end of options. The
39547@code{unknown-is-error} and @code{unknown-is-operand} do not. The
39548@code{unknown-is-error} variant throws an error on unknown option,
39549while @code{unknown-is-operand} treats unknown options as the start of
39550the command's operands. When run, the commands output the result of
39551the processed options. When completed, the commands store the
39552internal result of completion in a variable exposed by the @code{maint
39553show test-options-completion-result} command.
39554
39555@kindex maint show test-options-completion-result
39556@item maint show test-options-completion-result
39557Shows the result of completing the @code{maint test-options}
39558subcommands. This is used by the testsuite to validate completion
39559support in the command options framework.
39560
c6ac8931
PA
39561@kindex maint set test-settings
39562@kindex maint show test-settings
39563@item maint set test-settings @var{kind}
39564@itemx maint show test-settings @var{kind}
dca0f6c0
PA
39565These are representative commands for each @var{kind} of setting type
39566@value{GDBN} supports. They are used by the testsuite for exercising
39567the settings infrastructure.
fdbc9870
PA
39568
39569@kindex maint with
39570@item maint with @var{setting} [@var{value}] [-- @var{command}]
39571Like the @code{with} command, but works with @code{maintenance set}
39572variables. This is used by the testsuite to exercise the @code{with}
39573command's infrastructure.
39574
8e04817f 39575@end table
c906108c 39576
9c16f35a
EZ
39577The following command is useful for non-interactive invocations of
39578@value{GDBN}, such as in the test suite.
39579
39580@table @code
39581@item set watchdog @var{nsec}
39582@kindex set watchdog
39583@cindex watchdog timer
39584@cindex timeout for commands
39585Set the maximum number of seconds @value{GDBN} will wait for the
39586target operation to finish. If this time expires, @value{GDBN}
39587reports and error and the command is aborted.
39588
39589@item show watchdog
39590Show the current setting of the target wait timeout.
39591@end table
c906108c 39592
e0ce93ac 39593@node Remote Protocol
8e04817f 39594@appendix @value{GDBN} Remote Serial Protocol
c906108c 39595
ee2d5c50
AC
39596@menu
39597* Overview::
39598* Packets::
39599* Stop Reply Packets::
39600* General Query Packets::
a1dcb23a 39601* Architecture-Specific Protocol Details::
9d29849a 39602* Tracepoint Packets::
a6b151f1 39603* Host I/O Packets::
9a6253be 39604* Interrupts::
8b23ecc4
SL
39605* Notification Packets::
39606* Remote Non-Stop::
a6f3e723 39607* Packet Acknowledgment::
ee2d5c50 39608* Examples::
79a6e687 39609* File-I/O Remote Protocol Extension::
cfa9d6d9 39610* Library List Format::
2268b414 39611* Library List Format for SVR4 Targets::
79a6e687 39612* Memory Map Format::
dc146f7c 39613* Thread List Format::
b3b9301e 39614* Traceframe Info Format::
2ae8c8e7 39615* Branch Trace Format::
f4abbc16 39616* Branch Trace Configuration Format::
ee2d5c50
AC
39617@end menu
39618
39619@node Overview
39620@section Overview
39621
8e04817f
AC
39622There may be occasions when you need to know something about the
39623protocol---for example, if there is only one serial port to your target
39624machine, you might want your program to do something special if it
39625recognizes a packet meant for @value{GDBN}.
c906108c 39626
d2c6833e 39627In the examples below, @samp{->} and @samp{<-} are used to indicate
bf06d120 39628transmitted and received data, respectively.
c906108c 39629
8e04817f
AC
39630@cindex protocol, @value{GDBN} remote serial
39631@cindex serial protocol, @value{GDBN} remote
39632@cindex remote serial protocol
8b23ecc4
SL
39633All @value{GDBN} commands and responses (other than acknowledgments
39634and notifications, see @ref{Notification Packets}) are sent as a
39635@var{packet}. A @var{packet} is introduced with the character
8e04817f
AC
39636@samp{$}, the actual @var{packet-data}, and the terminating character
39637@samp{#} followed by a two-digit @var{checksum}:
c906108c 39638
474c8240 39639@smallexample
8e04817f 39640@code{$}@var{packet-data}@code{#}@var{checksum}
474c8240 39641@end smallexample
8e04817f 39642@noindent
c906108c 39643
8e04817f
AC
39644@cindex checksum, for @value{GDBN} remote
39645@noindent
39646The two-digit @var{checksum} is computed as the modulo 256 sum of all
39647characters between the leading @samp{$} and the trailing @samp{#} (an
39648eight bit unsigned checksum).
c906108c 39649
8e04817f
AC
39650Implementors should note that prior to @value{GDBN} 5.0 the protocol
39651specification also included an optional two-digit @var{sequence-id}:
c906108c 39652
474c8240 39653@smallexample
8e04817f 39654@code{$}@var{sequence-id}@code{:}@var{packet-data}@code{#}@var{checksum}
474c8240 39655@end smallexample
c906108c 39656
8e04817f
AC
39657@cindex sequence-id, for @value{GDBN} remote
39658@noindent
39659That @var{sequence-id} was appended to the acknowledgment. @value{GDBN}
39660has never output @var{sequence-id}s. Stubs that handle packets added
39661since @value{GDBN} 5.0 must not accept @var{sequence-id}.
c906108c 39662
8e04817f
AC
39663When either the host or the target machine receives a packet, the first
39664response expected is an acknowledgment: either @samp{+} (to indicate
39665the package was received correctly) or @samp{-} (to request
39666retransmission):
c906108c 39667
474c8240 39668@smallexample
d2c6833e
AC
39669-> @code{$}@var{packet-data}@code{#}@var{checksum}
39670<- @code{+}
474c8240 39671@end smallexample
8e04817f 39672@noindent
53a5351d 39673
a6f3e723
SL
39674The @samp{+}/@samp{-} acknowledgments can be disabled
39675once a connection is established.
39676@xref{Packet Acknowledgment}, for details.
39677
8e04817f
AC
39678The host (@value{GDBN}) sends @var{command}s, and the target (the
39679debugging stub incorporated in your program) sends a @var{response}. In
39680the case of step and continue @var{command}s, the response is only sent
8b23ecc4
SL
39681when the operation has completed, and the target has again stopped all
39682threads in all attached processes. This is the default all-stop mode
39683behavior, but the remote protocol also supports @value{GDBN}'s non-stop
39684execution mode; see @ref{Remote Non-Stop}, for details.
c906108c 39685
8e04817f
AC
39686@var{packet-data} consists of a sequence of characters with the
39687exception of @samp{#} and @samp{$} (see @samp{X} packet for additional
39688exceptions).
c906108c 39689
ee2d5c50 39690@cindex remote protocol, field separator
0876f84a 39691Fields within the packet should be separated using @samp{,} @samp{;} or
8e04817f 39692@samp{:}. Except where otherwise noted all numbers are represented in
ee2d5c50 39693@sc{hex} with leading zeros suppressed.
c906108c 39694
8e04817f
AC
39695Implementors should note that prior to @value{GDBN} 5.0, the character
39696@samp{:} could not appear as the third character in a packet (as it
39697would potentially conflict with the @var{sequence-id}).
c906108c 39698
0876f84a
DJ
39699@cindex remote protocol, binary data
39700@anchor{Binary Data}
39701Binary data in most packets is encoded either as two hexadecimal
39702digits per byte of binary data. This allowed the traditional remote
39703protocol to work over connections which were only seven-bit clean.
39704Some packets designed more recently assume an eight-bit clean
39705connection, and use a more efficient encoding to send and receive
39706binary data.
39707
39708The binary data representation uses @code{7d} (@sc{ascii} @samp{@}})
39709as an escape character. Any escaped byte is transmitted as the escape
39710character followed by the original character XORed with @code{0x20}.
39711For example, the byte @code{0x7d} would be transmitted as the two
39712bytes @code{0x7d 0x5d}. The bytes @code{0x23} (@sc{ascii} @samp{#}),
39713@code{0x24} (@sc{ascii} @samp{$}), and @code{0x7d} (@sc{ascii}
39714@samp{@}}) must always be escaped. Responses sent by the stub
39715must also escape @code{0x2a} (@sc{ascii} @samp{*}), so that it
39716is not interpreted as the start of a run-length encoded sequence
39717(described next).
39718
1d3811f6
DJ
39719Response @var{data} can be run-length encoded to save space.
39720Run-length encoding replaces runs of identical characters with one
39721instance of the repeated character, followed by a @samp{*} and a
39722repeat count. The repeat count is itself sent encoded, to avoid
39723binary characters in @var{data}: a value of @var{n} is sent as
39724@code{@var{n}+29}. For a repeat count greater or equal to 3, this
39725produces a printable @sc{ascii} character, e.g.@: a space (@sc{ascii}
39726code 32) for a repeat count of 3. (This is because run-length
39727encoding starts to win for counts 3 or more.) Thus, for example,
39728@samp{0* } is a run-length encoding of ``0000'': the space character
39729after @samp{*} means repeat the leading @code{0} @w{@code{32 - 29 =
397303}} more times.
39731
39732The printable characters @samp{#} and @samp{$} or with a numeric value
39733greater than 126 must not be used. Runs of six repeats (@samp{#}) or
39734seven repeats (@samp{$}) can be expanded using a repeat count of only
39735five (@samp{"}). For example, @samp{00000000} can be encoded as
39736@samp{0*"00}.
c906108c 39737
8e04817f
AC
39738The error response returned for some packets includes a two character
39739error number. That number is not well defined.
c906108c 39740
f8da2bff 39741@cindex empty response, for unsupported packets
8e04817f
AC
39742For any @var{command} not supported by the stub, an empty response
39743(@samp{$#00}) should be returned. That way it is possible to extend the
39744protocol. A newer @value{GDBN} can tell if a packet is supported based
39745on that response.
c906108c 39746
c9fe1b58
RT
39747At a minimum, a stub is required to support the @samp{?} command to
39748tell @value{GDBN} the reason for halting, @samp{g} and @samp{G}
393eab54
PA
39749commands for register access, and the @samp{m} and @samp{M} commands
39750for memory access. Stubs that only control single-threaded targets
c9fe1b58
RT
39751can implement run control with the @samp{c} (continue) command, and if
39752the target architecture supports hardware-assisted single-stepping,
39753the @samp{s} (step) command. Stubs that support multi-threading
39754targets should support the @samp{vCont} command. All other commands
39755are optional.
c906108c 39756
ee2d5c50
AC
39757@node Packets
39758@section Packets
39759
39760The following table provides a complete list of all currently defined
39761@var{command}s and their corresponding response @var{data}.
79a6e687 39762@xref{File-I/O Remote Protocol Extension}, for details about the File
9c16f35a 39763I/O extension of the remote protocol.
ee2d5c50 39764
b8ff78ce
JB
39765Each packet's description has a template showing the packet's overall
39766syntax, followed by an explanation of the packet's meaning. We
39767include spaces in some of the templates for clarity; these are not
39768part of the packet's syntax. No @value{GDBN} packet uses spaces to
39769separate its components. For example, a template like @samp{foo
39770@var{bar} @var{baz}} describes a packet beginning with the three ASCII
39771bytes @samp{foo}, followed by a @var{bar}, followed directly by a
3f94c067 39772@var{baz}. @value{GDBN} does not transmit a space character between the
b8ff78ce
JB
39773@samp{foo} and the @var{bar}, or between the @var{bar} and the
39774@var{baz}.
39775
b90a069a
SL
39776@cindex @var{thread-id}, in remote protocol
39777@anchor{thread-id syntax}
39778Several packets and replies include a @var{thread-id} field to identify
39779a thread. Normally these are positive numbers with a target-specific
39780interpretation, formatted as big-endian hex strings. A @var{thread-id}
39781can also be a literal @samp{-1} to indicate all threads, or @samp{0} to
39782pick any thread.
39783
39784In addition, the remote protocol supports a multiprocess feature in
39785which the @var{thread-id} syntax is extended to optionally include both
39786process and thread ID fields, as @samp{p@var{pid}.@var{tid}}.
39787The @var{pid} (process) and @var{tid} (thread) components each have the
39788format described above: a positive number with target-specific
39789interpretation formatted as a big-endian hex string, literal @samp{-1}
39790to indicate all processes or threads (respectively), or @samp{0} to
39791indicate an arbitrary process or thread. Specifying just a process, as
39792@samp{p@var{pid}}, is equivalent to @samp{p@var{pid}.-1}. It is an
39793error to specify all processes but a specific thread, such as
39794@samp{p-1.@var{tid}}. Note that the @samp{p} prefix is @emph{not} used
39795for those packets and replies explicitly documented to include a process
39796ID, rather than a @var{thread-id}.
39797
39798The multiprocess @var{thread-id} syntax extensions are only used if both
39799@value{GDBN} and the stub report support for the @samp{multiprocess}
39800feature using @samp{qSupported}. @xref{multiprocess extensions}, for
39801more information.
39802
8ffe2530
JB
39803Note that all packet forms beginning with an upper- or lower-case
39804letter, other than those described here, are reserved for future use.
39805
b8ff78ce 39806Here are the packet descriptions.
ee2d5c50 39807
b8ff78ce 39808@table @samp
ee2d5c50 39809
b8ff78ce
JB
39810@item !
39811@cindex @samp{!} packet
2d717e4f 39812@anchor{extended mode}
8e04817f
AC
39813Enable extended mode. In extended mode, the remote server is made
39814persistent. The @samp{R} packet is used to restart the program being
39815debugged.
ee2d5c50
AC
39816
39817Reply:
39818@table @samp
39819@item OK
8e04817f 39820The remote target both supports and has enabled extended mode.
ee2d5c50 39821@end table
c906108c 39822
b8ff78ce
JB
39823@item ?
39824@cindex @samp{?} packet
36cb1214 39825@anchor{? packet}
f37059ea
AB
39826This is sent when connection is first established to query the reason
39827the target halted. The reply is the same as for step and continue.
39828This packet has a special interpretation when the target is in
39829non-stop mode; see @ref{Remote Non-Stop}.
c906108c 39830
ee2d5c50
AC
39831Reply:
39832@xref{Stop Reply Packets}, for the reply specifications.
39833
b8ff78ce
JB
39834@item A @var{arglen},@var{argnum},@var{arg},@dots{}
39835@cindex @samp{A} packet
39836Initialized @code{argv[]} array passed into program. @var{arglen}
39837specifies the number of bytes in the hex encoded byte stream
39838@var{arg}. See @code{gdbserver} for more details.
ee2d5c50
AC
39839
39840Reply:
39841@table @samp
39842@item OK
b8ff78ce
JB
39843The arguments were set.
39844@item E @var{NN}
39845An error occurred.
ee2d5c50
AC
39846@end table
39847
b8ff78ce
JB
39848@item b @var{baud}
39849@cindex @samp{b} packet
39850(Don't use this packet; its behavior is not well-defined.)
ee2d5c50
AC
39851Change the serial line speed to @var{baud}.
39852
39853JTC: @emph{When does the transport layer state change? When it's
39854received, or after the ACK is transmitted. In either case, there are
39855problems if the command or the acknowledgment packet is dropped.}
39856
39857Stan: @emph{If people really wanted to add something like this, and get
39858it working for the first time, they ought to modify ser-unix.c to send
39859some kind of out-of-band message to a specially-setup stub and have the
39860switch happen "in between" packets, so that from remote protocol's point
39861of view, nothing actually happened.}
39862
b8ff78ce
JB
39863@item B @var{addr},@var{mode}
39864@cindex @samp{B} packet
8e04817f 39865Set (@var{mode} is @samp{S}) or clear (@var{mode} is @samp{C}) a
2f870471
AC
39866breakpoint at @var{addr}.
39867
b8ff78ce 39868Don't use this packet. Use the @samp{Z} and @samp{z} packets instead
2f870471 39869(@pxref{insert breakpoint or watchpoint packet}).
c906108c 39870
bacec72f 39871@cindex @samp{bc} packet
0d772ac9
MS
39872@anchor{bc}
39873@item bc
bacec72f
MS
39874Backward continue. Execute the target system in reverse. No parameter.
39875@xref{Reverse Execution}, for more information.
39876
39877Reply:
39878@xref{Stop Reply Packets}, for the reply specifications.
39879
bacec72f 39880@cindex @samp{bs} packet
0d772ac9
MS
39881@anchor{bs}
39882@item bs
bacec72f
MS
39883Backward single step. Execute one instruction in reverse. No parameter.
39884@xref{Reverse Execution}, for more information.
39885
39886Reply:
39887@xref{Stop Reply Packets}, for the reply specifications.
39888
4f553f88 39889@item c @r{[}@var{addr}@r{]}
b8ff78ce 39890@cindex @samp{c} packet
697aa1b7
EZ
39891Continue at @var{addr}, which is the address to resume. If @var{addr}
39892is omitted, resume at current address.
c906108c 39893
393eab54
PA
39894This packet is deprecated for multi-threading support. @xref{vCont
39895packet}.
39896
ee2d5c50
AC
39897Reply:
39898@xref{Stop Reply Packets}, for the reply specifications.
39899
4f553f88 39900@item C @var{sig}@r{[};@var{addr}@r{]}
b8ff78ce 39901@cindex @samp{C} packet
8e04817f 39902Continue with signal @var{sig} (hex signal number). If
b8ff78ce 39903@samp{;@var{addr}} is omitted, resume at same address.
c906108c 39904
393eab54
PA
39905This packet is deprecated for multi-threading support. @xref{vCont
39906packet}.
39907
ee2d5c50
AC
39908Reply:
39909@xref{Stop Reply Packets}, for the reply specifications.
c906108c 39910
b8ff78ce
JB
39911@item d
39912@cindex @samp{d} packet
ee2d5c50
AC
39913Toggle debug flag.
39914
b8ff78ce
JB
39915Don't use this packet; instead, define a general set packet
39916(@pxref{General Query Packets}).
ee2d5c50 39917
b8ff78ce 39918@item D
b90a069a 39919@itemx D;@var{pid}
b8ff78ce 39920@cindex @samp{D} packet
b90a069a
SL
39921The first form of the packet is used to detach @value{GDBN} from the
39922remote system. It is sent to the remote target
07f31aa6 39923before @value{GDBN} disconnects via the @code{detach} command.
ee2d5c50 39924
b90a069a
SL
39925The second form, including a process ID, is used when multiprocess
39926protocol extensions are enabled (@pxref{multiprocess extensions}), to
39927detach only a specific process. The @var{pid} is specified as a
39928big-endian hex string.
39929
ee2d5c50
AC
39930Reply:
39931@table @samp
10fac096
NW
39932@item OK
39933for success
b8ff78ce 39934@item E @var{NN}
10fac096 39935for an error
ee2d5c50 39936@end table
c906108c 39937
b8ff78ce
JB
39938@item F @var{RC},@var{EE},@var{CF};@var{XX}
39939@cindex @samp{F} packet
39940A reply from @value{GDBN} to an @samp{F} packet sent by the target.
39941This is part of the File-I/O protocol extension. @xref{File-I/O
79a6e687 39942Remote Protocol Extension}, for the specification.
ee2d5c50 39943
b8ff78ce 39944@item g
ee2d5c50 39945@anchor{read registers packet}
b8ff78ce 39946@cindex @samp{g} packet
ee2d5c50
AC
39947Read general registers.
39948
39949Reply:
39950@table @samp
39951@item @var{XX@dots{}}
8e04817f
AC
39952Each byte of register data is described by two hex digits. The bytes
39953with the register are transmitted in target byte order. The size of
b8ff78ce 39954each register and their position within the @samp{g} packet are
4a9bb1df 39955determined by the @value{GDBN} internal gdbarch functions
4435e1cc 39956@code{DEPRECATED_REGISTER_RAW_SIZE} and @code{gdbarch_register_name}.
ad196637
PA
39957
39958When reading registers from a trace frame (@pxref{Analyze Collected
39959Data,,Using the Collected Data}), the stub may also return a string of
39960literal @samp{x}'s in place of the register data digits, to indicate
39961that the corresponding register has not been collected, thus its value
39962is unavailable. For example, for an architecture with 4 registers of
399634 bytes each, the following reply indicates to @value{GDBN} that
39964registers 0 and 2 have not been collected, while registers 1 and 3
39965have been collected, and both have zero value:
39966
39967@smallexample
39968-> @code{g}
39969<- @code{xxxxxxxx00000000xxxxxxxx00000000}
39970@end smallexample
39971
b8ff78ce 39972@item E @var{NN}
ee2d5c50
AC
39973for an error.
39974@end table
c906108c 39975
b8ff78ce
JB
39976@item G @var{XX@dots{}}
39977@cindex @samp{G} packet
39978Write general registers. @xref{read registers packet}, for a
39979description of the @var{XX@dots{}} data.
ee2d5c50
AC
39980
39981Reply:
39982@table @samp
39983@item OK
39984for success
b8ff78ce 39985@item E @var{NN}
ee2d5c50
AC
39986for an error
39987@end table
39988
393eab54 39989@item H @var{op} @var{thread-id}
b8ff78ce 39990@cindex @samp{H} packet
8e04817f 39991Set thread for subsequent operations (@samp{m}, @samp{M}, @samp{g},
697aa1b7
EZ
39992@samp{G}, et.al.). Depending on the operation to be performed, @var{op}
39993should be @samp{c} for step and continue operations (note that this
393eab54 39994is deprecated, supporting the @samp{vCont} command is a better
697aa1b7 39995option), and @samp{g} for other operations. The thread designator
393eab54
PA
39996@var{thread-id} has the format and interpretation described in
39997@ref{thread-id syntax}.
ee2d5c50
AC
39998
39999Reply:
40000@table @samp
40001@item OK
40002for success
b8ff78ce 40003@item E @var{NN}
ee2d5c50
AC
40004for an error
40005@end table
c906108c 40006
8e04817f
AC
40007@c FIXME: JTC:
40008@c 'H': How restrictive (or permissive) is the thread model. If a
40009@c thread is selected and stopped, are other threads allowed
40010@c to continue to execute? As I mentioned above, I think the
40011@c semantics of each command when a thread is selected must be
40012@c described. For example:
40013@c
40014@c 'g': If the stub supports threads and a specific thread is
40015@c selected, returns the register block from that thread;
40016@c otherwise returns current registers.
40017@c
40018@c 'G' If the stub supports threads and a specific thread is
40019@c selected, sets the registers of the register block of
40020@c that thread; otherwise sets current registers.
c906108c 40021
b8ff78ce 40022@item i @r{[}@var{addr}@r{[},@var{nnn}@r{]]}
ee2d5c50 40023@anchor{cycle step packet}
b8ff78ce
JB
40024@cindex @samp{i} packet
40025Step the remote target by a single clock cycle. If @samp{,@var{nnn}} is
8e04817f
AC
40026present, cycle step @var{nnn} cycles. If @var{addr} is present, cycle
40027step starting at that address.
c906108c 40028
b8ff78ce
JB
40029@item I
40030@cindex @samp{I} packet
40031Signal, then cycle step. @xref{step with signal packet}. @xref{cycle
40032step packet}.
ee2d5c50 40033
b8ff78ce
JB
40034@item k
40035@cindex @samp{k} packet
40036Kill request.
c906108c 40037
36cb1214
HZ
40038The exact effect of this packet is not specified.
40039
40040For a bare-metal target, it may power cycle or reset the target
40041system. For that reason, the @samp{k} packet has no reply.
40042
40043For a single-process target, it may kill that process if possible.
40044
40045A multiple-process target may choose to kill just one process, or all
40046that are under @value{GDBN}'s control. For more precise control, use
40047the vKill packet (@pxref{vKill packet}).
40048
40049If the target system immediately closes the connection in response to
40050@samp{k}, @value{GDBN} does not consider the lack of packet
40051acknowledgment to be an error, and assumes the kill was successful.
40052
40053If connected using @kbd{target extended-remote}, and the target does
40054not close the connection in response to a kill request, @value{GDBN}
40055probes the target state as if a new connection was opened
40056(@pxref{? packet}).
c906108c 40057
b8ff78ce
JB
40058@item m @var{addr},@var{length}
40059@cindex @samp{m} packet
a86c90e6
SM
40060Read @var{length} addressable memory units starting at address @var{addr}
40061(@pxref{addressable memory unit}). Note that @var{addr} may not be aligned to
40062any particular boundary.
fb031cdf
JB
40063
40064The stub need not use any particular size or alignment when gathering
40065data from memory for the response; even if @var{addr} is word-aligned
40066and @var{length} is a multiple of the word size, the stub is free to
40067use byte accesses, or not. For this reason, this packet may not be
40068suitable for accessing memory-mapped I/O devices.
c43c5473
JB
40069@cindex alignment of remote memory accesses
40070@cindex size of remote memory accesses
40071@cindex memory, alignment and size of remote accesses
c906108c 40072
ee2d5c50
AC
40073Reply:
40074@table @samp
40075@item @var{XX@dots{}}
a86c90e6
SM
40076Memory contents; each byte is transmitted as a two-digit hexadecimal number.
40077The reply may contain fewer addressable memory units than requested if the
b8ff78ce
JB
40078server was able to read only part of the region of memory.
40079@item E @var{NN}
ee2d5c50
AC
40080@var{NN} is errno
40081@end table
40082
b8ff78ce
JB
40083@item M @var{addr},@var{length}:@var{XX@dots{}}
40084@cindex @samp{M} packet
a86c90e6
SM
40085Write @var{length} addressable memory units starting at address @var{addr}
40086(@pxref{addressable memory unit}). The data is given by @var{XX@dots{}}; each
40087byte is transmitted as a two-digit hexadecimal number.
ee2d5c50
AC
40088
40089Reply:
40090@table @samp
40091@item OK
40092for success
b8ff78ce 40093@item E @var{NN}
8e04817f
AC
40094for an error (this includes the case where only part of the data was
40095written).
ee2d5c50 40096@end table
c906108c 40097
b8ff78ce
JB
40098@item p @var{n}
40099@cindex @samp{p} packet
40100Read the value of register @var{n}; @var{n} is in hex.
2e868123
AC
40101@xref{read registers packet}, for a description of how the returned
40102register value is encoded.
ee2d5c50
AC
40103
40104Reply:
40105@table @samp
2e868123
AC
40106@item @var{XX@dots{}}
40107the register's value
b8ff78ce 40108@item E @var{NN}
2e868123 40109for an error
d57350ea 40110@item @w{}
2e868123 40111Indicating an unrecognized @var{query}.
ee2d5c50
AC
40112@end table
40113
b8ff78ce 40114@item P @var{n@dots{}}=@var{r@dots{}}
ee2d5c50 40115@anchor{write register packet}
b8ff78ce
JB
40116@cindex @samp{P} packet
40117Write register @var{n@dots{}} with value @var{r@dots{}}. The register
599b237a 40118number @var{n} is in hexadecimal, and @var{r@dots{}} contains two hex
8e04817f 40119digits for each byte in the register (target byte order).
c906108c 40120
ee2d5c50
AC
40121Reply:
40122@table @samp
40123@item OK
40124for success
b8ff78ce 40125@item E @var{NN}
ee2d5c50
AC
40126for an error
40127@end table
40128
5f3bebba
JB
40129@item q @var{name} @var{params}@dots{}
40130@itemx Q @var{name} @var{params}@dots{}
b8ff78ce 40131@cindex @samp{q} packet
b8ff78ce 40132@cindex @samp{Q} packet
5f3bebba
JB
40133General query (@samp{q}) and set (@samp{Q}). These packets are
40134described fully in @ref{General Query Packets}.
c906108c 40135
b8ff78ce
JB
40136@item r
40137@cindex @samp{r} packet
8e04817f 40138Reset the entire system.
c906108c 40139
b8ff78ce 40140Don't use this packet; use the @samp{R} packet instead.
ee2d5c50 40141
b8ff78ce
JB
40142@item R @var{XX}
40143@cindex @samp{R} packet
697aa1b7 40144Restart the program being debugged. The @var{XX}, while needed, is ignored.
2d717e4f 40145This packet is only available in extended mode (@pxref{extended mode}).
ee2d5c50 40146
8e04817f 40147The @samp{R} packet has no reply.
ee2d5c50 40148
4f553f88 40149@item s @r{[}@var{addr}@r{]}
b8ff78ce 40150@cindex @samp{s} packet
697aa1b7 40151Single step, resuming at @var{addr}. If
b8ff78ce 40152@var{addr} is omitted, resume at same address.
c906108c 40153
393eab54
PA
40154This packet is deprecated for multi-threading support. @xref{vCont
40155packet}.
40156
ee2d5c50
AC
40157Reply:
40158@xref{Stop Reply Packets}, for the reply specifications.
40159
4f553f88 40160@item S @var{sig}@r{[};@var{addr}@r{]}
ee2d5c50 40161@anchor{step with signal packet}
b8ff78ce
JB
40162@cindex @samp{S} packet
40163Step with signal. This is analogous to the @samp{C} packet, but
40164requests a single-step, rather than a normal resumption of execution.
c906108c 40165
393eab54
PA
40166This packet is deprecated for multi-threading support. @xref{vCont
40167packet}.
40168
ee2d5c50
AC
40169Reply:
40170@xref{Stop Reply Packets}, for the reply specifications.
40171
b8ff78ce
JB
40172@item t @var{addr}:@var{PP},@var{MM}
40173@cindex @samp{t} packet
8e04817f 40174Search backwards starting at address @var{addr} for a match with pattern
697aa1b7
EZ
40175@var{PP} and mask @var{MM}, both of which are are 4 byte long.
40176There must be at least 3 digits in @var{addr}.
c906108c 40177
b90a069a 40178@item T @var{thread-id}
b8ff78ce 40179@cindex @samp{T} packet
b90a069a 40180Find out if the thread @var{thread-id} is alive. @xref{thread-id syntax}.
c906108c 40181
ee2d5c50
AC
40182Reply:
40183@table @samp
40184@item OK
40185thread is still alive
b8ff78ce 40186@item E @var{NN}
ee2d5c50
AC
40187thread is dead
40188@end table
40189
b8ff78ce
JB
40190@item v
40191Packets starting with @samp{v} are identified by a multi-letter name,
40192up to the first @samp{;} or @samp{?} (or the end of the packet).
86d30acc 40193
2d717e4f
DJ
40194@item vAttach;@var{pid}
40195@cindex @samp{vAttach} packet
8b23ecc4
SL
40196Attach to a new process with the specified process ID @var{pid}.
40197The process ID is a
40198hexadecimal integer identifying the process. In all-stop mode, all
40199threads in the attached process are stopped; in non-stop mode, it may be
40200attached without being stopped if that is supported by the target.
40201
40202@c In non-stop mode, on a successful vAttach, the stub should set the
40203@c current thread to a thread of the newly-attached process. After
40204@c attaching, GDB queries for the attached process's thread ID with qC.
40205@c Also note that, from a user perspective, whether or not the
40206@c target is stopped on attach in non-stop mode depends on whether you
40207@c use the foreground or background version of the attach command, not
40208@c on what vAttach does; GDB does the right thing with respect to either
40209@c stopping or restarting threads.
2d717e4f
DJ
40210
40211This packet is only available in extended mode (@pxref{extended mode}).
40212
40213Reply:
40214@table @samp
40215@item E @var{nn}
40216for an error
40217@item @r{Any stop packet}
8b23ecc4
SL
40218for success in all-stop mode (@pxref{Stop Reply Packets})
40219@item OK
40220for success in non-stop mode (@pxref{Remote Non-Stop})
2d717e4f
DJ
40221@end table
40222
b90a069a 40223@item vCont@r{[};@var{action}@r{[}:@var{thread-id}@r{]]}@dots{}
b8ff78ce 40224@cindex @samp{vCont} packet
393eab54 40225@anchor{vCont packet}
b8ff78ce 40226Resume the inferior, specifying different actions for each thread.
ca6eff59
PA
40227
40228For each inferior thread, the leftmost action with a matching
40229@var{thread-id} is applied. Threads that don't match any action
40230remain in their current state. Thread IDs are specified using the
40231syntax described in @ref{thread-id syntax}. If multiprocess
40232extensions (@pxref{multiprocess extensions}) are supported, actions
40233can be specified to match all threads in a process by using the
40234@samp{p@var{pid}.-1} form of the @var{thread-id}. An action with no
39402e6c
PA
40235@var{thread-id} matches all threads. Specifying no actions is an
40236error.
b90a069a
SL
40237
40238Currently supported actions are:
86d30acc 40239
b8ff78ce 40240@table @samp
86d30acc
DJ
40241@item c
40242Continue.
b8ff78ce 40243@item C @var{sig}
8b23ecc4 40244Continue with signal @var{sig}. The signal @var{sig} should be two hex digits.
86d30acc
DJ
40245@item s
40246Step.
b8ff78ce 40247@item S @var{sig}
8b23ecc4
SL
40248Step with signal @var{sig}. The signal @var{sig} should be two hex digits.
40249@item t
40250Stop.
c1e36e3e
PA
40251@item r @var{start},@var{end}
40252Step once, and then keep stepping as long as the thread stops at
40253addresses between @var{start} (inclusive) and @var{end} (exclusive).
40254The remote stub reports a stop reply when either the thread goes out
40255of the range or is stopped due to an unrelated reason, such as hitting
40256a breakpoint. @xref{range stepping}.
40257
40258If the range is empty (@var{start} == @var{end}), then the action
40259becomes equivalent to the @samp{s} action. In other words,
40260single-step once, and report the stop (even if the stepped instruction
40261jumps to @var{start}).
40262
40263(A stop reply may be sent at any point even if the PC is still within
40264the stepping range; for example, it is valid to implement this packet
40265in a degenerate way as a single instruction step operation.)
40266
86d30acc
DJ
40267@end table
40268
8b23ecc4
SL
40269The optional argument @var{addr} normally associated with the
40270@samp{c}, @samp{C}, @samp{s}, and @samp{S} packets is
b8ff78ce 40271not supported in @samp{vCont}.
86d30acc 40272
08a0efd0
PA
40273The @samp{t} action is only relevant in non-stop mode
40274(@pxref{Remote Non-Stop}) and may be ignored by the stub otherwise.
8b23ecc4
SL
40275A stop reply should be generated for any affected thread not already stopped.
40276When a thread is stopped by means of a @samp{t} action,
40277the corresponding stop reply should indicate that the thread has stopped with
40278signal @samp{0}, regardless of whether the target uses some other signal
40279as an implementation detail.
40280
ca6eff59
PA
40281The server must ignore @samp{c}, @samp{C}, @samp{s}, @samp{S}, and
40282@samp{r} actions for threads that are already running. Conversely,
40283the server must ignore @samp{t} actions for threads that are already
40284stopped.
40285
40286@emph{Note:} In non-stop mode, a thread is considered running until
6b92c0d3 40287@value{GDBN} acknowledges an asynchronous stop notification for it with
ca6eff59
PA
40288the @samp{vStopped} packet (@pxref{Remote Non-Stop}).
40289
4220b2f8 40290The stub must support @samp{vCont} if it reports support for
ca6eff59 40291multiprocess extensions (@pxref{multiprocess extensions}).
4220b2f8 40292
86d30acc
DJ
40293Reply:
40294@xref{Stop Reply Packets}, for the reply specifications.
40295
b8ff78ce
JB
40296@item vCont?
40297@cindex @samp{vCont?} packet
d3e8051b 40298Request a list of actions supported by the @samp{vCont} packet.
86d30acc
DJ
40299
40300Reply:
40301@table @samp
b8ff78ce
JB
40302@item vCont@r{[};@var{action}@dots{}@r{]}
40303The @samp{vCont} packet is supported. Each @var{action} is a supported
40304command in the @samp{vCont} packet.
d57350ea 40305@item @w{}
b8ff78ce 40306The @samp{vCont} packet is not supported.
86d30acc 40307@end table
ee2d5c50 40308
de979965
PA
40309@anchor{vCtrlC packet}
40310@item vCtrlC
40311@cindex @samp{vCtrlC} packet
40312Interrupt remote target as if a control-C was pressed on the remote
40313terminal. This is the equivalent to reacting to the @code{^C}
40314(@samp{\003}, the control-C character) character in all-stop mode
40315while the target is running, except this works in non-stop mode.
40316@xref{interrupting remote targets}, for more info on the all-stop
40317variant.
40318
40319Reply:
40320@table @samp
40321@item E @var{nn}
40322for an error
40323@item OK
40324for success
40325@end table
40326
a6b151f1
DJ
40327@item vFile:@var{operation}:@var{parameter}@dots{}
40328@cindex @samp{vFile} packet
40329Perform a file operation on the target system. For details,
40330see @ref{Host I/O Packets}.
40331
68437a39
DJ
40332@item vFlashErase:@var{addr},@var{length}
40333@cindex @samp{vFlashErase} packet
40334Direct the stub to erase @var{length} bytes of flash starting at
40335@var{addr}. The region may enclose any number of flash blocks, but
40336its start and end must fall on block boundaries, as indicated by the
79a6e687
BW
40337flash block size appearing in the memory map (@pxref{Memory Map
40338Format}). @value{GDBN} groups flash memory programming operations
68437a39
DJ
40339together, and sends a @samp{vFlashDone} request after each group; the
40340stub is allowed to delay erase operation until the @samp{vFlashDone}
40341packet is received.
40342
40343Reply:
40344@table @samp
40345@item OK
40346for success
40347@item E @var{NN}
40348for an error
40349@end table
40350
40351@item vFlashWrite:@var{addr}:@var{XX@dots{}}
40352@cindex @samp{vFlashWrite} packet
40353Direct the stub to write data to flash address @var{addr}. The data
40354is passed in binary form using the same encoding as for the @samp{X}
40355packet (@pxref{Binary Data}). The memory ranges specified by
40356@samp{vFlashWrite} packets preceding a @samp{vFlashDone} packet must
40357not overlap, and must appear in order of increasing addresses
40358(although @samp{vFlashErase} packets for higher addresses may already
40359have been received; the ordering is guaranteed only between
40360@samp{vFlashWrite} packets). If a packet writes to an address that was
40361neither erased by a preceding @samp{vFlashErase} packet nor by some other
40362target-specific method, the results are unpredictable.
40363
40364
40365Reply:
40366@table @samp
40367@item OK
40368for success
40369@item E.memtype
40370for vFlashWrite addressing non-flash memory
40371@item E @var{NN}
40372for an error
40373@end table
40374
40375@item vFlashDone
40376@cindex @samp{vFlashDone} packet
40377Indicate to the stub that flash programming operation is finished.
40378The stub is permitted to delay or batch the effects of a group of
40379@samp{vFlashErase} and @samp{vFlashWrite} packets until a
40380@samp{vFlashDone} packet is received. The contents of the affected
40381regions of flash memory are unpredictable until the @samp{vFlashDone}
40382request is completed.
40383
b90a069a
SL
40384@item vKill;@var{pid}
40385@cindex @samp{vKill} packet
36cb1214 40386@anchor{vKill packet}
697aa1b7 40387Kill the process with the specified process ID @var{pid}, which is a
b90a069a
SL
40388hexadecimal integer identifying the process. This packet is used in
40389preference to @samp{k} when multiprocess protocol extensions are
40390supported; see @ref{multiprocess extensions}.
40391
40392Reply:
40393@table @samp
40394@item E @var{nn}
40395for an error
40396@item OK
40397for success
40398@end table
40399
176efed1
AB
40400@item vMustReplyEmpty
40401@cindex @samp{vMustReplyEmpty} packet
40402The correct reply to an unknown @samp{v} packet is to return the empty
40403string, however, some older versions of @command{gdbserver} would
40404incorrectly return @samp{OK} for unknown @samp{v} packets.
40405
40406The @samp{vMustReplyEmpty} is used as a feature test to check how
40407@command{gdbserver} handles unknown packets, it is important that this
40408packet be handled in the same way as other unknown @samp{v} packets.
40409If this packet is handled differently to other unknown @samp{v}
6b92c0d3 40410packets then it is possible that @value{GDBN} may run into problems in
176efed1
AB
40411other areas, specifically around use of @samp{vFile:setfs:}.
40412
2d717e4f
DJ
40413@item vRun;@var{filename}@r{[};@var{argument}@r{]}@dots{}
40414@cindex @samp{vRun} packet
40415Run the program @var{filename}, passing it each @var{argument} on its
40416command line. The file and arguments are hex-encoded strings. If
40417@var{filename} is an empty string, the stub may use a default program
40418(e.g.@: the last program run). The program is created in the stopped
9b562ab8 40419state.
2d717e4f 40420
8b23ecc4
SL
40421@c FIXME: What about non-stop mode?
40422
2d717e4f
DJ
40423This packet is only available in extended mode (@pxref{extended mode}).
40424
40425Reply:
40426@table @samp
40427@item E @var{nn}
40428for an error
40429@item @r{Any stop packet}
40430for success (@pxref{Stop Reply Packets})
40431@end table
40432
8b23ecc4 40433@item vStopped
8b23ecc4 40434@cindex @samp{vStopped} packet
8dbe8ece 40435@xref{Notification Packets}.
8b23ecc4 40436
b8ff78ce 40437@item X @var{addr},@var{length}:@var{XX@dots{}}
9a6253be 40438@anchor{X packet}
b8ff78ce
JB
40439@cindex @samp{X} packet
40440Write data to memory, where the data is transmitted in binary.
a86c90e6
SM
40441Memory is specified by its address @var{addr} and number of addressable memory
40442units @var{length} (@pxref{addressable memory unit});
0876f84a 40443@samp{@var{XX}@dots{}} is binary data (@pxref{Binary Data}).
c906108c 40444
ee2d5c50
AC
40445Reply:
40446@table @samp
40447@item OK
40448for success
b8ff78ce 40449@item E @var{NN}
ee2d5c50
AC
40450for an error
40451@end table
40452
a1dcb23a
DJ
40453@item z @var{type},@var{addr},@var{kind}
40454@itemx Z @var{type},@var{addr},@var{kind}
2f870471 40455@anchor{insert breakpoint or watchpoint packet}
b8ff78ce
JB
40456@cindex @samp{z} packet
40457@cindex @samp{Z} packets
40458Insert (@samp{Z}) or remove (@samp{z}) a @var{type} breakpoint or
a1dcb23a 40459watchpoint starting at address @var{address} of kind @var{kind}.
ee2d5c50 40460
2f870471
AC
40461Each breakpoint and watchpoint packet @var{type} is documented
40462separately.
40463
512217c7
AC
40464@emph{Implementation notes: A remote target shall return an empty string
40465for an unrecognized breakpoint or watchpoint packet @var{type}. A
40466remote target shall support either both or neither of a given
b8ff78ce 40467@samp{Z@var{type}@dots{}} and @samp{z@var{type}@dots{}} packet pair. To
2f870471
AC
40468avoid potential problems with duplicate packets, the operations should
40469be implemented in an idempotent way.}
40470
a1dcb23a 40471@item z0,@var{addr},@var{kind}
d3ce09f5 40472@itemx Z0,@var{addr},@var{kind}@r{[};@var{cond_list}@dots{}@r{]}@r{[};cmds:@var{persist},@var{cmd_list}@dots{}@r{]}
b8ff78ce
JB
40473@cindex @samp{z0} packet
40474@cindex @samp{Z0} packet
4435e1cc 40475Insert (@samp{Z0}) or remove (@samp{z0}) a software breakpoint at address
a1dcb23a 40476@var{addr} of type @var{kind}.
2f870471 40477
4435e1cc 40478A software breakpoint is implemented by replacing the instruction at
2f870471 40479@var{addr} with a software breakpoint or trap instruction. The
4435e1cc
TT
40480@var{kind} is target-specific and typically indicates the size of the
40481breakpoint in bytes that should be inserted. E.g., the @sc{arm} and
40482@sc{mips} can insert either a 2 or 4 byte breakpoint. Some
40483architectures have additional meanings for @var{kind}
40484(@pxref{Architecture-Specific Protocol Details}); if no
40485architecture-specific value is being used, it should be @samp{0}.
40486@var{kind} is hex-encoded. @var{cond_list} is an optional list of
40487conditional expressions in bytecode form that should be evaluated on
40488the target's side. These are the conditions that should be taken into
40489consideration when deciding if the breakpoint trigger should be
40490reported back to @value{GDBN}.
83364271 40491
f7e6eed5 40492See also the @samp{swbreak} stop reason (@pxref{swbreak stop reason})
4435e1cc 40493for how to best report a software breakpoint event to @value{GDBN}.
f7e6eed5 40494
83364271
LM
40495The @var{cond_list} parameter is comprised of a series of expressions,
40496concatenated without separators. Each expression has the following form:
40497
40498@table @samp
40499
40500@item X @var{len},@var{expr}
40501@var{len} is the length of the bytecode expression and @var{expr} is the
40502actual conditional expression in bytecode form.
40503
40504@end table
40505
d3ce09f5
SS
40506The optional @var{cmd_list} parameter introduces commands that may be
40507run on the target, rather than being reported back to @value{GDBN}.
40508The parameter starts with a numeric flag @var{persist}; if the flag is
40509nonzero, then the breakpoint may remain active and the commands
40510continue to be run even when @value{GDBN} disconnects from the target.
40511Following this flag is a series of expressions concatenated with no
40512separators. Each expression has the following form:
40513
40514@table @samp
40515
40516@item X @var{len},@var{expr}
40517@var{len} is the length of the bytecode expression and @var{expr} is the
0968fbae 40518actual commands expression in bytecode form.
d3ce09f5
SS
40519
40520@end table
40521
2f870471 40522@emph{Implementation note: It is possible for a target to copy or move
4435e1cc 40523code that contains software breakpoints (e.g., when implementing
2f870471
AC
40524overlays). The behavior of this packet, in the presence of such a
40525target, is not defined.}
c906108c 40526
ee2d5c50
AC
40527Reply:
40528@table @samp
2f870471
AC
40529@item OK
40530success
d57350ea 40531@item @w{}
2f870471 40532not supported
b8ff78ce 40533@item E @var{NN}
ee2d5c50 40534for an error
2f870471
AC
40535@end table
40536
a1dcb23a 40537@item z1,@var{addr},@var{kind}
4435e1cc 40538@itemx Z1,@var{addr},@var{kind}@r{[};@var{cond_list}@dots{}@r{]}@r{[};cmds:@var{persist},@var{cmd_list}@dots{}@r{]}
b8ff78ce
JB
40539@cindex @samp{z1} packet
40540@cindex @samp{Z1} packet
40541Insert (@samp{Z1}) or remove (@samp{z1}) a hardware breakpoint at
a1dcb23a 40542address @var{addr}.
2f870471
AC
40543
40544A hardware breakpoint is implemented using a mechanism that is not
4435e1cc
TT
40545dependent on being able to modify the target's memory. The
40546@var{kind}, @var{cond_list}, and @var{cmd_list} arguments have the
40547same meaning as in @samp{Z0} packets.
2f870471
AC
40548
40549@emph{Implementation note: A hardware breakpoint is not affected by code
40550movement.}
40551
40552Reply:
40553@table @samp
ee2d5c50 40554@item OK
2f870471 40555success
d57350ea 40556@item @w{}
2f870471 40557not supported
b8ff78ce 40558@item E @var{NN}
2f870471
AC
40559for an error
40560@end table
40561
a1dcb23a
DJ
40562@item z2,@var{addr},@var{kind}
40563@itemx Z2,@var{addr},@var{kind}
b8ff78ce
JB
40564@cindex @samp{z2} packet
40565@cindex @samp{Z2} packet
a1dcb23a 40566Insert (@samp{Z2}) or remove (@samp{z2}) a write watchpoint at @var{addr}.
697aa1b7 40567The number of bytes to watch is specified by @var{kind}.
2f870471
AC
40568
40569Reply:
40570@table @samp
40571@item OK
40572success
d57350ea 40573@item @w{}
2f870471 40574not supported
b8ff78ce 40575@item E @var{NN}
2f870471
AC
40576for an error
40577@end table
40578
a1dcb23a
DJ
40579@item z3,@var{addr},@var{kind}
40580@itemx Z3,@var{addr},@var{kind}
b8ff78ce
JB
40581@cindex @samp{z3} packet
40582@cindex @samp{Z3} packet
a1dcb23a 40583Insert (@samp{Z3}) or remove (@samp{z3}) a read watchpoint at @var{addr}.
697aa1b7 40584The number of bytes to watch is specified by @var{kind}.
2f870471
AC
40585
40586Reply:
40587@table @samp
40588@item OK
40589success
d57350ea 40590@item @w{}
2f870471 40591not supported
b8ff78ce 40592@item E @var{NN}
2f870471
AC
40593for an error
40594@end table
40595
a1dcb23a
DJ
40596@item z4,@var{addr},@var{kind}
40597@itemx Z4,@var{addr},@var{kind}
b8ff78ce
JB
40598@cindex @samp{z4} packet
40599@cindex @samp{Z4} packet
a1dcb23a 40600Insert (@samp{Z4}) or remove (@samp{z4}) an access watchpoint at @var{addr}.
697aa1b7 40601The number of bytes to watch is specified by @var{kind}.
2f870471
AC
40602
40603Reply:
40604@table @samp
40605@item OK
40606success
d57350ea 40607@item @w{}
2f870471 40608not supported
b8ff78ce 40609@item E @var{NN}
2f870471 40610for an error
ee2d5c50
AC
40611@end table
40612
40613@end table
c906108c 40614
ee2d5c50
AC
40615@node Stop Reply Packets
40616@section Stop Reply Packets
40617@cindex stop reply packets
c906108c 40618
8b23ecc4
SL
40619The @samp{C}, @samp{c}, @samp{S}, @samp{s}, @samp{vCont},
40620@samp{vAttach}, @samp{vRun}, @samp{vStopped}, and @samp{?} packets can
40621receive any of the below as a reply. Except for @samp{?}
40622and @samp{vStopped}, that reply is only returned
b8ff78ce 40623when the target halts. In the below the exact meaning of @dfn{signal
89be2091
DJ
40624number} is defined by the header @file{include/gdb/signals.h} in the
40625@value{GDBN} source code.
c906108c 40626
4435e1cc
TT
40627In non-stop mode, the server will simply reply @samp{OK} to commands
40628such as @samp{vCont}; any stop will be the subject of a future
40629notification. @xref{Remote Non-Stop}.
40630
b8ff78ce
JB
40631As in the description of request packets, we include spaces in the
40632reply templates for clarity; these are not part of the reply packet's
40633syntax. No @value{GDBN} stop reply packet uses spaces to separate its
40634components.
c906108c 40635
b8ff78ce 40636@table @samp
ee2d5c50 40637
b8ff78ce 40638@item S @var{AA}
599b237a 40639The program received signal number @var{AA} (a two-digit hexadecimal
940178d3
JB
40640number). This is equivalent to a @samp{T} response with no
40641@var{n}:@var{r} pairs.
c906108c 40642
b8ff78ce
JB
40643@item T @var{AA} @var{n1}:@var{r1};@var{n2}:@var{r2};@dots{}
40644@cindex @samp{T} packet reply
599b237a 40645The program received signal number @var{AA} (a two-digit hexadecimal
940178d3
JB
40646number). This is equivalent to an @samp{S} response, except that the
40647@samp{@var{n}:@var{r}} pairs can carry values of important registers
40648and other information directly in the stop reply packet, reducing
40649round-trip latency. Single-step and breakpoint traps are reported
40650this way. Each @samp{@var{n}:@var{r}} pair is interpreted as follows:
cfa9d6d9
DJ
40651
40652@itemize @bullet
b8ff78ce 40653@item
599b237a 40654If @var{n} is a hexadecimal number, it is a register number, and the
697aa1b7 40655corresponding @var{r} gives that register's value. The data @var{r} is a
b8ff78ce
JB
40656series of bytes in target byte order, with each byte given by a
40657two-digit hex number.
cfa9d6d9 40658
b8ff78ce 40659@item
b90a069a
SL
40660If @var{n} is @samp{thread}, then @var{r} is the @var{thread-id} of
40661the stopped thread, as specified in @ref{thread-id syntax}.
cfa9d6d9 40662
dc146f7c
VP
40663@item
40664If @var{n} is @samp{core}, then @var{r} is the hexadecimal number of
40665the core on which the stop event was detected.
40666
b8ff78ce 40667@item
cfa9d6d9
DJ
40668If @var{n} is a recognized @dfn{stop reason}, it describes a more
40669specific event that stopped the target. The currently defined stop
697aa1b7 40670reasons are listed below. The @var{aa} should be @samp{05}, the trap
cfa9d6d9
DJ
40671signal. At most one stop reason should be present.
40672
b8ff78ce
JB
40673@item
40674Otherwise, @value{GDBN} should ignore this @samp{@var{n}:@var{r}} pair
40675and go on to the next; this allows us to extend the protocol in the
40676future.
cfa9d6d9
DJ
40677@end itemize
40678
40679The currently defined stop reasons are:
40680
40681@table @samp
40682@item watch
40683@itemx rwatch
40684@itemx awatch
40685The packet indicates a watchpoint hit, and @var{r} is the data address, in
40686hex.
40687
82075af2
JS
40688@item syscall_entry
40689@itemx syscall_return
40690The packet indicates a syscall entry or return, and @var{r} is the
40691syscall number, in hex.
40692
cfa9d6d9
DJ
40693@cindex shared library events, remote reply
40694@item library
40695The packet indicates that the loaded libraries have changed.
40696@value{GDBN} should use @samp{qXfer:libraries:read} to fetch a new
697aa1b7 40697list of loaded libraries. The @var{r} part is ignored.
bacec72f
MS
40698
40699@cindex replay log events, remote reply
40700@item replaylog
40701The packet indicates that the target cannot continue replaying
40702logged execution events, because it has reached the end (or the
40703beginning when executing backward) of the log. The value of @var{r}
40704will be either @samp{begin} or @samp{end}. @xref{Reverse Execution},
40705for more information.
f7e6eed5
PA
40706
40707@item swbreak
40708@anchor{swbreak stop reason}
4435e1cc 40709The packet indicates a software breakpoint instruction was executed,
f7e6eed5
PA
40710irrespective of whether it was @value{GDBN} that planted the
40711breakpoint or the breakpoint is hardcoded in the program. The @var{r}
40712part must be left empty.
40713
40714On some architectures, such as x86, at the architecture level, when a
40715breakpoint instruction executes the program counter points at the
40716breakpoint address plus an offset. On such targets, the stub is
40717responsible for adjusting the PC to point back at the breakpoint
40718address.
40719
40720This packet should not be sent by default; older @value{GDBN} versions
40721did not support it. @value{GDBN} requests it, by supplying an
40722appropriate @samp{qSupported} feature (@pxref{qSupported}). The
40723remote stub must also supply the appropriate @samp{qSupported} feature
40724indicating support.
40725
40726This packet is required for correct non-stop mode operation.
40727
40728@item hwbreak
40729The packet indicates the target stopped for a hardware breakpoint.
40730The @var{r} part must be left empty.
40731
40732The same remarks about @samp{qSupported} and non-stop mode above
40733apply.
0d71eef5
DB
40734
40735@cindex fork events, remote reply
40736@item fork
40737The packet indicates that @code{fork} was called, and @var{r}
40738is the thread ID of the new child process. Refer to
40739@ref{thread-id syntax} for the format of the @var{thread-id}
40740field. This packet is only applicable to targets that support
40741fork events.
40742
40743This packet should not be sent by default; older @value{GDBN} versions
40744did not support it. @value{GDBN} requests it, by supplying an
40745appropriate @samp{qSupported} feature (@pxref{qSupported}). The
40746remote stub must also supply the appropriate @samp{qSupported} feature
40747indicating support.
40748
40749@cindex vfork events, remote reply
40750@item vfork
40751The packet indicates that @code{vfork} was called, and @var{r}
40752is the thread ID of the new child process. Refer to
40753@ref{thread-id syntax} for the format of the @var{thread-id}
40754field. This packet is only applicable to targets that support
40755vfork events.
40756
40757This packet should not be sent by default; older @value{GDBN} versions
40758did not support it. @value{GDBN} requests it, by supplying an
40759appropriate @samp{qSupported} feature (@pxref{qSupported}). The
40760remote stub must also supply the appropriate @samp{qSupported} feature
40761indicating support.
40762
40763@cindex vforkdone events, remote reply
40764@item vforkdone
e68fa6f0
PA
40765The packet indicates that a child process created by a vfork
40766has either called @code{exec} or terminated, so that the
40767address spaces of the parent and child process are no longer
40768shared. The @var{r} part is ignored. This packet is only
40769applicable to targets that support vforkdone events.
0d71eef5
DB
40770
40771This packet should not be sent by default; older @value{GDBN} versions
40772did not support it. @value{GDBN} requests it, by supplying an
40773appropriate @samp{qSupported} feature (@pxref{qSupported}). The
40774remote stub must also supply the appropriate @samp{qSupported} feature
40775indicating support.
40776
b459a59b
DB
40777@cindex exec events, remote reply
40778@item exec
40779The packet indicates that @code{execve} was called, and @var{r}
40780is the absolute pathname of the file that was executed, in hex.
40781This packet is only applicable to targets that support exec events.
40782
40783This packet should not be sent by default; older @value{GDBN} versions
40784did not support it. @value{GDBN} requests it, by supplying an
40785appropriate @samp{qSupported} feature (@pxref{qSupported}). The
40786remote stub must also supply the appropriate @samp{qSupported} feature
40787indicating support.
40788
65706a29
PA
40789@cindex thread create event, remote reply
40790@anchor{thread create event}
40791@item create
40792The packet indicates that the thread was just created. The new thread
40793is stopped until @value{GDBN} sets it running with a resumption packet
40794(@pxref{vCont packet}). This packet should not be sent by default;
40795@value{GDBN} requests it with the @ref{QThreadEvents} packet. See
4435e1cc
TT
40796also the @samp{w} (@pxref{thread exit event}) remote reply below. The
40797@var{r} part is ignored.
65706a29 40798
cfa9d6d9 40799@end table
ee2d5c50 40800
b8ff78ce 40801@item W @var{AA}
b90a069a 40802@itemx W @var{AA} ; process:@var{pid}
8e04817f 40803The process exited, and @var{AA} is the exit status. This is only
ee2d5c50
AC
40804applicable to certain targets.
40805
4435e1cc
TT
40806The second form of the response, including the process ID of the
40807exited process, can be used only when @value{GDBN} has reported
40808support for multiprocess protocol extensions; see @ref{multiprocess
40809extensions}. Both @var{AA} and @var{pid} are formatted as big-endian
40810hex strings.
b90a069a 40811
b8ff78ce 40812@item X @var{AA}
b90a069a 40813@itemx X @var{AA} ; process:@var{pid}
8e04817f 40814The process terminated with signal @var{AA}.
c906108c 40815
b90a069a
SL
40816The second form of the response, including the process ID of the
40817terminated process, can be used only when @value{GDBN} has reported
40818support for multiprocess protocol extensions; see @ref{multiprocess
4435e1cc
TT
40819extensions}. Both @var{AA} and @var{pid} are formatted as big-endian
40820hex strings.
b90a069a 40821
65706a29
PA
40822@anchor{thread exit event}
40823@cindex thread exit event, remote reply
40824@item w @var{AA} ; @var{tid}
40825
40826The thread exited, and @var{AA} is the exit status. This response
40827should not be sent by default; @value{GDBN} requests it with the
40828@ref{QThreadEvents} packet. See also @ref{thread create event} above.
4435e1cc 40829@var{AA} is formatted as a big-endian hex string.
65706a29 40830
f2faf941
PA
40831@item N
40832There are no resumed threads left in the target. In other words, even
40833though the process is alive, the last resumed thread has exited. For
40834example, say the target process has two threads: thread 1 and thread
408352. The client leaves thread 1 stopped, and resumes thread 2, which
40836subsequently exits. At this point, even though the process is still
40837alive, and thus no @samp{W} stop reply is sent, no thread is actually
40838executing either. The @samp{N} stop reply thus informs the client
40839that it can stop waiting for stop replies. This packet should not be
40840sent by default; older @value{GDBN} versions did not support it.
40841@value{GDBN} requests it, by supplying an appropriate
40842@samp{qSupported} feature (@pxref{qSupported}). The remote stub must
40843also supply the appropriate @samp{qSupported} feature indicating
40844support.
40845
b8ff78ce
JB
40846@item O @var{XX}@dots{}
40847@samp{@var{XX}@dots{}} is hex encoding of @sc{ascii} data, to be
40848written as the program's console output. This can happen at any time
40849while the program is running and the debugger should continue to wait
8b23ecc4 40850for @samp{W}, @samp{T}, etc. This reply is not permitted in non-stop mode.
0ce1b118 40851
b8ff78ce 40852@item F @var{call-id},@var{parameter}@dots{}
0ce1b118
CV
40853@var{call-id} is the identifier which says which host system call should
40854be called. This is just the name of the function. Translation into the
40855correct system call is only applicable as it's defined in @value{GDBN}.
79a6e687 40856@xref{File-I/O Remote Protocol Extension}, for a list of implemented
0ce1b118
CV
40857system calls.
40858
b8ff78ce
JB
40859@samp{@var{parameter}@dots{}} is a list of parameters as defined for
40860this very system call.
0ce1b118 40861
b8ff78ce
JB
40862The target replies with this packet when it expects @value{GDBN} to
40863call a host system call on behalf of the target. @value{GDBN} replies
40864with an appropriate @samp{F} packet and keeps up waiting for the next
40865reply packet from the target. The latest @samp{C}, @samp{c}, @samp{S}
79a6e687
BW
40866or @samp{s} action is expected to be continued. @xref{File-I/O Remote
40867Protocol Extension}, for more details.
0ce1b118 40868
ee2d5c50
AC
40869@end table
40870
40871@node General Query Packets
40872@section General Query Packets
9c16f35a 40873@cindex remote query requests
c906108c 40874
5f3bebba
JB
40875Packets starting with @samp{q} are @dfn{general query packets};
40876packets starting with @samp{Q} are @dfn{general set packets}. General
40877query and set packets are a semi-unified form for retrieving and
40878sending information to and from the stub.
40879
40880The initial letter of a query or set packet is followed by a name
40881indicating what sort of thing the packet applies to. For example,
40882@value{GDBN} may use a @samp{qSymbol} packet to exchange symbol
40883definitions with the stub. These packet names follow some
40884conventions:
40885
40886@itemize @bullet
40887@item
40888The name must not contain commas, colons or semicolons.
40889@item
40890Most @value{GDBN} query and set packets have a leading upper case
40891letter.
40892@item
40893The names of custom vendor packets should use a company prefix, in
40894lower case, followed by a period. For example, packets designed at
40895the Acme Corporation might begin with @samp{qacme.foo} (for querying
40896foos) or @samp{Qacme.bar} (for setting bars).
40897@end itemize
40898
aa56d27a
JB
40899The name of a query or set packet should be separated from any
40900parameters by a @samp{:}; the parameters themselves should be
40901separated by @samp{,} or @samp{;}. Stubs must be careful to match the
369af7bd
DJ
40902full packet name, and check for a separator or the end of the packet,
40903in case two packet names share a common prefix. New packets should not begin
40904with @samp{qC}, @samp{qP}, or @samp{qL}@footnote{The @samp{qP} and @samp{qL}
40905packets predate these conventions, and have arguments without any terminator
40906for the packet name; we suspect they are in widespread use in places that
40907are difficult to upgrade. The @samp{qC} packet has no arguments, but some
40908existing stubs (e.g.@: RedBoot) are known to not check for the end of the
40909packet.}.
c906108c 40910
b8ff78ce
JB
40911Like the descriptions of the other packets, each description here
40912has a template showing the packet's overall syntax, followed by an
40913explanation of the packet's meaning. We include spaces in some of the
40914templates for clarity; these are not part of the packet's syntax. No
40915@value{GDBN} packet uses spaces to separate its components.
40916
5f3bebba
JB
40917Here are the currently defined query and set packets:
40918
b8ff78ce 40919@table @samp
c906108c 40920
d1feda86 40921@item QAgent:1
af4238e5 40922@itemx QAgent:0
d1feda86
YQ
40923Turn on or off the agent as a helper to perform some debugging operations
40924delegated from @value{GDBN} (@pxref{Control Agent}).
40925
d914c394
SS
40926@item QAllow:@var{op}:@var{val}@dots{}
40927@cindex @samp{QAllow} packet
40928Specify which operations @value{GDBN} expects to request of the
40929target, as a semicolon-separated list of operation name and value
40930pairs. Possible values for @var{op} include @samp{WriteReg},
40931@samp{WriteMem}, @samp{InsertBreak}, @samp{InsertTrace},
40932@samp{InsertFastTrace}, and @samp{Stop}. @var{val} is either 0,
40933indicating that @value{GDBN} will not request the operation, or 1,
40934indicating that it may. (The target can then use this to set up its
40935own internals optimally, for instance if the debugger never expects to
40936insert breakpoints, it may not need to install its own trap handler.)
40937
b8ff78ce 40938@item qC
9c16f35a 40939@cindex current thread, remote request
b8ff78ce 40940@cindex @samp{qC} packet
b90a069a 40941Return the current thread ID.
ee2d5c50
AC
40942
40943Reply:
40944@table @samp
b90a069a
SL
40945@item QC @var{thread-id}
40946Where @var{thread-id} is a thread ID as documented in
40947@ref{thread-id syntax}.
b8ff78ce 40948@item @r{(anything else)}
b90a069a 40949Any other reply implies the old thread ID.
ee2d5c50
AC
40950@end table
40951
b8ff78ce 40952@item qCRC:@var{addr},@var{length}
ff2587ec 40953@cindex CRC of memory block, remote request
b8ff78ce 40954@cindex @samp{qCRC} packet
936d2992 40955@anchor{qCRC packet}
99e008fe
EZ
40956Compute the CRC checksum of a block of memory using CRC-32 defined in
40957IEEE 802.3. The CRC is computed byte at a time, taking the most
40958significant bit of each byte first. The initial pattern code
40959@code{0xffffffff} is used to ensure leading zeros affect the CRC.
40960
40961@emph{Note:} This is the same CRC used in validating separate debug
40962files (@pxref{Separate Debug Files, , Debugging Information in Separate
40963Files}). However the algorithm is slightly different. When validating
40964separate debug files, the CRC is computed taking the @emph{least}
40965significant bit of each byte first, and the final result is inverted to
40966detect trailing zeros.
40967
ff2587ec
WZ
40968Reply:
40969@table @samp
b8ff78ce 40970@item E @var{NN}
ff2587ec 40971An error (such as memory fault)
b8ff78ce
JB
40972@item C @var{crc32}
40973The specified memory region's checksum is @var{crc32}.
ff2587ec
WZ
40974@end table
40975
03583c20
UW
40976@item QDisableRandomization:@var{value}
40977@cindex disable address space randomization, remote request
40978@cindex @samp{QDisableRandomization} packet
40979Some target operating systems will randomize the virtual address space
40980of the inferior process as a security feature, but provide a feature
40981to disable such randomization, e.g.@: to allow for a more deterministic
40982debugging experience. On such systems, this packet with a @var{value}
40983of 1 directs the target to disable address space randomization for
40984processes subsequently started via @samp{vRun} packets, while a packet
40985with a @var{value} of 0 tells the target to enable address space
40986randomization.
40987
40988This packet is only available in extended mode (@pxref{extended mode}).
40989
40990Reply:
40991@table @samp
40992@item OK
40993The request succeeded.
40994
40995@item E @var{nn}
697aa1b7 40996An error occurred. The error number @var{nn} is given as hex digits.
03583c20 40997
d57350ea 40998@item @w{}
03583c20
UW
40999An empty reply indicates that @samp{QDisableRandomization} is not supported
41000by the stub.
41001@end table
41002
41003This packet is not probed by default; the remote stub must request it,
41004by supplying an appropriate @samp{qSupported} response (@pxref{qSupported}).
41005This should only be done on targets that actually support disabling
41006address space randomization.
41007
aefd8b33
SDJ
41008@item QStartupWithShell:@var{value}
41009@cindex startup with shell, remote request
41010@cindex @samp{QStartupWithShell} packet
41011On UNIX-like targets, it is possible to start the inferior using a
41012shell program. This is the default behavior on both @value{GDBN} and
41013@command{gdbserver} (@pxref{set startup-with-shell}). This packet is
41014used to inform @command{gdbserver} whether it should start the
41015inferior using a shell or not.
41016
41017If @var{value} is @samp{0}, @command{gdbserver} will not use a shell
41018to start the inferior. If @var{value} is @samp{1},
41019@command{gdbserver} will use a shell to start the inferior. All other
41020values are considered an error.
41021
41022This packet is only available in extended mode (@pxref{extended
41023mode}).
41024
41025Reply:
41026@table @samp
41027@item OK
41028The request succeeded.
41029
41030@item E @var{nn}
41031An error occurred. The error number @var{nn} is given as hex digits.
41032@end table
41033
41034This packet is not probed by default; the remote stub must request it,
41035by supplying an appropriate @samp{qSupported} response
41036(@pxref{qSupported}). This should only be done on targets that
41037actually support starting the inferior using a shell.
41038
41039Use of this packet is controlled by the @code{set startup-with-shell}
41040command; @pxref{set startup-with-shell}.
41041
0a2dde4a
SDJ
41042@item QEnvironmentHexEncoded:@var{hex-value}
41043@anchor{QEnvironmentHexEncoded}
41044@cindex set environment variable, remote request
41045@cindex @samp{QEnvironmentHexEncoded} packet
41046On UNIX-like targets, it is possible to set environment variables that
41047will be passed to the inferior during the startup process. This
41048packet is used to inform @command{gdbserver} of an environment
41049variable that has been defined by the user on @value{GDBN} (@pxref{set
41050environment}).
41051
41052The packet is composed by @var{hex-value}, an hex encoded
41053representation of the @var{name=value} format representing an
41054environment variable. The name of the environment variable is
41055represented by @var{name}, and the value to be assigned to the
41056environment variable is represented by @var{value}. If the variable
41057has no value (i.e., the value is @code{null}), then @var{value} will
41058not be present.
41059
41060This packet is only available in extended mode (@pxref{extended
41061mode}).
41062
41063Reply:
41064@table @samp
41065@item OK
41066The request succeeded.
41067@end table
41068
41069This packet is not probed by default; the remote stub must request it,
41070by supplying an appropriate @samp{qSupported} response
41071(@pxref{qSupported}). This should only be done on targets that
41072actually support passing environment variables to the starting
41073inferior.
41074
41075This packet is related to the @code{set environment} command;
41076@pxref{set environment}.
41077
41078@item QEnvironmentUnset:@var{hex-value}
41079@anchor{QEnvironmentUnset}
41080@cindex unset environment variable, remote request
41081@cindex @samp{QEnvironmentUnset} packet
41082On UNIX-like targets, it is possible to unset environment variables
41083before starting the inferior in the remote target. This packet is
41084used to inform @command{gdbserver} of an environment variable that has
41085been unset by the user on @value{GDBN} (@pxref{unset environment}).
41086
41087The packet is composed by @var{hex-value}, an hex encoded
41088representation of the name of the environment variable to be unset.
41089
41090This packet is only available in extended mode (@pxref{extended
41091mode}).
41092
41093Reply:
41094@table @samp
41095@item OK
41096The request succeeded.
41097@end table
41098
41099This packet is not probed by default; the remote stub must request it,
41100by supplying an appropriate @samp{qSupported} response
41101(@pxref{qSupported}). This should only be done on targets that
41102actually support passing environment variables to the starting
41103inferior.
41104
41105This packet is related to the @code{unset environment} command;
41106@pxref{unset environment}.
41107
41108@item QEnvironmentReset
41109@anchor{QEnvironmentReset}
41110@cindex reset environment, remote request
41111@cindex @samp{QEnvironmentReset} packet
41112On UNIX-like targets, this packet is used to reset the state of
41113environment variables in the remote target before starting the
41114inferior. In this context, reset means unsetting all environment
41115variables that were previously set by the user (i.e., were not
41116initially present in the environment). It is sent to
41117@command{gdbserver} before the @samp{QEnvironmentHexEncoded}
41118(@pxref{QEnvironmentHexEncoded}) and the @samp{QEnvironmentUnset}
41119(@pxref{QEnvironmentUnset}) packets.
41120
41121This packet is only available in extended mode (@pxref{extended
41122mode}).
41123
41124Reply:
41125@table @samp
41126@item OK
41127The request succeeded.
41128@end table
41129
41130This packet is not probed by default; the remote stub must request it,
41131by supplying an appropriate @samp{qSupported} response
41132(@pxref{qSupported}). This should only be done on targets that
41133actually support passing environment variables to the starting
41134inferior.
41135
bc3b087d
SDJ
41136@item QSetWorkingDir:@r{[}@var{directory}@r{]}
41137@anchor{QSetWorkingDir packet}
41138@cindex set working directory, remote request
41139@cindex @samp{QSetWorkingDir} packet
41140This packet is used to inform the remote server of the intended
41141current working directory for programs that are going to be executed.
41142
41143The packet is composed by @var{directory}, an hex encoded
41144representation of the directory that the remote inferior will use as
41145its current working directory. If @var{directory} is an empty string,
41146the remote server should reset the inferior's current working
41147directory to its original, empty value.
41148
41149This packet is only available in extended mode (@pxref{extended
41150mode}).
41151
41152Reply:
41153@table @samp
41154@item OK
41155The request succeeded.
41156@end table
41157
b8ff78ce
JB
41158@item qfThreadInfo
41159@itemx qsThreadInfo
9c16f35a 41160@cindex list active threads, remote request
b8ff78ce
JB
41161@cindex @samp{qfThreadInfo} packet
41162@cindex @samp{qsThreadInfo} packet
b90a069a 41163Obtain a list of all active thread IDs from the target (OS). Since there
8e04817f
AC
41164may be too many active threads to fit into one reply packet, this query
41165works iteratively: it may require more than one query/reply sequence to
41166obtain the entire list of threads. The first query of the sequence will
b8ff78ce
JB
41167be the @samp{qfThreadInfo} query; subsequent queries in the
41168sequence will be the @samp{qsThreadInfo} query.
ee2d5c50 41169
b8ff78ce 41170NOTE: This packet replaces the @samp{qL} query (see below).
ee2d5c50
AC
41171
41172Reply:
41173@table @samp
b90a069a
SL
41174@item m @var{thread-id}
41175A single thread ID
41176@item m @var{thread-id},@var{thread-id}@dots{}
41177a comma-separated list of thread IDs
b8ff78ce
JB
41178@item l
41179(lower case letter @samp{L}) denotes end of list.
ee2d5c50
AC
41180@end table
41181
41182In response to each query, the target will reply with a list of one or
b90a069a 41183more thread IDs, separated by commas.
e1aac25b 41184@value{GDBN} will respond to each reply with a request for more thread
b8ff78ce 41185ids (using the @samp{qs} form of the query), until the target responds
501994c0 41186with @samp{l} (lower-case ell, for @dfn{last}).
b90a069a
SL
41187Refer to @ref{thread-id syntax}, for the format of the @var{thread-id}
41188fields.
c906108c 41189
8dfcab11
DT
41190@emph{Note: @value{GDBN} will send the @code{qfThreadInfo} query during the
41191initial connection with the remote target, and the very first thread ID
41192mentioned in the reply will be stopped by @value{GDBN} in a subsequent
41193message. Therefore, the stub should ensure that the first thread ID in
41194the @code{qfThreadInfo} reply is suitable for being stopped by @value{GDBN}.}
41195
b8ff78ce 41196@item qGetTLSAddr:@var{thread-id},@var{offset},@var{lm}
ff2587ec 41197@cindex get thread-local storage address, remote request
b8ff78ce 41198@cindex @samp{qGetTLSAddr} packet
ff2587ec
WZ
41199Fetch the address associated with thread local storage specified
41200by @var{thread-id}, @var{offset}, and @var{lm}.
41201
b90a069a
SL
41202@var{thread-id} is the thread ID associated with the
41203thread for which to fetch the TLS address. @xref{thread-id syntax}.
ff2587ec
WZ
41204
41205@var{offset} is the (big endian, hex encoded) offset associated with the
41206thread local variable. (This offset is obtained from the debug
41207information associated with the variable.)
41208
db2e3e2e 41209@var{lm} is the (big endian, hex encoded) OS/ABI-specific encoding of the
7a9dd1b2 41210load module associated with the thread local storage. For example,
ff2587ec
WZ
41211a @sc{gnu}/Linux system will pass the link map address of the shared
41212object associated with the thread local storage under consideration.
41213Other operating environments may choose to represent the load module
41214differently, so the precise meaning of this parameter will vary.
ee2d5c50
AC
41215
41216Reply:
b8ff78ce
JB
41217@table @samp
41218@item @var{XX}@dots{}
ff2587ec
WZ
41219Hex encoded (big endian) bytes representing the address of the thread
41220local storage requested.
41221
b8ff78ce 41222@item E @var{nn}
697aa1b7 41223An error occurred. The error number @var{nn} is given as hex digits.
ff2587ec 41224
d57350ea 41225@item @w{}
b8ff78ce 41226An empty reply indicates that @samp{qGetTLSAddr} is not supported by the stub.
ee2d5c50
AC
41227@end table
41228
711e434b
PM
41229@item qGetTIBAddr:@var{thread-id}
41230@cindex get thread information block address
41231@cindex @samp{qGetTIBAddr} packet
41232Fetch address of the Windows OS specific Thread Information Block.
41233
41234@var{thread-id} is the thread ID associated with the thread.
41235
41236Reply:
41237@table @samp
41238@item @var{XX}@dots{}
41239Hex encoded (big endian) bytes representing the linear address of the
41240thread information block.
41241
41242@item E @var{nn}
41243An error occured. This means that either the thread was not found, or the
41244address could not be retrieved.
41245
d57350ea 41246@item @w{}
711e434b
PM
41247An empty reply indicates that @samp{qGetTIBAddr} is not supported by the stub.
41248@end table
41249
b8ff78ce 41250@item qL @var{startflag} @var{threadcount} @var{nextthread}
8e04817f
AC
41251Obtain thread information from RTOS. Where: @var{startflag} (one hex
41252digit) is one to indicate the first query and zero to indicate a
41253subsequent query; @var{threadcount} (two hex digits) is the maximum
41254number of threads the response packet can contain; and @var{nextthread}
41255(eight hex digits), for subsequent queries (@var{startflag} is zero), is
41256returned in the response as @var{argthread}.
ee2d5c50 41257
b8ff78ce 41258Don't use this packet; use the @samp{qfThreadInfo} query instead (see above).
ee2d5c50
AC
41259
41260Reply:
41261@table @samp
b8ff78ce 41262@item qM @var{count} @var{done} @var{argthread} @var{thread}@dots{}
8e04817f
AC
41263Where: @var{count} (two hex digits) is the number of threads being
41264returned; @var{done} (one hex digit) is zero to indicate more threads
41265and one indicates no further threads; @var{argthreadid} (eight hex
b8ff78ce 41266digits) is @var{nextthread} from the request packet; @var{thread}@dots{}
697aa1b7
EZ
41267is a sequence of thread IDs, @var{threadid} (eight hex
41268digits), from the target. See @code{remote.c:parse_threadlist_response()}.
ee2d5c50 41269@end table
c906108c 41270
0f01515a
LM
41271@item qMemTags:@var{start address},@var{length}:@var{type}
41272@anchor{qMemTags}
41273@cindex fetch memory tags
41274@cindex @samp{qMemTags} packet
41275Fetch memory tags of type @var{type} from the address range
41276@w{@r{[}@var{start address}, @var{start address} + @var{length}@r{)}}. The
41277target is responsible for calculating how many tags will be returned, as this
41278is architecture-specific.
41279
41280@var{start address} is the starting address of the memory range.
41281
41282@var{length} is the length, in bytes, of the memory range.
41283
41284@var{type} is the type of tag the request wants to fetch. The type is a signed
41285integer.
41286
41287Reply:
41288@table @samp
41289@item @var{mxx}@dots{}
41290Hex encoded sequence of uninterpreted bytes, @var{xx}@dots{}, representing the
41291tags found in the requested memory range.
41292
41293@item E @var{nn}
41294An error occured. This means that fetching of memory tags failed for some
41295reason.
41296
41297@item @w{}
41298An empty reply indicates that @samp{qMemTags} is not supported by the stub,
41299although this should not happen given @value{GDBN} will only send this packet
41300if the stub has advertised support for memory tagging via @samp{qSupported}.
41301@end table
41302
41303@item QMemTags:@var{start address},@var{length}:@var{type}:@var{tag bytes}
41304@anchor{QMemTags}
41305@cindex store memory tags
41306@cindex @samp{QMemTags} packet
41307Store memory tags of type @var{type} to the address range
41308@w{@r{[}@var{start address}, @var{start address} + @var{length}@r{)}}. The
41309target is responsible for interpreting the type, the tag bytes and modifying
41310the memory tag granules accordingly, given this is architecture-specific.
41311
41312The interpretation of how many tags (@var{nt}) should be written to how many
41313memory tag granules (@var{ng}) is also architecture-specific. The behavior is
41314implementation-specific, but the following is suggested.
41315
41316If the number of memory tags, @var{nt}, is greater than or equal to the
41317number of memory tag granules, @var{ng}, only @var{ng} tags will be
41318stored.
41319
41320If @var{nt} is less than @var{ng}, the behavior is that of a fill operation,
41321and the tag bytes will be used as a pattern that will get repeated until
41322@var{ng} tags are stored.
41323
41324@var{start address} is the starting address of the memory range. The address
41325does not have any restriction on alignment or size.
41326
41327@var{length} is the length, in bytes, of the memory range.
41328
41329@var{type} is the type of tag the request wants to fetch. The type is a signed
41330integer.
41331
41332@var{tag bytes} is a sequence of hex encoded uninterpreted bytes which will be
41333interpreted by the target. Each pair of hex digits is interpreted as a
41334single byte.
41335
41336Reply:
41337@table @samp
41338@item OK
41339The request was successful and the memory tag granules were modified
41340accordingly.
41341
41342@item E @var{nn}
41343An error occured. This means that modifying the memory tag granules failed
41344for some reason.
41345
41346@item @w{}
41347An empty reply indicates that @samp{QMemTags} is not supported by the stub,
41348although this should not happen given @value{GDBN} will only send this packet
41349if the stub has advertised support for memory tagging via @samp{qSupported}.
41350@end table
41351
b8ff78ce 41352@item qOffsets
9c16f35a 41353@cindex section offsets, remote request
b8ff78ce 41354@cindex @samp{qOffsets} packet
31d99776
DJ
41355Get section offsets that the target used when relocating the downloaded
41356image.
c906108c 41357
ee2d5c50
AC
41358Reply:
41359@table @samp
31d99776
DJ
41360@item Text=@var{xxx};Data=@var{yyy}@r{[};Bss=@var{zzz}@r{]}
41361Relocate the @code{Text} section by @var{xxx} from its original address.
41362Relocate the @code{Data} section by @var{yyy} from its original address.
41363If the object file format provides segment information (e.g.@: @sc{elf}
41364@samp{PT_LOAD} program headers), @value{GDBN} will relocate entire
41365segments by the supplied offsets.
41366
41367@emph{Note: while a @code{Bss} offset may be included in the response,
41368@value{GDBN} ignores this and instead applies the @code{Data} offset
41369to the @code{Bss} section.}
41370
41371@item TextSeg=@var{xxx}@r{[};DataSeg=@var{yyy}@r{]}
41372Relocate the first segment of the object file, which conventionally
41373contains program code, to a starting address of @var{xxx}. If
41374@samp{DataSeg} is specified, relocate the second segment, which
41375conventionally contains modifiable data, to a starting address of
41376@var{yyy}. @value{GDBN} will report an error if the object file
41377does not contain segment information, or does not contain at least
41378as many segments as mentioned in the reply. Extra segments are
41379kept at fixed offsets relative to the last relocated segment.
ee2d5c50
AC
41380@end table
41381
b90a069a 41382@item qP @var{mode} @var{thread-id}
9c16f35a 41383@cindex thread information, remote request
b8ff78ce 41384@cindex @samp{qP} packet
b90a069a
SL
41385Returns information on @var{thread-id}. Where: @var{mode} is a hex
41386encoded 32 bit mode; @var{thread-id} is a thread ID
41387(@pxref{thread-id syntax}).
ee2d5c50 41388
aa56d27a
JB
41389Don't use this packet; use the @samp{qThreadExtraInfo} query instead
41390(see below).
41391
b8ff78ce 41392Reply: see @code{remote.c:remote_unpack_thread_info_response()}.
c906108c 41393
8b23ecc4 41394@item QNonStop:1
687e43a4 41395@itemx QNonStop:0
8b23ecc4
SL
41396@cindex non-stop mode, remote request
41397@cindex @samp{QNonStop} packet
41398@anchor{QNonStop}
41399Enter non-stop (@samp{QNonStop:1}) or all-stop (@samp{QNonStop:0}) mode.
41400@xref{Remote Non-Stop}, for more information.
41401
41402Reply:
41403@table @samp
41404@item OK
41405The request succeeded.
41406
41407@item E @var{nn}
697aa1b7 41408An error occurred. The error number @var{nn} is given as hex digits.
8b23ecc4 41409
d57350ea 41410@item @w{}
8b23ecc4
SL
41411An empty reply indicates that @samp{QNonStop} is not supported by
41412the stub.
41413@end table
41414
41415This packet is not probed by default; the remote stub must request it,
41416by supplying an appropriate @samp{qSupported} response (@pxref{qSupported}).
41417Use of this packet is controlled by the @code{set non-stop} command;
41418@pxref{Non-Stop Mode}.
41419
82075af2
JS
41420@item QCatchSyscalls:1 @r{[};@var{sysno}@r{]}@dots{}
41421@itemx QCatchSyscalls:0
41422@cindex catch syscalls from inferior, remote request
41423@cindex @samp{QCatchSyscalls} packet
41424@anchor{QCatchSyscalls}
41425Enable (@samp{QCatchSyscalls:1}) or disable (@samp{QCatchSyscalls:0})
41426catching syscalls from the inferior process.
41427
41428For @samp{QCatchSyscalls:1}, each listed syscall @var{sysno} (encoded
41429in hex) should be reported to @value{GDBN}. If no syscall @var{sysno}
41430is listed, every system call should be reported.
41431
41432Note that if a syscall not in the list is reported, @value{GDBN} will
41433still filter the event according to its own list from all corresponding
41434@code{catch syscall} commands. However, it is more efficient to only
41435report the requested syscalls.
41436
41437Multiple @samp{QCatchSyscalls:1} packets do not combine; any earlier
41438@samp{QCatchSyscalls:1} list is completely replaced by the new list.
41439
41440If the inferior process execs, the state of @samp{QCatchSyscalls} is
41441kept for the new process too. On targets where exec may affect syscall
41442numbers, for example with exec between 32 and 64-bit processes, the
41443client should send a new packet with the new syscall list.
41444
41445Reply:
41446@table @samp
41447@item OK
41448The request succeeded.
41449
41450@item E @var{nn}
41451An error occurred. @var{nn} are hex digits.
41452
41453@item @w{}
41454An empty reply indicates that @samp{QCatchSyscalls} is not supported by
41455the stub.
41456@end table
41457
41458Use of this packet is controlled by the @code{set remote catch-syscalls}
41459command (@pxref{Remote Configuration, set remote catch-syscalls}).
41460This packet is not probed by default; the remote stub must request it,
41461by supplying an appropriate @samp{qSupported} response (@pxref{qSupported}).
41462
89be2091
DJ
41463@item QPassSignals: @var{signal} @r{[};@var{signal}@r{]}@dots{}
41464@cindex pass signals to inferior, remote request
41465@cindex @samp{QPassSignals} packet
23181151 41466@anchor{QPassSignals}
89be2091
DJ
41467Each listed @var{signal} should be passed directly to the inferior process.
41468Signals are numbered identically to continue packets and stop replies
41469(@pxref{Stop Reply Packets}). Each @var{signal} list item should be
41470strictly greater than the previous item. These signals do not need to stop
41471the inferior, or be reported to @value{GDBN}. All other signals should be
41472reported to @value{GDBN}. Multiple @samp{QPassSignals} packets do not
41473combine; any earlier @samp{QPassSignals} list is completely replaced by the
41474new list. This packet improves performance when using @samp{handle
41475@var{signal} nostop noprint pass}.
41476
41477Reply:
41478@table @samp
41479@item OK
41480The request succeeded.
41481
41482@item E @var{nn}
697aa1b7 41483An error occurred. The error number @var{nn} is given as hex digits.
89be2091 41484
d57350ea 41485@item @w{}
89be2091
DJ
41486An empty reply indicates that @samp{QPassSignals} is not supported by
41487the stub.
41488@end table
41489
41490Use of this packet is controlled by the @code{set remote pass-signals}
79a6e687 41491command (@pxref{Remote Configuration, set remote pass-signals}).
89be2091
DJ
41492This packet is not probed by default; the remote stub must request it,
41493by supplying an appropriate @samp{qSupported} response (@pxref{qSupported}).
41494
9b224c5e
PA
41495@item QProgramSignals: @var{signal} @r{[};@var{signal}@r{]}@dots{}
41496@cindex signals the inferior may see, remote request
41497@cindex @samp{QProgramSignals} packet
41498@anchor{QProgramSignals}
41499Each listed @var{signal} may be delivered to the inferior process.
41500Others should be silently discarded.
41501
41502In some cases, the remote stub may need to decide whether to deliver a
41503signal to the program or not without @value{GDBN} involvement. One
41504example of that is while detaching --- the program's threads may have
41505stopped for signals that haven't yet had a chance of being reported to
41506@value{GDBN}, and so the remote stub can use the signal list specified
41507by this packet to know whether to deliver or ignore those pending
41508signals.
41509
41510This does not influence whether to deliver a signal as requested by a
41511resumption packet (@pxref{vCont packet}).
41512
41513Signals are numbered identically to continue packets and stop replies
41514(@pxref{Stop Reply Packets}). Each @var{signal} list item should be
41515strictly greater than the previous item. Multiple
41516@samp{QProgramSignals} packets do not combine; any earlier
41517@samp{QProgramSignals} list is completely replaced by the new list.
41518
41519Reply:
41520@table @samp
41521@item OK
41522The request succeeded.
41523
41524@item E @var{nn}
697aa1b7 41525An error occurred. The error number @var{nn} is given as hex digits.
9b224c5e 41526
d57350ea 41527@item @w{}
9b224c5e
PA
41528An empty reply indicates that @samp{QProgramSignals} is not supported
41529by the stub.
41530@end table
41531
41532Use of this packet is controlled by the @code{set remote program-signals}
41533command (@pxref{Remote Configuration, set remote program-signals}).
41534This packet is not probed by default; the remote stub must request it,
41535by supplying an appropriate @samp{qSupported} response (@pxref{qSupported}).
41536
65706a29
PA
41537@anchor{QThreadEvents}
41538@item QThreadEvents:1
41539@itemx QThreadEvents:0
41540@cindex thread create/exit events, remote request
41541@cindex @samp{QThreadEvents} packet
41542
41543Enable (@samp{QThreadEvents:1}) or disable (@samp{QThreadEvents:0})
41544reporting of thread create and exit events. @xref{thread create
41545event}, for the reply specifications. For example, this is used in
41546non-stop mode when @value{GDBN} stops a set of threads and
41547synchronously waits for the their corresponding stop replies. Without
41548exit events, if one of the threads exits, @value{GDBN} would hang
41549forever not knowing that it should no longer expect a stop for that
41550same thread. @value{GDBN} does not enable this feature unless the
41551stub reports that it supports it by including @samp{QThreadEvents+} in
41552its @samp{qSupported} reply.
41553
41554Reply:
41555@table @samp
41556@item OK
41557The request succeeded.
41558
41559@item E @var{nn}
41560An error occurred. The error number @var{nn} is given as hex digits.
41561
41562@item @w{}
41563An empty reply indicates that @samp{QThreadEvents} is not supported by
41564the stub.
41565@end table
41566
41567Use of this packet is controlled by the @code{set remote thread-events}
41568command (@pxref{Remote Configuration, set remote thread-events}).
41569
b8ff78ce 41570@item qRcmd,@var{command}
ff2587ec 41571@cindex execute remote command, remote request
b8ff78ce 41572@cindex @samp{qRcmd} packet
ff2587ec 41573@var{command} (hex encoded) is passed to the local interpreter for
b8ff78ce
JB
41574execution. Invalid commands should be reported using the output
41575string. Before the final result packet, the target may also respond
41576with a number of intermediate @samp{O@var{output}} console output
41577packets. @emph{Implementors should note that providing access to a
41578stubs's interpreter may have security implications}.
fa93a9d8 41579
ff2587ec
WZ
41580Reply:
41581@table @samp
41582@item OK
41583A command response with no output.
41584@item @var{OUTPUT}
41585A command response with the hex encoded output string @var{OUTPUT}.
b8ff78ce 41586@item E @var{NN}
ff2587ec 41587Indicate a badly formed request.
d57350ea 41588@item @w{}
b8ff78ce 41589An empty reply indicates that @samp{qRcmd} is not recognized.
ff2587ec 41590@end table
fa93a9d8 41591
aa56d27a
JB
41592(Note that the @code{qRcmd} packet's name is separated from the
41593command by a @samp{,}, not a @samp{:}, contrary to the naming
41594conventions above. Please don't use this packet as a model for new
41595packets.)
41596
08388c79
DE
41597@item qSearch:memory:@var{address};@var{length};@var{search-pattern}
41598@cindex searching memory, in remote debugging
5c4808ca 41599@ifnotinfo
08388c79 41600@cindex @samp{qSearch:memory} packet
5c4808ca
EZ
41601@end ifnotinfo
41602@cindex @samp{qSearch memory} packet
08388c79
DE
41603@anchor{qSearch memory}
41604Search @var{length} bytes at @var{address} for @var{search-pattern}.
697aa1b7
EZ
41605Both @var{address} and @var{length} are encoded in hex;
41606@var{search-pattern} is a sequence of bytes, also hex encoded.
08388c79
DE
41607
41608Reply:
41609@table @samp
41610@item 0
41611The pattern was not found.
41612@item 1,address
41613The pattern was found at @var{address}.
41614@item E @var{NN}
41615A badly formed request or an error was encountered while searching memory.
d57350ea 41616@item @w{}
08388c79
DE
41617An empty reply indicates that @samp{qSearch:memory} is not recognized.
41618@end table
41619
a6f3e723
SL
41620@item QStartNoAckMode
41621@cindex @samp{QStartNoAckMode} packet
41622@anchor{QStartNoAckMode}
41623Request that the remote stub disable the normal @samp{+}/@samp{-}
41624protocol acknowledgments (@pxref{Packet Acknowledgment}).
41625
41626Reply:
41627@table @samp
41628@item OK
41629The stub has switched to no-acknowledgment mode.
6b92c0d3 41630@value{GDBN} acknowledges this response,
a6f3e723
SL
41631but neither the stub nor @value{GDBN} shall send or expect further
41632@samp{+}/@samp{-} acknowledgments in the current connection.
d57350ea 41633@item @w{}
a6f3e723
SL
41634An empty reply indicates that the stub does not support no-acknowledgment mode.
41635@end table
41636
be2a5f71
DJ
41637@item qSupported @r{[}:@var{gdbfeature} @r{[};@var{gdbfeature}@r{]}@dots{} @r{]}
41638@cindex supported packets, remote query
41639@cindex features of the remote protocol
41640@cindex @samp{qSupported} packet
0876f84a 41641@anchor{qSupported}
be2a5f71
DJ
41642Tell the remote stub about features supported by @value{GDBN}, and
41643query the stub for features it supports. This packet allows
41644@value{GDBN} and the remote stub to take advantage of each others'
41645features. @samp{qSupported} also consolidates multiple feature probes
41646at startup, to improve @value{GDBN} performance---a single larger
41647packet performs better than multiple smaller probe packets on
41648high-latency links. Some features may enable behavior which must not
41649be on by default, e.g.@: because it would confuse older clients or
41650stubs. Other features may describe packets which could be
41651automatically probed for, but are not. These features must be
41652reported before @value{GDBN} will use them. This ``default
41653unsupported'' behavior is not appropriate for all packets, but it
41654helps to keep the initial connection time under control with new
41655versions of @value{GDBN} which support increasing numbers of packets.
41656
41657Reply:
41658@table @samp
41659@item @var{stubfeature} @r{[};@var{stubfeature}@r{]}@dots{}
41660The stub supports or does not support each returned @var{stubfeature},
41661depending on the form of each @var{stubfeature} (see below for the
41662possible forms).
d57350ea 41663@item @w{}
be2a5f71
DJ
41664An empty reply indicates that @samp{qSupported} is not recognized,
41665or that no features needed to be reported to @value{GDBN}.
41666@end table
41667
41668The allowed forms for each feature (either a @var{gdbfeature} in the
41669@samp{qSupported} packet, or a @var{stubfeature} in the response)
41670are:
41671
41672@table @samp
41673@item @var{name}=@var{value}
41674The remote protocol feature @var{name} is supported, and associated
41675with the specified @var{value}. The format of @var{value} depends
41676on the feature, but it must not include a semicolon.
41677@item @var{name}+
41678The remote protocol feature @var{name} is supported, and does not
41679need an associated value.
41680@item @var{name}-
41681The remote protocol feature @var{name} is not supported.
41682@item @var{name}?
41683The remote protocol feature @var{name} may be supported, and
41684@value{GDBN} should auto-detect support in some other way when it is
41685needed. This form will not be used for @var{gdbfeature} notifications,
41686but may be used for @var{stubfeature} responses.
41687@end table
41688
41689Whenever the stub receives a @samp{qSupported} request, the
41690supplied set of @value{GDBN} features should override any previous
41691request. This allows @value{GDBN} to put the stub in a known
41692state, even if the stub had previously been communicating with
41693a different version of @value{GDBN}.
41694
b90a069a
SL
41695The following values of @var{gdbfeature} (for the packet sent by @value{GDBN})
41696are defined:
41697
41698@table @samp
41699@item multiprocess
41700This feature indicates whether @value{GDBN} supports multiprocess
41701extensions to the remote protocol. @value{GDBN} does not use such
41702extensions unless the stub also reports that it supports them by
41703including @samp{multiprocess+} in its @samp{qSupported} reply.
41704@xref{multiprocess extensions}, for details.
c8d5aac9
L
41705
41706@item xmlRegisters
41707This feature indicates that @value{GDBN} supports the XML target
41708description. If the stub sees @samp{xmlRegisters=} with target
41709specific strings separated by a comma, it will report register
41710description.
dde08ee1
PA
41711
41712@item qRelocInsn
41713This feature indicates whether @value{GDBN} supports the
41714@samp{qRelocInsn} packet (@pxref{Tracepoint Packets,,Relocate
41715instruction reply packet}).
f7e6eed5
PA
41716
41717@item swbreak
41718This feature indicates whether @value{GDBN} supports the swbreak stop
41719reason in stop replies. @xref{swbreak stop reason}, for details.
41720
41721@item hwbreak
41722This feature indicates whether @value{GDBN} supports the hwbreak stop
41723reason in stop replies. @xref{swbreak stop reason}, for details.
0d71eef5
DB
41724
41725@item fork-events
41726This feature indicates whether @value{GDBN} supports fork event
41727extensions to the remote protocol. @value{GDBN} does not use such
41728extensions unless the stub also reports that it supports them by
41729including @samp{fork-events+} in its @samp{qSupported} reply.
41730
41731@item vfork-events
41732This feature indicates whether @value{GDBN} supports vfork event
41733extensions to the remote protocol. @value{GDBN} does not use such
41734extensions unless the stub also reports that it supports them by
41735including @samp{vfork-events+} in its @samp{qSupported} reply.
b459a59b
DB
41736
41737@item exec-events
41738This feature indicates whether @value{GDBN} supports exec event
41739extensions to the remote protocol. @value{GDBN} does not use such
41740extensions unless the stub also reports that it supports them by
41741including @samp{exec-events+} in its @samp{qSupported} reply.
750ce8d1
YQ
41742
41743@item vContSupported
41744This feature indicates whether @value{GDBN} wants to know the
41745supported actions in the reply to @samp{vCont?} packet.
b90a069a
SL
41746@end table
41747
41748Stubs should ignore any unknown values for
be2a5f71
DJ
41749@var{gdbfeature}. Any @value{GDBN} which sends a @samp{qSupported}
41750packet supports receiving packets of unlimited length (earlier
b90a069a 41751versions of @value{GDBN} may reject overly long responses). Additional values
be2a5f71
DJ
41752for @var{gdbfeature} may be defined in the future to let the stub take
41753advantage of new features in @value{GDBN}, e.g.@: incompatible
b90a069a
SL
41754improvements in the remote protocol---the @samp{multiprocess} feature is
41755an example of such a feature. The stub's reply should be independent
be2a5f71
DJ
41756of the @var{gdbfeature} entries sent by @value{GDBN}; first @value{GDBN}
41757describes all the features it supports, and then the stub replies with
41758all the features it supports.
41759
41760Similarly, @value{GDBN} will silently ignore unrecognized stub feature
41761responses, as long as each response uses one of the standard forms.
41762
41763Some features are flags. A stub which supports a flag feature
41764should respond with a @samp{+} form response. Other features
41765require values, and the stub should respond with an @samp{=}
41766form response.
41767
41768Each feature has a default value, which @value{GDBN} will use if
41769@samp{qSupported} is not available or if the feature is not mentioned
41770in the @samp{qSupported} response. The default values are fixed; a
41771stub is free to omit any feature responses that match the defaults.
41772
41773Not all features can be probed, but for those which can, the probing
41774mechanism is useful: in some cases, a stub's internal
41775architecture may not allow the protocol layer to know some information
41776about the underlying target in advance. This is especially common in
41777stubs which may be configured for multiple targets.
41778
41779These are the currently defined stub features and their properties:
41780
cfa9d6d9 41781@multitable @columnfractions 0.35 0.2 0.12 0.2
be2a5f71
DJ
41782@c NOTE: The first row should be @headitem, but we do not yet require
41783@c a new enough version of Texinfo (4.7) to use @headitem.
0876f84a 41784@item Feature Name
be2a5f71
DJ
41785@tab Value Required
41786@tab Default
41787@tab Probe Allowed
41788
41789@item @samp{PacketSize}
41790@tab Yes
41791@tab @samp{-}
41792@tab No
41793
0876f84a
DJ
41794@item @samp{qXfer:auxv:read}
41795@tab No
41796@tab @samp{-}
41797@tab Yes
41798
2ae8c8e7
MM
41799@item @samp{qXfer:btrace:read}
41800@tab No
41801@tab @samp{-}
41802@tab Yes
41803
f4abbc16
MM
41804@item @samp{qXfer:btrace-conf:read}
41805@tab No
41806@tab @samp{-}
41807@tab Yes
41808
c78fa86a
GB
41809@item @samp{qXfer:exec-file:read}
41810@tab No
41811@tab @samp{-}
41812@tab Yes
41813
23181151
DJ
41814@item @samp{qXfer:features:read}
41815@tab No
41816@tab @samp{-}
41817@tab Yes
41818
cfa9d6d9
DJ
41819@item @samp{qXfer:libraries:read}
41820@tab No
41821@tab @samp{-}
41822@tab Yes
41823
85dc5a12
GB
41824@item @samp{qXfer:libraries-svr4:read}
41825@tab No
41826@tab @samp{-}
41827@tab Yes
41828
41829@item @samp{augmented-libraries-svr4-read}
41830@tab No
41831@tab @samp{-}
41832@tab No
41833
68437a39
DJ
41834@item @samp{qXfer:memory-map:read}
41835@tab No
41836@tab @samp{-}
41837@tab Yes
41838
0fb4aa4b
PA
41839@item @samp{qXfer:sdata:read}
41840@tab No
41841@tab @samp{-}
41842@tab Yes
41843
4aa995e1
PA
41844@item @samp{qXfer:siginfo:read}
41845@tab No
41846@tab @samp{-}
41847@tab Yes
41848
41849@item @samp{qXfer:siginfo:write}
41850@tab No
41851@tab @samp{-}
41852@tab Yes
41853
dc146f7c
VP
41854@item @samp{qXfer:threads:read}
41855@tab No
41856@tab @samp{-}
41857@tab Yes
41858
b3b9301e
PA
41859@item @samp{qXfer:traceframe-info:read}
41860@tab No
41861@tab @samp{-}
41862@tab Yes
41863
169081d0
TG
41864@item @samp{qXfer:uib:read}
41865@tab No
41866@tab @samp{-}
41867@tab Yes
41868
78d85199
YQ
41869@item @samp{qXfer:fdpic:read}
41870@tab No
41871@tab @samp{-}
41872@tab Yes
dc146f7c 41873
2ae8c8e7
MM
41874@item @samp{Qbtrace:off}
41875@tab Yes
41876@tab @samp{-}
41877@tab Yes
41878
41879@item @samp{Qbtrace:bts}
41880@tab Yes
41881@tab @samp{-}
41882@tab Yes
41883
b20a6524
MM
41884@item @samp{Qbtrace:pt}
41885@tab Yes
41886@tab @samp{-}
41887@tab Yes
41888
d33501a5
MM
41889@item @samp{Qbtrace-conf:bts:size}
41890@tab Yes
41891@tab @samp{-}
41892@tab Yes
41893
b20a6524
MM
41894@item @samp{Qbtrace-conf:pt:size}
41895@tab Yes
41896@tab @samp{-}
41897@tab Yes
41898
8b23ecc4
SL
41899@item @samp{QNonStop}
41900@tab No
41901@tab @samp{-}
41902@tab Yes
41903
82075af2
JS
41904@item @samp{QCatchSyscalls}
41905@tab No
41906@tab @samp{-}
41907@tab Yes
41908
89be2091
DJ
41909@item @samp{QPassSignals}
41910@tab No
41911@tab @samp{-}
41912@tab Yes
41913
a6f3e723
SL
41914@item @samp{QStartNoAckMode}
41915@tab No
41916@tab @samp{-}
41917@tab Yes
41918
b90a069a
SL
41919@item @samp{multiprocess}
41920@tab No
41921@tab @samp{-}
41922@tab No
41923
83364271
LM
41924@item @samp{ConditionalBreakpoints}
41925@tab No
41926@tab @samp{-}
41927@tab No
41928
782b2b07
SS
41929@item @samp{ConditionalTracepoints}
41930@tab No
41931@tab @samp{-}
41932@tab No
41933
0d772ac9
MS
41934@item @samp{ReverseContinue}
41935@tab No
2f8132f3 41936@tab @samp{-}
0d772ac9
MS
41937@tab No
41938
41939@item @samp{ReverseStep}
41940@tab No
2f8132f3 41941@tab @samp{-}
0d772ac9
MS
41942@tab No
41943
409873ef
SS
41944@item @samp{TracepointSource}
41945@tab No
41946@tab @samp{-}
41947@tab No
41948
d1feda86
YQ
41949@item @samp{QAgent}
41950@tab No
41951@tab @samp{-}
41952@tab No
41953
d914c394
SS
41954@item @samp{QAllow}
41955@tab No
41956@tab @samp{-}
41957@tab No
41958
03583c20
UW
41959@item @samp{QDisableRandomization}
41960@tab No
41961@tab @samp{-}
41962@tab No
41963
d248b706
KY
41964@item @samp{EnableDisableTracepoints}
41965@tab No
41966@tab @samp{-}
41967@tab No
41968
f6f899bf
HAQ
41969@item @samp{QTBuffer:size}
41970@tab No
41971@tab @samp{-}
41972@tab No
41973
3065dfb6
SS
41974@item @samp{tracenz}
41975@tab No
41976@tab @samp{-}
41977@tab No
41978
d3ce09f5
SS
41979@item @samp{BreakpointCommands}
41980@tab No
41981@tab @samp{-}
41982@tab No
41983
f7e6eed5
PA
41984@item @samp{swbreak}
41985@tab No
41986@tab @samp{-}
41987@tab No
41988
41989@item @samp{hwbreak}
41990@tab No
41991@tab @samp{-}
41992@tab No
41993
0d71eef5
DB
41994@item @samp{fork-events}
41995@tab No
41996@tab @samp{-}
41997@tab No
41998
41999@item @samp{vfork-events}
42000@tab No
42001@tab @samp{-}
42002@tab No
42003
b459a59b
DB
42004@item @samp{exec-events}
42005@tab No
42006@tab @samp{-}
42007@tab No
42008
65706a29
PA
42009@item @samp{QThreadEvents}
42010@tab No
42011@tab @samp{-}
42012@tab No
42013
f2faf941
PA
42014@item @samp{no-resumed}
42015@tab No
42016@tab @samp{-}
42017@tab No
42018
0f01515a
LM
42019@item @samp{memory-tagging}
42020@tab No
42021@tab @samp{-}
42022@tab No
42023
be2a5f71
DJ
42024@end multitable
42025
42026These are the currently defined stub features, in more detail:
42027
42028@table @samp
42029@cindex packet size, remote protocol
42030@item PacketSize=@var{bytes}
42031The remote stub can accept packets up to at least @var{bytes} in
42032length. @value{GDBN} will send packets up to this size for bulk
42033transfers, and will never send larger packets. This is a limit on the
42034data characters in the packet, including the frame and checksum.
42035There is no trailing NUL byte in a remote protocol packet; if the stub
42036stores packets in a NUL-terminated format, it should allow an extra
42037byte in its buffer for the NUL. If this stub feature is not supported,
42038@value{GDBN} guesses based on the size of the @samp{g} packet response.
42039
0876f84a
DJ
42040@item qXfer:auxv:read
42041The remote stub understands the @samp{qXfer:auxv:read} packet
42042(@pxref{qXfer auxiliary vector read}).
42043
2ae8c8e7
MM
42044@item qXfer:btrace:read
42045The remote stub understands the @samp{qXfer:btrace:read}
42046packet (@pxref{qXfer btrace read}).
42047
f4abbc16
MM
42048@item qXfer:btrace-conf:read
42049The remote stub understands the @samp{qXfer:btrace-conf:read}
42050packet (@pxref{qXfer btrace-conf read}).
42051
c78fa86a
GB
42052@item qXfer:exec-file:read
42053The remote stub understands the @samp{qXfer:exec-file:read} packet
42054(@pxref{qXfer executable filename read}).
42055
23181151
DJ
42056@item qXfer:features:read
42057The remote stub understands the @samp{qXfer:features:read} packet
42058(@pxref{qXfer target description read}).
42059
cfa9d6d9
DJ
42060@item qXfer:libraries:read
42061The remote stub understands the @samp{qXfer:libraries:read} packet
42062(@pxref{qXfer library list read}).
42063
2268b414
JK
42064@item qXfer:libraries-svr4:read
42065The remote stub understands the @samp{qXfer:libraries-svr4:read} packet
42066(@pxref{qXfer svr4 library list read}).
42067
85dc5a12
GB
42068@item augmented-libraries-svr4-read
42069The remote stub understands the augmented form of the
42070@samp{qXfer:libraries-svr4:read} packet
42071(@pxref{qXfer svr4 library list read}).
42072
23181151
DJ
42073@item qXfer:memory-map:read
42074The remote stub understands the @samp{qXfer:memory-map:read} packet
42075(@pxref{qXfer memory map read}).
42076
0fb4aa4b
PA
42077@item qXfer:sdata:read
42078The remote stub understands the @samp{qXfer:sdata:read} packet
42079(@pxref{qXfer sdata read}).
42080
4aa995e1
PA
42081@item qXfer:siginfo:read
42082The remote stub understands the @samp{qXfer:siginfo:read} packet
42083(@pxref{qXfer siginfo read}).
42084
42085@item qXfer:siginfo:write
42086The remote stub understands the @samp{qXfer:siginfo:write} packet
42087(@pxref{qXfer siginfo write}).
42088
dc146f7c
VP
42089@item qXfer:threads:read
42090The remote stub understands the @samp{qXfer:threads:read} packet
42091(@pxref{qXfer threads read}).
42092
b3b9301e
PA
42093@item qXfer:traceframe-info:read
42094The remote stub understands the @samp{qXfer:traceframe-info:read}
42095packet (@pxref{qXfer traceframe info read}).
42096
169081d0
TG
42097@item qXfer:uib:read
42098The remote stub understands the @samp{qXfer:uib:read}
42099packet (@pxref{qXfer unwind info block}).
42100
78d85199
YQ
42101@item qXfer:fdpic:read
42102The remote stub understands the @samp{qXfer:fdpic:read}
42103packet (@pxref{qXfer fdpic loadmap read}).
42104
8b23ecc4
SL
42105@item QNonStop
42106The remote stub understands the @samp{QNonStop} packet
42107(@pxref{QNonStop}).
42108
82075af2
JS
42109@item QCatchSyscalls
42110The remote stub understands the @samp{QCatchSyscalls} packet
42111(@pxref{QCatchSyscalls}).
42112
23181151
DJ
42113@item QPassSignals
42114The remote stub understands the @samp{QPassSignals} packet
42115(@pxref{QPassSignals}).
42116
a6f3e723
SL
42117@item QStartNoAckMode
42118The remote stub understands the @samp{QStartNoAckMode} packet and
42119prefers to operate in no-acknowledgment mode. @xref{Packet Acknowledgment}.
42120
b90a069a
SL
42121@item multiprocess
42122@anchor{multiprocess extensions}
42123@cindex multiprocess extensions, in remote protocol
42124The remote stub understands the multiprocess extensions to the remote
42125protocol syntax. The multiprocess extensions affect the syntax of
42126thread IDs in both packets and replies (@pxref{thread-id syntax}), and
42127add process IDs to the @samp{D} packet and @samp{W} and @samp{X}
42128replies. Note that reporting this feature indicates support for the
42129syntactic extensions only, not that the stub necessarily supports
42130debugging of more than one process at a time. The stub must not use
42131multiprocess extensions in packet replies unless @value{GDBN} has also
42132indicated it supports them in its @samp{qSupported} request.
42133
07e059b5
VP
42134@item qXfer:osdata:read
42135The remote stub understands the @samp{qXfer:osdata:read} packet
42136((@pxref{qXfer osdata read}).
42137
83364271
LM
42138@item ConditionalBreakpoints
42139The target accepts and implements evaluation of conditional expressions
42140defined for breakpoints. The target will only report breakpoint triggers
42141when such conditions are true (@pxref{Conditions, ,Break Conditions}).
42142
782b2b07
SS
42143@item ConditionalTracepoints
42144The remote stub accepts and implements conditional expressions defined
42145for tracepoints (@pxref{Tracepoint Conditions}).
42146
0d772ac9
MS
42147@item ReverseContinue
42148The remote stub accepts and implements the reverse continue packet
42149(@pxref{bc}).
42150
42151@item ReverseStep
42152The remote stub accepts and implements the reverse step packet
42153(@pxref{bs}).
42154
409873ef
SS
42155@item TracepointSource
42156The remote stub understands the @samp{QTDPsrc} packet that supplies
42157the source form of tracepoint definitions.
42158
d1feda86
YQ
42159@item QAgent
42160The remote stub understands the @samp{QAgent} packet.
42161
d914c394
SS
42162@item QAllow
42163The remote stub understands the @samp{QAllow} packet.
42164
03583c20
UW
42165@item QDisableRandomization
42166The remote stub understands the @samp{QDisableRandomization} packet.
42167
0fb4aa4b
PA
42168@item StaticTracepoint
42169@cindex static tracepoints, in remote protocol
42170The remote stub supports static tracepoints.
42171
1e4d1764
YQ
42172@item InstallInTrace
42173@anchor{install tracepoint in tracing}
42174The remote stub supports installing tracepoint in tracing.
42175
d248b706
KY
42176@item EnableDisableTracepoints
42177The remote stub supports the @samp{QTEnable} (@pxref{QTEnable}) and
42178@samp{QTDisable} (@pxref{QTDisable}) packets that allow tracepoints
42179to be enabled and disabled while a trace experiment is running.
42180
f6f899bf 42181@item QTBuffer:size
28abe188 42182The remote stub supports the @samp{QTBuffer:size} (@pxref{QTBuffer-size})
f6f899bf
HAQ
42183packet that allows to change the size of the trace buffer.
42184
3065dfb6
SS
42185@item tracenz
42186@cindex string tracing, in remote protocol
42187The remote stub supports the @samp{tracenz} bytecode for collecting strings.
42188See @ref{Bytecode Descriptions} for details about the bytecode.
42189
d3ce09f5
SS
42190@item BreakpointCommands
42191@cindex breakpoint commands, in remote protocol
42192The remote stub supports running a breakpoint's command list itself,
42193rather than reporting the hit to @value{GDBN}.
42194
2ae8c8e7
MM
42195@item Qbtrace:off
42196The remote stub understands the @samp{Qbtrace:off} packet.
42197
42198@item Qbtrace:bts
42199The remote stub understands the @samp{Qbtrace:bts} packet.
42200
b20a6524
MM
42201@item Qbtrace:pt
42202The remote stub understands the @samp{Qbtrace:pt} packet.
42203
d33501a5
MM
42204@item Qbtrace-conf:bts:size
42205The remote stub understands the @samp{Qbtrace-conf:bts:size} packet.
42206
b20a6524
MM
42207@item Qbtrace-conf:pt:size
42208The remote stub understands the @samp{Qbtrace-conf:pt:size} packet.
42209
f7e6eed5
PA
42210@item swbreak
42211The remote stub reports the @samp{swbreak} stop reason for memory
42212breakpoints.
42213
42214@item hwbreak
42215The remote stub reports the @samp{hwbreak} stop reason for hardware
42216breakpoints.
42217
0d71eef5
DB
42218@item fork-events
42219The remote stub reports the @samp{fork} stop reason for fork events.
42220
42221@item vfork-events
42222The remote stub reports the @samp{vfork} stop reason for vfork events
42223and vforkdone events.
42224
b459a59b
DB
42225@item exec-events
42226The remote stub reports the @samp{exec} stop reason for exec events.
42227
750ce8d1
YQ
42228@item vContSupported
42229The remote stub reports the supported actions in the reply to
42230@samp{vCont?} packet.
42231
65706a29
PA
42232@item QThreadEvents
42233The remote stub understands the @samp{QThreadEvents} packet.
42234
f2faf941
PA
42235@item no-resumed
42236The remote stub reports the @samp{N} stop reply.
42237
0f01515a
LM
42238
42239@item memory-tagging
42240The remote stub supports and implements the required memory tagging
42241functionality and understands the @samp{qMemTags} (@pxref{qMemTags}) and
42242@samp{QMemTags} (@pxref{QMemTags}) packets.
42243
42244For AArch64 GNU/Linux systems, this feature also requires access to the
42245@file{/proc/@var{pid}/smaps} file so memory mapping page flags can be inspected.
42246This is done via the @samp{vFile} requests.
42247
be2a5f71
DJ
42248@end table
42249
b8ff78ce 42250@item qSymbol::
ff2587ec 42251@cindex symbol lookup, remote request
b8ff78ce 42252@cindex @samp{qSymbol} packet
ff2587ec
WZ
42253Notify the target that @value{GDBN} is prepared to serve symbol lookup
42254requests. Accept requests from the target for the values of symbols.
fa93a9d8
JB
42255
42256Reply:
ff2587ec 42257@table @samp
b8ff78ce 42258@item OK
ff2587ec 42259The target does not need to look up any (more) symbols.
b8ff78ce 42260@item qSymbol:@var{sym_name}
ff2587ec
WZ
42261The target requests the value of symbol @var{sym_name} (hex encoded).
42262@value{GDBN} may provide the value by using the
b8ff78ce
JB
42263@samp{qSymbol:@var{sym_value}:@var{sym_name}} message, described
42264below.
ff2587ec 42265@end table
83761cbd 42266
b8ff78ce 42267@item qSymbol:@var{sym_value}:@var{sym_name}
ff2587ec
WZ
42268Set the value of @var{sym_name} to @var{sym_value}.
42269
42270@var{sym_name} (hex encoded) is the name of a symbol whose value the
42271target has previously requested.
42272
42273@var{sym_value} (hex) is the value for symbol @var{sym_name}. If
42274@value{GDBN} cannot supply a value for @var{sym_name}, then this field
42275will be empty.
42276
42277Reply:
42278@table @samp
b8ff78ce 42279@item OK
ff2587ec 42280The target does not need to look up any (more) symbols.
b8ff78ce 42281@item qSymbol:@var{sym_name}
ff2587ec
WZ
42282The target requests the value of a new symbol @var{sym_name} (hex
42283encoded). @value{GDBN} will continue to supply the values of symbols
42284(if available), until the target ceases to request them.
fa93a9d8 42285@end table
0abb7bc7 42286
00bf0b85 42287@item qTBuffer
687e43a4
TT
42288@itemx QTBuffer
42289@itemx QTDisconnected
d5551862 42290@itemx QTDP
409873ef 42291@itemx QTDPsrc
d5551862 42292@itemx QTDV
00bf0b85
SS
42293@itemx qTfP
42294@itemx qTfV
9d29849a 42295@itemx QTFrame
405f8e94
SS
42296@itemx qTMinFTPILen
42297
9d29849a
JB
42298@xref{Tracepoint Packets}.
42299
b90a069a 42300@item qThreadExtraInfo,@var{thread-id}
ff2587ec 42301@cindex thread attributes info, remote request
b8ff78ce 42302@cindex @samp{qThreadExtraInfo} packet
697aa1b7
EZ
42303Obtain from the target OS a printable string description of thread
42304attributes for the thread @var{thread-id}; see @ref{thread-id syntax},
42305for the forms of @var{thread-id}. This
b8ff78ce
JB
42306string may contain anything that the target OS thinks is interesting
42307for @value{GDBN} to tell the user about the thread. The string is
42308displayed in @value{GDBN}'s @code{info threads} display. Some
42309examples of possible thread extra info strings are @samp{Runnable}, or
42310@samp{Blocked on Mutex}.
ff2587ec
WZ
42311
42312Reply:
42313@table @samp
b8ff78ce
JB
42314@item @var{XX}@dots{}
42315Where @samp{@var{XX}@dots{}} is a hex encoding of @sc{ascii} data,
42316comprising the printable string containing the extra information about
42317the thread's attributes.
ff2587ec 42318@end table
814e32d7 42319
aa56d27a
JB
42320(Note that the @code{qThreadExtraInfo} packet's name is separated from
42321the command by a @samp{,}, not a @samp{:}, contrary to the naming
42322conventions above. Please don't use this packet as a model for new
42323packets.)
42324
f196051f 42325@item QTNotes
687e43a4
TT
42326@itemx qTP
42327@itemx QTSave
42328@itemx qTsP
42329@itemx qTsV
d5551862 42330@itemx QTStart
9d29849a 42331@itemx QTStop
d248b706
KY
42332@itemx QTEnable
42333@itemx QTDisable
9d29849a
JB
42334@itemx QTinit
42335@itemx QTro
42336@itemx qTStatus
d5551862 42337@itemx qTV
0fb4aa4b
PA
42338@itemx qTfSTM
42339@itemx qTsSTM
42340@itemx qTSTMat
9d29849a
JB
42341@xref{Tracepoint Packets}.
42342
0876f84a
DJ
42343@item qXfer:@var{object}:read:@var{annex}:@var{offset},@var{length}
42344@cindex read special object, remote request
42345@cindex @samp{qXfer} packet
68437a39 42346@anchor{qXfer read}
0876f84a
DJ
42347Read uninterpreted bytes from the target's special data area
42348identified by the keyword @var{object}. Request @var{length} bytes
42349starting at @var{offset} bytes into the data. The content and
0e7f50da 42350encoding of @var{annex} is specific to @var{object}; it can supply
0876f84a
DJ
42351additional details about what data to access.
42352
c185ba27
EZ
42353Reply:
42354@table @samp
42355@item m @var{data}
42356Data @var{data} (@pxref{Binary Data}) has been read from the
42357target. There may be more data at a higher address (although
42358it is permitted to return @samp{m} even for the last valid
42359block of data, as long as at least one byte of data was read).
42360It is possible for @var{data} to have fewer bytes than the @var{length} in the
42361request.
42362
42363@item l @var{data}
42364Data @var{data} (@pxref{Binary Data}) has been read from the target.
42365There is no more data to be read. It is possible for @var{data} to
42366have fewer bytes than the @var{length} in the request.
42367
42368@item l
42369The @var{offset} in the request is at the end of the data.
42370There is no more data to be read.
42371
42372@item E00
42373The request was malformed, or @var{annex} was invalid.
42374
42375@item E @var{nn}
42376The offset was invalid, or there was an error encountered reading the data.
42377The @var{nn} part is a hex-encoded @code{errno} value.
42378
42379@item @w{}
42380An empty reply indicates the @var{object} string was not recognized by
42381the stub, or that the object does not support reading.
42382@end table
42383
42384Here are the specific requests of this form defined so far. All the
0876f84a 42385@samp{qXfer:@var{object}:read:@dots{}} requests use the same reply
c185ba27 42386formats, listed above.
0876f84a
DJ
42387
42388@table @samp
42389@item qXfer:auxv:read::@var{offset},@var{length}
42390@anchor{qXfer auxiliary vector read}
42391Access the target's @dfn{auxiliary vector}. @xref{OS Information,
427c3a89 42392auxiliary vector}. Note @var{annex} must be empty.
0876f84a
DJ
42393
42394This packet is not probed by default; the remote stub must request it,
89be2091 42395by supplying an appropriate @samp{qSupported} response (@pxref{qSupported}).
0876f84a 42396
2ae8c8e7
MM
42397@item qXfer:btrace:read:@var{annex}:@var{offset},@var{length}
42398@anchor{qXfer btrace read}
42399
42400Return a description of the current branch trace.
42401@xref{Branch Trace Format}. The annex part of the generic @samp{qXfer}
42402packet may have one of the following values:
42403
42404@table @code
42405@item all
42406Returns all available branch trace.
42407
42408@item new
42409Returns all available branch trace if the branch trace changed since
42410the last read request.
969c39fb
MM
42411
42412@item delta
42413Returns the new branch trace since the last read request. Adds a new
42414block to the end of the trace that begins at zero and ends at the source
42415location of the first branch in the trace buffer. This extra block is
42416used to stitch traces together.
42417
42418If the trace buffer overflowed, returns an error indicating the overflow.
2ae8c8e7
MM
42419@end table
42420
42421This packet is not probed by default; the remote stub must request it
42422by supplying an appropriate @samp{qSupported} response (@pxref{qSupported}).
42423
f4abbc16
MM
42424@item qXfer:btrace-conf:read::@var{offset},@var{length}
42425@anchor{qXfer btrace-conf read}
42426
42427Return a description of the current branch trace configuration.
42428@xref{Branch Trace Configuration Format}.
42429
42430This packet is not probed by default; the remote stub must request it
42431by supplying an appropriate @samp{qSupported} response (@pxref{qSupported}).
c78fa86a
GB
42432
42433@item qXfer:exec-file:read:@var{annex}:@var{offset},@var{length}
42434@anchor{qXfer executable filename read}
42435Return the full absolute name of the file that was executed to create
42436a process running on the remote system. The annex specifies the
42437numeric process ID of the process to query, encoded as a hexadecimal
835205d0
GB
42438number. If the annex part is empty the remote stub should return the
42439filename corresponding to the currently executing process.
c78fa86a
GB
42440
42441This packet is not probed by default; the remote stub must request it,
42442by supplying an appropriate @samp{qSupported} response (@pxref{qSupported}).
f4abbc16 42443
23181151
DJ
42444@item qXfer:features:read:@var{annex}:@var{offset},@var{length}
42445@anchor{qXfer target description read}
42446Access the @dfn{target description}. @xref{Target Descriptions}. The
42447annex specifies which XML document to access. The main description is
42448always loaded from the @samp{target.xml} annex.
42449
42450This packet is not probed by default; the remote stub must request it,
42451by supplying an appropriate @samp{qSupported} response (@pxref{qSupported}).
42452
cfa9d6d9
DJ
42453@item qXfer:libraries:read:@var{annex}:@var{offset},@var{length}
42454@anchor{qXfer library list read}
42455Access the target's list of loaded libraries. @xref{Library List Format}.
42456The annex part of the generic @samp{qXfer} packet must be empty
42457(@pxref{qXfer read}).
42458
42459Targets which maintain a list of libraries in the program's memory do
42460not need to implement this packet; it is designed for platforms where
42461the operating system manages the list of loaded libraries.
42462
42463This packet is not probed by default; the remote stub must request it,
42464by supplying an appropriate @samp{qSupported} response (@pxref{qSupported}).
42465
2268b414
JK
42466@item qXfer:libraries-svr4:read:@var{annex}:@var{offset},@var{length}
42467@anchor{qXfer svr4 library list read}
42468Access the target's list of loaded libraries when the target is an SVR4
42469platform. @xref{Library List Format for SVR4 Targets}. The annex part
85dc5a12
GB
42470of the generic @samp{qXfer} packet must be empty unless the remote
42471stub indicated it supports the augmented form of this packet
42472by supplying an appropriate @samp{qSupported} response
42473(@pxref{qXfer read}, @ref{qSupported}).
2268b414
JK
42474
42475This packet is optional for better performance on SVR4 targets.
42476@value{GDBN} uses memory read packets to read the SVR4 library list otherwise.
42477
42478This packet is not probed by default; the remote stub must request it,
42479by supplying an appropriate @samp{qSupported} response (@pxref{qSupported}).
42480
85dc5a12
GB
42481If the remote stub indicates it supports the augmented form of this
42482packet then the annex part of the generic @samp{qXfer} packet may
42483contain a semicolon-separated list of @samp{@var{name}=@var{value}}
42484arguments. The currently supported arguments are:
42485
42486@table @code
42487@item start=@var{address}
42488A hexadecimal number specifying the address of the @samp{struct
42489link_map} to start reading the library list from. If unset or zero
42490then the first @samp{struct link_map} in the library list will be
42491chosen as the starting point.
42492
42493@item prev=@var{address}
42494A hexadecimal number specifying the address of the @samp{struct
42495link_map} immediately preceding the @samp{struct link_map}
42496specified by the @samp{start} argument. If unset or zero then
42497the remote stub will expect that no @samp{struct link_map}
42498exists prior to the starting point.
42499
42500@end table
42501
42502Arguments that are not understood by the remote stub will be silently
42503ignored.
42504
68437a39
DJ
42505@item qXfer:memory-map:read::@var{offset},@var{length}
42506@anchor{qXfer memory map read}
79a6e687 42507Access the target's @dfn{memory-map}. @xref{Memory Map Format}. The
68437a39
DJ
42508annex part of the generic @samp{qXfer} packet must be empty
42509(@pxref{qXfer read}).
42510
0e7f50da
UW
42511This packet is not probed by default; the remote stub must request it,
42512by supplying an appropriate @samp{qSupported} response (@pxref{qSupported}).
42513
0fb4aa4b
PA
42514@item qXfer:sdata:read::@var{offset},@var{length}
42515@anchor{qXfer sdata read}
42516
42517Read contents of the extra collected static tracepoint marker
42518information. The annex part of the generic @samp{qXfer} packet must
42519be empty (@pxref{qXfer read}). @xref{Tracepoint Actions,,Tracepoint
42520Action Lists}.
42521
42522This packet is not probed by default; the remote stub must request it,
42523by supplying an appropriate @samp{qSupported} response
42524(@pxref{qSupported}).
42525
4aa995e1
PA
42526@item qXfer:siginfo:read::@var{offset},@var{length}
42527@anchor{qXfer siginfo read}
42528Read contents of the extra signal information on the target
42529system. The annex part of the generic @samp{qXfer} packet must be
42530empty (@pxref{qXfer read}).
42531
42532This packet is not probed by default; the remote stub must request it,
42533by supplying an appropriate @samp{qSupported} response
42534(@pxref{qSupported}).
42535
dc146f7c
VP
42536@item qXfer:threads:read::@var{offset},@var{length}
42537@anchor{qXfer threads read}
42538Access the list of threads on target. @xref{Thread List Format}. The
42539annex part of the generic @samp{qXfer} packet must be empty
42540(@pxref{qXfer read}).
42541
42542This packet is not probed by default; the remote stub must request it,
42543by supplying an appropriate @samp{qSupported} response (@pxref{qSupported}).
42544
b3b9301e
PA
42545@item qXfer:traceframe-info:read::@var{offset},@var{length}
42546@anchor{qXfer traceframe info read}
42547
42548Return a description of the current traceframe's contents.
42549@xref{Traceframe Info Format}. The annex part of the generic
42550@samp{qXfer} packet must be empty (@pxref{qXfer read}).
42551
42552This packet is not probed by default; the remote stub must request it,
42553by supplying an appropriate @samp{qSupported} response (@pxref{qSupported}).
42554
169081d0
TG
42555@item qXfer:uib:read:@var{pc}:@var{offset},@var{length}
42556@anchor{qXfer unwind info block}
42557
42558Return the unwind information block for @var{pc}. This packet is used
42559on OpenVMS/ia64 to ask the kernel unwind information.
42560
42561This packet is not probed by default.
42562
78d85199
YQ
42563@item qXfer:fdpic:read:@var{annex}:@var{offset},@var{length}
42564@anchor{qXfer fdpic loadmap read}
42565Read contents of @code{loadmap}s on the target system. The
42566annex, either @samp{exec} or @samp{interp}, specifies which @code{loadmap},
42567executable @code{loadmap} or interpreter @code{loadmap} to read.
42568
42569This packet is not probed by default; the remote stub must request it,
42570by supplying an appropriate @samp{qSupported} response (@pxref{qSupported}).
42571
07e059b5
VP
42572@item qXfer:osdata:read::@var{offset},@var{length}
42573@anchor{qXfer osdata read}
697aa1b7 42574Access the target's @dfn{operating system information}.
07e059b5
VP
42575@xref{Operating System Information}.
42576
68437a39
DJ
42577@end table
42578
c185ba27
EZ
42579@item qXfer:@var{object}:write:@var{annex}:@var{offset}:@var{data}@dots{}
42580@cindex write data into object, remote request
42581@anchor{qXfer write}
42582Write uninterpreted bytes into the target's special data area
42583identified by the keyword @var{object}, starting at @var{offset} bytes
42584into the data. The binary-encoded data (@pxref{Binary Data}) to be
42585written is given by @var{data}@dots{}. The content and encoding of @var{annex}
42586is specific to @var{object}; it can supply additional details about what data
42587to access.
42588
0876f84a
DJ
42589Reply:
42590@table @samp
c185ba27
EZ
42591@item @var{nn}
42592@var{nn} (hex encoded) is the number of bytes written.
42593This may be fewer bytes than supplied in the request.
0876f84a
DJ
42594
42595@item E00
42596The request was malformed, or @var{annex} was invalid.
42597
42598@item E @var{nn}
c185ba27 42599The offset was invalid, or there was an error encountered writing the data.
697aa1b7 42600The @var{nn} part is a hex-encoded @code{errno} value.
0876f84a 42601
d57350ea 42602@item @w{}
c185ba27
EZ
42603An empty reply indicates the @var{object} string was not
42604recognized by the stub, or that the object does not support writing.
0876f84a
DJ
42605@end table
42606
c185ba27 42607Here are the specific requests of this form defined so far. All the
0e7f50da 42608@samp{qXfer:@var{object}:write:@dots{}} requests use the same reply
c185ba27 42609formats, listed above.
0e7f50da
UW
42610
42611@table @samp
4aa995e1
PA
42612@item qXfer:siginfo:write::@var{offset}:@var{data}@dots{}
42613@anchor{qXfer siginfo write}
42614Write @var{data} to the extra signal information on the target system.
42615The annex part of the generic @samp{qXfer} packet must be
42616empty (@pxref{qXfer write}).
42617
42618This packet is not probed by default; the remote stub must request it,
42619by supplying an appropriate @samp{qSupported} response
42620(@pxref{qSupported}).
0e7f50da 42621@end table
0876f84a 42622
0876f84a
DJ
42623@item qXfer:@var{object}:@var{operation}:@dots{}
42624Requests of this form may be added in the future. When a stub does
42625not recognize the @var{object} keyword, or its support for
42626@var{object} does not recognize the @var{operation} keyword, the stub
42627must respond with an empty packet.
42628
0b16c5cf
PA
42629@item qAttached:@var{pid}
42630@cindex query attached, remote request
42631@cindex @samp{qAttached} packet
42632Return an indication of whether the remote server attached to an
42633existing process or created a new process. When the multiprocess
42634protocol extensions are supported (@pxref{multiprocess extensions}),
42635@var{pid} is an integer in hexadecimal format identifying the target
42636process. Otherwise, @value{GDBN} will omit the @var{pid} field and
42637the query packet will be simplified as @samp{qAttached}.
42638
42639This query is used, for example, to know whether the remote process
42640should be detached or killed when a @value{GDBN} session is ended with
42641the @code{quit} command.
42642
42643Reply:
42644@table @samp
42645@item 1
42646The remote server attached to an existing process.
42647@item 0
42648The remote server created a new process.
42649@item E @var{NN}
42650A badly formed request or an error was encountered.
42651@end table
42652
2ae8c8e7 42653@item Qbtrace:bts
b20a6524
MM
42654Enable branch tracing for the current thread using Branch Trace Store.
42655
42656Reply:
42657@table @samp
42658@item OK
42659Branch tracing has been enabled.
42660@item E.errtext
42661A badly formed request or an error was encountered.
42662@end table
42663
42664@item Qbtrace:pt
bc504a31 42665Enable branch tracing for the current thread using Intel Processor Trace.
2ae8c8e7
MM
42666
42667Reply:
42668@table @samp
42669@item OK
42670Branch tracing has been enabled.
42671@item E.errtext
42672A badly formed request or an error was encountered.
42673@end table
42674
42675@item Qbtrace:off
42676Disable branch tracing for the current thread.
42677
42678Reply:
42679@table @samp
42680@item OK
42681Branch tracing has been disabled.
42682@item E.errtext
42683A badly formed request or an error was encountered.
42684@end table
42685
d33501a5
MM
42686@item Qbtrace-conf:bts:size=@var{value}
42687Set the requested ring buffer size for new threads that use the
42688btrace recording method in bts format.
42689
42690Reply:
42691@table @samp
42692@item OK
42693The ring buffer size has been set.
42694@item E.errtext
42695A badly formed request or an error was encountered.
42696@end table
42697
b20a6524
MM
42698@item Qbtrace-conf:pt:size=@var{value}
42699Set the requested ring buffer size for new threads that use the
42700btrace recording method in pt format.
42701
42702Reply:
42703@table @samp
42704@item OK
42705The ring buffer size has been set.
42706@item E.errtext
42707A badly formed request or an error was encountered.
42708@end table
42709
ee2d5c50
AC
42710@end table
42711
a1dcb23a
DJ
42712@node Architecture-Specific Protocol Details
42713@section Architecture-Specific Protocol Details
42714
42715This section describes how the remote protocol is applied to specific
42716target architectures. Also see @ref{Standard Target Features}, for
42717details of XML target descriptions for each architecture.
42718
02b67415
MR
42719@menu
42720* ARM-Specific Protocol Details::
42721* MIPS-Specific Protocol Details::
42722@end menu
42723
42724@node ARM-Specific Protocol Details
42725@subsection @acronym{ARM}-specific Protocol Details
42726
42727@menu
42728* ARM Breakpoint Kinds::
0f01515a 42729* ARM Memory Tag Types::
02b67415 42730@end menu
a1dcb23a 42731
02b67415
MR
42732@node ARM Breakpoint Kinds
42733@subsubsection @acronym{ARM} Breakpoint Kinds
42734@cindex breakpoint kinds, @acronym{ARM}
a1dcb23a
DJ
42735
42736These breakpoint kinds are defined for the @samp{Z0} and @samp{Z1} packets.
42737
42738@table @r
42739
42740@item 2
4274116-bit Thumb mode breakpoint.
42742
42743@item 3
4274432-bit Thumb mode (Thumb-2) breakpoint.
42745
42746@item 4
02b67415 4274732-bit @acronym{ARM} mode breakpoint.
a1dcb23a
DJ
42748
42749@end table
42750
0f01515a
LM
42751@node ARM Memory Tag Types
42752@subsubsection @acronym{ARM} Memory Tag Types
42753@cindex memory tag types, @acronym{ARM}
42754
42755These memory tag types are defined for the @samp{qMemTag} and @samp{QMemTag}
42756packets.
42757
42758@table @r
42759
42760@item 0
42761MTE logical tag
42762
42763@item 1
42764MTE allocation tag
42765
42766@end table
42767
02b67415
MR
42768@node MIPS-Specific Protocol Details
42769@subsection @acronym{MIPS}-specific Protocol Details
42770
42771@menu
42772* MIPS Register packet Format::
4cc0665f 42773* MIPS Breakpoint Kinds::
02b67415 42774@end menu
a1dcb23a 42775
02b67415
MR
42776@node MIPS Register packet Format
42777@subsubsection @acronym{MIPS} Register Packet Format
eb17f351 42778@cindex register packet format, @acronym{MIPS}
eb12ee30 42779
b8ff78ce 42780The following @code{g}/@code{G} packets have previously been defined.
ee2d5c50
AC
42781In the below, some thirty-two bit registers are transferred as
42782sixty-four bits. Those registers should be zero/sign extended (which?)
599b237a
BW
42783to fill the space allocated. Register bytes are transferred in target
42784byte order. The two nibbles within a register byte are transferred
02b67415 42785most-significant -- least-significant.
eb12ee30 42786
ee2d5c50 42787@table @r
eb12ee30 42788
8e04817f 42789@item MIPS32
599b237a 42790All registers are transferred as thirty-two bit quantities in the order:
8e04817f
AC
4279132 general-purpose; sr; lo; hi; bad; cause; pc; 32 floating-point
42792registers; fsr; fir; fp.
eb12ee30 42793
8e04817f 42794@item MIPS64
599b237a 42795All registers are transferred as sixty-four bit quantities (including
8e04817f
AC
42796thirty-two bit registers such as @code{sr}). The ordering is the same
42797as @code{MIPS32}.
eb12ee30 42798
ee2d5c50
AC
42799@end table
42800
4cc0665f
MR
42801@node MIPS Breakpoint Kinds
42802@subsubsection @acronym{MIPS} Breakpoint Kinds
42803@cindex breakpoint kinds, @acronym{MIPS}
42804
42805These breakpoint kinds are defined for the @samp{Z0} and @samp{Z1} packets.
42806
42807@table @r
42808
42809@item 2
4281016-bit @acronym{MIPS16} mode breakpoint.
42811
42812@item 3
4281316-bit @acronym{microMIPS} mode breakpoint.
42814
42815@item 4
4281632-bit standard @acronym{MIPS} mode breakpoint.
42817
42818@item 5
4281932-bit @acronym{microMIPS} mode breakpoint.
42820
42821@end table
42822
9d29849a
JB
42823@node Tracepoint Packets
42824@section Tracepoint Packets
42825@cindex tracepoint packets
42826@cindex packets, tracepoint
42827
42828Here we describe the packets @value{GDBN} uses to implement
42829tracepoints (@pxref{Tracepoints}).
42830
42831@table @samp
42832
7a697b8d 42833@item QTDP:@var{n}:@var{addr}:@var{ena}:@var{step}:@var{pass}[:F@var{flen}][:X@var{len},@var{bytes}]@r{[}-@r{]}
c614397c 42834@cindex @samp{QTDP} packet
9d29849a
JB
42835Create a new tracepoint, number @var{n}, at @var{addr}. If @var{ena}
42836is @samp{E}, then the tracepoint is enabled; if it is @samp{D}, then
697aa1b7
EZ
42837the tracepoint is disabled. The @var{step} gives the tracepoint's step
42838count, and @var{pass} gives its pass count. If an @samp{F} is present,
7a697b8d
SS
42839then the tracepoint is to be a fast tracepoint, and the @var{flen} is
42840the number of bytes that the target should copy elsewhere to make room
42841for the tracepoint. If an @samp{X} is present, it introduces a
42842tracepoint condition, which consists of a hexadecimal length, followed
42843by a comma and hex-encoded bytes, in a manner similar to action
42844encodings as described below. If the trailing @samp{-} is present,
42845further @samp{QTDP} packets will follow to specify this tracepoint's
42846actions.
9d29849a
JB
42847
42848Replies:
42849@table @samp
42850@item OK
42851The packet was understood and carried out.
dde08ee1
PA
42852@item qRelocInsn
42853@xref{Tracepoint Packets,,Relocate instruction reply packet}.
d57350ea 42854@item @w{}
9d29849a
JB
42855The packet was not recognized.
42856@end table
42857
42858@item QTDP:-@var{n}:@var{addr}:@r{[}S@r{]}@var{action}@dots{}@r{[}-@r{]}
697aa1b7 42859Define actions to be taken when a tracepoint is hit. The @var{n} and
9d29849a
JB
42860@var{addr} must be the same as in the initial @samp{QTDP} packet for
42861this tracepoint. This packet may only be sent immediately after
42862another @samp{QTDP} packet that ended with a @samp{-}. If the
42863trailing @samp{-} is present, further @samp{QTDP} packets will follow,
42864specifying more actions for this tracepoint.
42865
42866In the series of action packets for a given tracepoint, at most one
42867can have an @samp{S} before its first @var{action}. If such a packet
42868is sent, it and the following packets define ``while-stepping''
42869actions. Any prior packets define ordinary actions --- that is, those
42870taken when the tracepoint is first hit. If no action packet has an
42871@samp{S}, then all the packets in the series specify ordinary
42872tracepoint actions.
42873
42874The @samp{@var{action}@dots{}} portion of the packet is a series of
42875actions, concatenated without separators. Each action has one of the
42876following forms:
42877
42878@table @samp
42879
42880@item R @var{mask}
697aa1b7 42881Collect the registers whose bits are set in @var{mask},
599b237a 42882a hexadecimal number whose @var{i}'th bit is set if register number
9d29849a
JB
42883@var{i} should be collected. (The least significant bit is numbered
42884zero.) Note that @var{mask} may be any number of digits long; it may
42885not fit in a 32-bit word.
42886
42887@item M @var{basereg},@var{offset},@var{len}
42888Collect @var{len} bytes of memory starting at the address in register
42889number @var{basereg}, plus @var{offset}. If @var{basereg} is
42890@samp{-1}, then the range has a fixed address: @var{offset} is the
42891address of the lowest byte to collect. The @var{basereg},
599b237a 42892@var{offset}, and @var{len} parameters are all unsigned hexadecimal
9d29849a
JB
42893values (the @samp{-1} value for @var{basereg} is a special case).
42894
42895@item X @var{len},@var{expr}
42896Evaluate @var{expr}, whose length is @var{len}, and collect memory as
697aa1b7 42897it directs. The agent expression @var{expr} is as described in
9d29849a
JB
42898@ref{Agent Expressions}. Each byte of the expression is encoded as a
42899two-digit hex number in the packet; @var{len} is the number of bytes
42900in the expression (and thus one-half the number of hex digits in the
42901packet).
42902
42903@end table
42904
42905Any number of actions may be packed together in a single @samp{QTDP}
42906packet, as long as the packet does not exceed the maximum packet
c1947b85
JB
42907length (400 bytes, for many stubs). There may be only one @samp{R}
42908action per tracepoint, and it must precede any @samp{M} or @samp{X}
42909actions. Any registers referred to by @samp{M} and @samp{X} actions
42910must be collected by a preceding @samp{R} action. (The
42911``while-stepping'' actions are treated as if they were attached to a
42912separate tracepoint, as far as these restrictions are concerned.)
9d29849a
JB
42913
42914Replies:
42915@table @samp
42916@item OK
42917The packet was understood and carried out.
dde08ee1
PA
42918@item qRelocInsn
42919@xref{Tracepoint Packets,,Relocate instruction reply packet}.
d57350ea 42920@item @w{}
9d29849a
JB
42921The packet was not recognized.
42922@end table
42923
409873ef
SS
42924@item QTDPsrc:@var{n}:@var{addr}:@var{type}:@var{start}:@var{slen}:@var{bytes}
42925@cindex @samp{QTDPsrc} packet
42926Specify a source string of tracepoint @var{n} at address @var{addr}.
42927This is useful to get accurate reproduction of the tracepoints
697aa1b7 42928originally downloaded at the beginning of the trace run. The @var{type}
409873ef
SS
42929is the name of the tracepoint part, such as @samp{cond} for the
42930tracepoint's conditional expression (see below for a list of types), while
42931@var{bytes} is the string, encoded in hexadecimal.
42932
42933@var{start} is the offset of the @var{bytes} within the overall source
42934string, while @var{slen} is the total length of the source string.
42935This is intended for handling source strings that are longer than will
42936fit in a single packet.
42937@c Add detailed example when this info is moved into a dedicated
42938@c tracepoint descriptions section.
42939
42940The available string types are @samp{at} for the location,
42941@samp{cond} for the conditional, and @samp{cmd} for an action command.
42942@value{GDBN} sends a separate packet for each command in the action
42943list, in the same order in which the commands are stored in the list.
42944
42945The target does not need to do anything with source strings except
42946report them back as part of the replies to the @samp{qTfP}/@samp{qTsP}
42947query packets.
42948
42949Although this packet is optional, and @value{GDBN} will only send it
42950if the target replies with @samp{TracepointSource} @xref{General
42951Query Packets}, it makes both disconnected tracing and trace files
42952much easier to use. Otherwise the user must be careful that the
42953tracepoints in effect while looking at trace frames are identical to
42954the ones in effect during the trace run; even a small discrepancy
42955could cause @samp{tdump} not to work, or a particular trace frame not
42956be found.
42957
fa3f8d5a 42958@item QTDV:@var{n}:@var{value}:@var{builtin}:@var{name}
f61e138d
SS
42959@cindex define trace state variable, remote request
42960@cindex @samp{QTDV} packet
42961Create a new trace state variable, number @var{n}, with an initial
42962value of @var{value}, which is a 64-bit signed integer. Both @var{n}
42963and @var{value} are encoded as hexadecimal values. @value{GDBN} has
42964the option of not using this packet for initial values of zero; the
42965target should simply create the trace state variables as they are
fa3f8d5a
DT
42966mentioned in expressions. The value @var{builtin} should be 1 (one)
42967if the trace state variable is builtin and 0 (zero) if it is not builtin.
42968@value{GDBN} only sets @var{builtin} to 1 if a previous @samp{qTfV} or
42969@samp{qTsV} packet had it set. The contents of @var{name} is the
42970hex-encoded name (without the leading @samp{$}) of the trace state
42971variable.
f61e138d 42972
9d29849a 42973@item QTFrame:@var{n}
c614397c 42974@cindex @samp{QTFrame} packet
9d29849a
JB
42975Select the @var{n}'th tracepoint frame from the buffer, and use the
42976register and memory contents recorded there to answer subsequent
42977request packets from @value{GDBN}.
42978
42979A successful reply from the stub indicates that the stub has found the
42980requested frame. The response is a series of parts, concatenated
42981without separators, describing the frame we selected. Each part has
42982one of the following forms:
42983
42984@table @samp
42985@item F @var{f}
42986The selected frame is number @var{n} in the trace frame buffer;
599b237a 42987@var{f} is a hexadecimal number. If @var{f} is @samp{-1}, then there
9d29849a
JB
42988was no frame matching the criteria in the request packet.
42989
42990@item T @var{t}
42991The selected trace frame records a hit of tracepoint number @var{t};
599b237a 42992@var{t} is a hexadecimal number.
9d29849a
JB
42993
42994@end table
42995
42996@item QTFrame:pc:@var{addr}
42997Like @samp{QTFrame:@var{n}}, but select the first tracepoint frame after the
42998currently selected frame whose PC is @var{addr};
599b237a 42999@var{addr} is a hexadecimal number.
9d29849a
JB
43000
43001@item QTFrame:tdp:@var{t}
43002Like @samp{QTFrame:@var{n}}, but select the first tracepoint frame after the
43003currently selected frame that is a hit of tracepoint @var{t}; @var{t}
599b237a 43004is a hexadecimal number.
9d29849a
JB
43005
43006@item QTFrame:range:@var{start}:@var{end}
43007Like @samp{QTFrame:@var{n}}, but select the first tracepoint frame after the
43008currently selected frame whose PC is between @var{start} (inclusive)
081dfbf7 43009and @var{end} (inclusive); @var{start} and @var{end} are hexadecimal
9d29849a
JB
43010numbers.
43011
43012@item QTFrame:outside:@var{start}:@var{end}
43013Like @samp{QTFrame:range:@var{start}:@var{end}}, but select the first
081dfbf7 43014frame @emph{outside} the given range of addresses (exclusive).
9d29849a 43015
405f8e94 43016@item qTMinFTPILen
c614397c 43017@cindex @samp{qTMinFTPILen} packet
405f8e94
SS
43018This packet requests the minimum length of instruction at which a fast
43019tracepoint (@pxref{Set Tracepoints}) may be placed. For instance, on
43020the 32-bit x86 architecture, it is possible to use a 4-byte jump, but
43021it depends on the target system being able to create trampolines in
43022the first 64K of memory, which might or might not be possible for that
43023system. So the reply to this packet will be 4 if it is able to
43024arrange for that.
43025
43026Replies:
43027
43028@table @samp
43029@item 0
43030The minimum instruction length is currently unknown.
43031@item @var{length}
697aa1b7
EZ
43032The minimum instruction length is @var{length}, where @var{length}
43033is a hexadecimal number greater or equal to 1. A reply
43034of 1 means that a fast tracepoint may be placed on any instruction
43035regardless of size.
405f8e94
SS
43036@item E
43037An error has occurred.
d57350ea 43038@item @w{}
405f8e94
SS
43039An empty reply indicates that the request is not supported by the stub.
43040@end table
43041
9d29849a 43042@item QTStart
c614397c 43043@cindex @samp{QTStart} packet
dde08ee1
PA
43044Begin the tracepoint experiment. Begin collecting data from
43045tracepoint hits in the trace frame buffer. This packet supports the
43046@samp{qRelocInsn} reply (@pxref{Tracepoint Packets,,Relocate
43047instruction reply packet}).
9d29849a
JB
43048
43049@item QTStop
c614397c 43050@cindex @samp{QTStop} packet
9d29849a
JB
43051End the tracepoint experiment. Stop collecting trace frames.
43052
d248b706
KY
43053@item QTEnable:@var{n}:@var{addr}
43054@anchor{QTEnable}
c614397c 43055@cindex @samp{QTEnable} packet
d248b706
KY
43056Enable tracepoint @var{n} at address @var{addr} in a started tracepoint
43057experiment. If the tracepoint was previously disabled, then collection
43058of data from it will resume.
43059
43060@item QTDisable:@var{n}:@var{addr}
43061@anchor{QTDisable}
c614397c 43062@cindex @samp{QTDisable} packet
d248b706
KY
43063Disable tracepoint @var{n} at address @var{addr} in a started tracepoint
43064experiment. No more data will be collected from the tracepoint unless
43065@samp{QTEnable:@var{n}:@var{addr}} is subsequently issued.
43066
9d29849a 43067@item QTinit
c614397c 43068@cindex @samp{QTinit} packet
9d29849a
JB
43069Clear the table of tracepoints, and empty the trace frame buffer.
43070
43071@item QTro:@var{start1},@var{end1}:@var{start2},@var{end2}:@dots{}
c614397c 43072@cindex @samp{QTro} packet
9d29849a
JB
43073Establish the given ranges of memory as ``transparent''. The stub
43074will answer requests for these ranges from memory's current contents,
43075if they were not collected as part of the tracepoint hit.
43076
43077@value{GDBN} uses this to mark read-only regions of memory, like those
43078containing program code. Since these areas never change, they should
43079still have the same contents they did when the tracepoint was hit, so
43080there's no reason for the stub to refuse to provide their contents.
43081
d5551862 43082@item QTDisconnected:@var{value}
c614397c 43083@cindex @samp{QTDisconnected} packet
d5551862
SS
43084Set the choice to what to do with the tracing run when @value{GDBN}
43085disconnects from the target. A @var{value} of 1 directs the target to
43086continue the tracing run, while 0 tells the target to stop tracing if
43087@value{GDBN} is no longer in the picture.
43088
9d29849a 43089@item qTStatus
c614397c 43090@cindex @samp{qTStatus} packet
9d29849a
JB
43091Ask the stub if there is a trace experiment running right now.
43092
4daf5ac0
SS
43093The reply has the form:
43094
43095@table @samp
43096
43097@item T@var{running}@r{[};@var{field}@r{]}@dots{}
43098@var{running} is a single digit @code{1} if the trace is presently
43099running, or @code{0} if not. It is followed by semicolon-separated
43100optional fields that an agent may use to report additional status.
43101
43102@end table
43103
43104If the trace is not running, the agent may report any of several
43105explanations as one of the optional fields:
43106
43107@table @samp
43108
43109@item tnotrun:0
43110No trace has been run yet.
43111
f196051f
SS
43112@item tstop[:@var{text}]:0
43113The trace was stopped by a user-originated stop command. The optional
43114@var{text} field is a user-supplied string supplied as part of the
43115stop command (for instance, an explanation of why the trace was
43116stopped manually). It is hex-encoded.
4daf5ac0
SS
43117
43118@item tfull:0
43119The trace stopped because the trace buffer filled up.
43120
43121@item tdisconnected:0
43122The trace stopped because @value{GDBN} disconnected from the target.
43123
43124@item tpasscount:@var{tpnum}
43125The trace stopped because tracepoint @var{tpnum} exceeded its pass count.
43126
6c28cbf2
SS
43127@item terror:@var{text}:@var{tpnum}
43128The trace stopped because tracepoint @var{tpnum} had an error. The
43129string @var{text} is available to describe the nature of the error
697aa1b7
EZ
43130(for instance, a divide by zero in the condition expression); it
43131is hex encoded.
6c28cbf2 43132
4daf5ac0
SS
43133@item tunknown:0
43134The trace stopped for some other reason.
43135
43136@end table
43137
33da3f1c
SS
43138Additional optional fields supply statistical and other information.
43139Although not required, they are extremely useful for users monitoring
43140the progress of a trace run. If a trace has stopped, and these
43141numbers are reported, they must reflect the state of the just-stopped
43142trace.
4daf5ac0 43143
9d29849a 43144@table @samp
4daf5ac0
SS
43145
43146@item tframes:@var{n}
43147The number of trace frames in the buffer.
43148
43149@item tcreated:@var{n}
43150The total number of trace frames created during the run. This may
43151be larger than the trace frame count, if the buffer is circular.
43152
43153@item tsize:@var{n}
43154The total size of the trace buffer, in bytes.
43155
43156@item tfree:@var{n}
43157The number of bytes still unused in the buffer.
43158
33da3f1c
SS
43159@item circular:@var{n}
43160The value of the circular trace buffer flag. @code{1} means that the
43161trace buffer is circular and old trace frames will be discarded if
43162necessary to make room, @code{0} means that the trace buffer is linear
43163and may fill up.
43164
43165@item disconn:@var{n}
43166The value of the disconnected tracing flag. @code{1} means that
43167tracing will continue after @value{GDBN} disconnects, @code{0} means
43168that the trace run will stop.
43169
9d29849a
JB
43170@end table
43171
f196051f
SS
43172@item qTP:@var{tp}:@var{addr}
43173@cindex tracepoint status, remote request
43174@cindex @samp{qTP} packet
43175Ask the stub for the current state of tracepoint number @var{tp} at
43176address @var{addr}.
43177
43178Replies:
43179@table @samp
43180@item V@var{hits}:@var{usage}
43181The tracepoint has been hit @var{hits} times so far during the trace
43182run, and accounts for @var{usage} in the trace buffer. Note that
43183@code{while-stepping} steps are not counted as separate hits, but the
43184steps' space consumption is added into the usage number.
43185
43186@end table
43187
f61e138d
SS
43188@item qTV:@var{var}
43189@cindex trace state variable value, remote request
43190@cindex @samp{qTV} packet
43191Ask the stub for the value of the trace state variable number @var{var}.
43192
43193Replies:
43194@table @samp
43195@item V@var{value}
43196The value of the variable is @var{value}. This will be the current
43197value of the variable if the user is examining a running target, or a
43198saved value if the variable was collected in the trace frame that the
43199user is looking at. Note that multiple requests may result in
43200different reply values, such as when requesting values while the
43201program is running.
43202
43203@item U
43204The value of the variable is unknown. This would occur, for example,
43205if the user is examining a trace frame in which the requested variable
43206was not collected.
9d29849a
JB
43207@end table
43208
d5551862 43209@item qTfP
c614397c 43210@cindex @samp{qTfP} packet
d5551862 43211@itemx qTsP
c614397c 43212@cindex @samp{qTsP} packet
d5551862
SS
43213These packets request data about tracepoints that are being used by
43214the target. @value{GDBN} sends @code{qTfP} to get the first piece
43215of data, and multiple @code{qTsP} to get additional pieces. Replies
43216to these packets generally take the form of the @code{QTDP} packets
43217that define tracepoints. (FIXME add detailed syntax)
43218
00bf0b85 43219@item qTfV
c614397c 43220@cindex @samp{qTfV} packet
00bf0b85 43221@itemx qTsV
c614397c 43222@cindex @samp{qTsV} packet
00bf0b85
SS
43223These packets request data about trace state variables that are on the
43224target. @value{GDBN} sends @code{qTfV} to get the first vari of data,
43225and multiple @code{qTsV} to get additional variables. Replies to
43226these packets follow the syntax of the @code{QTDV} packets that define
43227trace state variables.
43228
0fb4aa4b
PA
43229@item qTfSTM
43230@itemx qTsSTM
16bdd41f
YQ
43231@anchor{qTfSTM}
43232@anchor{qTsSTM}
c614397c
YQ
43233@cindex @samp{qTfSTM} packet
43234@cindex @samp{qTsSTM} packet
0fb4aa4b
PA
43235These packets request data about static tracepoint markers that exist
43236in the target program. @value{GDBN} sends @code{qTfSTM} to get the
43237first piece of data, and multiple @code{qTsSTM} to get additional
43238pieces. Replies to these packets take the following form:
43239
43240Reply:
43241@table @samp
43242@item m @var{address}:@var{id}:@var{extra}
43243A single marker
43244@item m @var{address}:@var{id}:@var{extra},@var{address}:@var{id}:@var{extra}@dots{}
43245a comma-separated list of markers
43246@item l
43247(lower case letter @samp{L}) denotes end of list.
43248@item E @var{nn}
697aa1b7 43249An error occurred. The error number @var{nn} is given as hex digits.
d57350ea 43250@item @w{}
0fb4aa4b
PA
43251An empty reply indicates that the request is not supported by the
43252stub.
43253@end table
43254
697aa1b7 43255The @var{address} is encoded in hex;
0fb4aa4b
PA
43256@var{id} and @var{extra} are strings encoded in hex.
43257
43258In response to each query, the target will reply with a list of one or
43259more markers, separated by commas. @value{GDBN} will respond to each
43260reply with a request for more markers (using the @samp{qs} form of the
43261query), until the target responds with @samp{l} (lower-case ell, for
43262@dfn{last}).
43263
43264@item qTSTMat:@var{address}
16bdd41f 43265@anchor{qTSTMat}
c614397c 43266@cindex @samp{qTSTMat} packet
0fb4aa4b
PA
43267This packets requests data about static tracepoint markers in the
43268target program at @var{address}. Replies to this packet follow the
43269syntax of the @samp{qTfSTM} and @code{qTsSTM} packets that list static
43270tracepoint markers.
43271
00bf0b85 43272@item QTSave:@var{filename}
c614397c 43273@cindex @samp{QTSave} packet
00bf0b85 43274This packet directs the target to save trace data to the file name
697aa1b7 43275@var{filename} in the target's filesystem. The @var{filename} is encoded
00bf0b85
SS
43276as a hex string; the interpretation of the file name (relative vs
43277absolute, wild cards, etc) is up to the target.
43278
43279@item qTBuffer:@var{offset},@var{len}
c614397c 43280@cindex @samp{qTBuffer} packet
00bf0b85
SS
43281Return up to @var{len} bytes of the current contents of trace buffer,
43282starting at @var{offset}. The trace buffer is treated as if it were
43283a contiguous collection of traceframes, as per the trace file format.
43284The reply consists as many hex-encoded bytes as the target can deliver
43285in a packet; it is not an error to return fewer than were asked for.
43286A reply consisting of just @code{l} indicates that no bytes are
43287available.
43288
4daf5ac0
SS
43289@item QTBuffer:circular:@var{value}
43290This packet directs the target to use a circular trace buffer if
43291@var{value} is 1, or a linear buffer if the value is 0.
43292
f6f899bf 43293@item QTBuffer:size:@var{size}
28abe188
EZ
43294@anchor{QTBuffer-size}
43295@cindex @samp{QTBuffer size} packet
f6f899bf
HAQ
43296This packet directs the target to make the trace buffer be of size
43297@var{size} if possible. A value of @code{-1} tells the target to
43298use whatever size it prefers.
43299
f196051f 43300@item QTNotes:@r{[}@var{type}:@var{text}@r{]}@r{[};@var{type}:@var{text}@r{]}@dots{}
c614397c 43301@cindex @samp{QTNotes} packet
f196051f
SS
43302This packet adds optional textual notes to the trace run. Allowable
43303types include @code{user}, @code{notes}, and @code{tstop}, the
43304@var{text} fields are arbitrary strings, hex-encoded.
43305
f61e138d 43306@end table
9d29849a 43307
dde08ee1
PA
43308@subsection Relocate instruction reply packet
43309When installing fast tracepoints in memory, the target may need to
43310relocate the instruction currently at the tracepoint address to a
43311different address in memory. For most instructions, a simple copy is
43312enough, but, for example, call instructions that implicitly push the
43313return address on the stack, and relative branches or other
43314PC-relative instructions require offset adjustment, so that the effect
43315of executing the instruction at a different address is the same as if
43316it had executed in the original location.
43317
43318In response to several of the tracepoint packets, the target may also
43319respond with a number of intermediate @samp{qRelocInsn} request
43320packets before the final result packet, to have @value{GDBN} handle
43321this relocation operation. If a packet supports this mechanism, its
43322documentation will explicitly say so. See for example the above
43323descriptions for the @samp{QTStart} and @samp{QTDP} packets. The
43324format of the request is:
43325
43326@table @samp
43327@item qRelocInsn:@var{from};@var{to}
43328
43329This requests @value{GDBN} to copy instruction at address @var{from}
43330to address @var{to}, possibly adjusted so that executing the
43331instruction at @var{to} has the same effect as executing it at
43332@var{from}. @value{GDBN} writes the adjusted instruction to target
43333memory starting at @var{to}.
43334@end table
43335
43336Replies:
43337@table @samp
43338@item qRelocInsn:@var{adjusted_size}
697aa1b7 43339Informs the stub the relocation is complete. The @var{adjusted_size} is
dde08ee1
PA
43340the length in bytes of resulting relocated instruction sequence.
43341@item E @var{NN}
43342A badly formed request was detected, or an error was encountered while
43343relocating the instruction.
43344@end table
43345
a6b151f1
DJ
43346@node Host I/O Packets
43347@section Host I/O Packets
43348@cindex Host I/O, remote protocol
43349@cindex file transfer, remote protocol
43350
43351The @dfn{Host I/O} packets allow @value{GDBN} to perform I/O
43352operations on the far side of a remote link. For example, Host I/O is
43353used to upload and download files to a remote target with its own
43354filesystem. Host I/O uses the same constant values and data structure
43355layout as the target-initiated File-I/O protocol. However, the
43356Host I/O packets are structured differently. The target-initiated
43357protocol relies on target memory to store parameters and buffers.
43358Host I/O requests are initiated by @value{GDBN}, and the
43359target's memory is not involved. @xref{File-I/O Remote Protocol
43360Extension}, for more details on the target-initiated protocol.
43361
43362The Host I/O request packets all encode a single operation along with
43363its arguments. They have this format:
43364
43365@table @samp
43366
43367@item vFile:@var{operation}: @var{parameter}@dots{}
43368@var{operation} is the name of the particular request; the target
43369should compare the entire packet name up to the second colon when checking
43370for a supported operation. The format of @var{parameter} depends on
43371the operation. Numbers are always passed in hexadecimal. Negative
43372numbers have an explicit minus sign (i.e.@: two's complement is not
43373used). Strings (e.g.@: filenames) are encoded as a series of
43374hexadecimal bytes. The last argument to a system call may be a
43375buffer of escaped binary data (@pxref{Binary Data}).
43376
43377@end table
43378
43379The valid responses to Host I/O packets are:
43380
43381@table @samp
43382
43383@item F @var{result} [, @var{errno}] [; @var{attachment}]
43384@var{result} is the integer value returned by this operation, usually
43385non-negative for success and -1 for errors. If an error has occured,
697aa1b7 43386@var{errno} will be included in the result specifying a
a6b151f1
DJ
43387value defined by the File-I/O protocol (@pxref{Errno Values}). For
43388operations which return data, @var{attachment} supplies the data as a
43389binary buffer. Binary buffers in response packets are escaped in the
43390normal way (@pxref{Binary Data}). See the individual packet
43391documentation for the interpretation of @var{result} and
43392@var{attachment}.
43393
d57350ea 43394@item @w{}
a6b151f1
DJ
43395An empty response indicates that this operation is not recognized.
43396
43397@end table
43398
43399These are the supported Host I/O operations:
43400
43401@table @samp
697aa1b7
EZ
43402@item vFile:open: @var{filename}, @var{flags}, @var{mode}
43403Open a file at @var{filename} and return a file descriptor for it, or
43404return -1 if an error occurs. The @var{filename} is a string,
a6b151f1
DJ
43405@var{flags} is an integer indicating a mask of open flags
43406(@pxref{Open Flags}), and @var{mode} is an integer indicating a mask
43407of mode bits to use if the file is created (@pxref{mode_t Values}).
c1c25a1a 43408@xref{open}, for details of the open flags and mode values.
a6b151f1
DJ
43409
43410@item vFile:close: @var{fd}
43411Close the open file corresponding to @var{fd} and return 0, or
43412-1 if an error occurs.
43413
43414@item vFile:pread: @var{fd}, @var{count}, @var{offset}
43415Read data from the open file corresponding to @var{fd}. Up to
43416@var{count} bytes will be read from the file, starting at @var{offset}
43417relative to the start of the file. The target may read fewer bytes;
43418common reasons include packet size limits and an end-of-file
43419condition. The number of bytes read is returned. Zero should only be
43420returned for a successful read at the end of the file, or if
43421@var{count} was zero.
43422
43423The data read should be returned as a binary attachment on success.
43424If zero bytes were read, the response should include an empty binary
43425attachment (i.e.@: a trailing semicolon). The return value is the
43426number of target bytes read; the binary attachment may be longer if
43427some characters were escaped.
43428
43429@item vFile:pwrite: @var{fd}, @var{offset}, @var{data}
43430Write @var{data} (a binary buffer) to the open file corresponding
43431to @var{fd}. Start the write at @var{offset} from the start of the
43432file. Unlike many @code{write} system calls, there is no
43433separate @var{count} argument; the length of @var{data} in the
fb092e09 43434packet is used. @samp{vFile:pwrite} returns the number of bytes written,
a6b151f1
DJ
43435which may be shorter than the length of @var{data}, or -1 if an
43436error occurred.
43437
0a93529c
GB
43438@item vFile:fstat: @var{fd}
43439Get information about the open file corresponding to @var{fd}.
43440On success the information is returned as a binary attachment
43441and the return value is the size of this attachment in bytes.
43442If an error occurs the return value is -1. The format of the
43443returned binary attachment is as described in @ref{struct stat}.
43444
697aa1b7
EZ
43445@item vFile:unlink: @var{filename}
43446Delete the file at @var{filename} on the target. Return 0,
43447or -1 if an error occurs. The @var{filename} is a string.
a6b151f1 43448
b9e7b9c3
UW
43449@item vFile:readlink: @var{filename}
43450Read value of symbolic link @var{filename} on the target. Return
43451the number of bytes read, or -1 if an error occurs.
43452
43453The data read should be returned as a binary attachment on success.
43454If zero bytes were read, the response should include an empty binary
43455attachment (i.e.@: a trailing semicolon). The return value is the
43456number of target bytes read; the binary attachment may be longer if
43457some characters were escaped.
43458
15a201c8
GB
43459@item vFile:setfs: @var{pid}
43460Select the filesystem on which @code{vFile} operations with
43461@var{filename} arguments will operate. This is required for
43462@value{GDBN} to be able to access files on remote targets where
43463the remote stub does not share a common filesystem with the
43464inferior(s).
43465
43466If @var{pid} is nonzero, select the filesystem as seen by process
43467@var{pid}. If @var{pid} is zero, select the filesystem as seen by
43468the remote stub. Return 0 on success, or -1 if an error occurs.
43469If @code{vFile:setfs:} indicates success, the selected filesystem
43470remains selected until the next successful @code{vFile:setfs:}
43471operation.
43472
a6b151f1
DJ
43473@end table
43474
9a6253be
KB
43475@node Interrupts
43476@section Interrupts
43477@cindex interrupts (remote protocol)
de979965 43478@anchor{interrupting remote targets}
9a6253be 43479
de979965
PA
43480In all-stop mode, when a program on the remote target is running,
43481@value{GDBN} may attempt to interrupt it by sending a @samp{Ctrl-C},
43482@code{BREAK} or a @code{BREAK} followed by @code{g}, control of which
43483is specified via @value{GDBN}'s @samp{interrupt-sequence}.
9a6253be
KB
43484
43485The precise meaning of @code{BREAK} is defined by the transport
8775bb90
MS
43486mechanism and may, in fact, be undefined. @value{GDBN} does not
43487currently define a @code{BREAK} mechanism for any of the network
43488interfaces except for TCP, in which case @value{GDBN} sends the
43489@code{telnet} BREAK sequence.
9a6253be
KB
43490
43491@samp{Ctrl-C}, on the other hand, is defined and implemented for all
43492transport mechanisms. It is represented by sending the single byte
43493@code{0x03} without any of the usual packet overhead described in
43494the Overview section (@pxref{Overview}). When a @code{0x03} byte is
43495transmitted as part of a packet, it is considered to be packet data
43496and does @emph{not} represent an interrupt. E.g., an @samp{X} packet
0876f84a 43497(@pxref{X packet}), used for binary downloads, may include an unescaped
9a6253be
KB
43498@code{0x03} as part of its packet.
43499
9a7071a8
JB
43500@code{BREAK} followed by @code{g} is also known as Magic SysRq g.
43501When Linux kernel receives this sequence from serial port,
43502it stops execution and connects to gdb.
43503
de979965
PA
43504In non-stop mode, because packet resumptions are asynchronous
43505(@pxref{vCont packet}), @value{GDBN} is always free to send a remote
43506command to the remote stub, even when the target is running. For that
43507reason, @value{GDBN} instead sends a regular packet (@pxref{vCtrlC
43508packet}) with the usual packet framing instead of the single byte
43509@code{0x03}.
43510
9a6253be
KB
43511Stubs are not required to recognize these interrupt mechanisms and the
43512precise meaning associated with receipt of the interrupt is
8b23ecc4
SL
43513implementation defined. If the target supports debugging of multiple
43514threads and/or processes, it should attempt to interrupt all
43515currently-executing threads and processes.
43516If the stub is successful at interrupting the
43517running program, it should send one of the stop
43518reply packets (@pxref{Stop Reply Packets}) to @value{GDBN} as a result
43519of successfully stopping the program in all-stop mode, and a stop reply
43520for each stopped thread in non-stop mode.
43521Interrupts received while the
cde67b27
YQ
43522program is stopped are queued and the program will be interrupted when
43523it is resumed next time.
8b23ecc4
SL
43524
43525@node Notification Packets
43526@section Notification Packets
43527@cindex notification packets
43528@cindex packets, notification
43529
43530The @value{GDBN} remote serial protocol includes @dfn{notifications},
43531packets that require no acknowledgment. Both the GDB and the stub
43532may send notifications (although the only notifications defined at
43533present are sent by the stub). Notifications carry information
43534without incurring the round-trip latency of an acknowledgment, and so
43535are useful for low-impact communications where occasional packet loss
43536is not a problem.
43537
43538A notification packet has the form @samp{% @var{data} #
43539@var{checksum}}, where @var{data} is the content of the notification,
43540and @var{checksum} is a checksum of @var{data}, computed and formatted
43541as for ordinary @value{GDBN} packets. A notification's @var{data}
43542never contains @samp{$}, @samp{%} or @samp{#} characters. Upon
43543receiving a notification, the recipient sends no @samp{+} or @samp{-}
43544to acknowledge the notification's receipt or to report its corruption.
43545
43546Every notification's @var{data} begins with a name, which contains no
43547colon characters, followed by a colon character.
43548
43549Recipients should silently ignore corrupted notifications and
43550notifications they do not understand. Recipients should restart
43551timeout periods on receipt of a well-formed notification, whether or
43552not they understand it.
43553
43554Senders should only send the notifications described here when this
43555protocol description specifies that they are permitted. In the
43556future, we may extend the protocol to permit existing notifications in
43557new contexts; this rule helps older senders avoid confusing newer
43558recipients.
43559
43560(Older versions of @value{GDBN} ignore bytes received until they see
43561the @samp{$} byte that begins an ordinary packet, so new stubs may
43562transmit notifications without fear of confusing older clients. There
43563are no notifications defined for @value{GDBN} to send at the moment, but we
43564assume that most older stubs would ignore them, as well.)
43565
8dbe8ece 43566Each notification is comprised of three parts:
8b23ecc4 43567@table @samp
8dbe8ece
YQ
43568@item @var{name}:@var{event}
43569The notification packet is sent by the side that initiates the
43570exchange (currently, only the stub does that), with @var{event}
697aa1b7
EZ
43571carrying the specific information about the notification, and
43572@var{name} specifying the name of the notification.
8dbe8ece
YQ
43573@item @var{ack}
43574The acknowledge sent by the other side, usually @value{GDBN}, to
43575acknowledge the exchange and request the event.
43576@end table
43577
43578The purpose of an asynchronous notification mechanism is to report to
43579@value{GDBN} that something interesting happened in the remote stub.
43580
43581The remote stub may send notification @var{name}:@var{event}
43582at any time, but @value{GDBN} acknowledges the notification when
43583appropriate. The notification event is pending before @value{GDBN}
43584acknowledges. Only one notification at a time may be pending; if
43585additional events occur before @value{GDBN} has acknowledged the
43586previous notification, they must be queued by the stub for later
43587synchronous transmission in response to @var{ack} packets from
43588@value{GDBN}. Because the notification mechanism is unreliable,
43589the stub is permitted to resend a notification if it believes
43590@value{GDBN} may not have received it.
43591
43592Specifically, notifications may appear when @value{GDBN} is not
43593otherwise reading input from the stub, or when @value{GDBN} is
43594expecting to read a normal synchronous response or a
43595@samp{+}/@samp{-} acknowledgment to a packet it has sent.
43596Notification packets are distinct from any other communication from
43597the stub so there is no ambiguity.
43598
43599After receiving a notification, @value{GDBN} shall acknowledge it by
43600sending a @var{ack} packet as a regular, synchronous request to the
43601stub. Such acknowledgment is not required to happen immediately, as
43602@value{GDBN} is permitted to send other, unrelated packets to the
43603stub first, which the stub should process normally.
43604
43605Upon receiving a @var{ack} packet, if the stub has other queued
43606events to report to @value{GDBN}, it shall respond by sending a
43607normal @var{event}. @value{GDBN} shall then send another @var{ack}
43608packet to solicit further responses; again, it is permitted to send
43609other, unrelated packets as well which the stub should process
43610normally.
43611
43612If the stub receives a @var{ack} packet and there are no additional
43613@var{event} to report, the stub shall return an @samp{OK} response.
43614At this point, @value{GDBN} has finished processing a notification
43615and the stub has completed sending any queued events. @value{GDBN}
43616won't accept any new notifications until the final @samp{OK} is
43617received . If further notification events occur, the stub shall send
43618a new notification, @value{GDBN} shall accept the notification, and
43619the process shall be repeated.
43620
43621The process of asynchronous notification can be illustrated by the
43622following example:
43623@smallexample
4435e1cc 43624<- @code{%Stop:T0505:98e7ffbf;04:4ce6ffbf;08:b1b6e54c;thread:p7526.7526;core:0;}
8dbe8ece
YQ
43625@code{...}
43626-> @code{vStopped}
43627<- @code{T0505:68f37db7;04:40f37db7;08:63850408;thread:p7526.7528;core:0;}
43628-> @code{vStopped}
43629<- @code{T0505:68e3fdb6;04:40e3fdb6;08:63850408;thread:p7526.7529;core:0;}
43630-> @code{vStopped}
43631<- @code{OK}
43632@end smallexample
43633
43634The following notifications are defined:
43635@multitable @columnfractions 0.12 0.12 0.38 0.38
43636
43637@item Notification
43638@tab Ack
43639@tab Event
43640@tab Description
43641
43642@item Stop
43643@tab vStopped
43644@tab @var{reply}. The @var{reply} has the form of a stop reply, as
8b23ecc4
SL
43645described in @ref{Stop Reply Packets}. Refer to @ref{Remote Non-Stop},
43646for information on how these notifications are acknowledged by
43647@value{GDBN}.
8dbe8ece
YQ
43648@tab Report an asynchronous stop event in non-stop mode.
43649
43650@end multitable
8b23ecc4
SL
43651
43652@node Remote Non-Stop
43653@section Remote Protocol Support for Non-Stop Mode
43654
43655@value{GDBN}'s remote protocol supports non-stop debugging of
43656multi-threaded programs, as described in @ref{Non-Stop Mode}. If the stub
43657supports non-stop mode, it should report that to @value{GDBN} by including
43658@samp{QNonStop+} in its @samp{qSupported} response (@pxref{qSupported}).
43659
43660@value{GDBN} typically sends a @samp{QNonStop} packet only when
43661establishing a new connection with the stub. Entering non-stop mode
43662does not alter the state of any currently-running threads, but targets
43663must stop all threads in any already-attached processes when entering
43664all-stop mode. @value{GDBN} uses the @samp{?} packet as necessary to
43665probe the target state after a mode change.
43666
43667In non-stop mode, when an attached process encounters an event that
43668would otherwise be reported with a stop reply, it uses the
43669asynchronous notification mechanism (@pxref{Notification Packets}) to
43670inform @value{GDBN}. In contrast to all-stop mode, where all threads
43671in all processes are stopped when a stop reply is sent, in non-stop
43672mode only the thread reporting the stop event is stopped. That is,
43673when reporting a @samp{S} or @samp{T} response to indicate completion
43674of a step operation, hitting a breakpoint, or a fault, only the
43675affected thread is stopped; any other still-running threads continue
43676to run. When reporting a @samp{W} or @samp{X} response, all running
43677threads belonging to other attached processes continue to run.
43678
8b23ecc4
SL
43679In non-stop mode, the target shall respond to the @samp{?} packet as
43680follows. First, any incomplete stop reply notification/@samp{vStopped}
43681sequence in progress is abandoned. The target must begin a new
43682sequence reporting stop events for all stopped threads, whether or not
43683it has previously reported those events to @value{GDBN}. The first
43684stop reply is sent as a synchronous reply to the @samp{?} packet, and
43685subsequent stop replies are sent as responses to @samp{vStopped} packets
43686using the mechanism described above. The target must not send
43687asynchronous stop reply notifications until the sequence is complete.
43688If all threads are running when the target receives the @samp{?} packet,
43689or if the target is not attached to any process, it shall respond
43690@samp{OK}.
9a6253be 43691
f7e6eed5
PA
43692If the stub supports non-stop mode, it should also support the
43693@samp{swbreak} stop reason if software breakpoints are supported, and
43694the @samp{hwbreak} stop reason if hardware breakpoints are supported
43695(@pxref{swbreak stop reason}). This is because given the asynchronous
43696nature of non-stop mode, between the time a thread hits a breakpoint
43697and the time the event is finally processed by @value{GDBN}, the
43698breakpoint may have already been removed from the target. Due to
43699this, @value{GDBN} needs to be able to tell whether a trap stop was
43700caused by a delayed breakpoint event, which should be ignored, as
43701opposed to a random trap signal, which should be reported to the user.
43702Note the @samp{swbreak} feature implies that the target is responsible
43703for adjusting the PC when a software breakpoint triggers, if
43704necessary, such as on the x86 architecture.
43705
a6f3e723
SL
43706@node Packet Acknowledgment
43707@section Packet Acknowledgment
43708
43709@cindex acknowledgment, for @value{GDBN} remote
43710@cindex packet acknowledgment, for @value{GDBN} remote
43711By default, when either the host or the target machine receives a packet,
43712the first response expected is an acknowledgment: either @samp{+} (to indicate
43713the package was received correctly) or @samp{-} (to request retransmission).
43714This mechanism allows the @value{GDBN} remote protocol to operate over
43715unreliable transport mechanisms, such as a serial line.
43716
43717In cases where the transport mechanism is itself reliable (such as a pipe or
43718TCP connection), the @samp{+}/@samp{-} acknowledgments are redundant.
43719It may be desirable to disable them in that case to reduce communication
43720overhead, or for other reasons. This can be accomplished by means of the
43721@samp{QStartNoAckMode} packet; @pxref{QStartNoAckMode}.
43722
43723When in no-acknowledgment mode, neither the stub nor @value{GDBN} shall send or
43724expect @samp{+}/@samp{-} protocol acknowledgments. The packet
43725and response format still includes the normal checksum, as described in
43726@ref{Overview}, but the checksum may be ignored by the receiver.
43727
43728If the stub supports @samp{QStartNoAckMode} and prefers to operate in
43729no-acknowledgment mode, it should report that to @value{GDBN}
43730by including @samp{QStartNoAckMode+} in its response to @samp{qSupported};
43731@pxref{qSupported}.
43732If @value{GDBN} also supports @samp{QStartNoAckMode} and it has not been
43733disabled via the @code{set remote noack-packet off} command
43734(@pxref{Remote Configuration}),
43735@value{GDBN} may then send a @samp{QStartNoAckMode} packet to the stub.
43736Only then may the stub actually turn off packet acknowledgments.
43737@value{GDBN} sends a final @samp{+} acknowledgment of the stub's @samp{OK}
43738response, which can be safely ignored by the stub.
43739
43740Note that @code{set remote noack-packet} command only affects negotiation
43741between @value{GDBN} and the stub when subsequent connections are made;
43742it does not affect the protocol acknowledgment state for any current
43743connection.
43744Since @samp{+}/@samp{-} acknowledgments are enabled by default when a
43745new connection is established,
43746there is also no protocol request to re-enable the acknowledgments
43747for the current connection, once disabled.
43748
ee2d5c50
AC
43749@node Examples
43750@section Examples
eb12ee30 43751
8e04817f
AC
43752Example sequence of a target being re-started. Notice how the restart
43753does not get any direct output:
eb12ee30 43754
474c8240 43755@smallexample
d2c6833e
AC
43756-> @code{R00}
43757<- @code{+}
8e04817f 43758@emph{target restarts}
d2c6833e 43759-> @code{?}
8e04817f 43760<- @code{+}
d2c6833e
AC
43761<- @code{T001:1234123412341234}
43762-> @code{+}
474c8240 43763@end smallexample
eb12ee30 43764
8e04817f 43765Example sequence of a target being stepped by a single instruction:
eb12ee30 43766
474c8240 43767@smallexample
d2c6833e 43768-> @code{G1445@dots{}}
8e04817f 43769<- @code{+}
d2c6833e
AC
43770-> @code{s}
43771<- @code{+}
43772@emph{time passes}
43773<- @code{T001:1234123412341234}
8e04817f 43774-> @code{+}
d2c6833e 43775-> @code{g}
8e04817f 43776<- @code{+}
d2c6833e
AC
43777<- @code{1455@dots{}}
43778-> @code{+}
474c8240 43779@end smallexample
eb12ee30 43780
79a6e687
BW
43781@node File-I/O Remote Protocol Extension
43782@section File-I/O Remote Protocol Extension
0ce1b118
CV
43783@cindex File-I/O remote protocol extension
43784
43785@menu
43786* File-I/O Overview::
79a6e687
BW
43787* Protocol Basics::
43788* The F Request Packet::
43789* The F Reply Packet::
43790* The Ctrl-C Message::
0ce1b118 43791* Console I/O::
79a6e687 43792* List of Supported Calls::
db2e3e2e 43793* Protocol-specific Representation of Datatypes::
0ce1b118
CV
43794* Constants::
43795* File-I/O Examples::
43796@end menu
43797
43798@node File-I/O Overview
43799@subsection File-I/O Overview
43800@cindex file-i/o overview
43801
9c16f35a 43802The @dfn{File I/O remote protocol extension} (short: File-I/O) allows the
fc320d37 43803target to use the host's file system and console I/O to perform various
0ce1b118 43804system calls. System calls on the target system are translated into a
fc320d37
SL
43805remote protocol packet to the host system, which then performs the needed
43806actions and returns a response packet to the target system.
0ce1b118
CV
43807This simulates file system operations even on targets that lack file systems.
43808
fc320d37
SL
43809The protocol is defined to be independent of both the host and target systems.
43810It uses its own internal representation of datatypes and values. Both
0ce1b118 43811@value{GDBN} and the target's @value{GDBN} stub are responsible for
fc320d37
SL
43812translating the system-dependent value representations into the internal
43813protocol representations when data is transmitted.
0ce1b118 43814
fc320d37
SL
43815The communication is synchronous. A system call is possible only when
43816@value{GDBN} is waiting for a response from the @samp{C}, @samp{c}, @samp{S}
43817or @samp{s} packets. While @value{GDBN} handles the request for a system call,
0ce1b118 43818the target is stopped to allow deterministic access to the target's
fc320d37
SL
43819memory. Therefore File-I/O is not interruptible by target signals. On
43820the other hand, it is possible to interrupt File-I/O by a user interrupt
c8aa23ab 43821(@samp{Ctrl-C}) within @value{GDBN}.
0ce1b118
CV
43822
43823The target's request to perform a host system call does not finish
43824the latest @samp{C}, @samp{c}, @samp{S} or @samp{s} action. That means,
43825after finishing the system call, the target returns to continuing the
43826previous activity (continue, step). No additional continue or step
43827request from @value{GDBN} is required.
43828
43829@smallexample
f7dc1244 43830(@value{GDBP}) continue
0ce1b118
CV
43831 <- target requests 'system call X'
43832 target is stopped, @value{GDBN} executes system call
3f94c067
BW
43833 -> @value{GDBN} returns result
43834 ... target continues, @value{GDBN} returns to wait for the target
0ce1b118
CV
43835 <- target hits breakpoint and sends a Txx packet
43836@end smallexample
43837
fc320d37
SL
43838The protocol only supports I/O on the console and to regular files on
43839the host file system. Character or block special devices, pipes,
43840named pipes, sockets or any other communication method on the host
0ce1b118
CV
43841system are not supported by this protocol.
43842
8b23ecc4
SL
43843File I/O is not supported in non-stop mode.
43844
79a6e687
BW
43845@node Protocol Basics
43846@subsection Protocol Basics
0ce1b118
CV
43847@cindex protocol basics, file-i/o
43848
fc320d37
SL
43849The File-I/O protocol uses the @code{F} packet as the request as well
43850as reply packet. Since a File-I/O system call can only occur when
43851@value{GDBN} is waiting for a response from the continuing or stepping target,
43852the File-I/O request is a reply that @value{GDBN} has to expect as a result
43853of a previous @samp{C}, @samp{c}, @samp{S} or @samp{s} packet.
0ce1b118
CV
43854This @code{F} packet contains all information needed to allow @value{GDBN}
43855to call the appropriate host system call:
43856
43857@itemize @bullet
b383017d 43858@item
0ce1b118
CV
43859A unique identifier for the requested system call.
43860
43861@item
43862All parameters to the system call. Pointers are given as addresses
43863in the target memory address space. Pointers to strings are given as
b383017d 43864pointer/length pair. Numerical values are given as they are.
db2e3e2e 43865Numerical control flags are given in a protocol-specific representation.
0ce1b118
CV
43866
43867@end itemize
43868
fc320d37 43869At this point, @value{GDBN} has to perform the following actions.
0ce1b118
CV
43870
43871@itemize @bullet
b383017d 43872@item
fc320d37
SL
43873If the parameters include pointer values to data needed as input to a
43874system call, @value{GDBN} requests this data from the target with a
0ce1b118
CV
43875standard @code{m} packet request. This additional communication has to be
43876expected by the target implementation and is handled as any other @code{m}
43877packet.
43878
43879@item
43880@value{GDBN} translates all value from protocol representation to host
43881representation as needed. Datatypes are coerced into the host types.
43882
43883@item
fc320d37 43884@value{GDBN} calls the system call.
0ce1b118
CV
43885
43886@item
43887It then coerces datatypes back to protocol representation.
43888
43889@item
fc320d37
SL
43890If the system call is expected to return data in buffer space specified
43891by pointer parameters to the call, the data is transmitted to the
0ce1b118
CV
43892target using a @code{M} or @code{X} packet. This packet has to be expected
43893by the target implementation and is handled as any other @code{M} or @code{X}
43894packet.
43895
43896@end itemize
43897
43898Eventually @value{GDBN} replies with another @code{F} packet which contains all
43899necessary information for the target to continue. This at least contains
43900
43901@itemize @bullet
43902@item
43903Return value.
43904
43905@item
43906@code{errno}, if has been changed by the system call.
43907
43908@item
43909``Ctrl-C'' flag.
43910
43911@end itemize
43912
43913After having done the needed type and value coercion, the target continues
43914the latest continue or step action.
43915
79a6e687
BW
43916@node The F Request Packet
43917@subsection The @code{F} Request Packet
0ce1b118
CV
43918@cindex file-i/o request packet
43919@cindex @code{F} request packet
43920
43921The @code{F} request packet has the following format:
43922
43923@table @samp
fc320d37 43924@item F@var{call-id},@var{parameter@dots{}}
0ce1b118
CV
43925
43926@var{call-id} is the identifier to indicate the host system call to be called.
43927This is just the name of the function.
43928
fc320d37
SL
43929@var{parameter@dots{}} are the parameters to the system call.
43930Parameters are hexadecimal integer values, either the actual values in case
43931of scalar datatypes, pointers to target buffer space in case of compound
43932datatypes and unspecified memory areas, or pointer/length pairs in case
43933of string parameters. These are appended to the @var{call-id} as a
43934comma-delimited list. All values are transmitted in ASCII
43935string representation, pointer/length pairs separated by a slash.
0ce1b118 43936
b383017d 43937@end table
0ce1b118 43938
fc320d37 43939
0ce1b118 43940
79a6e687
BW
43941@node The F Reply Packet
43942@subsection The @code{F} Reply Packet
0ce1b118
CV
43943@cindex file-i/o reply packet
43944@cindex @code{F} reply packet
43945
43946The @code{F} reply packet has the following format:
43947
43948@table @samp
43949
d3bdde98 43950@item F@var{retcode},@var{errno},@var{Ctrl-C flag};@var{call-specific attachment}
0ce1b118
CV
43951
43952@var{retcode} is the return code of the system call as hexadecimal value.
43953
db2e3e2e
BW
43954@var{errno} is the @code{errno} set by the call, in protocol-specific
43955representation.
0ce1b118
CV
43956This parameter can be omitted if the call was successful.
43957
fc320d37
SL
43958@var{Ctrl-C flag} is only sent if the user requested a break. In this
43959case, @var{errno} must be sent as well, even if the call was successful.
43960The @var{Ctrl-C flag} itself consists of the character @samp{C}:
0ce1b118
CV
43961
43962@smallexample
43963F0,0,C
43964@end smallexample
43965
43966@noindent
fc320d37 43967or, if the call was interrupted before the host call has been performed:
0ce1b118
CV
43968
43969@smallexample
43970F-1,4,C
43971@end smallexample
43972
43973@noindent
db2e3e2e 43974assuming 4 is the protocol-specific representation of @code{EINTR}.
0ce1b118
CV
43975
43976@end table
43977
0ce1b118 43978
79a6e687
BW
43979@node The Ctrl-C Message
43980@subsection The @samp{Ctrl-C} Message
0ce1b118
CV
43981@cindex ctrl-c message, in file-i/o protocol
43982
c8aa23ab 43983If the @samp{Ctrl-C} flag is set in the @value{GDBN}
79a6e687 43984reply packet (@pxref{The F Reply Packet}),
fc320d37 43985the target should behave as if it had
0ce1b118 43986gotten a break message. The meaning for the target is ``system call
fc320d37 43987interrupted by @code{SIGINT}''. Consequentially, the target should actually stop
0ce1b118 43988(as with a break message) and return to @value{GDBN} with a @code{T02}
c8aa23ab 43989packet.
fc320d37
SL
43990
43991It's important for the target to know in which
43992state the system call was interrupted. There are two possible cases:
0ce1b118
CV
43993
43994@itemize @bullet
43995@item
43996The system call hasn't been performed on the host yet.
43997
43998@item
43999The system call on the host has been finished.
44000
44001@end itemize
44002
44003These two states can be distinguished by the target by the value of the
44004returned @code{errno}. If it's the protocol representation of @code{EINTR}, the system
44005call hasn't been performed. This is equivalent to the @code{EINTR} handling
44006on POSIX systems. In any other case, the target may presume that the
fc320d37 44007system call has been finished --- successfully or not --- and should behave
0ce1b118
CV
44008as if the break message arrived right after the system call.
44009
fc320d37 44010@value{GDBN} must behave reliably. If the system call has not been called
0ce1b118
CV
44011yet, @value{GDBN} may send the @code{F} reply immediately, setting @code{EINTR} as
44012@code{errno} in the packet. If the system call on the host has been finished
fc320d37
SL
44013before the user requests a break, the full action must be finished by
44014@value{GDBN}. This requires sending @code{M} or @code{X} packets as necessary.
44015The @code{F} packet may only be sent when either nothing has happened
0ce1b118
CV
44016or the full action has been completed.
44017
44018@node Console I/O
44019@subsection Console I/O
44020@cindex console i/o as part of file-i/o
44021
d3e8051b 44022By default and if not explicitly closed by the target system, the file
0ce1b118
CV
44023descriptors 0, 1 and 2 are connected to the @value{GDBN} console. Output
44024on the @value{GDBN} console is handled as any other file output operation
44025(@code{write(1, @dots{})} or @code{write(2, @dots{})}). Console input is handled
44026by @value{GDBN} so that after the target read request from file descriptor
440270 all following typing is buffered until either one of the following
44028conditions is met:
44029
44030@itemize @bullet
44031@item
c8aa23ab 44032The user types @kbd{Ctrl-c}. The behaviour is as explained above, and the
0ce1b118
CV
44033@code{read}
44034system call is treated as finished.
44035
44036@item
7f9087cb 44037The user presses @key{RET}. This is treated as end of input with a trailing
fc320d37 44038newline.
0ce1b118
CV
44039
44040@item
c8aa23ab
EZ
44041The user types @kbd{Ctrl-d}. This is treated as end of input. No trailing
44042character (neither newline nor @samp{Ctrl-D}) is appended to the input.
0ce1b118
CV
44043
44044@end itemize
44045
fc320d37
SL
44046If the user has typed more characters than fit in the buffer given to
44047the @code{read} call, the trailing characters are buffered in @value{GDBN} until
44048either another @code{read(0, @dots{})} is requested by the target, or debugging
44049is stopped at the user's request.
0ce1b118 44050
0ce1b118 44051
79a6e687
BW
44052@node List of Supported Calls
44053@subsection List of Supported Calls
0ce1b118
CV
44054@cindex list of supported file-i/o calls
44055
44056@menu
44057* open::
44058* close::
44059* read::
44060* write::
44061* lseek::
44062* rename::
44063* unlink::
44064* stat/fstat::
44065* gettimeofday::
44066* isatty::
44067* system::
44068@end menu
44069
44070@node open
44071@unnumberedsubsubsec open
44072@cindex open, file-i/o system call
44073
fc320d37
SL
44074@table @asis
44075@item Synopsis:
0ce1b118 44076@smallexample
0ce1b118
CV
44077int open(const char *pathname, int flags);
44078int open(const char *pathname, int flags, mode_t mode);
0ce1b118
CV
44079@end smallexample
44080
fc320d37
SL
44081@item Request:
44082@samp{Fopen,@var{pathptr}/@var{len},@var{flags},@var{mode}}
44083
0ce1b118 44084@noindent
fc320d37 44085@var{flags} is the bitwise @code{OR} of the following values:
0ce1b118
CV
44086
44087@table @code
b383017d 44088@item O_CREAT
0ce1b118
CV
44089If the file does not exist it will be created. The host
44090rules apply as far as file ownership and time stamps
44091are concerned.
44092
b383017d 44093@item O_EXCL
fc320d37 44094When used with @code{O_CREAT}, if the file already exists it is
0ce1b118
CV
44095an error and open() fails.
44096
b383017d 44097@item O_TRUNC
0ce1b118 44098If the file already exists and the open mode allows
fc320d37
SL
44099writing (@code{O_RDWR} or @code{O_WRONLY} is given) it will be
44100truncated to zero length.
0ce1b118 44101
b383017d 44102@item O_APPEND
0ce1b118
CV
44103The file is opened in append mode.
44104
b383017d 44105@item O_RDONLY
0ce1b118
CV
44106The file is opened for reading only.
44107
b383017d 44108@item O_WRONLY
0ce1b118
CV
44109The file is opened for writing only.
44110
b383017d 44111@item O_RDWR
0ce1b118 44112The file is opened for reading and writing.
fc320d37 44113@end table
0ce1b118
CV
44114
44115@noindent
fc320d37 44116Other bits are silently ignored.
0ce1b118 44117
0ce1b118
CV
44118
44119@noindent
fc320d37 44120@var{mode} is the bitwise @code{OR} of the following values:
0ce1b118
CV
44121
44122@table @code
b383017d 44123@item S_IRUSR
0ce1b118
CV
44124User has read permission.
44125
b383017d 44126@item S_IWUSR
0ce1b118
CV
44127User has write permission.
44128
b383017d 44129@item S_IRGRP
0ce1b118
CV
44130Group has read permission.
44131
b383017d 44132@item S_IWGRP
0ce1b118
CV
44133Group has write permission.
44134
b383017d 44135@item S_IROTH
0ce1b118
CV
44136Others have read permission.
44137
b383017d 44138@item S_IWOTH
0ce1b118 44139Others have write permission.
fc320d37 44140@end table
0ce1b118
CV
44141
44142@noindent
fc320d37 44143Other bits are silently ignored.
0ce1b118 44144
0ce1b118 44145
fc320d37
SL
44146@item Return value:
44147@code{open} returns the new file descriptor or -1 if an error
44148occurred.
0ce1b118 44149
fc320d37 44150@item Errors:
0ce1b118
CV
44151
44152@table @code
b383017d 44153@item EEXIST
fc320d37 44154@var{pathname} already exists and @code{O_CREAT} and @code{O_EXCL} were used.
0ce1b118 44155
b383017d 44156@item EISDIR
fc320d37 44157@var{pathname} refers to a directory.
0ce1b118 44158
b383017d 44159@item EACCES
0ce1b118
CV
44160The requested access is not allowed.
44161
44162@item ENAMETOOLONG
fc320d37 44163@var{pathname} was too long.
0ce1b118 44164
b383017d 44165@item ENOENT
fc320d37 44166A directory component in @var{pathname} does not exist.
0ce1b118 44167
b383017d 44168@item ENODEV
fc320d37 44169@var{pathname} refers to a device, pipe, named pipe or socket.
0ce1b118 44170
b383017d 44171@item EROFS
fc320d37 44172@var{pathname} refers to a file on a read-only filesystem and
0ce1b118
CV
44173write access was requested.
44174
b383017d 44175@item EFAULT
fc320d37 44176@var{pathname} is an invalid pointer value.
0ce1b118 44177
b383017d 44178@item ENOSPC
0ce1b118
CV
44179No space on device to create the file.
44180
b383017d 44181@item EMFILE
0ce1b118
CV
44182The process already has the maximum number of files open.
44183
b383017d 44184@item ENFILE
0ce1b118
CV
44185The limit on the total number of files open on the system
44186has been reached.
44187
b383017d 44188@item EINTR
0ce1b118
CV
44189The call was interrupted by the user.
44190@end table
44191
fc320d37
SL
44192@end table
44193
0ce1b118
CV
44194@node close
44195@unnumberedsubsubsec close
44196@cindex close, file-i/o system call
44197
fc320d37
SL
44198@table @asis
44199@item Synopsis:
0ce1b118 44200@smallexample
0ce1b118 44201int close(int fd);
fc320d37 44202@end smallexample
0ce1b118 44203
fc320d37
SL
44204@item Request:
44205@samp{Fclose,@var{fd}}
0ce1b118 44206
fc320d37
SL
44207@item Return value:
44208@code{close} returns zero on success, or -1 if an error occurred.
0ce1b118 44209
fc320d37 44210@item Errors:
0ce1b118
CV
44211
44212@table @code
b383017d 44213@item EBADF
fc320d37 44214@var{fd} isn't a valid open file descriptor.
0ce1b118 44215
b383017d 44216@item EINTR
0ce1b118
CV
44217The call was interrupted by the user.
44218@end table
44219
fc320d37
SL
44220@end table
44221
0ce1b118
CV
44222@node read
44223@unnumberedsubsubsec read
44224@cindex read, file-i/o system call
44225
fc320d37
SL
44226@table @asis
44227@item Synopsis:
0ce1b118 44228@smallexample
0ce1b118 44229int read(int fd, void *buf, unsigned int count);
fc320d37 44230@end smallexample
0ce1b118 44231
fc320d37
SL
44232@item Request:
44233@samp{Fread,@var{fd},@var{bufptr},@var{count}}
0ce1b118 44234
fc320d37 44235@item Return value:
0ce1b118
CV
44236On success, the number of bytes read is returned.
44237Zero indicates end of file. If count is zero, read
b383017d 44238returns zero as well. On error, -1 is returned.
0ce1b118 44239
fc320d37 44240@item Errors:
0ce1b118
CV
44241
44242@table @code
b383017d 44243@item EBADF
fc320d37 44244@var{fd} is not a valid file descriptor or is not open for
0ce1b118
CV
44245reading.
44246
b383017d 44247@item EFAULT
fc320d37 44248@var{bufptr} is an invalid pointer value.
0ce1b118 44249
b383017d 44250@item EINTR
0ce1b118
CV
44251The call was interrupted by the user.
44252@end table
44253
fc320d37
SL
44254@end table
44255
0ce1b118
CV
44256@node write
44257@unnumberedsubsubsec write
44258@cindex write, file-i/o system call
44259
fc320d37
SL
44260@table @asis
44261@item Synopsis:
0ce1b118 44262@smallexample
0ce1b118 44263int write(int fd, const void *buf, unsigned int count);
fc320d37 44264@end smallexample
0ce1b118 44265
fc320d37
SL
44266@item Request:
44267@samp{Fwrite,@var{fd},@var{bufptr},@var{count}}
0ce1b118 44268
fc320d37 44269@item Return value:
0ce1b118
CV
44270On success, the number of bytes written are returned.
44271Zero indicates nothing was written. On error, -1
44272is returned.
44273
fc320d37 44274@item Errors:
0ce1b118
CV
44275
44276@table @code
b383017d 44277@item EBADF
fc320d37 44278@var{fd} is not a valid file descriptor or is not open for
0ce1b118
CV
44279writing.
44280
b383017d 44281@item EFAULT
fc320d37 44282@var{bufptr} is an invalid pointer value.
0ce1b118 44283
b383017d 44284@item EFBIG
0ce1b118 44285An attempt was made to write a file that exceeds the
db2e3e2e 44286host-specific maximum file size allowed.
0ce1b118 44287
b383017d 44288@item ENOSPC
0ce1b118
CV
44289No space on device to write the data.
44290
b383017d 44291@item EINTR
0ce1b118
CV
44292The call was interrupted by the user.
44293@end table
44294
fc320d37
SL
44295@end table
44296
0ce1b118
CV
44297@node lseek
44298@unnumberedsubsubsec lseek
44299@cindex lseek, file-i/o system call
44300
fc320d37
SL
44301@table @asis
44302@item Synopsis:
0ce1b118 44303@smallexample
0ce1b118 44304long lseek (int fd, long offset, int flag);
0ce1b118
CV
44305@end smallexample
44306
fc320d37
SL
44307@item Request:
44308@samp{Flseek,@var{fd},@var{offset},@var{flag}}
44309
44310@var{flag} is one of:
0ce1b118
CV
44311
44312@table @code
b383017d 44313@item SEEK_SET
fc320d37 44314The offset is set to @var{offset} bytes.
0ce1b118 44315
b383017d 44316@item SEEK_CUR
fc320d37 44317The offset is set to its current location plus @var{offset}
0ce1b118
CV
44318bytes.
44319
b383017d 44320@item SEEK_END
fc320d37 44321The offset is set to the size of the file plus @var{offset}
0ce1b118
CV
44322bytes.
44323@end table
44324
fc320d37 44325@item Return value:
0ce1b118
CV
44326On success, the resulting unsigned offset in bytes from
44327the beginning of the file is returned. Otherwise, a
44328value of -1 is returned.
44329
fc320d37 44330@item Errors:
0ce1b118
CV
44331
44332@table @code
b383017d 44333@item EBADF
fc320d37 44334@var{fd} is not a valid open file descriptor.
0ce1b118 44335
b383017d 44336@item ESPIPE
fc320d37 44337@var{fd} is associated with the @value{GDBN} console.
0ce1b118 44338
b383017d 44339@item EINVAL
fc320d37 44340@var{flag} is not a proper value.
0ce1b118 44341
b383017d 44342@item EINTR
0ce1b118
CV
44343The call was interrupted by the user.
44344@end table
44345
fc320d37
SL
44346@end table
44347
0ce1b118
CV
44348@node rename
44349@unnumberedsubsubsec rename
44350@cindex rename, file-i/o system call
44351
fc320d37
SL
44352@table @asis
44353@item Synopsis:
0ce1b118 44354@smallexample
0ce1b118 44355int rename(const char *oldpath, const char *newpath);
fc320d37 44356@end smallexample
0ce1b118 44357
fc320d37
SL
44358@item Request:
44359@samp{Frename,@var{oldpathptr}/@var{len},@var{newpathptr}/@var{len}}
0ce1b118 44360
fc320d37 44361@item Return value:
0ce1b118
CV
44362On success, zero is returned. On error, -1 is returned.
44363
fc320d37 44364@item Errors:
0ce1b118
CV
44365
44366@table @code
b383017d 44367@item EISDIR
fc320d37 44368@var{newpath} is an existing directory, but @var{oldpath} is not a
0ce1b118
CV
44369directory.
44370
b383017d 44371@item EEXIST
fc320d37 44372@var{newpath} is a non-empty directory.
0ce1b118 44373
b383017d 44374@item EBUSY
fc320d37 44375@var{oldpath} or @var{newpath} is a directory that is in use by some
0ce1b118
CV
44376process.
44377
b383017d 44378@item EINVAL
0ce1b118
CV
44379An attempt was made to make a directory a subdirectory
44380of itself.
44381
b383017d 44382@item ENOTDIR
fc320d37
SL
44383A component used as a directory in @var{oldpath} or new
44384path is not a directory. Or @var{oldpath} is a directory
44385and @var{newpath} exists but is not a directory.
0ce1b118 44386
b383017d 44387@item EFAULT
fc320d37 44388@var{oldpathptr} or @var{newpathptr} are invalid pointer values.
0ce1b118 44389
b383017d 44390@item EACCES
0ce1b118
CV
44391No access to the file or the path of the file.
44392
44393@item ENAMETOOLONG
b383017d 44394
fc320d37 44395@var{oldpath} or @var{newpath} was too long.
0ce1b118 44396
b383017d 44397@item ENOENT
fc320d37 44398A directory component in @var{oldpath} or @var{newpath} does not exist.
0ce1b118 44399
b383017d 44400@item EROFS
0ce1b118
CV
44401The file is on a read-only filesystem.
44402
b383017d 44403@item ENOSPC
0ce1b118
CV
44404The device containing the file has no room for the new
44405directory entry.
44406
b383017d 44407@item EINTR
0ce1b118
CV
44408The call was interrupted by the user.
44409@end table
44410
fc320d37
SL
44411@end table
44412
0ce1b118
CV
44413@node unlink
44414@unnumberedsubsubsec unlink
44415@cindex unlink, file-i/o system call
44416
fc320d37
SL
44417@table @asis
44418@item Synopsis:
0ce1b118 44419@smallexample
0ce1b118 44420int unlink(const char *pathname);
fc320d37 44421@end smallexample
0ce1b118 44422
fc320d37
SL
44423@item Request:
44424@samp{Funlink,@var{pathnameptr}/@var{len}}
0ce1b118 44425
fc320d37 44426@item Return value:
0ce1b118
CV
44427On success, zero is returned. On error, -1 is returned.
44428
fc320d37 44429@item Errors:
0ce1b118
CV
44430
44431@table @code
b383017d 44432@item EACCES
0ce1b118
CV
44433No access to the file or the path of the file.
44434
b383017d 44435@item EPERM
0ce1b118
CV
44436The system does not allow unlinking of directories.
44437
b383017d 44438@item EBUSY
fc320d37 44439The file @var{pathname} cannot be unlinked because it's
0ce1b118
CV
44440being used by another process.
44441
b383017d 44442@item EFAULT
fc320d37 44443@var{pathnameptr} is an invalid pointer value.
0ce1b118
CV
44444
44445@item ENAMETOOLONG
fc320d37 44446@var{pathname} was too long.
0ce1b118 44447
b383017d 44448@item ENOENT
fc320d37 44449A directory component in @var{pathname} does not exist.
0ce1b118 44450
b383017d 44451@item ENOTDIR
0ce1b118
CV
44452A component of the path is not a directory.
44453
b383017d 44454@item EROFS
0ce1b118
CV
44455The file is on a read-only filesystem.
44456
b383017d 44457@item EINTR
0ce1b118
CV
44458The call was interrupted by the user.
44459@end table
44460
fc320d37
SL
44461@end table
44462
0ce1b118
CV
44463@node stat/fstat
44464@unnumberedsubsubsec stat/fstat
44465@cindex fstat, file-i/o system call
44466@cindex stat, file-i/o system call
44467
fc320d37
SL
44468@table @asis
44469@item Synopsis:
0ce1b118 44470@smallexample
0ce1b118
CV
44471int stat(const char *pathname, struct stat *buf);
44472int fstat(int fd, struct stat *buf);
fc320d37 44473@end smallexample
0ce1b118 44474
fc320d37
SL
44475@item Request:
44476@samp{Fstat,@var{pathnameptr}/@var{len},@var{bufptr}}@*
44477@samp{Ffstat,@var{fd},@var{bufptr}}
0ce1b118 44478
fc320d37 44479@item Return value:
0ce1b118
CV
44480On success, zero is returned. On error, -1 is returned.
44481
fc320d37 44482@item Errors:
0ce1b118
CV
44483
44484@table @code
b383017d 44485@item EBADF
fc320d37 44486@var{fd} is not a valid open file.
0ce1b118 44487
b383017d 44488@item ENOENT
fc320d37 44489A directory component in @var{pathname} does not exist or the
0ce1b118
CV
44490path is an empty string.
44491
b383017d 44492@item ENOTDIR
0ce1b118
CV
44493A component of the path is not a directory.
44494
b383017d 44495@item EFAULT
fc320d37 44496@var{pathnameptr} is an invalid pointer value.
0ce1b118 44497
b383017d 44498@item EACCES
0ce1b118
CV
44499No access to the file or the path of the file.
44500
44501@item ENAMETOOLONG
fc320d37 44502@var{pathname} was too long.
0ce1b118 44503
b383017d 44504@item EINTR
0ce1b118
CV
44505The call was interrupted by the user.
44506@end table
44507
fc320d37
SL
44508@end table
44509
0ce1b118
CV
44510@node gettimeofday
44511@unnumberedsubsubsec gettimeofday
44512@cindex gettimeofday, file-i/o system call
44513
fc320d37
SL
44514@table @asis
44515@item Synopsis:
0ce1b118 44516@smallexample
0ce1b118 44517int gettimeofday(struct timeval *tv, void *tz);
fc320d37 44518@end smallexample
0ce1b118 44519
fc320d37
SL
44520@item Request:
44521@samp{Fgettimeofday,@var{tvptr},@var{tzptr}}
0ce1b118 44522
fc320d37 44523@item Return value:
0ce1b118
CV
44524On success, 0 is returned, -1 otherwise.
44525
fc320d37 44526@item Errors:
0ce1b118
CV
44527
44528@table @code
b383017d 44529@item EINVAL
fc320d37 44530@var{tz} is a non-NULL pointer.
0ce1b118 44531
b383017d 44532@item EFAULT
fc320d37
SL
44533@var{tvptr} and/or @var{tzptr} is an invalid pointer value.
44534@end table
44535
0ce1b118
CV
44536@end table
44537
44538@node isatty
44539@unnumberedsubsubsec isatty
44540@cindex isatty, file-i/o system call
44541
fc320d37
SL
44542@table @asis
44543@item Synopsis:
0ce1b118 44544@smallexample
0ce1b118 44545int isatty(int fd);
fc320d37 44546@end smallexample
0ce1b118 44547
fc320d37
SL
44548@item Request:
44549@samp{Fisatty,@var{fd}}
0ce1b118 44550
fc320d37
SL
44551@item Return value:
44552Returns 1 if @var{fd} refers to the @value{GDBN} console, 0 otherwise.
0ce1b118 44553
fc320d37 44554@item Errors:
0ce1b118
CV
44555
44556@table @code
b383017d 44557@item EINTR
0ce1b118
CV
44558The call was interrupted by the user.
44559@end table
44560
fc320d37
SL
44561@end table
44562
44563Note that the @code{isatty} call is treated as a special case: it returns
445641 to the target if the file descriptor is attached
44565to the @value{GDBN} console, 0 otherwise. Implementing through system calls
44566would require implementing @code{ioctl} and would be more complex than
44567needed.
44568
44569
0ce1b118
CV
44570@node system
44571@unnumberedsubsubsec system
44572@cindex system, file-i/o system call
44573
fc320d37
SL
44574@table @asis
44575@item Synopsis:
0ce1b118 44576@smallexample
0ce1b118 44577int system(const char *command);
fc320d37 44578@end smallexample
0ce1b118 44579
fc320d37
SL
44580@item Request:
44581@samp{Fsystem,@var{commandptr}/@var{len}}
0ce1b118 44582
fc320d37 44583@item Return value:
5600ea19
NS
44584If @var{len} is zero, the return value indicates whether a shell is
44585available. A zero return value indicates a shell is not available.
44586For non-zero @var{len}, the value returned is -1 on error and the
44587return status of the command otherwise. Only the exit status of the
44588command is returned, which is extracted from the host's @code{system}
44589return value by calling @code{WEXITSTATUS(retval)}. In case
44590@file{/bin/sh} could not be executed, 127 is returned.
0ce1b118 44591
fc320d37 44592@item Errors:
0ce1b118
CV
44593
44594@table @code
b383017d 44595@item EINTR
0ce1b118
CV
44596The call was interrupted by the user.
44597@end table
44598
fc320d37
SL
44599@end table
44600
44601@value{GDBN} takes over the full task of calling the necessary host calls
44602to perform the @code{system} call. The return value of @code{system} on
44603the host is simplified before it's returned
44604to the target. Any termination signal information from the child process
44605is discarded, and the return value consists
44606entirely of the exit status of the called command.
44607
44608Due to security concerns, the @code{system} call is by default refused
44609by @value{GDBN}. The user has to allow this call explicitly with the
44610@code{set remote system-call-allowed 1} command.
44611
44612@table @code
44613@item set remote system-call-allowed
44614@kindex set remote system-call-allowed
44615Control whether to allow the @code{system} calls in the File I/O
44616protocol for the remote target. The default is zero (disabled).
44617
44618@item show remote system-call-allowed
44619@kindex show remote system-call-allowed
44620Show whether the @code{system} calls are allowed in the File I/O
44621protocol.
44622@end table
44623
db2e3e2e
BW
44624@node Protocol-specific Representation of Datatypes
44625@subsection Protocol-specific Representation of Datatypes
44626@cindex protocol-specific representation of datatypes, in file-i/o protocol
0ce1b118
CV
44627
44628@menu
79a6e687
BW
44629* Integral Datatypes::
44630* Pointer Values::
44631* Memory Transfer::
0ce1b118
CV
44632* struct stat::
44633* struct timeval::
44634@end menu
44635
79a6e687
BW
44636@node Integral Datatypes
44637@unnumberedsubsubsec Integral Datatypes
0ce1b118
CV
44638@cindex integral datatypes, in file-i/o protocol
44639
fc320d37
SL
44640The integral datatypes used in the system calls are @code{int},
44641@code{unsigned int}, @code{long}, @code{unsigned long},
44642@code{mode_t}, and @code{time_t}.
0ce1b118 44643
fc320d37 44644@code{int}, @code{unsigned int}, @code{mode_t} and @code{time_t} are
0ce1b118
CV
44645implemented as 32 bit values in this protocol.
44646
fc320d37 44647@code{long} and @code{unsigned long} are implemented as 64 bit types.
b383017d 44648
0ce1b118
CV
44649@xref{Limits}, for corresponding MIN and MAX values (similar to those
44650in @file{limits.h}) to allow range checking on host and target.
44651
44652@code{time_t} datatypes are defined as seconds since the Epoch.
44653
44654All integral datatypes transferred as part of a memory read or write of a
44655structured datatype e.g.@: a @code{struct stat} have to be given in big endian
44656byte order.
44657
79a6e687
BW
44658@node Pointer Values
44659@unnumberedsubsubsec Pointer Values
0ce1b118
CV
44660@cindex pointer values, in file-i/o protocol
44661
44662Pointers to target data are transmitted as they are. An exception
44663is made for pointers to buffers for which the length isn't
44664transmitted as part of the function call, namely strings. Strings
44665are transmitted as a pointer/length pair, both as hex values, e.g.@:
44666
44667@smallexample
44668@code{1aaf/12}
44669@end smallexample
44670
44671@noindent
44672which is a pointer to data of length 18 bytes at position 0x1aaf.
44673The length is defined as the full string length in bytes, including
fc320d37
SL
44674the trailing null byte. For example, the string @code{"hello world"}
44675at address 0x123456 is transmitted as
0ce1b118
CV
44676
44677@smallexample
fc320d37 44678@code{123456/d}
0ce1b118
CV
44679@end smallexample
44680
79a6e687
BW
44681@node Memory Transfer
44682@unnumberedsubsubsec Memory Transfer
fc320d37
SL
44683@cindex memory transfer, in file-i/o protocol
44684
44685Structured data which is transferred using a memory read or write (for
db2e3e2e 44686example, a @code{struct stat}) is expected to be in a protocol-specific format
fc320d37
SL
44687with all scalar multibyte datatypes being big endian. Translation to
44688this representation needs to be done both by the target before the @code{F}
44689packet is sent, and by @value{GDBN} before
44690it transfers memory to the target. Transferred pointers to structured
44691data should point to the already-coerced data at any time.
0ce1b118 44692
0ce1b118
CV
44693
44694@node struct stat
44695@unnumberedsubsubsec struct stat
44696@cindex struct stat, in file-i/o protocol
44697
fc320d37
SL
44698The buffer of type @code{struct stat} used by the target and @value{GDBN}
44699is defined as follows:
0ce1b118
CV
44700
44701@smallexample
44702struct stat @{
44703 unsigned int st_dev; /* device */
44704 unsigned int st_ino; /* inode */
44705 mode_t st_mode; /* protection */
44706 unsigned int st_nlink; /* number of hard links */
44707 unsigned int st_uid; /* user ID of owner */
44708 unsigned int st_gid; /* group ID of owner */
44709 unsigned int st_rdev; /* device type (if inode device) */
44710 unsigned long st_size; /* total size, in bytes */
44711 unsigned long st_blksize; /* blocksize for filesystem I/O */
44712 unsigned long st_blocks; /* number of blocks allocated */
44713 time_t st_atime; /* time of last access */
44714 time_t st_mtime; /* time of last modification */
44715 time_t st_ctime; /* time of last change */
44716@};
44717@end smallexample
44718
fc320d37 44719The integral datatypes conform to the definitions given in the
79a6e687 44720appropriate section (see @ref{Integral Datatypes}, for details) so this
0ce1b118
CV
44721structure is of size 64 bytes.
44722
44723The values of several fields have a restricted meaning and/or
44724range of values.
44725
fc320d37 44726@table @code
0ce1b118 44727
fc320d37
SL
44728@item st_dev
44729A value of 0 represents a file, 1 the console.
0ce1b118 44730
fc320d37
SL
44731@item st_ino
44732No valid meaning for the target. Transmitted unchanged.
0ce1b118 44733
fc320d37
SL
44734@item st_mode
44735Valid mode bits are described in @ref{Constants}. Any other
44736bits have currently no meaning for the target.
0ce1b118 44737
fc320d37
SL
44738@item st_uid
44739@itemx st_gid
44740@itemx st_rdev
44741No valid meaning for the target. Transmitted unchanged.
0ce1b118 44742
fc320d37
SL
44743@item st_atime
44744@itemx st_mtime
44745@itemx st_ctime
44746These values have a host and file system dependent
44747accuracy. Especially on Windows hosts, the file system may not
44748support exact timing values.
44749@end table
0ce1b118 44750
fc320d37
SL
44751The target gets a @code{struct stat} of the above representation and is
44752responsible for coercing it to the target representation before
0ce1b118
CV
44753continuing.
44754
fc320d37
SL
44755Note that due to size differences between the host, target, and protocol
44756representations of @code{struct stat} members, these members could eventually
0ce1b118
CV
44757get truncated on the target.
44758
44759@node struct timeval
44760@unnumberedsubsubsec struct timeval
44761@cindex struct timeval, in file-i/o protocol
44762
fc320d37 44763The buffer of type @code{struct timeval} used by the File-I/O protocol
0ce1b118
CV
44764is defined as follows:
44765
44766@smallexample
b383017d 44767struct timeval @{
0ce1b118
CV
44768 time_t tv_sec; /* second */
44769 long tv_usec; /* microsecond */
44770@};
44771@end smallexample
44772
fc320d37 44773The integral datatypes conform to the definitions given in the
79a6e687 44774appropriate section (see @ref{Integral Datatypes}, for details) so this
0ce1b118
CV
44775structure is of size 8 bytes.
44776
44777@node Constants
44778@subsection Constants
44779@cindex constants, in file-i/o protocol
44780
44781The following values are used for the constants inside of the
fc320d37 44782protocol. @value{GDBN} and target are responsible for translating these
0ce1b118
CV
44783values before and after the call as needed.
44784
44785@menu
79a6e687
BW
44786* Open Flags::
44787* mode_t Values::
44788* Errno Values::
44789* Lseek Flags::
0ce1b118
CV
44790* Limits::
44791@end menu
44792
79a6e687
BW
44793@node Open Flags
44794@unnumberedsubsubsec Open Flags
0ce1b118
CV
44795@cindex open flags, in file-i/o protocol
44796
44797All values are given in hexadecimal representation.
44798
44799@smallexample
44800 O_RDONLY 0x0
44801 O_WRONLY 0x1
44802 O_RDWR 0x2
44803 O_APPEND 0x8
44804 O_CREAT 0x200
44805 O_TRUNC 0x400
44806 O_EXCL 0x800
44807@end smallexample
44808
79a6e687
BW
44809@node mode_t Values
44810@unnumberedsubsubsec mode_t Values
0ce1b118
CV
44811@cindex mode_t values, in file-i/o protocol
44812
44813All values are given in octal representation.
44814
44815@smallexample
44816 S_IFREG 0100000
44817 S_IFDIR 040000
44818 S_IRUSR 0400
44819 S_IWUSR 0200
44820 S_IXUSR 0100
44821 S_IRGRP 040
44822 S_IWGRP 020
44823 S_IXGRP 010
44824 S_IROTH 04
44825 S_IWOTH 02
44826 S_IXOTH 01
44827@end smallexample
44828
79a6e687
BW
44829@node Errno Values
44830@unnumberedsubsubsec Errno Values
0ce1b118
CV
44831@cindex errno values, in file-i/o protocol
44832
44833All values are given in decimal representation.
44834
44835@smallexample
44836 EPERM 1
44837 ENOENT 2
44838 EINTR 4
44839 EBADF 9
44840 EACCES 13
44841 EFAULT 14
44842 EBUSY 16
44843 EEXIST 17
44844 ENODEV 19
44845 ENOTDIR 20
44846 EISDIR 21
44847 EINVAL 22
44848 ENFILE 23
44849 EMFILE 24
44850 EFBIG 27
44851 ENOSPC 28
44852 ESPIPE 29
44853 EROFS 30
44854 ENAMETOOLONG 91
44855 EUNKNOWN 9999
44856@end smallexample
44857
fc320d37 44858 @code{EUNKNOWN} is used as a fallback error value if a host system returns
0ce1b118
CV
44859 any error value not in the list of supported error numbers.
44860
79a6e687
BW
44861@node Lseek Flags
44862@unnumberedsubsubsec Lseek Flags
0ce1b118
CV
44863@cindex lseek flags, in file-i/o protocol
44864
44865@smallexample
44866 SEEK_SET 0
44867 SEEK_CUR 1
44868 SEEK_END 2
44869@end smallexample
44870
44871@node Limits
44872@unnumberedsubsubsec Limits
44873@cindex limits, in file-i/o protocol
44874
44875All values are given in decimal representation.
44876
44877@smallexample
44878 INT_MIN -2147483648
44879 INT_MAX 2147483647
44880 UINT_MAX 4294967295
44881 LONG_MIN -9223372036854775808
44882 LONG_MAX 9223372036854775807
44883 ULONG_MAX 18446744073709551615
44884@end smallexample
44885
44886@node File-I/O Examples
44887@subsection File-I/O Examples
44888@cindex file-i/o examples
44889
44890Example sequence of a write call, file descriptor 3, buffer is at target
44891address 0x1234, 6 bytes should be written:
44892
44893@smallexample
44894<- @code{Fwrite,3,1234,6}
44895@emph{request memory read from target}
44896-> @code{m1234,6}
44897<- XXXXXX
44898@emph{return "6 bytes written"}
44899-> @code{F6}
44900@end smallexample
44901
44902Example sequence of a read call, file descriptor 3, buffer is at target
44903address 0x1234, 6 bytes should be read:
44904
44905@smallexample
44906<- @code{Fread,3,1234,6}
44907@emph{request memory write to target}
44908-> @code{X1234,6:XXXXXX}
44909@emph{return "6 bytes read"}
44910-> @code{F6}
44911@end smallexample
44912
44913Example sequence of a read call, call fails on the host due to invalid
fc320d37 44914file descriptor (@code{EBADF}):
0ce1b118
CV
44915
44916@smallexample
44917<- @code{Fread,3,1234,6}
44918-> @code{F-1,9}
44919@end smallexample
44920
c8aa23ab 44921Example sequence of a read call, user presses @kbd{Ctrl-c} before syscall on
0ce1b118
CV
44922host is called:
44923
44924@smallexample
44925<- @code{Fread,3,1234,6}
44926-> @code{F-1,4,C}
44927<- @code{T02}
44928@end smallexample
44929
c8aa23ab 44930Example sequence of a read call, user presses @kbd{Ctrl-c} after syscall on
0ce1b118
CV
44931host is called:
44932
44933@smallexample
44934<- @code{Fread,3,1234,6}
44935-> @code{X1234,6:XXXXXX}
44936<- @code{T02}
44937@end smallexample
44938
cfa9d6d9
DJ
44939@node Library List Format
44940@section Library List Format
44941@cindex library list format, remote protocol
44942
44943On some platforms, a dynamic loader (e.g.@: @file{ld.so}) runs in the
44944same process as your application to manage libraries. In this case,
44945@value{GDBN} can use the loader's symbol table and normal memory
44946operations to maintain a list of shared libraries. On other
44947platforms, the operating system manages loaded libraries.
44948@value{GDBN} can not retrieve the list of currently loaded libraries
44949through memory operations, so it uses the @samp{qXfer:libraries:read}
44950packet (@pxref{qXfer library list read}) instead. The remote stub
44951queries the target's operating system and reports which libraries
44952are loaded.
44953
44954The @samp{qXfer:libraries:read} packet returns an XML document which
44955lists loaded libraries and their offsets. Each library has an
1fddbabb
PA
44956associated name and one or more segment or section base addresses,
44957which report where the library was loaded in memory.
44958
44959For the common case of libraries that are fully linked binaries, the
44960library should have a list of segments. If the target supports
44961dynamic linking of a relocatable object file, its library XML element
44962should instead include a list of allocated sections. The segment or
44963section bases are start addresses, not relocation offsets; they do not
44964depend on the library's link-time base addresses.
cfa9d6d9 44965
9cceb671
DJ
44966@value{GDBN} must be linked with the Expat library to support XML
44967library lists. @xref{Expat}.
44968
cfa9d6d9
DJ
44969A simple memory map, with one loaded library relocated by a single
44970offset, looks like this:
44971
44972@smallexample
44973<library-list>
44974 <library name="/lib/libc.so.6">
44975 <segment address="0x10000000"/>
44976 </library>
44977</library-list>
44978@end smallexample
44979
1fddbabb
PA
44980Another simple memory map, with one loaded library with three
44981allocated sections (.text, .data, .bss), looks like this:
44982
44983@smallexample
44984<library-list>
44985 <library name="sharedlib.o">
44986 <section address="0x10000000"/>
44987 <section address="0x20000000"/>
44988 <section address="0x30000000"/>
44989 </library>
44990</library-list>
44991@end smallexample
44992
cfa9d6d9
DJ
44993The format of a library list is described by this DTD:
44994
44995@smallexample
44996<!-- library-list: Root element with versioning -->
44997<!ELEMENT library-list (library)*>
44998<!ATTLIST library-list version CDATA #FIXED "1.0">
1fddbabb 44999<!ELEMENT library (segment*, section*)>
cfa9d6d9
DJ
45000<!ATTLIST library name CDATA #REQUIRED>
45001<!ELEMENT segment EMPTY>
45002<!ATTLIST segment address CDATA #REQUIRED>
1fddbabb
PA
45003<!ELEMENT section EMPTY>
45004<!ATTLIST section address CDATA #REQUIRED>
cfa9d6d9
DJ
45005@end smallexample
45006
1fddbabb
PA
45007In addition, segments and section descriptors cannot be mixed within a
45008single library element, and you must supply at least one segment or
45009section for each library.
45010
2268b414
JK
45011@node Library List Format for SVR4 Targets
45012@section Library List Format for SVR4 Targets
45013@cindex library list format, remote protocol
45014
45015On SVR4 platforms @value{GDBN} can use the symbol table of a dynamic loader
45016(e.g.@: @file{ld.so}) and normal memory operations to maintain a list of
45017shared libraries. Still a special library list provided by this packet is
45018more efficient for the @value{GDBN} remote protocol.
45019
45020The @samp{qXfer:libraries-svr4:read} packet returns an XML document which lists
45021loaded libraries and their SVR4 linker parameters. For each library on SVR4
45022target, the following parameters are reported:
45023
45024@itemize @minus
45025@item
45026@code{name}, the absolute file name from the @code{l_name} field of
45027@code{struct link_map}.
45028@item
45029@code{lm} with address of @code{struct link_map} used for TLS
45030(Thread Local Storage) access.
45031@item
45032@code{l_addr}, the displacement as read from the field @code{l_addr} of
45033@code{struct link_map}. For prelinked libraries this is not an absolute
45034memory address. It is a displacement of absolute memory address against
45035address the file was prelinked to during the library load.
45036@item
45037@code{l_ld}, which is memory address of the @code{PT_DYNAMIC} segment
45038@end itemize
45039
45040Additionally the single @code{main-lm} attribute specifies address of
45041@code{struct link_map} used for the main executable. This parameter is used
45042for TLS access and its presence is optional.
45043
45044@value{GDBN} must be linked with the Expat library to support XML
45045SVR4 library lists. @xref{Expat}.
45046
45047A simple memory map, with two loaded libraries (which do not use prelink),
45048looks like this:
45049
45050@smallexample
45051<library-list-svr4 version="1.0" main-lm="0xe4f8f8">
45052 <library name="/lib/ld-linux.so.2" lm="0xe4f51c" l_addr="0xe2d000"
45053 l_ld="0xe4eefc"/>
45054 <library name="/lib/libc.so.6" lm="0xe4fbe8" l_addr="0x154000"
db1ff28b 45055 l_ld="0x152350"/>
2268b414
JK
45056</library-list-svr>
45057@end smallexample
45058
45059The format of an SVR4 library list is described by this DTD:
45060
45061@smallexample
45062<!-- library-list-svr4: Root element with versioning -->
45063<!ELEMENT library-list-svr4 (library)*>
db1ff28b
JK
45064<!ATTLIST library-list-svr4 version CDATA #FIXED "1.0">
45065<!ATTLIST library-list-svr4 main-lm CDATA #IMPLIED>
2268b414 45066<!ELEMENT library EMPTY>
db1ff28b
JK
45067<!ATTLIST library name CDATA #REQUIRED>
45068<!ATTLIST library lm CDATA #REQUIRED>
45069<!ATTLIST library l_addr CDATA #REQUIRED>
45070<!ATTLIST library l_ld CDATA #REQUIRED>
2268b414
JK
45071@end smallexample
45072
79a6e687
BW
45073@node Memory Map Format
45074@section Memory Map Format
68437a39
DJ
45075@cindex memory map format
45076
45077To be able to write into flash memory, @value{GDBN} needs to obtain a
45078memory map from the target. This section describes the format of the
45079memory map.
45080
45081The memory map is obtained using the @samp{qXfer:memory-map:read}
45082(@pxref{qXfer memory map read}) packet and is an XML document that
9cceb671
DJ
45083lists memory regions.
45084
45085@value{GDBN} must be linked with the Expat library to support XML
45086memory maps. @xref{Expat}.
45087
45088The top-level structure of the document is shown below:
68437a39
DJ
45089
45090@smallexample
45091<?xml version="1.0"?>
45092<!DOCTYPE memory-map
45093 PUBLIC "+//IDN gnu.org//DTD GDB Memory Map V1.0//EN"
45094 "http://sourceware.org/gdb/gdb-memory-map.dtd">
45095<memory-map>
45096 region...
45097</memory-map>
45098@end smallexample
45099
45100Each region can be either:
45101
45102@itemize
45103
45104@item
45105A region of RAM starting at @var{addr} and extending for @var{length}
45106bytes from there:
45107
45108@smallexample
45109<memory type="ram" start="@var{addr}" length="@var{length}"/>
45110@end smallexample
45111
45112
45113@item
45114A region of read-only memory:
45115
45116@smallexample
45117<memory type="rom" start="@var{addr}" length="@var{length}"/>
45118@end smallexample
45119
45120
45121@item
45122A region of flash memory, with erasure blocks @var{blocksize}
45123bytes in length:
45124
45125@smallexample
45126<memory type="flash" start="@var{addr}" length="@var{length}">
45127 <property name="blocksize">@var{blocksize}</property>
45128</memory>
45129@end smallexample
45130
45131@end itemize
45132
45133Regions must not overlap. @value{GDBN} assumes that areas of memory not covered
45134by the memory map are RAM, and uses the ordinary @samp{M} and @samp{X}
45135packets to write to addresses in such ranges.
45136
45137The formal DTD for memory map format is given below:
45138
45139@smallexample
45140<!-- ................................................... -->
45141<!-- Memory Map XML DTD ................................ -->
45142<!-- File: memory-map.dtd .............................. -->
45143<!-- .................................... .............. -->
45144<!-- memory-map.dtd -->
45145<!-- memory-map: Root element with versioning -->
5f1ca24a 45146<!ELEMENT memory-map (memory)*>
68437a39 45147<!ATTLIST memory-map version CDATA #FIXED "1.0.0">
5f1ca24a 45148<!ELEMENT memory (property)*>
68437a39
DJ
45149<!-- memory: Specifies a memory region,
45150 and its type, or device. -->
5f1ca24a 45151<!ATTLIST memory type (ram|rom|flash) #REQUIRED
68437a39 45152 start CDATA #REQUIRED
5f1ca24a 45153 length CDATA #REQUIRED>
68437a39
DJ
45154<!-- property: Generic attribute tag -->
45155<!ELEMENT property (#PCDATA | property)*>
5f1ca24a 45156<!ATTLIST property name (blocksize) #REQUIRED>
68437a39
DJ
45157@end smallexample
45158
dc146f7c
VP
45159@node Thread List Format
45160@section Thread List Format
45161@cindex thread list format
45162
45163To efficiently update the list of threads and their attributes,
45164@value{GDBN} issues the @samp{qXfer:threads:read} packet
45165(@pxref{qXfer threads read}) and obtains the XML document with
45166the following structure:
45167
45168@smallexample
45169<?xml version="1.0"?>
45170<threads>
79efa585 45171 <thread id="id" core="0" name="name">
dc146f7c
VP
45172 ... description ...
45173 </thread>
45174</threads>
45175@end smallexample
45176
45177Each @samp{thread} element must have the @samp{id} attribute that
45178identifies the thread (@pxref{thread-id syntax}). The
45179@samp{core} attribute, if present, specifies which processor core
79efa585
SM
45180the thread was last executing on. The @samp{name} attribute, if
45181present, specifies the human-readable name of the thread. The content
45182of the of @samp{thread} element is interpreted as human-readable
f2ff95c5
KB
45183auxiliary information. The @samp{handle} attribute, if present,
45184is a hex encoded representation of the thread handle.
45185
dc146f7c 45186
b3b9301e
PA
45187@node Traceframe Info Format
45188@section Traceframe Info Format
45189@cindex traceframe info format
45190
45191To be able to know which objects in the inferior can be examined when
45192inspecting a tracepoint hit, @value{GDBN} needs to obtain the list of
45193memory ranges, registers and trace state variables that have been
45194collected in a traceframe.
45195
45196This list is obtained using the @samp{qXfer:traceframe-info:read}
45197(@pxref{qXfer traceframe info read}) packet and is an XML document.
45198
45199@value{GDBN} must be linked with the Expat library to support XML
45200traceframe info discovery. @xref{Expat}.
45201
45202The top-level structure of the document is shown below:
45203
45204@smallexample
45205<?xml version="1.0"?>
45206<!DOCTYPE traceframe-info
45207 PUBLIC "+//IDN gnu.org//DTD GDB Memory Map V1.0//EN"
45208 "http://sourceware.org/gdb/gdb-traceframe-info.dtd">
45209<traceframe-info>
45210 block...
45211</traceframe-info>
45212@end smallexample
45213
45214Each traceframe block can be either:
45215
45216@itemize
45217
45218@item
45219A region of collected memory starting at @var{addr} and extending for
45220@var{length} bytes from there:
45221
45222@smallexample
45223<memory start="@var{addr}" length="@var{length}"/>
45224@end smallexample
45225
28a93511
YQ
45226@item
45227A block indicating trace state variable numbered @var{number} has been
45228collected:
45229
45230@smallexample
45231<tvar id="@var{number}"/>
45232@end smallexample
45233
b3b9301e
PA
45234@end itemize
45235
45236The formal DTD for the traceframe info format is given below:
45237
45238@smallexample
28a93511 45239<!ELEMENT traceframe-info (memory | tvar)* >
b3b9301e
PA
45240<!ATTLIST traceframe-info version CDATA #FIXED "1.0">
45241
45242<!ELEMENT memory EMPTY>
45243<!ATTLIST memory start CDATA #REQUIRED
45244 length CDATA #REQUIRED>
28a93511
YQ
45245<!ELEMENT tvar>
45246<!ATTLIST tvar id CDATA #REQUIRED>
b3b9301e
PA
45247@end smallexample
45248
2ae8c8e7
MM
45249@node Branch Trace Format
45250@section Branch Trace Format
45251@cindex branch trace format
45252
45253In order to display the branch trace of an inferior thread,
45254@value{GDBN} needs to obtain the list of branches. This list is
45255represented as list of sequential code blocks that are connected via
45256branches. The code in each block has been executed sequentially.
45257
45258This list is obtained using the @samp{qXfer:btrace:read}
45259(@pxref{qXfer btrace read}) packet and is an XML document.
45260
45261@value{GDBN} must be linked with the Expat library to support XML
45262traceframe info discovery. @xref{Expat}.
45263
45264The top-level structure of the document is shown below:
45265
45266@smallexample
45267<?xml version="1.0"?>
45268<!DOCTYPE btrace
45269 PUBLIC "+//IDN gnu.org//DTD GDB Branch Trace V1.0//EN"
45270 "http://sourceware.org/gdb/gdb-btrace.dtd">
45271<btrace>
45272 block...
45273</btrace>
45274@end smallexample
45275
45276@itemize
45277
45278@item
45279A block of sequentially executed instructions starting at @var{begin}
45280and ending at @var{end}:
45281
45282@smallexample
45283<block begin="@var{begin}" end="@var{end}"/>
45284@end smallexample
45285
45286@end itemize
45287
45288The formal DTD for the branch trace format is given below:
45289
45290@smallexample
b20a6524 45291<!ELEMENT btrace (block* | pt) >
2ae8c8e7
MM
45292<!ATTLIST btrace version CDATA #FIXED "1.0">
45293
45294<!ELEMENT block EMPTY>
45295<!ATTLIST block begin CDATA #REQUIRED
45296 end CDATA #REQUIRED>
b20a6524
MM
45297
45298<!ELEMENT pt (pt-config?, raw?)>
45299
45300<!ELEMENT pt-config (cpu?)>
45301
45302<!ELEMENT cpu EMPTY>
45303<!ATTLIST cpu vendor CDATA #REQUIRED
45304 family CDATA #REQUIRED
45305 model CDATA #REQUIRED
45306 stepping CDATA #REQUIRED>
45307
45308<!ELEMENT raw (#PCDATA)>
2ae8c8e7
MM
45309@end smallexample
45310
f4abbc16
MM
45311@node Branch Trace Configuration Format
45312@section Branch Trace Configuration Format
45313@cindex branch trace configuration format
45314
45315For each inferior thread, @value{GDBN} can obtain the branch trace
45316configuration using the @samp{qXfer:btrace-conf:read}
45317(@pxref{qXfer btrace-conf read}) packet.
45318
45319The configuration describes the branch trace format and configuration
d33501a5
MM
45320settings for that format. The following information is described:
45321
45322@table @code
45323@item bts
45324This thread uses the @dfn{Branch Trace Store} (@acronym{BTS}) format.
45325@table @code
45326@item size
45327The size of the @acronym{BTS} ring buffer in bytes.
45328@end table
b20a6524 45329@item pt
bc504a31 45330This thread uses the @dfn{Intel Processor Trace} (@acronym{Intel
b20a6524
MM
45331PT}) format.
45332@table @code
45333@item size
bc504a31 45334The size of the @acronym{Intel PT} ring buffer in bytes.
b20a6524 45335@end table
d33501a5 45336@end table
f4abbc16
MM
45337
45338@value{GDBN} must be linked with the Expat library to support XML
45339branch trace configuration discovery. @xref{Expat}.
45340
45341The formal DTD for the branch trace configuration format is given below:
45342
45343@smallexample
b20a6524 45344<!ELEMENT btrace-conf (bts?, pt?)>
f4abbc16
MM
45345<!ATTLIST btrace-conf version CDATA #FIXED "1.0">
45346
45347<!ELEMENT bts EMPTY>
d33501a5 45348<!ATTLIST bts size CDATA #IMPLIED>
b20a6524
MM
45349
45350<!ELEMENT pt EMPTY>
45351<!ATTLIST pt size CDATA #IMPLIED>
f4abbc16
MM
45352@end smallexample
45353
f418dd93
DJ
45354@include agentexpr.texi
45355
23181151
DJ
45356@node Target Descriptions
45357@appendix Target Descriptions
45358@cindex target descriptions
45359
23181151
DJ
45360One of the challenges of using @value{GDBN} to debug embedded systems
45361is that there are so many minor variants of each processor
45362architecture in use. It is common practice for vendors to start with
eb17f351 45363a standard processor core --- ARM, PowerPC, or @acronym{MIPS}, for example ---
23181151
DJ
45364and then make changes to adapt it to a particular market niche. Some
45365architectures have hundreds of variants, available from dozens of
45366vendors. This leads to a number of problems:
45367
45368@itemize @bullet
45369@item
45370With so many different customized processors, it is difficult for
45371the @value{GDBN} maintainers to keep up with the changes.
45372@item
45373Since individual variants may have short lifetimes or limited
45374audiences, it may not be worthwhile to carry information about every
45375variant in the @value{GDBN} source tree.
45376@item
45377When @value{GDBN} does support the architecture of the embedded system
45378at hand, the task of finding the correct architecture name to give the
45379@command{set architecture} command can be error-prone.
45380@end itemize
45381
45382To address these problems, the @value{GDBN} remote protocol allows a
45383target system to not only identify itself to @value{GDBN}, but to
45384actually describe its own features. This lets @value{GDBN} support
45385processor variants it has never seen before --- to the extent that the
45386descriptions are accurate, and that @value{GDBN} understands them.
45387
9cceb671
DJ
45388@value{GDBN} must be linked with the Expat library to support XML
45389target descriptions. @xref{Expat}.
123dc839 45390
23181151
DJ
45391@menu
45392* Retrieving Descriptions:: How descriptions are fetched from a target.
45393* Target Description Format:: The contents of a target description.
123dc839
DJ
45394* Predefined Target Types:: Standard types available for target
45395 descriptions.
81516450 45396* Enum Target Types:: How to define enum target types.
123dc839 45397* Standard Target Features:: Features @value{GDBN} knows about.
23181151
DJ
45398@end menu
45399
45400@node Retrieving Descriptions
45401@section Retrieving Descriptions
45402
45403Target descriptions can be read from the target automatically, or
45404specified by the user manually. The default behavior is to read the
45405description from the target. @value{GDBN} retrieves it via the remote
45406protocol using @samp{qXfer} requests (@pxref{General Query Packets,
45407qXfer}). The @var{annex} in the @samp{qXfer} packet will be
45408@samp{target.xml}. The contents of the @samp{target.xml} annex are an
45409XML document, of the form described in @ref{Target Description
45410Format}.
45411
45412Alternatively, you can specify a file to read for the target description.
45413If a file is set, the target will not be queried. The commands to
45414specify a file are:
45415
45416@table @code
45417@cindex set tdesc filename
45418@item set tdesc filename @var{path}
45419Read the target description from @var{path}.
45420
45421@cindex unset tdesc filename
45422@item unset tdesc filename
45423Do not read the XML target description from a file. @value{GDBN}
45424will use the description supplied by the current target.
45425
45426@cindex show tdesc filename
45427@item show tdesc filename
45428Show the filename to read for a target description, if any.
45429@end table
45430
45431
45432@node Target Description Format
45433@section Target Description Format
45434@cindex target descriptions, XML format
45435
45436A target description annex is an @uref{http://www.w3.org/XML/, XML}
45437document which complies with the Document Type Definition provided in
45438the @value{GDBN} sources in @file{gdb/features/gdb-target.dtd}. This
45439means you can use generally available tools like @command{xmllint} to
45440check that your feature descriptions are well-formed and valid.
45441However, to help people unfamiliar with XML write descriptions for
45442their targets, we also describe the grammar here.
45443
123dc839
DJ
45444Target descriptions can identify the architecture of the remote target
45445and (for some architectures) provide information about custom register
08d16641
PA
45446sets. They can also identify the OS ABI of the remote target.
45447@value{GDBN} can use this information to autoconfigure for your
123dc839 45448target, or to warn you if you connect to an unsupported target.
23181151
DJ
45449
45450Here is a simple target description:
45451
123dc839 45452@smallexample
1780a0ed 45453<target version="1.0">
23181151
DJ
45454 <architecture>i386:x86-64</architecture>
45455</target>
123dc839 45456@end smallexample
23181151
DJ
45457
45458@noindent
45459This minimal description only says that the target uses
45460the x86-64 architecture.
45461
123dc839
DJ
45462A target description has the following overall form, with [ ] marking
45463optional elements and @dots{} marking repeatable elements. The elements
45464are explained further below.
23181151 45465
123dc839 45466@smallexample
23181151
DJ
45467<?xml version="1.0"?>
45468<!DOCTYPE target SYSTEM "gdb-target.dtd">
1780a0ed 45469<target version="1.0">
123dc839 45470 @r{[}@var{architecture}@r{]}
08d16641 45471 @r{[}@var{osabi}@r{]}
e35359c5 45472 @r{[}@var{compatible}@r{]}
123dc839 45473 @r{[}@var{feature}@dots{}@r{]}
23181151 45474</target>
123dc839 45475@end smallexample
23181151
DJ
45476
45477@noindent
45478The description is generally insensitive to whitespace and line
45479breaks, under the usual common-sense rules. The XML version
45480declaration and document type declaration can generally be omitted
45481(@value{GDBN} does not require them), but specifying them may be
1780a0ed
DJ
45482useful for XML validation tools. The @samp{version} attribute for
45483@samp{<target>} may also be omitted, but we recommend
45484including it; if future versions of @value{GDBN} use an incompatible
45485revision of @file{gdb-target.dtd}, they will detect and report
45486the version mismatch.
23181151 45487
108546a0
DJ
45488@subsection Inclusion
45489@cindex target descriptions, inclusion
45490@cindex XInclude
45491@ifnotinfo
45492@cindex <xi:include>
45493@end ifnotinfo
45494
45495It can sometimes be valuable to split a target description up into
45496several different annexes, either for organizational purposes, or to
45497share files between different possible target descriptions. You can
45498divide a description into multiple files by replacing any element of
45499the target description with an inclusion directive of the form:
45500
123dc839 45501@smallexample
108546a0 45502<xi:include href="@var{document}"/>
123dc839 45503@end smallexample
108546a0
DJ
45504
45505@noindent
45506When @value{GDBN} encounters an element of this form, it will retrieve
45507the named XML @var{document}, and replace the inclusion directive with
45508the contents of that document. If the current description was read
45509using @samp{qXfer}, then so will be the included document;
45510@var{document} will be interpreted as the name of an annex. If the
45511current description was read from a file, @value{GDBN} will look for
45512@var{document} as a file in the same directory where it found the
45513original description.
45514
123dc839
DJ
45515@subsection Architecture
45516@cindex <architecture>
45517
45518An @samp{<architecture>} element has this form:
45519
45520@smallexample
45521 <architecture>@var{arch}</architecture>
45522@end smallexample
45523
e35359c5
UW
45524@var{arch} is one of the architectures from the set accepted by
45525@code{set architecture} (@pxref{Targets, ,Specifying a Debugging Target}).
123dc839 45526
08d16641
PA
45527@subsection OS ABI
45528@cindex @code{<osabi>}
45529
45530This optional field was introduced in @value{GDBN} version 7.0.
45531Previous versions of @value{GDBN} ignore it.
45532
45533An @samp{<osabi>} element has this form:
45534
45535@smallexample
45536 <osabi>@var{abi-name}</osabi>
45537@end smallexample
45538
45539@var{abi-name} is an OS ABI name from the same selection accepted by
45540@w{@code{set osabi}} (@pxref{ABI, ,Configuring the Current ABI}).
45541
e35359c5
UW
45542@subsection Compatible Architecture
45543@cindex @code{<compatible>}
45544
45545This optional field was introduced in @value{GDBN} version 7.0.
45546Previous versions of @value{GDBN} ignore it.
45547
45548A @samp{<compatible>} element has this form:
45549
45550@smallexample
45551 <compatible>@var{arch}</compatible>
45552@end smallexample
45553
45554@var{arch} is one of the architectures from the set accepted by
45555@code{set architecture} (@pxref{Targets, ,Specifying a Debugging Target}).
45556
45557A @samp{<compatible>} element is used to specify that the target
45558is able to run binaries in some other than the main target architecture
45559given by the @samp{<architecture>} element. For example, on the
45560Cell Broadband Engine, the main architecture is @code{powerpc:common}
45561or @code{powerpc:common64}, but the system is able to run binaries
45562in the @code{spu} architecture as well. The way to describe this
45563capability with @samp{<compatible>} is as follows:
45564
45565@smallexample
45566 <architecture>powerpc:common</architecture>
45567 <compatible>spu</compatible>
45568@end smallexample
45569
123dc839
DJ
45570@subsection Features
45571@cindex <feature>
45572
45573Each @samp{<feature>} describes some logical portion of the target
45574system. Features are currently used to describe available CPU
45575registers and the types of their contents. A @samp{<feature>} element
45576has this form:
45577
45578@smallexample
45579<feature name="@var{name}">
45580 @r{[}@var{type}@dots{}@r{]}
45581 @var{reg}@dots{}
45582</feature>
45583@end smallexample
45584
45585@noindent
45586Each feature's name should be unique within the description. The name
45587of a feature does not matter unless @value{GDBN} has some special
45588knowledge of the contents of that feature; if it does, the feature
45589should have its standard name. @xref{Standard Target Features}.
45590
45591@subsection Types
45592
45593Any register's value is a collection of bits which @value{GDBN} must
45594interpret. The default interpretation is a two's complement integer,
45595but other types can be requested by name in the register description.
45596Some predefined types are provided by @value{GDBN} (@pxref{Predefined
81516450
DE
45597Target Types}), and the description can define additional composite
45598and enum types.
123dc839
DJ
45599
45600Each type element must have an @samp{id} attribute, which gives
45601a unique (within the containing @samp{<feature>}) name to the type.
45602Types must be defined before they are used.
45603
45604@cindex <vector>
45605Some targets offer vector registers, which can be treated as arrays
45606of scalar elements. These types are written as @samp{<vector>} elements,
45607specifying the array element type, @var{type}, and the number of elements,
45608@var{count}:
45609
45610@smallexample
45611<vector id="@var{id}" type="@var{type}" count="@var{count}"/>
45612@end smallexample
45613
45614@cindex <union>
45615If a register's value is usefully viewed in multiple ways, define it
45616with a union type containing the useful representations. The
45617@samp{<union>} element contains one or more @samp{<field>} elements,
45618each of which has a @var{name} and a @var{type}:
45619
45620@smallexample
45621<union id="@var{id}">
45622 <field name="@var{name}" type="@var{type}"/>
45623 @dots{}
45624</union>
45625@end smallexample
45626
f5dff777 45627@cindex <struct>
81516450 45628@cindex <flags>
f5dff777 45629If a register's value is composed from several separate values, define
81516450
DE
45630it with either a structure type or a flags type.
45631A flags type may only contain bitfields.
45632A structure type may either contain only bitfields or contain no bitfields.
45633If the value contains only bitfields, its total size in bytes must be
45634specified.
45635
45636Non-bitfield values have a @var{name} and @var{type}.
f5dff777
DJ
45637
45638@smallexample
81516450
DE
45639<struct id="@var{id}">
45640 <field name="@var{name}" type="@var{type}"/>
f5dff777
DJ
45641 @dots{}
45642</struct>
45643@end smallexample
45644
81516450
DE
45645Both @var{name} and @var{type} values are required.
45646No implicit padding is added.
45647
45648Bitfield values have a @var{name}, @var{start}, @var{end} and @var{type}.
f5dff777
DJ
45649
45650@smallexample
81516450
DE
45651<struct id="@var{id}" size="@var{size}">
45652 <field name="@var{name}" start="@var{start}" end="@var{end}" type="@var{type}"/>
f5dff777
DJ
45653 @dots{}
45654</struct>
45655@end smallexample
45656
f5dff777
DJ
45657@smallexample
45658<flags id="@var{id}" size="@var{size}">
81516450 45659 <field name="@var{name}" start="@var{start}" end="@var{end}" type="@var{type}"/>
f5dff777
DJ
45660 @dots{}
45661</flags>
45662@end smallexample
45663
81516450
DE
45664The @var{name} value is required.
45665Bitfield values may be named with the empty string, @samp{""},
45666in which case the field is ``filler'' and its value is not printed.
45667Not all bits need to be specified, so ``filler'' fields are optional.
45668
ee8da4b8
DE
45669The @var{start} and @var{end} values are required, and @var{type}
45670is optional.
81516450
DE
45671The field's @var{start} must be less than or equal to its @var{end},
45672and zero represents the least significant bit.
81516450 45673
ee8da4b8
DE
45674The default value of @var{type} is @code{bool} for single bit fields,
45675and an unsigned integer otherwise.
81516450
DE
45676
45677Which to choose? Structures or flags?
45678
45679Registers defined with @samp{flags} have these advantages over
45680defining them with @samp{struct}:
45681
45682@itemize @bullet
45683@item
45684Arithmetic may be performed on them as if they were integers.
45685@item
45686They are printed in a more readable fashion.
45687@end itemize
45688
45689Registers defined with @samp{struct} have one advantage over
45690defining them with @samp{flags}:
45691
45692@itemize @bullet
45693@item
45694One can fetch individual fields like in @samp{C}.
45695
45696@smallexample
45697(gdb) print $my_struct_reg.field3
45698$1 = 42
45699@end smallexample
45700
45701@end itemize
45702
123dc839
DJ
45703@subsection Registers
45704@cindex <reg>
45705
45706Each register is represented as an element with this form:
45707
45708@smallexample
45709<reg name="@var{name}"
45710 bitsize="@var{size}"
45711 @r{[}regnum="@var{num}"@r{]}
45712 @r{[}save-restore="@var{save-restore}"@r{]}
45713 @r{[}type="@var{type}"@r{]}
45714 @r{[}group="@var{group}"@r{]}/>
45715@end smallexample
45716
45717@noindent
45718The components are as follows:
45719
45720@table @var
45721
45722@item name
45723The register's name; it must be unique within the target description.
45724
45725@item bitsize
45726The register's size, in bits.
45727
45728@item regnum
45729The register's number. If omitted, a register's number is one greater
45730than that of the previous register (either in the current feature or in
177b42fe 45731a preceding feature); the first register in the target description
123dc839
DJ
45732defaults to zero. This register number is used to read or write
45733the register; e.g.@: it is used in the remote @code{p} and @code{P}
45734packets, and registers appear in the @code{g} and @code{G} packets
45735in order of increasing register number.
45736
45737@item save-restore
45738Whether the register should be preserved across inferior function
45739calls; this must be either @code{yes} or @code{no}. The default is
45740@code{yes}, which is appropriate for most registers except for
45741some system control registers; this is not related to the target's
45742ABI.
45743
45744@item type
697aa1b7 45745The type of the register. It may be a predefined type, a type
123dc839
DJ
45746defined in the current feature, or one of the special types @code{int}
45747and @code{float}. @code{int} is an integer type of the correct size
45748for @var{bitsize}, and @code{float} is a floating point type (in the
45749architecture's normal floating point format) of the correct size for
45750@var{bitsize}. The default is @code{int}.
45751
45752@item group
cef0f868
SH
45753The register group to which this register belongs. It can be one of the
45754standard register groups @code{general}, @code{float}, @code{vector} or an
45755arbitrary string. Group names should be limited to alphanumeric characters.
45756If a group name is made up of multiple words the words may be separated by
45757hyphens; e.g.@: @code{special-group} or @code{ultra-special-group}. If no
45758@var{group} is specified, @value{GDBN} will not display the register in
45759@code{info registers}.
123dc839
DJ
45760
45761@end table
45762
45763@node Predefined Target Types
45764@section Predefined Target Types
45765@cindex target descriptions, predefined types
45766
45767Type definitions in the self-description can build up composite types
45768from basic building blocks, but can not define fundamental types. Instead,
45769standard identifiers are provided by @value{GDBN} for the fundamental
45770types. The currently supported types are:
45771
45772@table @code
45773
81516450
DE
45774@item bool
45775Boolean type, occupying a single bit.
45776
123dc839
DJ
45777@item int8
45778@itemx int16
d1908f2d 45779@itemx int24
123dc839
DJ
45780@itemx int32
45781@itemx int64
7cc46491 45782@itemx int128
123dc839
DJ
45783Signed integer types holding the specified number of bits.
45784
45785@item uint8
45786@itemx uint16
d1908f2d 45787@itemx uint24
123dc839
DJ
45788@itemx uint32
45789@itemx uint64
7cc46491 45790@itemx uint128
123dc839
DJ
45791Unsigned integer types holding the specified number of bits.
45792
45793@item code_ptr
45794@itemx data_ptr
45795Pointers to unspecified code and data. The program counter and
45796any dedicated return address register may be marked as code
45797pointers; printing a code pointer converts it into a symbolic
45798address. The stack pointer and any dedicated address registers
45799may be marked as data pointers.
45800
6e3bbd1a
PB
45801@item ieee_single
45802Single precision IEEE floating point.
45803
45804@item ieee_double
45805Double precision IEEE floating point.
45806
123dc839
DJ
45807@item arm_fpa_ext
45808The 12-byte extended precision format used by ARM FPA registers.
45809
075b51b7
L
45810@item i387_ext
45811The 10-byte extended precision format used by x87 registers.
45812
45813@item i386_eflags
4581432bit @sc{eflags} register used by x86.
45815
45816@item i386_mxcsr
4581732bit @sc{mxcsr} register used by x86.
45818
123dc839
DJ
45819@end table
45820
81516450
DE
45821@node Enum Target Types
45822@section Enum Target Types
45823@cindex target descriptions, enum types
45824
45825Enum target types are useful in @samp{struct} and @samp{flags}
45826register descriptions. @xref{Target Description Format}.
45827
45828Enum types have a name, size and a list of name/value pairs.
45829
45830@smallexample
45831<enum id="@var{id}" size="@var{size}">
45832 <evalue name="@var{name}" value="@var{value}"/>
45833 @dots{}
45834</enum>
45835@end smallexample
45836
45837Enums must be defined before they are used.
45838
45839@smallexample
45840<enum id="levels_type" size="4">
45841 <evalue name="low" value="0"/>
45842 <evalue name="high" value="1"/>
45843</enum>
45844<flags id="flags_type" size="4">
45845 <field name="X" start="0"/>
45846 <field name="LEVEL" start="1" end="1" type="levels_type"/>
45847</flags>
45848<reg name="flags" bitsize="32" type="flags_type"/>
45849@end smallexample
45850
45851Given that description, a value of 3 for the @samp{flags} register
45852would be printed as:
45853
45854@smallexample
45855(gdb) info register flags
45856flags 0x3 [ X LEVEL=high ]
45857@end smallexample
45858
123dc839
DJ
45859@node Standard Target Features
45860@section Standard Target Features
45861@cindex target descriptions, standard features
45862
45863A target description must contain either no registers or all the
45864target's registers. If the description contains no registers, then
45865@value{GDBN} will assume a default register layout, selected based on
45866the architecture. If the description contains any registers, the
45867default layout will not be used; the standard registers must be
45868described in the target description, in such a way that @value{GDBN}
45869can recognize them.
45870
45871This is accomplished by giving specific names to feature elements
45872which contain standard registers. @value{GDBN} will look for features
45873with those names and verify that they contain the expected registers;
45874if any known feature is missing required registers, or if any required
45875feature is missing, @value{GDBN} will reject the target
45876description. You can add additional registers to any of the
45877standard features --- @value{GDBN} will display them just as if
45878they were added to an unrecognized feature.
45879
45880This section lists the known features and their expected contents.
45881Sample XML documents for these features are included in the
45882@value{GDBN} source tree, in the directory @file{gdb/features}.
45883
45884Names recognized by @value{GDBN} should include the name of the
45885company or organization which selected the name, and the overall
45886architecture to which the feature applies; so e.g.@: the feature
45887containing ARM core registers is named @samp{org.gnu.gdb.arm.core}.
45888
ff6f572f
DJ
45889The names of registers are not case sensitive for the purpose
45890of recognizing standard features, but @value{GDBN} will only display
45891registers using the capitalization used in the description.
45892
e9c17194 45893@menu
430ed3f0 45894* AArch64 Features::
ad0a504f 45895* ARC Features::
e9c17194 45896* ARM Features::
3bb8d5c3 45897* i386 Features::
164224e9 45898* MicroBlaze Features::
1e26b4f8 45899* MIPS Features::
e9c17194 45900* M68K Features::
a28d8e50 45901* NDS32 Features::
a1217d97 45902* Nios II Features::
a994fec4 45903* OpenRISC 1000 Features::
1e26b4f8 45904* PowerPC Features::
b5ffee31 45905* RISC-V Features::
e3ec872f 45906* RX Features::
4ac33720 45907* S/390 and System z Features::
3f7b46f2 45908* Sparc Features::
224bbe49 45909* TIC6x Features::
e9c17194
VP
45910@end menu
45911
45912
430ed3f0
MS
45913@node AArch64 Features
45914@subsection AArch64 Features
45915@cindex target descriptions, AArch64 features
45916
45917The @samp{org.gnu.gdb.aarch64.core} feature is required for AArch64
45918targets. It should contain registers @samp{x0} through @samp{x30},
45919@samp{sp}, @samp{pc}, and @samp{cpsr}.
45920
45921The @samp{org.gnu.gdb.aarch64.fpu} feature is optional. If present,
45922it should contain registers @samp{v0} through @samp{v31}, @samp{fpsr},
45923and @samp{fpcr}.
45924
95228a0d
AH
45925The @samp{org.gnu.gdb.aarch64.sve} feature is optional. If present,
45926it should contain registers @samp{z0} through @samp{z31}, @samp{p0}
45927through @samp{p15}, @samp{ffr} and @samp{vg}.
45928
6dc0ebde
AH
45929The @samp{org.gnu.gdb.aarch64.pauth} feature is optional. If present,
45930it should contain registers @samp{pauth_dmask} and @samp{pauth_cmask}.
45931
ad0a504f
AK
45932@node ARC Features
45933@subsection ARC Features
45934@cindex target descriptions, ARC Features
45935
995d3a19
SV
45936ARC processors are so configurable that even core registers and their numbers
45937are not predetermined completely. Moreover, @emph{flags} and @emph{PC}
45938registers, which are important to @value{GDBN}, are not ``core'' registers in
45939ARC. Therefore, there are two features that their presence is mandatory:
45940@samp{org.gnu.gdb.arc.core} and @samp{org.gnu.gdb.arc.aux}.
45941
45942The @samp{org.gnu.gdb.arc.core} feature is required for all targets. It must
45943contain registers:
45944
45945@itemize @minus
45946@item
45947@samp{r0} through @samp{r25} for normal register file targets.
45948@item
45949@samp{r0} through @samp{r3}, and @samp{r10} through @samp{r15} for reduced
45950register file targets.
45951@item
45952@samp{gp}, @samp{fp}, @samp{sp}, @samp{r30}@footnote{Not necessary for ARCv1.},
45953@samp{blink}, @samp{lp_count}, @samp{pcl}.
45954@end itemize
45955
45956In case of an ARCompact target (ARCv1 ISA), the @samp{org.gnu.gdb.arc.core}
45957feature may contain registers @samp{ilink1} and @samp{ilink2}. While in case
45958of ARC EM and ARC HS targets (ARCv2 ISA), register @samp{ilink} may be present.
45959The difference between ARCv1 and ARCv2 is the naming of registers @emph{29th}
45960and @emph{30th}. They are called @samp{ilink1} and @samp{ilink2} for ARCv1 and
45961are optional. For ARCv2, they are called @samp{ilink} and @samp{r30} and only
45962@samp{ilink} is optional. The optionality of @samp{ilink*} registers is
45963because of their inaccessibility during user space debugging sessions.
45964
45965Extension core registers @samp{r32} through @samp{r59} are optional and their
45966existence depends on the configuration. When debugging GNU/Linux applications,
45967i.e.@: user space debugging, these core registers are not available.
45968
fdd8731b
SV
45969The @samp{org.gnu.gdb.arc.aux} feature is required for all ARC targets. Here
45970is the list of registers pertinent to this feature:
45971
45972@itemize @minus
45973@item
45974mandatory: @samp{pc} and @samp{status32}.
45975@item
45976optional: @samp{lp_start}, @samp{lp_end}, and @samp{bta}.
45977@end itemize
ad0a504f 45978
e9c17194 45979@node ARM Features
123dc839
DJ
45980@subsection ARM Features
45981@cindex target descriptions, ARM features
45982
9779414d
DJ
45983The @samp{org.gnu.gdb.arm.core} feature is required for non-M-profile
45984ARM targets.
123dc839
DJ
45985It should contain registers @samp{r0} through @samp{r13}, @samp{sp},
45986@samp{lr}, @samp{pc}, and @samp{cpsr}.
45987
9779414d
DJ
45988For M-profile targets (e.g. Cortex-M3), the @samp{org.gnu.gdb.arm.core}
45989feature is replaced by @samp{org.gnu.gdb.arm.m-profile}. It should contain
45990registers @samp{r0} through @samp{r13}, @samp{sp}, @samp{lr}, @samp{pc},
45991and @samp{xpsr}.
45992
123dc839
DJ
45993The @samp{org.gnu.gdb.arm.fpa} feature is optional. If present, it
45994should contain registers @samp{f0} through @samp{f7} and @samp{fps}.
45995
ff6f572f
DJ
45996The @samp{org.gnu.gdb.xscale.iwmmxt} feature is optional. If present,
45997it should contain at least registers @samp{wR0} through @samp{wR15} and
45998@samp{wCGR0} through @samp{wCGR3}. The @samp{wCID}, @samp{wCon},
45999@samp{wCSSF}, and @samp{wCASF} registers are optional.
23181151 46000
58d6951d
DJ
46001The @samp{org.gnu.gdb.arm.vfp} feature is optional. If present, it
46002should contain at least registers @samp{d0} through @samp{d15}. If
46003they are present, @samp{d16} through @samp{d31} should also be included.
46004@value{GDBN} will synthesize the single-precision registers from
46005halves of the double-precision registers.
46006
46007The @samp{org.gnu.gdb.arm.neon} feature is optional. It does not
46008need to contain registers; it instructs @value{GDBN} to display the
46009VFP double-precision registers as vectors and to synthesize the
46010quad-precision registers from pairs of double-precision registers.
46011If this feature is present, @samp{org.gnu.gdb.arm.vfp} must also
46012be present and include 32 double-precision registers.
46013
3bb8d5c3
L
46014@node i386 Features
46015@subsection i386 Features
46016@cindex target descriptions, i386 features
46017
46018The @samp{org.gnu.gdb.i386.core} feature is required for i386/amd64
46019targets. It should describe the following registers:
46020
46021@itemize @minus
46022@item
46023@samp{eax} through @samp{edi} plus @samp{eip} for i386
46024@item
46025@samp{rax} through @samp{r15} plus @samp{rip} for amd64
46026@item
46027@samp{eflags}, @samp{cs}, @samp{ss}, @samp{ds}, @samp{es},
46028@samp{fs}, @samp{gs}
46029@item
46030@samp{st0} through @samp{st7}
46031@item
46032@samp{fctrl}, @samp{fstat}, @samp{ftag}, @samp{fiseg}, @samp{fioff},
46033@samp{foseg}, @samp{fooff} and @samp{fop}
46034@end itemize
46035
46036The register sets may be different, depending on the target.
46037
3a13a53b 46038The @samp{org.gnu.gdb.i386.sse} feature is optional. It should
3bb8d5c3
L
46039describe registers:
46040
46041@itemize @minus
46042@item
46043@samp{xmm0} through @samp{xmm7} for i386
46044@item
46045@samp{xmm0} through @samp{xmm15} for amd64
46046@item
46047@samp{mxcsr}
46048@end itemize
46049
3a13a53b
L
46050The @samp{org.gnu.gdb.i386.avx} feature is optional and requires the
46051@samp{org.gnu.gdb.i386.sse} feature. It should
f68eb612
L
46052describe the upper 128 bits of @sc{ymm} registers:
46053
46054@itemize @minus
46055@item
46056@samp{ymm0h} through @samp{ymm7h} for i386
46057@item
46058@samp{ymm0h} through @samp{ymm15h} for amd64
f68eb612
L
46059@end itemize
46060
bc504a31 46061The @samp{org.gnu.gdb.i386.mpx} is an optional feature representing Intel
ca8941bb
WT
46062Memory Protection Extension (MPX). It should describe the following registers:
46063
46064@itemize @minus
46065@item
46066@samp{bnd0raw} through @samp{bnd3raw} for i386 and amd64.
46067@item
46068@samp{bndcfgu} and @samp{bndstatus} for i386 and amd64.
46069@end itemize
46070
3bb8d5c3
L
46071The @samp{org.gnu.gdb.i386.linux} feature is optional. It should
46072describe a single register, @samp{orig_eax}.
46073
2735833d
WT
46074The @samp{org.gnu.gdb.i386.segments} feature is optional. It should
46075describe two system registers: @samp{fs_base} and @samp{gs_base}.
46076
01f9f808
MS
46077The @samp{org.gnu.gdb.i386.avx512} feature is optional and requires the
46078@samp{org.gnu.gdb.i386.avx} feature. It should
46079describe additional @sc{xmm} registers:
46080
46081@itemize @minus
46082@item
46083@samp{xmm16h} through @samp{xmm31h}, only valid for amd64.
46084@end itemize
46085
46086It should describe the upper 128 bits of additional @sc{ymm} registers:
46087
46088@itemize @minus
46089@item
46090@samp{ymm16h} through @samp{ymm31h}, only valid for amd64.
46091@end itemize
46092
46093It should
46094describe the upper 256 bits of @sc{zmm} registers:
46095
46096@itemize @minus
46097@item
46098@samp{zmm0h} through @samp{zmm7h} for i386.
46099@item
46100@samp{zmm0h} through @samp{zmm15h} for amd64.
46101@end itemize
46102
46103It should
46104describe the additional @sc{zmm} registers:
46105
46106@itemize @minus
46107@item
46108@samp{zmm16h} through @samp{zmm31h}, only valid for amd64.
46109@end itemize
46110
51547df6
MS
46111The @samp{org.gnu.gdb.i386.pkeys} feature is optional. It should
46112describe a single register, @samp{pkru}. It is a 32-bit register
46113valid for i386 and amd64.
46114
164224e9
ME
46115@node MicroBlaze Features
46116@subsection MicroBlaze Features
46117@cindex target descriptions, MicroBlaze features
46118
46119The @samp{org.gnu.gdb.microblaze.core} feature is required for MicroBlaze
46120targets. It should contain registers @samp{r0} through @samp{r31},
46121@samp{rpc}, @samp{rmsr}, @samp{rear}, @samp{resr}, @samp{rfsr}, @samp{rbtr},
46122@samp{rpvr}, @samp{rpvr1} through @samp{rpvr11}, @samp{redr}, @samp{rpid},
46123@samp{rzpr}, @samp{rtlbx}, @samp{rtlbsx}, @samp{rtlblo}, and @samp{rtlbhi}.
46124
46125The @samp{org.gnu.gdb.microblaze.stack-protect} feature is optional.
46126If present, it should contain registers @samp{rshr} and @samp{rslr}
46127
1e26b4f8 46128@node MIPS Features
eb17f351
EZ
46129@subsection @acronym{MIPS} Features
46130@cindex target descriptions, @acronym{MIPS} features
f8b73d13 46131
eb17f351 46132The @samp{org.gnu.gdb.mips.cpu} feature is required for @acronym{MIPS} targets.
f8b73d13
DJ
46133It should contain registers @samp{r0} through @samp{r31}, @samp{lo},
46134@samp{hi}, and @samp{pc}. They may be 32-bit or 64-bit depending
46135on the target.
46136
46137The @samp{org.gnu.gdb.mips.cp0} feature is also required. It should
46138contain at least the @samp{status}, @samp{badvaddr}, and @samp{cause}
46139registers. They may be 32-bit or 64-bit depending on the target.
46140
46141The @samp{org.gnu.gdb.mips.fpu} feature is currently required, though
46142it may be optional in a future version of @value{GDBN}. It should
46143contain registers @samp{f0} through @samp{f31}, @samp{fcsr}, and
46144@samp{fir}. They may be 32-bit or 64-bit depending on the target.
46145
1faeff08
MR
46146The @samp{org.gnu.gdb.mips.dsp} feature is optional. It should
46147contain registers @samp{hi1} through @samp{hi3}, @samp{lo1} through
46148@samp{lo3}, and @samp{dspctl}. The @samp{dspctl} register should
46149be 32-bit and the rest may be 32-bit or 64-bit depending on the target.
46150
822b6570
DJ
46151The @samp{org.gnu.gdb.mips.linux} feature is optional. It should
46152contain a single register, @samp{restart}, which is used by the
46153Linux kernel to control restartable syscalls.
46154
e9c17194
VP
46155@node M68K Features
46156@subsection M68K Features
46157@cindex target descriptions, M68K features
46158
46159@table @code
46160@item @samp{org.gnu.gdb.m68k.core}
46161@itemx @samp{org.gnu.gdb.coldfire.core}
46162@itemx @samp{org.gnu.gdb.fido.core}
46163One of those features must be always present.
249e1128 46164The feature that is present determines which flavor of m68k is
e9c17194
VP
46165used. The feature that is present should contain registers
46166@samp{d0} through @samp{d7}, @samp{a0} through @samp{a5}, @samp{fp},
46167@samp{sp}, @samp{ps} and @samp{pc}.
46168
46169@item @samp{org.gnu.gdb.coldfire.fp}
46170This feature is optional. If present, it should contain registers
46171@samp{fp0} through @samp{fp7}, @samp{fpcontrol}, @samp{fpstatus} and
46172@samp{fpiaddr}.
b7d2fe14
TT
46173
46174Note that, despite the fact that this feature's name says
46175@samp{coldfire}, it is used to describe any floating point registers.
46176The size of the registers must match the main m68k flavor; so, for
46177example, if the primary feature is reported as @samp{coldfire}, then
4617864-bit floating point registers are required.
e9c17194
VP
46179@end table
46180
a28d8e50
YTL
46181@node NDS32 Features
46182@subsection NDS32 Features
46183@cindex target descriptions, NDS32 features
46184
46185The @samp{org.gnu.gdb.nds32.core} feature is required for NDS32
46186targets. It should contain at least registers @samp{r0} through
46187@samp{r10}, @samp{r15}, @samp{fp}, @samp{gp}, @samp{lp}, @samp{sp},
46188and @samp{pc}.
46189
46190The @samp{org.gnu.gdb.nds32.fpu} feature is optional. If present,
46191it should contain 64-bit double-precision floating-point registers
46192@samp{fd0} through @emph{fdN}, which should be @samp{fd3}, @samp{fd7},
46193@samp{fd15}, or @samp{fd31} based on the FPU configuration implemented.
46194
46195@emph{Note:} The first sixteen 64-bit double-precision floating-point
46196registers are overlapped with the thirty-two 32-bit single-precision
46197floating-point registers. The 32-bit single-precision registers, if
46198not being listed explicitly, will be synthesized from halves of the
46199overlapping 64-bit double-precision registers. Listing 32-bit
46200single-precision registers explicitly is deprecated, and the
46201support to it could be totally removed some day.
46202
a1217d97
SL
46203@node Nios II Features
46204@subsection Nios II Features
46205@cindex target descriptions, Nios II features
46206
46207The @samp{org.gnu.gdb.nios2.cpu} feature is required for Nios II
46208targets. It should contain the 32 core registers (@samp{zero},
46209@samp{at}, @samp{r2} through @samp{r23}, @samp{et} through @samp{ra}),
46210@samp{pc}, and the 16 control registers (@samp{status} through
46211@samp{mpuacc}).
46212
a994fec4
FJ
46213@node OpenRISC 1000 Features
46214@subsection Openrisc 1000 Features
46215@cindex target descriptions, OpenRISC 1000 features
46216
46217The @samp{org.gnu.gdb.or1k.group0} feature is required for OpenRISC 1000
46218targets. It should contain the 32 general purpose registers (@samp{r0}
46219through @samp{r31}), @samp{ppc}, @samp{npc} and @samp{sr}.
46220
1e26b4f8 46221@node PowerPC Features
7cc46491
DJ
46222@subsection PowerPC Features
46223@cindex target descriptions, PowerPC features
46224
46225The @samp{org.gnu.gdb.power.core} feature is required for PowerPC
46226targets. It should contain registers @samp{r0} through @samp{r31},
46227@samp{pc}, @samp{msr}, @samp{cr}, @samp{lr}, @samp{ctr}, and
46228@samp{xer}. They may be 32-bit or 64-bit depending on the target.
46229
46230The @samp{org.gnu.gdb.power.fpu} feature is optional. It should
46231contain registers @samp{f0} through @samp{f31} and @samp{fpscr}.
46232
46233The @samp{org.gnu.gdb.power.altivec} feature is optional. It should
6f072a10
PFC
46234contain registers @samp{vr0} through @samp{vr31}, @samp{vscr}, and
46235@samp{vrsave}. @value{GDBN} will define pseudo-registers @samp{v0}
46236through @samp{v31} as aliases for the corresponding @samp{vrX}
46237registers.
7cc46491 46238
677c5bb1 46239The @samp{org.gnu.gdb.power.vsx} feature is optional. It should
4b905ae1
PFC
46240contain registers @samp{vs0h} through @samp{vs31h}. @value{GDBN} will
46241combine these registers with the floating point registers (@samp{f0}
46242through @samp{f31}) and the altivec registers (@samp{vr0} through
46243@samp{vr31}) to present the 128-bit wide registers @samp{vs0} through
46244@samp{vs63}, the set of vector-scalar registers for POWER7.
46245Therefore, this feature requires both @samp{org.gnu.gdb.power.fpu} and
46246@samp{org.gnu.gdb.power.altivec}.
677c5bb1 46247
7cc46491
DJ
46248The @samp{org.gnu.gdb.power.spe} feature is optional. It should
46249contain registers @samp{ev0h} through @samp{ev31h}, @samp{acc}, and
46250@samp{spefscr}. SPE targets should provide 32-bit registers in
46251@samp{org.gnu.gdb.power.core} and provide the upper halves in
46252@samp{ev0h} through @samp{ev31h}. @value{GDBN} will combine
46253these to present registers @samp{ev0} through @samp{ev31} to the
46254user.
46255
7ca18ed6
EBM
46256The @samp{org.gnu.gdb.power.ppr} feature is optional. It should
46257contain the 64-bit register @samp{ppr}.
46258
46259The @samp{org.gnu.gdb.power.dscr} feature is optional. It should
46260contain the 64-bit register @samp{dscr}.
46261
f2cf6173
EBM
46262The @samp{org.gnu.gdb.power.tar} feature is optional. It should
46263contain the 64-bit register @samp{tar}.
46264
232bfb86
EBM
46265The @samp{org.gnu.gdb.power.ebb} feature is optional. It should
46266contain registers @samp{bescr}, @samp{ebbhr} and @samp{ebbrr}, all
4626764-bit wide.
46268
46269The @samp{org.gnu.gdb.power.linux.pmu} feature is optional. It should
46270contain registers @samp{mmcr0}, @samp{mmcr2}, @samp{siar}, @samp{sdar}
46271and @samp{sier}, all 64-bit wide. This is the subset of the isa 2.07
46272server PMU registers provided by @sc{gnu}/Linux.
46273
8d619c01
EBM
46274The @samp{org.gnu.gdb.power.htm.spr} feature is optional. It should
46275contain registers @samp{tfhar}, @samp{texasr} and @samp{tfiar}, all
4627664-bit wide.
46277
46278The @samp{org.gnu.gdb.power.htm.core} feature is optional. It should
46279contain the checkpointed general-purpose registers @samp{cr0} through
46280@samp{cr31}, as well as the checkpointed registers @samp{clr} and
46281@samp{cctr}. These registers may all be either 32-bit or 64-bit
46282depending on the target. It should also contain the checkpointed
46283registers @samp{ccr} and @samp{cxer}, which should both be 32-bit
46284wide.
46285
46286The @samp{org.gnu.gdb.power.htm.fpu} feature is optional. It should
46287contain the checkpointed 64-bit floating-point registers @samp{cf0}
46288through @samp{cf31}, as well as the checkpointed 64-bit register
46289@samp{cfpscr}.
46290
46291The @samp{org.gnu.gdb.power.htm.altivec} feature is optional. It
46292should contain the checkpointed altivec registers @samp{cvr0} through
46293@samp{cvr31}, all 128-bit wide. It should also contain the
46294checkpointed registers @samp{cvscr} and @samp{cvrsave}, both 32-bit
46295wide.
46296
46297The @samp{org.gnu.gdb.power.htm.vsx} feature is optional. It should
46298contain registers @samp{cvs0h} through @samp{cvs31h}. @value{GDBN}
46299will combine these registers with the checkpointed floating point
46300registers (@samp{cf0} through @samp{cf31}) and the checkpointed
46301altivec registers (@samp{cvr0} through @samp{cvr31}) to present the
46302128-bit wide checkpointed vector-scalar registers @samp{cvs0} through
46303@samp{cvs63}. Therefore, this feature requires both
46304@samp{org.gnu.gdb.power.htm.altivec} and
46305@samp{org.gnu.gdb.power.htm.fpu}.
46306
46307The @samp{org.gnu.gdb.power.htm.ppr} feature is optional. It should
46308contain the 64-bit checkpointed register @samp{cppr}.
46309
46310The @samp{org.gnu.gdb.power.htm.dscr} feature is optional. It should
46311contain the 64-bit checkpointed register @samp{cdscr}.
46312
46313The @samp{org.gnu.gdb.power.htm.tar} feature is optional. It should
46314contain the 64-bit checkpointed register @samp{ctar}.
46315
b5ffee31
AB
46316
46317@node RISC-V Features
46318@subsection RISC-V Features
46319@cindex target descriptions, RISC-V Features
46320
46321The @samp{org.gnu.gdb.riscv.cpu} feature is required for RISC-V
46322targets. It should contain the registers @samp{x0} through
46323@samp{x31}, and @samp{pc}. Either the architectural names (@samp{x0},
46324@samp{x1}, etc) can be used, or the ABI names (@samp{zero}, @samp{ra},
46325etc).
46326
46327The @samp{org.gnu.gdb.riscv.fpu} feature is optional. If present, it
46328should contain registers @samp{f0} through @samp{f31}, @samp{fflags},
46329@samp{frm}, and @samp{fcsr}. As with the cpu feature, either the
46330architectural register names, or the ABI names can be used.
46331
46332The @samp{org.gnu.gdb.riscv.virtual} feature is optional. If present,
46333it should contain registers that are not backed by real registers on
46334the target, but are instead virtual, where the register value is
46335derived from other target state. In many ways these are like
46336@value{GDBN}s pseudo-registers, except implemented by the target.
46337Currently the only register expected in this set is the one byte
46338@samp{priv} register that contains the target's privilege level in the
46339least significant two bits.
46340
46341The @samp{org.gnu.gdb.riscv.csr} feature is optional. If present, it
46342should contain all of the target's standard CSRs. Standard CSRs are
46343those defined in the RISC-V specification documents. There is some
46344overlap between this feature and the fpu feature; the @samp{fflags},
46345@samp{frm}, and @samp{fcsr} registers could be in either feature. The
46346expectation is that these registers will be in the fpu feature if the
46347target has floating point hardware, but can be moved into the csr
46348feature if the target has the floating point control registers, but no
46349other floating point hardware.
46350
e3ec872f
YS
46351@node RX Features
46352@subsection RX Features
46353@cindex target descriptions, RX Features
46354
46355The @samp{org.gnu.gdb.rx.core} feature is required for RX
46356targets. It should contain the registers @samp{r0} through
46357@samp{r15}, @samp{usp}, @samp{isp}, @samp{psw}, @samp{pc}, @samp{intb},
46358@samp{bpsw}, @samp{bpc}, @samp{fintv}, @samp{fpsw}, and @samp{acc}.
46359
4ac33720
UW
46360@node S/390 and System z Features
46361@subsection S/390 and System z Features
46362@cindex target descriptions, S/390 features
46363@cindex target descriptions, System z features
46364
46365The @samp{org.gnu.gdb.s390.core} feature is required for S/390 and
46366System z targets. It should contain the PSW and the 16 general
46367registers. In particular, System z targets should provide the 64-bit
46368registers @samp{pswm}, @samp{pswa}, and @samp{r0} through @samp{r15}.
46369S/390 targets should provide the 32-bit versions of these registers.
46370A System z target that runs in 31-bit addressing mode should provide
4637132-bit versions of @samp{pswm} and @samp{pswa}, as well as the general
46372register's upper halves @samp{r0h} through @samp{r15h}, and their
46373lower halves @samp{r0l} through @samp{r15l}.
46374
46375The @samp{org.gnu.gdb.s390.fpr} feature is required. It should
46376contain the 64-bit registers @samp{f0} through @samp{f15}, and
46377@samp{fpc}.
46378
46379The @samp{org.gnu.gdb.s390.acr} feature is required. It should
46380contain the 32-bit registers @samp{acr0} through @samp{acr15}.
46381
46382The @samp{org.gnu.gdb.s390.linux} feature is optional. It should
46383contain the register @samp{orig_r2}, which is 64-bit wide on System z
46384targets and 32-bit otherwise. In addition, the feature may contain
46385the @samp{last_break} register, whose width depends on the addressing
46386mode, as well as the @samp{system_call} register, which is always
4638732-bit wide.
46388
46389The @samp{org.gnu.gdb.s390.tdb} feature is optional. It should
46390contain the 64-bit registers @samp{tdb0}, @samp{tac}, @samp{tct},
46391@samp{atia}, and @samp{tr0} through @samp{tr15}.
46392
446899e4
AA
46393The @samp{org.gnu.gdb.s390.vx} feature is optional. It should contain
4639464-bit wide registers @samp{v0l} through @samp{v15l}, which will be
46395combined by @value{GDBN} with the floating point registers @samp{f0}
46396through @samp{f15} to present the 128-bit wide vector registers
46397@samp{v0} through @samp{v15}. In addition, this feature should
46398contain the 128-bit wide vector registers @samp{v16} through
46399@samp{v31}.
46400
289e23aa
AA
46401The @samp{org.gnu.gdb.s390.gs} feature is optional. It should contain
46402the 64-bit wide guarded-storage-control registers @samp{gsd},
46403@samp{gssm}, and @samp{gsepla}.
46404
46405The @samp{org.gnu.gdb.s390.gsbc} feature is optional. It should contain
46406the 64-bit wide guarded-storage broadcast control registers
46407@samp{bc_gsd}, @samp{bc_gssm}, and @samp{bc_gsepla}.
46408
3f7b46f2
IR
46409@node Sparc Features
46410@subsection Sparc Features
46411@cindex target descriptions, sparc32 features
46412@cindex target descriptions, sparc64 features
46413The @samp{org.gnu.gdb.sparc.cpu} feature is required for sparc32/sparc64
46414targets. It should describe the following registers:
46415
46416@itemize @minus
46417@item
46418@samp{g0} through @samp{g7}
46419@item
46420@samp{o0} through @samp{o7}
46421@item
46422@samp{l0} through @samp{l7}
46423@item
46424@samp{i0} through @samp{i7}
46425@end itemize
46426
46427They may be 32-bit or 64-bit depending on the target.
46428
46429Also the @samp{org.gnu.gdb.sparc.fpu} feature is required for sparc32/sparc64
46430targets. It should describe the following registers:
46431
46432@itemize @minus
46433@item
46434@samp{f0} through @samp{f31}
46435@item
46436@samp{f32} through @samp{f62} for sparc64
46437@end itemize
46438
46439The @samp{org.gnu.gdb.sparc.cp0} feature is required for sparc32/sparc64
46440targets. It should describe the following registers:
46441
46442@itemize @minus
46443@item
46444@samp{y}, @samp{psr}, @samp{wim}, @samp{tbr}, @samp{pc}, @samp{npc},
46445@samp{fsr}, and @samp{csr} for sparc32
46446@item
46447@samp{pc}, @samp{npc}, @samp{state}, @samp{fsr}, @samp{fprs}, and @samp{y}
46448for sparc64
46449@end itemize
46450
224bbe49
YQ
46451@node TIC6x Features
46452@subsection TMS320C6x Features
46453@cindex target descriptions, TIC6x features
46454@cindex target descriptions, TMS320C6x features
46455The @samp{org.gnu.gdb.tic6x.core} feature is required for TMS320C6x
46456targets. It should contain registers @samp{A0} through @samp{A15},
46457registers @samp{B0} through @samp{B15}, @samp{CSR} and @samp{PC}.
46458
46459The @samp{org.gnu.gdb.tic6x.gp} feature is optional. It should
46460contain registers @samp{A16} through @samp{A31} and @samp{B16}
46461through @samp{B31}.
46462
46463The @samp{org.gnu.gdb.tic6x.c6xp} feature is optional. It should
46464contain registers @samp{TSR}, @samp{ILC} and @samp{RILC}.
46465
07e059b5
VP
46466@node Operating System Information
46467@appendix Operating System Information
46468@cindex operating system information
46469
07e059b5
VP
46470Users of @value{GDBN} often wish to obtain information about the state of
46471the operating system running on the target---for example the list of
46472processes, or the list of open files. This section describes the
46473mechanism that makes it possible. This mechanism is similar to the
46474target features mechanism (@pxref{Target Descriptions}), but focuses
46475on a different aspect of target.
46476
6b92c0d3 46477Operating system information is retrieved from the target via the
07e059b5
VP
46478remote protocol, using @samp{qXfer} requests (@pxref{qXfer osdata
46479read}). The object name in the request should be @samp{osdata}, and
46480the @var{annex} identifies the data to be fetched.
46481
04de9f3e
AB
46482@menu
46483* Process list::
46484@end menu
46485
07e059b5
VP
46486@node Process list
46487@appendixsection Process list
46488@cindex operating system information, process list
46489
46490When requesting the process list, the @var{annex} field in the
46491@samp{qXfer} request should be @samp{processes}. The returned data is
46492an XML document. The formal syntax of this document is defined in
46493@file{gdb/features/osdata.dtd}.
46494
46495An example document is:
46496
46497@smallexample
46498<?xml version="1.0"?>
46499<!DOCTYPE target SYSTEM "osdata.dtd">
46500<osdata type="processes">
46501 <item>
46502 <column name="pid">1</column>
46503 <column name="user">root</column>
46504 <column name="command">/sbin/init</column>
dc146f7c 46505 <column name="cores">1,2,3</column>
07e059b5
VP
46506 </item>
46507</osdata>
46508@end smallexample
46509
46510Each item should include a column whose name is @samp{pid}. The value
46511of that column should identify the process on the target. The
46512@samp{user} and @samp{command} columns are optional, and will be
dc146f7c
VP
46513displayed by @value{GDBN}. The @samp{cores} column, if present,
46514should contain a comma-separated list of cores that this process
46515is running on. Target may provide additional columns,
07e059b5
VP
46516which @value{GDBN} currently ignores.
46517
05c8c3f5
TT
46518@node Trace File Format
46519@appendix Trace File Format
46520@cindex trace file format
46521
46522The trace file comes in three parts: a header, a textual description
46523section, and a trace frame section with binary data.
46524
46525The header has the form @code{\x7fTRACE0\n}. The first byte is
46526@code{0x7f} so as to indicate that the file contains binary data,
46527while the @code{0} is a version number that may have different values
46528in the future.
46529
46530The description section consists of multiple lines of @sc{ascii} text
46531separated by newline characters (@code{0xa}). The lines may include a
46532variety of optional descriptive or context-setting information, such
46533as tracepoint definitions or register set size. @value{GDBN} will
46534ignore any line that it does not recognize. An empty line marks the end
46535of this section.
46536
0748bf3e
MK
46537@table @code
46538@item R @var{size}
46539Specifies the size of a register block in bytes. This is equal to the
46540size of a @code{g} packet payload in the remote protocol. @var{size}
46541is an ascii decimal number. There should be only one such line in
46542a single trace file.
46543
46544@item status @var{status}
46545Trace status. @var{status} has the same format as a @code{qTStatus}
46546remote packet reply. There should be only one such line in a single trace
46547file.
46548
46549@item tp @var{payload}
46550Tracepoint definition. The @var{payload} has the same format as
46551@code{qTfP}/@code{qTsP} remote packet reply payload. A single tracepoint
46552may take multiple lines of definition, corresponding to the multiple
46553reply packets.
46554
46555@item tsv @var{payload}
46556Trace state variable definition. The @var{payload} has the same format as
46557@code{qTfV}/@code{qTsV} remote packet reply payload. A single variable
46558may take multiple lines of definition, corresponding to the multiple
46559reply packets.
46560
46561@item tdesc @var{payload}
46562Target description in XML format. The @var{payload} is a single line of
46563the XML file. All such lines should be concatenated together to get
46564the original XML file. This file is in the same format as @code{qXfer}
46565@code{features} payload, and corresponds to the main @code{target.xml}
46566file. Includes are not allowed.
46567
46568@end table
05c8c3f5
TT
46569
46570The trace frame section consists of a number of consecutive frames.
46571Each frame begins with a two-byte tracepoint number, followed by a
46572four-byte size giving the amount of data in the frame. The data in
46573the frame consists of a number of blocks, each introduced by a
46574character indicating its type (at least register, memory, and trace
46575state variable). The data in this section is raw binary, not a
46576hexadecimal or other encoding; its endianness matches the target's
46577endianness.
46578
46579@c FIXME bi-arch may require endianness/arch info in description section
46580
46581@table @code
46582@item R @var{bytes}
46583Register block. The number and ordering of bytes matches that of a
46584@code{g} packet in the remote protocol. Note that these are the
e909d859 46585actual bytes, in target order, not a hexadecimal encoding.
05c8c3f5
TT
46586
46587@item M @var{address} @var{length} @var{bytes}...
46588Memory block. This is a contiguous block of memory, at the 8-byte
46589address @var{address}, with a 2-byte length @var{length}, followed by
46590@var{length} bytes.
46591
46592@item V @var{number} @var{value}
46593Trace state variable block. This records the 8-byte signed value
46594@var{value} of trace state variable numbered @var{number}.
46595
46596@end table
46597
46598Future enhancements of the trace file format may include additional types
46599of blocks.
46600
90476074
TT
46601@node Index Section Format
46602@appendix @code{.gdb_index} section format
46603@cindex .gdb_index section format
46604@cindex index section format
46605
46606This section documents the index section that is created by @code{save
46607gdb-index} (@pxref{Index Files}). The index section is
46608DWARF-specific; some knowledge of DWARF is assumed in this
46609description.
46610
46611The mapped index file format is designed to be directly
46612@code{mmap}able on any architecture. In most cases, a datum is
46613represented using a little-endian 32-bit integer value, called an
46614@code{offset_type}. Big endian machines must byte-swap the values
46615before using them. Exceptions to this rule are noted. The data is
46616laid out such that alignment is always respected.
46617
46618A mapped index consists of several areas, laid out in order.
46619
46620@enumerate
46621@item
46622The file header. This is a sequence of values, of @code{offset_type}
46623unless otherwise noted:
46624
46625@enumerate
46626@item
796a7ff8 46627The version number, currently 8. Versions 1, 2 and 3 are obsolete.
481860b3 46628Version 4 uses a different hashing function from versions 5 and 6.
b6ba681c
TT
46629Version 6 includes symbols for inlined functions, whereas versions 4
46630and 5 do not. Version 7 adds attributes to the CU indices in the
796a7ff8
DE
46631symbol table. Version 8 specifies that symbols from DWARF type units
46632(@samp{DW_TAG_type_unit}) refer to the type unit's symbol table and not the
46633compilation unit (@samp{DW_TAG_comp_unit}) using the type.
46634
46635@value{GDBN} will only read version 4, 5, or 6 indices
e615022a 46636by specifying @code{set use-deprecated-index-sections on}.
796a7ff8
DE
46637GDB has a workaround for potentially broken version 7 indices so it is
46638currently not flagged as deprecated.
90476074
TT
46639
46640@item
46641The offset, from the start of the file, of the CU list.
46642
46643@item
46644The offset, from the start of the file, of the types CU list. Note
46645that this area can be empty, in which case this offset will be equal
46646to the next offset.
46647
46648@item
46649The offset, from the start of the file, of the address area.
46650
46651@item
46652The offset, from the start of the file, of the symbol table.
46653
46654@item
46655The offset, from the start of the file, of the constant pool.
46656@end enumerate
46657
46658@item
46659The CU list. This is a sequence of pairs of 64-bit little-endian
46660values, sorted by the CU offset. The first element in each pair is
46661the offset of a CU in the @code{.debug_info} section. The second
46662element in each pair is the length of that CU. References to a CU
46663elsewhere in the map are done using a CU index, which is just the
466640-based index into this table. Note that if there are type CUs, then
46665conceptually CUs and type CUs form a single list for the purposes of
46666CU indices.
46667
46668@item
46669The types CU list. This is a sequence of triplets of 64-bit
46670little-endian values. In a triplet, the first value is the CU offset,
46671the second value is the type offset in the CU, and the third value is
46672the type signature. The types CU list is not sorted.
46673
46674@item
46675The address area. The address area consists of a sequence of address
46676entries. Each address entry has three elements:
46677
46678@enumerate
46679@item
46680The low address. This is a 64-bit little-endian value.
46681
46682@item
46683The high address. This is a 64-bit little-endian value. Like
46684@code{DW_AT_high_pc}, the value is one byte beyond the end.
46685
46686@item
46687The CU index. This is an @code{offset_type} value.
46688@end enumerate
46689
46690@item
46691The symbol table. This is an open-addressed hash table. The size of
46692the hash table is always a power of 2.
46693
46694Each slot in the hash table consists of a pair of @code{offset_type}
46695values. The first value is the offset of the symbol's name in the
46696constant pool. The second value is the offset of the CU vector in the
46697constant pool.
46698
46699If both values are 0, then this slot in the hash table is empty. This
46700is ok because while 0 is a valid constant pool index, it cannot be a
46701valid index for both a string and a CU vector.
46702
46703The hash value for a table entry is computed by applying an
46704iterative hash function to the symbol's name. Starting with an
46705initial value of @code{r = 0}, each (unsigned) character @samp{c} in
559a7a62
JK
46706the string is incorporated into the hash using the formula depending on the
46707index version:
46708
46709@table @asis
46710@item Version 4
46711The formula is @code{r = r * 67 + c - 113}.
46712
156942c7 46713@item Versions 5 to 7
559a7a62
JK
46714The formula is @code{r = r * 67 + tolower (c) - 113}.
46715@end table
46716
46717The terminating @samp{\0} is not incorporated into the hash.
90476074
TT
46718
46719The step size used in the hash table is computed via
46720@code{((hash * 17) & (size - 1)) | 1}, where @samp{hash} is the hash
46721value, and @samp{size} is the size of the hash table. The step size
46722is used to find the next candidate slot when handling a hash
46723collision.
46724
46725The names of C@t{++} symbols in the hash table are canonicalized. We
46726don't currently have a simple description of the canonicalization
46727algorithm; if you intend to create new index sections, you must read
46728the code.
46729
46730@item
46731The constant pool. This is simply a bunch of bytes. It is organized
46732so that alignment is correct: CU vectors are stored first, followed by
46733strings.
46734
46735A CU vector in the constant pool is a sequence of @code{offset_type}
46736values. The first value is the number of CU indices in the vector.
156942c7
DE
46737Each subsequent value is the index and symbol attributes of a CU in
46738the CU list. This element in the hash table is used to indicate which
46739CUs define the symbol and how the symbol is used.
46740See below for the format of each CU index+attributes entry.
90476074
TT
46741
46742A string in the constant pool is zero-terminated.
46743@end enumerate
46744
156942c7
DE
46745Attributes were added to CU index values in @code{.gdb_index} version 7.
46746If a symbol has multiple uses within a CU then there is one
46747CU index+attributes value for each use.
46748
46749The format of each CU index+attributes entry is as follows
46750(bit 0 = LSB):
46751
46752@table @asis
46753
46754@item Bits 0-23
46755This is the index of the CU in the CU list.
46756@item Bits 24-27
46757These bits are reserved for future purposes and must be zero.
46758@item Bits 28-30
46759The kind of the symbol in the CU.
46760
46761@table @asis
46762@item 0
46763This value is reserved and should not be used.
46764By reserving zero the full @code{offset_type} value is backwards compatible
46765with previous versions of the index.
46766@item 1
46767The symbol is a type.
46768@item 2
46769The symbol is a variable or an enum value.
46770@item 3
46771The symbol is a function.
46772@item 4
46773Any other kind of symbol.
46774@item 5,6,7
46775These values are reserved.
46776@end table
46777
46778@item Bit 31
46779This bit is zero if the value is global and one if it is static.
46780
46781The determination of whether a symbol is global or static is complicated.
46782The authorative reference is the file @file{dwarf2read.c} in
46783@value{GDBN} sources.
46784
46785@end table
46786
46787This pseudo-code describes the computation of a symbol's kind and
46788global/static attributes in the index.
46789
46790@smallexample
46791is_external = get_attribute (die, DW_AT_external);
46792language = get_attribute (cu_die, DW_AT_language);
46793switch (die->tag)
46794 @{
46795 case DW_TAG_typedef:
46796 case DW_TAG_base_type:
46797 case DW_TAG_subrange_type:
46798 kind = TYPE;
46799 is_static = 1;
46800 break;
46801 case DW_TAG_enumerator:
46802 kind = VARIABLE;
9c37b5ae 46803 is_static = language != CPLUS;
156942c7
DE
46804 break;
46805 case DW_TAG_subprogram:
46806 kind = FUNCTION;
46807 is_static = ! (is_external || language == ADA);
46808 break;
46809 case DW_TAG_constant:
46810 kind = VARIABLE;
46811 is_static = ! is_external;
46812 break;
46813 case DW_TAG_variable:
46814 kind = VARIABLE;
46815 is_static = ! is_external;
46816 break;
46817 case DW_TAG_namespace:
46818 kind = TYPE;
46819 is_static = 0;
46820 break;
46821 case DW_TAG_class_type:
46822 case DW_TAG_interface_type:
46823 case DW_TAG_structure_type:
46824 case DW_TAG_union_type:
46825 case DW_TAG_enumeration_type:
46826 kind = TYPE;
9c37b5ae 46827 is_static = language != CPLUS;
156942c7
DE
46828 break;
46829 default:
46830 assert (0);
46831 @}
46832@end smallexample
46833
43662968
JK
46834@node Man Pages
46835@appendix Manual pages
46836@cindex Man pages
46837
46838@menu
46839* gdb man:: The GNU Debugger man page
46840* gdbserver man:: Remote Server for the GNU Debugger man page
b292c783 46841* gcore man:: Generate a core file of a running program
43662968 46842* gdbinit man:: gdbinit scripts
ba643918 46843* gdb-add-index man:: Add index files to speed up GDB
43662968
JK
46844@end menu
46845
46846@node gdb man
46847@heading gdb man
46848
46849@c man title gdb The GNU Debugger
46850
46851@c man begin SYNOPSIS gdb
46852gdb [@option{-help}] [@option{-nh}] [@option{-nx}] [@option{-q}]
46853[@option{-batch}] [@option{-cd=}@var{dir}] [@option{-f}]
46854[@option{-b}@w{ }@var{bps}]
46855 [@option{-tty=}@var{dev}] [@option{-s} @var{symfile}]
46856[@option{-e}@w{ }@var{prog}] [@option{-se}@w{ }@var{prog}]
906ccdf0
JK
46857[@option{-c}@w{ }@var{core}] [@option{-p}@w{ }@var{procID}]
46858 [@option{-x}@w{ }@var{cmds}] [@option{-d}@w{ }@var{dir}]
46859[@var{prog}|@var{prog} @var{procID}|@var{prog} @var{core}]
43662968
JK
46860@c man end
46861
46862@c man begin DESCRIPTION gdb
46863The purpose of a debugger such as @value{GDBN} is to allow you to see what is
46864going on ``inside'' another program while it executes -- or what another
46865program was doing at the moment it crashed.
46866
46867@value{GDBN} can do four main kinds of things (plus other things in support of
46868these) to help you catch bugs in the act:
46869
46870@itemize @bullet
46871@item
46872Start your program, specifying anything that might affect its behavior.
46873
46874@item
46875Make your program stop on specified conditions.
46876
46877@item
46878Examine what has happened, when your program has stopped.
46879
46880@item
46881Change things in your program, so you can experiment with correcting the
46882effects of one bug and go on to learn about another.
46883@end itemize
46884
906ccdf0
JK
46885You can use @value{GDBN} to debug programs written in C, C@t{++}, Fortran and
46886Modula-2.
43662968
JK
46887
46888@value{GDBN} is invoked with the shell command @code{gdb}. Once started, it reads
46889commands from the terminal until you tell it to exit with the @value{GDBN}
46890command @code{quit}. You can get online help from @value{GDBN} itself
46891by using the command @code{help}.
46892
46893You can run @code{gdb} with no arguments or options; but the most
46894usual way to start @value{GDBN} is with one argument or two, specifying an
46895executable program as the argument:
46896
46897@smallexample
46898gdb program
46899@end smallexample
46900
46901You can also start with both an executable program and a core file specified:
46902
46903@smallexample
46904gdb program core
46905@end smallexample
46906
4ed4690f
SM
46907You can, instead, specify a process ID as a second argument or use option
46908@code{-p}, if you want to debug a running process:
43662968
JK
46909
46910@smallexample
46911gdb program 1234
906ccdf0 46912gdb -p 1234
43662968
JK
46913@end smallexample
46914
46915@noindent
4ed4690f
SM
46916would attach @value{GDBN} to process @code{1234}. With option @option{-p} you
46917can omit the @var{program} filename.
43662968
JK
46918
46919Here are some of the most frequently needed @value{GDBN} commands:
46920
46921@c pod2man highlights the right hand side of the @item lines.
46922@table @env
224f10c1 46923@item break [@var{file}:]@var{function}
43662968
JK
46924Set a breakpoint at @var{function} (in @var{file}).
46925
46926@item run [@var{arglist}]
46927Start your program (with @var{arglist}, if specified).
46928
46929@item bt
46930Backtrace: display the program stack.
46931
46932@item print @var{expr}
46933Display the value of an expression.
46934
46935@item c
46936Continue running your program (after stopping, e.g. at a breakpoint).
46937
46938@item next
46939Execute next program line (after stopping); step @emph{over} any
46940function calls in the line.
46941
46942@item edit [@var{file}:]@var{function}
46943look at the program line where it is presently stopped.
46944
46945@item list [@var{file}:]@var{function}
46946type the text of the program in the vicinity of where it is presently stopped.
46947
46948@item step
46949Execute next program line (after stopping); step @emph{into} any
46950function calls in the line.
46951
46952@item help [@var{name}]
46953Show information about @value{GDBN} command @var{name}, or general information
46954about using @value{GDBN}.
46955
46956@item quit
46957Exit from @value{GDBN}.
46958@end table
46959
46960@ifset man
46961For full details on @value{GDBN},
46962see @cite{Using GDB: A Guide to the GNU Source-Level Debugger},
46963by Richard M. Stallman and Roland H. Pesch. The same text is available online
46964as the @code{gdb} entry in the @code{info} program.
46965@end ifset
46966@c man end
46967
46968@c man begin OPTIONS gdb
46969Any arguments other than options specify an executable
46970file and core file (or process ID); that is, the first argument
46971encountered with no
46972associated option flag is equivalent to a @option{-se} option, and the second,
46973if any, is equivalent to a @option{-c} option if it's the name of a file.
46974Many options have
46975both long and short forms; both are shown here. The long forms are also
46976recognized if you truncate them, so long as enough of the option is
46977present to be unambiguous. (If you prefer, you can flag option
46978arguments with @option{+} rather than @option{-}, though we illustrate the
46979more usual convention.)
46980
46981All the options and command line arguments you give are processed
46982in sequential order. The order makes a difference when the @option{-x}
46983option is used.
46984
46985@table @env
46986@item -help
46987@itemx -h
46988List all options, with brief explanations.
46989
46990@item -symbols=@var{file}
46991@itemx -s @var{file}
46992Read symbol table from file @var{file}.
46993
46994@item -write
46995Enable writing into executable and core files.
46996
46997@item -exec=@var{file}
46998@itemx -e @var{file}
46999Use file @var{file} as the executable file to execute when
47000appropriate, and for examining pure data in conjunction with a core
47001dump.
47002
47003@item -se=@var{file}
47004Read symbol table from file @var{file} and use it as the executable
47005file.
47006
47007@item -core=@var{file}
47008@itemx -c @var{file}
47009Use file @var{file} as a core dump to examine.
47010
47011@item -command=@var{file}
47012@itemx -x @var{file}
47013Execute @value{GDBN} commands from file @var{file}.
47014
47015@item -ex @var{command}
47016Execute given @value{GDBN} @var{command}.
47017
47018@item -directory=@var{directory}
47019@itemx -d @var{directory}
47020Add @var{directory} to the path to search for source files.
47021
47022@item -nh
92e4e97a
AB
47023Do not execute commands from @file{~/.config/gdb/gdbinit},
47024@file{~/.gdbinit}, @file{~/.config/gdb/gdbearlyinit}, or
47025@file{~/.gdbearlyinit}
43662968
JK
47026
47027@item -nx
47028@itemx -n
92e4e97a
AB
47029Do not execute commands from any @file{.gdbinit} or
47030@file{.gdbearlyinit} initialization files.
43662968
JK
47031
47032@item -quiet
47033@itemx -q
47034``Quiet''. Do not print the introductory and copyright messages. These
47035messages are also suppressed in batch mode.
47036
47037@item -batch
47038Run in batch mode. Exit with status @code{0} after processing all the command
47039files specified with @option{-x} (and @file{.gdbinit}, if not inhibited).
47040Exit with nonzero status if an error occurs in executing the @value{GDBN}
47041commands in the command files.
47042
47043Batch mode may be useful for running @value{GDBN} as a filter, for example to
47044download and run a program on another computer; in order to make this
47045more useful, the message
47046
47047@smallexample
47048Program exited normally.
47049@end smallexample
47050
47051@noindent
47052(which is ordinarily issued whenever a program running under @value{GDBN} control
47053terminates) is not issued when running in batch mode.
47054
47055@item -cd=@var{directory}
47056Run @value{GDBN} using @var{directory} as its working directory,
47057instead of the current directory.
47058
47059@item -fullname
47060@itemx -f
47061Emacs sets this option when it runs @value{GDBN} as a subprocess. It tells
47062@value{GDBN} to output the full file name and line number in a standard,
47063recognizable fashion each time a stack frame is displayed (which
47064includes each time the program stops). This recognizable format looks
47065like two @samp{\032} characters, followed by the file name, line number
47066and character position separated by colons, and a newline. The
47067Emacs-to-@value{GDBN} interface program uses the two @samp{\032}
47068characters as a signal to display the source code for the frame.
47069
47070@item -b @var{bps}
47071Set the line speed (baud rate or bits per second) of any serial
47072interface used by @value{GDBN} for remote debugging.
47073
47074@item -tty=@var{device}
47075Run using @var{device} for your program's standard input and output.
47076@end table
47077@c man end
47078
47079@c man begin SEEALSO gdb
47080@ifset man
47081The full documentation for @value{GDBN} is maintained as a Texinfo manual.
47082If the @code{info} and @code{gdb} programs and @value{GDBN}'s Texinfo
47083documentation are properly installed at your site, the command
47084
47085@smallexample
47086info gdb
47087@end smallexample
47088
47089@noindent
47090should give you access to the complete manual.
47091
47092@cite{Using GDB: A Guide to the GNU Source-Level Debugger},
47093Richard M. Stallman and Roland H. Pesch, July 1991.
47094@end ifset
47095@c man end
47096
47097@node gdbserver man
47098@heading gdbserver man
47099
47100@c man title gdbserver Remote Server for the GNU Debugger
47101@format
47102@c man begin SYNOPSIS gdbserver
5b8b6385 47103gdbserver @var{comm} @var{prog} [@var{args}@dots{}]
43662968 47104
5b8b6385
JK
47105gdbserver --attach @var{comm} @var{pid}
47106
47107gdbserver --multi @var{comm}
43662968
JK
47108@c man end
47109@end format
47110
47111@c man begin DESCRIPTION gdbserver
47112@command{gdbserver} is a program that allows you to run @value{GDBN} on a different machine
47113than the one which is running the program being debugged.
47114
47115@ifclear man
47116@subheading Usage (server (target) side)
47117@end ifclear
47118@ifset man
47119Usage (server (target) side):
47120@end ifset
47121
47122First, you need to have a copy of the program you want to debug put onto
47123the target system. The program can be stripped to save space if needed, as
47124@command{gdbserver} doesn't care about symbols. All symbol handling is taken care of by
47125the @value{GDBN} running on the host system.
47126
47127To use the server, you log on to the target system, and run the @command{gdbserver}
47128program. You must tell it (a) how to communicate with @value{GDBN}, (b) the name of
47129your program, and (c) its arguments. The general syntax is:
47130
47131@smallexample
47132target> gdbserver @var{comm} @var{program} [@var{args} ...]
47133@end smallexample
47134
47135For example, using a serial port, you might say:
47136
47137@smallexample
47138@ifset man
47139@c @file would wrap it as F</dev/com1>.
47140target> gdbserver /dev/com1 emacs foo.txt
47141@end ifset
47142@ifclear man
47143target> gdbserver @file{/dev/com1} emacs foo.txt
47144@end ifclear
47145@end smallexample
47146
47147This tells @command{gdbserver} to debug emacs with an argument of foo.txt, and
47148to communicate with @value{GDBN} via @file{/dev/com1}. @command{gdbserver} now
47149waits patiently for the host @value{GDBN} to communicate with it.
47150
47151To use a TCP connection, you could say:
47152
47153@smallexample
47154target> gdbserver host:2345 emacs foo.txt
47155@end smallexample
47156
47157This says pretty much the same thing as the last example, except that we are
47158going to communicate with the @code{host} @value{GDBN} via TCP. The @code{host:2345} argument means
47159that we are expecting to see a TCP connection from @code{host} to local TCP port
471602345. (Currently, the @code{host} part is ignored.) You can choose any number you
47161want for the port number as long as it does not conflict with any existing TCP
47162ports on the target system. This same port number must be used in the host
47163@value{GDBN}s @code{target remote} command, which will be described shortly. Note that if
47164you chose a port number that conflicts with another service, @command{gdbserver} will
47165print an error message and exit.
47166
5b8b6385 47167@command{gdbserver} can also attach to running programs.
43662968
JK
47168This is accomplished via the @option{--attach} argument. The syntax is:
47169
47170@smallexample
5b8b6385 47171target> gdbserver --attach @var{comm} @var{pid}
43662968
JK
47172@end smallexample
47173
47174@var{pid} is the process ID of a currently running process. It isn't
47175necessary to point @command{gdbserver} at a binary for the running process.
47176
5b8b6385
JK
47177To start @code{gdbserver} without supplying an initial command to run
47178or process ID to attach, use the @option{--multi} command line option.
47179In such case you should connect using @kbd{target extended-remote} to start
47180the program you want to debug.
47181
47182@smallexample
47183target> gdbserver --multi @var{comm}
47184@end smallexample
47185
43662968
JK
47186@ifclear man
47187@subheading Usage (host side)
47188@end ifclear
47189@ifset man
47190Usage (host side):
47191@end ifset
47192
47193You need an unstripped copy of the target program on your host system, since
1a088a2e 47194@value{GDBN} needs to examine its symbol tables and such. Start up @value{GDBN} as you normally
43662968
JK
47195would, with the target program as the first argument. (You may need to use the
47196@option{--baud} option if the serial line is running at anything except 9600 baud.)
47197That is @code{gdb TARGET-PROG}, or @code{gdb --baud BAUD TARGET-PROG}. After that, the only
5b8b6385
JK
47198new command you need to know about is @code{target remote}
47199(or @code{target extended-remote}). Its argument is either
43662968
JK
47200a device name (usually a serial device, like @file{/dev/ttyb}), or a @code{HOST:PORT}
47201descriptor. For example:
47202
47203@smallexample
47204@ifset man
47205@c @file would wrap it as F</dev/ttyb>.
47206(gdb) target remote /dev/ttyb
47207@end ifset
47208@ifclear man
47209(gdb) target remote @file{/dev/ttyb}
47210@end ifclear
47211@end smallexample
47212
47213@noindent
47214communicates with the server via serial line @file{/dev/ttyb}, and:
47215
47216@smallexample
47217(gdb) target remote the-target:2345
47218@end smallexample
47219
47220@noindent
47221communicates via a TCP connection to port 2345 on host `the-target', where
47222you previously started up @command{gdbserver} with the same port number. Note that for
47223TCP connections, you must start up @command{gdbserver} prior to using the `target remote'
47224command, otherwise you may get an error that looks something like
47225`Connection refused'.
5b8b6385
JK
47226
47227@command{gdbserver} can also debug multiple inferiors at once,
47228described in
47229@ifset man
65c574f6
PA
47230the @value{GDBN} manual in node @code{Inferiors Connections and Programs}
47231-- shell command @code{info -f gdb -n 'Inferiors Connections and Programs'}.
5b8b6385
JK
47232@end ifset
47233@ifclear man
65c574f6 47234@ref{Inferiors Connections and Programs}.
5b8b6385
JK
47235@end ifclear
47236In such case use the @code{extended-remote} @value{GDBN} command variant:
47237
47238@smallexample
47239(gdb) target extended-remote the-target:2345
47240@end smallexample
47241
47242The @command{gdbserver} option @option{--multi} may or may not be used in such
47243case.
43662968
JK
47244@c man end
47245
47246@c man begin OPTIONS gdbserver
5b8b6385
JK
47247There are three different modes for invoking @command{gdbserver}:
47248
47249@itemize @bullet
47250
47251@item
47252Debug a specific program specified by its program name:
47253
47254@smallexample
47255gdbserver @var{comm} @var{prog} [@var{args}@dots{}]
47256@end smallexample
47257
47258The @var{comm} parameter specifies how should the server communicate
47259with @value{GDBN}; it is either a device name (to use a serial line),
47260a TCP port number (@code{:1234}), or @code{-} or @code{stdio} to use
47261stdin/stdout of @code{gdbserver}. Specify the name of the program to
47262debug in @var{prog}. Any remaining arguments will be passed to the
47263program verbatim. When the program exits, @value{GDBN} will close the
47264connection, and @code{gdbserver} will exit.
47265
47266@item
47267Debug a specific program by specifying the process ID of a running
47268program:
47269
47270@smallexample
47271gdbserver --attach @var{comm} @var{pid}
47272@end smallexample
47273
47274The @var{comm} parameter is as described above. Supply the process ID
47275of a running program in @var{pid}; @value{GDBN} will do everything
47276else. Like with the previous mode, when the process @var{pid} exits,
47277@value{GDBN} will close the connection, and @code{gdbserver} will exit.
47278
47279@item
47280Multi-process mode -- debug more than one program/process:
47281
47282@smallexample
47283gdbserver --multi @var{comm}
47284@end smallexample
47285
47286In this mode, @value{GDBN} can instruct @command{gdbserver} which
47287command(s) to run. Unlike the other 2 modes, @value{GDBN} will not
47288close the connection when a process being debugged exits, so you can
47289debug several processes in the same session.
47290@end itemize
47291
47292In each of the modes you may specify these options:
47293
47294@table @env
47295
47296@item --help
47297List all options, with brief explanations.
47298
47299@item --version
47300This option causes @command{gdbserver} to print its version number and exit.
47301
47302@item --attach
47303@command{gdbserver} will attach to a running program. The syntax is:
47304
47305@smallexample
47306target> gdbserver --attach @var{comm} @var{pid}
47307@end smallexample
47308
47309@var{pid} is the process ID of a currently running process. It isn't
47310necessary to point @command{gdbserver} at a binary for the running process.
47311
47312@item --multi
47313To start @code{gdbserver} without supplying an initial command to run
47314or process ID to attach, use this command line option.
47315Then you can connect using @kbd{target extended-remote} and start
47316the program you want to debug. The syntax is:
47317
47318@smallexample
47319target> gdbserver --multi @var{comm}
47320@end smallexample
47321
47322@item --debug
47323Instruct @code{gdbserver} to display extra status information about the debugging
47324process.
47325This option is intended for @code{gdbserver} development and for bug reports to
47326the developers.
47327
47328@item --remote-debug
47329Instruct @code{gdbserver} to display remote protocol debug output.
47330This option is intended for @code{gdbserver} development and for bug reports to
47331the developers.
47332
aeb2e706
AH
47333@item --debug-file=@var{filename}
47334Instruct @code{gdbserver} to send any debug output to the given @var{filename}.
47335This option is intended for @code{gdbserver} development and for bug reports to
47336the developers.
47337
87ce2a04
DE
47338@item --debug-format=option1@r{[},option2,...@r{]}
47339Instruct @code{gdbserver} to include extra information in each line
47340of debugging output.
47341@xref{Other Command-Line Arguments for gdbserver}.
47342
5b8b6385
JK
47343@item --wrapper
47344Specify a wrapper to launch programs
47345for debugging. The option should be followed by the name of the
47346wrapper, then any command-line arguments to pass to the wrapper, then
47347@kbd{--} indicating the end of the wrapper arguments.
47348
47349@item --once
47350By default, @command{gdbserver} keeps the listening TCP port open, so that
47351additional connections are possible. However, if you start @code{gdbserver}
47352with the @option{--once} option, it will stop listening for any further
47353connection attempts after connecting to the first @value{GDBN} session.
47354
47355@c --disable-packet is not documented for users.
47356
47357@c --disable-randomization and --no-disable-randomization are superseded by
47358@c QDisableRandomization.
47359
47360@end table
43662968
JK
47361@c man end
47362
47363@c man begin SEEALSO gdbserver
47364@ifset man
47365The full documentation for @value{GDBN} is maintained as a Texinfo manual.
47366If the @code{info} and @code{gdb} programs and @value{GDBN}'s Texinfo
47367documentation are properly installed at your site, the command
47368
47369@smallexample
47370info gdb
47371@end smallexample
47372
47373should give you access to the complete manual.
47374
47375@cite{Using GDB: A Guide to the GNU Source-Level Debugger},
47376Richard M. Stallman and Roland H. Pesch, July 1991.
47377@end ifset
47378@c man end
47379
b292c783
JK
47380@node gcore man
47381@heading gcore
47382
47383@c man title gcore Generate a core file of a running program
47384
47385@format
47386@c man begin SYNOPSIS gcore
129eb0f1 47387gcore [-a] [-o @var{prefix}] @var{pid1} [@var{pid2}...@var{pidN}]
b292c783
JK
47388@c man end
47389@end format
47390
47391@c man begin DESCRIPTION gcore
129eb0f1
SDJ
47392Generate core dumps of one or more running programs with process IDs
47393@var{pid1}, @var{pid2}, etc. A core file produced by @command{gcore}
47394is equivalent to one produced by the kernel when the process crashes
47395(and when @kbd{ulimit -c} was used to set up an appropriate core dump
47396limit). However, unlike after a crash, after @command{gcore} finishes
47397its job the program remains running without any change.
b292c783
JK
47398@c man end
47399
47400@c man begin OPTIONS gcore
47401@table @env
c179febe
SL
47402@item -a
47403Dump all memory mappings. The actual effect of this option depends on
47404the Operating System. On @sc{gnu}/Linux, it will disable
47405@code{use-coredump-filter} (@pxref{set use-coredump-filter}) and
47406enable @code{dump-excluded-mappings} (@pxref{set
47407dump-excluded-mappings}).
47408
129eb0f1
SDJ
47409@item -o @var{prefix}
47410The optional argument @var{prefix} specifies the prefix to be used
47411when composing the file names of the core dumps. The file name is
47412composed as @file{@var{prefix}.@var{pid}}, where @var{pid} is the
47413process ID of the running program being analyzed by @command{gcore}.
47414If not specified, @var{prefix} defaults to @var{gcore}.
b292c783
JK
47415@end table
47416@c man end
47417
47418@c man begin SEEALSO gcore
47419@ifset man
47420The full documentation for @value{GDBN} is maintained as a Texinfo manual.
47421If the @code{info} and @code{gdb} programs and @value{GDBN}'s Texinfo
47422documentation are properly installed at your site, the command
47423
47424@smallexample
47425info gdb
47426@end smallexample
47427
47428@noindent
47429should give you access to the complete manual.
47430
47431@cite{Using GDB: A Guide to the GNU Source-Level Debugger},
47432Richard M. Stallman and Roland H. Pesch, July 1991.
47433@end ifset
47434@c man end
47435
43662968
JK
47436@node gdbinit man
47437@heading gdbinit
47438
47439@c man title gdbinit GDB initialization scripts
47440
47441@format
47442@c man begin SYNOPSIS gdbinit
47443@ifset SYSTEM_GDBINIT
47444@value{SYSTEM_GDBINIT}
47445@end ifset
47446
ed2a2229
CB
47447@ifset SYSTEM_GDBINIT_DIR
47448@value{SYSTEM_GDBINIT_DIR}/*
47449@end ifset
47450
64aaad63
AB
47451~/.config/gdb/gdbinit
47452
43662968
JK
47453~/.gdbinit
47454
47455./.gdbinit
47456@c man end
47457@end format
47458
47459@c man begin DESCRIPTION gdbinit
47460These files contain @value{GDBN} commands to automatically execute during
47461@value{GDBN} startup. The lines of contents are canned sequences of commands,
47462described in
47463@ifset man
47464the @value{GDBN} manual in node @code{Sequences}
47465-- shell command @code{info -f gdb -n Sequences}.
47466@end ifset
47467@ifclear man
47468@ref{Sequences}.
47469@end ifclear
47470
47471Please read more in
47472@ifset man
47473the @value{GDBN} manual in node @code{Startup}
47474-- shell command @code{info -f gdb -n Startup}.
47475@end ifset
47476@ifclear man
47477@ref{Startup}.
47478@end ifclear
47479
47480@table @env
47481@ifset SYSTEM_GDBINIT
47482@item @value{SYSTEM_GDBINIT}
47483@end ifset
47484@ifclear SYSTEM_GDBINIT
47485@item (not enabled with @code{--with-system-gdbinit} during compilation)
47486@end ifclear
47487System-wide initialization file. It is executed unless user specified
47488@value{GDBN} option @code{-nx} or @code{-n}.
47489See more in
47490@ifset man
47491the @value{GDBN} manual in node @code{System-wide configuration}
47492-- shell command @code{info -f gdb -n 'System-wide configuration'}.
47493@end ifset
ed2a2229
CB
47494@ifset SYSTEM_GDBINIT_DIR
47495@item @value{SYSTEM_GDBINIT_DIR}
47496@end ifset
47497@ifclear SYSTEM_GDBINIT_DIR
47498@item (not enabled with @code{--with-system-gdbinit-dir} during compilation)
47499@end ifclear
47500System-wide initialization directory. All files in this directory are
47501executed on startup unless user specified @value{GDBN} option @code{-nx} or
47502@code{-n}, as long as they have a recognized file extension.
47503See more in
47504@ifset man
47505the @value{GDBN} manual in node @code{System-wide configuration}
47506-- shell command @code{info -f gdb -n 'System-wide configuration'}.
47507@end ifset
43662968
JK
47508@ifclear man
47509@ref{System-wide configuration}.
47510@end ifclear
47511
64aaad63 47512@item @file{~/.config/gdb/gdbinit} or @file{~/.gdbinit}
43662968
JK
47513User initialization file. It is executed unless user specified
47514@value{GDBN} options @code{-nx}, @code{-n} or @code{-nh}.
47515
64aaad63 47516@item @file{.gdbinit}
43662968
JK
47517Initialization file for current directory. It may need to be enabled with
47518@value{GDBN} security command @code{set auto-load local-gdbinit}.
47519See more in
47520@ifset man
47521the @value{GDBN} manual in node @code{Init File in the Current Directory}
47522-- shell command @code{info -f gdb -n 'Init File in the Current Directory'}.
47523@end ifset
47524@ifclear man
47525@ref{Init File in the Current Directory}.
47526@end ifclear
47527@end table
47528@c man end
47529
47530@c man begin SEEALSO gdbinit
47531@ifset man
47532gdb(1), @code{info -f gdb -n Startup}
47533
47534The full documentation for @value{GDBN} is maintained as a Texinfo manual.
47535If the @code{info} and @code{gdb} programs and @value{GDBN}'s Texinfo
47536documentation are properly installed at your site, the command
ba643918
SDJ
47537
47538@smallexample
47539info gdb
47540@end smallexample
47541
47542should give you access to the complete manual.
47543
47544@cite{Using GDB: A Guide to the GNU Source-Level Debugger},
47545Richard M. Stallman and Roland H. Pesch, July 1991.
47546@end ifset
47547@c man end
47548
47549@node gdb-add-index man
ba643918 47550@heading gdb-add-index
d726cb5d 47551@pindex gdb-add-index
dbfa4523 47552@anchor{gdb-add-index}
ba643918
SDJ
47553
47554@c man title gdb-add-index Add index files to speed up GDB
47555
47556@c man begin SYNOPSIS gdb-add-index
47557gdb-add-index @var{filename}
47558@c man end
47559
47560@c man begin DESCRIPTION gdb-add-index
47561When @value{GDBN} finds a symbol file, it scans the symbols in the
47562file in order to construct an internal symbol table. This lets most
47563@value{GDBN} operations work quickly--at the cost of a delay early on.
47564For large programs, this delay can be quite lengthy, so @value{GDBN}
47565provides a way to build an index, which speeds up startup.
47566
47567To determine whether a file contains such an index, use the command
47568@kbd{readelf -S filename}: the index is stored in a section named
47569@code{.gdb_index}. The index file can only be produced on systems
47570which use ELF binaries and DWARF debug information (i.e., sections
47571named @code{.debug_*}).
47572
47573@command{gdb-add-index} uses @value{GDBN} and @command{objdump} found
47574in the @env{PATH} environment variable. If you want to use different
47575versions of these programs, you can specify them through the
47576@env{GDB} and @env{OBJDUMP} environment variables.
47577
47578See more in
47579@ifset man
47580the @value{GDBN} manual in node @code{Index Files}
47581-- shell command @kbd{info -f gdb -n "Index Files"}.
47582@end ifset
47583@ifclear man
47584@ref{Index Files}.
47585@end ifclear
47586@c man end
47587
47588@c man begin SEEALSO gdb-add-index
47589@ifset man
47590The full documentation for @value{GDBN} is maintained as a Texinfo manual.
47591If the @code{info} and @code{gdb} programs and @value{GDBN}'s Texinfo
47592documentation are properly installed at your site, the command
43662968
JK
47593
47594@smallexample
47595info gdb
47596@end smallexample
47597
47598should give you access to the complete manual.
47599
47600@cite{Using GDB: A Guide to the GNU Source-Level Debugger},
47601Richard M. Stallman and Roland H. Pesch, July 1991.
47602@end ifset
47603@c man end
47604
aab4e0ec 47605@include gpl.texi
eb12ee30 47606
e4c0cfae
SS
47607@node GNU Free Documentation License
47608@appendix GNU Free Documentation License
6826cf00
EZ
47609@include fdl.texi
47610
00595b5e
EZ
47611@node Concept Index
47612@unnumbered Concept Index
c906108c
SS
47613
47614@printindex cp
47615
00595b5e
EZ
47616@node Command and Variable Index
47617@unnumbered Command, Variable, and Function Index
47618
47619@printindex fn
47620
c906108c 47621@tex
984359d2 47622% I think something like @@colophon should be in texinfo. In the
c906108c
SS
47623% meantime:
47624\long\def\colophon{\hbox to0pt{}\vfill
47625\centerline{The body of this manual is set in}
47626\centerline{\fontname\tenrm,}
47627\centerline{with headings in {\bf\fontname\tenbf}}
47628\centerline{and examples in {\tt\fontname\tentt}.}
47629\centerline{{\it\fontname\tenit\/},}
47630\centerline{{\bf\fontname\tenbf}, and}
47631\centerline{{\sl\fontname\tensl\/}}
47632\centerline{are used for emphasis.}\vfill}
47633\page\colophon
984359d2 47634% Blame: doc@@cygnus.com, 1991.
c906108c
SS
47635@end tex
47636
c906108c 47637@bye
This page took 9.105655 seconds and 4 git commands to generate.