* elf32-ppc.c (ppc_elf_check_relocs): Report plt reloc against
[deliverable/binutils-gdb.git] / gdb / doc / gdb.texinfo
CommitLineData
c906108c 1\input texinfo @c -*-texinfo-*-
b6ba6518 2@c Copyright 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1998,
1e698235 3@c 1999, 2000, 2001, 2002, 2003
c906108c
SS
4@c Free Software Foundation, Inc.
5@c
5d161b24 6@c %**start of header
c906108c
SS
7@c makeinfo ignores cmds prev to setfilename, so its arg cannot make use
8@c of @set vars. However, you can override filename with makeinfo -o.
9@setfilename gdb.info
10@c
11@include gdb-cfg.texi
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
23@syncodeindex ky cp
24
41afff9a 25@c readline appendices use @vindex, @findex and @ftable,
48e934c6 26@c annotate.texi and gdbmi use @findex.
c906108c 27@syncodeindex vr cp
41afff9a 28@syncodeindex fn cp
c906108c
SS
29
30@c !!set GDB manual's edition---not the same as GDB version!
9fe8321b 31@c This is updated by GNU Press.
e9c75b65 32@set EDITION Ninth
c906108c 33
87885426
FN
34@c !!set GDB edit command default editor
35@set EDITOR /bin/ex
c906108c 36
6c0e9fb3 37@c THIS MANUAL REQUIRES TEXINFO 4.0 OR LATER.
c906108c 38
c906108c 39@c This is a dir.info fragment to support semi-automated addition of
6d2ebf8b 40@c manuals to an info tree.
96a2c332
SS
41@dircategory Programming & development tools.
42@direntry
c906108c 43* Gdb: (gdb). The @sc{gnu} debugger.
96a2c332
SS
44@end direntry
45
c906108c
SS
46@ifinfo
47This file documents the @sc{gnu} debugger @value{GDBN}.
48
49
9fe8321b
AC
50This is the @value{EDITION} Edition, of @cite{Debugging with
51@value{GDBN}: the @sc{gnu} Source-Level Debugger} for @value{GDBN}
52Version @value{GDBVN}.
c906108c 53
8a037dd7 54Copyright (C) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1998,@*
1e698235 55 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
c906108c 56
e9c75b65
EZ
57Permission is granted to copy, distribute and/or modify this document
58under the terms of the GNU Free Documentation License, Version 1.1 or
59any later version published by the Free Software Foundation; with the
959acfd1
EZ
60Invariant Sections being ``Free Software'' and ``Free Software Needs
61Free Documentation'', with the Front-Cover Texts being ``A GNU Manual,''
62and with the Back-Cover Texts as in (a) below.
c906108c 63
6826cf00
EZ
64(a) The Free Software Foundation's Back-Cover Text is: ``You have
65freedom to copy and modify this GNU Manual, like GNU software. Copies
66published by the Free Software Foundation raise funds for GNU
67development.''
c906108c
SS
68@end ifinfo
69
70@titlepage
71@title Debugging with @value{GDBN}
72@subtitle The @sc{gnu} Source-Level Debugger
c906108c 73@sp 1
c906108c 74@subtitle @value{EDITION} Edition, for @value{GDBN} version @value{GDBVN}
9e9c5ae7 75@author Richard Stallman, Roland Pesch, Stan Shebs, et al.
c906108c 76@page
c906108c
SS
77@tex
78{\parskip=0pt
53a5351d 79\hfill (Send bugs and comments on @value{GDBN} to bug-gdb\@gnu.org.)\par
c906108c
SS
80\hfill {\it Debugging with @value{GDBN}}\par
81\hfill \TeX{}info \texinfoversion\par
82}
83@end tex
53a5351d 84
c906108c 85@vskip 0pt plus 1filll
8a037dd7 86Copyright @copyright{} 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995,
1e698235 871996, 1998, 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
c906108c 88@sp 2
c906108c
SS
89Published by the Free Software Foundation @*
9059 Temple Place - Suite 330, @*
91Boston, MA 02111-1307 USA @*
6d2ebf8b 92ISBN 1-882114-77-9 @*
e9c75b65
EZ
93
94Permission is granted to copy, distribute and/or modify this document
95under the terms of the GNU Free Documentation License, Version 1.1 or
96any later version published by the Free Software Foundation; with the
959acfd1
EZ
97Invariant Sections being ``Free Software'' and ``Free Software Needs
98Free Documentation'', with the Front-Cover Texts being ``A GNU Manual,''
99and with the Back-Cover Texts as in (a) below.
e9c75b65 100
6826cf00
EZ
101(a) The Free Software Foundation's Back-Cover Text is: ``You have
102freedom to copy and modify this GNU Manual, like GNU software. Copies
103published by the Free Software Foundation raise funds for GNU
104development.''
c906108c
SS
105@end titlepage
106@page
107
6c0e9fb3 108@ifnottex
6d2ebf8b
SS
109@node Top, Summary, (dir), (dir)
110
c906108c
SS
111@top Debugging with @value{GDBN}
112
113This file describes @value{GDBN}, the @sc{gnu} symbolic debugger.
114
9fe8321b 115This is the @value{EDITION} Edition, for @value{GDBN} Version
c906108c
SS
116@value{GDBVN}.
117
1e698235 118Copyright (C) 1988-2003 Free Software Foundation, Inc.
6d2ebf8b
SS
119
120@menu
121* Summary:: Summary of @value{GDBN}
122* Sample Session:: A sample @value{GDBN} session
123
124* Invocation:: Getting in and out of @value{GDBN}
125* Commands:: @value{GDBN} commands
126* Running:: Running programs under @value{GDBN}
127* Stopping:: Stopping and continuing
128* Stack:: Examining the stack
129* Source:: Examining source files
130* Data:: Examining data
e2e0bcd1 131* Macros:: Preprocessor Macros
b37052ae 132* Tracepoints:: Debugging remote targets non-intrusively
df0cd8c5 133* Overlays:: Debugging programs that use overlays
6d2ebf8b
SS
134
135* Languages:: Using @value{GDBN} with different languages
136
137* Symbols:: Examining the symbol table
138* Altering:: Altering execution
139* GDB Files:: @value{GDBN} files
140* Targets:: Specifying a debugging target
6b2f586d 141* Remote Debugging:: Debugging remote programs
6d2ebf8b
SS
142* Configurations:: Configuration-specific information
143* Controlling GDB:: Controlling @value{GDBN}
144* Sequences:: Canned sequences of commands
c4555f82 145* TUI:: @value{GDBN} Text User Interface
21c294e6 146* Interpreters:: Command Interpreters
6d2ebf8b
SS
147* Emacs:: Using @value{GDBN} under @sc{gnu} Emacs
148* Annotations:: @value{GDBN}'s annotation interface.
7162c0ca 149* GDB/MI:: @value{GDBN}'s Machine Interface.
6d2ebf8b
SS
150
151* GDB Bugs:: Reporting bugs in @value{GDBN}
152* Formatting Documentation:: How to format and print @value{GDBN} documentation
153
154* Command Line Editing:: Command Line Editing
155* Using History Interactively:: Using History Interactively
156* Installing GDB:: Installing GDB
eb12ee30 157* Maintenance Commands:: Maintenance Commands
e0ce93ac 158* Remote Protocol:: GDB Remote Serial Protocol
f418dd93 159* Agent Expressions:: The GDB Agent Expression Mechanism
aab4e0ec
AC
160* Copying:: GNU General Public License says
161 how you can copy and share GDB
6826cf00 162* GNU Free Documentation License:: The license for this documentation
6d2ebf8b
SS
163* Index:: Index
164@end menu
165
6c0e9fb3 166@end ifnottex
c906108c 167
449f3b6c 168@contents
449f3b6c 169
6d2ebf8b 170@node Summary
c906108c
SS
171@unnumbered Summary of @value{GDBN}
172
173The purpose of a debugger such as @value{GDBN} is to allow you to see what is
174going on ``inside'' another program while it executes---or what another
175program was doing at the moment it crashed.
176
177@value{GDBN} can do four main kinds of things (plus other things in support of
178these) to help you catch bugs in the act:
179
180@itemize @bullet
181@item
182Start your program, specifying anything that might affect its behavior.
183
184@item
185Make your program stop on specified conditions.
186
187@item
188Examine what has happened, when your program has stopped.
189
190@item
191Change things in your program, so you can experiment with correcting the
192effects of one bug and go on to learn about another.
193@end itemize
194
cce74817 195You can use @value{GDBN} to debug programs written in C and C++.
c906108c 196For more information, see @ref{Support,,Supported languages}.
c906108c
SS
197For more information, see @ref{C,,C and C++}.
198
cce74817 199@cindex Modula-2
e632838e
AC
200Support for Modula-2 is partial. For information on Modula-2, see
201@ref{Modula-2,,Modula-2}.
c906108c 202
cce74817
JM
203@cindex Pascal
204Debugging Pascal programs which use sets, subranges, file variables, or
205nested functions does not currently work. @value{GDBN} does not support
206entering expressions, printing values, or similar features using Pascal
207syntax.
c906108c 208
c906108c
SS
209@cindex Fortran
210@value{GDBN} can be used to debug programs written in Fortran, although
53a5351d 211it may be necessary to refer to some variables with a trailing
cce74817 212underscore.
c906108c 213
b37303ee
AF
214@value{GDBN} can be used to debug programs written in Objective-C,
215using either the Apple/NeXT or the GNU Objective-C runtime.
216
c906108c
SS
217@menu
218* Free Software:: Freely redistributable software
219* Contributors:: Contributors to GDB
220@end menu
221
6d2ebf8b 222@node Free Software
c906108c
SS
223@unnumberedsec Free software
224
5d161b24 225@value{GDBN} is @dfn{free software}, protected by the @sc{gnu}
c906108c
SS
226General Public License
227(GPL). The GPL gives you the freedom to copy or adapt a licensed
228program---but every person getting a copy also gets with it the
229freedom to modify that copy (which means that they must get access to
230the source code), and the freedom to distribute further copies.
231Typical software companies use copyrights to limit your freedoms; the
232Free Software Foundation uses the GPL to preserve these freedoms.
233
234Fundamentally, the General Public License is a license which says that
235you have these freedoms and that you cannot take these freedoms away
236from anyone else.
237
2666264b 238@unnumberedsec Free Software Needs Free Documentation
959acfd1
EZ
239
240The biggest deficiency in the free software community today is not in
241the software---it is the lack of good free documentation that we can
242include with the free software. Many of our most important
243programs do not come with free reference manuals and free introductory
244texts. Documentation is an essential part of any software package;
245when an important free software package does not come with a free
246manual and a free tutorial, that is a major gap. We have many such
247gaps today.
248
249Consider Perl, for instance. The tutorial manuals that people
250normally use are non-free. How did this come about? Because the
251authors of those manuals published them with restrictive terms---no
252copying, no modification, source files not available---which exclude
253them from the free software world.
254
255That wasn't the first time this sort of thing happened, and it was far
256from the last. Many times we have heard a GNU user eagerly describe a
257manual that he is writing, his intended contribution to the community,
258only to learn that he had ruined everything by signing a publication
259contract to make it non-free.
260
261Free documentation, like free software, is a matter of freedom, not
262price. The problem with the non-free manual is not that publishers
263charge a price for printed copies---that in itself is fine. (The Free
264Software Foundation sells printed copies of manuals, too.) The
265problem is the restrictions on the use of the manual. Free manuals
266are available in source code form, and give you permission to copy and
267modify. Non-free manuals do not allow this.
268
269The criteria of freedom for a free manual are roughly the same as for
270free software. Redistribution (including the normal kinds of
271commercial redistribution) must be permitted, so that the manual can
272accompany every copy of the program, both on-line and on paper.
273
274Permission for modification of the technical content is crucial too.
275When people modify the software, adding or changing features, if they
276are conscientious they will change the manual too---so they can
277provide accurate and clear documentation for the modified program. A
278manual that leaves you no choice but to write a new manual to document
279a changed version of the program is not really available to our
280community.
281
282Some kinds of limits on the way modification is handled are
283acceptable. For example, requirements to preserve the original
284author's copyright notice, the distribution terms, or the list of
285authors, are ok. It is also no problem to require modified versions
286to include notice that they were modified. Even entire sections that
287may not be deleted or changed are acceptable, as long as they deal
288with nontechnical topics (like this one). These kinds of restrictions
289are acceptable because they don't obstruct the community's normal use
290of the manual.
291
292However, it must be possible to modify all the @emph{technical}
293content of the manual, and then distribute the result in all the usual
294media, through all the usual channels. Otherwise, the restrictions
295obstruct the use of the manual, it is not free, and we need another
296manual to replace it.
297
298Please spread the word about this issue. Our community continues to
299lose manuals to proprietary publishing. If we spread the word that
300free software needs free reference manuals and free tutorials, perhaps
301the next person who wants to contribute by writing documentation will
302realize, before it is too late, that only free manuals contribute to
303the free software community.
304
305If you are writing documentation, please insist on publishing it under
306the GNU Free Documentation License or another free documentation
307license. Remember that this decision requires your approval---you
308don't have to let the publisher decide. Some commercial publishers
309will use a free license if you insist, but they will not propose the
310option; it is up to you to raise the issue and say firmly that this is
311what you want. If the publisher you are dealing with refuses, please
312try other publishers. If you're not sure whether a proposed license
42584a72 313is free, write to @email{licensing@@gnu.org}.
959acfd1
EZ
314
315You can encourage commercial publishers to sell more free, copylefted
316manuals and tutorials by buying them, and particularly by buying
317copies from the publishers that paid for their writing or for major
318improvements. Meanwhile, try to avoid buying non-free documentation
319at all. Check the distribution terms of a manual before you buy it,
320and insist that whoever seeks your business must respect your freedom.
72c9928d
EZ
321Check the history of the book, and try to reward the publishers that
322have paid or pay the authors to work on it.
959acfd1
EZ
323
324The Free Software Foundation maintains a list of free documentation
325published by other publishers, at
326@url{http://www.fsf.org/doc/other-free-books.html}.
327
6d2ebf8b 328@node Contributors
96a2c332
SS
329@unnumberedsec Contributors to @value{GDBN}
330
331Richard Stallman was the original author of @value{GDBN}, and of many
332other @sc{gnu} programs. Many others have contributed to its
333development. This section attempts to credit major contributors. One
334of the virtues of free software is that everyone is free to contribute
335to it; with regret, we cannot actually acknowledge everyone here. The
336file @file{ChangeLog} in the @value{GDBN} distribution approximates a
c906108c
SS
337blow-by-blow account.
338
339Changes much prior to version 2.0 are lost in the mists of time.
340
341@quotation
342@emph{Plea:} Additions to this section are particularly welcome. If you
343or your friends (or enemies, to be evenhanded) have been unfairly
344omitted from this list, we would like to add your names!
345@end quotation
346
347So that they may not regard their many labors as thankless, we
348particularly thank those who shepherded @value{GDBN} through major
349releases:
f2c06f52 350Andrew Cagney (releases 6.0, 5.3, 5.2, 5.1 and 5.0);
c906108c
SS
351Jim Blandy (release 4.18);
352Jason Molenda (release 4.17);
353Stan Shebs (release 4.14);
354Fred Fish (releases 4.16, 4.15, 4.13, 4.12, 4.11, 4.10, and 4.9);
355Stu Grossman and John Gilmore (releases 4.8, 4.7, 4.6, 4.5, and 4.4);
356John Gilmore (releases 4.3, 4.2, 4.1, 4.0, and 3.9);
357Jim Kingdon (releases 3.5, 3.4, and 3.3);
358and Randy Smith (releases 3.2, 3.1, and 3.0).
359
360Richard Stallman, assisted at various times by Peter TerMaat, Chris
361Hanson, and Richard Mlynarik, handled releases through 2.8.
362
b37052ae
EZ
363Michael Tiemann is the author of most of the @sc{gnu} C@t{++} support
364in @value{GDBN}, with significant additional contributions from Per
365Bothner and Daniel Berlin. James Clark wrote the @sc{gnu} C@t{++}
366demangler. Early work on C@t{++} was by Peter TerMaat (who also did
367much general update work leading to release 3.0).
c906108c 368
b37052ae 369@value{GDBN} uses the BFD subroutine library to examine multiple
c906108c
SS
370object-file formats; BFD was a joint project of David V.
371Henkel-Wallace, Rich Pixley, Steve Chamberlain, and John Gilmore.
372
373David Johnson wrote the original COFF support; Pace Willison did
374the original support for encapsulated COFF.
375
0179ffac 376Brent Benson of Harris Computer Systems contributed DWARF 2 support.
c906108c
SS
377
378Adam de Boor and Bradley Davis contributed the ISI Optimum V support.
379Per Bothner, Noboyuki Hikichi, and Alessandro Forin contributed MIPS
380support.
381Jean-Daniel Fekete contributed Sun 386i support.
382Chris Hanson improved the HP9000 support.
383Noboyuki Hikichi and Tomoyuki Hasei contributed Sony/News OS 3 support.
384David Johnson contributed Encore Umax support.
385Jyrki Kuoppala contributed Altos 3068 support.
386Jeff Law contributed HP PA and SOM support.
387Keith Packard contributed NS32K support.
388Doug Rabson contributed Acorn Risc Machine support.
389Bob Rusk contributed Harris Nighthawk CX-UX support.
390Chris Smith contributed Convex support (and Fortran debugging).
391Jonathan Stone contributed Pyramid support.
392Michael Tiemann contributed SPARC support.
393Tim Tucker contributed support for the Gould NP1 and Gould Powernode.
394Pace Willison contributed Intel 386 support.
395Jay Vosburgh contributed Symmetry support.
a37295f9 396Marko Mlinar contributed OpenRISC 1000 support.
c906108c 397
1104b9e7 398Andreas Schwab contributed M68K @sc{gnu}/Linux support.
c906108c
SS
399
400Rich Schaefer and Peter Schauer helped with support of SunOS shared
401libraries.
402
403Jay Fenlason and Roland McGrath ensured that @value{GDBN} and GAS agree
404about several machine instruction sets.
405
406Patrick Duval, Ted Goldstein, Vikram Koka and Glenn Engel helped develop
407remote debugging. Intel Corporation, Wind River Systems, AMD, and ARM
408contributed remote debugging modules for the i960, VxWorks, A29K UDI,
409and RDI targets, respectively.
410
411Brian Fox is the author of the readline libraries providing
412command-line editing and command history.
413
7a292a7a
SS
414Andrew Beers of SUNY Buffalo wrote the language-switching code, the
415Modula-2 support, and contributed the Languages chapter of this manual.
c906108c 416
5d161b24 417Fred Fish wrote most of the support for Unix System Vr4.
b37052ae 418He also enhanced the command-completion support to cover C@t{++} overloaded
c906108c 419symbols.
c906108c
SS
420
421Hitachi America, Ltd. sponsored the support for H8/300, H8/500, and
422Super-H processors.
423
424NEC sponsored the support for the v850, Vr4xxx, and Vr5xxx processors.
425
426Mitsubishi sponsored the support for D10V, D30V, and M32R/D processors.
427
428Toshiba sponsored the support for the TX39 Mips processor.
429
430Matsushita sponsored the support for the MN10200 and MN10300 processors.
431
96a2c332 432Fujitsu sponsored the support for SPARClite and FR30 processors.
c906108c
SS
433
434Kung Hsu, Jeff Law, and Rick Sladkey added support for hardware
435watchpoints.
436
437Michael Snyder added support for tracepoints.
438
439Stu Grossman wrote gdbserver.
440
441Jim Kingdon, Peter Schauer, Ian Taylor, and Stu Grossman made
96a2c332 442nearly innumerable bug fixes and cleanups throughout @value{GDBN}.
c906108c
SS
443
444The following people at the Hewlett-Packard Company contributed
445support for the PA-RISC 2.0 architecture, HP-UX 10.20, 10.30, and 11.0
b37052ae 446(narrow mode), HP's implementation of kernel threads, HP's aC@t{++}
c906108c
SS
447compiler, and the terminal user interface: Ben Krepp, Richard Title,
448John Bishop, Susan Macchia, Kathy Mann, Satish Pai, India Paul, Steve
449Rehrauer, and Elena Zannoni. Kim Haase provided HP-specific
450information in this manual.
451
b37052ae
EZ
452DJ Delorie ported @value{GDBN} to MS-DOS, for the DJGPP project.
453Robert Hoehne made significant contributions to the DJGPP port.
454
96a2c332
SS
455Cygnus Solutions has sponsored @value{GDBN} maintenance and much of its
456development since 1991. Cygnus engineers who have worked on @value{GDBN}
2df3850c
JM
457fulltime include Mark Alexander, Jim Blandy, Per Bothner, Kevin
458Buettner, Edith Epstein, Chris Faylor, Fred Fish, Martin Hunt, Jim
459Ingham, John Gilmore, Stu Grossman, Kung Hsu, Jim Kingdon, John Metzler,
460Fernando Nasser, Geoffrey Noer, Dawn Perchik, Rich Pixley, Zdenek
461Radouch, Keith Seitz, Stan Shebs, David Taylor, and Elena Zannoni. In
462addition, Dave Brolley, Ian Carmichael, Steve Chamberlain, Nick Clifton,
463JT Conklin, Stan Cox, DJ Delorie, Ulrich Drepper, Frank Eigler, Doug
464Evans, Sean Fagan, David Henkel-Wallace, Richard Henderson, Jeff
465Holcomb, Jeff Law, Jim Lemke, Tom Lord, Bob Manson, Michael Meissner,
466Jason Merrill, Catherine Moore, Drew Moseley, Ken Raeburn, Gavin
467Romig-Koch, Rob Savoye, Jamie Smith, Mike Stump, Ian Taylor, Angela
468Thomas, Michael Tiemann, Tom Tromey, Ron Unrau, Jim Wilson, and David
469Zuhn have made contributions both large and small.
c906108c 470
e2e0bcd1
JB
471Jim Blandy added support for preprocessor macros, while working for Red
472Hat.
c906108c 473
6d2ebf8b 474@node Sample Session
c906108c
SS
475@chapter A Sample @value{GDBN} Session
476
477You can use this manual at your leisure to read all about @value{GDBN}.
478However, a handful of commands are enough to get started using the
479debugger. This chapter illustrates those commands.
480
481@iftex
482In this sample session, we emphasize user input like this: @b{input},
483to make it easier to pick out from the surrounding output.
484@end iftex
485
486@c FIXME: this example may not be appropriate for some configs, where
487@c FIXME...primary interest is in remote use.
488
489One of the preliminary versions of @sc{gnu} @code{m4} (a generic macro
490processor) exhibits the following bug: sometimes, when we change its
491quote strings from the default, the commands used to capture one macro
492definition within another stop working. In the following short @code{m4}
493session, we define a macro @code{foo} which expands to @code{0000}; we
494then use the @code{m4} built-in @code{defn} to define @code{bar} as the
495same thing. However, when we change the open quote string to
496@code{<QUOTE>} and the close quote string to @code{<UNQUOTE>}, the same
497procedure fails to define a new synonym @code{baz}:
498
499@smallexample
500$ @b{cd gnu/m4}
501$ @b{./m4}
502@b{define(foo,0000)}
503
504@b{foo}
5050000
506@b{define(bar,defn(`foo'))}
507
508@b{bar}
5090000
510@b{changequote(<QUOTE>,<UNQUOTE>)}
511
512@b{define(baz,defn(<QUOTE>foo<UNQUOTE>))}
513@b{baz}
514@b{C-d}
515m4: End of input: 0: fatal error: EOF in string
516@end smallexample
517
518@noindent
519Let us use @value{GDBN} to try to see what is going on.
520
c906108c
SS
521@smallexample
522$ @b{@value{GDBP} m4}
523@c FIXME: this falsifies the exact text played out, to permit smallbook
524@c FIXME... format to come out better.
525@value{GDBN} is free software and you are welcome to distribute copies
5d161b24 526 of it under certain conditions; type "show copying" to see
c906108c 527 the conditions.
5d161b24 528There is absolutely no warranty for @value{GDBN}; type "show warranty"
c906108c
SS
529 for details.
530
531@value{GDBN} @value{GDBVN}, Copyright 1999 Free Software Foundation, Inc...
532(@value{GDBP})
533@end smallexample
c906108c
SS
534
535@noindent
536@value{GDBN} reads only enough symbol data to know where to find the
537rest when needed; as a result, the first prompt comes up very quickly.
538We now tell @value{GDBN} to use a narrower display width than usual, so
539that examples fit in this manual.
540
541@smallexample
542(@value{GDBP}) @b{set width 70}
543@end smallexample
544
545@noindent
546We need to see how the @code{m4} built-in @code{changequote} works.
547Having looked at the source, we know the relevant subroutine is
548@code{m4_changequote}, so we set a breakpoint there with the @value{GDBN}
549@code{break} command.
550
551@smallexample
552(@value{GDBP}) @b{break m4_changequote}
553Breakpoint 1 at 0x62f4: file builtin.c, line 879.
554@end smallexample
555
556@noindent
557Using the @code{run} command, we start @code{m4} running under @value{GDBN}
558control; as long as control does not reach the @code{m4_changequote}
559subroutine, the program runs as usual:
560
561@smallexample
562(@value{GDBP}) @b{run}
563Starting program: /work/Editorial/gdb/gnu/m4/m4
564@b{define(foo,0000)}
565
566@b{foo}
5670000
568@end smallexample
569
570@noindent
571To trigger the breakpoint, we call @code{changequote}. @value{GDBN}
572suspends execution of @code{m4}, displaying information about the
573context where it stops.
574
575@smallexample
576@b{changequote(<QUOTE>,<UNQUOTE>)}
577
5d161b24 578Breakpoint 1, m4_changequote (argc=3, argv=0x33c70)
c906108c
SS
579 at builtin.c:879
580879 if (bad_argc(TOKEN_DATA_TEXT(argv[0]),argc,1,3))
581@end smallexample
582
583@noindent
584Now we use the command @code{n} (@code{next}) to advance execution to
585the next line of the current function.
586
587@smallexample
588(@value{GDBP}) @b{n}
589882 set_quotes((argc >= 2) ? TOKEN_DATA_TEXT(argv[1])\
590 : nil,
591@end smallexample
592
593@noindent
594@code{set_quotes} looks like a promising subroutine. We can go into it
595by using the command @code{s} (@code{step}) instead of @code{next}.
596@code{step} goes to the next line to be executed in @emph{any}
597subroutine, so it steps into @code{set_quotes}.
598
599@smallexample
600(@value{GDBP}) @b{s}
601set_quotes (lq=0x34c78 "<QUOTE>", rq=0x34c88 "<UNQUOTE>")
602 at input.c:530
603530 if (lquote != def_lquote)
604@end smallexample
605
606@noindent
607The display that shows the subroutine where @code{m4} is now
608suspended (and its arguments) is called a stack frame display. It
609shows a summary of the stack. We can use the @code{backtrace}
610command (which can also be spelled @code{bt}), to see where we are
611in the stack as a whole: the @code{backtrace} command displays a
612stack frame for each active subroutine.
613
614@smallexample
615(@value{GDBP}) @b{bt}
616#0 set_quotes (lq=0x34c78 "<QUOTE>", rq=0x34c88 "<UNQUOTE>")
617 at input.c:530
5d161b24 618#1 0x6344 in m4_changequote (argc=3, argv=0x33c70)
c906108c
SS
619 at builtin.c:882
620#2 0x8174 in expand_macro (sym=0x33320) at macro.c:242
621#3 0x7a88 in expand_token (obs=0x0, t=209696, td=0xf7fffa30)
622 at macro.c:71
623#4 0x79dc in expand_input () at macro.c:40
624#5 0x2930 in main (argc=0, argv=0xf7fffb20) at m4.c:195
625@end smallexample
626
627@noindent
628We step through a few more lines to see what happens. The first two
629times, we can use @samp{s}; the next two times we use @code{n} to avoid
630falling into the @code{xstrdup} subroutine.
631
632@smallexample
633(@value{GDBP}) @b{s}
6340x3b5c 532 if (rquote != def_rquote)
635(@value{GDBP}) @b{s}
6360x3b80 535 lquote = (lq == nil || *lq == '\0') ? \
637def_lquote : xstrdup(lq);
638(@value{GDBP}) @b{n}
639536 rquote = (rq == nil || *rq == '\0') ? def_rquote\
640 : xstrdup(rq);
641(@value{GDBP}) @b{n}
642538 len_lquote = strlen(rquote);
643@end smallexample
644
645@noindent
646The last line displayed looks a little odd; we can examine the variables
647@code{lquote} and @code{rquote} to see if they are in fact the new left
648and right quotes we specified. We use the command @code{p}
649(@code{print}) to see their values.
650
651@smallexample
652(@value{GDBP}) @b{p lquote}
653$1 = 0x35d40 "<QUOTE>"
654(@value{GDBP}) @b{p rquote}
655$2 = 0x35d50 "<UNQUOTE>"
656@end smallexample
657
658@noindent
659@code{lquote} and @code{rquote} are indeed the new left and right quotes.
660To look at some context, we can display ten lines of source
661surrounding the current line with the @code{l} (@code{list}) command.
662
663@smallexample
664(@value{GDBP}) @b{l}
665533 xfree(rquote);
666534
667535 lquote = (lq == nil || *lq == '\0') ? def_lquote\
668 : xstrdup (lq);
669536 rquote = (rq == nil || *rq == '\0') ? def_rquote\
670 : xstrdup (rq);
671537
672538 len_lquote = strlen(rquote);
673539 len_rquote = strlen(lquote);
674540 @}
675541
676542 void
677@end smallexample
678
679@noindent
680Let us step past the two lines that set @code{len_lquote} and
681@code{len_rquote}, and then examine the values of those variables.
682
683@smallexample
684(@value{GDBP}) @b{n}
685539 len_rquote = strlen(lquote);
686(@value{GDBP}) @b{n}
687540 @}
688(@value{GDBP}) @b{p len_lquote}
689$3 = 9
690(@value{GDBP}) @b{p len_rquote}
691$4 = 7
692@end smallexample
693
694@noindent
695That certainly looks wrong, assuming @code{len_lquote} and
696@code{len_rquote} are meant to be the lengths of @code{lquote} and
697@code{rquote} respectively. We can set them to better values using
698the @code{p} command, since it can print the value of
699any expression---and that expression can include subroutine calls and
700assignments.
701
702@smallexample
703(@value{GDBP}) @b{p len_lquote=strlen(lquote)}
704$5 = 7
705(@value{GDBP}) @b{p len_rquote=strlen(rquote)}
706$6 = 9
707@end smallexample
708
709@noindent
710Is that enough to fix the problem of using the new quotes with the
711@code{m4} built-in @code{defn}? We can allow @code{m4} to continue
712executing with the @code{c} (@code{continue}) command, and then try the
713example that caused trouble initially:
714
715@smallexample
716(@value{GDBP}) @b{c}
717Continuing.
718
719@b{define(baz,defn(<QUOTE>foo<UNQUOTE>))}
720
721baz
7220000
723@end smallexample
724
725@noindent
726Success! The new quotes now work just as well as the default ones. The
727problem seems to have been just the two typos defining the wrong
728lengths. We allow @code{m4} exit by giving it an EOF as input:
729
730@smallexample
731@b{C-d}
732Program exited normally.
733@end smallexample
734
735@noindent
736The message @samp{Program exited normally.} is from @value{GDBN}; it
737indicates @code{m4} has finished executing. We can end our @value{GDBN}
738session with the @value{GDBN} @code{quit} command.
739
740@smallexample
741(@value{GDBP}) @b{quit}
742@end smallexample
c906108c 743
6d2ebf8b 744@node Invocation
c906108c
SS
745@chapter Getting In and Out of @value{GDBN}
746
747This chapter discusses how to start @value{GDBN}, and how to get out of it.
5d161b24 748The essentials are:
c906108c 749@itemize @bullet
5d161b24 750@item
53a5351d 751type @samp{@value{GDBP}} to start @value{GDBN}.
5d161b24 752@item
c906108c
SS
753type @kbd{quit} or @kbd{C-d} to exit.
754@end itemize
755
756@menu
757* Invoking GDB:: How to start @value{GDBN}
758* Quitting GDB:: How to quit @value{GDBN}
759* Shell Commands:: How to use shell commands inside @value{GDBN}
760@end menu
761
6d2ebf8b 762@node Invoking GDB
c906108c
SS
763@section Invoking @value{GDBN}
764
c906108c
SS
765Invoke @value{GDBN} by running the program @code{@value{GDBP}}. Once started,
766@value{GDBN} reads commands from the terminal until you tell it to exit.
767
768You can also run @code{@value{GDBP}} with a variety of arguments and options,
769to specify more of your debugging environment at the outset.
770
c906108c
SS
771The command-line options described here are designed
772to cover a variety of situations; in some environments, some of these
5d161b24 773options may effectively be unavailable.
c906108c
SS
774
775The most usual way to start @value{GDBN} is with one argument,
776specifying an executable program:
777
474c8240 778@smallexample
c906108c 779@value{GDBP} @var{program}
474c8240 780@end smallexample
c906108c 781
c906108c
SS
782@noindent
783You can also start with both an executable program and a core file
784specified:
785
474c8240 786@smallexample
c906108c 787@value{GDBP} @var{program} @var{core}
474c8240 788@end smallexample
c906108c
SS
789
790You can, instead, specify a process ID as a second argument, if you want
791to debug a running process:
792
474c8240 793@smallexample
c906108c 794@value{GDBP} @var{program} 1234
474c8240 795@end smallexample
c906108c
SS
796
797@noindent
798would attach @value{GDBN} to process @code{1234} (unless you also have a file
799named @file{1234}; @value{GDBN} does check for a core file first).
800
c906108c 801Taking advantage of the second command-line argument requires a fairly
2df3850c
JM
802complete operating system; when you use @value{GDBN} as a remote
803debugger attached to a bare board, there may not be any notion of
804``process'', and there is often no way to get a core dump. @value{GDBN}
805will warn you if it is unable to attach or to read core dumps.
c906108c 806
aa26fa3a
TT
807You can optionally have @code{@value{GDBP}} pass any arguments after the
808executable file to the inferior using @code{--args}. This option stops
809option processing.
474c8240 810@smallexample
aa26fa3a 811gdb --args gcc -O2 -c foo.c
474c8240 812@end smallexample
aa26fa3a
TT
813This will cause @code{@value{GDBP}} to debug @code{gcc}, and to set
814@code{gcc}'s command-line arguments (@pxref{Arguments}) to @samp{-O2 -c foo.c}.
815
96a2c332 816You can run @code{@value{GDBP}} without printing the front material, which describes
c906108c
SS
817@value{GDBN}'s non-warranty, by specifying @code{-silent}:
818
819@smallexample
820@value{GDBP} -silent
821@end smallexample
822
823@noindent
824You can further control how @value{GDBN} starts up by using command-line
825options. @value{GDBN} itself can remind you of the options available.
826
827@noindent
828Type
829
474c8240 830@smallexample
c906108c 831@value{GDBP} -help
474c8240 832@end smallexample
c906108c
SS
833
834@noindent
835to display all available options and briefly describe their use
836(@samp{@value{GDBP} -h} is a shorter equivalent).
837
838All options and command line arguments you give are processed
839in sequential order. The order makes a difference when the
840@samp{-x} option is used.
841
842
843@menu
c906108c
SS
844* File Options:: Choosing files
845* Mode Options:: Choosing modes
846@end menu
847
6d2ebf8b 848@node File Options
c906108c
SS
849@subsection Choosing files
850
2df3850c 851When @value{GDBN} starts, it reads any arguments other than options as
c906108c
SS
852specifying an executable file and core file (or process ID). This is
853the same as if the arguments were specified by the @samp{-se} and
19837790
MS
854@samp{-c} (or @samp{-p} options respectively. (@value{GDBN} reads the
855first argument that does not have an associated option flag as
856equivalent to the @samp{-se} option followed by that argument; and the
857second argument that does not have an associated option flag, if any, as
858equivalent to the @samp{-c}/@samp{-p} option followed by that argument.)
859If the second argument begins with a decimal digit, @value{GDBN} will
860first attempt to attach to it as a process, and if that fails, attempt
861to open it as a corefile. If you have a corefile whose name begins with
862a digit, you can prevent @value{GDBN} from treating it as a pid by
79f12247 863prefixing it with @file{./}, eg. @file{./12345}.
7a292a7a
SS
864
865If @value{GDBN} has not been configured to included core file support,
866such as for most embedded targets, then it will complain about a second
867argument and ignore it.
c906108c
SS
868
869Many options have both long and short forms; both are shown in the
870following list. @value{GDBN} also recognizes the long forms if you truncate
871them, so long as enough of the option is present to be unambiguous.
872(If you prefer, you can flag option arguments with @samp{--} rather
873than @samp{-}, though we illustrate the more usual convention.)
874
d700128c
EZ
875@c NOTE: the @cindex entries here use double dashes ON PURPOSE. This
876@c way, both those who look for -foo and --foo in the index, will find
877@c it.
878
c906108c
SS
879@table @code
880@item -symbols @var{file}
881@itemx -s @var{file}
d700128c
EZ
882@cindex @code{--symbols}
883@cindex @code{-s}
c906108c
SS
884Read symbol table from file @var{file}.
885
886@item -exec @var{file}
887@itemx -e @var{file}
d700128c
EZ
888@cindex @code{--exec}
889@cindex @code{-e}
7a292a7a
SS
890Use file @var{file} as the executable file to execute when appropriate,
891and for examining pure data in conjunction with a core dump.
c906108c
SS
892
893@item -se @var{file}
d700128c 894@cindex @code{--se}
c906108c
SS
895Read symbol table from file @var{file} and use it as the executable
896file.
897
c906108c
SS
898@item -core @var{file}
899@itemx -c @var{file}
d700128c
EZ
900@cindex @code{--core}
901@cindex @code{-c}
19837790 902Use file @var{file} as a core dump to examine.
c906108c
SS
903
904@item -c @var{number}
19837790
MS
905@item -pid @var{number}
906@itemx -p @var{number}
907@cindex @code{--pid}
908@cindex @code{-p}
909Connect to process ID @var{number}, as with the @code{attach} command.
910If there is no such process, @value{GDBN} will attempt to open a core
911file named @var{number}.
c906108c
SS
912
913@item -command @var{file}
914@itemx -x @var{file}
d700128c
EZ
915@cindex @code{--command}
916@cindex @code{-x}
c906108c
SS
917Execute @value{GDBN} commands from file @var{file}. @xref{Command
918Files,, Command files}.
919
920@item -directory @var{directory}
921@itemx -d @var{directory}
d700128c
EZ
922@cindex @code{--directory}
923@cindex @code{-d}
c906108c
SS
924Add @var{directory} to the path to search for source files.
925
c906108c
SS
926@item -m
927@itemx -mapped
d700128c
EZ
928@cindex @code{--mapped}
929@cindex @code{-m}
c906108c
SS
930@emph{Warning: this option depends on operating system facilities that are not
931supported on all systems.}@*
932If memory-mapped files are available on your system through the @code{mmap}
5d161b24 933system call, you can use this option
c906108c
SS
934to have @value{GDBN} write the symbols from your
935program into a reusable file in the current directory. If the program you are debugging is
96a2c332 936called @file{/tmp/fred}, the mapped symbol file is @file{/tmp/fred.syms}.
c906108c
SS
937Future @value{GDBN} debugging sessions notice the presence of this file,
938and can quickly map in symbol information from it, rather than reading
939the symbol table from the executable program.
940
941The @file{.syms} file is specific to the host machine where @value{GDBN}
942is run. It holds an exact image of the internal @value{GDBN} symbol
943table. It cannot be shared across multiple host platforms.
c906108c 944
c906108c
SS
945@item -r
946@itemx -readnow
d700128c
EZ
947@cindex @code{--readnow}
948@cindex @code{-r}
c906108c
SS
949Read each symbol file's entire symbol table immediately, rather than
950the default, which is to read it incrementally as it is needed.
951This makes startup slower, but makes future operations faster.
53a5351d 952
c906108c
SS
953@end table
954
2df3850c 955You typically combine the @code{-mapped} and @code{-readnow} options in
c906108c 956order to build a @file{.syms} file that contains complete symbol
2df3850c
JM
957information. (@xref{Files,,Commands to specify files}, for information
958on @file{.syms} files.) A simple @value{GDBN} invocation to do nothing
959but build a @file{.syms} file for future use is:
c906108c 960
474c8240 961@smallexample
2df3850c 962gdb -batch -nx -mapped -readnow programname
474c8240 963@end smallexample
c906108c 964
6d2ebf8b 965@node Mode Options
c906108c
SS
966@subsection Choosing modes
967
968You can run @value{GDBN} in various alternative modes---for example, in
969batch mode or quiet mode.
970
971@table @code
972@item -nx
973@itemx -n
d700128c
EZ
974@cindex @code{--nx}
975@cindex @code{-n}
96565e91 976Do not execute commands found in any initialization files. Normally,
2df3850c
JM
977@value{GDBN} executes the commands in these files after all the command
978options and arguments have been processed. @xref{Command Files,,Command
979files}.
c906108c
SS
980
981@item -quiet
d700128c 982@itemx -silent
c906108c 983@itemx -q
d700128c
EZ
984@cindex @code{--quiet}
985@cindex @code{--silent}
986@cindex @code{-q}
c906108c
SS
987``Quiet''. Do not print the introductory and copyright messages. These
988messages are also suppressed in batch mode.
989
990@item -batch
d700128c 991@cindex @code{--batch}
c906108c
SS
992Run in batch mode. Exit with status @code{0} after processing all the
993command files specified with @samp{-x} (and all commands from
994initialization files, if not inhibited with @samp{-n}). Exit with
995nonzero status if an error occurs in executing the @value{GDBN} commands
996in the command files.
997
2df3850c
JM
998Batch mode may be useful for running @value{GDBN} as a filter, for
999example to download and run a program on another computer; in order to
1000make this more useful, the message
c906108c 1001
474c8240 1002@smallexample
c906108c 1003Program exited normally.
474c8240 1004@end smallexample
c906108c
SS
1005
1006@noindent
2df3850c
JM
1007(which is ordinarily issued whenever a program running under
1008@value{GDBN} control terminates) is not issued when running in batch
1009mode.
1010
1011@item -nowindows
1012@itemx -nw
d700128c
EZ
1013@cindex @code{--nowindows}
1014@cindex @code{-nw}
2df3850c 1015``No windows''. If @value{GDBN} comes with a graphical user interface
96a2c332 1016(GUI) built in, then this option tells @value{GDBN} to only use the command-line
2df3850c
JM
1017interface. If no GUI is available, this option has no effect.
1018
1019@item -windows
1020@itemx -w
d700128c
EZ
1021@cindex @code{--windows}
1022@cindex @code{-w}
2df3850c
JM
1023If @value{GDBN} includes a GUI, then this option requires it to be
1024used if possible.
c906108c
SS
1025
1026@item -cd @var{directory}
d700128c 1027@cindex @code{--cd}
c906108c
SS
1028Run @value{GDBN} using @var{directory} as its working directory,
1029instead of the current directory.
1030
c906108c
SS
1031@item -fullname
1032@itemx -f
d700128c
EZ
1033@cindex @code{--fullname}
1034@cindex @code{-f}
7a292a7a
SS
1035@sc{gnu} Emacs sets this option when it runs @value{GDBN} as a
1036subprocess. It tells @value{GDBN} to output the full file name and line
1037number in a standard, recognizable fashion each time a stack frame is
1038displayed (which includes each time your program stops). This
1039recognizable format looks like two @samp{\032} characters, followed by
1040the file name, line number and character position separated by colons,
1041and a newline. The Emacs-to-@value{GDBN} interface program uses the two
1042@samp{\032} characters as a signal to display the source code for the
1043frame.
c906108c 1044
d700128c
EZ
1045@item -epoch
1046@cindex @code{--epoch}
1047The Epoch Emacs-@value{GDBN} interface sets this option when it runs
1048@value{GDBN} as a subprocess. It tells @value{GDBN} to modify its print
1049routines so as to allow Epoch to display values of expressions in a
1050separate window.
1051
1052@item -annotate @var{level}
1053@cindex @code{--annotate}
1054This option sets the @dfn{annotation level} inside @value{GDBN}. Its
1055effect is identical to using @samp{set annotate @var{level}}
1056(@pxref{Annotations}).
1057Annotation level controls how much information does @value{GDBN} print
1058together with its prompt, values of expressions, source lines, and other
1059types of output. Level 0 is the normal, level 1 is for use when
1060@value{GDBN} is run as a subprocess of @sc{gnu} Emacs, level 2 is the
1061maximum annotation suitable for programs that control @value{GDBN}.
1062
1063@item -async
1064@cindex @code{--async}
1065Use the asynchronous event loop for the command-line interface.
1066@value{GDBN} processes all events, such as user keyboard input, via a
1067special event loop. This allows @value{GDBN} to accept and process user
1068commands in parallel with the debugged process being
1069run@footnote{@value{GDBN} built with @sc{djgpp} tools for
1070MS-DOS/MS-Windows supports this mode of operation, but the event loop is
1071suspended when the debuggee runs.}, so you don't need to wait for
1072control to return to @value{GDBN} before you type the next command.
b37052ae 1073(@emph{Note:} as of version 5.1, the target side of the asynchronous
d700128c
EZ
1074operation is not yet in place, so @samp{-async} does not work fully
1075yet.)
1076@c FIXME: when the target side of the event loop is done, the above NOTE
1077@c should be removed.
1078
1079When the standard input is connected to a terminal device, @value{GDBN}
1080uses the asynchronous event loop by default, unless disabled by the
1081@samp{-noasync} option.
1082
1083@item -noasync
1084@cindex @code{--noasync}
1085Disable the asynchronous event loop for the command-line interface.
1086
aa26fa3a
TT
1087@item --args
1088@cindex @code{--args}
1089Change interpretation of command line so that arguments following the
1090executable file are passed as command line arguments to the inferior.
1091This option stops option processing.
1092
2df3850c
JM
1093@item -baud @var{bps}
1094@itemx -b @var{bps}
d700128c
EZ
1095@cindex @code{--baud}
1096@cindex @code{-b}
c906108c
SS
1097Set the line speed (baud rate or bits per second) of any serial
1098interface used by @value{GDBN} for remote debugging.
c906108c
SS
1099
1100@item -tty @var{device}
d700128c
EZ
1101@itemx -t @var{device}
1102@cindex @code{--tty}
1103@cindex @code{-t}
c906108c
SS
1104Run using @var{device} for your program's standard input and output.
1105@c FIXME: kingdon thinks there is more to -tty. Investigate.
c906108c 1106
53a5351d 1107@c resolve the situation of these eventually
c4555f82
SC
1108@item -tui
1109@cindex @code{--tui}
1110Activate the Terminal User Interface when starting.
1111The Terminal User Interface manages several text windows on the terminal,
1112showing source, assembly, registers and @value{GDBN} command outputs
1113(@pxref{TUI, ,@value{GDBN} Text User Interface}).
1114Do not use this option if you run @value{GDBN} from Emacs
1115(@pxref{Emacs, ,Using @value{GDBN} under @sc{gnu} Emacs}).
53a5351d
JM
1116
1117@c @item -xdb
d700128c 1118@c @cindex @code{--xdb}
53a5351d
JM
1119@c Run in XDB compatibility mode, allowing the use of certain XDB commands.
1120@c For information, see the file @file{xdb_trans.html}, which is usually
1121@c installed in the directory @code{/opt/langtools/wdb/doc} on HP-UX
1122@c systems.
1123
d700128c
EZ
1124@item -interpreter @var{interp}
1125@cindex @code{--interpreter}
1126Use the interpreter @var{interp} for interface with the controlling
1127program or device. This option is meant to be set by programs which
94bbb2c0 1128communicate with @value{GDBN} using it as a back end.
21c294e6 1129@xref{Interpreters, , Command Interpreters}.
94bbb2c0 1130
da0f9dcd
AC
1131@samp{--interpreter=mi} (or @samp{--interpreter=mi2}) causes
1132@value{GDBN} to use the current @dfn{@sc{gdb/mi} interface}
1133(@pxref{GDB/MI, , The @sc{gdb/mi} Interface}). The previous @sc{gdb/mi}
1134interface, included in @value{GDBN} version 5.3, can be selected with
1135@samp{--interpreter=mi1}. Earlier @sc{gdb/mi} interfaces
1136are not supported.
d700128c
EZ
1137
1138@item -write
1139@cindex @code{--write}
1140Open the executable and core files for both reading and writing. This
1141is equivalent to the @samp{set write on} command inside @value{GDBN}
1142(@pxref{Patching}).
1143
1144@item -statistics
1145@cindex @code{--statistics}
1146This option causes @value{GDBN} to print statistics about time and
1147memory usage after it completes each command and returns to the prompt.
1148
1149@item -version
1150@cindex @code{--version}
1151This option causes @value{GDBN} to print its version number and
1152no-warranty blurb, and exit.
1153
c906108c
SS
1154@end table
1155
6d2ebf8b 1156@node Quitting GDB
c906108c
SS
1157@section Quitting @value{GDBN}
1158@cindex exiting @value{GDBN}
1159@cindex leaving @value{GDBN}
1160
1161@table @code
1162@kindex quit @r{[}@var{expression}@r{]}
41afff9a 1163@kindex q @r{(@code{quit})}
96a2c332
SS
1164@item quit @r{[}@var{expression}@r{]}
1165@itemx q
1166To exit @value{GDBN}, use the @code{quit} command (abbreviated
1167@code{q}), or type an end-of-file character (usually @kbd{C-d}). If you
1168do not supply @var{expression}, @value{GDBN} will terminate normally;
1169otherwise it will terminate using the result of @var{expression} as the
1170error code.
c906108c
SS
1171@end table
1172
1173@cindex interrupt
1174An interrupt (often @kbd{C-c}) does not exit from @value{GDBN}, but rather
1175terminates the action of any @value{GDBN} command that is in progress and
1176returns to @value{GDBN} command level. It is safe to type the interrupt
1177character at any time because @value{GDBN} does not allow it to take effect
1178until a time when it is safe.
1179
c906108c
SS
1180If you have been using @value{GDBN} to control an attached process or
1181device, you can release it with the @code{detach} command
1182(@pxref{Attach, ,Debugging an already-running process}).
c906108c 1183
6d2ebf8b 1184@node Shell Commands
c906108c
SS
1185@section Shell commands
1186
1187If you need to execute occasional shell commands during your
1188debugging session, there is no need to leave or suspend @value{GDBN}; you can
1189just use the @code{shell} command.
1190
1191@table @code
1192@kindex shell
1193@cindex shell escape
1194@item shell @var{command string}
1195Invoke a standard shell to execute @var{command string}.
c906108c 1196If it exists, the environment variable @code{SHELL} determines which
d4f3574e
SS
1197shell to run. Otherwise @value{GDBN} uses the default shell
1198(@file{/bin/sh} on Unix systems, @file{COMMAND.COM} on MS-DOS, etc.).
c906108c
SS
1199@end table
1200
1201The utility @code{make} is often needed in development environments.
1202You do not have to use the @code{shell} command for this purpose in
1203@value{GDBN}:
1204
1205@table @code
1206@kindex make
1207@cindex calling make
1208@item make @var{make-args}
1209Execute the @code{make} program with the specified
1210arguments. This is equivalent to @samp{shell make @var{make-args}}.
1211@end table
1212
6d2ebf8b 1213@node Commands
c906108c
SS
1214@chapter @value{GDBN} Commands
1215
1216You can abbreviate a @value{GDBN} command to the first few letters of the command
1217name, if that abbreviation is unambiguous; and you can repeat certain
1218@value{GDBN} commands by typing just @key{RET}. You can also use the @key{TAB}
1219key to get @value{GDBN} to fill out the rest of a word in a command (or to
1220show you the alternatives available, if there is more than one possibility).
1221
1222@menu
1223* Command Syntax:: How to give commands to @value{GDBN}
1224* Completion:: Command completion
1225* Help:: How to ask @value{GDBN} for help
1226@end menu
1227
6d2ebf8b 1228@node Command Syntax
c906108c
SS
1229@section Command syntax
1230
1231A @value{GDBN} command is a single line of input. There is no limit on
1232how long it can be. It starts with a command name, which is followed by
1233arguments whose meaning depends on the command name. For example, the
1234command @code{step} accepts an argument which is the number of times to
1235step, as in @samp{step 5}. You can also use the @code{step} command
96a2c332 1236with no arguments. Some commands do not allow any arguments.
c906108c
SS
1237
1238@cindex abbreviation
1239@value{GDBN} command names may always be truncated if that abbreviation is
1240unambiguous. Other possible command abbreviations are listed in the
1241documentation for individual commands. In some cases, even ambiguous
1242abbreviations are allowed; for example, @code{s} is specially defined as
1243equivalent to @code{step} even though there are other commands whose
1244names start with @code{s}. You can test abbreviations by using them as
1245arguments to the @code{help} command.
1246
1247@cindex repeating commands
41afff9a 1248@kindex RET @r{(repeat last command)}
c906108c 1249A blank line as input to @value{GDBN} (typing just @key{RET}) means to
96a2c332 1250repeat the previous command. Certain commands (for example, @code{run})
c906108c
SS
1251will not repeat this way; these are commands whose unintentional
1252repetition might cause trouble and which you are unlikely to want to
1253repeat.
1254
1255The @code{list} and @code{x} commands, when you repeat them with
1256@key{RET}, construct new arguments rather than repeating
1257exactly as typed. This permits easy scanning of source or memory.
1258
1259@value{GDBN} can also use @key{RET} in another way: to partition lengthy
1260output, in a way similar to the common utility @code{more}
1261(@pxref{Screen Size,,Screen size}). Since it is easy to press one
1262@key{RET} too many in this situation, @value{GDBN} disables command
1263repetition after any command that generates this sort of display.
1264
41afff9a 1265@kindex # @r{(a comment)}
c906108c
SS
1266@cindex comment
1267Any text from a @kbd{#} to the end of the line is a comment; it does
1268nothing. This is useful mainly in command files (@pxref{Command
1269Files,,Command files}).
1270
88118b3a
TT
1271@cindex repeating command sequences
1272@kindex C-o @r{(operate-and-get-next)}
1273The @kbd{C-o} binding is useful for repeating a complex sequence of
1274commands. This command accepts the current line, like @kbd{RET}, and
1275then fetches the next line relative to the current line from the history
1276for editing.
1277
6d2ebf8b 1278@node Completion
c906108c
SS
1279@section Command completion
1280
1281@cindex completion
1282@cindex word completion
1283@value{GDBN} can fill in the rest of a word in a command for you, if there is
1284only one possibility; it can also show you what the valid possibilities
1285are for the next word in a command, at any time. This works for @value{GDBN}
1286commands, @value{GDBN} subcommands, and the names of symbols in your program.
1287
1288Press the @key{TAB} key whenever you want @value{GDBN} to fill out the rest
1289of a word. If there is only one possibility, @value{GDBN} fills in the
1290word, and waits for you to finish the command (or press @key{RET} to
1291enter it). For example, if you type
1292
1293@c FIXME "@key" does not distinguish its argument sufficiently to permit
1294@c complete accuracy in these examples; space introduced for clarity.
1295@c If texinfo enhancements make it unnecessary, it would be nice to
1296@c replace " @key" by "@key" in the following...
474c8240 1297@smallexample
c906108c 1298(@value{GDBP}) info bre @key{TAB}
474c8240 1299@end smallexample
c906108c
SS
1300
1301@noindent
1302@value{GDBN} fills in the rest of the word @samp{breakpoints}, since that is
1303the only @code{info} subcommand beginning with @samp{bre}:
1304
474c8240 1305@smallexample
c906108c 1306(@value{GDBP}) info breakpoints
474c8240 1307@end smallexample
c906108c
SS
1308
1309@noindent
1310You can either press @key{RET} at this point, to run the @code{info
1311breakpoints} command, or backspace and enter something else, if
1312@samp{breakpoints} does not look like the command you expected. (If you
1313were sure you wanted @code{info breakpoints} in the first place, you
1314might as well just type @key{RET} immediately after @samp{info bre},
1315to exploit command abbreviations rather than command completion).
1316
1317If there is more than one possibility for the next word when you press
1318@key{TAB}, @value{GDBN} sounds a bell. You can either supply more
1319characters and try again, or just press @key{TAB} a second time;
1320@value{GDBN} displays all the possible completions for that word. For
1321example, you might want to set a breakpoint on a subroutine whose name
1322begins with @samp{make_}, but when you type @kbd{b make_@key{TAB}} @value{GDBN}
1323just sounds the bell. Typing @key{TAB} again displays all the
1324function names in your program that begin with those characters, for
1325example:
1326
474c8240 1327@smallexample
c906108c
SS
1328(@value{GDBP}) b make_ @key{TAB}
1329@exdent @value{GDBN} sounds bell; press @key{TAB} again, to see:
5d161b24
DB
1330make_a_section_from_file make_environ
1331make_abs_section make_function_type
1332make_blockvector make_pointer_type
1333make_cleanup make_reference_type
c906108c
SS
1334make_command make_symbol_completion_list
1335(@value{GDBP}) b make_
474c8240 1336@end smallexample
c906108c
SS
1337
1338@noindent
1339After displaying the available possibilities, @value{GDBN} copies your
1340partial input (@samp{b make_} in the example) so you can finish the
1341command.
1342
1343If you just want to see the list of alternatives in the first place, you
b37052ae 1344can press @kbd{M-?} rather than pressing @key{TAB} twice. @kbd{M-?}
7a292a7a 1345means @kbd{@key{META} ?}. You can type this either by holding down a
c906108c 1346key designated as the @key{META} shift on your keyboard (if there is
7a292a7a 1347one) while typing @kbd{?}, or as @key{ESC} followed by @kbd{?}.
c906108c
SS
1348
1349@cindex quotes in commands
1350@cindex completion of quoted strings
1351Sometimes the string you need, while logically a ``word'', may contain
7a292a7a
SS
1352parentheses or other characters that @value{GDBN} normally excludes from
1353its notion of a word. To permit word completion to work in this
1354situation, you may enclose words in @code{'} (single quote marks) in
1355@value{GDBN} commands.
c906108c 1356
c906108c 1357The most likely situation where you might need this is in typing the
b37052ae
EZ
1358name of a C@t{++} function. This is because C@t{++} allows function
1359overloading (multiple definitions of the same function, distinguished
1360by argument type). For example, when you want to set a breakpoint you
1361may need to distinguish whether you mean the version of @code{name}
1362that takes an @code{int} parameter, @code{name(int)}, or the version
1363that takes a @code{float} parameter, @code{name(float)}. To use the
1364word-completion facilities in this situation, type a single quote
1365@code{'} at the beginning of the function name. This alerts
1366@value{GDBN} that it may need to consider more information than usual
1367when you press @key{TAB} or @kbd{M-?} to request word completion:
c906108c 1368
474c8240 1369@smallexample
96a2c332 1370(@value{GDBP}) b 'bubble( @kbd{M-?}
c906108c
SS
1371bubble(double,double) bubble(int,int)
1372(@value{GDBP}) b 'bubble(
474c8240 1373@end smallexample
c906108c
SS
1374
1375In some cases, @value{GDBN} can tell that completing a name requires using
1376quotes. When this happens, @value{GDBN} inserts the quote for you (while
1377completing as much as it can) if you do not type the quote in the first
1378place:
1379
474c8240 1380@smallexample
c906108c
SS
1381(@value{GDBP}) b bub @key{TAB}
1382@exdent @value{GDBN} alters your input line to the following, and rings a bell:
1383(@value{GDBP}) b 'bubble(
474c8240 1384@end smallexample
c906108c
SS
1385
1386@noindent
1387In general, @value{GDBN} can tell that a quote is needed (and inserts it) if
1388you have not yet started typing the argument list when you ask for
1389completion on an overloaded symbol.
1390
d4f3574e 1391For more information about overloaded functions, see @ref{C plus plus
b37052ae 1392expressions, ,C@t{++} expressions}. You can use the command @code{set
c906108c 1393overload-resolution off} to disable overload resolution;
b37052ae 1394see @ref{Debugging C plus plus, ,@value{GDBN} features for C@t{++}}.
c906108c
SS
1395
1396
6d2ebf8b 1397@node Help
c906108c
SS
1398@section Getting help
1399@cindex online documentation
1400@kindex help
1401
5d161b24 1402You can always ask @value{GDBN} itself for information on its commands,
c906108c
SS
1403using the command @code{help}.
1404
1405@table @code
41afff9a 1406@kindex h @r{(@code{help})}
c906108c
SS
1407@item help
1408@itemx h
1409You can use @code{help} (abbreviated @code{h}) with no arguments to
1410display a short list of named classes of commands:
1411
1412@smallexample
1413(@value{GDBP}) help
1414List of classes of commands:
1415
2df3850c 1416aliases -- Aliases of other commands
c906108c 1417breakpoints -- Making program stop at certain points
2df3850c 1418data -- Examining data
c906108c 1419files -- Specifying and examining files
2df3850c
JM
1420internals -- Maintenance commands
1421obscure -- Obscure features
1422running -- Running the program
1423stack -- Examining the stack
c906108c
SS
1424status -- Status inquiries
1425support -- Support facilities
96a2c332
SS
1426tracepoints -- Tracing of program execution without@*
1427 stopping the program
c906108c 1428user-defined -- User-defined commands
c906108c 1429
5d161b24 1430Type "help" followed by a class name for a list of
c906108c 1431commands in that class.
5d161b24 1432Type "help" followed by command name for full
c906108c
SS
1433documentation.
1434Command name abbreviations are allowed if unambiguous.
1435(@value{GDBP})
1436@end smallexample
96a2c332 1437@c the above line break eliminates huge line overfull...
c906108c
SS
1438
1439@item help @var{class}
1440Using one of the general help classes as an argument, you can get a
1441list of the individual commands in that class. For example, here is the
1442help display for the class @code{status}:
1443
1444@smallexample
1445(@value{GDBP}) help status
1446Status inquiries.
1447
1448List of commands:
1449
1450@c Line break in "show" line falsifies real output, but needed
1451@c to fit in smallbook page size.
2df3850c
JM
1452info -- Generic command for showing things
1453 about the program being debugged
1454show -- Generic command for showing things
1455 about the debugger
c906108c 1456
5d161b24 1457Type "help" followed by command name for full
c906108c
SS
1458documentation.
1459Command name abbreviations are allowed if unambiguous.
1460(@value{GDBP})
1461@end smallexample
1462
1463@item help @var{command}
1464With a command name as @code{help} argument, @value{GDBN} displays a
1465short paragraph on how to use that command.
1466
6837a0a2
DB
1467@kindex apropos
1468@item apropos @var{args}
1469The @code{apropos @var{args}} command searches through all of the @value{GDBN}
1470commands, and their documentation, for the regular expression specified in
1471@var{args}. It prints out all matches found. For example:
1472
1473@smallexample
1474apropos reload
1475@end smallexample
1476
b37052ae
EZ
1477@noindent
1478results in:
6837a0a2
DB
1479
1480@smallexample
6d2ebf8b
SS
1481@c @group
1482set symbol-reloading -- Set dynamic symbol table reloading
1483 multiple times in one run
1484show symbol-reloading -- Show dynamic symbol table reloading
1485 multiple times in one run
1486@c @end group
6837a0a2
DB
1487@end smallexample
1488
c906108c
SS
1489@kindex complete
1490@item complete @var{args}
1491The @code{complete @var{args}} command lists all the possible completions
1492for the beginning of a command. Use @var{args} to specify the beginning of the
1493command you want completed. For example:
1494
1495@smallexample
1496complete i
1497@end smallexample
1498
1499@noindent results in:
1500
1501@smallexample
1502@group
2df3850c
JM
1503if
1504ignore
c906108c
SS
1505info
1506inspect
c906108c
SS
1507@end group
1508@end smallexample
1509
1510@noindent This is intended for use by @sc{gnu} Emacs.
1511@end table
1512
1513In addition to @code{help}, you can use the @value{GDBN} commands @code{info}
1514and @code{show} to inquire about the state of your program, or the state
1515of @value{GDBN} itself. Each command supports many topics of inquiry; this
1516manual introduces each of them in the appropriate context. The listings
1517under @code{info} and under @code{show} in the Index point to
1518all the sub-commands. @xref{Index}.
1519
1520@c @group
1521@table @code
1522@kindex info
41afff9a 1523@kindex i @r{(@code{info})}
c906108c
SS
1524@item info
1525This command (abbreviated @code{i}) is for describing the state of your
1526program. For example, you can list the arguments given to your program
1527with @code{info args}, list the registers currently in use with @code{info
1528registers}, or list the breakpoints you have set with @code{info breakpoints}.
1529You can get a complete list of the @code{info} sub-commands with
1530@w{@code{help info}}.
1531
1532@kindex set
1533@item set
5d161b24 1534You can assign the result of an expression to an environment variable with
c906108c
SS
1535@code{set}. For example, you can set the @value{GDBN} prompt to a $-sign with
1536@code{set prompt $}.
1537
1538@kindex show
1539@item show
5d161b24 1540In contrast to @code{info}, @code{show} is for describing the state of
c906108c
SS
1541@value{GDBN} itself.
1542You can change most of the things you can @code{show}, by using the
1543related command @code{set}; for example, you can control what number
1544system is used for displays with @code{set radix}, or simply inquire
1545which is currently in use with @code{show radix}.
1546
1547@kindex info set
1548To display all the settable parameters and their current
1549values, you can use @code{show} with no arguments; you may also use
1550@code{info set}. Both commands produce the same display.
1551@c FIXME: "info set" violates the rule that "info" is for state of
1552@c FIXME...program. Ck w/ GNU: "info set" to be called something else,
1553@c FIXME...or change desc of rule---eg "state of prog and debugging session"?
1554@end table
1555@c @end group
1556
1557Here are three miscellaneous @code{show} subcommands, all of which are
1558exceptional in lacking corresponding @code{set} commands:
1559
1560@table @code
1561@kindex show version
1562@cindex version number
1563@item show version
1564Show what version of @value{GDBN} is running. You should include this
2df3850c
JM
1565information in @value{GDBN} bug-reports. If multiple versions of
1566@value{GDBN} are in use at your site, you may need to determine which
1567version of @value{GDBN} you are running; as @value{GDBN} evolves, new
1568commands are introduced, and old ones may wither away. Also, many
1569system vendors ship variant versions of @value{GDBN}, and there are
96a2c332 1570variant versions of @value{GDBN} in @sc{gnu}/Linux distributions as well.
2df3850c
JM
1571The version number is the same as the one announced when you start
1572@value{GDBN}.
c906108c
SS
1573
1574@kindex show copying
1575@item show copying
1576Display information about permission for copying @value{GDBN}.
1577
1578@kindex show warranty
1579@item show warranty
2df3850c 1580Display the @sc{gnu} ``NO WARRANTY'' statement, or a warranty,
96a2c332 1581if your version of @value{GDBN} comes with one.
2df3850c 1582
c906108c
SS
1583@end table
1584
6d2ebf8b 1585@node Running
c906108c
SS
1586@chapter Running Programs Under @value{GDBN}
1587
1588When you run a program under @value{GDBN}, you must first generate
1589debugging information when you compile it.
7a292a7a
SS
1590
1591You may start @value{GDBN} with its arguments, if any, in an environment
1592of your choice. If you are doing native debugging, you may redirect
1593your program's input and output, debug an already running process, or
1594kill a child process.
c906108c
SS
1595
1596@menu
1597* Compilation:: Compiling for debugging
1598* Starting:: Starting your program
c906108c
SS
1599* Arguments:: Your program's arguments
1600* Environment:: Your program's environment
c906108c
SS
1601
1602* Working Directory:: Your program's working directory
1603* Input/Output:: Your program's input and output
1604* Attach:: Debugging an already-running process
1605* Kill Process:: Killing the child process
c906108c
SS
1606
1607* Threads:: Debugging programs with multiple threads
1608* Processes:: Debugging programs with multiple processes
1609@end menu
1610
6d2ebf8b 1611@node Compilation
c906108c
SS
1612@section Compiling for debugging
1613
1614In order to debug a program effectively, you need to generate
1615debugging information when you compile it. This debugging information
1616is stored in the object file; it describes the data type of each
1617variable or function and the correspondence between source line numbers
1618and addresses in the executable code.
1619
1620To request debugging information, specify the @samp{-g} option when you run
1621the compiler.
1622
e2e0bcd1
JB
1623Most compilers do not include information about preprocessor macros in
1624the debugging information if you specify the @option{-g} flag alone,
1625because this information is rather large. Version 3.1 of @value{NGCC},
1626the @sc{gnu} C compiler, provides macro information if you specify the
1627options @option{-gdwarf-2} and @option{-g3}; the former option requests
1628debugging information in the Dwarf 2 format, and the latter requests
1629``extra information''. In the future, we hope to find more compact ways
1630to represent macro information, so that it can be included with
1631@option{-g} alone.
1632
c906108c
SS
1633Many C compilers are unable to handle the @samp{-g} and @samp{-O}
1634options together. Using those compilers, you cannot generate optimized
1635executables containing debugging information.
1636
53a5351d
JM
1637@value{NGCC}, the @sc{gnu} C compiler, supports @samp{-g} with or
1638without @samp{-O}, making it possible to debug optimized code. We
1639recommend that you @emph{always} use @samp{-g} whenever you compile a
1640program. You may think your program is correct, but there is no sense
1641in pushing your luck.
c906108c
SS
1642
1643@cindex optimized code, debugging
1644@cindex debugging optimized code
1645When you debug a program compiled with @samp{-g -O}, remember that the
1646optimizer is rearranging your code; the debugger shows you what is
1647really there. Do not be too surprised when the execution path does not
1648exactly match your source file! An extreme example: if you define a
1649variable, but never use it, @value{GDBN} never sees that
1650variable---because the compiler optimizes it out of existence.
1651
1652Some things do not work as well with @samp{-g -O} as with just
1653@samp{-g}, particularly on machines with instruction scheduling. If in
1654doubt, recompile with @samp{-g} alone, and if this fixes the problem,
1655please report it to us as a bug (including a test case!).
1656
1657Older versions of the @sc{gnu} C compiler permitted a variant option
1658@w{@samp{-gg}} for debugging information. @value{GDBN} no longer supports this
1659format; if your @sc{gnu} C compiler has this option, do not use it.
1660
1661@need 2000
6d2ebf8b 1662@node Starting
c906108c
SS
1663@section Starting your program
1664@cindex starting
1665@cindex running
1666
1667@table @code
1668@kindex run
41afff9a 1669@kindex r @r{(@code{run})}
c906108c
SS
1670@item run
1671@itemx r
7a292a7a
SS
1672Use the @code{run} command to start your program under @value{GDBN}.
1673You must first specify the program name (except on VxWorks) with an
1674argument to @value{GDBN} (@pxref{Invocation, ,Getting In and Out of
1675@value{GDBN}}), or by using the @code{file} or @code{exec-file} command
1676(@pxref{Files, ,Commands to specify files}).
c906108c
SS
1677
1678@end table
1679
c906108c
SS
1680If you are running your program in an execution environment that
1681supports processes, @code{run} creates an inferior process and makes
1682that process run your program. (In environments without processes,
1683@code{run} jumps to the start of your program.)
1684
1685The execution of a program is affected by certain information it
1686receives from its superior. @value{GDBN} provides ways to specify this
1687information, which you must do @emph{before} starting your program. (You
1688can change it after starting your program, but such changes only affect
1689your program the next time you start it.) This information may be
1690divided into four categories:
1691
1692@table @asis
1693@item The @emph{arguments.}
1694Specify the arguments to give your program as the arguments of the
1695@code{run} command. If a shell is available on your target, the shell
1696is used to pass the arguments, so that you may use normal conventions
1697(such as wildcard expansion or variable substitution) in describing
1698the arguments.
1699In Unix systems, you can control which shell is used with the
1700@code{SHELL} environment variable.
1701@xref{Arguments, ,Your program's arguments}.
1702
1703@item The @emph{environment.}
1704Your program normally inherits its environment from @value{GDBN}, but you can
1705use the @value{GDBN} commands @code{set environment} and @code{unset
1706environment} to change parts of the environment that affect
1707your program. @xref{Environment, ,Your program's environment}.
1708
1709@item The @emph{working directory.}
1710Your program inherits its working directory from @value{GDBN}. You can set
1711the @value{GDBN} working directory with the @code{cd} command in @value{GDBN}.
1712@xref{Working Directory, ,Your program's working directory}.
1713
1714@item The @emph{standard input and output.}
1715Your program normally uses the same device for standard input and
1716standard output as @value{GDBN} is using. You can redirect input and output
1717in the @code{run} command line, or you can use the @code{tty} command to
1718set a different device for your program.
1719@xref{Input/Output, ,Your program's input and output}.
1720
1721@cindex pipes
1722@emph{Warning:} While input and output redirection work, you cannot use
1723pipes to pass the output of the program you are debugging to another
1724program; if you attempt this, @value{GDBN} is likely to wind up debugging the
1725wrong program.
1726@end table
c906108c
SS
1727
1728When you issue the @code{run} command, your program begins to execute
1729immediately. @xref{Stopping, ,Stopping and continuing}, for discussion
1730of how to arrange for your program to stop. Once your program has
1731stopped, you may call functions in your program, using the @code{print}
1732or @code{call} commands. @xref{Data, ,Examining Data}.
1733
1734If the modification time of your symbol file has changed since the last
1735time @value{GDBN} read its symbols, @value{GDBN} discards its symbol
1736table, and reads it again. When it does this, @value{GDBN} tries to retain
1737your current breakpoints.
1738
6d2ebf8b 1739@node Arguments
c906108c
SS
1740@section Your program's arguments
1741
1742@cindex arguments (to your program)
1743The arguments to your program can be specified by the arguments of the
5d161b24 1744@code{run} command.
c906108c
SS
1745They are passed to a shell, which expands wildcard characters and
1746performs redirection of I/O, and thence to your program. Your
1747@code{SHELL} environment variable (if it exists) specifies what shell
1748@value{GDBN} uses. If you do not define @code{SHELL}, @value{GDBN} uses
d4f3574e
SS
1749the default shell (@file{/bin/sh} on Unix).
1750
1751On non-Unix systems, the program is usually invoked directly by
1752@value{GDBN}, which emulates I/O redirection via the appropriate system
1753calls, and the wildcard characters are expanded by the startup code of
1754the program, not by the shell.
c906108c
SS
1755
1756@code{run} with no arguments uses the same arguments used by the previous
1757@code{run}, or those set by the @code{set args} command.
1758
c906108c 1759@table @code
41afff9a 1760@kindex set args
c906108c
SS
1761@item set args
1762Specify the arguments to be used the next time your program is run. If
1763@code{set args} has no arguments, @code{run} executes your program
1764with no arguments. Once you have run your program with arguments,
1765using @code{set args} before the next @code{run} is the only way to run
1766it again without arguments.
1767
1768@kindex show args
1769@item show args
1770Show the arguments to give your program when it is started.
1771@end table
1772
6d2ebf8b 1773@node Environment
c906108c
SS
1774@section Your program's environment
1775
1776@cindex environment (of your program)
1777The @dfn{environment} consists of a set of environment variables and
1778their values. Environment variables conventionally record such things as
1779your user name, your home directory, your terminal type, and your search
1780path for programs to run. Usually you set up environment variables with
1781the shell and they are inherited by all the other programs you run. When
1782debugging, it can be useful to try running your program with a modified
1783environment without having to start @value{GDBN} over again.
1784
1785@table @code
1786@kindex path
1787@item path @var{directory}
1788Add @var{directory} to the front of the @code{PATH} environment variable
17cc6a06
EZ
1789(the search path for executables) that will be passed to your program.
1790The value of @code{PATH} used by @value{GDBN} does not change.
d4f3574e
SS
1791You may specify several directory names, separated by whitespace or by a
1792system-dependent separator character (@samp{:} on Unix, @samp{;} on
1793MS-DOS and MS-Windows). If @var{directory} is already in the path, it
1794is moved to the front, so it is searched sooner.
c906108c
SS
1795
1796You can use the string @samp{$cwd} to refer to whatever is the current
1797working directory at the time @value{GDBN} searches the path. If you
1798use @samp{.} instead, it refers to the directory where you executed the
1799@code{path} command. @value{GDBN} replaces @samp{.} in the
1800@var{directory} argument (with the current path) before adding
1801@var{directory} to the search path.
1802@c 'path' is explicitly nonrepeatable, but RMS points out it is silly to
1803@c document that, since repeating it would be a no-op.
1804
1805@kindex show paths
1806@item show paths
1807Display the list of search paths for executables (the @code{PATH}
1808environment variable).
1809
1810@kindex show environment
1811@item show environment @r{[}@var{varname}@r{]}
1812Print the value of environment variable @var{varname} to be given to
1813your program when it starts. If you do not supply @var{varname},
1814print the names and values of all environment variables to be given to
1815your program. You can abbreviate @code{environment} as @code{env}.
1816
1817@kindex set environment
53a5351d 1818@item set environment @var{varname} @r{[}=@var{value}@r{]}
c906108c
SS
1819Set environment variable @var{varname} to @var{value}. The value
1820changes for your program only, not for @value{GDBN} itself. @var{value} may
1821be any string; the values of environment variables are just strings, and
1822any interpretation is supplied by your program itself. The @var{value}
1823parameter is optional; if it is eliminated, the variable is set to a
1824null value.
1825@c "any string" here does not include leading, trailing
1826@c blanks. Gnu asks: does anyone care?
1827
1828For example, this command:
1829
474c8240 1830@smallexample
c906108c 1831set env USER = foo
474c8240 1832@end smallexample
c906108c
SS
1833
1834@noindent
d4f3574e 1835tells the debugged program, when subsequently run, that its user is named
c906108c
SS
1836@samp{foo}. (The spaces around @samp{=} are used for clarity here; they
1837are not actually required.)
1838
1839@kindex unset environment
1840@item unset environment @var{varname}
1841Remove variable @var{varname} from the environment to be passed to your
1842program. This is different from @samp{set env @var{varname} =};
1843@code{unset environment} removes the variable from the environment,
1844rather than assigning it an empty value.
1845@end table
1846
d4f3574e
SS
1847@emph{Warning:} On Unix systems, @value{GDBN} runs your program using
1848the shell indicated
c906108c
SS
1849by your @code{SHELL} environment variable if it exists (or
1850@code{/bin/sh} if not). If your @code{SHELL} variable names a shell
1851that runs an initialization file---such as @file{.cshrc} for C-shell, or
1852@file{.bashrc} for BASH---any variables you set in that file affect
1853your program. You may wish to move setting of environment variables to
1854files that are only run when you sign on, such as @file{.login} or
1855@file{.profile}.
1856
6d2ebf8b 1857@node Working Directory
c906108c
SS
1858@section Your program's working directory
1859
1860@cindex working directory (of your program)
1861Each time you start your program with @code{run}, it inherits its
1862working directory from the current working directory of @value{GDBN}.
1863The @value{GDBN} working directory is initially whatever it inherited
1864from its parent process (typically the shell), but you can specify a new
1865working directory in @value{GDBN} with the @code{cd} command.
1866
1867The @value{GDBN} working directory also serves as a default for the commands
1868that specify files for @value{GDBN} to operate on. @xref{Files, ,Commands to
1869specify files}.
1870
1871@table @code
1872@kindex cd
1873@item cd @var{directory}
1874Set the @value{GDBN} working directory to @var{directory}.
1875
1876@kindex pwd
1877@item pwd
1878Print the @value{GDBN} working directory.
1879@end table
1880
6d2ebf8b 1881@node Input/Output
c906108c
SS
1882@section Your program's input and output
1883
1884@cindex redirection
1885@cindex i/o
1886@cindex terminal
1887By default, the program you run under @value{GDBN} does input and output to
5d161b24 1888the same terminal that @value{GDBN} uses. @value{GDBN} switches the terminal
c906108c
SS
1889to its own terminal modes to interact with you, but it records the terminal
1890modes your program was using and switches back to them when you continue
1891running your program.
1892
1893@table @code
1894@kindex info terminal
1895@item info terminal
1896Displays information recorded by @value{GDBN} about the terminal modes your
1897program is using.
1898@end table
1899
1900You can redirect your program's input and/or output using shell
1901redirection with the @code{run} command. For example,
1902
474c8240 1903@smallexample
c906108c 1904run > outfile
474c8240 1905@end smallexample
c906108c
SS
1906
1907@noindent
1908starts your program, diverting its output to the file @file{outfile}.
1909
1910@kindex tty
1911@cindex controlling terminal
1912Another way to specify where your program should do input and output is
1913with the @code{tty} command. This command accepts a file name as
1914argument, and causes this file to be the default for future @code{run}
1915commands. It also resets the controlling terminal for the child
1916process, for future @code{run} commands. For example,
1917
474c8240 1918@smallexample
c906108c 1919tty /dev/ttyb
474c8240 1920@end smallexample
c906108c
SS
1921
1922@noindent
1923directs that processes started with subsequent @code{run} commands
1924default to do input and output on the terminal @file{/dev/ttyb} and have
1925that as their controlling terminal.
1926
1927An explicit redirection in @code{run} overrides the @code{tty} command's
1928effect on the input/output device, but not its effect on the controlling
1929terminal.
1930
1931When you use the @code{tty} command or redirect input in the @code{run}
1932command, only the input @emph{for your program} is affected. The input
1933for @value{GDBN} still comes from your terminal.
1934
6d2ebf8b 1935@node Attach
c906108c
SS
1936@section Debugging an already-running process
1937@kindex attach
1938@cindex attach
1939
1940@table @code
1941@item attach @var{process-id}
1942This command attaches to a running process---one that was started
1943outside @value{GDBN}. (@code{info files} shows your active
1944targets.) The command takes as argument a process ID. The usual way to
1945find out the process-id of a Unix process is with the @code{ps} utility,
1946or with the @samp{jobs -l} shell command.
1947
1948@code{attach} does not repeat if you press @key{RET} a second time after
1949executing the command.
1950@end table
1951
1952To use @code{attach}, your program must be running in an environment
1953which supports processes; for example, @code{attach} does not work for
1954programs on bare-board targets that lack an operating system. You must
1955also have permission to send the process a signal.
1956
1957When you use @code{attach}, the debugger finds the program running in
1958the process first by looking in the current working directory, then (if
1959the program is not found) by using the source file search path
1960(@pxref{Source Path, ,Specifying source directories}). You can also use
1961the @code{file} command to load the program. @xref{Files, ,Commands to
1962Specify Files}.
1963
1964The first thing @value{GDBN} does after arranging to debug the specified
1965process is to stop it. You can examine and modify an attached process
53a5351d
JM
1966with all the @value{GDBN} commands that are ordinarily available when
1967you start processes with @code{run}. You can insert breakpoints; you
1968can step and continue; you can modify storage. If you would rather the
1969process continue running, you may use the @code{continue} command after
c906108c
SS
1970attaching @value{GDBN} to the process.
1971
1972@table @code
1973@kindex detach
1974@item detach
1975When you have finished debugging the attached process, you can use the
1976@code{detach} command to release it from @value{GDBN} control. Detaching
1977the process continues its execution. After the @code{detach} command,
1978that process and @value{GDBN} become completely independent once more, and you
1979are ready to @code{attach} another process or start one with @code{run}.
1980@code{detach} does not repeat if you press @key{RET} again after
1981executing the command.
1982@end table
1983
1984If you exit @value{GDBN} or use the @code{run} command while you have an
1985attached process, you kill that process. By default, @value{GDBN} asks
1986for confirmation if you try to do either of these things; you can
1987control whether or not you need to confirm by using the @code{set
1988confirm} command (@pxref{Messages/Warnings, ,Optional warnings and
1989messages}).
1990
6d2ebf8b 1991@node Kill Process
c906108c 1992@section Killing the child process
c906108c
SS
1993
1994@table @code
1995@kindex kill
1996@item kill
1997Kill the child process in which your program is running under @value{GDBN}.
1998@end table
1999
2000This command is useful if you wish to debug a core dump instead of a
2001running process. @value{GDBN} ignores any core dump file while your program
2002is running.
2003
2004On some operating systems, a program cannot be executed outside @value{GDBN}
2005while you have breakpoints set on it inside @value{GDBN}. You can use the
2006@code{kill} command in this situation to permit running your program
2007outside the debugger.
2008
2009The @code{kill} command is also useful if you wish to recompile and
2010relink your program, since on many systems it is impossible to modify an
2011executable file while it is running in a process. In this case, when you
2012next type @code{run}, @value{GDBN} notices that the file has changed, and
2013reads the symbol table again (while trying to preserve your current
2014breakpoint settings).
2015
6d2ebf8b 2016@node Threads
c906108c 2017@section Debugging programs with multiple threads
c906108c
SS
2018
2019@cindex threads of execution
2020@cindex multiple threads
2021@cindex switching threads
2022In some operating systems, such as HP-UX and Solaris, a single program
2023may have more than one @dfn{thread} of execution. The precise semantics
2024of threads differ from one operating system to another, but in general
2025the threads of a single program are akin to multiple processes---except
2026that they share one address space (that is, they can all examine and
2027modify the same variables). On the other hand, each thread has its own
2028registers and execution stack, and perhaps private memory.
2029
2030@value{GDBN} provides these facilities for debugging multi-thread
2031programs:
2032
2033@itemize @bullet
2034@item automatic notification of new threads
2035@item @samp{thread @var{threadno}}, a command to switch among threads
2036@item @samp{info threads}, a command to inquire about existing threads
5d161b24 2037@item @samp{thread apply [@var{threadno}] [@var{all}] @var{args}},
c906108c
SS
2038a command to apply a command to a list of threads
2039@item thread-specific breakpoints
2040@end itemize
2041
c906108c
SS
2042@quotation
2043@emph{Warning:} These facilities are not yet available on every
2044@value{GDBN} configuration where the operating system supports threads.
2045If your @value{GDBN} does not support threads, these commands have no
2046effect. For example, a system without thread support shows no output
2047from @samp{info threads}, and always rejects the @code{thread} command,
2048like this:
2049
2050@smallexample
2051(@value{GDBP}) info threads
2052(@value{GDBP}) thread 1
2053Thread ID 1 not known. Use the "info threads" command to
2054see the IDs of currently known threads.
2055@end smallexample
2056@c FIXME to implementors: how hard would it be to say "sorry, this GDB
2057@c doesn't support threads"?
2058@end quotation
c906108c
SS
2059
2060@cindex focus of debugging
2061@cindex current thread
2062The @value{GDBN} thread debugging facility allows you to observe all
2063threads while your program runs---but whenever @value{GDBN} takes
2064control, one thread in particular is always the focus of debugging.
2065This thread is called the @dfn{current thread}. Debugging commands show
2066program information from the perspective of the current thread.
2067
41afff9a 2068@cindex @code{New} @var{systag} message
c906108c
SS
2069@cindex thread identifier (system)
2070@c FIXME-implementors!! It would be more helpful if the [New...] message
2071@c included GDB's numeric thread handle, so you could just go to that
2072@c thread without first checking `info threads'.
2073Whenever @value{GDBN} detects a new thread in your program, it displays
2074the target system's identification for the thread with a message in the
2075form @samp{[New @var{systag}]}. @var{systag} is a thread identifier
2076whose form varies depending on the particular system. For example, on
2077LynxOS, you might see
2078
474c8240 2079@smallexample
c906108c 2080[New process 35 thread 27]
474c8240 2081@end smallexample
c906108c
SS
2082
2083@noindent
2084when @value{GDBN} notices a new thread. In contrast, on an SGI system,
2085the @var{systag} is simply something like @samp{process 368}, with no
2086further qualifier.
2087
2088@c FIXME!! (1) Does the [New...] message appear even for the very first
2089@c thread of a program, or does it only appear for the
6ca652b0 2090@c second---i.e.@: when it becomes obvious we have a multithread
c906108c
SS
2091@c program?
2092@c (2) *Is* there necessarily a first thread always? Or do some
2093@c multithread systems permit starting a program with multiple
5d161b24 2094@c threads ab initio?
c906108c
SS
2095
2096@cindex thread number
2097@cindex thread identifier (GDB)
2098For debugging purposes, @value{GDBN} associates its own thread
2099number---always a single integer---with each thread in your program.
2100
2101@table @code
2102@kindex info threads
2103@item info threads
2104Display a summary of all threads currently in your
2105program. @value{GDBN} displays for each thread (in this order):
2106
2107@enumerate
2108@item the thread number assigned by @value{GDBN}
2109
2110@item the target system's thread identifier (@var{systag})
2111
2112@item the current stack frame summary for that thread
2113@end enumerate
2114
2115@noindent
2116An asterisk @samp{*} to the left of the @value{GDBN} thread number
2117indicates the current thread.
2118
5d161b24 2119For example,
c906108c
SS
2120@end table
2121@c end table here to get a little more width for example
2122
2123@smallexample
2124(@value{GDBP}) info threads
2125 3 process 35 thread 27 0x34e5 in sigpause ()
2126 2 process 35 thread 23 0x34e5 in sigpause ()
2127* 1 process 35 thread 13 main (argc=1, argv=0x7ffffff8)
2128 at threadtest.c:68
2129@end smallexample
53a5351d
JM
2130
2131On HP-UX systems:
c906108c
SS
2132
2133@cindex thread number
2134@cindex thread identifier (GDB)
2135For debugging purposes, @value{GDBN} associates its own thread
2136number---a small integer assigned in thread-creation order---with each
2137thread in your program.
2138
41afff9a
EZ
2139@cindex @code{New} @var{systag} message, on HP-UX
2140@cindex thread identifier (system), on HP-UX
c906108c
SS
2141@c FIXME-implementors!! It would be more helpful if the [New...] message
2142@c included GDB's numeric thread handle, so you could just go to that
2143@c thread without first checking `info threads'.
2144Whenever @value{GDBN} detects a new thread in your program, it displays
2145both @value{GDBN}'s thread number and the target system's identification for the thread with a message in the
2146form @samp{[New @var{systag}]}. @var{systag} is a thread identifier
2147whose form varies depending on the particular system. For example, on
2148HP-UX, you see
2149
474c8240 2150@smallexample
c906108c 2151[New thread 2 (system thread 26594)]
474c8240 2152@end smallexample
c906108c
SS
2153
2154@noindent
5d161b24 2155when @value{GDBN} notices a new thread.
c906108c
SS
2156
2157@table @code
2158@kindex info threads
2159@item info threads
2160Display a summary of all threads currently in your
2161program. @value{GDBN} displays for each thread (in this order):
2162
2163@enumerate
2164@item the thread number assigned by @value{GDBN}
2165
2166@item the target system's thread identifier (@var{systag})
2167
2168@item the current stack frame summary for that thread
2169@end enumerate
2170
2171@noindent
2172An asterisk @samp{*} to the left of the @value{GDBN} thread number
2173indicates the current thread.
2174
5d161b24 2175For example,
c906108c
SS
2176@end table
2177@c end table here to get a little more width for example
2178
474c8240 2179@smallexample
c906108c 2180(@value{GDBP}) info threads
6d2ebf8b
SS
2181 * 3 system thread 26607 worker (wptr=0x7b09c318 "@@") \@*
2182 at quicksort.c:137
2183 2 system thread 26606 0x7b0030d8 in __ksleep () \@*
2184 from /usr/lib/libc.2
2185 1 system thread 27905 0x7b003498 in _brk () \@*
2186 from /usr/lib/libc.2
474c8240 2187@end smallexample
c906108c
SS
2188
2189@table @code
2190@kindex thread @var{threadno}
2191@item thread @var{threadno}
2192Make thread number @var{threadno} the current thread. The command
2193argument @var{threadno} is the internal @value{GDBN} thread number, as
2194shown in the first field of the @samp{info threads} display.
2195@value{GDBN} responds by displaying the system identifier of the thread
2196you selected, and its current stack frame summary:
2197
2198@smallexample
2199@c FIXME!! This example made up; find a @value{GDBN} w/threads and get real one
2200(@value{GDBP}) thread 2
c906108c 2201[Switching to process 35 thread 23]
c906108c
SS
22020x34e5 in sigpause ()
2203@end smallexample
2204
2205@noindent
2206As with the @samp{[New @dots{}]} message, the form of the text after
2207@samp{Switching to} depends on your system's conventions for identifying
5d161b24 2208threads.
c906108c
SS
2209
2210@kindex thread apply
2211@item thread apply [@var{threadno}] [@var{all}] @var{args}
2212The @code{thread apply} command allows you to apply a command to one or
2213more threads. Specify the numbers of the threads that you want affected
2214with the command argument @var{threadno}. @var{threadno} is the internal
2215@value{GDBN} thread number, as shown in the first field of the @samp{info
5d161b24
DB
2216threads} display. To apply a command to all threads, use
2217@code{thread apply all} @var{args}.
c906108c
SS
2218@end table
2219
2220@cindex automatic thread selection
2221@cindex switching threads automatically
2222@cindex threads, automatic switching
2223Whenever @value{GDBN} stops your program, due to a breakpoint or a
2224signal, it automatically selects the thread where that breakpoint or
2225signal happened. @value{GDBN} alerts you to the context switch with a
2226message of the form @samp{[Switching to @var{systag}]} to identify the
2227thread.
2228
2229@xref{Thread Stops,,Stopping and starting multi-thread programs}, for
2230more information about how @value{GDBN} behaves when you stop and start
2231programs with multiple threads.
2232
2233@xref{Set Watchpoints,,Setting watchpoints}, for information about
2234watchpoints in programs with multiple threads.
c906108c 2235
6d2ebf8b 2236@node Processes
c906108c
SS
2237@section Debugging programs with multiple processes
2238
2239@cindex fork, debugging programs which call
2240@cindex multiple processes
2241@cindex processes, multiple
53a5351d
JM
2242On most systems, @value{GDBN} has no special support for debugging
2243programs which create additional processes using the @code{fork}
2244function. When a program forks, @value{GDBN} will continue to debug the
2245parent process and the child process will run unimpeded. If you have
2246set a breakpoint in any code which the child then executes, the child
2247will get a @code{SIGTRAP} signal which (unless it catches the signal)
2248will cause it to terminate.
c906108c
SS
2249
2250However, if you want to debug the child process there is a workaround
2251which isn't too painful. Put a call to @code{sleep} in the code which
2252the child process executes after the fork. It may be useful to sleep
2253only if a certain environment variable is set, or a certain file exists,
2254so that the delay need not occur when you don't want to run @value{GDBN}
2255on the child. While the child is sleeping, use the @code{ps} program to
2256get its process ID. Then tell @value{GDBN} (a new invocation of
2257@value{GDBN} if you are also debugging the parent process) to attach to
d4f3574e 2258the child process (@pxref{Attach}). From that point on you can debug
c906108c 2259the child process just like any other process which you attached to.
c906108c 2260
53a5351d
JM
2261On HP-UX (11.x and later only?), @value{GDBN} provides support for
2262debugging programs that create additional processes using the
2263@code{fork} or @code{vfork} function.
c906108c
SS
2264
2265By default, when a program forks, @value{GDBN} will continue to debug
2266the parent process and the child process will run unimpeded.
2267
2268If you want to follow the child process instead of the parent process,
2269use the command @w{@code{set follow-fork-mode}}.
2270
2271@table @code
2272@kindex set follow-fork-mode
2273@item set follow-fork-mode @var{mode}
2274Set the debugger response to a program call of @code{fork} or
2275@code{vfork}. A call to @code{fork} or @code{vfork} creates a new
2276process. The @var{mode} can be:
2277
2278@table @code
2279@item parent
2280The original process is debugged after a fork. The child process runs
2df3850c 2281unimpeded. This is the default.
c906108c
SS
2282
2283@item child
2284The new process is debugged after a fork. The parent process runs
2285unimpeded.
2286
2287@item ask
2288The debugger will ask for one of the above choices.
2289@end table
2290
2291@item show follow-fork-mode
2df3850c 2292Display the current debugger response to a @code{fork} or @code{vfork} call.
c906108c
SS
2293@end table
2294
2295If you ask to debug a child process and a @code{vfork} is followed by an
2296@code{exec}, @value{GDBN} executes the new target up to the first
2297breakpoint in the new target. If you have a breakpoint set on
2298@code{main} in your original program, the breakpoint will also be set on
2299the child process's @code{main}.
2300
2301When a child process is spawned by @code{vfork}, you cannot debug the
2302child or parent until an @code{exec} call completes.
2303
2304If you issue a @code{run} command to @value{GDBN} after an @code{exec}
2305call executes, the new target restarts. To restart the parent process,
2306use the @code{file} command with the parent executable name as its
2307argument.
2308
2309You can use the @code{catch} command to make @value{GDBN} stop whenever
2310a @code{fork}, @code{vfork}, or @code{exec} call is made. @xref{Set
2311Catchpoints, ,Setting catchpoints}.
c906108c 2312
6d2ebf8b 2313@node Stopping
c906108c
SS
2314@chapter Stopping and Continuing
2315
2316The principal purposes of using a debugger are so that you can stop your
2317program before it terminates; or so that, if your program runs into
2318trouble, you can investigate and find out why.
2319
7a292a7a
SS
2320Inside @value{GDBN}, your program may stop for any of several reasons,
2321such as a signal, a breakpoint, or reaching a new line after a
2322@value{GDBN} command such as @code{step}. You may then examine and
2323change variables, set new breakpoints or remove old ones, and then
2324continue execution. Usually, the messages shown by @value{GDBN} provide
2325ample explanation of the status of your program---but you can also
2326explicitly request this information at any time.
c906108c
SS
2327
2328@table @code
2329@kindex info program
2330@item info program
2331Display information about the status of your program: whether it is
7a292a7a 2332running or not, what process it is, and why it stopped.
c906108c
SS
2333@end table
2334
2335@menu
2336* Breakpoints:: Breakpoints, watchpoints, and catchpoints
2337* Continuing and Stepping:: Resuming execution
c906108c 2338* Signals:: Signals
c906108c 2339* Thread Stops:: Stopping and starting multi-thread programs
c906108c
SS
2340@end menu
2341
6d2ebf8b 2342@node Breakpoints
c906108c
SS
2343@section Breakpoints, watchpoints, and catchpoints
2344
2345@cindex breakpoints
2346A @dfn{breakpoint} makes your program stop whenever a certain point in
2347the program is reached. For each breakpoint, you can add conditions to
2348control in finer detail whether your program stops. You can set
2349breakpoints with the @code{break} command and its variants (@pxref{Set
2350Breaks, ,Setting breakpoints}), to specify the place where your program
2351should stop by line number, function name or exact address in the
2352program.
2353
2354In HP-UX, SunOS 4.x, SVR4, and Alpha OSF/1 configurations, you can set
2355breakpoints in shared libraries before the executable is run. There is
2356a minor limitation on HP-UX systems: you must wait until the executable
2357is run in order to set breakpoints in shared library routines that are
2358not called directly by the program (for example, routines that are
2359arguments in a @code{pthread_create} call).
2360
2361@cindex watchpoints
2362@cindex memory tracing
2363@cindex breakpoint on memory address
2364@cindex breakpoint on variable modification
2365A @dfn{watchpoint} is a special breakpoint that stops your program
2366when the value of an expression changes. You must use a different
2367command to set watchpoints (@pxref{Set Watchpoints, ,Setting
2368watchpoints}), but aside from that, you can manage a watchpoint like
2369any other breakpoint: you enable, disable, and delete both breakpoints
2370and watchpoints using the same commands.
2371
2372You can arrange to have values from your program displayed automatically
2373whenever @value{GDBN} stops at a breakpoint. @xref{Auto Display,,
2374Automatic display}.
2375
2376@cindex catchpoints
2377@cindex breakpoint on events
2378A @dfn{catchpoint} is another special breakpoint that stops your program
b37052ae 2379when a certain kind of event occurs, such as the throwing of a C@t{++}
c906108c
SS
2380exception or the loading of a library. As with watchpoints, you use a
2381different command to set a catchpoint (@pxref{Set Catchpoints, ,Setting
2382catchpoints}), but aside from that, you can manage a catchpoint like any
2383other breakpoint. (To stop when your program receives a signal, use the
d4f3574e 2384@code{handle} command; see @ref{Signals, ,Signals}.)
c906108c
SS
2385
2386@cindex breakpoint numbers
2387@cindex numbers for breakpoints
2388@value{GDBN} assigns a number to each breakpoint, watchpoint, or
2389catchpoint when you create it; these numbers are successive integers
2390starting with one. In many of the commands for controlling various
2391features of breakpoints you use the breakpoint number to say which
2392breakpoint you want to change. Each breakpoint may be @dfn{enabled} or
2393@dfn{disabled}; if disabled, it has no effect on your program until you
2394enable it again.
2395
c5394b80
JM
2396@cindex breakpoint ranges
2397@cindex ranges of breakpoints
2398Some @value{GDBN} commands accept a range of breakpoints on which to
2399operate. A breakpoint range is either a single breakpoint number, like
2400@samp{5}, or two such numbers, in increasing order, separated by a
2401hyphen, like @samp{5-7}. When a breakpoint range is given to a command,
2402all breakpoint in that range are operated on.
2403
c906108c
SS
2404@menu
2405* Set Breaks:: Setting breakpoints
2406* Set Watchpoints:: Setting watchpoints
2407* Set Catchpoints:: Setting catchpoints
2408* Delete Breaks:: Deleting breakpoints
2409* Disabling:: Disabling breakpoints
2410* Conditions:: Break conditions
2411* Break Commands:: Breakpoint command lists
c906108c 2412* Breakpoint Menus:: Breakpoint menus
d4f3574e 2413* Error in Breakpoints:: ``Cannot insert breakpoints''
c906108c
SS
2414@end menu
2415
6d2ebf8b 2416@node Set Breaks
c906108c
SS
2417@subsection Setting breakpoints
2418
5d161b24 2419@c FIXME LMB what does GDB do if no code on line of breakpt?
c906108c
SS
2420@c consider in particular declaration with/without initialization.
2421@c
2422@c FIXME 2 is there stuff on this already? break at fun start, already init?
2423
2424@kindex break
41afff9a
EZ
2425@kindex b @r{(@code{break})}
2426@vindex $bpnum@r{, convenience variable}
c906108c
SS
2427@cindex latest breakpoint
2428Breakpoints are set with the @code{break} command (abbreviated
5d161b24 2429@code{b}). The debugger convenience variable @samp{$bpnum} records the
f3b28801 2430number of the breakpoint you've set most recently; see @ref{Convenience
c906108c
SS
2431Vars,, Convenience variables}, for a discussion of what you can do with
2432convenience variables.
2433
2434You have several ways to say where the breakpoint should go.
2435
2436@table @code
2437@item break @var{function}
5d161b24 2438Set a breakpoint at entry to function @var{function}.
c906108c 2439When using source languages that permit overloading of symbols, such as
b37052ae 2440C@t{++}, @var{function} may refer to more than one possible place to break.
c906108c 2441@xref{Breakpoint Menus,,Breakpoint menus}, for a discussion of that situation.
c906108c
SS
2442
2443@item break +@var{offset}
2444@itemx break -@var{offset}
2445Set a breakpoint some number of lines forward or back from the position
d4f3574e 2446at which execution stopped in the currently selected @dfn{stack frame}.
2df3850c 2447(@xref{Frames, ,Frames}, for a description of stack frames.)
c906108c
SS
2448
2449@item break @var{linenum}
2450Set a breakpoint at line @var{linenum} in the current source file.
d4f3574e
SS
2451The current source file is the last file whose source text was printed.
2452The breakpoint will stop your program just before it executes any of the
c906108c
SS
2453code on that line.
2454
2455@item break @var{filename}:@var{linenum}
2456Set a breakpoint at line @var{linenum} in source file @var{filename}.
2457
2458@item break @var{filename}:@var{function}
2459Set a breakpoint at entry to function @var{function} found in file
2460@var{filename}. Specifying a file name as well as a function name is
2461superfluous except when multiple files contain similarly named
2462functions.
2463
2464@item break *@var{address}
2465Set a breakpoint at address @var{address}. You can use this to set
2466breakpoints in parts of your program which do not have debugging
2467information or source files.
2468
2469@item break
2470When called without any arguments, @code{break} sets a breakpoint at
2471the next instruction to be executed in the selected stack frame
2472(@pxref{Stack, ,Examining the Stack}). In any selected frame but the
2473innermost, this makes your program stop as soon as control
2474returns to that frame. This is similar to the effect of a
2475@code{finish} command in the frame inside the selected frame---except
2476that @code{finish} does not leave an active breakpoint. If you use
2477@code{break} without an argument in the innermost frame, @value{GDBN} stops
2478the next time it reaches the current location; this may be useful
2479inside loops.
2480
2481@value{GDBN} normally ignores breakpoints when it resumes execution, until at
2482least one instruction has been executed. If it did not do this, you
2483would be unable to proceed past a breakpoint without first disabling the
2484breakpoint. This rule applies whether or not the breakpoint already
2485existed when your program stopped.
2486
2487@item break @dots{} if @var{cond}
2488Set a breakpoint with condition @var{cond}; evaluate the expression
2489@var{cond} each time the breakpoint is reached, and stop only if the
2490value is nonzero---that is, if @var{cond} evaluates as true.
2491@samp{@dots{}} stands for one of the possible arguments described
2492above (or no argument) specifying where to break. @xref{Conditions,
2493,Break conditions}, for more information on breakpoint conditions.
2494
2495@kindex tbreak
2496@item tbreak @var{args}
2497Set a breakpoint enabled only for one stop. @var{args} are the
2498same as for the @code{break} command, and the breakpoint is set in the same
2499way, but the breakpoint is automatically deleted after the first time your
2500program stops there. @xref{Disabling, ,Disabling breakpoints}.
2501
c906108c
SS
2502@kindex hbreak
2503@item hbreak @var{args}
d4f3574e
SS
2504Set a hardware-assisted breakpoint. @var{args} are the same as for the
2505@code{break} command and the breakpoint is set in the same way, but the
c906108c
SS
2506breakpoint requires hardware support and some target hardware may not
2507have this support. The main purpose of this is EPROM/ROM code
d4f3574e
SS
2508debugging, so you can set a breakpoint at an instruction without
2509changing the instruction. This can be used with the new trap-generation
2510provided by SPARClite DSU and some x86-based targets. These targets
2511will generate traps when a program accesses some data or instruction
2512address that is assigned to the debug registers. However the hardware
2513breakpoint registers can take a limited number of breakpoints. For
2514example, on the DSU, only two data breakpoints can be set at a time, and
2515@value{GDBN} will reject this command if more than two are used. Delete
2516or disable unused hardware breakpoints before setting new ones
2517(@pxref{Disabling, ,Disabling}). @xref{Conditions, ,Break conditions}.
501eef12
AC
2518@xref{set remote hardware-breakpoint-limit}.
2519
c906108c
SS
2520
2521@kindex thbreak
2522@item thbreak @var{args}
2523Set a hardware-assisted breakpoint enabled only for one stop. @var{args}
2524are the same as for the @code{hbreak} command and the breakpoint is set in
5d161b24 2525the same way. However, like the @code{tbreak} command,
c906108c
SS
2526the breakpoint is automatically deleted after the
2527first time your program stops there. Also, like the @code{hbreak}
5d161b24
DB
2528command, the breakpoint requires hardware support and some target hardware
2529may not have this support. @xref{Disabling, ,Disabling breakpoints}.
d4f3574e 2530See also @ref{Conditions, ,Break conditions}.
c906108c
SS
2531
2532@kindex rbreak
2533@cindex regular expression
2534@item rbreak @var{regex}
c906108c 2535Set breakpoints on all functions matching the regular expression
11cf8741
JM
2536@var{regex}. This command sets an unconditional breakpoint on all
2537matches, printing a list of all breakpoints it set. Once these
2538breakpoints are set, they are treated just like the breakpoints set with
2539the @code{break} command. You can delete them, disable them, or make
2540them conditional the same way as any other breakpoint.
2541
2542The syntax of the regular expression is the standard one used with tools
2543like @file{grep}. Note that this is different from the syntax used by
2544shells, so for instance @code{foo*} matches all functions that include
2545an @code{fo} followed by zero or more @code{o}s. There is an implicit
2546@code{.*} leading and trailing the regular expression you supply, so to
2547match only functions that begin with @code{foo}, use @code{^foo}.
c906108c 2548
b37052ae 2549When debugging C@t{++} programs, @code{rbreak} is useful for setting
c906108c
SS
2550breakpoints on overloaded functions that are not members of any special
2551classes.
c906108c
SS
2552
2553@kindex info breakpoints
2554@cindex @code{$_} and @code{info breakpoints}
2555@item info breakpoints @r{[}@var{n}@r{]}
2556@itemx info break @r{[}@var{n}@r{]}
2557@itemx info watchpoints @r{[}@var{n}@r{]}
2558Print a table of all breakpoints, watchpoints, and catchpoints set and
2559not deleted, with the following columns for each breakpoint:
2560
2561@table @emph
2562@item Breakpoint Numbers
2563@item Type
2564Breakpoint, watchpoint, or catchpoint.
2565@item Disposition
2566Whether the breakpoint is marked to be disabled or deleted when hit.
2567@item Enabled or Disabled
2568Enabled breakpoints are marked with @samp{y}. @samp{n} marks breakpoints
2569that are not enabled.
2570@item Address
2df3850c 2571Where the breakpoint is in your program, as a memory address.
c906108c
SS
2572@item What
2573Where the breakpoint is in the source for your program, as a file and
2574line number.
2575@end table
2576
2577@noindent
2578If a breakpoint is conditional, @code{info break} shows the condition on
2579the line following the affected breakpoint; breakpoint commands, if any,
2580are listed after that.
2581
2582@noindent
2583@code{info break} with a breakpoint
2584number @var{n} as argument lists only that breakpoint. The
2585convenience variable @code{$_} and the default examining-address for
2586the @code{x} command are set to the address of the last breakpoint
5d161b24 2587listed (@pxref{Memory, ,Examining memory}).
c906108c
SS
2588
2589@noindent
2590@code{info break} displays a count of the number of times the breakpoint
2591has been hit. This is especially useful in conjunction with the
2592@code{ignore} command. You can ignore a large number of breakpoint
2593hits, look at the breakpoint info to see how many times the breakpoint
2594was hit, and then run again, ignoring one less than that number. This
2595will get you quickly to the last hit of that breakpoint.
2596@end table
2597
2598@value{GDBN} allows you to set any number of breakpoints at the same place in
2599your program. There is nothing silly or meaningless about this. When
2600the breakpoints are conditional, this is even useful
2601(@pxref{Conditions, ,Break conditions}).
2602
2603@cindex negative breakpoint numbers
2604@cindex internal @value{GDBN} breakpoints
eb12ee30
AC
2605@value{GDBN} itself sometimes sets breakpoints in your program for
2606special purposes, such as proper handling of @code{longjmp} (in C
2607programs). These internal breakpoints are assigned negative numbers,
2608starting with @code{-1}; @samp{info breakpoints} does not display them.
c906108c 2609You can see these breakpoints with the @value{GDBN} maintenance command
eb12ee30 2610@samp{maint info breakpoints} (@pxref{maint info breakpoints}).
c906108c
SS
2611
2612
6d2ebf8b 2613@node Set Watchpoints
c906108c
SS
2614@subsection Setting watchpoints
2615
2616@cindex setting watchpoints
2617@cindex software watchpoints
2618@cindex hardware watchpoints
2619You can use a watchpoint to stop execution whenever the value of an
2620expression changes, without having to predict a particular place where
2621this may happen.
2622
2623Depending on your system, watchpoints may be implemented in software or
2df3850c 2624hardware. @value{GDBN} does software watchpointing by single-stepping your
c906108c
SS
2625program and testing the variable's value each time, which is hundreds of
2626times slower than normal execution. (But this may still be worth it, to
2627catch errors where you have no clue what part of your program is the
2628culprit.)
2629
1104b9e7 2630On some systems, such as HP-UX, @sc{gnu}/Linux and some other x86-based targets,
2df3850c 2631@value{GDBN} includes support for
c906108c
SS
2632hardware watchpoints, which do not slow down the running of your
2633program.
2634
2635@table @code
2636@kindex watch
2637@item watch @var{expr}
2638Set a watchpoint for an expression. @value{GDBN} will break when @var{expr}
2639is written into by the program and its value changes.
2640
2641@kindex rwatch
2642@item rwatch @var{expr}
2643Set a watchpoint that will break when watch @var{expr} is read by the program.
c906108c
SS
2644
2645@kindex awatch
2646@item awatch @var{expr}
2df3850c 2647Set a watchpoint that will break when @var{expr} is either read or written into
7be570e7 2648by the program.
c906108c
SS
2649
2650@kindex info watchpoints
2651@item info watchpoints
2652This command prints a list of watchpoints, breakpoints, and catchpoints;
2653it is the same as @code{info break}.
2654@end table
2655
2656@value{GDBN} sets a @dfn{hardware watchpoint} if possible. Hardware
2657watchpoints execute very quickly, and the debugger reports a change in
2658value at the exact instruction where the change occurs. If @value{GDBN}
2659cannot set a hardware watchpoint, it sets a software watchpoint, which
2660executes more slowly and reports the change in value at the next
2661statement, not the instruction, after the change occurs.
2662
2663When you issue the @code{watch} command, @value{GDBN} reports
2664
474c8240 2665@smallexample
c906108c 2666Hardware watchpoint @var{num}: @var{expr}
474c8240 2667@end smallexample
c906108c
SS
2668
2669@noindent
2670if it was able to set a hardware watchpoint.
2671
7be570e7
JM
2672Currently, the @code{awatch} and @code{rwatch} commands can only set
2673hardware watchpoints, because accesses to data that don't change the
2674value of the watched expression cannot be detected without examining
2675every instruction as it is being executed, and @value{GDBN} does not do
2676that currently. If @value{GDBN} finds that it is unable to set a
2677hardware breakpoint with the @code{awatch} or @code{rwatch} command, it
2678will print a message like this:
2679
2680@smallexample
2681Expression cannot be implemented with read/access watchpoint.
2682@end smallexample
2683
2684Sometimes, @value{GDBN} cannot set a hardware watchpoint because the
2685data type of the watched expression is wider than what a hardware
2686watchpoint on the target machine can handle. For example, some systems
2687can only watch regions that are up to 4 bytes wide; on such systems you
2688cannot set hardware watchpoints for an expression that yields a
2689double-precision floating-point number (which is typically 8 bytes
2690wide). As a work-around, it might be possible to break the large region
2691into a series of smaller ones and watch them with separate watchpoints.
2692
2693If you set too many hardware watchpoints, @value{GDBN} might be unable
2694to insert all of them when you resume the execution of your program.
2695Since the precise number of active watchpoints is unknown until such
2696time as the program is about to be resumed, @value{GDBN} might not be
2697able to warn you about this when you set the watchpoints, and the
2698warning will be printed only when the program is resumed:
2699
2700@smallexample
2701Hardware watchpoint @var{num}: Could not insert watchpoint
2702@end smallexample
2703
2704@noindent
2705If this happens, delete or disable some of the watchpoints.
2706
2707The SPARClite DSU will generate traps when a program accesses some data
2708or instruction address that is assigned to the debug registers. For the
2709data addresses, DSU facilitates the @code{watch} command. However the
2710hardware breakpoint registers can only take two data watchpoints, and
2711both watchpoints must be the same kind. For example, you can set two
2712watchpoints with @code{watch} commands, two with @code{rwatch} commands,
2713@strong{or} two with @code{awatch} commands, but you cannot set one
2714watchpoint with one command and the other with a different command.
c906108c
SS
2715@value{GDBN} will reject the command if you try to mix watchpoints.
2716Delete or disable unused watchpoint commands before setting new ones.
2717
2718If you call a function interactively using @code{print} or @code{call},
2df3850c 2719any watchpoints you have set will be inactive until @value{GDBN} reaches another
c906108c
SS
2720kind of breakpoint or the call completes.
2721
7be570e7
JM
2722@value{GDBN} automatically deletes watchpoints that watch local
2723(automatic) variables, or expressions that involve such variables, when
2724they go out of scope, that is, when the execution leaves the block in
2725which these variables were defined. In particular, when the program
2726being debugged terminates, @emph{all} local variables go out of scope,
2727and so only watchpoints that watch global variables remain set. If you
2728rerun the program, you will need to set all such watchpoints again. One
2729way of doing that would be to set a code breakpoint at the entry to the
2730@code{main} function and when it breaks, set all the watchpoints.
2731
c906108c
SS
2732@quotation
2733@cindex watchpoints and threads
2734@cindex threads and watchpoints
c906108c
SS
2735@emph{Warning:} In multi-thread programs, watchpoints have only limited
2736usefulness. With the current watchpoint implementation, @value{GDBN}
2737can only watch the value of an expression @emph{in a single thread}. If
2738you are confident that the expression can only change due to the current
2739thread's activity (and if you are also confident that no other thread
2740can become current), then you can use watchpoints as usual. However,
2741@value{GDBN} may not notice when a non-current thread's activity changes
2742the expression.
53a5351d 2743
d4f3574e 2744@c FIXME: this is almost identical to the previous paragraph.
53a5351d
JM
2745@emph{HP-UX Warning:} In multi-thread programs, software watchpoints
2746have only limited usefulness. If @value{GDBN} creates a software
2747watchpoint, it can only watch the value of an expression @emph{in a
2748single thread}. If you are confident that the expression can only
2749change due to the current thread's activity (and if you are also
2750confident that no other thread can become current), then you can use
2751software watchpoints as usual. However, @value{GDBN} may not notice
2752when a non-current thread's activity changes the expression. (Hardware
2753watchpoints, in contrast, watch an expression in all threads.)
c906108c 2754@end quotation
c906108c 2755
501eef12
AC
2756@xref{set remote hardware-watchpoint-limit}.
2757
6d2ebf8b 2758@node Set Catchpoints
c906108c 2759@subsection Setting catchpoints
d4f3574e 2760@cindex catchpoints, setting
c906108c
SS
2761@cindex exception handlers
2762@cindex event handling
2763
2764You can use @dfn{catchpoints} to cause the debugger to stop for certain
b37052ae 2765kinds of program events, such as C@t{++} exceptions or the loading of a
c906108c
SS
2766shared library. Use the @code{catch} command to set a catchpoint.
2767
2768@table @code
2769@kindex catch
2770@item catch @var{event}
2771Stop when @var{event} occurs. @var{event} can be any of the following:
2772@table @code
2773@item throw
2774@kindex catch throw
b37052ae 2775The throwing of a C@t{++} exception.
c906108c
SS
2776
2777@item catch
2778@kindex catch catch
b37052ae 2779The catching of a C@t{++} exception.
c906108c
SS
2780
2781@item exec
2782@kindex catch exec
2783A call to @code{exec}. This is currently only available for HP-UX.
2784
2785@item fork
2786@kindex catch fork
2787A call to @code{fork}. This is currently only available for HP-UX.
2788
2789@item vfork
2790@kindex catch vfork
2791A call to @code{vfork}. This is currently only available for HP-UX.
2792
2793@item load
2794@itemx load @var{libname}
2795@kindex catch load
2796The dynamic loading of any shared library, or the loading of the library
2797@var{libname}. This is currently only available for HP-UX.
2798
2799@item unload
2800@itemx unload @var{libname}
2801@kindex catch unload
2802The unloading of any dynamically loaded shared library, or the unloading
2803of the library @var{libname}. This is currently only available for HP-UX.
2804@end table
2805
2806@item tcatch @var{event}
2807Set a catchpoint that is enabled only for one stop. The catchpoint is
2808automatically deleted after the first time the event is caught.
2809
2810@end table
2811
2812Use the @code{info break} command to list the current catchpoints.
2813
b37052ae 2814There are currently some limitations to C@t{++} exception handling
c906108c
SS
2815(@code{catch throw} and @code{catch catch}) in @value{GDBN}:
2816
2817@itemize @bullet
2818@item
2819If you call a function interactively, @value{GDBN} normally returns
2820control to you when the function has finished executing. If the call
2821raises an exception, however, the call may bypass the mechanism that
2822returns control to you and cause your program either to abort or to
2823simply continue running until it hits a breakpoint, catches a signal
2824that @value{GDBN} is listening for, or exits. This is the case even if
2825you set a catchpoint for the exception; catchpoints on exceptions are
2826disabled within interactive calls.
2827
2828@item
2829You cannot raise an exception interactively.
2830
2831@item
2832You cannot install an exception handler interactively.
2833@end itemize
2834
2835@cindex raise exceptions
2836Sometimes @code{catch} is not the best way to debug exception handling:
2837if you need to know exactly where an exception is raised, it is better to
2838stop @emph{before} the exception handler is called, since that way you
2839can see the stack before any unwinding takes place. If you set a
2840breakpoint in an exception handler instead, it may not be easy to find
2841out where the exception was raised.
2842
2843To stop just before an exception handler is called, you need some
b37052ae 2844knowledge of the implementation. In the case of @sc{gnu} C@t{++}, exceptions are
c906108c
SS
2845raised by calling a library function named @code{__raise_exception}
2846which has the following ANSI C interface:
2847
474c8240 2848@smallexample
c906108c 2849 /* @var{addr} is where the exception identifier is stored.
d4f3574e
SS
2850 @var{id} is the exception identifier. */
2851 void __raise_exception (void **addr, void *id);
474c8240 2852@end smallexample
c906108c
SS
2853
2854@noindent
2855To make the debugger catch all exceptions before any stack
2856unwinding takes place, set a breakpoint on @code{__raise_exception}
2857(@pxref{Breakpoints, ,Breakpoints; watchpoints; and exceptions}).
2858
2859With a conditional breakpoint (@pxref{Conditions, ,Break conditions})
2860that depends on the value of @var{id}, you can stop your program when
2861a specific exception is raised. You can use multiple conditional
2862breakpoints to stop your program when any of a number of exceptions are
2863raised.
2864
2865
6d2ebf8b 2866@node Delete Breaks
c906108c
SS
2867@subsection Deleting breakpoints
2868
2869@cindex clearing breakpoints, watchpoints, catchpoints
2870@cindex deleting breakpoints, watchpoints, catchpoints
2871It is often necessary to eliminate a breakpoint, watchpoint, or
2872catchpoint once it has done its job and you no longer want your program
2873to stop there. This is called @dfn{deleting} the breakpoint. A
2874breakpoint that has been deleted no longer exists; it is forgotten.
2875
2876With the @code{clear} command you can delete breakpoints according to
2877where they are in your program. With the @code{delete} command you can
2878delete individual breakpoints, watchpoints, or catchpoints by specifying
2879their breakpoint numbers.
2880
2881It is not necessary to delete a breakpoint to proceed past it. @value{GDBN}
2882automatically ignores breakpoints on the first instruction to be executed
2883when you continue execution without changing the execution address.
2884
2885@table @code
2886@kindex clear
2887@item clear
2888Delete any breakpoints at the next instruction to be executed in the
2889selected stack frame (@pxref{Selection, ,Selecting a frame}). When
2890the innermost frame is selected, this is a good way to delete a
2891breakpoint where your program just stopped.
2892
2893@item clear @var{function}
2894@itemx clear @var{filename}:@var{function}
2895Delete any breakpoints set at entry to the function @var{function}.
2896
2897@item clear @var{linenum}
2898@itemx clear @var{filename}:@var{linenum}
2899Delete any breakpoints set at or within the code of the specified line.
2900
2901@cindex delete breakpoints
2902@kindex delete
41afff9a 2903@kindex d @r{(@code{delete})}
c5394b80
JM
2904@item delete @r{[}breakpoints@r{]} @r{[}@var{range}@dots{}@r{]}
2905Delete the breakpoints, watchpoints, or catchpoints of the breakpoint
2906ranges specified as arguments. If no argument is specified, delete all
c906108c
SS
2907breakpoints (@value{GDBN} asks confirmation, unless you have @code{set
2908confirm off}). You can abbreviate this command as @code{d}.
2909@end table
2910
6d2ebf8b 2911@node Disabling
c906108c
SS
2912@subsection Disabling breakpoints
2913
2914@kindex disable breakpoints
2915@kindex enable breakpoints
2916Rather than deleting a breakpoint, watchpoint, or catchpoint, you might
2917prefer to @dfn{disable} it. This makes the breakpoint inoperative as if
2918it had been deleted, but remembers the information on the breakpoint so
2919that you can @dfn{enable} it again later.
2920
2921You disable and enable breakpoints, watchpoints, and catchpoints with
2922the @code{enable} and @code{disable} commands, optionally specifying one
2923or more breakpoint numbers as arguments. Use @code{info break} or
2924@code{info watch} to print a list of breakpoints, watchpoints, and
2925catchpoints if you do not know which numbers to use.
2926
2927A breakpoint, watchpoint, or catchpoint can have any of four different
2928states of enablement:
2929
2930@itemize @bullet
2931@item
2932Enabled. The breakpoint stops your program. A breakpoint set
2933with the @code{break} command starts out in this state.
2934@item
2935Disabled. The breakpoint has no effect on your program.
2936@item
2937Enabled once. The breakpoint stops your program, but then becomes
d4f3574e 2938disabled.
c906108c
SS
2939@item
2940Enabled for deletion. The breakpoint stops your program, but
d4f3574e
SS
2941immediately after it does so it is deleted permanently. A breakpoint
2942set with the @code{tbreak} command starts out in this state.
c906108c
SS
2943@end itemize
2944
2945You can use the following commands to enable or disable breakpoints,
2946watchpoints, and catchpoints:
2947
2948@table @code
2949@kindex disable breakpoints
2950@kindex disable
41afff9a 2951@kindex dis @r{(@code{disable})}
c5394b80 2952@item disable @r{[}breakpoints@r{]} @r{[}@var{range}@dots{}@r{]}
c906108c
SS
2953Disable the specified breakpoints---or all breakpoints, if none are
2954listed. A disabled breakpoint has no effect but is not forgotten. All
2955options such as ignore-counts, conditions and commands are remembered in
2956case the breakpoint is enabled again later. You may abbreviate
2957@code{disable} as @code{dis}.
2958
2959@kindex enable breakpoints
2960@kindex enable
c5394b80 2961@item enable @r{[}breakpoints@r{]} @r{[}@var{range}@dots{}@r{]}
c906108c
SS
2962Enable the specified breakpoints (or all defined breakpoints). They
2963become effective once again in stopping your program.
2964
c5394b80 2965@item enable @r{[}breakpoints@r{]} once @var{range}@dots{}
c906108c
SS
2966Enable the specified breakpoints temporarily. @value{GDBN} disables any
2967of these breakpoints immediately after stopping your program.
2968
c5394b80 2969@item enable @r{[}breakpoints@r{]} delete @var{range}@dots{}
c906108c
SS
2970Enable the specified breakpoints to work once, then die. @value{GDBN}
2971deletes any of these breakpoints as soon as your program stops there.
2972@end table
2973
d4f3574e
SS
2974@c FIXME: I think the following ``Except for [...] @code{tbreak}'' is
2975@c confusing: tbreak is also initially enabled.
c906108c
SS
2976Except for a breakpoint set with @code{tbreak} (@pxref{Set Breaks,
2977,Setting breakpoints}), breakpoints that you set are initially enabled;
2978subsequently, they become disabled or enabled only when you use one of
2979the commands above. (The command @code{until} can set and delete a
2980breakpoint of its own, but it does not change the state of your other
2981breakpoints; see @ref{Continuing and Stepping, ,Continuing and
2982stepping}.)
2983
6d2ebf8b 2984@node Conditions
c906108c
SS
2985@subsection Break conditions
2986@cindex conditional breakpoints
2987@cindex breakpoint conditions
2988
2989@c FIXME what is scope of break condition expr? Context where wanted?
5d161b24 2990@c in particular for a watchpoint?
c906108c
SS
2991The simplest sort of breakpoint breaks every time your program reaches a
2992specified place. You can also specify a @dfn{condition} for a
2993breakpoint. A condition is just a Boolean expression in your
2994programming language (@pxref{Expressions, ,Expressions}). A breakpoint with
2995a condition evaluates the expression each time your program reaches it,
2996and your program stops only if the condition is @emph{true}.
2997
2998This is the converse of using assertions for program validation; in that
2999situation, you want to stop when the assertion is violated---that is,
3000when the condition is false. In C, if you want to test an assertion expressed
3001by the condition @var{assert}, you should set the condition
3002@samp{! @var{assert}} on the appropriate breakpoint.
3003
3004Conditions are also accepted for watchpoints; you may not need them,
3005since a watchpoint is inspecting the value of an expression anyhow---but
3006it might be simpler, say, to just set a watchpoint on a variable name,
3007and specify a condition that tests whether the new value is an interesting
3008one.
3009
3010Break conditions can have side effects, and may even call functions in
3011your program. This can be useful, for example, to activate functions
3012that log program progress, or to use your own print functions to
3013format special data structures. The effects are completely predictable
3014unless there is another enabled breakpoint at the same address. (In
3015that case, @value{GDBN} might see the other breakpoint first and stop your
3016program without checking the condition of this one.) Note that
d4f3574e
SS
3017breakpoint commands are usually more convenient and flexible than break
3018conditions for the
c906108c
SS
3019purpose of performing side effects when a breakpoint is reached
3020(@pxref{Break Commands, ,Breakpoint command lists}).
3021
3022Break conditions can be specified when a breakpoint is set, by using
3023@samp{if} in the arguments to the @code{break} command. @xref{Set
3024Breaks, ,Setting breakpoints}. They can also be changed at any time
3025with the @code{condition} command.
53a5351d 3026
c906108c
SS
3027You can also use the @code{if} keyword with the @code{watch} command.
3028The @code{catch} command does not recognize the @code{if} keyword;
3029@code{condition} is the only way to impose a further condition on a
3030catchpoint.
c906108c
SS
3031
3032@table @code
3033@kindex condition
3034@item condition @var{bnum} @var{expression}
3035Specify @var{expression} as the break condition for breakpoint,
3036watchpoint, or catchpoint number @var{bnum}. After you set a condition,
3037breakpoint @var{bnum} stops your program only if the value of
3038@var{expression} is true (nonzero, in C). When you use
3039@code{condition}, @value{GDBN} checks @var{expression} immediately for
3040syntactic correctness, and to determine whether symbols in it have
d4f3574e
SS
3041referents in the context of your breakpoint. If @var{expression} uses
3042symbols not referenced in the context of the breakpoint, @value{GDBN}
3043prints an error message:
3044
474c8240 3045@smallexample
d4f3574e 3046No symbol "foo" in current context.
474c8240 3047@end smallexample
d4f3574e
SS
3048
3049@noindent
c906108c
SS
3050@value{GDBN} does
3051not actually evaluate @var{expression} at the time the @code{condition}
d4f3574e
SS
3052command (or a command that sets a breakpoint with a condition, like
3053@code{break if @dots{}}) is given, however. @xref{Expressions, ,Expressions}.
c906108c
SS
3054
3055@item condition @var{bnum}
3056Remove the condition from breakpoint number @var{bnum}. It becomes
3057an ordinary unconditional breakpoint.
3058@end table
3059
3060@cindex ignore count (of breakpoint)
3061A special case of a breakpoint condition is to stop only when the
3062breakpoint has been reached a certain number of times. This is so
3063useful that there is a special way to do it, using the @dfn{ignore
3064count} of the breakpoint. Every breakpoint has an ignore count, which
3065is an integer. Most of the time, the ignore count is zero, and
3066therefore has no effect. But if your program reaches a breakpoint whose
3067ignore count is positive, then instead of stopping, it just decrements
3068the ignore count by one and continues. As a result, if the ignore count
3069value is @var{n}, the breakpoint does not stop the next @var{n} times
3070your program reaches it.
3071
3072@table @code
3073@kindex ignore
3074@item ignore @var{bnum} @var{count}
3075Set the ignore count of breakpoint number @var{bnum} to @var{count}.
3076The next @var{count} times the breakpoint is reached, your program's
3077execution does not stop; other than to decrement the ignore count, @value{GDBN}
3078takes no action.
3079
3080To make the breakpoint stop the next time it is reached, specify
3081a count of zero.
3082
3083When you use @code{continue} to resume execution of your program from a
3084breakpoint, you can specify an ignore count directly as an argument to
3085@code{continue}, rather than using @code{ignore}. @xref{Continuing and
3086Stepping,,Continuing and stepping}.
3087
3088If a breakpoint has a positive ignore count and a condition, the
3089condition is not checked. Once the ignore count reaches zero,
3090@value{GDBN} resumes checking the condition.
3091
3092You could achieve the effect of the ignore count with a condition such
3093as @w{@samp{$foo-- <= 0}} using a debugger convenience variable that
3094is decremented each time. @xref{Convenience Vars, ,Convenience
3095variables}.
3096@end table
3097
3098Ignore counts apply to breakpoints, watchpoints, and catchpoints.
3099
3100
6d2ebf8b 3101@node Break Commands
c906108c
SS
3102@subsection Breakpoint command lists
3103
3104@cindex breakpoint commands
3105You can give any breakpoint (or watchpoint or catchpoint) a series of
3106commands to execute when your program stops due to that breakpoint. For
3107example, you might want to print the values of certain expressions, or
3108enable other breakpoints.
3109
3110@table @code
3111@kindex commands
3112@kindex end
3113@item commands @r{[}@var{bnum}@r{]}
3114@itemx @dots{} @var{command-list} @dots{}
3115@itemx end
3116Specify a list of commands for breakpoint number @var{bnum}. The commands
3117themselves appear on the following lines. Type a line containing just
3118@code{end} to terminate the commands.
3119
3120To remove all commands from a breakpoint, type @code{commands} and
3121follow it immediately with @code{end}; that is, give no commands.
3122
3123With no @var{bnum} argument, @code{commands} refers to the last
3124breakpoint, watchpoint, or catchpoint set (not to the breakpoint most
3125recently encountered).
3126@end table
3127
3128Pressing @key{RET} as a means of repeating the last @value{GDBN} command is
3129disabled within a @var{command-list}.
3130
3131You can use breakpoint commands to start your program up again. Simply
3132use the @code{continue} command, or @code{step}, or any other command
3133that resumes execution.
3134
3135Any other commands in the command list, after a command that resumes
3136execution, are ignored. This is because any time you resume execution
3137(even with a simple @code{next} or @code{step}), you may encounter
3138another breakpoint---which could have its own command list, leading to
3139ambiguities about which list to execute.
3140
3141@kindex silent
3142If the first command you specify in a command list is @code{silent}, the
3143usual message about stopping at a breakpoint is not printed. This may
3144be desirable for breakpoints that are to print a specific message and
3145then continue. If none of the remaining commands print anything, you
3146see no sign that the breakpoint was reached. @code{silent} is
3147meaningful only at the beginning of a breakpoint command list.
3148
3149The commands @code{echo}, @code{output}, and @code{printf} allow you to
3150print precisely controlled output, and are often useful in silent
3151breakpoints. @xref{Output, ,Commands for controlled output}.
3152
3153For example, here is how you could use breakpoint commands to print the
3154value of @code{x} at entry to @code{foo} whenever @code{x} is positive.
3155
474c8240 3156@smallexample
c906108c
SS
3157break foo if x>0
3158commands
3159silent
3160printf "x is %d\n",x
3161cont
3162end
474c8240 3163@end smallexample
c906108c
SS
3164
3165One application for breakpoint commands is to compensate for one bug so
3166you can test for another. Put a breakpoint just after the erroneous line
3167of code, give it a condition to detect the case in which something
3168erroneous has been done, and give it commands to assign correct values
3169to any variables that need them. End with the @code{continue} command
3170so that your program does not stop, and start with the @code{silent}
3171command so that no output is produced. Here is an example:
3172
474c8240 3173@smallexample
c906108c
SS
3174break 403
3175commands
3176silent
3177set x = y + 4
3178cont
3179end
474c8240 3180@end smallexample
c906108c 3181
6d2ebf8b 3182@node Breakpoint Menus
c906108c
SS
3183@subsection Breakpoint menus
3184@cindex overloading
3185@cindex symbol overloading
3186
b37303ee
AF
3187Some programming languages (notably C@t{++} and Objective-C) permit a
3188single function name
c906108c
SS
3189to be defined several times, for application in different contexts.
3190This is called @dfn{overloading}. When a function name is overloaded,
3191@samp{break @var{function}} is not enough to tell @value{GDBN} where you want
3192a breakpoint. If you realize this is a problem, you can use
3193something like @samp{break @var{function}(@var{types})} to specify which
3194particular version of the function you want. Otherwise, @value{GDBN} offers
3195you a menu of numbered choices for different possible breakpoints, and
3196waits for your selection with the prompt @samp{>}. The first two
3197options are always @samp{[0] cancel} and @samp{[1] all}. Typing @kbd{1}
3198sets a breakpoint at each definition of @var{function}, and typing
3199@kbd{0} aborts the @code{break} command without setting any new
3200breakpoints.
3201
3202For example, the following session excerpt shows an attempt to set a
3203breakpoint at the overloaded symbol @code{String::after}.
3204We choose three particular definitions of that function name:
3205
3206@c FIXME! This is likely to change to show arg type lists, at least
3207@smallexample
3208@group
3209(@value{GDBP}) b String::after
3210[0] cancel
3211[1] all
3212[2] file:String.cc; line number:867
3213[3] file:String.cc; line number:860
3214[4] file:String.cc; line number:875
3215[5] file:String.cc; line number:853
3216[6] file:String.cc; line number:846
3217[7] file:String.cc; line number:735
3218> 2 4 6
3219Breakpoint 1 at 0xb26c: file String.cc, line 867.
3220Breakpoint 2 at 0xb344: file String.cc, line 875.
3221Breakpoint 3 at 0xafcc: file String.cc, line 846.
3222Multiple breakpoints were set.
3223Use the "delete" command to delete unwanted
3224 breakpoints.
3225(@value{GDBP})
3226@end group
3227@end smallexample
c906108c
SS
3228
3229@c @ifclear BARETARGET
6d2ebf8b 3230@node Error in Breakpoints
d4f3574e 3231@subsection ``Cannot insert breakpoints''
c906108c
SS
3232@c
3233@c FIXME!! 14/6/95 Is there a real example of this? Let's use it.
3234@c
d4f3574e
SS
3235Under some operating systems, breakpoints cannot be used in a program if
3236any other process is running that program. In this situation,
5d161b24 3237attempting to run or continue a program with a breakpoint causes
d4f3574e
SS
3238@value{GDBN} to print an error message:
3239
474c8240 3240@smallexample
d4f3574e
SS
3241Cannot insert breakpoints.
3242The same program may be running in another process.
474c8240 3243@end smallexample
d4f3574e
SS
3244
3245When this happens, you have three ways to proceed:
3246
3247@enumerate
3248@item
3249Remove or disable the breakpoints, then continue.
3250
3251@item
5d161b24 3252Suspend @value{GDBN}, and copy the file containing your program to a new
d4f3574e 3253name. Resume @value{GDBN} and use the @code{exec-file} command to specify
5d161b24 3254that @value{GDBN} should run your program under that name.
d4f3574e
SS
3255Then start your program again.
3256
3257@item
3258Relink your program so that the text segment is nonsharable, using the
3259linker option @samp{-N}. The operating system limitation may not apply
3260to nonsharable executables.
3261@end enumerate
c906108c
SS
3262@c @end ifclear
3263
d4f3574e
SS
3264A similar message can be printed if you request too many active
3265hardware-assisted breakpoints and watchpoints:
3266
3267@c FIXME: the precise wording of this message may change; the relevant
3268@c source change is not committed yet (Sep 3, 1999).
3269@smallexample
3270Stopped; cannot insert breakpoints.
3271You may have requested too many hardware breakpoints and watchpoints.
3272@end smallexample
3273
3274@noindent
3275This message is printed when you attempt to resume the program, since
3276only then @value{GDBN} knows exactly how many hardware breakpoints and
3277watchpoints it needs to insert.
3278
3279When this message is printed, you need to disable or remove some of the
3280hardware-assisted breakpoints and watchpoints, and then continue.
3281
3282
6d2ebf8b 3283@node Continuing and Stepping
c906108c
SS
3284@section Continuing and stepping
3285
3286@cindex stepping
3287@cindex continuing
3288@cindex resuming execution
3289@dfn{Continuing} means resuming program execution until your program
3290completes normally. In contrast, @dfn{stepping} means executing just
3291one more ``step'' of your program, where ``step'' may mean either one
3292line of source code, or one machine instruction (depending on what
7a292a7a
SS
3293particular command you use). Either when continuing or when stepping,
3294your program may stop even sooner, due to a breakpoint or a signal. (If
d4f3574e
SS
3295it stops due to a signal, you may want to use @code{handle}, or use
3296@samp{signal 0} to resume execution. @xref{Signals, ,Signals}.)
c906108c
SS
3297
3298@table @code
3299@kindex continue
41afff9a
EZ
3300@kindex c @r{(@code{continue})}
3301@kindex fg @r{(resume foreground execution)}
c906108c
SS
3302@item continue @r{[}@var{ignore-count}@r{]}
3303@itemx c @r{[}@var{ignore-count}@r{]}
3304@itemx fg @r{[}@var{ignore-count}@r{]}
3305Resume program execution, at the address where your program last stopped;
3306any breakpoints set at that address are bypassed. The optional argument
3307@var{ignore-count} allows you to specify a further number of times to
3308ignore a breakpoint at this location; its effect is like that of
3309@code{ignore} (@pxref{Conditions, ,Break conditions}).
3310
3311The argument @var{ignore-count} is meaningful only when your program
3312stopped due to a breakpoint. At other times, the argument to
3313@code{continue} is ignored.
3314
d4f3574e
SS
3315The synonyms @code{c} and @code{fg} (for @dfn{foreground}, as the
3316debugged program is deemed to be the foreground program) are provided
3317purely for convenience, and have exactly the same behavior as
3318@code{continue}.
c906108c
SS
3319@end table
3320
3321To resume execution at a different place, you can use @code{return}
3322(@pxref{Returning, ,Returning from a function}) to go back to the
3323calling function; or @code{jump} (@pxref{Jumping, ,Continuing at a
3324different address}) to go to an arbitrary location in your program.
3325
3326A typical technique for using stepping is to set a breakpoint
3327(@pxref{Breakpoints, ,Breakpoints; watchpoints; and catchpoints}) at the
3328beginning of the function or the section of your program where a problem
3329is believed to lie, run your program until it stops at that breakpoint,
3330and then step through the suspect area, examining the variables that are
3331interesting, until you see the problem happen.
3332
3333@table @code
3334@kindex step
41afff9a 3335@kindex s @r{(@code{step})}
c906108c
SS
3336@item step
3337Continue running your program until control reaches a different source
3338line, then stop it and return control to @value{GDBN}. This command is
3339abbreviated @code{s}.
3340
3341@quotation
3342@c "without debugging information" is imprecise; actually "without line
3343@c numbers in the debugging information". (gcc -g1 has debugging info but
3344@c not line numbers). But it seems complex to try to make that
3345@c distinction here.
3346@emph{Warning:} If you use the @code{step} command while control is
3347within a function that was compiled without debugging information,
3348execution proceeds until control reaches a function that does have
3349debugging information. Likewise, it will not step into a function which
3350is compiled without debugging information. To step through functions
3351without debugging information, use the @code{stepi} command, described
3352below.
3353@end quotation
3354
4a92d011
EZ
3355The @code{step} command only stops at the first instruction of a source
3356line. This prevents the multiple stops that could otherwise occur in
3357@code{switch} statements, @code{for} loops, etc. @code{step} continues
3358to stop if a function that has debugging information is called within
3359the line. In other words, @code{step} @emph{steps inside} any functions
3360called within the line.
c906108c 3361
d4f3574e
SS
3362Also, the @code{step} command only enters a function if there is line
3363number information for the function. Otherwise it acts like the
5d161b24 3364@code{next} command. This avoids problems when using @code{cc -gl}
c906108c 3365on MIPS machines. Previously, @code{step} entered subroutines if there
5d161b24 3366was any debugging information about the routine.
c906108c
SS
3367
3368@item step @var{count}
3369Continue running as in @code{step}, but do so @var{count} times. If a
7a292a7a
SS
3370breakpoint is reached, or a signal not related to stepping occurs before
3371@var{count} steps, stepping stops right away.
c906108c
SS
3372
3373@kindex next
41afff9a 3374@kindex n @r{(@code{next})}
c906108c
SS
3375@item next @r{[}@var{count}@r{]}
3376Continue to the next source line in the current (innermost) stack frame.
7a292a7a
SS
3377This is similar to @code{step}, but function calls that appear within
3378the line of code are executed without stopping. Execution stops when
3379control reaches a different line of code at the original stack level
3380that was executing when you gave the @code{next} command. This command
3381is abbreviated @code{n}.
c906108c
SS
3382
3383An argument @var{count} is a repeat count, as for @code{step}.
3384
3385
3386@c FIX ME!! Do we delete this, or is there a way it fits in with
3387@c the following paragraph? --- Vctoria
3388@c
3389@c @code{next} within a function that lacks debugging information acts like
3390@c @code{step}, but any function calls appearing within the code of the
3391@c function are executed without stopping.
3392
d4f3574e
SS
3393The @code{next} command only stops at the first instruction of a
3394source line. This prevents multiple stops that could otherwise occur in
4a92d011 3395@code{switch} statements, @code{for} loops, etc.
c906108c 3396
b90a5f51
CF
3397@kindex set step-mode
3398@item set step-mode
3399@cindex functions without line info, and stepping
3400@cindex stepping into functions with no line info
3401@itemx set step-mode on
4a92d011 3402The @code{set step-mode on} command causes the @code{step} command to
b90a5f51
CF
3403stop at the first instruction of a function which contains no debug line
3404information rather than stepping over it.
3405
4a92d011
EZ
3406This is useful in cases where you may be interested in inspecting the
3407machine instructions of a function which has no symbolic info and do not
3408want @value{GDBN} to automatically skip over this function.
b90a5f51
CF
3409
3410@item set step-mode off
4a92d011 3411Causes the @code{step} command to step over any functions which contains no
b90a5f51
CF
3412debug information. This is the default.
3413
c906108c
SS
3414@kindex finish
3415@item finish
3416Continue running until just after function in the selected stack frame
3417returns. Print the returned value (if any).
3418
3419Contrast this with the @code{return} command (@pxref{Returning,
3420,Returning from a function}).
3421
3422@kindex until
41afff9a 3423@kindex u @r{(@code{until})}
c906108c
SS
3424@item until
3425@itemx u
3426Continue running until a source line past the current line, in the
3427current stack frame, is reached. This command is used to avoid single
3428stepping through a loop more than once. It is like the @code{next}
3429command, except that when @code{until} encounters a jump, it
3430automatically continues execution until the program counter is greater
3431than the address of the jump.
3432
3433This means that when you reach the end of a loop after single stepping
3434though it, @code{until} makes your program continue execution until it
3435exits the loop. In contrast, a @code{next} command at the end of a loop
3436simply steps back to the beginning of the loop, which forces you to step
3437through the next iteration.
3438
3439@code{until} always stops your program if it attempts to exit the current
3440stack frame.
3441
3442@code{until} may produce somewhat counterintuitive results if the order
3443of machine code does not match the order of the source lines. For
3444example, in the following excerpt from a debugging session, the @code{f}
3445(@code{frame}) command shows that execution is stopped at line
3446@code{206}; yet when we use @code{until}, we get to line @code{195}:
3447
474c8240 3448@smallexample
c906108c
SS
3449(@value{GDBP}) f
3450#0 main (argc=4, argv=0xf7fffae8) at m4.c:206
3451206 expand_input();
3452(@value{GDBP}) until
3453195 for ( ; argc > 0; NEXTARG) @{
474c8240 3454@end smallexample
c906108c
SS
3455
3456This happened because, for execution efficiency, the compiler had
3457generated code for the loop closure test at the end, rather than the
3458start, of the loop---even though the test in a C @code{for}-loop is
3459written before the body of the loop. The @code{until} command appeared
3460to step back to the beginning of the loop when it advanced to this
3461expression; however, it has not really gone to an earlier
3462statement---not in terms of the actual machine code.
3463
3464@code{until} with no argument works by means of single
3465instruction stepping, and hence is slower than @code{until} with an
3466argument.
3467
3468@item until @var{location}
3469@itemx u @var{location}
3470Continue running your program until either the specified location is
3471reached, or the current stack frame returns. @var{location} is any of
3472the forms of argument acceptable to @code{break} (@pxref{Set Breaks,
c60eb6f1
EZ
3473,Setting breakpoints}). This form of the command uses breakpoints, and
3474hence is quicker than @code{until} without an argument. The specified
3475location is actually reached only if it is in the current frame. This
3476implies that @code{until} can be used to skip over recursive function
3477invocations. For instance in the code below, if the current location is
3478line @code{96}, issuing @code{until 99} will execute the program up to
3479line @code{99} in the same invocation of factorial, i.e. after the inner
3480invocations have returned.
3481
3482@smallexample
348394 int factorial (int value)
348495 @{
348596 if (value > 1) @{
348697 value *= factorial (value - 1);
348798 @}
348899 return (value);
3489100 @}
3490@end smallexample
3491
3492
3493@kindex advance @var{location}
3494@itemx advance @var{location}
3495Continue running the program up to the given location. An argument is
3496required, anything of the same form as arguments for the @code{break}
3497command. Execution will also stop upon exit from the current stack
3498frame. This command is similar to @code{until}, but @code{advance} will
3499not skip over recursive function calls, and the target location doesn't
3500have to be in the same frame as the current one.
3501
c906108c
SS
3502
3503@kindex stepi
41afff9a 3504@kindex si @r{(@code{stepi})}
c906108c 3505@item stepi
96a2c332 3506@itemx stepi @var{arg}
c906108c
SS
3507@itemx si
3508Execute one machine instruction, then stop and return to the debugger.
3509
3510It is often useful to do @samp{display/i $pc} when stepping by machine
3511instructions. This makes @value{GDBN} automatically display the next
3512instruction to be executed, each time your program stops. @xref{Auto
3513Display,, Automatic display}.
3514
3515An argument is a repeat count, as in @code{step}.
3516
3517@need 750
3518@kindex nexti
41afff9a 3519@kindex ni @r{(@code{nexti})}
c906108c 3520@item nexti
96a2c332 3521@itemx nexti @var{arg}
c906108c
SS
3522@itemx ni
3523Execute one machine instruction, but if it is a function call,
3524proceed until the function returns.
3525
3526An argument is a repeat count, as in @code{next}.
3527@end table
3528
6d2ebf8b 3529@node Signals
c906108c
SS
3530@section Signals
3531@cindex signals
3532
3533A signal is an asynchronous event that can happen in a program. The
3534operating system defines the possible kinds of signals, and gives each
3535kind a name and a number. For example, in Unix @code{SIGINT} is the
d4f3574e 3536signal a program gets when you type an interrupt character (often @kbd{C-c});
c906108c
SS
3537@code{SIGSEGV} is the signal a program gets from referencing a place in
3538memory far away from all the areas in use; @code{SIGALRM} occurs when
3539the alarm clock timer goes off (which happens only if your program has
3540requested an alarm).
3541
3542@cindex fatal signals
3543Some signals, including @code{SIGALRM}, are a normal part of the
3544functioning of your program. Others, such as @code{SIGSEGV}, indicate
d4f3574e 3545errors; these signals are @dfn{fatal} (they kill your program immediately) if the
c906108c
SS
3546program has not specified in advance some other way to handle the signal.
3547@code{SIGINT} does not indicate an error in your program, but it is normally
3548fatal so it can carry out the purpose of the interrupt: to kill the program.
3549
3550@value{GDBN} has the ability to detect any occurrence of a signal in your
3551program. You can tell @value{GDBN} in advance what to do for each kind of
3552signal.
3553
3554@cindex handling signals
24f93129
EZ
3555Normally, @value{GDBN} is set up to let the non-erroneous signals like
3556@code{SIGALRM} be silently passed to your program
3557(so as not to interfere with their role in the program's functioning)
c906108c
SS
3558but to stop your program immediately whenever an error signal happens.
3559You can change these settings with the @code{handle} command.
3560
3561@table @code
3562@kindex info signals
3563@item info signals
96a2c332 3564@itemx info handle
c906108c
SS
3565Print a table of all the kinds of signals and how @value{GDBN} has been told to
3566handle each one. You can use this to see the signal numbers of all
3567the defined types of signals.
3568
d4f3574e 3569@code{info handle} is an alias for @code{info signals}.
c906108c
SS
3570
3571@kindex handle
3572@item handle @var{signal} @var{keywords}@dots{}
5ece1a18
EZ
3573Change the way @value{GDBN} handles signal @var{signal}. @var{signal}
3574can be the number of a signal or its name (with or without the
24f93129 3575@samp{SIG} at the beginning); a list of signal numbers of the form
5ece1a18
EZ
3576@samp{@var{low}-@var{high}}; or the word @samp{all}, meaning all the
3577known signals. The @var{keywords} say what change to make.
c906108c
SS
3578@end table
3579
3580@c @group
3581The keywords allowed by the @code{handle} command can be abbreviated.
3582Their full names are:
3583
3584@table @code
3585@item nostop
3586@value{GDBN} should not stop your program when this signal happens. It may
3587still print a message telling you that the signal has come in.
3588
3589@item stop
3590@value{GDBN} should stop your program when this signal happens. This implies
3591the @code{print} keyword as well.
3592
3593@item print
3594@value{GDBN} should print a message when this signal happens.
3595
3596@item noprint
3597@value{GDBN} should not mention the occurrence of the signal at all. This
3598implies the @code{nostop} keyword as well.
3599
3600@item pass
5ece1a18 3601@itemx noignore
c906108c
SS
3602@value{GDBN} should allow your program to see this signal; your program
3603can handle the signal, or else it may terminate if the signal is fatal
5ece1a18 3604and not handled. @code{pass} and @code{noignore} are synonyms.
c906108c
SS
3605
3606@item nopass
5ece1a18 3607@itemx ignore
c906108c 3608@value{GDBN} should not allow your program to see this signal.
5ece1a18 3609@code{nopass} and @code{ignore} are synonyms.
c906108c
SS
3610@end table
3611@c @end group
3612
d4f3574e
SS
3613When a signal stops your program, the signal is not visible to the
3614program until you
c906108c
SS
3615continue. Your program sees the signal then, if @code{pass} is in
3616effect for the signal in question @emph{at that time}. In other words,
3617after @value{GDBN} reports a signal, you can use the @code{handle}
3618command with @code{pass} or @code{nopass} to control whether your
3619program sees that signal when you continue.
3620
24f93129
EZ
3621The default is set to @code{nostop}, @code{noprint}, @code{pass} for
3622non-erroneous signals such as @code{SIGALRM}, @code{SIGWINCH} and
3623@code{SIGCHLD}, and to @code{stop}, @code{print}, @code{pass} for the
3624erroneous signals.
3625
c906108c
SS
3626You can also use the @code{signal} command to prevent your program from
3627seeing a signal, or cause it to see a signal it normally would not see,
3628or to give it any signal at any time. For example, if your program stopped
3629due to some sort of memory reference error, you might store correct
3630values into the erroneous variables and continue, hoping to see more
3631execution; but your program would probably terminate immediately as
3632a result of the fatal signal once it saw the signal. To prevent this,
3633you can continue with @samp{signal 0}. @xref{Signaling, ,Giving your
5d161b24 3634program a signal}.
c906108c 3635
6d2ebf8b 3636@node Thread Stops
c906108c
SS
3637@section Stopping and starting multi-thread programs
3638
3639When your program has multiple threads (@pxref{Threads,, Debugging
3640programs with multiple threads}), you can choose whether to set
3641breakpoints on all threads, or on a particular thread.
3642
3643@table @code
3644@cindex breakpoints and threads
3645@cindex thread breakpoints
3646@kindex break @dots{} thread @var{threadno}
3647@item break @var{linespec} thread @var{threadno}
3648@itemx break @var{linespec} thread @var{threadno} if @dots{}
3649@var{linespec} specifies source lines; there are several ways of
3650writing them, but the effect is always to specify some source line.
3651
3652Use the qualifier @samp{thread @var{threadno}} with a breakpoint command
3653to specify that you only want @value{GDBN} to stop the program when a
3654particular thread reaches this breakpoint. @var{threadno} is one of the
3655numeric thread identifiers assigned by @value{GDBN}, shown in the first
3656column of the @samp{info threads} display.
3657
3658If you do not specify @samp{thread @var{threadno}} when you set a
3659breakpoint, the breakpoint applies to @emph{all} threads of your
3660program.
3661
3662You can use the @code{thread} qualifier on conditional breakpoints as
3663well; in this case, place @samp{thread @var{threadno}} before the
3664breakpoint condition, like this:
3665
3666@smallexample
2df3850c 3667(@value{GDBP}) break frik.c:13 thread 28 if bartab > lim
c906108c
SS
3668@end smallexample
3669
3670@end table
3671
3672@cindex stopped threads
3673@cindex threads, stopped
3674Whenever your program stops under @value{GDBN} for any reason,
3675@emph{all} threads of execution stop, not just the current thread. This
3676allows you to examine the overall state of the program, including
3677switching between threads, without worrying that things may change
3678underfoot.
3679
3680@cindex continuing threads
3681@cindex threads, continuing
3682Conversely, whenever you restart the program, @emph{all} threads start
3683executing. @emph{This is true even when single-stepping} with commands
5d161b24 3684like @code{step} or @code{next}.
c906108c
SS
3685
3686In particular, @value{GDBN} cannot single-step all threads in lockstep.
3687Since thread scheduling is up to your debugging target's operating
3688system (not controlled by @value{GDBN}), other threads may
3689execute more than one statement while the current thread completes a
3690single step. Moreover, in general other threads stop in the middle of a
3691statement, rather than at a clean statement boundary, when the program
3692stops.
3693
3694You might even find your program stopped in another thread after
3695continuing or even single-stepping. This happens whenever some other
3696thread runs into a breakpoint, a signal, or an exception before the
3697first thread completes whatever you requested.
3698
3699On some OSes, you can lock the OS scheduler and thus allow only a single
3700thread to run.
3701
3702@table @code
3703@item set scheduler-locking @var{mode}
3704Set the scheduler locking mode. If it is @code{off}, then there is no
3705locking and any thread may run at any time. If @code{on}, then only the
3706current thread may run when the inferior is resumed. The @code{step}
3707mode optimizes for single-stepping. It stops other threads from
3708``seizing the prompt'' by preempting the current thread while you are
3709stepping. Other threads will only rarely (or never) get a chance to run
d4f3574e 3710when you step. They are more likely to run when you @samp{next} over a
c906108c 3711function call, and they are completely free to run when you use commands
d4f3574e 3712like @samp{continue}, @samp{until}, or @samp{finish}. However, unless another
c906108c 3713thread hits a breakpoint during its timeslice, they will never steal the
2df3850c 3714@value{GDBN} prompt away from the thread that you are debugging.
c906108c
SS
3715
3716@item show scheduler-locking
3717Display the current scheduler locking mode.
3718@end table
3719
c906108c 3720
6d2ebf8b 3721@node Stack
c906108c
SS
3722@chapter Examining the Stack
3723
3724When your program has stopped, the first thing you need to know is where it
3725stopped and how it got there.
3726
3727@cindex call stack
5d161b24
DB
3728Each time your program performs a function call, information about the call
3729is generated.
3730That information includes the location of the call in your program,
3731the arguments of the call,
c906108c 3732and the local variables of the function being called.
5d161b24 3733The information is saved in a block of data called a @dfn{stack frame}.
c906108c
SS
3734The stack frames are allocated in a region of memory called the @dfn{call
3735stack}.
3736
3737When your program stops, the @value{GDBN} commands for examining the
3738stack allow you to see all of this information.
3739
3740@cindex selected frame
3741One of the stack frames is @dfn{selected} by @value{GDBN} and many
3742@value{GDBN} commands refer implicitly to the selected frame. In
3743particular, whenever you ask @value{GDBN} for the value of a variable in
3744your program, the value is found in the selected frame. There are
3745special @value{GDBN} commands to select whichever frame you are
3746interested in. @xref{Selection, ,Selecting a frame}.
3747
3748When your program stops, @value{GDBN} automatically selects the
5d161b24 3749currently executing frame and describes it briefly, similar to the
c906108c
SS
3750@code{frame} command (@pxref{Frame Info, ,Information about a frame}).
3751
3752@menu
3753* Frames:: Stack frames
3754* Backtrace:: Backtraces
3755* Selection:: Selecting a frame
3756* Frame Info:: Information on a frame
c906108c
SS
3757
3758@end menu
3759
6d2ebf8b 3760@node Frames
c906108c
SS
3761@section Stack frames
3762
d4f3574e 3763@cindex frame, definition
c906108c
SS
3764@cindex stack frame
3765The call stack is divided up into contiguous pieces called @dfn{stack
3766frames}, or @dfn{frames} for short; each frame is the data associated
3767with one call to one function. The frame contains the arguments given
3768to the function, the function's local variables, and the address at
3769which the function is executing.
3770
3771@cindex initial frame
3772@cindex outermost frame
3773@cindex innermost frame
3774When your program is started, the stack has only one frame, that of the
3775function @code{main}. This is called the @dfn{initial} frame or the
3776@dfn{outermost} frame. Each time a function is called, a new frame is
3777made. Each time a function returns, the frame for that function invocation
3778is eliminated. If a function is recursive, there can be many frames for
3779the same function. The frame for the function in which execution is
3780actually occurring is called the @dfn{innermost} frame. This is the most
3781recently created of all the stack frames that still exist.
3782
3783@cindex frame pointer
3784Inside your program, stack frames are identified by their addresses. A
3785stack frame consists of many bytes, each of which has its own address; each
3786kind of computer has a convention for choosing one byte whose
3787address serves as the address of the frame. Usually this address is kept
3788in a register called the @dfn{frame pointer register} while execution is
3789going on in that frame.
3790
3791@cindex frame number
3792@value{GDBN} assigns numbers to all existing stack frames, starting with
3793zero for the innermost frame, one for the frame that called it,
3794and so on upward. These numbers do not really exist in your program;
3795they are assigned by @value{GDBN} to give you a way of designating stack
3796frames in @value{GDBN} commands.
3797
6d2ebf8b
SS
3798@c The -fomit-frame-pointer below perennially causes hbox overflow
3799@c underflow problems.
c906108c
SS
3800@cindex frameless execution
3801Some compilers provide a way to compile functions so that they operate
6d2ebf8b 3802without stack frames. (For example, the @value{GCC} option
474c8240 3803@smallexample
6d2ebf8b 3804@samp{-fomit-frame-pointer}
474c8240 3805@end smallexample
6d2ebf8b 3806generates functions without a frame.)
c906108c
SS
3807This is occasionally done with heavily used library functions to save
3808the frame setup time. @value{GDBN} has limited facilities for dealing
3809with these function invocations. If the innermost function invocation
3810has no stack frame, @value{GDBN} nevertheless regards it as though
3811it had a separate frame, which is numbered zero as usual, allowing
3812correct tracing of the function call chain. However, @value{GDBN} has
3813no provision for frameless functions elsewhere in the stack.
3814
3815@table @code
d4f3574e 3816@kindex frame@r{, command}
41afff9a 3817@cindex current stack frame
c906108c 3818@item frame @var{args}
5d161b24 3819The @code{frame} command allows you to move from one stack frame to another,
c906108c 3820and to print the stack frame you select. @var{args} may be either the
5d161b24
DB
3821address of the frame or the stack frame number. Without an argument,
3822@code{frame} prints the current stack frame.
c906108c
SS
3823
3824@kindex select-frame
41afff9a 3825@cindex selecting frame silently
c906108c
SS
3826@item select-frame
3827The @code{select-frame} command allows you to move from one stack frame
3828to another without printing the frame. This is the silent version of
3829@code{frame}.
3830@end table
3831
6d2ebf8b 3832@node Backtrace
c906108c
SS
3833@section Backtraces
3834
3835@cindex backtraces
3836@cindex tracebacks
3837@cindex stack traces
3838A backtrace is a summary of how your program got where it is. It shows one
3839line per frame, for many frames, starting with the currently executing
3840frame (frame zero), followed by its caller (frame one), and on up the
3841stack.
3842
3843@table @code
3844@kindex backtrace
41afff9a 3845@kindex bt @r{(@code{backtrace})}
c906108c
SS
3846@item backtrace
3847@itemx bt
3848Print a backtrace of the entire stack: one line per frame for all
3849frames in the stack.
3850
3851You can stop the backtrace at any time by typing the system interrupt
3852character, normally @kbd{C-c}.
3853
3854@item backtrace @var{n}
3855@itemx bt @var{n}
3856Similar, but print only the innermost @var{n} frames.
3857
3858@item backtrace -@var{n}
3859@itemx bt -@var{n}
3860Similar, but print only the outermost @var{n} frames.
3861@end table
3862
3863@kindex where
3864@kindex info stack
41afff9a 3865@kindex info s @r{(@code{info stack})}
c906108c
SS
3866The names @code{where} and @code{info stack} (abbreviated @code{info s})
3867are additional aliases for @code{backtrace}.
3868
3869Each line in the backtrace shows the frame number and the function name.
3870The program counter value is also shown---unless you use @code{set
3871print address off}. The backtrace also shows the source file name and
3872line number, as well as the arguments to the function. The program
3873counter value is omitted if it is at the beginning of the code for that
3874line number.
3875
3876Here is an example of a backtrace. It was made with the command
3877@samp{bt 3}, so it shows the innermost three frames.
3878
3879@smallexample
3880@group
5d161b24 3881#0 m4_traceon (obs=0x24eb0, argc=1, argv=0x2b8c8)
c906108c
SS
3882 at builtin.c:993
3883#1 0x6e38 in expand_macro (sym=0x2b600) at macro.c:242
3884#2 0x6840 in expand_token (obs=0x0, t=177664, td=0xf7fffb08)
3885 at macro.c:71
3886(More stack frames follow...)
3887@end group
3888@end smallexample
3889
3890@noindent
3891The display for frame zero does not begin with a program counter
3892value, indicating that your program has stopped at the beginning of the
3893code for line @code{993} of @code{builtin.c}.
3894
b4e9345d
DJ
3895@kindex set backtrace-below-main
3896@kindex show backtrace-below-main
3897
95f90d25
DJ
3898Most programs have a standard entry point---a place where system libraries
3899and startup code transition into user code. For C this is @code{main}.
3900When @value{GDBN} finds the entry function in a backtrace it will terminate
3901the backtrace, to avoid tracing into highly system-specific (and generally
3902uninteresting) code. If you need to examine the startup code, then you can
3903change this behavior.
3904
3905@table @code
3906@item set backtrace-below-main off
3907Backtraces will stop when they encounter the user entry point. This is the
3908default.
3909
3910@item set backtrace-below-main
3911@itemx set backtrace-below-main on
3912Backtraces will continue past the user entry point to the top of the stack.
3913
3914@item show backtrace-below-main
3915Display the current backtrace policy.
3916@end table
3917
6d2ebf8b 3918@node Selection
c906108c
SS
3919@section Selecting a frame
3920
3921Most commands for examining the stack and other data in your program work on
3922whichever stack frame is selected at the moment. Here are the commands for
3923selecting a stack frame; all of them finish by printing a brief description
3924of the stack frame just selected.
3925
3926@table @code
d4f3574e 3927@kindex frame@r{, selecting}
41afff9a 3928@kindex f @r{(@code{frame})}
c906108c
SS
3929@item frame @var{n}
3930@itemx f @var{n}
3931Select frame number @var{n}. Recall that frame zero is the innermost
3932(currently executing) frame, frame one is the frame that called the
3933innermost one, and so on. The highest-numbered frame is the one for
3934@code{main}.
3935
3936@item frame @var{addr}
3937@itemx f @var{addr}
3938Select the frame at address @var{addr}. This is useful mainly if the
3939chaining of stack frames has been damaged by a bug, making it
3940impossible for @value{GDBN} to assign numbers properly to all frames. In
3941addition, this can be useful when your program has multiple stacks and
3942switches between them.
3943
c906108c
SS
3944On the SPARC architecture, @code{frame} needs two addresses to
3945select an arbitrary frame: a frame pointer and a stack pointer.
3946
3947On the MIPS and Alpha architecture, it needs two addresses: a stack
3948pointer and a program counter.
3949
3950On the 29k architecture, it needs three addresses: a register stack
3951pointer, a program counter, and a memory stack pointer.
3952@c note to future updaters: this is conditioned on a flag
3953@c SETUP_ARBITRARY_FRAME in the tm-*.h files. The above is up to date
3954@c as of 27 Jan 1994.
c906108c
SS
3955
3956@kindex up
3957@item up @var{n}
3958Move @var{n} frames up the stack. For positive numbers @var{n}, this
3959advances toward the outermost frame, to higher frame numbers, to frames
3960that have existed longer. @var{n} defaults to one.
3961
3962@kindex down
41afff9a 3963@kindex do @r{(@code{down})}
c906108c
SS
3964@item down @var{n}
3965Move @var{n} frames down the stack. For positive numbers @var{n}, this
3966advances toward the innermost frame, to lower frame numbers, to frames
3967that were created more recently. @var{n} defaults to one. You may
3968abbreviate @code{down} as @code{do}.
3969@end table
3970
3971All of these commands end by printing two lines of output describing the
3972frame. The first line shows the frame number, the function name, the
3973arguments, and the source file and line number of execution in that
5d161b24 3974frame. The second line shows the text of that source line.
c906108c
SS
3975
3976@need 1000
3977For example:
3978
3979@smallexample
3980@group
3981(@value{GDBP}) up
3982#1 0x22f0 in main (argc=1, argv=0xf7fffbf4, env=0xf7fffbfc)
3983 at env.c:10
398410 read_input_file (argv[i]);
3985@end group
3986@end smallexample
3987
3988After such a printout, the @code{list} command with no arguments
3989prints ten lines centered on the point of execution in the frame.
87885426
FN
3990You can also edit the program at the point of execution with your favorite
3991editing program by typing @code{edit}.
3992@xref{List, ,Printing source lines},
3993for details.
c906108c
SS
3994
3995@table @code
3996@kindex down-silently
3997@kindex up-silently
3998@item up-silently @var{n}
3999@itemx down-silently @var{n}
4000These two commands are variants of @code{up} and @code{down},
4001respectively; they differ in that they do their work silently, without
4002causing display of the new frame. They are intended primarily for use
4003in @value{GDBN} command scripts, where the output might be unnecessary and
4004distracting.
4005@end table
4006
6d2ebf8b 4007@node Frame Info
c906108c
SS
4008@section Information about a frame
4009
4010There are several other commands to print information about the selected
4011stack frame.
4012
4013@table @code
4014@item frame
4015@itemx f
4016When used without any argument, this command does not change which
4017frame is selected, but prints a brief description of the currently
4018selected stack frame. It can be abbreviated @code{f}. With an
4019argument, this command is used to select a stack frame.
4020@xref{Selection, ,Selecting a frame}.
4021
4022@kindex info frame
41afff9a 4023@kindex info f @r{(@code{info frame})}
c906108c
SS
4024@item info frame
4025@itemx info f
4026This command prints a verbose description of the selected stack frame,
4027including:
4028
4029@itemize @bullet
5d161b24
DB
4030@item
4031the address of the frame
c906108c
SS
4032@item
4033the address of the next frame down (called by this frame)
4034@item
4035the address of the next frame up (caller of this frame)
4036@item
4037the language in which the source code corresponding to this frame is written
4038@item
4039the address of the frame's arguments
4040@item
d4f3574e
SS
4041the address of the frame's local variables
4042@item
c906108c
SS
4043the program counter saved in it (the address of execution in the caller frame)
4044@item
4045which registers were saved in the frame
4046@end itemize
4047
4048@noindent The verbose description is useful when
4049something has gone wrong that has made the stack format fail to fit
4050the usual conventions.
4051
4052@item info frame @var{addr}
4053@itemx info f @var{addr}
4054Print a verbose description of the frame at address @var{addr}, without
4055selecting that frame. The selected frame remains unchanged by this
4056command. This requires the same kind of address (more than one for some
4057architectures) that you specify in the @code{frame} command.
4058@xref{Selection, ,Selecting a frame}.
4059
4060@kindex info args
4061@item info args
4062Print the arguments of the selected frame, each on a separate line.
4063
4064@item info locals
4065@kindex info locals
4066Print the local variables of the selected frame, each on a separate
4067line. These are all variables (declared either static or automatic)
4068accessible at the point of execution of the selected frame.
4069
c906108c 4070@kindex info catch
d4f3574e
SS
4071@cindex catch exceptions, list active handlers
4072@cindex exception handlers, how to list
c906108c
SS
4073@item info catch
4074Print a list of all the exception handlers that are active in the
4075current stack frame at the current point of execution. To see other
4076exception handlers, visit the associated frame (using the @code{up},
4077@code{down}, or @code{frame} commands); then type @code{info catch}.
4078@xref{Set Catchpoints, , Setting catchpoints}.
53a5351d 4079
c906108c
SS
4080@end table
4081
c906108c 4082
6d2ebf8b 4083@node Source
c906108c
SS
4084@chapter Examining Source Files
4085
4086@value{GDBN} can print parts of your program's source, since the debugging
4087information recorded in the program tells @value{GDBN} what source files were
4088used to build it. When your program stops, @value{GDBN} spontaneously prints
4089the line where it stopped. Likewise, when you select a stack frame
4090(@pxref{Selection, ,Selecting a frame}), @value{GDBN} prints the line where
4091execution in that frame has stopped. You can print other portions of
4092source files by explicit command.
4093
7a292a7a 4094If you use @value{GDBN} through its @sc{gnu} Emacs interface, you may
d4f3574e 4095prefer to use Emacs facilities to view source; see @ref{Emacs, ,Using
7a292a7a 4096@value{GDBN} under @sc{gnu} Emacs}.
c906108c
SS
4097
4098@menu
4099* List:: Printing source lines
87885426 4100* Edit:: Editing source files
c906108c 4101* Search:: Searching source files
c906108c
SS
4102* Source Path:: Specifying source directories
4103* Machine Code:: Source and machine code
4104@end menu
4105
6d2ebf8b 4106@node List
c906108c
SS
4107@section Printing source lines
4108
4109@kindex list
41afff9a 4110@kindex l @r{(@code{list})}
c906108c 4111To print lines from a source file, use the @code{list} command
5d161b24 4112(abbreviated @code{l}). By default, ten lines are printed.
c906108c
SS
4113There are several ways to specify what part of the file you want to print.
4114
4115Here are the forms of the @code{list} command most commonly used:
4116
4117@table @code
4118@item list @var{linenum}
4119Print lines centered around line number @var{linenum} in the
4120current source file.
4121
4122@item list @var{function}
4123Print lines centered around the beginning of function
4124@var{function}.
4125
4126@item list
4127Print more lines. If the last lines printed were printed with a
4128@code{list} command, this prints lines following the last lines
4129printed; however, if the last line printed was a solitary line printed
4130as part of displaying a stack frame (@pxref{Stack, ,Examining the
4131Stack}), this prints lines centered around that line.
4132
4133@item list -
4134Print lines just before the lines last printed.
4135@end table
4136
4137By default, @value{GDBN} prints ten source lines with any of these forms of
4138the @code{list} command. You can change this using @code{set listsize}:
4139
4140@table @code
4141@kindex set listsize
4142@item set listsize @var{count}
4143Make the @code{list} command display @var{count} source lines (unless
4144the @code{list} argument explicitly specifies some other number).
4145
4146@kindex show listsize
4147@item show listsize
4148Display the number of lines that @code{list} prints.
4149@end table
4150
4151Repeating a @code{list} command with @key{RET} discards the argument,
4152so it is equivalent to typing just @code{list}. This is more useful
4153than listing the same lines again. An exception is made for an
4154argument of @samp{-}; that argument is preserved in repetition so that
4155each repetition moves up in the source file.
4156
4157@cindex linespec
4158In general, the @code{list} command expects you to supply zero, one or two
4159@dfn{linespecs}. Linespecs specify source lines; there are several ways
d4f3574e 4160of writing them, but the effect is always to specify some source line.
c906108c
SS
4161Here is a complete description of the possible arguments for @code{list}:
4162
4163@table @code
4164@item list @var{linespec}
4165Print lines centered around the line specified by @var{linespec}.
4166
4167@item list @var{first},@var{last}
4168Print lines from @var{first} to @var{last}. Both arguments are
4169linespecs.
4170
4171@item list ,@var{last}
4172Print lines ending with @var{last}.
4173
4174@item list @var{first},
4175Print lines starting with @var{first}.
4176
4177@item list +
4178Print lines just after the lines last printed.
4179
4180@item list -
4181Print lines just before the lines last printed.
4182
4183@item list
4184As described in the preceding table.
4185@end table
4186
4187Here are the ways of specifying a single source line---all the
4188kinds of linespec.
4189
4190@table @code
4191@item @var{number}
4192Specifies line @var{number} of the current source file.
4193When a @code{list} command has two linespecs, this refers to
4194the same source file as the first linespec.
4195
4196@item +@var{offset}
4197Specifies the line @var{offset} lines after the last line printed.
4198When used as the second linespec in a @code{list} command that has
4199two, this specifies the line @var{offset} lines down from the
4200first linespec.
4201
4202@item -@var{offset}
4203Specifies the line @var{offset} lines before the last line printed.
4204
4205@item @var{filename}:@var{number}
4206Specifies line @var{number} in the source file @var{filename}.
4207
4208@item @var{function}
4209Specifies the line that begins the body of the function @var{function}.
4210For example: in C, this is the line with the open brace.
4211
4212@item @var{filename}:@var{function}
4213Specifies the line of the open-brace that begins the body of the
4214function @var{function} in the file @var{filename}. You only need the
4215file name with a function name to avoid ambiguity when there are
4216identically named functions in different source files.
4217
4218@item *@var{address}
4219Specifies the line containing the program address @var{address}.
4220@var{address} may be any expression.
4221@end table
4222
87885426
FN
4223@node Edit
4224@section Editing source files
4225@cindex editing source files
4226
4227@kindex edit
4228@kindex e @r{(@code{edit})}
4229To edit the lines in a source file, use the @code{edit} command.
4230The editing program of your choice
4231is invoked with the current line set to
4232the active line in the program.
4233Alternatively, there are several ways to specify what part of the file you
4234want to print if you want to see other parts of the program.
4235
4236Here are the forms of the @code{edit} command most commonly used:
4237
4238@table @code
4239@item edit
4240Edit the current source file at the active line number in the program.
4241
4242@item edit @var{number}
4243Edit the current source file with @var{number} as the active line number.
4244
4245@item edit @var{function}
4246Edit the file containing @var{function} at the beginning of its definition.
4247
4248@item edit @var{filename}:@var{number}
4249Specifies line @var{number} in the source file @var{filename}.
4250
4251@item edit @var{filename}:@var{function}
4252Specifies the line that begins the body of the
4253function @var{function} in the file @var{filename}. You only need the
4254file name with a function name to avoid ambiguity when there are
4255identically named functions in different source files.
4256
4257@item edit *@var{address}
4258Specifies the line containing the program address @var{address}.
4259@var{address} may be any expression.
4260@end table
4261
4262@subsection Choosing your editor
4263You can customize @value{GDBN} to use any editor you want
4264@footnote{
4265The only restriction is that your editor (say @code{ex}), recognizes the
4266following command-line syntax:
10998722 4267@smallexample
87885426 4268ex +@var{number} file
10998722
AC
4269@end smallexample
4270The optional numeric value +@var{number} designates the active line in
4271the file.}. By default, it is @value{EDITOR}, but you can change this
4272by setting the environment variable @code{EDITOR} before using
4273@value{GDBN}. For example, to configure @value{GDBN} to use the
4274@code{vi} editor, you could use these commands with the @code{sh} shell:
4275@smallexample
87885426
FN
4276EDITOR=/usr/bin/vi
4277export EDITOR
4278gdb ...
10998722 4279@end smallexample
87885426 4280or in the @code{csh} shell,
10998722 4281@smallexample
87885426
FN
4282setenv EDITOR /usr/bin/vi
4283gdb ...
10998722 4284@end smallexample
87885426 4285
6d2ebf8b 4286@node Search
c906108c
SS
4287@section Searching source files
4288@cindex searching
4289@kindex reverse-search
4290
4291There are two commands for searching through the current source file for a
4292regular expression.
4293
4294@table @code
4295@kindex search
4296@kindex forward-search
4297@item forward-search @var{regexp}
4298@itemx search @var{regexp}
4299The command @samp{forward-search @var{regexp}} checks each line,
4300starting with the one following the last line listed, for a match for
5d161b24 4301@var{regexp}. It lists the line that is found. You can use the
c906108c
SS
4302synonym @samp{search @var{regexp}} or abbreviate the command name as
4303@code{fo}.
4304
4305@item reverse-search @var{regexp}
4306The command @samp{reverse-search @var{regexp}} checks each line, starting
4307with the one before the last line listed and going backward, for a match
4308for @var{regexp}. It lists the line that is found. You can abbreviate
4309this command as @code{rev}.
4310@end table
c906108c 4311
6d2ebf8b 4312@node Source Path
c906108c
SS
4313@section Specifying source directories
4314
4315@cindex source path
4316@cindex directories for source files
4317Executable programs sometimes do not record the directories of the source
4318files from which they were compiled, just the names. Even when they do,
4319the directories could be moved between the compilation and your debugging
4320session. @value{GDBN} has a list of directories to search for source files;
4321this is called the @dfn{source path}. Each time @value{GDBN} wants a source file,
4322it tries all the directories in the list, in the order they are present
4323in the list, until it finds a file with the desired name. Note that
4324the executable search path is @emph{not} used for this purpose. Neither is
4325the current working directory, unless it happens to be in the source
4326path.
4327
4328If @value{GDBN} cannot find a source file in the source path, and the
4329object program records a directory, @value{GDBN} tries that directory
4330too. If the source path is empty, and there is no record of the
4331compilation directory, @value{GDBN} looks in the current directory as a
4332last resort.
4333
4334Whenever you reset or rearrange the source path, @value{GDBN} clears out
4335any information it has cached about where source files are found and where
4336each line is in the file.
4337
4338@kindex directory
4339@kindex dir
d4f3574e
SS
4340When you start @value{GDBN}, its source path includes only @samp{cdir}
4341and @samp{cwd}, in that order.
c906108c
SS
4342To add other directories, use the @code{directory} command.
4343
4344@table @code
4345@item directory @var{dirname} @dots{}
4346@item dir @var{dirname} @dots{}
4347Add directory @var{dirname} to the front of the source path. Several
d4f3574e
SS
4348directory names may be given to this command, separated by @samp{:}
4349(@samp{;} on MS-DOS and MS-Windows, where @samp{:} usually appears as
4350part of absolute file names) or
c906108c
SS
4351whitespace. You may specify a directory that is already in the source
4352path; this moves it forward, so @value{GDBN} searches it sooner.
4353
4354@kindex cdir
4355@kindex cwd
41afff9a
EZ
4356@vindex $cdir@r{, convenience variable}
4357@vindex $cwdr@r{, convenience variable}
c906108c
SS
4358@cindex compilation directory
4359@cindex current directory
4360@cindex working directory
4361@cindex directory, current
4362@cindex directory, compilation
4363You can use the string @samp{$cdir} to refer to the compilation
4364directory (if one is recorded), and @samp{$cwd} to refer to the current
4365working directory. @samp{$cwd} is not the same as @samp{.}---the former
4366tracks the current working directory as it changes during your @value{GDBN}
4367session, while the latter is immediately expanded to the current
4368directory at the time you add an entry to the source path.
4369
4370@item directory
4371Reset the source path to empty again. This requires confirmation.
4372
4373@c RET-repeat for @code{directory} is explicitly disabled, but since
4374@c repeating it would be a no-op we do not say that. (thanks to RMS)
4375
4376@item show directories
4377@kindex show directories
4378Print the source path: show which directories it contains.
4379@end table
4380
4381If your source path is cluttered with directories that are no longer of
4382interest, @value{GDBN} may sometimes cause confusion by finding the wrong
4383versions of source. You can correct the situation as follows:
4384
4385@enumerate
4386@item
4387Use @code{directory} with no argument to reset the source path to empty.
4388
4389@item
4390Use @code{directory} with suitable arguments to reinstall the
4391directories you want in the source path. You can add all the
4392directories in one command.
4393@end enumerate
4394
6d2ebf8b 4395@node Machine Code
c906108c
SS
4396@section Source and machine code
4397
4398You can use the command @code{info line} to map source lines to program
4399addresses (and vice versa), and the command @code{disassemble} to display
4400a range of addresses as machine instructions. When run under @sc{gnu} Emacs
d4f3574e 4401mode, the @code{info line} command causes the arrow to point to the
5d161b24 4402line specified. Also, @code{info line} prints addresses in symbolic form as
c906108c
SS
4403well as hex.
4404
4405@table @code
4406@kindex info line
4407@item info line @var{linespec}
4408Print the starting and ending addresses of the compiled code for
4409source line @var{linespec}. You can specify source lines in any of
4410the ways understood by the @code{list} command (@pxref{List, ,Printing
4411source lines}).
4412@end table
4413
4414For example, we can use @code{info line} to discover the location of
4415the object code for the first line of function
4416@code{m4_changequote}:
4417
d4f3574e
SS
4418@c FIXME: I think this example should also show the addresses in
4419@c symbolic form, as they usually would be displayed.
c906108c 4420@smallexample
96a2c332 4421(@value{GDBP}) info line m4_changequote
c906108c
SS
4422Line 895 of "builtin.c" starts at pc 0x634c and ends at 0x6350.
4423@end smallexample
4424
4425@noindent
4426We can also inquire (using @code{*@var{addr}} as the form for
4427@var{linespec}) what source line covers a particular address:
4428@smallexample
4429(@value{GDBP}) info line *0x63ff
4430Line 926 of "builtin.c" starts at pc 0x63e4 and ends at 0x6404.
4431@end smallexample
4432
4433@cindex @code{$_} and @code{info line}
41afff9a 4434@kindex x@r{(examine), and} info line
c906108c
SS
4435After @code{info line}, the default address for the @code{x} command
4436is changed to the starting address of the line, so that @samp{x/i} is
4437sufficient to begin examining the machine code (@pxref{Memory,
4438,Examining memory}). Also, this address is saved as the value of the
4439convenience variable @code{$_} (@pxref{Convenience Vars, ,Convenience
4440variables}).
4441
4442@table @code
4443@kindex disassemble
4444@cindex assembly instructions
4445@cindex instructions, assembly
4446@cindex machine instructions
4447@cindex listing machine instructions
4448@item disassemble
4449This specialized command dumps a range of memory as machine
4450instructions. The default memory range is the function surrounding the
4451program counter of the selected frame. A single argument to this
4452command is a program counter value; @value{GDBN} dumps the function
4453surrounding this value. Two arguments specify a range of addresses
4454(first inclusive, second exclusive) to dump.
4455@end table
4456
c906108c
SS
4457The following example shows the disassembly of a range of addresses of
4458HP PA-RISC 2.0 code:
4459
4460@smallexample
4461(@value{GDBP}) disas 0x32c4 0x32e4
4462Dump of assembler code from 0x32c4 to 0x32e4:
44630x32c4 <main+204>: addil 0,dp
44640x32c8 <main+208>: ldw 0x22c(sr0,r1),r26
44650x32cc <main+212>: ldil 0x3000,r31
44660x32d0 <main+216>: ble 0x3f8(sr4,r31)
44670x32d4 <main+220>: ldo 0(r31),rp
44680x32d8 <main+224>: addil -0x800,dp
44690x32dc <main+228>: ldo 0x588(r1),r26
44700x32e0 <main+232>: ldil 0x3000,r31
4471End of assembler dump.
4472@end smallexample
c906108c
SS
4473
4474Some architectures have more than one commonly-used set of instruction
4475mnemonics or other syntax.
4476
4477@table @code
d4f3574e 4478@kindex set disassembly-flavor
c906108c
SS
4479@cindex assembly instructions
4480@cindex instructions, assembly
4481@cindex machine instructions
4482@cindex listing machine instructions
d4f3574e
SS
4483@cindex Intel disassembly flavor
4484@cindex AT&T disassembly flavor
4485@item set disassembly-flavor @var{instruction-set}
c906108c
SS
4486Select the instruction set to use when disassembling the
4487program via the @code{disassemble} or @code{x/i} commands.
4488
4489Currently this command is only defined for the Intel x86 family. You
d4f3574e
SS
4490can set @var{instruction-set} to either @code{intel} or @code{att}.
4491The default is @code{att}, the AT&T flavor used by default by Unix
4492assemblers for x86-based targets.
c906108c
SS
4493@end table
4494
4495
6d2ebf8b 4496@node Data
c906108c
SS
4497@chapter Examining Data
4498
4499@cindex printing data
4500@cindex examining data
4501@kindex print
4502@kindex inspect
4503@c "inspect" is not quite a synonym if you are using Epoch, which we do not
4504@c document because it is nonstandard... Under Epoch it displays in a
4505@c different window or something like that.
4506The usual way to examine data in your program is with the @code{print}
7a292a7a
SS
4507command (abbreviated @code{p}), or its synonym @code{inspect}. It
4508evaluates and prints the value of an expression of the language your
4509program is written in (@pxref{Languages, ,Using @value{GDBN} with
4510Different Languages}).
c906108c
SS
4511
4512@table @code
d4f3574e
SS
4513@item print @var{expr}
4514@itemx print /@var{f} @var{expr}
4515@var{expr} is an expression (in the source language). By default the
4516value of @var{expr} is printed in a format appropriate to its data type;
c906108c 4517you can choose a different format by specifying @samp{/@var{f}}, where
d4f3574e 4518@var{f} is a letter specifying the format; see @ref{Output Formats,,Output
c906108c
SS
4519formats}.
4520
4521@item print
4522@itemx print /@var{f}
d4f3574e 4523If you omit @var{expr}, @value{GDBN} displays the last value again (from the
c906108c
SS
4524@dfn{value history}; @pxref{Value History, ,Value history}). This allows you to
4525conveniently inspect the same value in an alternative format.
4526@end table
4527
4528A more low-level way of examining data is with the @code{x} command.
4529It examines data in memory at a specified address and prints it in a
4530specified format. @xref{Memory, ,Examining memory}.
4531
7a292a7a 4532If you are interested in information about types, or about how the
d4f3574e
SS
4533fields of a struct or a class are declared, use the @code{ptype @var{exp}}
4534command rather than @code{print}. @xref{Symbols, ,Examining the Symbol
7a292a7a 4535Table}.
c906108c
SS
4536
4537@menu
4538* Expressions:: Expressions
4539* Variables:: Program variables
4540* Arrays:: Artificial arrays
4541* Output Formats:: Output formats
4542* Memory:: Examining memory
4543* Auto Display:: Automatic display
4544* Print Settings:: Print settings
4545* Value History:: Value history
4546* Convenience Vars:: Convenience variables
4547* Registers:: Registers
c906108c 4548* Floating Point Hardware:: Floating point hardware
53c69bd7 4549* Vector Unit:: Vector Unit
29e57380 4550* Memory Region Attributes:: Memory region attributes
16d9dec6 4551* Dump/Restore Files:: Copy between memory and a file
a0eb71c5
KB
4552* Character Sets:: Debugging programs that use a different
4553 character set than GDB does
c906108c
SS
4554@end menu
4555
6d2ebf8b 4556@node Expressions
c906108c
SS
4557@section Expressions
4558
4559@cindex expressions
4560@code{print} and many other @value{GDBN} commands accept an expression and
4561compute its value. Any kind of constant, variable or operator defined
4562by the programming language you are using is valid in an expression in
e2e0bcd1
JB
4563@value{GDBN}. This includes conditional expressions, function calls,
4564casts, and string constants. It also includes preprocessor macros, if
4565you compiled your program to include this information; see
4566@ref{Compilation}.
c906108c 4567
d4f3574e
SS
4568@value{GDBN} supports array constants in expressions input by
4569the user. The syntax is @{@var{element}, @var{element}@dots{}@}. For example,
5d161b24 4570you can use the command @code{print @{1, 2, 3@}} to build up an array in
d4f3574e 4571memory that is @code{malloc}ed in the target program.
c906108c 4572
c906108c
SS
4573Because C is so widespread, most of the expressions shown in examples in
4574this manual are in C. @xref{Languages, , Using @value{GDBN} with Different
4575Languages}, for information on how to use expressions in other
4576languages.
4577
4578In this section, we discuss operators that you can use in @value{GDBN}
4579expressions regardless of your programming language.
4580
4581Casts are supported in all languages, not just in C, because it is so
4582useful to cast a number into a pointer in order to examine a structure
4583at that address in memory.
4584@c FIXME: casts supported---Mod2 true?
c906108c
SS
4585
4586@value{GDBN} supports these operators, in addition to those common
4587to programming languages:
4588
4589@table @code
4590@item @@
4591@samp{@@} is a binary operator for treating parts of memory as arrays.
4592@xref{Arrays, ,Artificial arrays}, for more information.
4593
4594@item ::
4595@samp{::} allows you to specify a variable in terms of the file or
4596function where it is defined. @xref{Variables, ,Program variables}.
4597
4598@cindex @{@var{type}@}
4599@cindex type casting memory
4600@cindex memory, viewing as typed object
4601@cindex casts, to view memory
4602@item @{@var{type}@} @var{addr}
4603Refers to an object of type @var{type} stored at address @var{addr} in
4604memory. @var{addr} may be any expression whose value is an integer or
4605pointer (but parentheses are required around binary operators, just as in
4606a cast). This construct is allowed regardless of what kind of data is
4607normally supposed to reside at @var{addr}.
4608@end table
4609
6d2ebf8b 4610@node Variables
c906108c
SS
4611@section Program variables
4612
4613The most common kind of expression to use is the name of a variable
4614in your program.
4615
4616Variables in expressions are understood in the selected stack frame
4617(@pxref{Selection, ,Selecting a frame}); they must be either:
4618
4619@itemize @bullet
4620@item
4621global (or file-static)
4622@end itemize
4623
5d161b24 4624@noindent or
c906108c
SS
4625
4626@itemize @bullet
4627@item
4628visible according to the scope rules of the
4629programming language from the point of execution in that frame
5d161b24 4630@end itemize
c906108c
SS
4631
4632@noindent This means that in the function
4633
474c8240 4634@smallexample
c906108c
SS
4635foo (a)
4636 int a;
4637@{
4638 bar (a);
4639 @{
4640 int b = test ();
4641 bar (b);
4642 @}
4643@}
474c8240 4644@end smallexample
c906108c
SS
4645
4646@noindent
4647you can examine and use the variable @code{a} whenever your program is
4648executing within the function @code{foo}, but you can only use or
4649examine the variable @code{b} while your program is executing inside
4650the block where @code{b} is declared.
4651
4652@cindex variable name conflict
4653There is an exception: you can refer to a variable or function whose
4654scope is a single source file even if the current execution point is not
4655in this file. But it is possible to have more than one such variable or
4656function with the same name (in different source files). If that
4657happens, referring to that name has unpredictable effects. If you wish,
4658you can specify a static variable in a particular function or file,
4659using the colon-colon notation:
4660
d4f3574e 4661@cindex colon-colon, context for variables/functions
c906108c
SS
4662@iftex
4663@c info cannot cope with a :: index entry, but why deprive hard copy readers?
41afff9a 4664@cindex @code{::}, context for variables/functions
c906108c 4665@end iftex
474c8240 4666@smallexample
c906108c
SS
4667@var{file}::@var{variable}
4668@var{function}::@var{variable}
474c8240 4669@end smallexample
c906108c
SS
4670
4671@noindent
4672Here @var{file} or @var{function} is the name of the context for the
4673static @var{variable}. In the case of file names, you can use quotes to
4674make sure @value{GDBN} parses the file name as a single word---for example,
4675to print a global value of @code{x} defined in @file{f2.c}:
4676
474c8240 4677@smallexample
c906108c 4678(@value{GDBP}) p 'f2.c'::x
474c8240 4679@end smallexample
c906108c 4680
b37052ae 4681@cindex C@t{++} scope resolution
c906108c 4682This use of @samp{::} is very rarely in conflict with the very similar
b37052ae 4683use of the same notation in C@t{++}. @value{GDBN} also supports use of the C@t{++}
c906108c
SS
4684scope resolution operator in @value{GDBN} expressions.
4685@c FIXME: Um, so what happens in one of those rare cases where it's in
4686@c conflict?? --mew
c906108c
SS
4687
4688@cindex wrong values
4689@cindex variable values, wrong
4690@quotation
4691@emph{Warning:} Occasionally, a local variable may appear to have the
4692wrong value at certain points in a function---just after entry to a new
4693scope, and just before exit.
4694@end quotation
4695You may see this problem when you are stepping by machine instructions.
4696This is because, on most machines, it takes more than one instruction to
4697set up a stack frame (including local variable definitions); if you are
4698stepping by machine instructions, variables may appear to have the wrong
4699values until the stack frame is completely built. On exit, it usually
4700also takes more than one machine instruction to destroy a stack frame;
4701after you begin stepping through that group of instructions, local
4702variable definitions may be gone.
4703
4704This may also happen when the compiler does significant optimizations.
4705To be sure of always seeing accurate values, turn off all optimization
4706when compiling.
4707
d4f3574e
SS
4708@cindex ``No symbol "foo" in current context''
4709Another possible effect of compiler optimizations is to optimize
4710unused variables out of existence, or assign variables to registers (as
4711opposed to memory addresses). Depending on the support for such cases
4712offered by the debug info format used by the compiler, @value{GDBN}
4713might not be able to display values for such local variables. If that
4714happens, @value{GDBN} will print a message like this:
4715
474c8240 4716@smallexample
d4f3574e 4717No symbol "foo" in current context.
474c8240 4718@end smallexample
d4f3574e
SS
4719
4720To solve such problems, either recompile without optimizations, or use a
4721different debug info format, if the compiler supports several such
0179ffac
DC
4722formats. For example, @value{NGCC}, the @sc{gnu} C/C@t{++} compiler
4723usually supports the @option{-gstabs+} option. @option{-gstabs+}
4724produces debug info in a format that is superior to formats such as
4725COFF. You may be able to use DWARF 2 (@option{-gdwarf-2}), which is also
4726an effective form for debug info. @xref{Debugging Options,,Options
4727for Debugging Your Program or @sc{gnu} CC, gcc.info, Using @sc{gnu} CC}.
d4f3574e
SS
4728
4729
6d2ebf8b 4730@node Arrays
c906108c
SS
4731@section Artificial arrays
4732
4733@cindex artificial array
41afff9a 4734@kindex @@@r{, referencing memory as an array}
c906108c
SS
4735It is often useful to print out several successive objects of the
4736same type in memory; a section of an array, or an array of
4737dynamically determined size for which only a pointer exists in the
4738program.
4739
4740You can do this by referring to a contiguous span of memory as an
4741@dfn{artificial array}, using the binary operator @samp{@@}. The left
4742operand of @samp{@@} should be the first element of the desired array
4743and be an individual object. The right operand should be the desired length
4744of the array. The result is an array value whose elements are all of
4745the type of the left argument. The first element is actually the left
4746argument; the second element comes from bytes of memory immediately
4747following those that hold the first element, and so on. Here is an
4748example. If a program says
4749
474c8240 4750@smallexample
c906108c 4751int *array = (int *) malloc (len * sizeof (int));
474c8240 4752@end smallexample
c906108c
SS
4753
4754@noindent
4755you can print the contents of @code{array} with
4756
474c8240 4757@smallexample
c906108c 4758p *array@@len
474c8240 4759@end smallexample
c906108c
SS
4760
4761The left operand of @samp{@@} must reside in memory. Array values made
4762with @samp{@@} in this way behave just like other arrays in terms of
4763subscripting, and are coerced to pointers when used in expressions.
4764Artificial arrays most often appear in expressions via the value history
4765(@pxref{Value History, ,Value history}), after printing one out.
4766
4767Another way to create an artificial array is to use a cast.
4768This re-interprets a value as if it were an array.
4769The value need not be in memory:
474c8240 4770@smallexample
c906108c
SS
4771(@value{GDBP}) p/x (short[2])0x12345678
4772$1 = @{0x1234, 0x5678@}
474c8240 4773@end smallexample
c906108c
SS
4774
4775As a convenience, if you leave the array length out (as in
c3f6f71d 4776@samp{(@var{type}[])@var{value}}) @value{GDBN} calculates the size to fill
c906108c 4777the value (as @samp{sizeof(@var{value})/sizeof(@var{type})}:
474c8240 4778@smallexample
c906108c
SS
4779(@value{GDBP}) p/x (short[])0x12345678
4780$2 = @{0x1234, 0x5678@}
474c8240 4781@end smallexample
c906108c
SS
4782
4783Sometimes the artificial array mechanism is not quite enough; in
4784moderately complex data structures, the elements of interest may not
4785actually be adjacent---for example, if you are interested in the values
4786of pointers in an array. One useful work-around in this situation is
4787to use a convenience variable (@pxref{Convenience Vars, ,Convenience
4788variables}) as a counter in an expression that prints the first
4789interesting value, and then repeat that expression via @key{RET}. For
4790instance, suppose you have an array @code{dtab} of pointers to
4791structures, and you are interested in the values of a field @code{fv}
4792in each structure. Here is an example of what you might type:
4793
474c8240 4794@smallexample
c906108c
SS
4795set $i = 0
4796p dtab[$i++]->fv
4797@key{RET}
4798@key{RET}
4799@dots{}
474c8240 4800@end smallexample
c906108c 4801
6d2ebf8b 4802@node Output Formats
c906108c
SS
4803@section Output formats
4804
4805@cindex formatted output
4806@cindex output formats
4807By default, @value{GDBN} prints a value according to its data type. Sometimes
4808this is not what you want. For example, you might want to print a number
4809in hex, or a pointer in decimal. Or you might want to view data in memory
4810at a certain address as a character string or as an instruction. To do
4811these things, specify an @dfn{output format} when you print a value.
4812
4813The simplest use of output formats is to say how to print a value
4814already computed. This is done by starting the arguments of the
4815@code{print} command with a slash and a format letter. The format
4816letters supported are:
4817
4818@table @code
4819@item x
4820Regard the bits of the value as an integer, and print the integer in
4821hexadecimal.
4822
4823@item d
4824Print as integer in signed decimal.
4825
4826@item u
4827Print as integer in unsigned decimal.
4828
4829@item o
4830Print as integer in octal.
4831
4832@item t
4833Print as integer in binary. The letter @samp{t} stands for ``two''.
4834@footnote{@samp{b} cannot be used because these format letters are also
4835used with the @code{x} command, where @samp{b} stands for ``byte'';
d4f3574e 4836see @ref{Memory,,Examining memory}.}
c906108c
SS
4837
4838@item a
4839@cindex unknown address, locating
3d67e040 4840@cindex locate address
c906108c
SS
4841Print as an address, both absolute in hexadecimal and as an offset from
4842the nearest preceding symbol. You can use this format used to discover
4843where (in what function) an unknown address is located:
4844
474c8240 4845@smallexample
c906108c
SS
4846(@value{GDBP}) p/a 0x54320
4847$3 = 0x54320 <_initialize_vx+396>
474c8240 4848@end smallexample
c906108c 4849
3d67e040
EZ
4850@noindent
4851The command @code{info symbol 0x54320} yields similar results.
4852@xref{Symbols, info symbol}.
4853
c906108c
SS
4854@item c
4855Regard as an integer and print it as a character constant.
4856
4857@item f
4858Regard the bits of the value as a floating point number and print
4859using typical floating point syntax.
4860@end table
4861
4862For example, to print the program counter in hex (@pxref{Registers}), type
4863
474c8240 4864@smallexample
c906108c 4865p/x $pc
474c8240 4866@end smallexample
c906108c
SS
4867
4868@noindent
4869Note that no space is required before the slash; this is because command
4870names in @value{GDBN} cannot contain a slash.
4871
4872To reprint the last value in the value history with a different format,
4873you can use the @code{print} command with just a format and no
4874expression. For example, @samp{p/x} reprints the last value in hex.
4875
6d2ebf8b 4876@node Memory
c906108c
SS
4877@section Examining memory
4878
4879You can use the command @code{x} (for ``examine'') to examine memory in
4880any of several formats, independently of your program's data types.
4881
4882@cindex examining memory
4883@table @code
41afff9a 4884@kindex x @r{(examine memory)}
c906108c
SS
4885@item x/@var{nfu} @var{addr}
4886@itemx x @var{addr}
4887@itemx x
4888Use the @code{x} command to examine memory.
4889@end table
4890
4891@var{n}, @var{f}, and @var{u} are all optional parameters that specify how
4892much memory to display and how to format it; @var{addr} is an
4893expression giving the address where you want to start displaying memory.
4894If you use defaults for @var{nfu}, you need not type the slash @samp{/}.
4895Several commands set convenient defaults for @var{addr}.
4896
4897@table @r
4898@item @var{n}, the repeat count
4899The repeat count is a decimal integer; the default is 1. It specifies
4900how much memory (counting by units @var{u}) to display.
4901@c This really is **decimal**; unaffected by 'set radix' as of GDB
4902@c 4.1.2.
4903
4904@item @var{f}, the display format
4905The display format is one of the formats used by @code{print},
4906@samp{s} (null-terminated string), or @samp{i} (machine instruction).
4907The default is @samp{x} (hexadecimal) initially.
4908The default changes each time you use either @code{x} or @code{print}.
4909
4910@item @var{u}, the unit size
4911The unit size is any of
4912
4913@table @code
4914@item b
4915Bytes.
4916@item h
4917Halfwords (two bytes).
4918@item w
4919Words (four bytes). This is the initial default.
4920@item g
4921Giant words (eight bytes).
4922@end table
4923
4924Each time you specify a unit size with @code{x}, that size becomes the
4925default unit the next time you use @code{x}. (For the @samp{s} and
4926@samp{i} formats, the unit size is ignored and is normally not written.)
4927
4928@item @var{addr}, starting display address
4929@var{addr} is the address where you want @value{GDBN} to begin displaying
4930memory. The expression need not have a pointer value (though it may);
4931it is always interpreted as an integer address of a byte of memory.
4932@xref{Expressions, ,Expressions}, for more information on expressions. The default for
4933@var{addr} is usually just after the last address examined---but several
4934other commands also set the default address: @code{info breakpoints} (to
4935the address of the last breakpoint listed), @code{info line} (to the
4936starting address of a line), and @code{print} (if you use it to display
4937a value from memory).
4938@end table
4939
4940For example, @samp{x/3uh 0x54320} is a request to display three halfwords
4941(@code{h}) of memory, formatted as unsigned decimal integers (@samp{u}),
4942starting at address @code{0x54320}. @samp{x/4xw $sp} prints the four
4943words (@samp{w}) of memory above the stack pointer (here, @samp{$sp};
d4f3574e 4944@pxref{Registers, ,Registers}) in hexadecimal (@samp{x}).
c906108c
SS
4945
4946Since the letters indicating unit sizes are all distinct from the
4947letters specifying output formats, you do not have to remember whether
4948unit size or format comes first; either order works. The output
4949specifications @samp{4xw} and @samp{4wx} mean exactly the same thing.
4950(However, the count @var{n} must come first; @samp{wx4} does not work.)
4951
4952Even though the unit size @var{u} is ignored for the formats @samp{s}
4953and @samp{i}, you might still want to use a count @var{n}; for example,
4954@samp{3i} specifies that you want to see three machine instructions,
4955including any operands. The command @code{disassemble} gives an
d4f3574e 4956alternative way of inspecting machine instructions; see @ref{Machine
c906108c
SS
4957Code,,Source and machine code}.
4958
4959All the defaults for the arguments to @code{x} are designed to make it
4960easy to continue scanning memory with minimal specifications each time
4961you use @code{x}. For example, after you have inspected three machine
4962instructions with @samp{x/3i @var{addr}}, you can inspect the next seven
4963with just @samp{x/7}. If you use @key{RET} to repeat the @code{x} command,
4964the repeat count @var{n} is used again; the other arguments default as
4965for successive uses of @code{x}.
4966
4967@cindex @code{$_}, @code{$__}, and value history
4968The addresses and contents printed by the @code{x} command are not saved
4969in the value history because there is often too much of them and they
4970would get in the way. Instead, @value{GDBN} makes these values available for
4971subsequent use in expressions as values of the convenience variables
4972@code{$_} and @code{$__}. After an @code{x} command, the last address
4973examined is available for use in expressions in the convenience variable
4974@code{$_}. The contents of that address, as examined, are available in
4975the convenience variable @code{$__}.
4976
4977If the @code{x} command has a repeat count, the address and contents saved
4978are from the last memory unit printed; this is not the same as the last
4979address printed if several units were printed on the last line of output.
4980
6d2ebf8b 4981@node Auto Display
c906108c
SS
4982@section Automatic display
4983@cindex automatic display
4984@cindex display of expressions
4985
4986If you find that you want to print the value of an expression frequently
4987(to see how it changes), you might want to add it to the @dfn{automatic
4988display list} so that @value{GDBN} prints its value each time your program stops.
4989Each expression added to the list is given a number to identify it;
4990to remove an expression from the list, you specify that number.
4991The automatic display looks like this:
4992
474c8240 4993@smallexample
c906108c
SS
49942: foo = 38
49953: bar[5] = (struct hack *) 0x3804
474c8240 4996@end smallexample
c906108c
SS
4997
4998@noindent
4999This display shows item numbers, expressions and their current values. As with
5000displays you request manually using @code{x} or @code{print}, you can
5001specify the output format you prefer; in fact, @code{display} decides
5002whether to use @code{print} or @code{x} depending on how elaborate your
5003format specification is---it uses @code{x} if you specify a unit size,
5004or one of the two formats (@samp{i} and @samp{s}) that are only
5005supported by @code{x}; otherwise it uses @code{print}.
5006
5007@table @code
5008@kindex display
d4f3574e
SS
5009@item display @var{expr}
5010Add the expression @var{expr} to the list of expressions to display
c906108c
SS
5011each time your program stops. @xref{Expressions, ,Expressions}.
5012
5013@code{display} does not repeat if you press @key{RET} again after using it.
5014
d4f3574e 5015@item display/@var{fmt} @var{expr}
c906108c 5016For @var{fmt} specifying only a display format and not a size or
d4f3574e 5017count, add the expression @var{expr} to the auto-display list but
c906108c
SS
5018arrange to display it each time in the specified format @var{fmt}.
5019@xref{Output Formats,,Output formats}.
5020
5021@item display/@var{fmt} @var{addr}
5022For @var{fmt} @samp{i} or @samp{s}, or including a unit-size or a
5023number of units, add the expression @var{addr} as a memory address to
5024be examined each time your program stops. Examining means in effect
5025doing @samp{x/@var{fmt} @var{addr}}. @xref{Memory, ,Examining memory}.
5026@end table
5027
5028For example, @samp{display/i $pc} can be helpful, to see the machine
5029instruction about to be executed each time execution stops (@samp{$pc}
d4f3574e 5030is a common name for the program counter; @pxref{Registers, ,Registers}).
c906108c
SS
5031
5032@table @code
5033@kindex delete display
5034@kindex undisplay
5035@item undisplay @var{dnums}@dots{}
5036@itemx delete display @var{dnums}@dots{}
5037Remove item numbers @var{dnums} from the list of expressions to display.
5038
5039@code{undisplay} does not repeat if you press @key{RET} after using it.
5040(Otherwise you would just get the error @samp{No display number @dots{}}.)
5041
5042@kindex disable display
5043@item disable display @var{dnums}@dots{}
5044Disable the display of item numbers @var{dnums}. A disabled display
5045item is not printed automatically, but is not forgotten. It may be
5046enabled again later.
5047
5048@kindex enable display
5049@item enable display @var{dnums}@dots{}
5050Enable display of item numbers @var{dnums}. It becomes effective once
5051again in auto display of its expression, until you specify otherwise.
5052
5053@item display
5054Display the current values of the expressions on the list, just as is
5055done when your program stops.
5056
5057@kindex info display
5058@item info display
5059Print the list of expressions previously set up to display
5060automatically, each one with its item number, but without showing the
5061values. This includes disabled expressions, which are marked as such.
5062It also includes expressions which would not be displayed right now
5063because they refer to automatic variables not currently available.
5064@end table
5065
5066If a display expression refers to local variables, then it does not make
5067sense outside the lexical context for which it was set up. Such an
5068expression is disabled when execution enters a context where one of its
5069variables is not defined. For example, if you give the command
5070@code{display last_char} while inside a function with an argument
5071@code{last_char}, @value{GDBN} displays this argument while your program
5072continues to stop inside that function. When it stops elsewhere---where
5073there is no variable @code{last_char}---the display is disabled
5074automatically. The next time your program stops where @code{last_char}
5075is meaningful, you can enable the display expression once again.
5076
6d2ebf8b 5077@node Print Settings
c906108c
SS
5078@section Print settings
5079
5080@cindex format options
5081@cindex print settings
5082@value{GDBN} provides the following ways to control how arrays, structures,
5083and symbols are printed.
5084
5085@noindent
5086These settings are useful for debugging programs in any language:
5087
5088@table @code
5089@kindex set print address
5090@item set print address
5091@itemx set print address on
5092@value{GDBN} prints memory addresses showing the location of stack
5093traces, structure values, pointer values, breakpoints, and so forth,
5094even when it also displays the contents of those addresses. The default
5095is @code{on}. For example, this is what a stack frame display looks like with
5096@code{set print address on}:
5097
5098@smallexample
5099@group
5100(@value{GDBP}) f
5101#0 set_quotes (lq=0x34c78 "<<", rq=0x34c88 ">>")
5102 at input.c:530
5103530 if (lquote != def_lquote)
5104@end group
5105@end smallexample
5106
5107@item set print address off
5108Do not print addresses when displaying their contents. For example,
5109this is the same stack frame displayed with @code{set print address off}:
5110
5111@smallexample
5112@group
5113(@value{GDBP}) set print addr off
5114(@value{GDBP}) f
5115#0 set_quotes (lq="<<", rq=">>") at input.c:530
5116530 if (lquote != def_lquote)
5117@end group
5118@end smallexample
5119
5120You can use @samp{set print address off} to eliminate all machine
5121dependent displays from the @value{GDBN} interface. For example, with
5122@code{print address off}, you should get the same text for backtraces on
5123all machines---whether or not they involve pointer arguments.
5124
5125@kindex show print address
5126@item show print address
5127Show whether or not addresses are to be printed.
5128@end table
5129
5130When @value{GDBN} prints a symbolic address, it normally prints the
5131closest earlier symbol plus an offset. If that symbol does not uniquely
5132identify the address (for example, it is a name whose scope is a single
5133source file), you may need to clarify. One way to do this is with
5134@code{info line}, for example @samp{info line *0x4537}. Alternately,
5135you can set @value{GDBN} to print the source file and line number when
5136it prints a symbolic address:
5137
5138@table @code
5139@kindex set print symbol-filename
5140@item set print symbol-filename on
5141Tell @value{GDBN} to print the source file name and line number of a
5142symbol in the symbolic form of an address.
5143
5144@item set print symbol-filename off
5145Do not print source file name and line number of a symbol. This is the
5146default.
5147
5148@kindex show print symbol-filename
5149@item show print symbol-filename
5150Show whether or not @value{GDBN} will print the source file name and
5151line number of a symbol in the symbolic form of an address.
5152@end table
5153
5154Another situation where it is helpful to show symbol filenames and line
5155numbers is when disassembling code; @value{GDBN} shows you the line
5156number and source file that corresponds to each instruction.
5157
5158Also, you may wish to see the symbolic form only if the address being
5159printed is reasonably close to the closest earlier symbol:
5160
5161@table @code
5162@kindex set print max-symbolic-offset
5163@item set print max-symbolic-offset @var{max-offset}
5164Tell @value{GDBN} to only display the symbolic form of an address if the
5165offset between the closest earlier symbol and the address is less than
5d161b24 5166@var{max-offset}. The default is 0, which tells @value{GDBN}
c906108c
SS
5167to always print the symbolic form of an address if any symbol precedes it.
5168
5169@kindex show print max-symbolic-offset
5170@item show print max-symbolic-offset
5171Ask how large the maximum offset is that @value{GDBN} prints in a
5172symbolic address.
5173@end table
5174
5175@cindex wild pointer, interpreting
5176@cindex pointer, finding referent
5177If you have a pointer and you are not sure where it points, try
5178@samp{set print symbol-filename on}. Then you can determine the name
5179and source file location of the variable where it points, using
5180@samp{p/a @var{pointer}}. This interprets the address in symbolic form.
5181For example, here @value{GDBN} shows that a variable @code{ptt} points
5182at another variable @code{t}, defined in @file{hi2.c}:
5183
474c8240 5184@smallexample
c906108c
SS
5185(@value{GDBP}) set print symbol-filename on
5186(@value{GDBP}) p/a ptt
5187$4 = 0xe008 <t in hi2.c>
474c8240 5188@end smallexample
c906108c
SS
5189
5190@quotation
5191@emph{Warning:} For pointers that point to a local variable, @samp{p/a}
5192does not show the symbol name and filename of the referent, even with
5193the appropriate @code{set print} options turned on.
5194@end quotation
5195
5196Other settings control how different kinds of objects are printed:
5197
5198@table @code
5199@kindex set print array
5200@item set print array
5201@itemx set print array on
5202Pretty print arrays. This format is more convenient to read,
5203but uses more space. The default is off.
5204
5205@item set print array off
5206Return to compressed format for arrays.
5207
5208@kindex show print array
5209@item show print array
5210Show whether compressed or pretty format is selected for displaying
5211arrays.
5212
5213@kindex set print elements
5214@item set print elements @var{number-of-elements}
5215Set a limit on how many elements of an array @value{GDBN} will print.
5216If @value{GDBN} is printing a large array, it stops printing after it has
5217printed the number of elements set by the @code{set print elements} command.
5218This limit also applies to the display of strings.
d4f3574e 5219When @value{GDBN} starts, this limit is set to 200.
c906108c
SS
5220Setting @var{number-of-elements} to zero means that the printing is unlimited.
5221
5222@kindex show print elements
5223@item show print elements
5224Display the number of elements of a large array that @value{GDBN} will print.
5225If the number is 0, then the printing is unlimited.
5226
5227@kindex set print null-stop
5228@item set print null-stop
5229Cause @value{GDBN} to stop printing the characters of an array when the first
d4f3574e 5230@sc{null} is encountered. This is useful when large arrays actually
c906108c 5231contain only short strings.
d4f3574e 5232The default is off.
c906108c
SS
5233
5234@kindex set print pretty
5235@item set print pretty on
5d161b24 5236Cause @value{GDBN} to print structures in an indented format with one member
c906108c
SS
5237per line, like this:
5238
5239@smallexample
5240@group
5241$1 = @{
5242 next = 0x0,
5243 flags = @{
5244 sweet = 1,
5245 sour = 1
5246 @},
5247 meat = 0x54 "Pork"
5248@}
5249@end group
5250@end smallexample
5251
5252@item set print pretty off
5253Cause @value{GDBN} to print structures in a compact format, like this:
5254
5255@smallexample
5256@group
5257$1 = @{next = 0x0, flags = @{sweet = 1, sour = 1@}, \
5258meat = 0x54 "Pork"@}
5259@end group
5260@end smallexample
5261
5262@noindent
5263This is the default format.
5264
5265@kindex show print pretty
5266@item show print pretty
5267Show which format @value{GDBN} is using to print structures.
5268
5269@kindex set print sevenbit-strings
5270@item set print sevenbit-strings on
5271Print using only seven-bit characters; if this option is set,
5272@value{GDBN} displays any eight-bit characters (in strings or
5273character values) using the notation @code{\}@var{nnn}. This setting is
5274best if you are working in English (@sc{ascii}) and you use the
5275high-order bit of characters as a marker or ``meta'' bit.
5276
5277@item set print sevenbit-strings off
5278Print full eight-bit characters. This allows the use of more
5279international character sets, and is the default.
5280
5281@kindex show print sevenbit-strings
5282@item show print sevenbit-strings
5283Show whether or not @value{GDBN} is printing only seven-bit characters.
5284
5285@kindex set print union
5286@item set print union on
5d161b24 5287Tell @value{GDBN} to print unions which are contained in structures. This
c906108c
SS
5288is the default setting.
5289
5290@item set print union off
5291Tell @value{GDBN} not to print unions which are contained in structures.
5292
5293@kindex show print union
5294@item show print union
5295Ask @value{GDBN} whether or not it will print unions which are contained in
5296structures.
5297
5298For example, given the declarations
5299
5300@smallexample
5301typedef enum @{Tree, Bug@} Species;
5302typedef enum @{Big_tree, Acorn, Seedling@} Tree_forms;
5d161b24 5303typedef enum @{Caterpillar, Cocoon, Butterfly@}
c906108c
SS
5304 Bug_forms;
5305
5306struct thing @{
5307 Species it;
5308 union @{
5309 Tree_forms tree;
5310 Bug_forms bug;
5311 @} form;
5312@};
5313
5314struct thing foo = @{Tree, @{Acorn@}@};
5315@end smallexample
5316
5317@noindent
5318with @code{set print union on} in effect @samp{p foo} would print
5319
5320@smallexample
5321$1 = @{it = Tree, form = @{tree = Acorn, bug = Cocoon@}@}
5322@end smallexample
5323
5324@noindent
5325and with @code{set print union off} in effect it would print
5326
5327@smallexample
5328$1 = @{it = Tree, form = @{...@}@}
5329@end smallexample
5330@end table
5331
c906108c
SS
5332@need 1000
5333@noindent
b37052ae 5334These settings are of interest when debugging C@t{++} programs:
c906108c
SS
5335
5336@table @code
5337@cindex demangling
5338@kindex set print demangle
5339@item set print demangle
5340@itemx set print demangle on
b37052ae 5341Print C@t{++} names in their source form rather than in the encoded
c906108c 5342(``mangled'') form passed to the assembler and linker for type-safe
d4f3574e 5343linkage. The default is on.
c906108c
SS
5344
5345@kindex show print demangle
5346@item show print demangle
b37052ae 5347Show whether C@t{++} names are printed in mangled or demangled form.
c906108c
SS
5348
5349@kindex set print asm-demangle
5350@item set print asm-demangle
5351@itemx set print asm-demangle on
b37052ae 5352Print C@t{++} names in their source form rather than their mangled form, even
c906108c
SS
5353in assembler code printouts such as instruction disassemblies.
5354The default is off.
5355
5356@kindex show print asm-demangle
5357@item show print asm-demangle
b37052ae 5358Show whether C@t{++} names in assembly listings are printed in mangled
c906108c
SS
5359or demangled form.
5360
5361@kindex set demangle-style
b37052ae
EZ
5362@cindex C@t{++} symbol decoding style
5363@cindex symbol decoding style, C@t{++}
c906108c
SS
5364@item set demangle-style @var{style}
5365Choose among several encoding schemes used by different compilers to
b37052ae 5366represent C@t{++} names. The choices for @var{style} are currently:
c906108c
SS
5367
5368@table @code
5369@item auto
5370Allow @value{GDBN} to choose a decoding style by inspecting your program.
5371
5372@item gnu
b37052ae 5373Decode based on the @sc{gnu} C@t{++} compiler (@code{g++}) encoding algorithm.
c906108c 5374This is the default.
c906108c
SS
5375
5376@item hp
b37052ae 5377Decode based on the HP ANSI C@t{++} (@code{aCC}) encoding algorithm.
c906108c
SS
5378
5379@item lucid
b37052ae 5380Decode based on the Lucid C@t{++} compiler (@code{lcc}) encoding algorithm.
c906108c
SS
5381
5382@item arm
b37052ae 5383Decode using the algorithm in the @cite{C@t{++} Annotated Reference Manual}.
c906108c
SS
5384@strong{Warning:} this setting alone is not sufficient to allow
5385debugging @code{cfront}-generated executables. @value{GDBN} would
5386require further enhancement to permit that.
5387
5388@end table
5389If you omit @var{style}, you will see a list of possible formats.
5390
5391@kindex show demangle-style
5392@item show demangle-style
b37052ae 5393Display the encoding style currently in use for decoding C@t{++} symbols.
c906108c
SS
5394
5395@kindex set print object
5396@item set print object
5397@itemx set print object on
5398When displaying a pointer to an object, identify the @emph{actual}
5399(derived) type of the object rather than the @emph{declared} type, using
5400the virtual function table.
5401
5402@item set print object off
5403Display only the declared type of objects, without reference to the
5404virtual function table. This is the default setting.
5405
5406@kindex show print object
5407@item show print object
5408Show whether actual, or declared, object types are displayed.
5409
5410@kindex set print static-members
5411@item set print static-members
5412@itemx set print static-members on
b37052ae 5413Print static members when displaying a C@t{++} object. The default is on.
c906108c
SS
5414
5415@item set print static-members off
b37052ae 5416Do not print static members when displaying a C@t{++} object.
c906108c
SS
5417
5418@kindex show print static-members
5419@item show print static-members
b37052ae 5420Show whether C@t{++} static members are printed, or not.
c906108c
SS
5421
5422@c These don't work with HP ANSI C++ yet.
5423@kindex set print vtbl
5424@item set print vtbl
5425@itemx set print vtbl on
b37052ae 5426Pretty print C@t{++} virtual function tables. The default is off.
c906108c 5427(The @code{vtbl} commands do not work on programs compiled with the HP
b37052ae 5428ANSI C@t{++} compiler (@code{aCC}).)
c906108c
SS
5429
5430@item set print vtbl off
b37052ae 5431Do not pretty print C@t{++} virtual function tables.
c906108c
SS
5432
5433@kindex show print vtbl
5434@item show print vtbl
b37052ae 5435Show whether C@t{++} virtual function tables are pretty printed, or not.
c906108c 5436@end table
c906108c 5437
6d2ebf8b 5438@node Value History
c906108c
SS
5439@section Value history
5440
5441@cindex value history
5d161b24
DB
5442Values printed by the @code{print} command are saved in the @value{GDBN}
5443@dfn{value history}. This allows you to refer to them in other expressions.
5444Values are kept until the symbol table is re-read or discarded
5445(for example with the @code{file} or @code{symbol-file} commands).
5446When the symbol table changes, the value history is discarded,
5447since the values may contain pointers back to the types defined in the
c906108c
SS
5448symbol table.
5449
5450@cindex @code{$}
5451@cindex @code{$$}
5452@cindex history number
5453The values printed are given @dfn{history numbers} by which you can
5454refer to them. These are successive integers starting with one.
5455@code{print} shows you the history number assigned to a value by
5456printing @samp{$@var{num} = } before the value; here @var{num} is the
5457history number.
5458
5459To refer to any previous value, use @samp{$} followed by the value's
5460history number. The way @code{print} labels its output is designed to
5461remind you of this. Just @code{$} refers to the most recent value in
5462the history, and @code{$$} refers to the value before that.
5463@code{$$@var{n}} refers to the @var{n}th value from the end; @code{$$2}
5464is the value just prior to @code{$$}, @code{$$1} is equivalent to
5465@code{$$}, and @code{$$0} is equivalent to @code{$}.
5466
5467For example, suppose you have just printed a pointer to a structure and
5468want to see the contents of the structure. It suffices to type
5469
474c8240 5470@smallexample
c906108c 5471p *$
474c8240 5472@end smallexample
c906108c
SS
5473
5474If you have a chain of structures where the component @code{next} points
5475to the next one, you can print the contents of the next one with this:
5476
474c8240 5477@smallexample
c906108c 5478p *$.next
474c8240 5479@end smallexample
c906108c
SS
5480
5481@noindent
5482You can print successive links in the chain by repeating this
5483command---which you can do by just typing @key{RET}.
5484
5485Note that the history records values, not expressions. If the value of
5486@code{x} is 4 and you type these commands:
5487
474c8240 5488@smallexample
c906108c
SS
5489print x
5490set x=5
474c8240 5491@end smallexample
c906108c
SS
5492
5493@noindent
5494then the value recorded in the value history by the @code{print} command
5495remains 4 even though the value of @code{x} has changed.
5496
5497@table @code
5498@kindex show values
5499@item show values
5500Print the last ten values in the value history, with their item numbers.
5501This is like @samp{p@ $$9} repeated ten times, except that @code{show
5502values} does not change the history.
5503
5504@item show values @var{n}
5505Print ten history values centered on history item number @var{n}.
5506
5507@item show values +
5508Print ten history values just after the values last printed. If no more
5509values are available, @code{show values +} produces no display.
5510@end table
5511
5512Pressing @key{RET} to repeat @code{show values @var{n}} has exactly the
5513same effect as @samp{show values +}.
5514
6d2ebf8b 5515@node Convenience Vars
c906108c
SS
5516@section Convenience variables
5517
5518@cindex convenience variables
5519@value{GDBN} provides @dfn{convenience variables} that you can use within
5520@value{GDBN} to hold on to a value and refer to it later. These variables
5521exist entirely within @value{GDBN}; they are not part of your program, and
5522setting a convenience variable has no direct effect on further execution
5523of your program. That is why you can use them freely.
5524
5525Convenience variables are prefixed with @samp{$}. Any name preceded by
5526@samp{$} can be used for a convenience variable, unless it is one of
d4f3574e 5527the predefined machine-specific register names (@pxref{Registers, ,Registers}).
c906108c
SS
5528(Value history references, in contrast, are @emph{numbers} preceded
5529by @samp{$}. @xref{Value History, ,Value history}.)
5530
5531You can save a value in a convenience variable with an assignment
5532expression, just as you would set a variable in your program.
5533For example:
5534
474c8240 5535@smallexample
c906108c 5536set $foo = *object_ptr
474c8240 5537@end smallexample
c906108c
SS
5538
5539@noindent
5540would save in @code{$foo} the value contained in the object pointed to by
5541@code{object_ptr}.
5542
5543Using a convenience variable for the first time creates it, but its
5544value is @code{void} until you assign a new value. You can alter the
5545value with another assignment at any time.
5546
5547Convenience variables have no fixed types. You can assign a convenience
5548variable any type of value, including structures and arrays, even if
5549that variable already has a value of a different type. The convenience
5550variable, when used as an expression, has the type of its current value.
5551
5552@table @code
5553@kindex show convenience
5554@item show convenience
5555Print a list of convenience variables used so far, and their values.
d4f3574e 5556Abbreviated @code{show conv}.
c906108c
SS
5557@end table
5558
5559One of the ways to use a convenience variable is as a counter to be
5560incremented or a pointer to be advanced. For example, to print
5561a field from successive elements of an array of structures:
5562
474c8240 5563@smallexample
c906108c
SS
5564set $i = 0
5565print bar[$i++]->contents
474c8240 5566@end smallexample
c906108c 5567
d4f3574e
SS
5568@noindent
5569Repeat that command by typing @key{RET}.
c906108c
SS
5570
5571Some convenience variables are created automatically by @value{GDBN} and given
5572values likely to be useful.
5573
5574@table @code
41afff9a 5575@vindex $_@r{, convenience variable}
c906108c
SS
5576@item $_
5577The variable @code{$_} is automatically set by the @code{x} command to
5578the last address examined (@pxref{Memory, ,Examining memory}). Other
5579commands which provide a default address for @code{x} to examine also
5580set @code{$_} to that address; these commands include @code{info line}
5581and @code{info breakpoint}. The type of @code{$_} is @code{void *}
5582except when set by the @code{x} command, in which case it is a pointer
5583to the type of @code{$__}.
5584
41afff9a 5585@vindex $__@r{, convenience variable}
c906108c
SS
5586@item $__
5587The variable @code{$__} is automatically set by the @code{x} command
5588to the value found in the last address examined. Its type is chosen
5589to match the format in which the data was printed.
5590
5591@item $_exitcode
41afff9a 5592@vindex $_exitcode@r{, convenience variable}
c906108c
SS
5593The variable @code{$_exitcode} is automatically set to the exit code when
5594the program being debugged terminates.
5595@end table
5596
53a5351d
JM
5597On HP-UX systems, if you refer to a function or variable name that
5598begins with a dollar sign, @value{GDBN} searches for a user or system
5599name first, before it searches for a convenience variable.
c906108c 5600
6d2ebf8b 5601@node Registers
c906108c
SS
5602@section Registers
5603
5604@cindex registers
5605You can refer to machine register contents, in expressions, as variables
5606with names starting with @samp{$}. The names of registers are different
5607for each machine; use @code{info registers} to see the names used on
5608your machine.
5609
5610@table @code
5611@kindex info registers
5612@item info registers
5613Print the names and values of all registers except floating-point
c85508ee 5614and vector registers (in the selected stack frame).
c906108c
SS
5615
5616@kindex info all-registers
5617@cindex floating point registers
5618@item info all-registers
5619Print the names and values of all registers, including floating-point
c85508ee 5620and vector registers (in the selected stack frame).
c906108c
SS
5621
5622@item info registers @var{regname} @dots{}
5623Print the @dfn{relativized} value of each specified register @var{regname}.
5d161b24
DB
5624As discussed in detail below, register values are normally relative to
5625the selected stack frame. @var{regname} may be any register name valid on
c906108c
SS
5626the machine you are using, with or without the initial @samp{$}.
5627@end table
5628
5629@value{GDBN} has four ``standard'' register names that are available (in
5630expressions) on most machines---whenever they do not conflict with an
5631architecture's canonical mnemonics for registers. The register names
5632@code{$pc} and @code{$sp} are used for the program counter register and
5633the stack pointer. @code{$fp} is used for a register that contains a
5634pointer to the current stack frame, and @code{$ps} is used for a
5635register that contains the processor status. For example,
5636you could print the program counter in hex with
5637
474c8240 5638@smallexample
c906108c 5639p/x $pc
474c8240 5640@end smallexample
c906108c
SS
5641
5642@noindent
5643or print the instruction to be executed next with
5644
474c8240 5645@smallexample
c906108c 5646x/i $pc
474c8240 5647@end smallexample
c906108c
SS
5648
5649@noindent
5650or add four to the stack pointer@footnote{This is a way of removing
5651one word from the stack, on machines where stacks grow downward in
5652memory (most machines, nowadays). This assumes that the innermost
5653stack frame is selected; setting @code{$sp} is not allowed when other
5654stack frames are selected. To pop entire frames off the stack,
5655regardless of machine architecture, use @code{return};
d4f3574e 5656see @ref{Returning, ,Returning from a function}.} with
c906108c 5657
474c8240 5658@smallexample
c906108c 5659set $sp += 4
474c8240 5660@end smallexample
c906108c
SS
5661
5662Whenever possible, these four standard register names are available on
5663your machine even though the machine has different canonical mnemonics,
5664so long as there is no conflict. The @code{info registers} command
5665shows the canonical names. For example, on the SPARC, @code{info
5666registers} displays the processor status register as @code{$psr} but you
d4f3574e
SS
5667can also refer to it as @code{$ps}; and on x86-based machines @code{$ps}
5668is an alias for the @sc{eflags} register.
c906108c
SS
5669
5670@value{GDBN} always considers the contents of an ordinary register as an
5671integer when the register is examined in this way. Some machines have
5672special registers which can hold nothing but floating point; these
5673registers are considered to have floating point values. There is no way
5674to refer to the contents of an ordinary register as floating point value
5675(although you can @emph{print} it as a floating point value with
5676@samp{print/f $@var{regname}}).
5677
5678Some registers have distinct ``raw'' and ``virtual'' data formats. This
5679means that the data format in which the register contents are saved by
5680the operating system is not the same one that your program normally
5681sees. For example, the registers of the 68881 floating point
5682coprocessor are always saved in ``extended'' (raw) format, but all C
5683programs expect to work with ``double'' (virtual) format. In such
5d161b24 5684cases, @value{GDBN} normally works with the virtual format only (the format
c906108c
SS
5685that makes sense for your program), but the @code{info registers} command
5686prints the data in both formats.
5687
5688Normally, register values are relative to the selected stack frame
5689(@pxref{Selection, ,Selecting a frame}). This means that you get the
5690value that the register would contain if all stack frames farther in
5691were exited and their saved registers restored. In order to see the
5692true contents of hardware registers, you must select the innermost
5693frame (with @samp{frame 0}).
5694
5695However, @value{GDBN} must deduce where registers are saved, from the machine
5696code generated by your compiler. If some registers are not saved, or if
5697@value{GDBN} is unable to locate the saved registers, the selected stack
5698frame makes no difference.
5699
6d2ebf8b 5700@node Floating Point Hardware
c906108c
SS
5701@section Floating point hardware
5702@cindex floating point
5703
5704Depending on the configuration, @value{GDBN} may be able to give
5705you more information about the status of the floating point hardware.
5706
5707@table @code
5708@kindex info float
5709@item info float
5710Display hardware-dependent information about the floating
5711point unit. The exact contents and layout vary depending on the
5712floating point chip. Currently, @samp{info float} is supported on
5713the ARM and x86 machines.
5714@end table
c906108c 5715
e76f1f2e
AC
5716@node Vector Unit
5717@section Vector Unit
5718@cindex vector unit
5719
5720Depending on the configuration, @value{GDBN} may be able to give you
5721more information about the status of the vector unit.
5722
5723@table @code
5724@kindex info vector
5725@item info vector
5726Display information about the vector unit. The exact contents and
5727layout vary depending on the hardware.
5728@end table
5729
29e57380 5730@node Memory Region Attributes
16d9dec6 5731@section Memory region attributes
29e57380
C
5732@cindex memory region attributes
5733
5734@dfn{Memory region attributes} allow you to describe special handling
5735required by regions of your target's memory. @value{GDBN} uses attributes
5736to determine whether to allow certain types of memory accesses; whether to
5737use specific width accesses; and whether to cache target memory.
5738
5739Defined memory regions can be individually enabled and disabled. When a
5740memory region is disabled, @value{GDBN} uses the default attributes when
5741accessing memory in that region. Similarly, if no memory regions have
5742been defined, @value{GDBN} uses the default attributes when accessing
5743all memory.
5744
5745When a memory region is defined, it is given a number to identify it;
5746to enable, disable, or remove a memory region, you specify that number.
5747
5748@table @code
5749@kindex mem
bfac230e
DH
5750@item mem @var{lower} @var{upper} @var{attributes}@dots{}
5751Define memory region bounded by @var{lower} and @var{upper} with
5752attributes @var{attributes}@dots{}. Note that @var{upper} == 0 is a
5753special case: it is treated as the the target's maximum memory address.
5754(0xffff on 16 bit targets, 0xffffffff on 32 bit targets, etc.)
29e57380
C
5755
5756@kindex delete mem
5757@item delete mem @var{nums}@dots{}
59649f2e 5758Remove memory regions @var{nums}@dots{}.
29e57380
C
5759
5760@kindex disable mem
5761@item disable mem @var{nums}@dots{}
59649f2e 5762Disable memory regions @var{nums}@dots{}.
29e57380
C
5763A disabled memory region is not forgotten.
5764It may be enabled again later.
5765
5766@kindex enable mem
5767@item enable mem @var{nums}@dots{}
59649f2e 5768Enable memory regions @var{nums}@dots{}.
29e57380
C
5769
5770@kindex info mem
5771@item info mem
5772Print a table of all defined memory regions, with the following columns
5773for each region.
5774
5775@table @emph
5776@item Memory Region Number
5777@item Enabled or Disabled.
5778Enabled memory regions are marked with @samp{y}.
5779Disabled memory regions are marked with @samp{n}.
5780
5781@item Lo Address
5782The address defining the inclusive lower bound of the memory region.
5783
5784@item Hi Address
5785The address defining the exclusive upper bound of the memory region.
5786
5787@item Attributes
5788The list of attributes set for this memory region.
5789@end table
5790@end table
5791
5792
5793@subsection Attributes
5794
5795@subsubsection Memory Access Mode
5796The access mode attributes set whether @value{GDBN} may make read or
5797write accesses to a memory region.
5798
5799While these attributes prevent @value{GDBN} from performing invalid
5800memory accesses, they do nothing to prevent the target system, I/O DMA,
5801etc. from accessing memory.
5802
5803@table @code
5804@item ro
5805Memory is read only.
5806@item wo
5807Memory is write only.
5808@item rw
6ca652b0 5809Memory is read/write. This is the default.
29e57380
C
5810@end table
5811
5812@subsubsection Memory Access Size
5813The acccess size attributes tells @value{GDBN} to use specific sized
5814accesses in the memory region. Often memory mapped device registers
5815require specific sized accesses. If no access size attribute is
5816specified, @value{GDBN} may use accesses of any size.
5817
5818@table @code
5819@item 8
5820Use 8 bit memory accesses.
5821@item 16
5822Use 16 bit memory accesses.
5823@item 32
5824Use 32 bit memory accesses.
5825@item 64
5826Use 64 bit memory accesses.
5827@end table
5828
5829@c @subsubsection Hardware/Software Breakpoints
5830@c The hardware/software breakpoint attributes set whether @value{GDBN}
5831@c will use hardware or software breakpoints for the internal breakpoints
5832@c used by the step, next, finish, until, etc. commands.
5833@c
5834@c @table @code
5835@c @item hwbreak
5836@c Always use hardware breakpoints
5837@c @item swbreak (default)
5838@c @end table
5839
5840@subsubsection Data Cache
5841The data cache attributes set whether @value{GDBN} will cache target
5842memory. While this generally improves performance by reducing debug
5843protocol overhead, it can lead to incorrect results because @value{GDBN}
5844does not know about volatile variables or memory mapped device
5845registers.
5846
5847@table @code
5848@item cache
5849Enable @value{GDBN} to cache target memory.
6ca652b0
EZ
5850@item nocache
5851Disable @value{GDBN} from caching target memory. This is the default.
29e57380
C
5852@end table
5853
5854@c @subsubsection Memory Write Verification
5855@c The memory write verification attributes set whether @value{GDBN}
5856@c will re-reads data after each write to verify the write was successful.
5857@c
5858@c @table @code
5859@c @item verify
5860@c @item noverify (default)
5861@c @end table
5862
16d9dec6
MS
5863@node Dump/Restore Files
5864@section Copy between memory and a file
5865@cindex dump/restore files
5866@cindex append data to a file
5867@cindex dump data to a file
5868@cindex restore data from a file
16d9dec6 5869
df5215a6
JB
5870You can use the commands @code{dump}, @code{append}, and
5871@code{restore} to copy data between target memory and a file. The
5872@code{dump} and @code{append} commands write data to a file, and the
5873@code{restore} command reads data from a file back into the inferior's
5874memory. Files may be in binary, Motorola S-record, Intel hex, or
5875Tektronix Hex format; however, @value{GDBN} can only append to binary
5876files.
5877
5878@table @code
5879
5880@kindex dump
5881@item dump @r{[}@var{format}@r{]} memory @var{filename} @var{start_addr} @var{end_addr}
5882@itemx dump @r{[}@var{format}@r{]} value @var{filename} @var{expr}
5883Dump the contents of memory from @var{start_addr} to @var{end_addr},
5884or the value of @var{expr}, to @var{filename} in the given format.
16d9dec6 5885
df5215a6 5886The @var{format} parameter may be any one of:
16d9dec6 5887@table @code
df5215a6
JB
5888@item binary
5889Raw binary form.
5890@item ihex
5891Intel hex format.
5892@item srec
5893Motorola S-record format.
5894@item tekhex
5895Tektronix Hex format.
5896@end table
5897
5898@value{GDBN} uses the same definitions of these formats as the
5899@sc{gnu} binary utilities, like @samp{objdump} and @samp{objcopy}. If
5900@var{format} is omitted, @value{GDBN} dumps the data in raw binary
5901form.
5902
5903@kindex append
5904@item append @r{[}binary@r{]} memory @var{filename} @var{start_addr} @var{end_addr}
5905@itemx append @r{[}binary@r{]} value @var{filename} @var{expr}
5906Append the contents of memory from @var{start_addr} to @var{end_addr},
5907or the value of @var{expr}, to @var{filename}, in raw binary form.
5908(@value{GDBN} can only append data to files in raw binary form.)
5909
5910@kindex restore
5911@item restore @var{filename} @r{[}binary@r{]} @var{bias} @var{start} @var{end}
5912Restore the contents of file @var{filename} into memory. The
5913@code{restore} command can automatically recognize any known @sc{bfd}
5914file format, except for raw binary. To restore a raw binary file you
5915must specify the optional keyword @code{binary} after the filename.
16d9dec6
MS
5916
5917If @var{bias} is non-zero, its value will be added to the addresses
5918contained in the file. Binary files always start at address zero, so
5919they will be restored at address @var{bias}. Other bfd files have
5920a built-in location; they will be restored at offset @var{bias}
5921from that location.
5922
5923If @var{start} and/or @var{end} are non-zero, then only data between
5924file offset @var{start} and file offset @var{end} will be restored.
5925These offsets are relative to the addresses in the file, before
5926the @var{bias} argument is applied.
5927
5928@end table
5929
a0eb71c5
KB
5930@node Character Sets
5931@section Character Sets
5932@cindex character sets
5933@cindex charset
5934@cindex translating between character sets
5935@cindex host character set
5936@cindex target character set
5937
5938If the program you are debugging uses a different character set to
5939represent characters and strings than the one @value{GDBN} uses itself,
5940@value{GDBN} can automatically translate between the character sets for
5941you. The character set @value{GDBN} uses we call the @dfn{host
5942character set}; the one the inferior program uses we call the
5943@dfn{target character set}.
5944
5945For example, if you are running @value{GDBN} on a @sc{gnu}/Linux system, which
5946uses the ISO Latin 1 character set, but you are using @value{GDBN}'s
5947remote protocol (@pxref{Remote,Remote Debugging}) to debug a program
5948running on an IBM mainframe, which uses the @sc{ebcdic} character set,
5949then the host character set is Latin-1, and the target character set is
5950@sc{ebcdic}. If you give @value{GDBN} the command @code{set
e33d66ec 5951target-charset EBCDIC-US}, then @value{GDBN} translates between
a0eb71c5
KB
5952@sc{ebcdic} and Latin 1 as you print character or string values, or use
5953character and string literals in expressions.
5954
5955@value{GDBN} has no way to automatically recognize which character set
5956the inferior program uses; you must tell it, using the @code{set
5957target-charset} command, described below.
5958
5959Here are the commands for controlling @value{GDBN}'s character set
5960support:
5961
5962@table @code
5963@item set target-charset @var{charset}
5964@kindex set target-charset
5965Set the current target character set to @var{charset}. We list the
e33d66ec
EZ
5966character set names @value{GDBN} recognizes below, but if you type
5967@code{set target-charset} followed by @key{TAB}@key{TAB}, @value{GDBN} will
5968list the target character sets it supports.
a0eb71c5
KB
5969@end table
5970
5971@table @code
5972@item set host-charset @var{charset}
5973@kindex set host-charset
5974Set the current host character set to @var{charset}.
5975
5976By default, @value{GDBN} uses a host character set appropriate to the
5977system it is running on; you can override that default using the
5978@code{set host-charset} command.
5979
5980@value{GDBN} can only use certain character sets as its host character
5981set. We list the character set names @value{GDBN} recognizes below, and
e33d66ec
EZ
5982indicate which can be host character sets, but if you type
5983@code{set target-charset} followed by @key{TAB}@key{TAB}, @value{GDBN} will
5984list the host character sets it supports.
a0eb71c5
KB
5985
5986@item set charset @var{charset}
5987@kindex set charset
e33d66ec
EZ
5988Set the current host and target character sets to @var{charset}. As
5989above, if you type @code{set charset} followed by @key{TAB}@key{TAB},
5990@value{GDBN} will list the name of the character sets that can be used
5991for both host and target.
5992
a0eb71c5
KB
5993
5994@item show charset
a0eb71c5 5995@kindex show charset
e33d66ec
EZ
5996Show the names of the current host and target charsets.
5997
5998@itemx show host-charset
a0eb71c5 5999@kindex show host-charset
e33d66ec
EZ
6000Show the name of the current host charset.
6001
6002@itemx show target-charset
a0eb71c5 6003@kindex show target-charset
e33d66ec 6004Show the name of the current target charset.
a0eb71c5
KB
6005
6006@end table
6007
6008@value{GDBN} currently includes support for the following character
6009sets:
6010
6011@table @code
6012
6013@item ASCII
6014@cindex ASCII character set
6015Seven-bit U.S. @sc{ascii}. @value{GDBN} can use this as its host
6016character set.
6017
6018@item ISO-8859-1
6019@cindex ISO 8859-1 character set
6020@cindex ISO Latin 1 character set
e33d66ec 6021The ISO Latin 1 character set. This extends @sc{ascii} with accented
a0eb71c5
KB
6022characters needed for French, German, and Spanish. @value{GDBN} can use
6023this as its host character set.
6024
6025@item EBCDIC-US
6026@itemx IBM1047
6027@cindex EBCDIC character set
6028@cindex IBM1047 character set
6029Variants of the @sc{ebcdic} character set, used on some of IBM's
6030mainframe operating systems. (@sc{gnu}/Linux on the S/390 uses U.S. @sc{ascii}.)
6031@value{GDBN} cannot use these as its host character set.
6032
6033@end table
6034
6035Note that these are all single-byte character sets. More work inside
6036GDB is needed to support multi-byte or variable-width character
6037encodings, like the UTF-8 and UCS-2 encodings of Unicode.
6038
6039Here is an example of @value{GDBN}'s character set support in action.
6040Assume that the following source code has been placed in the file
6041@file{charset-test.c}:
6042
6043@smallexample
6044#include <stdio.h>
6045
6046char ascii_hello[]
6047 = @{72, 101, 108, 108, 111, 44, 32, 119,
6048 111, 114, 108, 100, 33, 10, 0@};
6049char ibm1047_hello[]
6050 = @{200, 133, 147, 147, 150, 107, 64, 166,
6051 150, 153, 147, 132, 90, 37, 0@};
6052
6053main ()
6054@{
6055 printf ("Hello, world!\n");
6056@}
10998722 6057@end smallexample
a0eb71c5
KB
6058
6059In this program, @code{ascii_hello} and @code{ibm1047_hello} are arrays
6060containing the string @samp{Hello, world!} followed by a newline,
6061encoded in the @sc{ascii} and @sc{ibm1047} character sets.
6062
6063We compile the program, and invoke the debugger on it:
6064
6065@smallexample
6066$ gcc -g charset-test.c -o charset-test
6067$ gdb -nw charset-test
6068GNU gdb 2001-12-19-cvs
6069Copyright 2001 Free Software Foundation, Inc.
6070@dots{}
6071(gdb)
10998722 6072@end smallexample
a0eb71c5
KB
6073
6074We can use the @code{show charset} command to see what character sets
6075@value{GDBN} is currently using to interpret and display characters and
6076strings:
6077
6078@smallexample
6079(gdb) show charset
e33d66ec 6080The current host and target character set is `ISO-8859-1'.
a0eb71c5 6081(gdb)
10998722 6082@end smallexample
a0eb71c5
KB
6083
6084For the sake of printing this manual, let's use @sc{ascii} as our
6085initial character set:
6086@smallexample
e33d66ec 6087(gdb) set charset ASCII
a0eb71c5 6088(gdb) show charset
e33d66ec 6089The current host and target character set is `ASCII'.
a0eb71c5 6090(gdb)
10998722 6091@end smallexample
a0eb71c5
KB
6092
6093Let's assume that @sc{ascii} is indeed the correct character set for our
6094host system --- in other words, let's assume that if @value{GDBN} prints
6095characters using the @sc{ascii} character set, our terminal will display
6096them properly. Since our current target character set is also
6097@sc{ascii}, the contents of @code{ascii_hello} print legibly:
6098
6099@smallexample
6100(gdb) print ascii_hello
6101$1 = 0x401698 "Hello, world!\n"
6102(gdb) print ascii_hello[0]
6103$2 = 72 'H'
6104(gdb)
10998722 6105@end smallexample
a0eb71c5
KB
6106
6107@value{GDBN} uses the target character set for character and string
6108literals you use in expressions:
6109
6110@smallexample
6111(gdb) print '+'
6112$3 = 43 '+'
6113(gdb)
10998722 6114@end smallexample
a0eb71c5
KB
6115
6116The @sc{ascii} character set uses the number 43 to encode the @samp{+}
6117character.
6118
6119@value{GDBN} relies on the user to tell it which character set the
6120target program uses. If we print @code{ibm1047_hello} while our target
6121character set is still @sc{ascii}, we get jibberish:
6122
6123@smallexample
6124(gdb) print ibm1047_hello
6125$4 = 0x4016a8 "\310\205\223\223\226k@@\246\226\231\223\204Z%"
6126(gdb) print ibm1047_hello[0]
6127$5 = 200 '\310'
6128(gdb)
10998722 6129@end smallexample
a0eb71c5 6130
e33d66ec 6131If we invoke the @code{set target-charset} followed by @key{TAB}@key{TAB},
a0eb71c5
KB
6132@value{GDBN} tells us the character sets it supports:
6133
6134@smallexample
6135(gdb) set target-charset
e33d66ec
EZ
6136ASCII EBCDIC-US IBM1047 ISO-8859-1
6137(gdb) set target-charset
10998722 6138@end smallexample
a0eb71c5
KB
6139
6140We can select @sc{ibm1047} as our target character set, and examine the
6141program's strings again. Now the @sc{ascii} string is wrong, but
6142@value{GDBN} translates the contents of @code{ibm1047_hello} from the
6143target character set, @sc{ibm1047}, to the host character set,
6144@sc{ascii}, and they display correctly:
6145
6146@smallexample
e33d66ec 6147(gdb) set target-charset IBM1047
a0eb71c5 6148(gdb) show charset
e33d66ec
EZ
6149The current host character set is `ASCII'.
6150The current target character set is `IBM1047'.
a0eb71c5
KB
6151(gdb) print ascii_hello
6152$6 = 0x401698 "\110\145%%?\054\040\167?\162%\144\041\012"
6153(gdb) print ascii_hello[0]
6154$7 = 72 '\110'
6155(gdb) print ibm1047_hello
6156$8 = 0x4016a8 "Hello, world!\n"
6157(gdb) print ibm1047_hello[0]
6158$9 = 200 'H'
6159(gdb)
10998722 6160@end smallexample
a0eb71c5
KB
6161
6162As above, @value{GDBN} uses the target character set for character and
6163string literals you use in expressions:
6164
6165@smallexample
6166(gdb) print '+'
6167$10 = 78 '+'
6168(gdb)
10998722 6169@end smallexample
a0eb71c5 6170
e33d66ec 6171The @sc{ibm1047} character set uses the number 78 to encode the @samp{+}
a0eb71c5
KB
6172character.
6173
6174
e2e0bcd1
JB
6175@node Macros
6176@chapter C Preprocessor Macros
6177
6178Some languages, such as C and C++, provide a way to define and invoke
6179``preprocessor macros'' which expand into strings of tokens.
6180@value{GDBN} can evaluate expressions containing macro invocations, show
6181the result of macro expansion, and show a macro's definition, including
6182where it was defined.
6183
6184You may need to compile your program specially to provide @value{GDBN}
6185with information about preprocessor macros. Most compilers do not
6186include macros in their debugging information, even when you compile
6187with the @option{-g} flag. @xref{Compilation}.
6188
6189A program may define a macro at one point, remove that definition later,
6190and then provide a different definition after that. Thus, at different
6191points in the program, a macro may have different definitions, or have
6192no definition at all. If there is a current stack frame, @value{GDBN}
6193uses the macros in scope at that frame's source code line. Otherwise,
6194@value{GDBN} uses the macros in scope at the current listing location;
6195see @ref{List}.
6196
6197At the moment, @value{GDBN} does not support the @code{##}
6198token-splicing operator, the @code{#} stringification operator, or
6199variable-arity macros.
6200
6201Whenever @value{GDBN} evaluates an expression, it always expands any
6202macro invocations present in the expression. @value{GDBN} also provides
6203the following commands for working with macros explicitly.
6204
6205@table @code
6206
6207@kindex macro expand
6208@cindex macro expansion, showing the results of preprocessor
6209@cindex preprocessor macro expansion, showing the results of
6210@cindex expanding preprocessor macros
6211@item macro expand @var{expression}
6212@itemx macro exp @var{expression}
6213Show the results of expanding all preprocessor macro invocations in
6214@var{expression}. Since @value{GDBN} simply expands macros, but does
6215not parse the result, @var{expression} need not be a valid expression;
6216it can be any string of tokens.
6217
6218@kindex macro expand-once
6219@item macro expand-once @var{expression}
6220@itemx macro exp1 @var{expression}
6221@i{(This command is not yet implemented.)} Show the results of
6222expanding those preprocessor macro invocations that appear explicitly in
6223@var{expression}. Macro invocations appearing in that expansion are
6224left unchanged. This command allows you to see the effect of a
6225particular macro more clearly, without being confused by further
6226expansions. Since @value{GDBN} simply expands macros, but does not
6227parse the result, @var{expression} need not be a valid expression; it
6228can be any string of tokens.
6229
475b0867 6230@kindex info macro
e2e0bcd1
JB
6231@cindex macro definition, showing
6232@cindex definition, showing a macro's
475b0867 6233@item info macro @var{macro}
e2e0bcd1
JB
6234Show the definition of the macro named @var{macro}, and describe the
6235source location where that definition was established.
6236
6237@kindex macro define
6238@cindex user-defined macros
6239@cindex defining macros interactively
6240@cindex macros, user-defined
6241@item macro define @var{macro} @var{replacement-list}
6242@itemx macro define @var{macro}(@var{arglist}) @var{replacement-list}
6243@i{(This command is not yet implemented.)} Introduce a definition for a
6244preprocessor macro named @var{macro}, invocations of which are replaced
6245by the tokens given in @var{replacement-list}. The first form of this
6246command defines an ``object-like'' macro, which takes no arguments; the
6247second form defines a ``function-like'' macro, which takes the arguments
6248given in @var{arglist}.
6249
6250A definition introduced by this command is in scope in every expression
6251evaluated in @value{GDBN}, until it is removed with the @command{macro
6252undef} command, described below. The definition overrides all
6253definitions for @var{macro} present in the program being debugged, as
6254well as any previous user-supplied definition.
6255
6256@kindex macro undef
6257@item macro undef @var{macro}
6258@i{(This command is not yet implemented.)} Remove any user-supplied
6259definition for the macro named @var{macro}. This command only affects
6260definitions provided with the @command{macro define} command, described
6261above; it cannot remove definitions present in the program being
6262debugged.
6263
6264@end table
6265
6266@cindex macros, example of debugging with
6267Here is a transcript showing the above commands in action. First, we
6268show our source files:
6269
6270@smallexample
6271$ cat sample.c
6272#include <stdio.h>
6273#include "sample.h"
6274
6275#define M 42
6276#define ADD(x) (M + x)
6277
6278main ()
6279@{
6280#define N 28
6281 printf ("Hello, world!\n");
6282#undef N
6283 printf ("We're so creative.\n");
6284#define N 1729
6285 printf ("Goodbye, world!\n");
6286@}
6287$ cat sample.h
6288#define Q <
6289$
6290@end smallexample
6291
6292Now, we compile the program using the @sc{gnu} C compiler, @value{NGCC}.
6293We pass the @option{-gdwarf-2} and @option{-g3} flags to ensure the
6294compiler includes information about preprocessor macros in the debugging
6295information.
6296
6297@smallexample
6298$ gcc -gdwarf-2 -g3 sample.c -o sample
6299$
6300@end smallexample
6301
6302Now, we start @value{GDBN} on our sample program:
6303
6304@smallexample
6305$ gdb -nw sample
6306GNU gdb 2002-05-06-cvs
6307Copyright 2002 Free Software Foundation, Inc.
6308GDB is free software, @dots{}
6309(gdb)
6310@end smallexample
6311
6312We can expand macros and examine their definitions, even when the
6313program is not running. @value{GDBN} uses the current listing position
6314to decide which macro definitions are in scope:
6315
6316@smallexample
6317(gdb) list main
63183
63194 #define M 42
63205 #define ADD(x) (M + x)
63216
63227 main ()
63238 @{
63249 #define N 28
632510 printf ("Hello, world!\n");
632611 #undef N
632712 printf ("We're so creative.\n");
475b0867 6328(gdb) info macro ADD
e2e0bcd1
JB
6329Defined at /home/jimb/gdb/macros/play/sample.c:5
6330#define ADD(x) (M + x)
475b0867 6331(gdb) info macro Q
e2e0bcd1
JB
6332Defined at /home/jimb/gdb/macros/play/sample.h:1
6333 included at /home/jimb/gdb/macros/play/sample.c:2
6334#define Q <
6335(gdb) macro expand ADD(1)
6336expands to: (42 + 1)
6337(gdb) macro expand-once ADD(1)
6338expands to: once (M + 1)
6339(gdb)
6340@end smallexample
6341
6342In the example above, note that @command{macro expand-once} expands only
6343the macro invocation explicit in the original text --- the invocation of
6344@code{ADD} --- but does not expand the invocation of the macro @code{M},
6345which was introduced by @code{ADD}.
6346
6347Once the program is running, GDB uses the macro definitions in force at
6348the source line of the current stack frame:
6349
6350@smallexample
6351(gdb) break main
6352Breakpoint 1 at 0x8048370: file sample.c, line 10.
6353(gdb) run
6354Starting program: /home/jimb/gdb/macros/play/sample
6355
6356Breakpoint 1, main () at sample.c:10
635710 printf ("Hello, world!\n");
6358(gdb)
6359@end smallexample
6360
6361At line 10, the definition of the macro @code{N} at line 9 is in force:
6362
6363@smallexample
475b0867 6364(gdb) info macro N
e2e0bcd1
JB
6365Defined at /home/jimb/gdb/macros/play/sample.c:9
6366#define N 28
6367(gdb) macro expand N Q M
6368expands to: 28 < 42
6369(gdb) print N Q M
6370$1 = 1
6371(gdb)
6372@end smallexample
6373
6374As we step over directives that remove @code{N}'s definition, and then
6375give it a new definition, @value{GDBN} finds the definition (or lack
6376thereof) in force at each point:
6377
6378@smallexample
6379(gdb) next
6380Hello, world!
638112 printf ("We're so creative.\n");
475b0867 6382(gdb) info macro N
e2e0bcd1
JB
6383The symbol `N' has no definition as a C/C++ preprocessor macro
6384at /home/jimb/gdb/macros/play/sample.c:12
6385(gdb) next
6386We're so creative.
638714 printf ("Goodbye, world!\n");
475b0867 6388(gdb) info macro N
e2e0bcd1
JB
6389Defined at /home/jimb/gdb/macros/play/sample.c:13
6390#define N 1729
6391(gdb) macro expand N Q M
6392expands to: 1729 < 42
6393(gdb) print N Q M
6394$2 = 0
6395(gdb)
6396@end smallexample
6397
6398
b37052ae
EZ
6399@node Tracepoints
6400@chapter Tracepoints
6401@c This chapter is based on the documentation written by Michael
6402@c Snyder, David Taylor, Jim Blandy, and Elena Zannoni.
6403
6404@cindex tracepoints
6405In some applications, it is not feasible for the debugger to interrupt
6406the program's execution long enough for the developer to learn
6407anything helpful about its behavior. If the program's correctness
6408depends on its real-time behavior, delays introduced by a debugger
6409might cause the program to change its behavior drastically, or perhaps
6410fail, even when the code itself is correct. It is useful to be able
6411to observe the program's behavior without interrupting it.
6412
6413Using @value{GDBN}'s @code{trace} and @code{collect} commands, you can
6414specify locations in the program, called @dfn{tracepoints}, and
6415arbitrary expressions to evaluate when those tracepoints are reached.
6416Later, using the @code{tfind} command, you can examine the values
6417those expressions had when the program hit the tracepoints. The
6418expressions may also denote objects in memory---structures or arrays,
6419for example---whose values @value{GDBN} should record; while visiting
6420a particular tracepoint, you may inspect those objects as if they were
6421in memory at that moment. However, because @value{GDBN} records these
6422values without interacting with you, it can do so quickly and
6423unobtrusively, hopefully not disturbing the program's behavior.
6424
6425The tracepoint facility is currently available only for remote
2c0069bb
EZ
6426targets. @xref{Targets}. In addition, your remote target must know how
6427to collect trace data. This functionality is implemented in the remote
6428stub; however, none of the stubs distributed with @value{GDBN} support
6429tracepoints as of this writing.
b37052ae
EZ
6430
6431This chapter describes the tracepoint commands and features.
6432
6433@menu
6434* Set Tracepoints::
6435* Analyze Collected Data::
6436* Tracepoint Variables::
6437@end menu
6438
6439@node Set Tracepoints
6440@section Commands to Set Tracepoints
6441
6442Before running such a @dfn{trace experiment}, an arbitrary number of
6443tracepoints can be set. Like a breakpoint (@pxref{Set Breaks}), a
6444tracepoint has a number assigned to it by @value{GDBN}. Like with
6445breakpoints, tracepoint numbers are successive integers starting from
6446one. Many of the commands associated with tracepoints take the
6447tracepoint number as their argument, to identify which tracepoint to
6448work on.
6449
6450For each tracepoint, you can specify, in advance, some arbitrary set
6451of data that you want the target to collect in the trace buffer when
6452it hits that tracepoint. The collected data can include registers,
6453local variables, or global data. Later, you can use @value{GDBN}
6454commands to examine the values these data had at the time the
6455tracepoint was hit.
6456
6457This section describes commands to set tracepoints and associated
6458conditions and actions.
6459
6460@menu
6461* Create and Delete Tracepoints::
6462* Enable and Disable Tracepoints::
6463* Tracepoint Passcounts::
6464* Tracepoint Actions::
6465* Listing Tracepoints::
6466* Starting and Stopping Trace Experiment::
6467@end menu
6468
6469@node Create and Delete Tracepoints
6470@subsection Create and Delete Tracepoints
6471
6472@table @code
6473@cindex set tracepoint
6474@kindex trace
6475@item trace
6476The @code{trace} command is very similar to the @code{break} command.
6477Its argument can be a source line, a function name, or an address in
6478the target program. @xref{Set Breaks}. The @code{trace} command
6479defines a tracepoint, which is a point in the target program where the
6480debugger will briefly stop, collect some data, and then allow the
6481program to continue. Setting a tracepoint or changing its commands
6482doesn't take effect until the next @code{tstart} command; thus, you
6483cannot change the tracepoint attributes once a trace experiment is
6484running.
6485
6486Here are some examples of using the @code{trace} command:
6487
6488@smallexample
6489(@value{GDBP}) @b{trace foo.c:121} // a source file and line number
6490
6491(@value{GDBP}) @b{trace +2} // 2 lines forward
6492
6493(@value{GDBP}) @b{trace my_function} // first source line of function
6494
6495(@value{GDBP}) @b{trace *my_function} // EXACT start address of function
6496
6497(@value{GDBP}) @b{trace *0x2117c4} // an address
6498@end smallexample
6499
6500@noindent
6501You can abbreviate @code{trace} as @code{tr}.
6502
6503@vindex $tpnum
6504@cindex last tracepoint number
6505@cindex recent tracepoint number
6506@cindex tracepoint number
6507The convenience variable @code{$tpnum} records the tracepoint number
6508of the most recently set tracepoint.
6509
6510@kindex delete tracepoint
6511@cindex tracepoint deletion
6512@item delete tracepoint @r{[}@var{num}@r{]}
6513Permanently delete one or more tracepoints. With no argument, the
6514default is to delete all tracepoints.
6515
6516Examples:
6517
6518@smallexample
6519(@value{GDBP}) @b{delete trace 1 2 3} // remove three tracepoints
6520
6521(@value{GDBP}) @b{delete trace} // remove all tracepoints
6522@end smallexample
6523
6524@noindent
6525You can abbreviate this command as @code{del tr}.
6526@end table
6527
6528@node Enable and Disable Tracepoints
6529@subsection Enable and Disable Tracepoints
6530
6531@table @code
6532@kindex disable tracepoint
6533@item disable tracepoint @r{[}@var{num}@r{]}
6534Disable tracepoint @var{num}, or all tracepoints if no argument
6535@var{num} is given. A disabled tracepoint will have no effect during
6536the next trace experiment, but it is not forgotten. You can re-enable
6537a disabled tracepoint using the @code{enable tracepoint} command.
6538
6539@kindex enable tracepoint
6540@item enable tracepoint @r{[}@var{num}@r{]}
6541Enable tracepoint @var{num}, or all tracepoints. The enabled
6542tracepoints will become effective the next time a trace experiment is
6543run.
6544@end table
6545
6546@node Tracepoint Passcounts
6547@subsection Tracepoint Passcounts
6548
6549@table @code
6550@kindex passcount
6551@cindex tracepoint pass count
6552@item passcount @r{[}@var{n} @r{[}@var{num}@r{]]}
6553Set the @dfn{passcount} of a tracepoint. The passcount is a way to
6554automatically stop a trace experiment. If a tracepoint's passcount is
6555@var{n}, then the trace experiment will be automatically stopped on
6556the @var{n}'th time that tracepoint is hit. If the tracepoint number
6557@var{num} is not specified, the @code{passcount} command sets the
6558passcount of the most recently defined tracepoint. If no passcount is
6559given, the trace experiment will run until stopped explicitly by the
6560user.
6561
6562Examples:
6563
6564@smallexample
6826cf00
EZ
6565(@value{GDBP}) @b{passcount 5 2} // Stop on the 5th execution of
6566@exdent @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @code{// tracepoint 2}
b37052ae
EZ
6567
6568(@value{GDBP}) @b{passcount 12} // Stop on the 12th execution of the
6826cf00 6569@exdent @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @code{// most recently defined tracepoint.}
b37052ae
EZ
6570(@value{GDBP}) @b{trace foo}
6571(@value{GDBP}) @b{pass 3}
6572(@value{GDBP}) @b{trace bar}
6573(@value{GDBP}) @b{pass 2}
6574(@value{GDBP}) @b{trace baz}
6575(@value{GDBP}) @b{pass 1} // Stop tracing when foo has been
6826cf00
EZ
6576@exdent @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @code{// executed 3 times OR when bar has}
6577@exdent @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @code{// been executed 2 times}
6578@exdent @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @code{// OR when baz has been executed 1 time.}
b37052ae
EZ
6579@end smallexample
6580@end table
6581
6582@node Tracepoint Actions
6583@subsection Tracepoint Action Lists
6584
6585@table @code
6586@kindex actions
6587@cindex tracepoint actions
6588@item actions @r{[}@var{num}@r{]}
6589This command will prompt for a list of actions to be taken when the
6590tracepoint is hit. If the tracepoint number @var{num} is not
6591specified, this command sets the actions for the one that was most
6592recently defined (so that you can define a tracepoint and then say
6593@code{actions} without bothering about its number). You specify the
6594actions themselves on the following lines, one action at a time, and
6595terminate the actions list with a line containing just @code{end}. So
6596far, the only defined actions are @code{collect} and
6597@code{while-stepping}.
6598
6599@cindex remove actions from a tracepoint
6600To remove all actions from a tracepoint, type @samp{actions @var{num}}
6601and follow it immediately with @samp{end}.
6602
6603@smallexample
6604(@value{GDBP}) @b{collect @var{data}} // collect some data
6605
6826cf00 6606(@value{GDBP}) @b{while-stepping 5} // single-step 5 times, collect data
b37052ae 6607
6826cf00 6608(@value{GDBP}) @b{end} // signals the end of actions.
b37052ae
EZ
6609@end smallexample
6610
6611In the following example, the action list begins with @code{collect}
6612commands indicating the things to be collected when the tracepoint is
6613hit. Then, in order to single-step and collect additional data
6614following the tracepoint, a @code{while-stepping} command is used,
6615followed by the list of things to be collected while stepping. The
6616@code{while-stepping} command is terminated by its own separate
6617@code{end} command. Lastly, the action list is terminated by an
6618@code{end} command.
6619
6620@smallexample
6621(@value{GDBP}) @b{trace foo}
6622(@value{GDBP}) @b{actions}
6623Enter actions for tracepoint 1, one per line:
6624> collect bar,baz
6625> collect $regs
6626> while-stepping 12
6627 > collect $fp, $sp
6628 > end
6629end
6630@end smallexample
6631
6632@kindex collect @r{(tracepoints)}
6633@item collect @var{expr1}, @var{expr2}, @dots{}
6634Collect values of the given expressions when the tracepoint is hit.
6635This command accepts a comma-separated list of any valid expressions.
6636In addition to global, static, or local variables, the following
6637special arguments are supported:
6638
6639@table @code
6640@item $regs
6641collect all registers
6642
6643@item $args
6644collect all function arguments
6645
6646@item $locals
6647collect all local variables.
6648@end table
6649
6650You can give several consecutive @code{collect} commands, each one
6651with a single argument, or one @code{collect} command with several
6652arguments separated by commas: the effect is the same.
6653
f5c37c66
EZ
6654The command @code{info scope} (@pxref{Symbols, info scope}) is
6655particularly useful for figuring out what data to collect.
6656
b37052ae
EZ
6657@kindex while-stepping @r{(tracepoints)}
6658@item while-stepping @var{n}
6659Perform @var{n} single-step traces after the tracepoint, collecting
6660new data at each step. The @code{while-stepping} command is
6661followed by the list of what to collect while stepping (followed by
6662its own @code{end} command):
6663
6664@smallexample
6665> while-stepping 12
6666 > collect $regs, myglobal
6667 > end
6668>
6669@end smallexample
6670
6671@noindent
6672You may abbreviate @code{while-stepping} as @code{ws} or
6673@code{stepping}.
6674@end table
6675
6676@node Listing Tracepoints
6677@subsection Listing Tracepoints
6678
6679@table @code
6680@kindex info tracepoints
6681@cindex information about tracepoints
6682@item info tracepoints @r{[}@var{num}@r{]}
8a037dd7 6683Display information about the tracepoint @var{num}. If you don't specify
798c8bc6 6684a tracepoint number, displays information about all the tracepoints
b37052ae
EZ
6685defined so far. For each tracepoint, the following information is
6686shown:
6687
6688@itemize @bullet
6689@item
6690its number
6691@item
6692whether it is enabled or disabled
6693@item
6694its address
6695@item
6696its passcount as given by the @code{passcount @var{n}} command
6697@item
6698its step count as given by the @code{while-stepping @var{n}} command
6699@item
6700where in the source files is the tracepoint set
6701@item
6702its action list as given by the @code{actions} command
6703@end itemize
6704
6705@smallexample
6706(@value{GDBP}) @b{info trace}
6707Num Enb Address PassC StepC What
67081 y 0x002117c4 0 0 <gdb_asm>
6826cf00
EZ
67092 y 0x0020dc64 0 0 in g_test at g_test.c:1375
67103 y 0x0020b1f4 0 0 in get_data at ../foo.c:41
b37052ae
EZ
6711(@value{GDBP})
6712@end smallexample
6713
6714@noindent
6715This command can be abbreviated @code{info tp}.
6716@end table
6717
6718@node Starting and Stopping Trace Experiment
6719@subsection Starting and Stopping Trace Experiment
6720
6721@table @code
6722@kindex tstart
6723@cindex start a new trace experiment
6724@cindex collected data discarded
6725@item tstart
6726This command takes no arguments. It starts the trace experiment, and
6727begins collecting data. This has the side effect of discarding all
6728the data collected in the trace buffer during the previous trace
6729experiment.
6730
6731@kindex tstop
6732@cindex stop a running trace experiment
6733@item tstop
6734This command takes no arguments. It ends the trace experiment, and
6735stops collecting data.
6736
6737@strong{Note:} a trace experiment and data collection may stop
6738automatically if any tracepoint's passcount is reached
6739(@pxref{Tracepoint Passcounts}), or if the trace buffer becomes full.
6740
6741@kindex tstatus
6742@cindex status of trace data collection
6743@cindex trace experiment, status of
6744@item tstatus
6745This command displays the status of the current trace data
6746collection.
6747@end table
6748
6749Here is an example of the commands we described so far:
6750
6751@smallexample
6752(@value{GDBP}) @b{trace gdb_c_test}
6753(@value{GDBP}) @b{actions}
6754Enter actions for tracepoint #1, one per line.
6755> collect $regs,$locals,$args
6756> while-stepping 11
6757 > collect $regs
6758 > end
6759> end
6760(@value{GDBP}) @b{tstart}
6761 [time passes @dots{}]
6762(@value{GDBP}) @b{tstop}
6763@end smallexample
6764
6765
6766@node Analyze Collected Data
6767@section Using the collected data
6768
6769After the tracepoint experiment ends, you use @value{GDBN} commands
6770for examining the trace data. The basic idea is that each tracepoint
6771collects a trace @dfn{snapshot} every time it is hit and another
6772snapshot every time it single-steps. All these snapshots are
6773consecutively numbered from zero and go into a buffer, and you can
6774examine them later. The way you examine them is to @dfn{focus} on a
6775specific trace snapshot. When the remote stub is focused on a trace
6776snapshot, it will respond to all @value{GDBN} requests for memory and
6777registers by reading from the buffer which belongs to that snapshot,
6778rather than from @emph{real} memory or registers of the program being
6779debugged. This means that @strong{all} @value{GDBN} commands
6780(@code{print}, @code{info registers}, @code{backtrace}, etc.) will
6781behave as if we were currently debugging the program state as it was
6782when the tracepoint occurred. Any requests for data that are not in
6783the buffer will fail.
6784
6785@menu
6786* tfind:: How to select a trace snapshot
6787* tdump:: How to display all data for a snapshot
6788* save-tracepoints:: How to save tracepoints for a future run
6789@end menu
6790
6791@node tfind
6792@subsection @code{tfind @var{n}}
6793
6794@kindex tfind
6795@cindex select trace snapshot
6796@cindex find trace snapshot
6797The basic command for selecting a trace snapshot from the buffer is
6798@code{tfind @var{n}}, which finds trace snapshot number @var{n},
6799counting from zero. If no argument @var{n} is given, the next
6800snapshot is selected.
6801
6802Here are the various forms of using the @code{tfind} command.
6803
6804@table @code
6805@item tfind start
6806Find the first snapshot in the buffer. This is a synonym for
6807@code{tfind 0} (since 0 is the number of the first snapshot).
6808
6809@item tfind none
6810Stop debugging trace snapshots, resume @emph{live} debugging.
6811
6812@item tfind end
6813Same as @samp{tfind none}.
6814
6815@item tfind
6816No argument means find the next trace snapshot.
6817
6818@item tfind -
6819Find the previous trace snapshot before the current one. This permits
6820retracing earlier steps.
6821
6822@item tfind tracepoint @var{num}
6823Find the next snapshot associated with tracepoint @var{num}. Search
6824proceeds forward from the last examined trace snapshot. If no
6825argument @var{num} is given, it means find the next snapshot collected
6826for the same tracepoint as the current snapshot.
6827
6828@item tfind pc @var{addr}
6829Find the next snapshot associated with the value @var{addr} of the
6830program counter. Search proceeds forward from the last examined trace
6831snapshot. If no argument @var{addr} is given, it means find the next
6832snapshot with the same value of PC as the current snapshot.
6833
6834@item tfind outside @var{addr1}, @var{addr2}
6835Find the next snapshot whose PC is outside the given range of
6836addresses.
6837
6838@item tfind range @var{addr1}, @var{addr2}
6839Find the next snapshot whose PC is between @var{addr1} and
6840@var{addr2}. @c FIXME: Is the range inclusive or exclusive?
6841
6842@item tfind line @r{[}@var{file}:@r{]}@var{n}
6843Find the next snapshot associated with the source line @var{n}. If
6844the optional argument @var{file} is given, refer to line @var{n} in
6845that source file. Search proceeds forward from the last examined
6846trace snapshot. If no argument @var{n} is given, it means find the
6847next line other than the one currently being examined; thus saying
6848@code{tfind line} repeatedly can appear to have the same effect as
6849stepping from line to line in a @emph{live} debugging session.
6850@end table
6851
6852The default arguments for the @code{tfind} commands are specifically
6853designed to make it easy to scan through the trace buffer. For
6854instance, @code{tfind} with no argument selects the next trace
6855snapshot, and @code{tfind -} with no argument selects the previous
6856trace snapshot. So, by giving one @code{tfind} command, and then
6857simply hitting @key{RET} repeatedly you can examine all the trace
6858snapshots in order. Or, by saying @code{tfind -} and then hitting
6859@key{RET} repeatedly you can examine the snapshots in reverse order.
6860The @code{tfind line} command with no argument selects the snapshot
6861for the next source line executed. The @code{tfind pc} command with
6862no argument selects the next snapshot with the same program counter
6863(PC) as the current frame. The @code{tfind tracepoint} command with
6864no argument selects the next trace snapshot collected by the same
6865tracepoint as the current one.
6866
6867In addition to letting you scan through the trace buffer manually,
6868these commands make it easy to construct @value{GDBN} scripts that
6869scan through the trace buffer and print out whatever collected data
6870you are interested in. Thus, if we want to examine the PC, FP, and SP
6871registers from each trace frame in the buffer, we can say this:
6872
6873@smallexample
6874(@value{GDBP}) @b{tfind start}
6875(@value{GDBP}) @b{while ($trace_frame != -1)}
6876> printf "Frame %d, PC = %08X, SP = %08X, FP = %08X\n", \
6877 $trace_frame, $pc, $sp, $fp
6878> tfind
6879> end
6880
6881Frame 0, PC = 0020DC64, SP = 0030BF3C, FP = 0030BF44
6882Frame 1, PC = 0020DC6C, SP = 0030BF38, FP = 0030BF44
6883Frame 2, PC = 0020DC70, SP = 0030BF34, FP = 0030BF44
6884Frame 3, PC = 0020DC74, SP = 0030BF30, FP = 0030BF44
6885Frame 4, PC = 0020DC78, SP = 0030BF2C, FP = 0030BF44
6886Frame 5, PC = 0020DC7C, SP = 0030BF28, FP = 0030BF44
6887Frame 6, PC = 0020DC80, SP = 0030BF24, FP = 0030BF44
6888Frame 7, PC = 0020DC84, SP = 0030BF20, FP = 0030BF44
6889Frame 8, PC = 0020DC88, SP = 0030BF1C, FP = 0030BF44
6890Frame 9, PC = 0020DC8E, SP = 0030BF18, FP = 0030BF44
6891Frame 10, PC = 00203F6C, SP = 0030BE3C, FP = 0030BF14
6892@end smallexample
6893
6894Or, if we want to examine the variable @code{X} at each source line in
6895the buffer:
6896
6897@smallexample
6898(@value{GDBP}) @b{tfind start}
6899(@value{GDBP}) @b{while ($trace_frame != -1)}
6900> printf "Frame %d, X == %d\n", $trace_frame, X
6901> tfind line
6902> end
6903
6904Frame 0, X = 1
6905Frame 7, X = 2
6906Frame 13, X = 255
6907@end smallexample
6908
6909@node tdump
6910@subsection @code{tdump}
6911@kindex tdump
6912@cindex dump all data collected at tracepoint
6913@cindex tracepoint data, display
6914
6915This command takes no arguments. It prints all the data collected at
6916the current trace snapshot.
6917
6918@smallexample
6919(@value{GDBP}) @b{trace 444}
6920(@value{GDBP}) @b{actions}
6921Enter actions for tracepoint #2, one per line:
6922> collect $regs, $locals, $args, gdb_long_test
6923> end
6924
6925(@value{GDBP}) @b{tstart}
6926
6927(@value{GDBP}) @b{tfind line 444}
6928#0 gdb_test (p1=0x11, p2=0x22, p3=0x33, p4=0x44, p5=0x55, p6=0x66)
6929at gdb_test.c:444
6930444 printp( "%s: arguments = 0x%X 0x%X 0x%X 0x%X 0x%X 0x%X\n", )
6931
6932(@value{GDBP}) @b{tdump}
6933Data collected at tracepoint 2, trace frame 1:
6934d0 0xc4aa0085 -995491707
6935d1 0x18 24
6936d2 0x80 128
6937d3 0x33 51
6938d4 0x71aea3d 119204413
6939d5 0x22 34
6940d6 0xe0 224
6941d7 0x380035 3670069
6942a0 0x19e24a 1696330
6943a1 0x3000668 50333288
6944a2 0x100 256
6945a3 0x322000 3284992
6946a4 0x3000698 50333336
6947a5 0x1ad3cc 1758156
6948fp 0x30bf3c 0x30bf3c
6949sp 0x30bf34 0x30bf34
6950ps 0x0 0
6951pc 0x20b2c8 0x20b2c8
6952fpcontrol 0x0 0
6953fpstatus 0x0 0
6954fpiaddr 0x0 0
6955p = 0x20e5b4 "gdb-test"
6956p1 = (void *) 0x11
6957p2 = (void *) 0x22
6958p3 = (void *) 0x33
6959p4 = (void *) 0x44
6960p5 = (void *) 0x55
6961p6 = (void *) 0x66
6962gdb_long_test = 17 '\021'
6963
6964(@value{GDBP})
6965@end smallexample
6966
6967@node save-tracepoints
6968@subsection @code{save-tracepoints @var{filename}}
6969@kindex save-tracepoints
6970@cindex save tracepoints for future sessions
6971
6972This command saves all current tracepoint definitions together with
6973their actions and passcounts, into a file @file{@var{filename}}
6974suitable for use in a later debugging session. To read the saved
6975tracepoint definitions, use the @code{source} command (@pxref{Command
6976Files}).
6977
6978@node Tracepoint Variables
6979@section Convenience Variables for Tracepoints
6980@cindex tracepoint variables
6981@cindex convenience variables for tracepoints
6982
6983@table @code
6984@vindex $trace_frame
6985@item (int) $trace_frame
6986The current trace snapshot (a.k.a.@: @dfn{frame}) number, or -1 if no
6987snapshot is selected.
6988
6989@vindex $tracepoint
6990@item (int) $tracepoint
6991The tracepoint for the current trace snapshot.
6992
6993@vindex $trace_line
6994@item (int) $trace_line
6995The line number for the current trace snapshot.
6996
6997@vindex $trace_file
6998@item (char []) $trace_file
6999The source file for the current trace snapshot.
7000
7001@vindex $trace_func
7002@item (char []) $trace_func
7003The name of the function containing @code{$tracepoint}.
7004@end table
7005
7006Note: @code{$trace_file} is not suitable for use in @code{printf},
7007use @code{output} instead.
7008
7009Here's a simple example of using these convenience variables for
7010stepping through all the trace snapshots and printing some of their
7011data.
7012
7013@smallexample
7014(@value{GDBP}) @b{tfind start}
7015
7016(@value{GDBP}) @b{while $trace_frame != -1}
7017> output $trace_file
7018> printf ", line %d (tracepoint #%d)\n", $trace_line, $tracepoint
7019> tfind
7020> end
7021@end smallexample
7022
df0cd8c5
JB
7023@node Overlays
7024@chapter Debugging Programs That Use Overlays
7025@cindex overlays
7026
7027If your program is too large to fit completely in your target system's
7028memory, you can sometimes use @dfn{overlays} to work around this
7029problem. @value{GDBN} provides some support for debugging programs that
7030use overlays.
7031
7032@menu
7033* How Overlays Work:: A general explanation of overlays.
7034* Overlay Commands:: Managing overlays in @value{GDBN}.
7035* Automatic Overlay Debugging:: @value{GDBN} can find out which overlays are
7036 mapped by asking the inferior.
7037* Overlay Sample Program:: A sample program using overlays.
7038@end menu
7039
7040@node How Overlays Work
7041@section How Overlays Work
7042@cindex mapped overlays
7043@cindex unmapped overlays
7044@cindex load address, overlay's
7045@cindex mapped address
7046@cindex overlay area
7047
7048Suppose you have a computer whose instruction address space is only 64
7049kilobytes long, but which has much more memory which can be accessed by
7050other means: special instructions, segment registers, or memory
7051management hardware, for example. Suppose further that you want to
7052adapt a program which is larger than 64 kilobytes to run on this system.
7053
7054One solution is to identify modules of your program which are relatively
7055independent, and need not call each other directly; call these modules
7056@dfn{overlays}. Separate the overlays from the main program, and place
7057their machine code in the larger memory. Place your main program in
7058instruction memory, but leave at least enough space there to hold the
7059largest overlay as well.
7060
7061Now, to call a function located in an overlay, you must first copy that
7062overlay's machine code from the large memory into the space set aside
7063for it in the instruction memory, and then jump to its entry point
7064there.
7065
c928edc0
AC
7066@c NB: In the below the mapped area's size is greater or equal to the
7067@c size of all overlays. This is intentional to remind the developer
7068@c that overlays don't necessarily need to be the same size.
7069
474c8240 7070@smallexample
df0cd8c5 7071@group
c928edc0
AC
7072 Data Instruction Larger
7073Address Space Address Space Address Space
7074+-----------+ +-----------+ +-----------+
7075| | | | | |
7076+-----------+ +-----------+ +-----------+<-- overlay 1
7077| program | | main | .----| overlay 1 | load address
7078| variables | | program | | +-----------+
7079| and heap | | | | | |
7080+-----------+ | | | +-----------+<-- overlay 2
7081| | +-----------+ | | | load address
7082+-----------+ | | | .-| overlay 2 |
7083 | | | | | |
7084 mapped --->+-----------+ | | +-----------+
7085 address | | | | | |
7086 | overlay | <-' | | |
7087 | area | <---' +-----------+<-- overlay 3
7088 | | <---. | | load address
7089 +-----------+ `--| overlay 3 |
7090 | | | |
7091 +-----------+ | |
7092 +-----------+
7093 | |
7094 +-----------+
7095
7096 @anchor{A code overlay}A code overlay
df0cd8c5 7097@end group
474c8240 7098@end smallexample
df0cd8c5 7099
c928edc0
AC
7100The diagram (@pxref{A code overlay}) shows a system with separate data
7101and instruction address spaces. To map an overlay, the program copies
7102its code from the larger address space to the instruction address space.
7103Since the overlays shown here all use the same mapped address, only one
7104may be mapped at a time. For a system with a single address space for
7105data and instructions, the diagram would be similar, except that the
7106program variables and heap would share an address space with the main
7107program and the overlay area.
df0cd8c5
JB
7108
7109An overlay loaded into instruction memory and ready for use is called a
7110@dfn{mapped} overlay; its @dfn{mapped address} is its address in the
7111instruction memory. An overlay not present (or only partially present)
7112in instruction memory is called @dfn{unmapped}; its @dfn{load address}
7113is its address in the larger memory. The mapped address is also called
7114the @dfn{virtual memory address}, or @dfn{VMA}; the load address is also
7115called the @dfn{load memory address}, or @dfn{LMA}.
7116
7117Unfortunately, overlays are not a completely transparent way to adapt a
7118program to limited instruction memory. They introduce a new set of
7119global constraints you must keep in mind as you design your program:
7120
7121@itemize @bullet
7122
7123@item
7124Before calling or returning to a function in an overlay, your program
7125must make sure that overlay is actually mapped. Otherwise, the call or
7126return will transfer control to the right address, but in the wrong
7127overlay, and your program will probably crash.
7128
7129@item
7130If the process of mapping an overlay is expensive on your system, you
7131will need to choose your overlays carefully to minimize their effect on
7132your program's performance.
7133
7134@item
7135The executable file you load onto your system must contain each
7136overlay's instructions, appearing at the overlay's load address, not its
7137mapped address. However, each overlay's instructions must be relocated
7138and its symbols defined as if the overlay were at its mapped address.
7139You can use GNU linker scripts to specify different load and relocation
7140addresses for pieces of your program; see @ref{Overlay Description,,,
7141ld.info, Using ld: the GNU linker}.
7142
7143@item
7144The procedure for loading executable files onto your system must be able
7145to load their contents into the larger address space as well as the
7146instruction and data spaces.
7147
7148@end itemize
7149
7150The overlay system described above is rather simple, and could be
7151improved in many ways:
7152
7153@itemize @bullet
7154
7155@item
7156If your system has suitable bank switch registers or memory management
7157hardware, you could use those facilities to make an overlay's load area
7158contents simply appear at their mapped address in instruction space.
7159This would probably be faster than copying the overlay to its mapped
7160area in the usual way.
7161
7162@item
7163If your overlays are small enough, you could set aside more than one
7164overlay area, and have more than one overlay mapped at a time.
7165
7166@item
7167You can use overlays to manage data, as well as instructions. In
7168general, data overlays are even less transparent to your design than
7169code overlays: whereas code overlays only require care when you call or
7170return to functions, data overlays require care every time you access
7171the data. Also, if you change the contents of a data overlay, you
7172must copy its contents back out to its load address before you can copy a
7173different data overlay into the same mapped area.
7174
7175@end itemize
7176
7177
7178@node Overlay Commands
7179@section Overlay Commands
7180
7181To use @value{GDBN}'s overlay support, each overlay in your program must
7182correspond to a separate section of the executable file. The section's
7183virtual memory address and load memory address must be the overlay's
7184mapped and load addresses. Identifying overlays with sections allows
7185@value{GDBN} to determine the appropriate address of a function or
7186variable, depending on whether the overlay is mapped or not.
7187
7188@value{GDBN}'s overlay commands all start with the word @code{overlay};
7189you can abbreviate this as @code{ov} or @code{ovly}. The commands are:
7190
7191@table @code
7192@item overlay off
7193@kindex overlay off
7194Disable @value{GDBN}'s overlay support. When overlay support is
7195disabled, @value{GDBN} assumes that all functions and variables are
7196always present at their mapped addresses. By default, @value{GDBN}'s
7197overlay support is disabled.
7198
7199@item overlay manual
7200@kindex overlay manual
7201@cindex manual overlay debugging
7202Enable @dfn{manual} overlay debugging. In this mode, @value{GDBN}
7203relies on you to tell it which overlays are mapped, and which are not,
7204using the @code{overlay map-overlay} and @code{overlay unmap-overlay}
7205commands described below.
7206
7207@item overlay map-overlay @var{overlay}
7208@itemx overlay map @var{overlay}
7209@kindex overlay map-overlay
7210@cindex map an overlay
7211Tell @value{GDBN} that @var{overlay} is now mapped; @var{overlay} must
7212be the name of the object file section containing the overlay. When an
7213overlay is mapped, @value{GDBN} assumes it can find the overlay's
7214functions and variables at their mapped addresses. @value{GDBN} assumes
7215that any other overlays whose mapped ranges overlap that of
7216@var{overlay} are now unmapped.
7217
7218@item overlay unmap-overlay @var{overlay}
7219@itemx overlay unmap @var{overlay}
7220@kindex overlay unmap-overlay
7221@cindex unmap an overlay
7222Tell @value{GDBN} that @var{overlay} is no longer mapped; @var{overlay}
7223must be the name of the object file section containing the overlay.
7224When an overlay is unmapped, @value{GDBN} assumes it can find the
7225overlay's functions and variables at their load addresses.
7226
7227@item overlay auto
7228@kindex overlay auto
7229Enable @dfn{automatic} overlay debugging. In this mode, @value{GDBN}
7230consults a data structure the overlay manager maintains in the inferior
7231to see which overlays are mapped. For details, see @ref{Automatic
7232Overlay Debugging}.
7233
7234@item overlay load-target
7235@itemx overlay load
7236@kindex overlay load-target
7237@cindex reloading the overlay table
7238Re-read the overlay table from the inferior. Normally, @value{GDBN}
7239re-reads the table @value{GDBN} automatically each time the inferior
7240stops, so this command should only be necessary if you have changed the
7241overlay mapping yourself using @value{GDBN}. This command is only
7242useful when using automatic overlay debugging.
7243
7244@item overlay list-overlays
7245@itemx overlay list
7246@cindex listing mapped overlays
7247Display a list of the overlays currently mapped, along with their mapped
7248addresses, load addresses, and sizes.
7249
7250@end table
7251
7252Normally, when @value{GDBN} prints a code address, it includes the name
7253of the function the address falls in:
7254
474c8240 7255@smallexample
df0cd8c5
JB
7256(gdb) print main
7257$3 = @{int ()@} 0x11a0 <main>
474c8240 7258@end smallexample
df0cd8c5
JB
7259@noindent
7260When overlay debugging is enabled, @value{GDBN} recognizes code in
7261unmapped overlays, and prints the names of unmapped functions with
7262asterisks around them. For example, if @code{foo} is a function in an
7263unmapped overlay, @value{GDBN} prints it this way:
7264
474c8240 7265@smallexample
df0cd8c5
JB
7266(gdb) overlay list
7267No sections are mapped.
7268(gdb) print foo
7269$5 = @{int (int)@} 0x100000 <*foo*>
474c8240 7270@end smallexample
df0cd8c5
JB
7271@noindent
7272When @code{foo}'s overlay is mapped, @value{GDBN} prints the function's
7273name normally:
7274
474c8240 7275@smallexample
df0cd8c5
JB
7276(gdb) overlay list
7277Section .ov.foo.text, loaded at 0x100000 - 0x100034,
7278 mapped at 0x1016 - 0x104a
7279(gdb) print foo
7280$6 = @{int (int)@} 0x1016 <foo>
474c8240 7281@end smallexample
df0cd8c5
JB
7282
7283When overlay debugging is enabled, @value{GDBN} can find the correct
7284address for functions and variables in an overlay, whether or not the
7285overlay is mapped. This allows most @value{GDBN} commands, like
7286@code{break} and @code{disassemble}, to work normally, even on unmapped
7287code. However, @value{GDBN}'s breakpoint support has some limitations:
7288
7289@itemize @bullet
7290@item
7291@cindex breakpoints in overlays
7292@cindex overlays, setting breakpoints in
7293You can set breakpoints in functions in unmapped overlays, as long as
7294@value{GDBN} can write to the overlay at its load address.
7295@item
7296@value{GDBN} can not set hardware or simulator-based breakpoints in
7297unmapped overlays. However, if you set a breakpoint at the end of your
7298overlay manager (and tell @value{GDBN} which overlays are now mapped, if
7299you are using manual overlay management), @value{GDBN} will re-set its
7300breakpoints properly.
7301@end itemize
7302
7303
7304@node Automatic Overlay Debugging
7305@section Automatic Overlay Debugging
7306@cindex automatic overlay debugging
7307
7308@value{GDBN} can automatically track which overlays are mapped and which
7309are not, given some simple co-operation from the overlay manager in the
7310inferior. If you enable automatic overlay debugging with the
7311@code{overlay auto} command (@pxref{Overlay Commands}), @value{GDBN}
7312looks in the inferior's memory for certain variables describing the
7313current state of the overlays.
7314
7315Here are the variables your overlay manager must define to support
7316@value{GDBN}'s automatic overlay debugging:
7317
7318@table @asis
7319
7320@item @code{_ovly_table}:
7321This variable must be an array of the following structures:
7322
474c8240 7323@smallexample
df0cd8c5
JB
7324struct
7325@{
7326 /* The overlay's mapped address. */
7327 unsigned long vma;
7328
7329 /* The size of the overlay, in bytes. */
7330 unsigned long size;
7331
7332 /* The overlay's load address. */
7333 unsigned long lma;
7334
7335 /* Non-zero if the overlay is currently mapped;
7336 zero otherwise. */
7337 unsigned long mapped;
7338@}
474c8240 7339@end smallexample
df0cd8c5
JB
7340
7341@item @code{_novlys}:
7342This variable must be a four-byte signed integer, holding the total
7343number of elements in @code{_ovly_table}.
7344
7345@end table
7346
7347To decide whether a particular overlay is mapped or not, @value{GDBN}
7348looks for an entry in @w{@code{_ovly_table}} whose @code{vma} and
7349@code{lma} members equal the VMA and LMA of the overlay's section in the
7350executable file. When @value{GDBN} finds a matching entry, it consults
7351the entry's @code{mapped} member to determine whether the overlay is
7352currently mapped.
7353
81d46470 7354In addition, your overlay manager may define a function called
def71bfa 7355@code{_ovly_debug_event}. If this function is defined, @value{GDBN}
81d46470
MS
7356will silently set a breakpoint there. If the overlay manager then
7357calls this function whenever it has changed the overlay table, this
7358will enable @value{GDBN} to accurately keep track of which overlays
7359are in program memory, and update any breakpoints that may be set
7360in overlays. This will allow breakpoints to work even if the
7361overlays are kept in ROM or other non-writable memory while they
7362are not being executed.
df0cd8c5
JB
7363
7364@node Overlay Sample Program
7365@section Overlay Sample Program
7366@cindex overlay example program
7367
7368When linking a program which uses overlays, you must place the overlays
7369at their load addresses, while relocating them to run at their mapped
7370addresses. To do this, you must write a linker script (@pxref{Overlay
7371Description,,, ld.info, Using ld: the GNU linker}). Unfortunately,
7372since linker scripts are specific to a particular host system, target
7373architecture, and target memory layout, this manual cannot provide
7374portable sample code demonstrating @value{GDBN}'s overlay support.
7375
7376However, the @value{GDBN} source distribution does contain an overlaid
7377program, with linker scripts for a few systems, as part of its test
7378suite. The program consists of the following files from
7379@file{gdb/testsuite/gdb.base}:
7380
7381@table @file
7382@item overlays.c
7383The main program file.
7384@item ovlymgr.c
7385A simple overlay manager, used by @file{overlays.c}.
7386@item foo.c
7387@itemx bar.c
7388@itemx baz.c
7389@itemx grbx.c
7390Overlay modules, loaded and used by @file{overlays.c}.
7391@item d10v.ld
7392@itemx m32r.ld
7393Linker scripts for linking the test program on the @code{d10v-elf}
7394and @code{m32r-elf} targets.
7395@end table
7396
7397You can build the test program using the @code{d10v-elf} GCC
7398cross-compiler like this:
7399
474c8240 7400@smallexample
df0cd8c5
JB
7401$ d10v-elf-gcc -g -c overlays.c
7402$ d10v-elf-gcc -g -c ovlymgr.c
7403$ d10v-elf-gcc -g -c foo.c
7404$ d10v-elf-gcc -g -c bar.c
7405$ d10v-elf-gcc -g -c baz.c
7406$ d10v-elf-gcc -g -c grbx.c
7407$ d10v-elf-gcc -g overlays.o ovlymgr.o foo.o bar.o \
7408 baz.o grbx.o -Wl,-Td10v.ld -o overlays
474c8240 7409@end smallexample
df0cd8c5
JB
7410
7411The build process is identical for any other architecture, except that
7412you must substitute the appropriate compiler and linker script for the
7413target system for @code{d10v-elf-gcc} and @code{d10v.ld}.
7414
7415
6d2ebf8b 7416@node Languages
c906108c
SS
7417@chapter Using @value{GDBN} with Different Languages
7418@cindex languages
7419
c906108c
SS
7420Although programming languages generally have common aspects, they are
7421rarely expressed in the same manner. For instance, in ANSI C,
7422dereferencing a pointer @code{p} is accomplished by @code{*p}, but in
7423Modula-2, it is accomplished by @code{p^}. Values can also be
5d161b24 7424represented (and displayed) differently. Hex numbers in C appear as
c906108c 7425@samp{0x1ae}, while in Modula-2 they appear as @samp{1AEH}.
c906108c
SS
7426
7427@cindex working language
7428Language-specific information is built into @value{GDBN} for some languages,
7429allowing you to express operations like the above in your program's
7430native language, and allowing @value{GDBN} to output values in a manner
7431consistent with the syntax of your program's native language. The
7432language you use to build expressions is called the @dfn{working
7433language}.
7434
7435@menu
7436* Setting:: Switching between source languages
7437* Show:: Displaying the language
c906108c 7438* Checks:: Type and range checks
c906108c
SS
7439* Support:: Supported languages
7440@end menu
7441
6d2ebf8b 7442@node Setting
c906108c
SS
7443@section Switching between source languages
7444
7445There are two ways to control the working language---either have @value{GDBN}
7446set it automatically, or select it manually yourself. You can use the
7447@code{set language} command for either purpose. On startup, @value{GDBN}
7448defaults to setting the language automatically. The working language is
7449used to determine how expressions you type are interpreted, how values
7450are printed, etc.
7451
7452In addition to the working language, every source file that
7453@value{GDBN} knows about has its own working language. For some object
7454file formats, the compiler might indicate which language a particular
7455source file is in. However, most of the time @value{GDBN} infers the
7456language from the name of the file. The language of a source file
b37052ae 7457controls whether C@t{++} names are demangled---this way @code{backtrace} can
c906108c 7458show each frame appropriately for its own language. There is no way to
d4f3574e
SS
7459set the language of a source file from within @value{GDBN}, but you can
7460set the language associated with a filename extension. @xref{Show, ,
7461Displaying the language}.
c906108c
SS
7462
7463This is most commonly a problem when you use a program, such
5d161b24 7464as @code{cfront} or @code{f2c}, that generates C but is written in
c906108c
SS
7465another language. In that case, make the
7466program use @code{#line} directives in its C output; that way
7467@value{GDBN} will know the correct language of the source code of the original
7468program, and will display that source code, not the generated C code.
7469
7470@menu
7471* Filenames:: Filename extensions and languages.
7472* Manually:: Setting the working language manually
7473* Automatically:: Having @value{GDBN} infer the source language
7474@end menu
7475
6d2ebf8b 7476@node Filenames
c906108c
SS
7477@subsection List of filename extensions and languages
7478
7479If a source file name ends in one of the following extensions, then
7480@value{GDBN} infers that its language is the one indicated.
7481
7482@table @file
7483
7484@item .c
7485C source file
7486
7487@item .C
7488@itemx .cc
7489@itemx .cp
7490@itemx .cpp
7491@itemx .cxx
7492@itemx .c++
b37052ae 7493C@t{++} source file
c906108c 7494
b37303ee
AF
7495@item .m
7496Objective-C source file
7497
c906108c
SS
7498@item .f
7499@itemx .F
7500Fortran source file
7501
c906108c
SS
7502@item .mod
7503Modula-2 source file
c906108c
SS
7504
7505@item .s
7506@itemx .S
7507Assembler source file. This actually behaves almost like C, but
7508@value{GDBN} does not skip over function prologues when stepping.
7509@end table
7510
7511In addition, you may set the language associated with a filename
7512extension. @xref{Show, , Displaying the language}.
7513
6d2ebf8b 7514@node Manually
c906108c
SS
7515@subsection Setting the working language
7516
7517If you allow @value{GDBN} to set the language automatically,
7518expressions are interpreted the same way in your debugging session and
7519your program.
7520
7521@kindex set language
7522If you wish, you may set the language manually. To do this, issue the
7523command @samp{set language @var{lang}}, where @var{lang} is the name of
5d161b24 7524a language, such as
c906108c 7525@code{c} or @code{modula-2}.
c906108c
SS
7526For a list of the supported languages, type @samp{set language}.
7527
c906108c
SS
7528Setting the language manually prevents @value{GDBN} from updating the working
7529language automatically. This can lead to confusion if you try
7530to debug a program when the working language is not the same as the
7531source language, when an expression is acceptable to both
7532languages---but means different things. For instance, if the current
7533source file were written in C, and @value{GDBN} was parsing Modula-2, a
7534command such as:
7535
474c8240 7536@smallexample
c906108c 7537print a = b + c
474c8240 7538@end smallexample
c906108c
SS
7539
7540@noindent
7541might not have the effect you intended. In C, this means to add
7542@code{b} and @code{c} and place the result in @code{a}. The result
7543printed would be the value of @code{a}. In Modula-2, this means to compare
7544@code{a} to the result of @code{b+c}, yielding a @code{BOOLEAN} value.
c906108c 7545
6d2ebf8b 7546@node Automatically
c906108c
SS
7547@subsection Having @value{GDBN} infer the source language
7548
7549To have @value{GDBN} set the working language automatically, use
7550@samp{set language local} or @samp{set language auto}. @value{GDBN}
7551then infers the working language. That is, when your program stops in a
7552frame (usually by encountering a breakpoint), @value{GDBN} sets the
7553working language to the language recorded for the function in that
7554frame. If the language for a frame is unknown (that is, if the function
7555or block corresponding to the frame was defined in a source file that
7556does not have a recognized extension), the current working language is
7557not changed, and @value{GDBN} issues a warning.
7558
7559This may not seem necessary for most programs, which are written
7560entirely in one source language. However, program modules and libraries
7561written in one source language can be used by a main program written in
7562a different source language. Using @samp{set language auto} in this
7563case frees you from having to set the working language manually.
7564
6d2ebf8b 7565@node Show
c906108c 7566@section Displaying the language
c906108c
SS
7567
7568The following commands help you find out which language is the
7569working language, and also what language source files were written in.
7570
7571@kindex show language
d4f3574e
SS
7572@kindex info frame@r{, show the source language}
7573@kindex info source@r{, show the source language}
c906108c
SS
7574@table @code
7575@item show language
7576Display the current working language. This is the
7577language you can use with commands such as @code{print} to
7578build and compute expressions that may involve variables in your program.
7579
7580@item info frame
5d161b24 7581Display the source language for this frame. This language becomes the
c906108c 7582working language if you use an identifier from this frame.
5d161b24 7583@xref{Frame Info, ,Information about a frame}, to identify the other
c906108c
SS
7584information listed here.
7585
7586@item info source
7587Display the source language of this source file.
5d161b24 7588@xref{Symbols, ,Examining the Symbol Table}, to identify the other
c906108c
SS
7589information listed here.
7590@end table
7591
7592In unusual circumstances, you may have source files with extensions
7593not in the standard list. You can then set the extension associated
7594with a language explicitly:
7595
7596@kindex set extension-language
7597@kindex info extensions
7598@table @code
7599@item set extension-language @var{.ext} @var{language}
7600Set source files with extension @var{.ext} to be assumed to be in
7601the source language @var{language}.
7602
7603@item info extensions
7604List all the filename extensions and the associated languages.
7605@end table
7606
6d2ebf8b 7607@node Checks
c906108c
SS
7608@section Type and range checking
7609
7610@quotation
7611@emph{Warning:} In this release, the @value{GDBN} commands for type and range
7612checking are included, but they do not yet have any effect. This
7613section documents the intended facilities.
7614@end quotation
7615@c FIXME remove warning when type/range code added
7616
7617Some languages are designed to guard you against making seemingly common
7618errors through a series of compile- and run-time checks. These include
7619checking the type of arguments to functions and operators, and making
7620sure mathematical overflows are caught at run time. Checks such as
7621these help to ensure a program's correctness once it has been compiled
7622by eliminating type mismatches, and providing active checks for range
7623errors when your program is running.
7624
7625@value{GDBN} can check for conditions like the above if you wish.
7626Although @value{GDBN} does not check the statements in your program, it
7627can check expressions entered directly into @value{GDBN} for evaluation via
7628the @code{print} command, for example. As with the working language,
7629@value{GDBN} can also decide whether or not to check automatically based on
7630your program's source language. @xref{Support, ,Supported languages},
7631for the default settings of supported languages.
7632
7633@menu
7634* Type Checking:: An overview of type checking
7635* Range Checking:: An overview of range checking
7636@end menu
7637
7638@cindex type checking
7639@cindex checks, type
6d2ebf8b 7640@node Type Checking
c906108c
SS
7641@subsection An overview of type checking
7642
7643Some languages, such as Modula-2, are strongly typed, meaning that the
7644arguments to operators and functions have to be of the correct type,
7645otherwise an error occurs. These checks prevent type mismatch
7646errors from ever causing any run-time problems. For example,
7647
7648@smallexample
76491 + 2 @result{} 3
7650@exdent but
7651@error{} 1 + 2.3
7652@end smallexample
7653
7654The second example fails because the @code{CARDINAL} 1 is not
7655type-compatible with the @code{REAL} 2.3.
7656
5d161b24
DB
7657For the expressions you use in @value{GDBN} commands, you can tell the
7658@value{GDBN} type checker to skip checking;
7659to treat any mismatches as errors and abandon the expression;
7660or to only issue warnings when type mismatches occur,
c906108c
SS
7661but evaluate the expression anyway. When you choose the last of
7662these, @value{GDBN} evaluates expressions like the second example above, but
7663also issues a warning.
7664
5d161b24
DB
7665Even if you turn type checking off, there may be other reasons
7666related to type that prevent @value{GDBN} from evaluating an expression.
7667For instance, @value{GDBN} does not know how to add an @code{int} and
7668a @code{struct foo}. These particular type errors have nothing to do
7669with the language in use, and usually arise from expressions, such as
c906108c
SS
7670the one described above, which make little sense to evaluate anyway.
7671
7672Each language defines to what degree it is strict about type. For
7673instance, both Modula-2 and C require the arguments to arithmetical
7674operators to be numbers. In C, enumerated types and pointers can be
7675represented as numbers, so that they are valid arguments to mathematical
7676operators. @xref{Support, ,Supported languages}, for further
7677details on specific languages.
7678
7679@value{GDBN} provides some additional commands for controlling the type checker:
7680
d4f3574e 7681@kindex set check@r{, type}
c906108c
SS
7682@kindex set check type
7683@kindex show check type
7684@table @code
7685@item set check type auto
7686Set type checking on or off based on the current working language.
7687@xref{Support, ,Supported languages}, for the default settings for
7688each language.
7689
7690@item set check type on
7691@itemx set check type off
7692Set type checking on or off, overriding the default setting for the
7693current working language. Issue a warning if the setting does not
7694match the language default. If any type mismatches occur in
d4f3574e 7695evaluating an expression while type checking is on, @value{GDBN} prints a
c906108c
SS
7696message and aborts evaluation of the expression.
7697
7698@item set check type warn
7699Cause the type checker to issue warnings, but to always attempt to
7700evaluate the expression. Evaluating the expression may still
7701be impossible for other reasons. For example, @value{GDBN} cannot add
7702numbers and structures.
7703
7704@item show type
5d161b24 7705Show the current setting of the type checker, and whether or not @value{GDBN}
c906108c
SS
7706is setting it automatically.
7707@end table
7708
7709@cindex range checking
7710@cindex checks, range
6d2ebf8b 7711@node Range Checking
c906108c
SS
7712@subsection An overview of range checking
7713
7714In some languages (such as Modula-2), it is an error to exceed the
7715bounds of a type; this is enforced with run-time checks. Such range
7716checking is meant to ensure program correctness by making sure
7717computations do not overflow, or indices on an array element access do
7718not exceed the bounds of the array.
7719
7720For expressions you use in @value{GDBN} commands, you can tell
7721@value{GDBN} to treat range errors in one of three ways: ignore them,
7722always treat them as errors and abandon the expression, or issue
7723warnings but evaluate the expression anyway.
7724
7725A range error can result from numerical overflow, from exceeding an
7726array index bound, or when you type a constant that is not a member
7727of any type. Some languages, however, do not treat overflows as an
7728error. In many implementations of C, mathematical overflow causes the
7729result to ``wrap around'' to lower values---for example, if @var{m} is
7730the largest integer value, and @var{s} is the smallest, then
7731
474c8240 7732@smallexample
c906108c 7733@var{m} + 1 @result{} @var{s}
474c8240 7734@end smallexample
c906108c
SS
7735
7736This, too, is specific to individual languages, and in some cases
7737specific to individual compilers or machines. @xref{Support, ,
7738Supported languages}, for further details on specific languages.
7739
7740@value{GDBN} provides some additional commands for controlling the range checker:
7741
d4f3574e 7742@kindex set check@r{, range}
c906108c
SS
7743@kindex set check range
7744@kindex show check range
7745@table @code
7746@item set check range auto
7747Set range checking on or off based on the current working language.
7748@xref{Support, ,Supported languages}, for the default settings for
7749each language.
7750
7751@item set check range on
7752@itemx set check range off
7753Set range checking on or off, overriding the default setting for the
7754current working language. A warning is issued if the setting does not
c3f6f71d
JM
7755match the language default. If a range error occurs and range checking is on,
7756then a message is printed and evaluation of the expression is aborted.
c906108c
SS
7757
7758@item set check range warn
7759Output messages when the @value{GDBN} range checker detects a range error,
7760but attempt to evaluate the expression anyway. Evaluating the
7761expression may still be impossible for other reasons, such as accessing
7762memory that the process does not own (a typical example from many Unix
7763systems).
7764
7765@item show range
7766Show the current setting of the range checker, and whether or not it is
7767being set automatically by @value{GDBN}.
7768@end table
c906108c 7769
6d2ebf8b 7770@node Support
c906108c 7771@section Supported languages
c906108c 7772
b37303ee 7773@value{GDBN} supports C, C@t{++}, Objective-C, Fortran, Java, assembly, and Modula-2.
cce74817 7774@c This is false ...
c906108c
SS
7775Some @value{GDBN} features may be used in expressions regardless of the
7776language you use: the @value{GDBN} @code{@@} and @code{::} operators,
7777and the @samp{@{type@}addr} construct (@pxref{Expressions,
7778,Expressions}) can be used with the constructs of any supported
7779language.
7780
7781The following sections detail to what degree each source language is
7782supported by @value{GDBN}. These sections are not meant to be language
7783tutorials or references, but serve only as a reference guide to what the
7784@value{GDBN} expression parser accepts, and what input and output
7785formats should look like for different languages. There are many good
7786books written on each of these languages; please look to these for a
7787language reference or tutorial.
7788
c906108c 7789@menu
b37303ee
AF
7790* C:: C and C@t{++}
7791* Objective-C:: Objective-C
7792* Modula-2:: Modula-2
c906108c
SS
7793@end menu
7794
6d2ebf8b 7795@node C
b37052ae 7796@subsection C and C@t{++}
7a292a7a 7797
b37052ae
EZ
7798@cindex C and C@t{++}
7799@cindex expressions in C or C@t{++}
c906108c 7800
b37052ae 7801Since C and C@t{++} are so closely related, many features of @value{GDBN} apply
c906108c
SS
7802to both languages. Whenever this is the case, we discuss those languages
7803together.
7804
41afff9a
EZ
7805@cindex C@t{++}
7806@cindex @code{g++}, @sc{gnu} C@t{++} compiler
b37052ae
EZ
7807@cindex @sc{gnu} C@t{++}
7808The C@t{++} debugging facilities are jointly implemented by the C@t{++}
7809compiler and @value{GDBN}. Therefore, to debug your C@t{++} code
7810effectively, you must compile your C@t{++} programs with a supported
7811C@t{++} compiler, such as @sc{gnu} @code{g++}, or the HP ANSI C@t{++}
c906108c
SS
7812compiler (@code{aCC}).
7813
0179ffac
DC
7814For best results when using @sc{gnu} C@t{++}, use the DWARF 2 debugging
7815format; if it doesn't work on your system, try the stabs+ debugging
7816format. You can select those formats explicitly with the @code{g++}
7817command-line options @option{-gdwarf-2} and @option{-gstabs+}.
7818@xref{Debugging Options,,Options for Debugging Your Program or @sc{gnu}
7819CC, gcc.info, Using @sc{gnu} CC}.
c906108c 7820
c906108c 7821@menu
b37052ae
EZ
7822* C Operators:: C and C@t{++} operators
7823* C Constants:: C and C@t{++} constants
7824* C plus plus expressions:: C@t{++} expressions
7825* C Defaults:: Default settings for C and C@t{++}
7826* C Checks:: C and C@t{++} type and range checks
c906108c 7827* Debugging C:: @value{GDBN} and C
b37052ae 7828* Debugging C plus plus:: @value{GDBN} features for C@t{++}
c906108c 7829@end menu
c906108c 7830
6d2ebf8b 7831@node C Operators
b37052ae 7832@subsubsection C and C@t{++} operators
7a292a7a 7833
b37052ae 7834@cindex C and C@t{++} operators
c906108c
SS
7835
7836Operators must be defined on values of specific types. For instance,
7837@code{+} is defined on numbers, but not on structures. Operators are
5d161b24 7838often defined on groups of types.
c906108c 7839
b37052ae 7840For the purposes of C and C@t{++}, the following definitions hold:
c906108c
SS
7841
7842@itemize @bullet
53a5351d 7843
c906108c 7844@item
c906108c 7845@emph{Integral types} include @code{int} with any of its storage-class
b37052ae 7846specifiers; @code{char}; @code{enum}; and, for C@t{++}, @code{bool}.
c906108c
SS
7847
7848@item
d4f3574e
SS
7849@emph{Floating-point types} include @code{float}, @code{double}, and
7850@code{long double} (if supported by the target platform).
c906108c
SS
7851
7852@item
53a5351d 7853@emph{Pointer types} include all types defined as @code{(@var{type} *)}.
c906108c
SS
7854
7855@item
7856@emph{Scalar types} include all of the above.
53a5351d 7857
c906108c
SS
7858@end itemize
7859
7860@noindent
7861The following operators are supported. They are listed here
7862in order of increasing precedence:
7863
7864@table @code
7865@item ,
7866The comma or sequencing operator. Expressions in a comma-separated list
7867are evaluated from left to right, with the result of the entire
7868expression being the last expression evaluated.
7869
7870@item =
7871Assignment. The value of an assignment expression is the value
7872assigned. Defined on scalar types.
7873
7874@item @var{op}=
7875Used in an expression of the form @w{@code{@var{a} @var{op}= @var{b}}},
7876and translated to @w{@code{@var{a} = @var{a op b}}}.
d4f3574e 7877@w{@code{@var{op}=}} and @code{=} have the same precedence.
c906108c
SS
7878@var{op} is any one of the operators @code{|}, @code{^}, @code{&},
7879@code{<<}, @code{>>}, @code{+}, @code{-}, @code{*}, @code{/}, @code{%}.
7880
7881@item ?:
7882The ternary operator. @code{@var{a} ? @var{b} : @var{c}} can be thought
7883of as: if @var{a} then @var{b} else @var{c}. @var{a} should be of an
7884integral type.
7885
7886@item ||
7887Logical @sc{or}. Defined on integral types.
7888
7889@item &&
7890Logical @sc{and}. Defined on integral types.
7891
7892@item |
7893Bitwise @sc{or}. Defined on integral types.
7894
7895@item ^
7896Bitwise exclusive-@sc{or}. Defined on integral types.
7897
7898@item &
7899Bitwise @sc{and}. Defined on integral types.
7900
7901@item ==@r{, }!=
7902Equality and inequality. Defined on scalar types. The value of these
7903expressions is 0 for false and non-zero for true.
7904
7905@item <@r{, }>@r{, }<=@r{, }>=
7906Less than, greater than, less than or equal, greater than or equal.
7907Defined on scalar types. The value of these expressions is 0 for false
7908and non-zero for true.
7909
7910@item <<@r{, }>>
7911left shift, and right shift. Defined on integral types.
7912
7913@item @@
7914The @value{GDBN} ``artificial array'' operator (@pxref{Expressions, ,Expressions}).
7915
7916@item +@r{, }-
7917Addition and subtraction. Defined on integral types, floating-point types and
7918pointer types.
7919
7920@item *@r{, }/@r{, }%
7921Multiplication, division, and modulus. Multiplication and division are
7922defined on integral and floating-point types. Modulus is defined on
7923integral types.
7924
7925@item ++@r{, }--
7926Increment and decrement. When appearing before a variable, the
7927operation is performed before the variable is used in an expression;
7928when appearing after it, the variable's value is used before the
7929operation takes place.
7930
7931@item *
7932Pointer dereferencing. Defined on pointer types. Same precedence as
7933@code{++}.
7934
7935@item &
7936Address operator. Defined on variables. Same precedence as @code{++}.
7937
b37052ae
EZ
7938For debugging C@t{++}, @value{GDBN} implements a use of @samp{&} beyond what is
7939allowed in the C@t{++} language itself: you can use @samp{&(&@var{ref})}
c906108c 7940(or, if you prefer, simply @samp{&&@var{ref}}) to examine the address
b37052ae 7941where a C@t{++} reference variable (declared with @samp{&@var{ref}}) is
c906108c 7942stored.
c906108c
SS
7943
7944@item -
7945Negative. Defined on integral and floating-point types. Same
7946precedence as @code{++}.
7947
7948@item !
7949Logical negation. Defined on integral types. Same precedence as
7950@code{++}.
7951
7952@item ~
7953Bitwise complement operator. Defined on integral types. Same precedence as
7954@code{++}.
7955
7956
7957@item .@r{, }->
7958Structure member, and pointer-to-structure member. For convenience,
7959@value{GDBN} regards the two as equivalent, choosing whether to dereference a
7960pointer based on the stored type information.
7961Defined on @code{struct} and @code{union} data.
7962
c906108c
SS
7963@item .*@r{, }->*
7964Dereferences of pointers to members.
c906108c
SS
7965
7966@item []
7967Array indexing. @code{@var{a}[@var{i}]} is defined as
7968@code{*(@var{a}+@var{i})}. Same precedence as @code{->}.
7969
7970@item ()
7971Function parameter list. Same precedence as @code{->}.
7972
c906108c 7973@item ::
b37052ae 7974C@t{++} scope resolution operator. Defined on @code{struct}, @code{union},
7a292a7a 7975and @code{class} types.
c906108c
SS
7976
7977@item ::
7a292a7a
SS
7978Doubled colons also represent the @value{GDBN} scope operator
7979(@pxref{Expressions, ,Expressions}). Same precedence as @code{::},
7980above.
c906108c
SS
7981@end table
7982
c906108c
SS
7983If an operator is redefined in the user code, @value{GDBN} usually
7984attempts to invoke the redefined version instead of using the operator's
7985predefined meaning.
c906108c 7986
c906108c 7987@menu
5d161b24 7988* C Constants::
c906108c
SS
7989@end menu
7990
6d2ebf8b 7991@node C Constants
b37052ae 7992@subsubsection C and C@t{++} constants
c906108c 7993
b37052ae 7994@cindex C and C@t{++} constants
c906108c 7995
b37052ae 7996@value{GDBN} allows you to express the constants of C and C@t{++} in the
c906108c 7997following ways:
c906108c
SS
7998
7999@itemize @bullet
8000@item
8001Integer constants are a sequence of digits. Octal constants are
6ca652b0
EZ
8002specified by a leading @samp{0} (i.e.@: zero), and hexadecimal constants
8003by a leading @samp{0x} or @samp{0X}. Constants may also end with a letter
c906108c
SS
8004@samp{l}, specifying that the constant should be treated as a
8005@code{long} value.
8006
8007@item
8008Floating point constants are a sequence of digits, followed by a decimal
8009point, followed by a sequence of digits, and optionally followed by an
8010exponent. An exponent is of the form:
8011@samp{@w{e@r{[[}+@r{]|}-@r{]}@var{nnn}}}, where @var{nnn} is another
8012sequence of digits. The @samp{+} is optional for positive exponents.
d4f3574e
SS
8013A floating-point constant may also end with a letter @samp{f} or
8014@samp{F}, specifying that the constant should be treated as being of
8015the @code{float} (as opposed to the default @code{double}) type; or with
8016a letter @samp{l} or @samp{L}, which specifies a @code{long double}
8017constant.
c906108c
SS
8018
8019@item
8020Enumerated constants consist of enumerated identifiers, or their
8021integral equivalents.
8022
8023@item
8024Character constants are a single character surrounded by single quotes
8025(@code{'}), or a number---the ordinal value of the corresponding character
d4f3574e 8026(usually its @sc{ascii} value). Within quotes, the single character may
c906108c
SS
8027be represented by a letter or by @dfn{escape sequences}, which are of
8028the form @samp{\@var{nnn}}, where @var{nnn} is the octal representation
8029of the character's ordinal value; or of the form @samp{\@var{x}}, where
8030@samp{@var{x}} is a predefined special character---for example,
8031@samp{\n} for newline.
8032
8033@item
96a2c332
SS
8034String constants are a sequence of character constants surrounded by
8035double quotes (@code{"}). Any valid character constant (as described
8036above) may appear. Double quotes within the string must be preceded by
8037a backslash, so for instance @samp{"a\"b'c"} is a string of five
8038characters.
c906108c
SS
8039
8040@item
8041Pointer constants are an integral value. You can also write pointers
8042to constants using the C operator @samp{&}.
8043
8044@item
8045Array constants are comma-separated lists surrounded by braces @samp{@{}
8046and @samp{@}}; for example, @samp{@{1,2,3@}} is a three-element array of
8047integers, @samp{@{@{1,2@}, @{3,4@}, @{5,6@}@}} is a three-by-two array,
8048and @samp{@{&"hi", &"there", &"fred"@}} is a three-element array of pointers.
8049@end itemize
8050
c906108c 8051@menu
5d161b24
DB
8052* C plus plus expressions::
8053* C Defaults::
8054* C Checks::
c906108c 8055
5d161b24 8056* Debugging C::
c906108c
SS
8057@end menu
8058
6d2ebf8b 8059@node C plus plus expressions
b37052ae
EZ
8060@subsubsection C@t{++} expressions
8061
8062@cindex expressions in C@t{++}
8063@value{GDBN} expression handling can interpret most C@t{++} expressions.
8064
0179ffac
DC
8065@cindex debugging C@t{++} programs
8066@cindex C@t{++} compilers
8067@cindex debug formats and C@t{++}
8068@cindex @value{NGCC} and C@t{++}
c906108c 8069@quotation
b37052ae 8070@emph{Warning:} @value{GDBN} can only debug C@t{++} code if you use the
0179ffac
DC
8071proper compiler and the proper debug format. Currently, @value{GDBN}
8072works best when debugging C@t{++} code that is compiled with
8073@value{NGCC} 2.95.3 or with @value{NGCC} 3.1 or newer, using the options
8074@option{-gdwarf-2} or @option{-gstabs+}. DWARF 2 is preferred over
8075stabs+. Most configurations of @value{NGCC} emit either DWARF 2 or
8076stabs+ as their default debug format, so you usually don't need to
8077specify a debug format explicitly. Other compilers and/or debug formats
8078are likely to work badly or not at all when using @value{GDBN} to debug
8079C@t{++} code.
c906108c 8080@end quotation
c906108c
SS
8081
8082@enumerate
8083
8084@cindex member functions
8085@item
8086Member function calls are allowed; you can use expressions like
8087
474c8240 8088@smallexample
c906108c 8089count = aml->GetOriginal(x, y)
474c8240 8090@end smallexample
c906108c 8091
41afff9a 8092@vindex this@r{, inside C@t{++} member functions}
b37052ae 8093@cindex namespace in C@t{++}
c906108c
SS
8094@item
8095While a member function is active (in the selected stack frame), your
8096expressions have the same namespace available as the member function;
8097that is, @value{GDBN} allows implicit references to the class instance
b37052ae 8098pointer @code{this} following the same rules as C@t{++}.
c906108c 8099
c906108c 8100@cindex call overloaded functions
d4f3574e 8101@cindex overloaded functions, calling
b37052ae 8102@cindex type conversions in C@t{++}
c906108c
SS
8103@item
8104You can call overloaded functions; @value{GDBN} resolves the function
d4f3574e 8105call to the right definition, with some restrictions. @value{GDBN} does not
c906108c
SS
8106perform overload resolution involving user-defined type conversions,
8107calls to constructors, or instantiations of templates that do not exist
8108in the program. It also cannot handle ellipsis argument lists or
8109default arguments.
8110
8111It does perform integral conversions and promotions, floating-point
8112promotions, arithmetic conversions, pointer conversions, conversions of
8113class objects to base classes, and standard conversions such as those of
8114functions or arrays to pointers; it requires an exact match on the
8115number of function arguments.
8116
8117Overload resolution is always performed, unless you have specified
8118@code{set overload-resolution off}. @xref{Debugging C plus plus,
b37052ae 8119,@value{GDBN} features for C@t{++}}.
c906108c 8120
d4f3574e 8121You must specify @code{set overload-resolution off} in order to use an
c906108c
SS
8122explicit function signature to call an overloaded function, as in
8123@smallexample
8124p 'foo(char,int)'('x', 13)
8125@end smallexample
d4f3574e 8126
c906108c 8127The @value{GDBN} command-completion facility can simplify this;
d4f3574e 8128see @ref{Completion, ,Command completion}.
c906108c 8129
c906108c
SS
8130@cindex reference declarations
8131@item
b37052ae
EZ
8132@value{GDBN} understands variables declared as C@t{++} references; you can use
8133them in expressions just as you do in C@t{++} source---they are automatically
c906108c
SS
8134dereferenced.
8135
8136In the parameter list shown when @value{GDBN} displays a frame, the values of
8137reference variables are not displayed (unlike other variables); this
8138avoids clutter, since references are often used for large structures.
8139The @emph{address} of a reference variable is always shown, unless
8140you have specified @samp{set print address off}.
8141
8142@item
b37052ae 8143@value{GDBN} supports the C@t{++} name resolution operator @code{::}---your
c906108c
SS
8144expressions can use it just as expressions in your program do. Since
8145one scope may be defined in another, you can use @code{::} repeatedly if
8146necessary, for example in an expression like
8147@samp{@var{scope1}::@var{scope2}::@var{name}}. @value{GDBN} also allows
b37052ae 8148resolving name scope by reference to source files, in both C and C@t{++}
c906108c
SS
8149debugging (@pxref{Variables, ,Program variables}).
8150@end enumerate
8151
b37052ae 8152In addition, when used with HP's C@t{++} compiler, @value{GDBN} supports
53a5351d
JM
8153calling virtual functions correctly, printing out virtual bases of
8154objects, calling functions in a base subobject, casting objects, and
8155invoking user-defined operators.
c906108c 8156
6d2ebf8b 8157@node C Defaults
b37052ae 8158@subsubsection C and C@t{++} defaults
7a292a7a 8159
b37052ae 8160@cindex C and C@t{++} defaults
c906108c 8161
c906108c
SS
8162If you allow @value{GDBN} to set type and range checking automatically, they
8163both default to @code{off} whenever the working language changes to
b37052ae 8164C or C@t{++}. This happens regardless of whether you or @value{GDBN}
c906108c 8165selects the working language.
c906108c
SS
8166
8167If you allow @value{GDBN} to set the language automatically, it
8168recognizes source files whose names end with @file{.c}, @file{.C}, or
8169@file{.cc}, etc, and when @value{GDBN} enters code compiled from one of
b37052ae 8170these files, it sets the working language to C or C@t{++}.
c906108c
SS
8171@xref{Automatically, ,Having @value{GDBN} infer the source language},
8172for further details.
8173
c906108c
SS
8174@c Type checking is (a) primarily motivated by Modula-2, and (b)
8175@c unimplemented. If (b) changes, it might make sense to let this node
8176@c appear even if Mod-2 does not, but meanwhile ignore it. roland 16jul93.
7a292a7a 8177
6d2ebf8b 8178@node C Checks
b37052ae 8179@subsubsection C and C@t{++} type and range checks
7a292a7a 8180
b37052ae 8181@cindex C and C@t{++} checks
c906108c 8182
b37052ae 8183By default, when @value{GDBN} parses C or C@t{++} expressions, type checking
c906108c
SS
8184is not used. However, if you turn type checking on, @value{GDBN}
8185considers two variables type equivalent if:
8186
8187@itemize @bullet
8188@item
8189The two variables are structured and have the same structure, union, or
8190enumerated tag.
8191
8192@item
8193The two variables have the same type name, or types that have been
8194declared equivalent through @code{typedef}.
8195
8196@ignore
8197@c leaving this out because neither J Gilmore nor R Pesch understand it.
8198@c FIXME--beers?
8199@item
8200The two @code{struct}, @code{union}, or @code{enum} variables are
8201declared in the same declaration. (Note: this may not be true for all C
8202compilers.)
8203@end ignore
8204@end itemize
8205
8206Range checking, if turned on, is done on mathematical operations. Array
8207indices are not checked, since they are often used to index a pointer
8208that is not itself an array.
c906108c 8209
6d2ebf8b 8210@node Debugging C
c906108c 8211@subsubsection @value{GDBN} and C
c906108c
SS
8212
8213The @code{set print union} and @code{show print union} commands apply to
8214the @code{union} type. When set to @samp{on}, any @code{union} that is
7a292a7a
SS
8215inside a @code{struct} or @code{class} is also printed. Otherwise, it
8216appears as @samp{@{...@}}.
c906108c
SS
8217
8218The @code{@@} operator aids in the debugging of dynamic arrays, formed
8219with pointers and a memory allocation function. @xref{Expressions,
8220,Expressions}.
8221
c906108c 8222@menu
5d161b24 8223* Debugging C plus plus::
c906108c
SS
8224@end menu
8225
6d2ebf8b 8226@node Debugging C plus plus
b37052ae 8227@subsubsection @value{GDBN} features for C@t{++}
c906108c 8228
b37052ae 8229@cindex commands for C@t{++}
7a292a7a 8230
b37052ae
EZ
8231Some @value{GDBN} commands are particularly useful with C@t{++}, and some are
8232designed specifically for use with C@t{++}. Here is a summary:
c906108c
SS
8233
8234@table @code
8235@cindex break in overloaded functions
8236@item @r{breakpoint menus}
8237When you want a breakpoint in a function whose name is overloaded,
8238@value{GDBN} breakpoint menus help you specify which function definition
8239you want. @xref{Breakpoint Menus,,Breakpoint menus}.
8240
b37052ae 8241@cindex overloading in C@t{++}
c906108c
SS
8242@item rbreak @var{regex}
8243Setting breakpoints using regular expressions is helpful for setting
8244breakpoints on overloaded functions that are not members of any special
8245classes.
8246@xref{Set Breaks, ,Setting breakpoints}.
8247
b37052ae 8248@cindex C@t{++} exception handling
c906108c
SS
8249@item catch throw
8250@itemx catch catch
b37052ae 8251Debug C@t{++} exception handling using these commands. @xref{Set
c906108c
SS
8252Catchpoints, , Setting catchpoints}.
8253
8254@cindex inheritance
8255@item ptype @var{typename}
8256Print inheritance relationships as well as other information for type
8257@var{typename}.
8258@xref{Symbols, ,Examining the Symbol Table}.
8259
b37052ae 8260@cindex C@t{++} symbol display
c906108c
SS
8261@item set print demangle
8262@itemx show print demangle
8263@itemx set print asm-demangle
8264@itemx show print asm-demangle
b37052ae
EZ
8265Control whether C@t{++} symbols display in their source form, both when
8266displaying code as C@t{++} source and when displaying disassemblies.
c906108c
SS
8267@xref{Print Settings, ,Print settings}.
8268
8269@item set print object
8270@itemx show print object
8271Choose whether to print derived (actual) or declared types of objects.
8272@xref{Print Settings, ,Print settings}.
8273
8274@item set print vtbl
8275@itemx show print vtbl
8276Control the format for printing virtual function tables.
8277@xref{Print Settings, ,Print settings}.
c906108c 8278(The @code{vtbl} commands do not work on programs compiled with the HP
b37052ae 8279ANSI C@t{++} compiler (@code{aCC}).)
c906108c
SS
8280
8281@kindex set overload-resolution
d4f3574e 8282@cindex overloaded functions, overload resolution
c906108c 8283@item set overload-resolution on
b37052ae 8284Enable overload resolution for C@t{++} expression evaluation. The default
c906108c
SS
8285is on. For overloaded functions, @value{GDBN} evaluates the arguments
8286and searches for a function whose signature matches the argument types,
b37052ae 8287using the standard C@t{++} conversion rules (see @ref{C plus plus expressions, ,C@t{++}
d4f3574e 8288expressions}, for details). If it cannot find a match, it emits a
c906108c
SS
8289message.
8290
8291@item set overload-resolution off
b37052ae 8292Disable overload resolution for C@t{++} expression evaluation. For
c906108c
SS
8293overloaded functions that are not class member functions, @value{GDBN}
8294chooses the first function of the specified name that it finds in the
8295symbol table, whether or not its arguments are of the correct type. For
8296overloaded functions that are class member functions, @value{GDBN}
8297searches for a function whose signature @emph{exactly} matches the
8298argument types.
c906108c
SS
8299
8300@item @r{Overloaded symbol names}
8301You can specify a particular definition of an overloaded symbol, using
b37052ae 8302the same notation that is used to declare such symbols in C@t{++}: type
c906108c
SS
8303@code{@var{symbol}(@var{types})} rather than just @var{symbol}. You can
8304also use the @value{GDBN} command-line word completion facilities to list the
8305available choices, or to finish the type list for you.
8306@xref{Completion,, Command completion}, for details on how to do this.
8307@end table
c906108c 8308
b37303ee
AF
8309@node Objective-C
8310@subsection Objective-C
8311
8312@cindex Objective-C
8313This section provides information about some commands and command
8314options that are useful for debugging Objective-C code.
8315
8316@menu
8317* Method Names in Commands::
8318* The Print Command with Objective-C::
8319@end menu
8320
8321@node Method Names in Commands, The Print Command with Objective-C, Objective-C, Objective-C
8322@subsubsection Method Names in Commands
8323
8324The following commands have been extended to accept Objective-C method
8325names as line specifications:
8326
8327@kindex clear@r{, and Objective-C}
8328@kindex break@r{, and Objective-C}
8329@kindex info line@r{, and Objective-C}
8330@kindex jump@r{, and Objective-C}
8331@kindex list@r{, and Objective-C}
8332@itemize
8333@item @code{clear}
8334@item @code{break}
8335@item @code{info line}
8336@item @code{jump}
8337@item @code{list}
8338@end itemize
8339
8340A fully qualified Objective-C method name is specified as
8341
8342@smallexample
8343-[@var{Class} @var{methodName}]
8344@end smallexample
8345
8346where the minus sign is used to indicate an instance method and a plus
8347sign (not shown) is used to indicate a class method. The
8348class name @var{Class} and method name @var{methoName} are enclosed in
8349brackets, similar to the way messages are specified in Objective-C source
8350code. For example, to set a breakpoint at the @code{create} instance method of
8351class @code{Fruit} in the program currently being debugged, enter:
8352
8353@smallexample
8354break -[Fruit create]
8355@end smallexample
8356
8357To list ten program lines around the @code{initialize} class method,
8358enter:
8359
8360@smallexample
8361list +[NSText initialize]
8362@end smallexample
8363
8364In the current version of GDB, the plus or minus sign is required. In
8365future versions of GDB, the plus or minus sign will be optional, but you
8366can use it to narrow the search. It is also possible to specify just a
8367method name:
8368
8369@smallexample
8370break create
8371@end smallexample
8372
8373You must specify the complete method name, including any colons. If
8374your program's source files contain more than one @code{create} method,
8375you'll be presented with a numbered list of classes that implement that
8376method. Indicate your choice by number, or type @samp{0} to exit if
8377none apply.
8378
8379As another example, to clear a breakpoint established at the
8380@code{makeKeyAndOrderFront:} method of the @code{NSWindow} class, enter:
8381
8382@smallexample
8383clear -[NSWindow makeKeyAndOrderFront:]
8384@end smallexample
8385
8386@node The Print Command with Objective-C
8387@subsubsection The Print Command With Objective-C
8388
8389The print command has also been extended to accept methods. For example:
8390
8391@smallexample
8392print -[object hash]
8393@end smallexample
8394
8395@cindex print an Objective-C object description
8396will tell gdb to send the -hash message to object and print the
8397result. Also an additional command has been added, @code{print-object}
8398or @code{po} for short, which is meant to print the description of an
8399object. However, this command may only work with certain Objective-C
8400libraries that have a particular hook function, called
8401@code{_NSPrintForDebugger} defined.
8402
8403@node Modula-2, , Objective-C, Support
c906108c 8404@subsection Modula-2
7a292a7a 8405
d4f3574e 8406@cindex Modula-2, @value{GDBN} support
c906108c
SS
8407
8408The extensions made to @value{GDBN} to support Modula-2 only support
8409output from the @sc{gnu} Modula-2 compiler (which is currently being
8410developed). Other Modula-2 compilers are not currently supported, and
8411attempting to debug executables produced by them is most likely
8412to give an error as @value{GDBN} reads in the executable's symbol
8413table.
8414
8415@cindex expressions in Modula-2
8416@menu
8417* M2 Operators:: Built-in operators
8418* Built-In Func/Proc:: Built-in functions and procedures
8419* M2 Constants:: Modula-2 constants
8420* M2 Defaults:: Default settings for Modula-2
8421* Deviations:: Deviations from standard Modula-2
8422* M2 Checks:: Modula-2 type and range checks
8423* M2 Scope:: The scope operators @code{::} and @code{.}
8424* GDB/M2:: @value{GDBN} and Modula-2
8425@end menu
8426
6d2ebf8b 8427@node M2 Operators
c906108c
SS
8428@subsubsection Operators
8429@cindex Modula-2 operators
8430
8431Operators must be defined on values of specific types. For instance,
8432@code{+} is defined on numbers, but not on structures. Operators are
8433often defined on groups of types. For the purposes of Modula-2, the
8434following definitions hold:
8435
8436@itemize @bullet
8437
8438@item
8439@emph{Integral types} consist of @code{INTEGER}, @code{CARDINAL}, and
8440their subranges.
8441
8442@item
8443@emph{Character types} consist of @code{CHAR} and its subranges.
8444
8445@item
8446@emph{Floating-point types} consist of @code{REAL}.
8447
8448@item
8449@emph{Pointer types} consist of anything declared as @code{POINTER TO
8450@var{type}}.
8451
8452@item
8453@emph{Scalar types} consist of all of the above.
8454
8455@item
8456@emph{Set types} consist of @code{SET} and @code{BITSET} types.
8457
8458@item
8459@emph{Boolean types} consist of @code{BOOLEAN}.
8460@end itemize
8461
8462@noindent
8463The following operators are supported, and appear in order of
8464increasing precedence:
8465
8466@table @code
8467@item ,
8468Function argument or array index separator.
8469
8470@item :=
8471Assignment. The value of @var{var} @code{:=} @var{value} is
8472@var{value}.
8473
8474@item <@r{, }>
8475Less than, greater than on integral, floating-point, or enumerated
8476types.
8477
8478@item <=@r{, }>=
96a2c332 8479Less than or equal to, greater than or equal to
c906108c
SS
8480on integral, floating-point and enumerated types, or set inclusion on
8481set types. Same precedence as @code{<}.
8482
8483@item =@r{, }<>@r{, }#
8484Equality and two ways of expressing inequality, valid on scalar types.
8485Same precedence as @code{<}. In @value{GDBN} scripts, only @code{<>} is
8486available for inequality, since @code{#} conflicts with the script
8487comment character.
8488
8489@item IN
8490Set membership. Defined on set types and the types of their members.
8491Same precedence as @code{<}.
8492
8493@item OR
8494Boolean disjunction. Defined on boolean types.
8495
8496@item AND@r{, }&
d4f3574e 8497Boolean conjunction. Defined on boolean types.
c906108c
SS
8498
8499@item @@
8500The @value{GDBN} ``artificial array'' operator (@pxref{Expressions, ,Expressions}).
8501
8502@item +@r{, }-
8503Addition and subtraction on integral and floating-point types, or union
8504and difference on set types.
8505
8506@item *
8507Multiplication on integral and floating-point types, or set intersection
8508on set types.
8509
8510@item /
8511Division on floating-point types, or symmetric set difference on set
8512types. Same precedence as @code{*}.
8513
8514@item DIV@r{, }MOD
8515Integer division and remainder. Defined on integral types. Same
8516precedence as @code{*}.
8517
8518@item -
8519Negative. Defined on @code{INTEGER} and @code{REAL} data.
8520
8521@item ^
8522Pointer dereferencing. Defined on pointer types.
8523
8524@item NOT
8525Boolean negation. Defined on boolean types. Same precedence as
8526@code{^}.
8527
8528@item .
8529@code{RECORD} field selector. Defined on @code{RECORD} data. Same
8530precedence as @code{^}.
8531
8532@item []
8533Array indexing. Defined on @code{ARRAY} data. Same precedence as @code{^}.
8534
8535@item ()
8536Procedure argument list. Defined on @code{PROCEDURE} objects. Same precedence
8537as @code{^}.
8538
8539@item ::@r{, }.
8540@value{GDBN} and Modula-2 scope operators.
8541@end table
8542
8543@quotation
8544@emph{Warning:} Sets and their operations are not yet supported, so @value{GDBN}
8545treats the use of the operator @code{IN}, or the use of operators
8546@code{+}, @code{-}, @code{*}, @code{/}, @code{=}, , @code{<>}, @code{#},
8547@code{<=}, and @code{>=} on sets as an error.
8548@end quotation
8549
cb51c4e0 8550
6d2ebf8b 8551@node Built-In Func/Proc
c906108c 8552@subsubsection Built-in functions and procedures
cb51c4e0 8553@cindex Modula-2 built-ins
c906108c
SS
8554
8555Modula-2 also makes available several built-in procedures and functions.
8556In describing these, the following metavariables are used:
8557
8558@table @var
8559
8560@item a
8561represents an @code{ARRAY} variable.
8562
8563@item c
8564represents a @code{CHAR} constant or variable.
8565
8566@item i
8567represents a variable or constant of integral type.
8568
8569@item m
8570represents an identifier that belongs to a set. Generally used in the
8571same function with the metavariable @var{s}. The type of @var{s} should
8572be @code{SET OF @var{mtype}} (where @var{mtype} is the type of @var{m}).
8573
8574@item n
8575represents a variable or constant of integral or floating-point type.
8576
8577@item r
8578represents a variable or constant of floating-point type.
8579
8580@item t
8581represents a type.
8582
8583@item v
8584represents a variable.
8585
8586@item x
8587represents a variable or constant of one of many types. See the
8588explanation of the function for details.
8589@end table
8590
8591All Modula-2 built-in procedures also return a result, described below.
8592
8593@table @code
8594@item ABS(@var{n})
8595Returns the absolute value of @var{n}.
8596
8597@item CAP(@var{c})
8598If @var{c} is a lower case letter, it returns its upper case
c3f6f71d 8599equivalent, otherwise it returns its argument.
c906108c
SS
8600
8601@item CHR(@var{i})
8602Returns the character whose ordinal value is @var{i}.
8603
8604@item DEC(@var{v})
c3f6f71d 8605Decrements the value in the variable @var{v} by one. Returns the new value.
c906108c
SS
8606
8607@item DEC(@var{v},@var{i})
8608Decrements the value in the variable @var{v} by @var{i}. Returns the
8609new value.
8610
8611@item EXCL(@var{m},@var{s})
8612Removes the element @var{m} from the set @var{s}. Returns the new
8613set.
8614
8615@item FLOAT(@var{i})
8616Returns the floating point equivalent of the integer @var{i}.
8617
8618@item HIGH(@var{a})
8619Returns the index of the last member of @var{a}.
8620
8621@item INC(@var{v})
c3f6f71d 8622Increments the value in the variable @var{v} by one. Returns the new value.
c906108c
SS
8623
8624@item INC(@var{v},@var{i})
8625Increments the value in the variable @var{v} by @var{i}. Returns the
8626new value.
8627
8628@item INCL(@var{m},@var{s})
8629Adds the element @var{m} to the set @var{s} if it is not already
8630there. Returns the new set.
8631
8632@item MAX(@var{t})
8633Returns the maximum value of the type @var{t}.
8634
8635@item MIN(@var{t})
8636Returns the minimum value of the type @var{t}.
8637
8638@item ODD(@var{i})
8639Returns boolean TRUE if @var{i} is an odd number.
8640
8641@item ORD(@var{x})
8642Returns the ordinal value of its argument. For example, the ordinal
c3f6f71d
JM
8643value of a character is its @sc{ascii} value (on machines supporting the
8644@sc{ascii} character set). @var{x} must be of an ordered type, which include
c906108c
SS
8645integral, character and enumerated types.
8646
8647@item SIZE(@var{x})
8648Returns the size of its argument. @var{x} can be a variable or a type.
8649
8650@item TRUNC(@var{r})
8651Returns the integral part of @var{r}.
8652
8653@item VAL(@var{t},@var{i})
8654Returns the member of the type @var{t} whose ordinal value is @var{i}.
8655@end table
8656
8657@quotation
8658@emph{Warning:} Sets and their operations are not yet supported, so
8659@value{GDBN} treats the use of procedures @code{INCL} and @code{EXCL} as
8660an error.
8661@end quotation
8662
8663@cindex Modula-2 constants
6d2ebf8b 8664@node M2 Constants
c906108c
SS
8665@subsubsection Constants
8666
8667@value{GDBN} allows you to express the constants of Modula-2 in the following
8668ways:
8669
8670@itemize @bullet
8671
8672@item
8673Integer constants are simply a sequence of digits. When used in an
8674expression, a constant is interpreted to be type-compatible with the
8675rest of the expression. Hexadecimal integers are specified by a
8676trailing @samp{H}, and octal integers by a trailing @samp{B}.
8677
8678@item
8679Floating point constants appear as a sequence of digits, followed by a
8680decimal point and another sequence of digits. An optional exponent can
8681then be specified, in the form @samp{E@r{[}+@r{|}-@r{]}@var{nnn}}, where
8682@samp{@r{[}+@r{|}-@r{]}@var{nnn}} is the desired exponent. All of the
8683digits of the floating point constant must be valid decimal (base 10)
8684digits.
8685
8686@item
8687Character constants consist of a single character enclosed by a pair of
8688like quotes, either single (@code{'}) or double (@code{"}). They may
c3f6f71d 8689also be expressed by their ordinal value (their @sc{ascii} value, usually)
c906108c
SS
8690followed by a @samp{C}.
8691
8692@item
8693String constants consist of a sequence of characters enclosed by a
8694pair of like quotes, either single (@code{'}) or double (@code{"}).
8695Escape sequences in the style of C are also allowed. @xref{C
b37052ae 8696Constants, ,C and C@t{++} constants}, for a brief explanation of escape
c906108c
SS
8697sequences.
8698
8699@item
8700Enumerated constants consist of an enumerated identifier.
8701
8702@item
8703Boolean constants consist of the identifiers @code{TRUE} and
8704@code{FALSE}.
8705
8706@item
8707Pointer constants consist of integral values only.
8708
8709@item
8710Set constants are not yet supported.
8711@end itemize
8712
6d2ebf8b 8713@node M2 Defaults
c906108c
SS
8714@subsubsection Modula-2 defaults
8715@cindex Modula-2 defaults
8716
8717If type and range checking are set automatically by @value{GDBN}, they
8718both default to @code{on} whenever the working language changes to
d4f3574e 8719Modula-2. This happens regardless of whether you or @value{GDBN}
c906108c
SS
8720selected the working language.
8721
8722If you allow @value{GDBN} to set the language automatically, then entering
8723code compiled from a file whose name ends with @file{.mod} sets the
d4f3574e 8724working language to Modula-2. @xref{Automatically, ,Having @value{GDBN} set
c906108c
SS
8725the language automatically}, for further details.
8726
6d2ebf8b 8727@node Deviations
c906108c
SS
8728@subsubsection Deviations from standard Modula-2
8729@cindex Modula-2, deviations from
8730
8731A few changes have been made to make Modula-2 programs easier to debug.
8732This is done primarily via loosening its type strictness:
8733
8734@itemize @bullet
8735@item
8736Unlike in standard Modula-2, pointer constants can be formed by
8737integers. This allows you to modify pointer variables during
8738debugging. (In standard Modula-2, the actual address contained in a
8739pointer variable is hidden from you; it can only be modified
8740through direct assignment to another pointer variable or expression that
8741returned a pointer.)
8742
8743@item
8744C escape sequences can be used in strings and characters to represent
8745non-printable characters. @value{GDBN} prints out strings with these
8746escape sequences embedded. Single non-printable characters are
8747printed using the @samp{CHR(@var{nnn})} format.
8748
8749@item
8750The assignment operator (@code{:=}) returns the value of its right-hand
8751argument.
8752
8753@item
8754All built-in procedures both modify @emph{and} return their argument.
8755@end itemize
8756
6d2ebf8b 8757@node M2 Checks
c906108c
SS
8758@subsubsection Modula-2 type and range checks
8759@cindex Modula-2 checks
8760
8761@quotation
8762@emph{Warning:} in this release, @value{GDBN} does not yet perform type or
8763range checking.
8764@end quotation
8765@c FIXME remove warning when type/range checks added
8766
8767@value{GDBN} considers two Modula-2 variables type equivalent if:
8768
8769@itemize @bullet
8770@item
8771They are of types that have been declared equivalent via a @code{TYPE
8772@var{t1} = @var{t2}} statement
8773
8774@item
8775They have been declared on the same line. (Note: This is true of the
8776@sc{gnu} Modula-2 compiler, but it may not be true of other compilers.)
8777@end itemize
8778
8779As long as type checking is enabled, any attempt to combine variables
8780whose types are not equivalent is an error.
8781
8782Range checking is done on all mathematical operations, assignment, array
8783index bounds, and all built-in functions and procedures.
8784
6d2ebf8b 8785@node M2 Scope
c906108c
SS
8786@subsubsection The scope operators @code{::} and @code{.}
8787@cindex scope
41afff9a 8788@cindex @code{.}, Modula-2 scope operator
c906108c
SS
8789@cindex colon, doubled as scope operator
8790@ifinfo
41afff9a 8791@vindex colon-colon@r{, in Modula-2}
c906108c
SS
8792@c Info cannot handle :: but TeX can.
8793@end ifinfo
8794@iftex
41afff9a 8795@vindex ::@r{, in Modula-2}
c906108c
SS
8796@end iftex
8797
8798There are a few subtle differences between the Modula-2 scope operator
8799(@code{.}) and the @value{GDBN} scope operator (@code{::}). The two have
8800similar syntax:
8801
474c8240 8802@smallexample
c906108c
SS
8803
8804@var{module} . @var{id}
8805@var{scope} :: @var{id}
474c8240 8806@end smallexample
c906108c
SS
8807
8808@noindent
8809where @var{scope} is the name of a module or a procedure,
8810@var{module} the name of a module, and @var{id} is any declared
8811identifier within your program, except another module.
8812
8813Using the @code{::} operator makes @value{GDBN} search the scope
8814specified by @var{scope} for the identifier @var{id}. If it is not
8815found in the specified scope, then @value{GDBN} searches all scopes
8816enclosing the one specified by @var{scope}.
8817
8818Using the @code{.} operator makes @value{GDBN} search the current scope for
8819the identifier specified by @var{id} that was imported from the
8820definition module specified by @var{module}. With this operator, it is
8821an error if the identifier @var{id} was not imported from definition
8822module @var{module}, or if @var{id} is not an identifier in
8823@var{module}.
8824
6d2ebf8b 8825@node GDB/M2
c906108c
SS
8826@subsubsection @value{GDBN} and Modula-2
8827
8828Some @value{GDBN} commands have little use when debugging Modula-2 programs.
8829Five subcommands of @code{set print} and @code{show print} apply
b37052ae 8830specifically to C and C@t{++}: @samp{vtbl}, @samp{demangle},
c906108c 8831@samp{asm-demangle}, @samp{object}, and @samp{union}. The first four
b37052ae 8832apply to C@t{++}, and the last to the C @code{union} type, which has no direct
c906108c
SS
8833analogue in Modula-2.
8834
8835The @code{@@} operator (@pxref{Expressions, ,Expressions}), while available
d4f3574e 8836with any language, is not useful with Modula-2. Its
c906108c 8837intent is to aid the debugging of @dfn{dynamic arrays}, which cannot be
b37052ae 8838created in Modula-2 as they can in C or C@t{++}. However, because an
c906108c 8839address can be specified by an integral constant, the construct
d4f3574e 8840@samp{@{@var{type}@}@var{adrexp}} is still useful.
c906108c
SS
8841
8842@cindex @code{#} in Modula-2
8843In @value{GDBN} scripts, the Modula-2 inequality operator @code{#} is
8844interpreted as the beginning of a comment. Use @code{<>} instead.
c906108c 8845
6d2ebf8b 8846@node Symbols
c906108c
SS
8847@chapter Examining the Symbol Table
8848
d4f3574e 8849The commands described in this chapter allow you to inquire about the
c906108c
SS
8850symbols (names of variables, functions and types) defined in your
8851program. This information is inherent in the text of your program and
8852does not change as your program executes. @value{GDBN} finds it in your
8853program's symbol table, in the file indicated when you started @value{GDBN}
8854(@pxref{File Options, ,Choosing files}), or by one of the
8855file-management commands (@pxref{Files, ,Commands to specify files}).
8856
8857@cindex symbol names
8858@cindex names of symbols
8859@cindex quoting names
8860Occasionally, you may need to refer to symbols that contain unusual
8861characters, which @value{GDBN} ordinarily treats as word delimiters. The
8862most frequent case is in referring to static variables in other
8863source files (@pxref{Variables,,Program variables}). File names
8864are recorded in object files as debugging symbols, but @value{GDBN} would
8865ordinarily parse a typical file name, like @file{foo.c}, as the three words
8866@samp{foo} @samp{.} @samp{c}. To allow @value{GDBN} to recognize
8867@samp{foo.c} as a single symbol, enclose it in single quotes; for example,
8868
474c8240 8869@smallexample
c906108c 8870p 'foo.c'::x
474c8240 8871@end smallexample
c906108c
SS
8872
8873@noindent
8874looks up the value of @code{x} in the scope of the file @file{foo.c}.
8875
8876@table @code
8877@kindex info address
b37052ae 8878@cindex address of a symbol
c906108c
SS
8879@item info address @var{symbol}
8880Describe where the data for @var{symbol} is stored. For a register
8881variable, this says which register it is kept in. For a non-register
8882local variable, this prints the stack-frame offset at which the variable
8883is always stored.
8884
8885Note the contrast with @samp{print &@var{symbol}}, which does not work
8886at all for a register variable, and for a stack local variable prints
8887the exact address of the current instantiation of the variable.
8888
3d67e040 8889@kindex info symbol
b37052ae 8890@cindex symbol from address
3d67e040
EZ
8891@item info symbol @var{addr}
8892Print the name of a symbol which is stored at the address @var{addr}.
8893If no symbol is stored exactly at @var{addr}, @value{GDBN} prints the
8894nearest symbol and an offset from it:
8895
474c8240 8896@smallexample
3d67e040
EZ
8897(@value{GDBP}) info symbol 0x54320
8898_initialize_vx + 396 in section .text
474c8240 8899@end smallexample
3d67e040
EZ
8900
8901@noindent
8902This is the opposite of the @code{info address} command. You can use
8903it to find out the name of a variable or a function given its address.
8904
c906108c 8905@kindex whatis
d4f3574e
SS
8906@item whatis @var{expr}
8907Print the data type of expression @var{expr}. @var{expr} is not
c906108c
SS
8908actually evaluated, and any side-effecting operations (such as
8909assignments or function calls) inside it do not take place.
8910@xref{Expressions, ,Expressions}.
8911
8912@item whatis
8913Print the data type of @code{$}, the last value in the value history.
8914
8915@kindex ptype
8916@item ptype @var{typename}
8917Print a description of data type @var{typename}. @var{typename} may be
7a292a7a
SS
8918the name of a type, or for C code it may have the form @samp{class
8919@var{class-name}}, @samp{struct @var{struct-tag}}, @samp{union
8920@var{union-tag}} or @samp{enum @var{enum-tag}}.
c906108c 8921
d4f3574e 8922@item ptype @var{expr}
c906108c 8923@itemx ptype
d4f3574e 8924Print a description of the type of expression @var{expr}. @code{ptype}
c906108c
SS
8925differs from @code{whatis} by printing a detailed description, instead
8926of just the name of the type.
8927
8928For example, for this variable declaration:
8929
474c8240 8930@smallexample
c906108c 8931struct complex @{double real; double imag;@} v;
474c8240 8932@end smallexample
c906108c
SS
8933
8934@noindent
8935the two commands give this output:
8936
474c8240 8937@smallexample
c906108c
SS
8938@group
8939(@value{GDBP}) whatis v
8940type = struct complex
8941(@value{GDBP}) ptype v
8942type = struct complex @{
8943 double real;
8944 double imag;
8945@}
8946@end group
474c8240 8947@end smallexample
c906108c
SS
8948
8949@noindent
8950As with @code{whatis}, using @code{ptype} without an argument refers to
8951the type of @code{$}, the last value in the value history.
8952
8953@kindex info types
8954@item info types @var{regexp}
8955@itemx info types
d4f3574e 8956Print a brief description of all types whose names match @var{regexp}
c906108c
SS
8957(or all types in your program, if you supply no argument). Each
8958complete typename is matched as though it were a complete line; thus,
8959@samp{i type value} gives information on all types in your program whose
d4f3574e 8960names include the string @code{value}, but @samp{i type ^value$} gives
c906108c
SS
8961information only on types whose complete name is @code{value}.
8962
8963This command differs from @code{ptype} in two ways: first, like
8964@code{whatis}, it does not print a detailed description; second, it
8965lists all source files where a type is defined.
8966
b37052ae
EZ
8967@kindex info scope
8968@cindex local variables
8969@item info scope @var{addr}
8970List all the variables local to a particular scope. This command
8971accepts a location---a function name, a source line, or an address
8972preceded by a @samp{*}, and prints all the variables local to the
8973scope defined by that location. For example:
8974
8975@smallexample
8976(@value{GDBP}) @b{info scope command_line_handler}
8977Scope for command_line_handler:
8978Symbol rl is an argument at stack/frame offset 8, length 4.
8979Symbol linebuffer is in static storage at address 0x150a18, length 4.
8980Symbol linelength is in static storage at address 0x150a1c, length 4.
8981Symbol p is a local variable in register $esi, length 4.
8982Symbol p1 is a local variable in register $ebx, length 4.
8983Symbol nline is a local variable in register $edx, length 4.
8984Symbol repeat is a local variable at frame offset -8, length 4.
8985@end smallexample
8986
f5c37c66
EZ
8987@noindent
8988This command is especially useful for determining what data to collect
8989during a @dfn{trace experiment}, see @ref{Tracepoint Actions,
8990collect}.
8991
c906108c
SS
8992@kindex info source
8993@item info source
919d772c
JB
8994Show information about the current source file---that is, the source file for
8995the function containing the current point of execution:
8996@itemize @bullet
8997@item
8998the name of the source file, and the directory containing it,
8999@item
9000the directory it was compiled in,
9001@item
9002its length, in lines,
9003@item
9004which programming language it is written in,
9005@item
9006whether the executable includes debugging information for that file, and
9007if so, what format the information is in (e.g., STABS, Dwarf 2, etc.), and
9008@item
9009whether the debugging information includes information about
9010preprocessor macros.
9011@end itemize
9012
c906108c
SS
9013
9014@kindex info sources
9015@item info sources
9016Print the names of all source files in your program for which there is
9017debugging information, organized into two lists: files whose symbols
9018have already been read, and files whose symbols will be read when needed.
9019
9020@kindex info functions
9021@item info functions
9022Print the names and data types of all defined functions.
9023
9024@item info functions @var{regexp}
9025Print the names and data types of all defined functions
9026whose names contain a match for regular expression @var{regexp}.
9027Thus, @samp{info fun step} finds all functions whose names
9028include @code{step}; @samp{info fun ^step} finds those whose names
1c5dfdad
MS
9029start with @code{step}. If a function name contains characters
9030that conflict with the regular expression language (eg.
9031@samp{operator*()}), they may be quoted with a backslash.
c906108c
SS
9032
9033@kindex info variables
9034@item info variables
9035Print the names and data types of all variables that are declared
6ca652b0 9036outside of functions (i.e.@: excluding local variables).
c906108c
SS
9037
9038@item info variables @var{regexp}
9039Print the names and data types of all variables (except for local
9040variables) whose names contain a match for regular expression
9041@var{regexp}.
9042
b37303ee
AF
9043@kindex info classes
9044@item info classes
9045@itemx info classes @var{regexp}
9046Display all Objective-C classes in your program, or
9047(with the @var{regexp} argument) all those matching a particular regular
9048expression.
9049
9050@kindex info selectors
9051@item info selectors
9052@itemx info selectors @var{regexp}
9053Display all Objective-C selectors in your program, or
9054(with the @var{regexp} argument) all those matching a particular regular
9055expression.
9056
c906108c
SS
9057@ignore
9058This was never implemented.
9059@kindex info methods
9060@item info methods
9061@itemx info methods @var{regexp}
9062The @code{info methods} command permits the user to examine all defined
b37052ae
EZ
9063methods within C@t{++} program, or (with the @var{regexp} argument) a
9064specific set of methods found in the various C@t{++} classes. Many
9065C@t{++} classes provide a large number of methods. Thus, the output
c906108c
SS
9066from the @code{ptype} command can be overwhelming and hard to use. The
9067@code{info-methods} command filters the methods, printing only those
9068which match the regular-expression @var{regexp}.
9069@end ignore
9070
c906108c
SS
9071@cindex reloading symbols
9072Some systems allow individual object files that make up your program to
7a292a7a
SS
9073be replaced without stopping and restarting your program. For example,
9074in VxWorks you can simply recompile a defective object file and keep on
9075running. If you are running on one of these systems, you can allow
9076@value{GDBN} to reload the symbols for automatically relinked modules:
c906108c
SS
9077
9078@table @code
9079@kindex set symbol-reloading
9080@item set symbol-reloading on
9081Replace symbol definitions for the corresponding source file when an
9082object file with a particular name is seen again.
9083
9084@item set symbol-reloading off
6d2ebf8b
SS
9085Do not replace symbol definitions when encountering object files of the
9086same name more than once. This is the default state; if you are not
9087running on a system that permits automatic relinking of modules, you
9088should leave @code{symbol-reloading} off, since otherwise @value{GDBN}
9089may discard symbols when linking large programs, that may contain
9090several modules (from different directories or libraries) with the same
9091name.
c906108c
SS
9092
9093@kindex show symbol-reloading
9094@item show symbol-reloading
9095Show the current @code{on} or @code{off} setting.
9096@end table
c906108c 9097
c906108c
SS
9098@kindex set opaque-type-resolution
9099@item set opaque-type-resolution on
9100Tell @value{GDBN} to resolve opaque types. An opaque type is a type
9101declared as a pointer to a @code{struct}, @code{class}, or
9102@code{union}---for example, @code{struct MyType *}---that is used in one
9103source file although the full declaration of @code{struct MyType} is in
9104another source file. The default is on.
9105
9106A change in the setting of this subcommand will not take effect until
9107the next time symbols for a file are loaded.
9108
9109@item set opaque-type-resolution off
9110Tell @value{GDBN} not to resolve opaque types. In this case, the type
9111is printed as follows:
9112@smallexample
9113@{<no data fields>@}
9114@end smallexample
9115
9116@kindex show opaque-type-resolution
9117@item show opaque-type-resolution
9118Show whether opaque types are resolved or not.
c906108c
SS
9119
9120@kindex maint print symbols
9121@cindex symbol dump
9122@kindex maint print psymbols
9123@cindex partial symbol dump
9124@item maint print symbols @var{filename}
9125@itemx maint print psymbols @var{filename}
9126@itemx maint print msymbols @var{filename}
9127Write a dump of debugging symbol data into the file @var{filename}.
9128These commands are used to debug the @value{GDBN} symbol-reading code. Only
9129symbols with debugging data are included. If you use @samp{maint print
9130symbols}, @value{GDBN} includes all the symbols for which it has already
9131collected full details: that is, @var{filename} reflects symbols for
9132only those files whose symbols @value{GDBN} has read. You can use the
9133command @code{info sources} to find out which files these are. If you
9134use @samp{maint print psymbols} instead, the dump shows information about
9135symbols that @value{GDBN} only knows partially---that is, symbols defined in
9136files that @value{GDBN} has skimmed, but not yet read completely. Finally,
9137@samp{maint print msymbols} dumps just the minimal symbol information
9138required for each object file from which @value{GDBN} has read some symbols.
9139@xref{Files, ,Commands to specify files}, for a discussion of how
9140@value{GDBN} reads symbols (in the description of @code{symbol-file}).
44ea7b70 9141
5e7b2f39
JB
9142@kindex maint info symtabs
9143@kindex maint info psymtabs
44ea7b70
JB
9144@cindex listing @value{GDBN}'s internal symbol tables
9145@cindex symbol tables, listing @value{GDBN}'s internal
9146@cindex full symbol tables, listing @value{GDBN}'s internal
9147@cindex partial symbol tables, listing @value{GDBN}'s internal
5e7b2f39
JB
9148@item maint info symtabs @r{[} @var{regexp} @r{]}
9149@itemx maint info psymtabs @r{[} @var{regexp} @r{]}
44ea7b70
JB
9150
9151List the @code{struct symtab} or @code{struct partial_symtab}
9152structures whose names match @var{regexp}. If @var{regexp} is not
9153given, list them all. The output includes expressions which you can
9154copy into a @value{GDBN} debugging this one to examine a particular
9155structure in more detail. For example:
9156
9157@smallexample
5e7b2f39 9158(@value{GDBP}) maint info psymtabs dwarf2read
44ea7b70
JB
9159@{ objfile /home/gnu/build/gdb/gdb
9160 ((struct objfile *) 0x82e69d0)
9161 @{ psymtab /home/gnu/src/gdb/dwarf2read.c
9162 ((struct partial_symtab *) 0x8474b10)
9163 readin no
9164 fullname (null)
9165 text addresses 0x814d3c8 -- 0x8158074
9166 globals (* (struct partial_symbol **) 0x8507a08 @@ 9)
9167 statics (* (struct partial_symbol **) 0x40e95b78 @@ 2882)
9168 dependencies (none)
9169 @}
9170@}
5e7b2f39 9171(@value{GDBP}) maint info symtabs
44ea7b70
JB
9172(@value{GDBP})
9173@end smallexample
9174@noindent
9175We see that there is one partial symbol table whose filename contains
9176the string @samp{dwarf2read}, belonging to the @samp{gdb} executable;
9177and we see that @value{GDBN} has not read in any symtabs yet at all.
9178If we set a breakpoint on a function, that will cause @value{GDBN} to
9179read the symtab for the compilation unit containing that function:
9180
9181@smallexample
9182(@value{GDBP}) break dwarf2_psymtab_to_symtab
9183Breakpoint 1 at 0x814e5da: file /home/gnu/src/gdb/dwarf2read.c,
9184line 1574.
5e7b2f39 9185(@value{GDBP}) maint info symtabs
44ea7b70
JB
9186@{ objfile /home/gnu/build/gdb/gdb
9187 ((struct objfile *) 0x82e69d0)
9188 @{ symtab /home/gnu/src/gdb/dwarf2read.c
9189 ((struct symtab *) 0x86c1f38)
9190 dirname (null)
9191 fullname (null)
9192 blockvector ((struct blockvector *) 0x86c1bd0) (primary)
9193 debugformat DWARF 2
9194 @}
9195@}
9196(@value{GDBP})
9197@end smallexample
c906108c
SS
9198@end table
9199
44ea7b70 9200
6d2ebf8b 9201@node Altering
c906108c
SS
9202@chapter Altering Execution
9203
9204Once you think you have found an error in your program, you might want to
9205find out for certain whether correcting the apparent error would lead to
9206correct results in the rest of the run. You can find the answer by
9207experiment, using the @value{GDBN} features for altering execution of the
9208program.
9209
9210For example, you can store new values into variables or memory
7a292a7a
SS
9211locations, give your program a signal, restart it at a different
9212address, or even return prematurely from a function.
c906108c
SS
9213
9214@menu
9215* Assignment:: Assignment to variables
9216* Jumping:: Continuing at a different address
c906108c 9217* Signaling:: Giving your program a signal
c906108c
SS
9218* Returning:: Returning from a function
9219* Calling:: Calling your program's functions
9220* Patching:: Patching your program
9221@end menu
9222
6d2ebf8b 9223@node Assignment
c906108c
SS
9224@section Assignment to variables
9225
9226@cindex assignment
9227@cindex setting variables
9228To alter the value of a variable, evaluate an assignment expression.
9229@xref{Expressions, ,Expressions}. For example,
9230
474c8240 9231@smallexample
c906108c 9232print x=4
474c8240 9233@end smallexample
c906108c
SS
9234
9235@noindent
9236stores the value 4 into the variable @code{x}, and then prints the
5d161b24 9237value of the assignment expression (which is 4).
c906108c
SS
9238@xref{Languages, ,Using @value{GDBN} with Different Languages}, for more
9239information on operators in supported languages.
c906108c
SS
9240
9241@kindex set variable
9242@cindex variables, setting
9243If you are not interested in seeing the value of the assignment, use the
9244@code{set} command instead of the @code{print} command. @code{set} is
9245really the same as @code{print} except that the expression's value is
9246not printed and is not put in the value history (@pxref{Value History,
9247,Value history}). The expression is evaluated only for its effects.
9248
c906108c
SS
9249If the beginning of the argument string of the @code{set} command
9250appears identical to a @code{set} subcommand, use the @code{set
9251variable} command instead of just @code{set}. This command is identical
9252to @code{set} except for its lack of subcommands. For example, if your
9253program has a variable @code{width}, you get an error if you try to set
9254a new value with just @samp{set width=13}, because @value{GDBN} has the
9255command @code{set width}:
9256
474c8240 9257@smallexample
c906108c
SS
9258(@value{GDBP}) whatis width
9259type = double
9260(@value{GDBP}) p width
9261$4 = 13
9262(@value{GDBP}) set width=47
9263Invalid syntax in expression.
474c8240 9264@end smallexample
c906108c
SS
9265
9266@noindent
9267The invalid expression, of course, is @samp{=47}. In
9268order to actually set the program's variable @code{width}, use
9269
474c8240 9270@smallexample
c906108c 9271(@value{GDBP}) set var width=47
474c8240 9272@end smallexample
53a5351d 9273
c906108c
SS
9274Because the @code{set} command has many subcommands that can conflict
9275with the names of program variables, it is a good idea to use the
9276@code{set variable} command instead of just @code{set}. For example, if
9277your program has a variable @code{g}, you run into problems if you try
9278to set a new value with just @samp{set g=4}, because @value{GDBN} has
9279the command @code{set gnutarget}, abbreviated @code{set g}:
9280
474c8240 9281@smallexample
c906108c
SS
9282@group
9283(@value{GDBP}) whatis g
9284type = double
9285(@value{GDBP}) p g
9286$1 = 1
9287(@value{GDBP}) set g=4
2df3850c 9288(@value{GDBP}) p g
c906108c
SS
9289$2 = 1
9290(@value{GDBP}) r
9291The program being debugged has been started already.
9292Start it from the beginning? (y or n) y
9293Starting program: /home/smith/cc_progs/a.out
6d2ebf8b
SS
9294"/home/smith/cc_progs/a.out": can't open to read symbols:
9295 Invalid bfd target.
c906108c
SS
9296(@value{GDBP}) show g
9297The current BFD target is "=4".
9298@end group
474c8240 9299@end smallexample
c906108c
SS
9300
9301@noindent
9302The program variable @code{g} did not change, and you silently set the
9303@code{gnutarget} to an invalid value. In order to set the variable
9304@code{g}, use
9305
474c8240 9306@smallexample
c906108c 9307(@value{GDBP}) set var g=4
474c8240 9308@end smallexample
c906108c
SS
9309
9310@value{GDBN} allows more implicit conversions in assignments than C; you can
9311freely store an integer value into a pointer variable or vice versa,
9312and you can convert any structure to any other structure that is the
9313same length or shorter.
9314@comment FIXME: how do structs align/pad in these conversions?
9315@comment /doc@cygnus.com 18dec1990
9316
9317To store values into arbitrary places in memory, use the @samp{@{@dots{}@}}
9318construct to generate a value of specified type at a specified address
9319(@pxref{Expressions, ,Expressions}). For example, @code{@{int@}0x83040} refers
9320to memory location @code{0x83040} as an integer (which implies a certain size
9321and representation in memory), and
9322
474c8240 9323@smallexample
c906108c 9324set @{int@}0x83040 = 4
474c8240 9325@end smallexample
c906108c
SS
9326
9327@noindent
9328stores the value 4 into that memory location.
9329
6d2ebf8b 9330@node Jumping
c906108c
SS
9331@section Continuing at a different address
9332
9333Ordinarily, when you continue your program, you do so at the place where
9334it stopped, with the @code{continue} command. You can instead continue at
9335an address of your own choosing, with the following commands:
9336
9337@table @code
9338@kindex jump
9339@item jump @var{linespec}
9340Resume execution at line @var{linespec}. Execution stops again
9341immediately if there is a breakpoint there. @xref{List, ,Printing
9342source lines}, for a description of the different forms of
9343@var{linespec}. It is common practice to use the @code{tbreak} command
9344in conjunction with @code{jump}. @xref{Set Breaks, ,Setting
9345breakpoints}.
9346
9347The @code{jump} command does not change the current stack frame, or
9348the stack pointer, or the contents of any memory location or any
9349register other than the program counter. If line @var{linespec} is in
9350a different function from the one currently executing, the results may
9351be bizarre if the two functions expect different patterns of arguments or
9352of local variables. For this reason, the @code{jump} command requests
9353confirmation if the specified line is not in the function currently
9354executing. However, even bizarre results are predictable if you are
9355well acquainted with the machine-language code of your program.
9356
9357@item jump *@var{address}
9358Resume execution at the instruction at address @var{address}.
9359@end table
9360
c906108c 9361@c Doesn't work on HP-UX; have to set $pcoqh and $pcoqt.
53a5351d
JM
9362On many systems, you can get much the same effect as the @code{jump}
9363command by storing a new value into the register @code{$pc}. The
9364difference is that this does not start your program running; it only
9365changes the address of where it @emph{will} run when you continue. For
9366example,
c906108c 9367
474c8240 9368@smallexample
c906108c 9369set $pc = 0x485
474c8240 9370@end smallexample
c906108c
SS
9371
9372@noindent
9373makes the next @code{continue} command or stepping command execute at
9374address @code{0x485}, rather than at the address where your program stopped.
9375@xref{Continuing and Stepping, ,Continuing and stepping}.
c906108c
SS
9376
9377The most common occasion to use the @code{jump} command is to back
9378up---perhaps with more breakpoints set---over a portion of a program
9379that has already executed, in order to examine its execution in more
9380detail.
9381
c906108c 9382@c @group
6d2ebf8b 9383@node Signaling
c906108c
SS
9384@section Giving your program a signal
9385
9386@table @code
9387@kindex signal
9388@item signal @var{signal}
9389Resume execution where your program stopped, but immediately give it the
9390signal @var{signal}. @var{signal} can be the name or the number of a
9391signal. For example, on many systems @code{signal 2} and @code{signal
9392SIGINT} are both ways of sending an interrupt signal.
9393
9394Alternatively, if @var{signal} is zero, continue execution without
9395giving a signal. This is useful when your program stopped on account of
9396a signal and would ordinary see the signal when resumed with the
9397@code{continue} command; @samp{signal 0} causes it to resume without a
9398signal.
9399
9400@code{signal} does not repeat when you press @key{RET} a second time
9401after executing the command.
9402@end table
9403@c @end group
9404
9405Invoking the @code{signal} command is not the same as invoking the
9406@code{kill} utility from the shell. Sending a signal with @code{kill}
9407causes @value{GDBN} to decide what to do with the signal depending on
9408the signal handling tables (@pxref{Signals}). The @code{signal} command
9409passes the signal directly to your program.
9410
c906108c 9411
6d2ebf8b 9412@node Returning
c906108c
SS
9413@section Returning from a function
9414
9415@table @code
9416@cindex returning from a function
9417@kindex return
9418@item return
9419@itemx return @var{expression}
9420You can cancel execution of a function call with the @code{return}
9421command. If you give an
9422@var{expression} argument, its value is used as the function's return
9423value.
9424@end table
9425
9426When you use @code{return}, @value{GDBN} discards the selected stack frame
9427(and all frames within it). You can think of this as making the
9428discarded frame return prematurely. If you wish to specify a value to
9429be returned, give that value as the argument to @code{return}.
9430
9431This pops the selected stack frame (@pxref{Selection, ,Selecting a
9432frame}), and any other frames inside of it, leaving its caller as the
9433innermost remaining frame. That frame becomes selected. The
9434specified value is stored in the registers used for returning values
9435of functions.
9436
9437The @code{return} command does not resume execution; it leaves the
9438program stopped in the state that would exist if the function had just
9439returned. In contrast, the @code{finish} command (@pxref{Continuing
9440and Stepping, ,Continuing and stepping}) resumes execution until the
9441selected stack frame returns naturally.
9442
6d2ebf8b 9443@node Calling
c906108c
SS
9444@section Calling program functions
9445
9446@cindex calling functions
9447@kindex call
9448@table @code
9449@item call @var{expr}
9450Evaluate the expression @var{expr} without displaying @code{void}
9451returned values.
9452@end table
9453
9454You can use this variant of the @code{print} command if you want to
9455execute a function from your program, but without cluttering the output
5d161b24
DB
9456with @code{void} returned values. If the result is not void, it
9457is printed and saved in the value history.
c906108c 9458
6d2ebf8b 9459@node Patching
c906108c 9460@section Patching programs
7a292a7a 9461
c906108c
SS
9462@cindex patching binaries
9463@cindex writing into executables
c906108c 9464@cindex writing into corefiles
c906108c 9465
7a292a7a
SS
9466By default, @value{GDBN} opens the file containing your program's
9467executable code (or the corefile) read-only. This prevents accidental
9468alterations to machine code; but it also prevents you from intentionally
9469patching your program's binary.
c906108c
SS
9470
9471If you'd like to be able to patch the binary, you can specify that
9472explicitly with the @code{set write} command. For example, you might
9473want to turn on internal debugging flags, or even to make emergency
9474repairs.
9475
9476@table @code
9477@kindex set write
9478@item set write on
9479@itemx set write off
7a292a7a
SS
9480If you specify @samp{set write on}, @value{GDBN} opens executable and
9481core files for both reading and writing; if you specify @samp{set write
c906108c
SS
9482off} (the default), @value{GDBN} opens them read-only.
9483
9484If you have already loaded a file, you must load it again (using the
7a292a7a
SS
9485@code{exec-file} or @code{core-file} command) after changing @code{set
9486write}, for your new setting to take effect.
c906108c
SS
9487
9488@item show write
9489@kindex show write
7a292a7a
SS
9490Display whether executable files and core files are opened for writing
9491as well as reading.
c906108c
SS
9492@end table
9493
6d2ebf8b 9494@node GDB Files
c906108c
SS
9495@chapter @value{GDBN} Files
9496
7a292a7a
SS
9497@value{GDBN} needs to know the file name of the program to be debugged,
9498both in order to read its symbol table and in order to start your
9499program. To debug a core dump of a previous run, you must also tell
9500@value{GDBN} the name of the core dump file.
c906108c
SS
9501
9502@menu
9503* Files:: Commands to specify files
5b5d99cf 9504* Separate Debug Files:: Debugging information in separate files
c906108c
SS
9505* Symbol Errors:: Errors reading symbol files
9506@end menu
9507
6d2ebf8b 9508@node Files
c906108c 9509@section Commands to specify files
c906108c 9510
7a292a7a 9511@cindex symbol table
c906108c 9512@cindex core dump file
7a292a7a
SS
9513
9514You may want to specify executable and core dump file names. The usual
9515way to do this is at start-up time, using the arguments to
9516@value{GDBN}'s start-up commands (@pxref{Invocation, , Getting In and
9517Out of @value{GDBN}}).
c906108c
SS
9518
9519Occasionally it is necessary to change to a different file during a
9520@value{GDBN} session. Or you may run @value{GDBN} and forget to specify
9521a file you want to use. In these situations the @value{GDBN} commands
9522to specify new files are useful.
9523
9524@table @code
9525@cindex executable file
9526@kindex file
9527@item file @var{filename}
9528Use @var{filename} as the program to be debugged. It is read for its
9529symbols and for the contents of pure memory. It is also the program
9530executed when you use the @code{run} command. If you do not specify a
5d161b24
DB
9531directory and the file is not found in the @value{GDBN} working directory,
9532@value{GDBN} uses the environment variable @code{PATH} as a list of
9533directories to search, just as the shell does when looking for a program
9534to run. You can change the value of this variable, for both @value{GDBN}
c906108c
SS
9535and your program, using the @code{path} command.
9536
6d2ebf8b 9537On systems with memory-mapped files, an auxiliary file named
c906108c
SS
9538@file{@var{filename}.syms} may hold symbol table information for
9539@var{filename}. If so, @value{GDBN} maps in the symbol table from
9540@file{@var{filename}.syms}, starting up more quickly. See the
9541descriptions of the file options @samp{-mapped} and @samp{-readnow}
9542(available on the command line, and with the commands @code{file},
5d161b24 9543@code{symbol-file}, or @code{add-symbol-file}, described below),
c906108c 9544for more information.
c906108c
SS
9545
9546@item file
9547@code{file} with no argument makes @value{GDBN} discard any information it
9548has on both executable file and the symbol table.
9549
9550@kindex exec-file
9551@item exec-file @r{[} @var{filename} @r{]}
9552Specify that the program to be run (but not the symbol table) is found
9553in @var{filename}. @value{GDBN} searches the environment variable @code{PATH}
9554if necessary to locate your program. Omitting @var{filename} means to
9555discard information on the executable file.
9556
9557@kindex symbol-file
9558@item symbol-file @r{[} @var{filename} @r{]}
9559Read symbol table information from file @var{filename}. @code{PATH} is
9560searched when necessary. Use the @code{file} command to get both symbol
9561table and program to run from the same file.
9562
9563@code{symbol-file} with no argument clears out @value{GDBN} information on your
9564program's symbol table.
9565
5d161b24 9566The @code{symbol-file} command causes @value{GDBN} to forget the contents
c906108c
SS
9567of its convenience variables, the value history, and all breakpoints and
9568auto-display expressions. This is because they may contain pointers to
9569the internal data recording symbols and data types, which are part of
9570the old symbol table data being discarded inside @value{GDBN}.
9571
9572@code{symbol-file} does not repeat if you press @key{RET} again after
9573executing it once.
9574
9575When @value{GDBN} is configured for a particular environment, it
9576understands debugging information in whatever format is the standard
9577generated for that environment; you may use either a @sc{gnu} compiler, or
9578other compilers that adhere to the local conventions.
c906108c
SS
9579Best results are usually obtained from @sc{gnu} compilers; for example,
9580using @code{@value{GCC}} you can generate debugging information for
9581optimized code.
c906108c
SS
9582
9583For most kinds of object files, with the exception of old SVR3 systems
9584using COFF, the @code{symbol-file} command does not normally read the
9585symbol table in full right away. Instead, it scans the symbol table
9586quickly to find which source files and which symbols are present. The
9587details are read later, one source file at a time, as they are needed.
9588
9589The purpose of this two-stage reading strategy is to make @value{GDBN}
9590start up faster. For the most part, it is invisible except for
9591occasional pauses while the symbol table details for a particular source
9592file are being read. (The @code{set verbose} command can turn these
9593pauses into messages if desired. @xref{Messages/Warnings, ,Optional
9594warnings and messages}.)
9595
c906108c
SS
9596We have not implemented the two-stage strategy for COFF yet. When the
9597symbol table is stored in COFF format, @code{symbol-file} reads the
9598symbol table data in full right away. Note that ``stabs-in-COFF''
9599still does the two-stage strategy, since the debug info is actually
9600in stabs format.
9601
9602@kindex readnow
9603@cindex reading symbols immediately
9604@cindex symbols, reading immediately
9605@kindex mapped
9606@cindex memory-mapped symbol file
9607@cindex saving symbol table
9608@item symbol-file @var{filename} @r{[} -readnow @r{]} @r{[} -mapped @r{]}
9609@itemx file @var{filename} @r{[} -readnow @r{]} @r{[} -mapped @r{]}
9610You can override the @value{GDBN} two-stage strategy for reading symbol
9611tables by using the @samp{-readnow} option with any of the commands that
9612load symbol table information, if you want to be sure @value{GDBN} has the
5d161b24 9613entire symbol table available.
c906108c 9614
c906108c
SS
9615If memory-mapped files are available on your system through the
9616@code{mmap} system call, you can use another option, @samp{-mapped}, to
9617cause @value{GDBN} to write the symbols for your program into a reusable
9618file. Future @value{GDBN} debugging sessions map in symbol information
9619from this auxiliary symbol file (if the program has not changed), rather
9620than spending time reading the symbol table from the executable
9621program. Using the @samp{-mapped} option has the same effect as
9622starting @value{GDBN} with the @samp{-mapped} command-line option.
9623
9624You can use both options together, to make sure the auxiliary symbol
9625file has all the symbol information for your program.
9626
9627The auxiliary symbol file for a program called @var{myprog} is called
9628@samp{@var{myprog}.syms}. Once this file exists (so long as it is newer
9629than the corresponding executable), @value{GDBN} always attempts to use
9630it when you debug @var{myprog}; no special options or commands are
9631needed.
9632
9633The @file{.syms} file is specific to the host machine where you run
9634@value{GDBN}. It holds an exact image of the internal @value{GDBN}
9635symbol table. It cannot be shared across multiple host platforms.
c906108c
SS
9636
9637@c FIXME: for now no mention of directories, since this seems to be in
9638@c flux. 13mar1992 status is that in theory GDB would look either in
9639@c current dir or in same dir as myprog; but issues like competing
9640@c GDB's, or clutter in system dirs, mean that in practice right now
9641@c only current dir is used. FFish says maybe a special GDB hierarchy
9642@c (eg rooted in val of env var GDBSYMS) could exist for mappable symbol
9643@c files.
9644
9645@kindex core
9646@kindex core-file
9647@item core-file @r{[} @var{filename} @r{]}
9648Specify the whereabouts of a core dump file to be used as the ``contents
9649of memory''. Traditionally, core files contain only some parts of the
9650address space of the process that generated them; @value{GDBN} can access the
9651executable file itself for other parts.
9652
9653@code{core-file} with no argument specifies that no core file is
9654to be used.
9655
9656Note that the core file is ignored when your program is actually running
7a292a7a
SS
9657under @value{GDBN}. So, if you have been running your program and you
9658wish to debug a core file instead, you must kill the subprocess in which
9659the program is running. To do this, use the @code{kill} command
c906108c 9660(@pxref{Kill Process, ,Killing the child process}).
c906108c 9661
c906108c
SS
9662@kindex add-symbol-file
9663@cindex dynamic linking
9664@item add-symbol-file @var{filename} @var{address}
9665@itemx add-symbol-file @var{filename} @var{address} @r{[} -readnow @r{]} @r{[} -mapped @r{]}
17d9d558 9666@itemx add-symbol-file @var{filename} @r{-s}@var{section} @var{address} @dots{}
96a2c332
SS
9667The @code{add-symbol-file} command reads additional symbol table
9668information from the file @var{filename}. You would use this command
9669when @var{filename} has been dynamically loaded (by some other means)
9670into the program that is running. @var{address} should be the memory
9671address at which the file has been loaded; @value{GDBN} cannot figure
d167840f
EZ
9672this out for itself. You can additionally specify an arbitrary number
9673of @samp{@r{-s}@var{section} @var{address}} pairs, to give an explicit
9674section name and base address for that section. You can specify any
9675@var{address} as an expression.
c906108c
SS
9676
9677The symbol table of the file @var{filename} is added to the symbol table
9678originally read with the @code{symbol-file} command. You can use the
96a2c332
SS
9679@code{add-symbol-file} command any number of times; the new symbol data
9680thus read keeps adding to the old. To discard all old symbol data
9681instead, use the @code{symbol-file} command without any arguments.
c906108c 9682
17d9d558
JB
9683@cindex relocatable object files, reading symbols from
9684@cindex object files, relocatable, reading symbols from
9685@cindex reading symbols from relocatable object files
9686@cindex symbols, reading from relocatable object files
9687@cindex @file{.o} files, reading symbols from
9688Although @var{filename} is typically a shared library file, an
9689executable file, or some other object file which has been fully
9690relocated for loading into a process, you can also load symbolic
9691information from relocatable @file{.o} files, as long as:
9692
9693@itemize @bullet
9694@item
9695the file's symbolic information refers only to linker symbols defined in
9696that file, not to symbols defined by other object files,
9697@item
9698every section the file's symbolic information refers to has actually
9699been loaded into the inferior, as it appears in the file, and
9700@item
9701you can determine the address at which every section was loaded, and
9702provide these to the @code{add-symbol-file} command.
9703@end itemize
9704
9705@noindent
9706Some embedded operating systems, like Sun Chorus and VxWorks, can load
9707relocatable files into an already running program; such systems
9708typically make the requirements above easy to meet. However, it's
9709important to recognize that many native systems use complex link
9710procedures (@code{.linkonce} section factoring and C++ constructor table
9711assembly, for example) that make the requirements difficult to meet. In
9712general, one cannot assume that using @code{add-symbol-file} to read a
9713relocatable object file's symbolic information will have the same effect
9714as linking the relocatable object file into the program in the normal
9715way.
9716
c906108c
SS
9717@code{add-symbol-file} does not repeat if you press @key{RET} after using it.
9718
9719You can use the @samp{-mapped} and @samp{-readnow} options just as with
9720the @code{symbol-file} command, to change how @value{GDBN} manages the symbol
9721table information for @var{filename}.
9722
9723@kindex add-shared-symbol-file
9724@item add-shared-symbol-file
9725The @code{add-shared-symbol-file} command can be used only under Harris' CXUX
5d161b24
DB
9726operating system for the Motorola 88k. @value{GDBN} automatically looks for
9727shared libraries, however if @value{GDBN} does not find yours, you can run
c906108c 9728@code{add-shared-symbol-file}. It takes no arguments.
c906108c 9729
c906108c
SS
9730@kindex section
9731@item section
5d161b24
DB
9732The @code{section} command changes the base address of section SECTION of
9733the exec file to ADDR. This can be used if the exec file does not contain
9734section addresses, (such as in the a.out format), or when the addresses
9735specified in the file itself are wrong. Each section must be changed
d4f3574e
SS
9736separately. The @code{info files} command, described below, lists all
9737the sections and their addresses.
c906108c
SS
9738
9739@kindex info files
9740@kindex info target
9741@item info files
9742@itemx info target
7a292a7a
SS
9743@code{info files} and @code{info target} are synonymous; both print the
9744current target (@pxref{Targets, ,Specifying a Debugging Target}),
9745including the names of the executable and core dump files currently in
9746use by @value{GDBN}, and the files from which symbols were loaded. The
9747command @code{help target} lists all possible targets rather than
9748current ones.
9749
fe95c787
MS
9750@kindex maint info sections
9751@item maint info sections
9752Another command that can give you extra information about program sections
9753is @code{maint info sections}. In addition to the section information
9754displayed by @code{info files}, this command displays the flags and file
9755offset of each section in the executable and core dump files. In addition,
9756@code{maint info sections} provides the following command options (which
9757may be arbitrarily combined):
9758
9759@table @code
9760@item ALLOBJ
9761Display sections for all loaded object files, including shared libraries.
9762@item @var{sections}
6600abed 9763Display info only for named @var{sections}.
fe95c787
MS
9764@item @var{section-flags}
9765Display info only for sections for which @var{section-flags} are true.
9766The section flags that @value{GDBN} currently knows about are:
9767@table @code
9768@item ALLOC
9769Section will have space allocated in the process when loaded.
9770Set for all sections except those containing debug information.
9771@item LOAD
9772Section will be loaded from the file into the child process memory.
9773Set for pre-initialized code and data, clear for @code{.bss} sections.
9774@item RELOC
9775Section needs to be relocated before loading.
9776@item READONLY
9777Section cannot be modified by the child process.
9778@item CODE
9779Section contains executable code only.
6600abed 9780@item DATA
fe95c787
MS
9781Section contains data only (no executable code).
9782@item ROM
9783Section will reside in ROM.
9784@item CONSTRUCTOR
9785Section contains data for constructor/destructor lists.
9786@item HAS_CONTENTS
9787Section is not empty.
9788@item NEVER_LOAD
9789An instruction to the linker to not output the section.
9790@item COFF_SHARED_LIBRARY
9791A notification to the linker that the section contains
9792COFF shared library information.
9793@item IS_COMMON
9794Section contains common symbols.
9795@end table
9796@end table
6763aef9
MS
9797@kindex set trust-readonly-sections
9798@item set trust-readonly-sections on
9799Tell @value{GDBN} that readonly sections in your object file
6ca652b0 9800really are read-only (i.e.@: that their contents will not change).
6763aef9
MS
9801In that case, @value{GDBN} can fetch values from these sections
9802out of the object file, rather than from the target program.
9803For some targets (notably embedded ones), this can be a significant
9804enhancement to debugging performance.
9805
9806The default is off.
9807
9808@item set trust-readonly-sections off
15110bc3 9809Tell @value{GDBN} not to trust readonly sections. This means that
6763aef9
MS
9810the contents of the section might change while the program is running,
9811and must therefore be fetched from the target when needed.
c906108c
SS
9812@end table
9813
9814All file-specifying commands allow both absolute and relative file names
9815as arguments. @value{GDBN} always converts the file name to an absolute file
9816name and remembers it that way.
9817
c906108c 9818@cindex shared libraries
c906108c
SS
9819@value{GDBN} supports HP-UX, SunOS, SVr4, Irix 5, and IBM RS/6000 shared
9820libraries.
53a5351d 9821
c906108c
SS
9822@value{GDBN} automatically loads symbol definitions from shared libraries
9823when you use the @code{run} command, or when you examine a core file.
9824(Before you issue the @code{run} command, @value{GDBN} does not understand
9825references to a function in a shared library, however---unless you are
9826debugging a core file).
53a5351d
JM
9827
9828On HP-UX, if the program loads a library explicitly, @value{GDBN}
9829automatically loads the symbols at the time of the @code{shl_load} call.
9830
c906108c
SS
9831@c FIXME: some @value{GDBN} release may permit some refs to undef
9832@c FIXME...symbols---eg in a break cmd---assuming they are from a shared
9833@c FIXME...lib; check this from time to time when updating manual
9834
b7209cb4
FF
9835There are times, however, when you may wish to not automatically load
9836symbol definitions from shared libraries, such as when they are
9837particularly large or there are many of them.
9838
9839To control the automatic loading of shared library symbols, use the
9840commands:
9841
9842@table @code
9843@kindex set auto-solib-add
9844@item set auto-solib-add @var{mode}
9845If @var{mode} is @code{on}, symbols from all shared object libraries
9846will be loaded automatically when the inferior begins execution, you
9847attach to an independently started inferior, or when the dynamic linker
9848informs @value{GDBN} that a new library has been loaded. If @var{mode}
9849is @code{off}, symbols must be loaded manually, using the
9850@code{sharedlibrary} command. The default value is @code{on}.
9851
9852@kindex show auto-solib-add
9853@item show auto-solib-add
9854Display the current autoloading mode.
9855@end table
9856
9857To explicitly load shared library symbols, use the @code{sharedlibrary}
9858command:
9859
c906108c
SS
9860@table @code
9861@kindex info sharedlibrary
9862@kindex info share
9863@item info share
9864@itemx info sharedlibrary
9865Print the names of the shared libraries which are currently loaded.
9866
9867@kindex sharedlibrary
9868@kindex share
9869@item sharedlibrary @var{regex}
9870@itemx share @var{regex}
c906108c
SS
9871Load shared object library symbols for files matching a
9872Unix regular expression.
9873As with files loaded automatically, it only loads shared libraries
9874required by your program for a core file or after typing @code{run}. If
9875@var{regex} is omitted all shared libraries required by your program are
9876loaded.
9877@end table
9878
b7209cb4
FF
9879On some systems, such as HP-UX systems, @value{GDBN} supports
9880autoloading shared library symbols until a limiting threshold size is
9881reached. This provides the benefit of allowing autoloading to remain on
9882by default, but avoids autoloading excessively large shared libraries,
9883up to a threshold that is initially set, but which you can modify if you
9884wish.
c906108c
SS
9885
9886Beyond that threshold, symbols from shared libraries must be explicitly
d4f3574e
SS
9887loaded. To load these symbols, use the command @code{sharedlibrary
9888@var{filename}}. The base address of the shared library is determined
c906108c
SS
9889automatically by @value{GDBN} and need not be specified.
9890
9891To display or set the threshold, use the commands:
9892
9893@table @code
b7209cb4
FF
9894@kindex set auto-solib-limit
9895@item set auto-solib-limit @var{threshold}
9896Set the autoloading size threshold, in an integral number of megabytes.
9897If @var{threshold} is nonzero and shared library autoloading is enabled,
9898symbols from all shared object libraries will be loaded until the total
9899size of the loaded shared library symbols exceeds this threshold.
c906108c 9900Otherwise, symbols must be loaded manually, using the
6ca652b0 9901@code{sharedlibrary} command. The default threshold is 100 (i.e.@: 100
b7209cb4 9902Mb).
c906108c 9903
b7209cb4
FF
9904@kindex show auto-solib-limit
9905@item show auto-solib-limit
c906108c
SS
9906Display the current autoloading size threshold, in megabytes.
9907@end table
c906108c 9908
f5ebfba0
DJ
9909Shared libraries are also supported in many cross or remote debugging
9910configurations. A copy of the target's libraries need to be present on the
9911host system; they need to be the same as the target libraries, although the
9912copies on the target can be stripped as long as the copies on the host are
9913not.
9914
9915You need to tell @value{GDBN} where the target libraries are, so that it can
9916load the correct copies---otherwise, it may try to load the host's libraries.
9917@value{GDBN} has two variables to specify the search directories for target
9918libraries.
9919
9920@table @code
9921@kindex set solib-absolute-prefix
9922@item set solib-absolute-prefix @var{path}
9923If this variable is set, @var{path} will be used as a prefix for any
9924absolute shared library paths; many runtime loaders store the absolute
9925paths to the shared library in the target program's memory. If you use
9926@samp{solib-absolute-prefix} to find shared libraries, they need to be laid
9927out in the same way that they are on the target, with e.g.@: a
9928@file{/usr/lib} hierarchy under @var{path}.
9929
9930You can set the default value of @samp{solib-absolute-prefix} by using the
9931configure-time @samp{--with-sysroot} option.
9932
9933@kindex show solib-absolute-prefix
9934@item show solib-absolute-prefix
9935Display the current shared library prefix.
9936
9937@kindex set solib-search-path
9938@item set solib-search-path @var{path}
9939If this variable is set, @var{path} is a colon-separated list of directories
9940to search for shared libraries. @samp{solib-search-path} is used after
9941@samp{solib-absolute-prefix} fails to locate the library, or if the path to
9942the library is relative instead of absolute. If you want to use
9943@samp{solib-search-path} instead of @samp{solib-absolute-prefix}, be sure to
9944set @samp{solib-absolute-prefix} to a nonexistant directory to prevent
9945@value{GDBN} from finding your host's libraries.
9946
9947@kindex show solib-search-path
9948@item show solib-search-path
9949Display the current shared library search path.
9950@end table
9951
5b5d99cf
JB
9952
9953@node Separate Debug Files
9954@section Debugging Information in Separate Files
9955@cindex separate debugging information files
9956@cindex debugging information in separate files
9957@cindex @file{.debug} subdirectories
9958@cindex debugging information directory, global
9959@cindex global debugging information directory
9960
9961@value{GDBN} allows you to put a program's debugging information in a
9962file separate from the executable itself, in a way that allows
9963@value{GDBN} to find and load the debugging information automatically.
9964Since debugging information can be very large --- sometimes larger
9965than the executable code itself --- some systems distribute debugging
9966information for their executables in separate files, which users can
9967install only when they need to debug a problem.
9968
9969If an executable's debugging information has been extracted to a
9970separate file, the executable should contain a @dfn{debug link} giving
9971the name of the debugging information file (with no directory
9972components), and a checksum of its contents. (The exact form of a
9973debug link is described below.) If the full name of the directory
9974containing the executable is @var{execdir}, and the executable has a
9975debug link that specifies the name @var{debugfile}, then @value{GDBN}
9976will automatically search for the debugging information file in three
9977places:
9978
9979@itemize @bullet
9980@item
9981the directory containing the executable file (that is, it will look
9982for a file named @file{@var{execdir}/@var{debugfile}},
9983@item
9984a subdirectory of that directory named @file{.debug} (that is, the
9985file @file{@var{execdir}/.debug/@var{debugfile}}, and
9986@item
9987a subdirectory of the global debug file directory that includes the
9988executable's full path, and the name from the link (that is, the file
9989@file{@var{globaldebugdir}/@var{execdir}/@var{debugfile}}, where
9990@var{globaldebugdir} is the global debug file directory, and
9991@var{execdir} has been turned into a relative path).
9992@end itemize
9993@noindent
9994@value{GDBN} checks under each of these names for a debugging
9995information file whose checksum matches that given in the link, and
9996reads the debugging information from the first one it finds.
9997
9998So, for example, if you ask @value{GDBN} to debug @file{/usr/bin/ls},
9999which has a link containing the name @file{ls.debug}, and the global
10000debug directory is @file{/usr/lib/debug}, then @value{GDBN} will look
10001for debug information in @file{/usr/bin/ls.debug},
10002@file{/usr/bin/.debug/ls.debug}, and
10003@file{/usr/lib/debug/usr/bin/ls.debug}.
10004
10005You can set the global debugging info directory's name, and view the
10006name @value{GDBN} is currently using.
10007
10008@table @code
10009
10010@kindex set debug-file-directory
10011@item set debug-file-directory @var{directory}
10012Set the directory which @value{GDBN} searches for separate debugging
10013information files to @var{directory}.
10014
10015@kindex show debug-file-directory
10016@item show debug-file-directory
10017Show the directory @value{GDBN} searches for separate debugging
10018information files.
10019
10020@end table
10021
10022@cindex @code{.gnu_debuglink} sections
10023@cindex debug links
10024A debug link is a special section of the executable file named
10025@code{.gnu_debuglink}. The section must contain:
10026
10027@itemize
10028@item
10029A filename, with any leading directory components removed, followed by
10030a zero byte,
10031@item
10032zero to three bytes of padding, as needed to reach the next four-byte
10033boundary within the section, and
10034@item
10035a four-byte CRC checksum, stored in the same endianness used for the
10036executable file itself. The checksum is computed on the debugging
10037information file's full contents by the function given below, passing
10038zero as the @var{crc} argument.
10039@end itemize
10040
10041Any executable file format can carry a debug link, as long as it can
10042contain a section named @code{.gnu_debuglink} with the contents
10043described above.
10044
10045The debugging information file itself should be an ordinary
10046executable, containing a full set of linker symbols, sections, and
10047debugging information. The sections of the debugging information file
10048should have the same names, addresses and sizes as the original file,
10049but they need not contain any data --- much like a @code{.bss} section
10050in an ordinary executable.
10051
10052As of December 2002, there is no standard GNU utility to produce
10053separated executable / debugging information file pairs. Ulrich
10054Drepper's @file{elfutils} package, starting with version 0.53,
10055contains a version of the @code{strip} command such that the command
10056@kbd{strip foo -f foo.debug} removes the debugging information from
10057the executable file @file{foo}, places it in the file
10058@file{foo.debug}, and leaves behind a debug link in @file{foo}.
10059
10060Since there are many different ways to compute CRC's (different
10061polynomials, reversals, byte ordering, etc.), the simplest way to
10062describe the CRC used in @code{.gnu_debuglink} sections is to give the
10063complete code for a function that computes it:
10064
10065@kindex @code{gnu_debuglink_crc32}
10066@smallexample
10067unsigned long
10068gnu_debuglink_crc32 (unsigned long crc,
10069 unsigned char *buf, size_t len)
10070@{
10071 static const unsigned long crc32_table[256] =
10072 @{
10073 0x00000000, 0x77073096, 0xee0e612c, 0x990951ba, 0x076dc419,
10074 0x706af48f, 0xe963a535, 0x9e6495a3, 0x0edb8832, 0x79dcb8a4,
10075 0xe0d5e91e, 0x97d2d988, 0x09b64c2b, 0x7eb17cbd, 0xe7b82d07,
10076 0x90bf1d91, 0x1db71064, 0x6ab020f2, 0xf3b97148, 0x84be41de,
10077 0x1adad47d, 0x6ddde4eb, 0xf4d4b551, 0x83d385c7, 0x136c9856,
10078 0x646ba8c0, 0xfd62f97a, 0x8a65c9ec, 0x14015c4f, 0x63066cd9,
10079 0xfa0f3d63, 0x8d080df5, 0x3b6e20c8, 0x4c69105e, 0xd56041e4,
10080 0xa2677172, 0x3c03e4d1, 0x4b04d447, 0xd20d85fd, 0xa50ab56b,
10081 0x35b5a8fa, 0x42b2986c, 0xdbbbc9d6, 0xacbcf940, 0x32d86ce3,
10082 0x45df5c75, 0xdcd60dcf, 0xabd13d59, 0x26d930ac, 0x51de003a,
10083 0xc8d75180, 0xbfd06116, 0x21b4f4b5, 0x56b3c423, 0xcfba9599,
10084 0xb8bda50f, 0x2802b89e, 0x5f058808, 0xc60cd9b2, 0xb10be924,
10085 0x2f6f7c87, 0x58684c11, 0xc1611dab, 0xb6662d3d, 0x76dc4190,
10086 0x01db7106, 0x98d220bc, 0xefd5102a, 0x71b18589, 0x06b6b51f,
10087 0x9fbfe4a5, 0xe8b8d433, 0x7807c9a2, 0x0f00f934, 0x9609a88e,
10088 0xe10e9818, 0x7f6a0dbb, 0x086d3d2d, 0x91646c97, 0xe6635c01,
10089 0x6b6b51f4, 0x1c6c6162, 0x856530d8, 0xf262004e, 0x6c0695ed,
10090 0x1b01a57b, 0x8208f4c1, 0xf50fc457, 0x65b0d9c6, 0x12b7e950,
10091 0x8bbeb8ea, 0xfcb9887c, 0x62dd1ddf, 0x15da2d49, 0x8cd37cf3,
10092 0xfbd44c65, 0x4db26158, 0x3ab551ce, 0xa3bc0074, 0xd4bb30e2,
10093 0x4adfa541, 0x3dd895d7, 0xa4d1c46d, 0xd3d6f4fb, 0x4369e96a,
10094 0x346ed9fc, 0xad678846, 0xda60b8d0, 0x44042d73, 0x33031de5,
10095 0xaa0a4c5f, 0xdd0d7cc9, 0x5005713c, 0x270241aa, 0xbe0b1010,
10096 0xc90c2086, 0x5768b525, 0x206f85b3, 0xb966d409, 0xce61e49f,
10097 0x5edef90e, 0x29d9c998, 0xb0d09822, 0xc7d7a8b4, 0x59b33d17,
10098 0x2eb40d81, 0xb7bd5c3b, 0xc0ba6cad, 0xedb88320, 0x9abfb3b6,
10099 0x03b6e20c, 0x74b1d29a, 0xead54739, 0x9dd277af, 0x04db2615,
10100 0x73dc1683, 0xe3630b12, 0x94643b84, 0x0d6d6a3e, 0x7a6a5aa8,
10101 0xe40ecf0b, 0x9309ff9d, 0x0a00ae27, 0x7d079eb1, 0xf00f9344,
10102 0x8708a3d2, 0x1e01f268, 0x6906c2fe, 0xf762575d, 0x806567cb,
10103 0x196c3671, 0x6e6b06e7, 0xfed41b76, 0x89d32be0, 0x10da7a5a,
10104 0x67dd4acc, 0xf9b9df6f, 0x8ebeeff9, 0x17b7be43, 0x60b08ed5,
10105 0xd6d6a3e8, 0xa1d1937e, 0x38d8c2c4, 0x4fdff252, 0xd1bb67f1,
10106 0xa6bc5767, 0x3fb506dd, 0x48b2364b, 0xd80d2bda, 0xaf0a1b4c,
10107 0x36034af6, 0x41047a60, 0xdf60efc3, 0xa867df55, 0x316e8eef,
10108 0x4669be79, 0xcb61b38c, 0xbc66831a, 0x256fd2a0, 0x5268e236,
10109 0xcc0c7795, 0xbb0b4703, 0x220216b9, 0x5505262f, 0xc5ba3bbe,
10110 0xb2bd0b28, 0x2bb45a92, 0x5cb36a04, 0xc2d7ffa7, 0xb5d0cf31,
10111 0x2cd99e8b, 0x5bdeae1d, 0x9b64c2b0, 0xec63f226, 0x756aa39c,
10112 0x026d930a, 0x9c0906a9, 0xeb0e363f, 0x72076785, 0x05005713,
10113 0x95bf4a82, 0xe2b87a14, 0x7bb12bae, 0x0cb61b38, 0x92d28e9b,
10114 0xe5d5be0d, 0x7cdcefb7, 0x0bdbdf21, 0x86d3d2d4, 0xf1d4e242,
10115 0x68ddb3f8, 0x1fda836e, 0x81be16cd, 0xf6b9265b, 0x6fb077e1,
10116 0x18b74777, 0x88085ae6, 0xff0f6a70, 0x66063bca, 0x11010b5c,
10117 0x8f659eff, 0xf862ae69, 0x616bffd3, 0x166ccf45, 0xa00ae278,
10118 0xd70dd2ee, 0x4e048354, 0x3903b3c2, 0xa7672661, 0xd06016f7,
10119 0x4969474d, 0x3e6e77db, 0xaed16a4a, 0xd9d65adc, 0x40df0b66,
10120 0x37d83bf0, 0xa9bcae53, 0xdebb9ec5, 0x47b2cf7f, 0x30b5ffe9,
10121 0xbdbdf21c, 0xcabac28a, 0x53b39330, 0x24b4a3a6, 0xbad03605,
10122 0xcdd70693, 0x54de5729, 0x23d967bf, 0xb3667a2e, 0xc4614ab8,
10123 0x5d681b02, 0x2a6f2b94, 0xb40bbe37, 0xc30c8ea1, 0x5a05df1b,
10124 0x2d02ef8d
10125 @};
10126 unsigned char *end;
10127
10128 crc = ~crc & 0xffffffff;
10129 for (end = buf + len; buf < end; ++buf)
10130 crc = crc32_table[(crc ^ *buf) & 0xff] ^ (crc >> 8);
e7a3abfc 10131 return ~crc & 0xffffffff;
5b5d99cf
JB
10132@}
10133@end smallexample
10134
10135
6d2ebf8b 10136@node Symbol Errors
c906108c
SS
10137@section Errors reading symbol files
10138
10139While reading a symbol file, @value{GDBN} occasionally encounters problems,
10140such as symbol types it does not recognize, or known bugs in compiler
10141output. By default, @value{GDBN} does not notify you of such problems, since
10142they are relatively common and primarily of interest to people
10143debugging compilers. If you are interested in seeing information
10144about ill-constructed symbol tables, you can either ask @value{GDBN} to print
10145only one message about each such type of problem, no matter how many
10146times the problem occurs; or you can ask @value{GDBN} to print more messages,
10147to see how many times the problems occur, with the @code{set
10148complaints} command (@pxref{Messages/Warnings, ,Optional warnings and
10149messages}).
10150
10151The messages currently printed, and their meanings, include:
10152
10153@table @code
10154@item inner block not inside outer block in @var{symbol}
10155
10156The symbol information shows where symbol scopes begin and end
10157(such as at the start of a function or a block of statements). This
10158error indicates that an inner scope block is not fully contained
10159in its outer scope blocks.
10160
10161@value{GDBN} circumvents the problem by treating the inner block as if it had
10162the same scope as the outer block. In the error message, @var{symbol}
10163may be shown as ``@code{(don't know)}'' if the outer block is not a
10164function.
10165
10166@item block at @var{address} out of order
10167
10168The symbol information for symbol scope blocks should occur in
10169order of increasing addresses. This error indicates that it does not
10170do so.
10171
10172@value{GDBN} does not circumvent this problem, and has trouble
10173locating symbols in the source file whose symbols it is reading. (You
10174can often determine what source file is affected by specifying
10175@code{set verbose on}. @xref{Messages/Warnings, ,Optional warnings and
10176messages}.)
10177
10178@item bad block start address patched
10179
10180The symbol information for a symbol scope block has a start address
10181smaller than the address of the preceding source line. This is known
10182to occur in the SunOS 4.1.1 (and earlier) C compiler.
10183
10184@value{GDBN} circumvents the problem by treating the symbol scope block as
10185starting on the previous source line.
10186
10187@item bad string table offset in symbol @var{n}
10188
10189@cindex foo
10190Symbol number @var{n} contains a pointer into the string table which is
10191larger than the size of the string table.
10192
10193@value{GDBN} circumvents the problem by considering the symbol to have the
10194name @code{foo}, which may cause other problems if many symbols end up
10195with this name.
10196
10197@item unknown symbol type @code{0x@var{nn}}
10198
7a292a7a
SS
10199The symbol information contains new data types that @value{GDBN} does
10200not yet know how to read. @code{0x@var{nn}} is the symbol type of the
d4f3574e 10201uncomprehended information, in hexadecimal.
c906108c 10202
7a292a7a
SS
10203@value{GDBN} circumvents the error by ignoring this symbol information.
10204This usually allows you to debug your program, though certain symbols
c906108c 10205are not accessible. If you encounter such a problem and feel like
7a292a7a
SS
10206debugging it, you can debug @code{@value{GDBP}} with itself, breakpoint
10207on @code{complain}, then go up to the function @code{read_dbx_symtab}
10208and examine @code{*bufp} to see the symbol.
c906108c
SS
10209
10210@item stub type has NULL name
c906108c 10211
7a292a7a 10212@value{GDBN} could not find the full definition for a struct or class.
c906108c 10213
7a292a7a 10214@item const/volatile indicator missing (ok if using g++ v1.x), got@dots{}
b37052ae 10215The symbol information for a C@t{++} member function is missing some
7a292a7a
SS
10216information that recent versions of the compiler should have output for
10217it.
c906108c
SS
10218
10219@item info mismatch between compiler and debugger
10220
10221@value{GDBN} could not parse a type specification output by the compiler.
7a292a7a 10222
c906108c
SS
10223@end table
10224
6d2ebf8b 10225@node Targets
c906108c 10226@chapter Specifying a Debugging Target
7a292a7a 10227
c906108c
SS
10228@cindex debugging target
10229@kindex target
10230
10231A @dfn{target} is the execution environment occupied by your program.
53a5351d
JM
10232
10233Often, @value{GDBN} runs in the same host environment as your program;
10234in that case, the debugging target is specified as a side effect when
10235you use the @code{file} or @code{core} commands. When you need more
c906108c
SS
10236flexibility---for example, running @value{GDBN} on a physically separate
10237host, or controlling a standalone system over a serial port or a
53a5351d
JM
10238realtime system over a TCP/IP connection---you can use the @code{target}
10239command to specify one of the target types configured for @value{GDBN}
10240(@pxref{Target Commands, ,Commands for managing targets}).
c906108c
SS
10241
10242@menu
10243* Active Targets:: Active targets
10244* Target Commands:: Commands for managing targets
c906108c
SS
10245* Byte Order:: Choosing target byte order
10246* Remote:: Remote debugging
96baa820 10247* KOD:: Kernel Object Display
c906108c
SS
10248
10249@end menu
10250
6d2ebf8b 10251@node Active Targets
c906108c 10252@section Active targets
7a292a7a 10253
c906108c
SS
10254@cindex stacking targets
10255@cindex active targets
10256@cindex multiple targets
10257
c906108c 10258There are three classes of targets: processes, core files, and
7a292a7a
SS
10259executable files. @value{GDBN} can work concurrently on up to three
10260active targets, one in each class. This allows you to (for example)
10261start a process and inspect its activity without abandoning your work on
10262a core file.
c906108c
SS
10263
10264For example, if you execute @samp{gdb a.out}, then the executable file
10265@code{a.out} is the only active target. If you designate a core file as
10266well---presumably from a prior run that crashed and coredumped---then
10267@value{GDBN} has two active targets and uses them in tandem, looking
10268first in the corefile target, then in the executable file, to satisfy
10269requests for memory addresses. (Typically, these two classes of target
10270are complementary, since core files contain only a program's
10271read-write memory---variables and so on---plus machine status, while
10272executable files contain only the program text and initialized data.)
c906108c
SS
10273
10274When you type @code{run}, your executable file becomes an active process
7a292a7a
SS
10275target as well. When a process target is active, all @value{GDBN}
10276commands requesting memory addresses refer to that target; addresses in
10277an active core file or executable file target are obscured while the
10278process target is active.
c906108c 10279
7a292a7a
SS
10280Use the @code{core-file} and @code{exec-file} commands to select a new
10281core file or executable target (@pxref{Files, ,Commands to specify
c906108c 10282files}). To specify as a target a process that is already running, use
7a292a7a
SS
10283the @code{attach} command (@pxref{Attach, ,Debugging an already-running
10284process}).
c906108c 10285
6d2ebf8b 10286@node Target Commands
c906108c
SS
10287@section Commands for managing targets
10288
10289@table @code
10290@item target @var{type} @var{parameters}
7a292a7a
SS
10291Connects the @value{GDBN} host environment to a target machine or
10292process. A target is typically a protocol for talking to debugging
10293facilities. You use the argument @var{type} to specify the type or
10294protocol of the target machine.
c906108c
SS
10295
10296Further @var{parameters} are interpreted by the target protocol, but
10297typically include things like device names or host names to connect
10298with, process numbers, and baud rates.
c906108c
SS
10299
10300The @code{target} command does not repeat if you press @key{RET} again
10301after executing the command.
10302
10303@kindex help target
10304@item help target
10305Displays the names of all targets available. To display targets
10306currently selected, use either @code{info target} or @code{info files}
10307(@pxref{Files, ,Commands to specify files}).
10308
10309@item help target @var{name}
10310Describe a particular target, including any parameters necessary to
10311select it.
10312
10313@kindex set gnutarget
10314@item set gnutarget @var{args}
5d161b24 10315@value{GDBN} uses its own library BFD to read your files. @value{GDBN}
c906108c 10316knows whether it is reading an @dfn{executable},
5d161b24
DB
10317a @dfn{core}, or a @dfn{.o} file; however, you can specify the file format
10318with the @code{set gnutarget} command. Unlike most @code{target} commands,
c906108c
SS
10319with @code{gnutarget} the @code{target} refers to a program, not a machine.
10320
d4f3574e 10321@quotation
c906108c
SS
10322@emph{Warning:} To specify a file format with @code{set gnutarget},
10323you must know the actual BFD name.
d4f3574e 10324@end quotation
c906108c 10325
d4f3574e
SS
10326@noindent
10327@xref{Files, , Commands to specify files}.
c906108c 10328
5d161b24 10329@kindex show gnutarget
c906108c
SS
10330@item show gnutarget
10331Use the @code{show gnutarget} command to display what file format
10332@code{gnutarget} is set to read. If you have not set @code{gnutarget},
10333@value{GDBN} will determine the file format for each file automatically,
10334and @code{show gnutarget} displays @samp{The current BDF target is "auto"}.
10335@end table
10336
c906108c
SS
10337Here are some common targets (available, or not, depending on the GDB
10338configuration):
c906108c
SS
10339
10340@table @code
10341@kindex target exec
10342@item target exec @var{program}
10343An executable file. @samp{target exec @var{program}} is the same as
10344@samp{exec-file @var{program}}.
10345
c906108c
SS
10346@kindex target core
10347@item target core @var{filename}
10348A core dump file. @samp{target core @var{filename}} is the same as
10349@samp{core-file @var{filename}}.
c906108c
SS
10350
10351@kindex target remote
10352@item target remote @var{dev}
10353Remote serial target in GDB-specific protocol. The argument @var{dev}
10354specifies what serial device to use for the connection (e.g.
10355@file{/dev/ttya}). @xref{Remote, ,Remote debugging}. @code{target remote}
d4f3574e 10356supports the @code{load} command. This is only useful if you have
c906108c
SS
10357some other way of getting the stub to the target system, and you can put
10358it somewhere in memory where it won't get clobbered by the download.
10359
c906108c
SS
10360@kindex target sim
10361@item target sim
2df3850c 10362Builtin CPU simulator. @value{GDBN} includes simulators for most architectures.
104c1213 10363In general,
474c8240 10364@smallexample
104c1213
JM
10365 target sim
10366 load
10367 run
474c8240 10368@end smallexample
d4f3574e 10369@noindent
104c1213 10370works; however, you cannot assume that a specific memory map, device
d4f3574e 10371drivers, or even basic I/O is available, although some simulators do
104c1213
JM
10372provide these. For info about any processor-specific simulator details,
10373see the appropriate section in @ref{Embedded Processors, ,Embedded
10374Processors}.
10375
c906108c
SS
10376@end table
10377
104c1213 10378Some configurations may include these targets as well:
c906108c
SS
10379
10380@table @code
10381
c906108c
SS
10382@kindex target nrom
10383@item target nrom @var{dev}
10384NetROM ROM emulator. This target only supports downloading.
10385
c906108c
SS
10386@end table
10387
5d161b24 10388Different targets are available on different configurations of @value{GDBN};
c906108c 10389your configuration may have more or fewer targets.
c906108c
SS
10390
10391Many remote targets require you to download the executable's code
10392once you've successfully established a connection.
10393
10394@table @code
10395
10396@kindex load @var{filename}
10397@item load @var{filename}
c906108c
SS
10398Depending on what remote debugging facilities are configured into
10399@value{GDBN}, the @code{load} command may be available. Where it exists, it
10400is meant to make @var{filename} (an executable) available for debugging
10401on the remote system---by downloading, or dynamic linking, for example.
10402@code{load} also records the @var{filename} symbol table in @value{GDBN}, like
10403the @code{add-symbol-file} command.
10404
10405If your @value{GDBN} does not have a @code{load} command, attempting to
10406execute it gets the error message ``@code{You can't do that when your
10407target is @dots{}}''
c906108c
SS
10408
10409The file is loaded at whatever address is specified in the executable.
10410For some object file formats, you can specify the load address when you
10411link the program; for other formats, like a.out, the object file format
10412specifies a fixed address.
10413@c FIXME! This would be a good place for an xref to the GNU linker doc.
10414
c906108c
SS
10415@code{load} does not repeat if you press @key{RET} again after using it.
10416@end table
10417
6d2ebf8b 10418@node Byte Order
c906108c 10419@section Choosing target byte order
7a292a7a 10420
c906108c
SS
10421@cindex choosing target byte order
10422@cindex target byte order
c906108c
SS
10423
10424Some types of processors, such as the MIPS, PowerPC, and Hitachi SH,
10425offer the ability to run either big-endian or little-endian byte
10426orders. Usually the executable or symbol will include a bit to
10427designate the endian-ness, and you will not need to worry about
10428which to use. However, you may still find it useful to adjust
d4f3574e 10429@value{GDBN}'s idea of processor endian-ness manually.
c906108c
SS
10430
10431@table @code
10432@kindex set endian big
10433@item set endian big
10434Instruct @value{GDBN} to assume the target is big-endian.
10435
10436@kindex set endian little
10437@item set endian little
10438Instruct @value{GDBN} to assume the target is little-endian.
10439
10440@kindex set endian auto
10441@item set endian auto
10442Instruct @value{GDBN} to use the byte order associated with the
10443executable.
10444
10445@item show endian
10446Display @value{GDBN}'s current idea of the target byte order.
10447
10448@end table
10449
10450Note that these commands merely adjust interpretation of symbolic
10451data on the host, and that they have absolutely no effect on the
10452target system.
10453
6d2ebf8b 10454@node Remote
c906108c
SS
10455@section Remote debugging
10456@cindex remote debugging
10457
10458If you are trying to debug a program running on a machine that cannot run
5d161b24
DB
10459@value{GDBN} in the usual way, it is often useful to use remote debugging.
10460For example, you might use remote debugging on an operating system kernel,
c906108c
SS
10461or on a small system which does not have a general purpose operating system
10462powerful enough to run a full-featured debugger.
10463
10464Some configurations of @value{GDBN} have special serial or TCP/IP interfaces
10465to make this work with particular debugging targets. In addition,
5d161b24 10466@value{GDBN} comes with a generic serial protocol (specific to @value{GDBN},
c906108c
SS
10467but not specific to any particular target system) which you can use if you
10468write the remote stubs---the code that runs on the remote system to
10469communicate with @value{GDBN}.
10470
10471Other remote targets may be available in your
10472configuration of @value{GDBN}; use @code{help target} to list them.
c906108c 10473
6f05cf9f
AC
10474@node KOD
10475@section Kernel Object Display
10476
10477@cindex kernel object display
10478@cindex kernel object
10479@cindex KOD
10480
10481Some targets support kernel object display. Using this facility,
10482@value{GDBN} communicates specially with the underlying operating system
10483and can display information about operating system-level objects such as
10484mutexes and other synchronization objects. Exactly which objects can be
10485displayed is determined on a per-OS basis.
10486
10487Use the @code{set os} command to set the operating system. This tells
10488@value{GDBN} which kernel object display module to initialize:
10489
474c8240 10490@smallexample
6f05cf9f 10491(@value{GDBP}) set os cisco
474c8240 10492@end smallexample
6f05cf9f
AC
10493
10494If @code{set os} succeeds, @value{GDBN} will display some information
10495about the operating system, and will create a new @code{info} command
10496which can be used to query the target. The @code{info} command is named
10497after the operating system:
c906108c 10498
474c8240 10499@smallexample
6f05cf9f
AC
10500(@value{GDBP}) info cisco
10501List of Cisco Kernel Objects
10502Object Description
10503any Any and all objects
474c8240 10504@end smallexample
6f05cf9f
AC
10505
10506Further subcommands can be used to query about particular objects known
10507by the kernel.
10508
10509There is currently no way to determine whether a given operating system
10510is supported other than to try it.
10511
10512
10513@node Remote Debugging
10514@chapter Debugging remote programs
10515
6b2f586d 10516@menu
07f31aa6 10517* Connecting:: Connecting to a remote target
6b2f586d
AC
10518* Server:: Using the gdbserver program
10519* NetWare:: Using the gdbserve.nlm program
501eef12 10520* Remote configuration:: Remote configuration
6b2f586d 10521* remote stub:: Implementing a remote stub
6b2f586d
AC
10522@end menu
10523
07f31aa6
DJ
10524@node Connecting
10525@section Connecting to a remote target
10526
10527On the @value{GDBN} host machine, you will need an unstripped copy of
10528your program, since @value{GDBN} needs symobl and debugging information.
10529Start up @value{GDBN} as usual, using the name of the local copy of your
10530program as the first argument.
10531
10532@cindex serial line, @code{target remote}
10533If you're using a serial line, you may want to give @value{GDBN} the
10534@w{@samp{--baud}} option, or use the @code{set remotebaud} command
10535before the @code{target} command.
10536
10537After that, use @code{target remote} to establish communications with
10538the target machine. Its argument specifies how to communicate---either
10539via a devicename attached to a direct serial line, or a TCP or UDP port
10540(possibly to a terminal server which in turn has a serial line to the
10541target). For example, to use a serial line connected to the device
10542named @file{/dev/ttyb}:
10543
10544@smallexample
10545target remote /dev/ttyb
10546@end smallexample
10547
10548@cindex TCP port, @code{target remote}
10549To use a TCP connection, use an argument of the form
10550@code{@var{host}:@var{port}} or @code{tcp:@var{host}:@var{port}}.
10551For example, to connect to port 2828 on a
10552terminal server named @code{manyfarms}:
10553
10554@smallexample
10555target remote manyfarms:2828
10556@end smallexample
10557
10558If your remote target is actually running on the same machine as
10559your debugger session (e.g.@: a simulator of your target running on
10560the same host), you can omit the hostname. For example, to connect
10561to port 1234 on your local machine:
10562
10563@smallexample
10564target remote :1234
10565@end smallexample
10566@noindent
10567
10568Note that the colon is still required here.
10569
10570@cindex UDP port, @code{target remote}
10571To use a UDP connection, use an argument of the form
10572@code{udp:@var{host}:@var{port}}. For example, to connect to UDP port 2828
10573on a terminal server named @code{manyfarms}:
10574
10575@smallexample
10576target remote udp:manyfarms:2828
10577@end smallexample
10578
10579When using a UDP connection for remote debugging, you should keep in mind
10580that the `U' stands for ``Unreliable''. UDP can silently drop packets on
10581busy or unreliable networks, which will cause havoc with your debugging
10582session.
10583
10584Now you can use all the usual commands to examine and change data and to
10585step and continue the remote program.
10586
10587@cindex interrupting remote programs
10588@cindex remote programs, interrupting
10589Whenever @value{GDBN} is waiting for the remote program, if you type the
10590interrupt character (often @key{C-C}), @value{GDBN} attempts to stop the
10591program. This may or may not succeed, depending in part on the hardware
10592and the serial drivers the remote system uses. If you type the
10593interrupt character once again, @value{GDBN} displays this prompt:
10594
10595@smallexample
10596Interrupted while waiting for the program.
10597Give up (and stop debugging it)? (y or n)
10598@end smallexample
10599
10600If you type @kbd{y}, @value{GDBN} abandons the remote debugging session.
10601(If you decide you want to try again later, you can use @samp{target
10602remote} again to connect once more.) If you type @kbd{n}, @value{GDBN}
10603goes back to waiting.
10604
10605@table @code
10606@kindex detach (remote)
10607@item detach
10608When you have finished debugging the remote program, you can use the
10609@code{detach} command to release it from @value{GDBN} control.
10610Detaching from the target normally resumes its execution, but the results
10611will depend on your particular remote stub. After the @code{detach}
10612command, @value{GDBN} is free to connect to another target.
10613
10614@kindex disconnect
10615@item disconnect
10616The @code{disconnect} command behaves like @code{detach}, except that
10617the target is generally not resumed. It will wait for @value{GDBN}
10618(this instance or another one) to connect and continue debugging. After
10619the @code{disconnect} command, @value{GDBN} is again free to connect to
10620another target.
10621@end table
10622
6f05cf9f
AC
10623@node Server
10624@section Using the @code{gdbserver} program
10625
10626@kindex gdbserver
10627@cindex remote connection without stubs
10628@code{gdbserver} is a control program for Unix-like systems, which
10629allows you to connect your program with a remote @value{GDBN} via
10630@code{target remote}---but without linking in the usual debugging stub.
10631
10632@code{gdbserver} is not a complete replacement for the debugging stubs,
10633because it requires essentially the same operating-system facilities
10634that @value{GDBN} itself does. In fact, a system that can run
10635@code{gdbserver} to connect to a remote @value{GDBN} could also run
10636@value{GDBN} locally! @code{gdbserver} is sometimes useful nevertheless,
10637because it is a much smaller program than @value{GDBN} itself. It is
10638also easier to port than all of @value{GDBN}, so you may be able to get
10639started more quickly on a new system by using @code{gdbserver}.
10640Finally, if you develop code for real-time systems, you may find that
10641the tradeoffs involved in real-time operation make it more convenient to
10642do as much development work as possible on another system, for example
10643by cross-compiling. You can use @code{gdbserver} to make a similar
10644choice for debugging.
10645
10646@value{GDBN} and @code{gdbserver} communicate via either a serial line
10647or a TCP connection, using the standard @value{GDBN} remote serial
10648protocol.
10649
10650@table @emph
10651@item On the target machine,
10652you need to have a copy of the program you want to debug.
10653@code{gdbserver} does not need your program's symbol table, so you can
10654strip the program if necessary to save space. @value{GDBN} on the host
10655system does all the symbol handling.
10656
10657To use the server, you must tell it how to communicate with @value{GDBN};
56460a61 10658the name of your program; and the arguments for your program. The usual
6f05cf9f
AC
10659syntax is:
10660
10661@smallexample
10662target> gdbserver @var{comm} @var{program} [ @var{args} @dots{} ]
10663@end smallexample
10664
10665@var{comm} is either a device name (to use a serial line) or a TCP
10666hostname and portnumber. For example, to debug Emacs with the argument
10667@samp{foo.txt} and communicate with @value{GDBN} over the serial port
10668@file{/dev/com1}:
10669
10670@smallexample
10671target> gdbserver /dev/com1 emacs foo.txt
10672@end smallexample
10673
10674@code{gdbserver} waits passively for the host @value{GDBN} to communicate
10675with it.
10676
10677To use a TCP connection instead of a serial line:
10678
10679@smallexample
10680target> gdbserver host:2345 emacs foo.txt
10681@end smallexample
10682
10683The only difference from the previous example is the first argument,
10684specifying that you are communicating with the host @value{GDBN} via
10685TCP. The @samp{host:2345} argument means that @code{gdbserver} is to
10686expect a TCP connection from machine @samp{host} to local TCP port 2345.
10687(Currently, the @samp{host} part is ignored.) You can choose any number
10688you want for the port number as long as it does not conflict with any
10689TCP ports already in use on the target system (for example, @code{23} is
10690reserved for @code{telnet}).@footnote{If you choose a port number that
10691conflicts with another service, @code{gdbserver} prints an error message
10692and exits.} You must use the same port number with the host @value{GDBN}
10693@code{target remote} command.
10694
56460a61
DJ
10695On some targets, @code{gdbserver} can also attach to running programs.
10696This is accomplished via the @code{--attach} argument. The syntax is:
10697
10698@smallexample
10699target> gdbserver @var{comm} --attach @var{pid}
10700@end smallexample
10701
10702@var{pid} is the process ID of a currently running process. It isn't necessary
10703to point @code{gdbserver} at a binary for the running process.
10704
07f31aa6
DJ
10705@item On the host machine,
10706connect to your target (@pxref{Connecting,,Connecting to a remote target}).
6f05cf9f
AC
10707For TCP connections, you must start up @code{gdbserver} prior to using
10708the @code{target remote} command. Otherwise you may get an error whose
10709text depends on the host system, but which usually looks something like
07f31aa6
DJ
10710@samp{Connection refused}. You don't need to use the @code{load}
10711command in @value{GDBN} when using gdbserver, since the program is
10712already on the target.
10713
6f05cf9f
AC
10714@end table
10715
10716@node NetWare
10717@section Using the @code{gdbserve.nlm} program
10718
10719@kindex gdbserve.nlm
10720@code{gdbserve.nlm} is a control program for NetWare systems, which
10721allows you to connect your program with a remote @value{GDBN} via
10722@code{target remote}.
10723
10724@value{GDBN} and @code{gdbserve.nlm} communicate via a serial line,
10725using the standard @value{GDBN} remote serial protocol.
10726
10727@table @emph
10728@item On the target machine,
10729you need to have a copy of the program you want to debug.
10730@code{gdbserve.nlm} does not need your program's symbol table, so you
10731can strip the program if necessary to save space. @value{GDBN} on the
10732host system does all the symbol handling.
10733
10734To use the server, you must tell it how to communicate with
10735@value{GDBN}; the name of your program; and the arguments for your
10736program. The syntax is:
10737
10738@smallexample
10739load gdbserve [ BOARD=@var{board} ] [ PORT=@var{port} ]
10740 [ BAUD=@var{baud} ] @var{program} [ @var{args} @dots{} ]
10741@end smallexample
10742
10743@var{board} and @var{port} specify the serial line; @var{baud} specifies
10744the baud rate used by the connection. @var{port} and @var{node} default
10745to 0, @var{baud} defaults to 9600@dmn{bps}.
10746
10747For example, to debug Emacs with the argument @samp{foo.txt}and
10748communicate with @value{GDBN} over serial port number 2 or board 1
10749using a 19200@dmn{bps} connection:
10750
10751@smallexample
10752load gdbserve BOARD=1 PORT=2 BAUD=19200 emacs foo.txt
10753@end smallexample
10754
07f31aa6
DJ
10755@item
10756On the @value{GDBN} host machine, connect to your target (@pxref{Connecting,,
10757Connecting to a remote target}).
6f05cf9f 10758
6f05cf9f
AC
10759@end table
10760
501eef12
AC
10761@node Remote configuration
10762@section Remote configuration
10763
10764The following configuration options are available when debugging remote
10765programs:
10766
10767@table @code
10768@kindex set remote hardware-watchpoint-limit
10769@kindex set remote hardware-breakpoint-limit
10770@anchor{set remote hardware-watchpoint-limit}
10771@anchor{set remote hardware-breakpoint-limit}
10772@item set remote hardware-watchpoint-limit @var{limit}
10773@itemx set remote hardware-breakpoint-limit @var{limit}
10774Restrict @value{GDBN} to using @var{limit} remote hardware breakpoint or
10775watchpoints. A limit of -1, the default, is treated as unlimited.
10776@end table
10777
6f05cf9f
AC
10778@node remote stub
10779@section Implementing a remote stub
7a292a7a 10780
8e04817f
AC
10781@cindex debugging stub, example
10782@cindex remote stub, example
10783@cindex stub example, remote debugging
10784The stub files provided with @value{GDBN} implement the target side of the
10785communication protocol, and the @value{GDBN} side is implemented in the
10786@value{GDBN} source file @file{remote.c}. Normally, you can simply allow
10787these subroutines to communicate, and ignore the details. (If you're
10788implementing your own stub file, you can still ignore the details: start
10789with one of the existing stub files. @file{sparc-stub.c} is the best
10790organized, and therefore the easiest to read.)
10791
104c1213
JM
10792@cindex remote serial debugging, overview
10793To debug a program running on another machine (the debugging
10794@dfn{target} machine), you must first arrange for all the usual
10795prerequisites for the program to run by itself. For example, for a C
10796program, you need:
c906108c 10797
104c1213
JM
10798@enumerate
10799@item
10800A startup routine to set up the C runtime environment; these usually
10801have a name like @file{crt0}. The startup routine may be supplied by
10802your hardware supplier, or you may have to write your own.
96baa820 10803
5d161b24 10804@item
d4f3574e 10805A C subroutine library to support your program's
104c1213 10806subroutine calls, notably managing input and output.
96baa820 10807
104c1213
JM
10808@item
10809A way of getting your program to the other machine---for example, a
10810download program. These are often supplied by the hardware
10811manufacturer, but you may have to write your own from hardware
10812documentation.
10813@end enumerate
96baa820 10814
104c1213
JM
10815The next step is to arrange for your program to use a serial port to
10816communicate with the machine where @value{GDBN} is running (the @dfn{host}
10817machine). In general terms, the scheme looks like this:
96baa820 10818
104c1213
JM
10819@table @emph
10820@item On the host,
10821@value{GDBN} already understands how to use this protocol; when everything
10822else is set up, you can simply use the @samp{target remote} command
10823(@pxref{Targets,,Specifying a Debugging Target}).
10824
10825@item On the target,
10826you must link with your program a few special-purpose subroutines that
10827implement the @value{GDBN} remote serial protocol. The file containing these
10828subroutines is called a @dfn{debugging stub}.
10829
10830On certain remote targets, you can use an auxiliary program
10831@code{gdbserver} instead of linking a stub into your program.
10832@xref{Server,,Using the @code{gdbserver} program}, for details.
10833@end table
96baa820 10834
104c1213
JM
10835The debugging stub is specific to the architecture of the remote
10836machine; for example, use @file{sparc-stub.c} to debug programs on
10837@sc{sparc} boards.
96baa820 10838
104c1213
JM
10839@cindex remote serial stub list
10840These working remote stubs are distributed with @value{GDBN}:
96baa820 10841
104c1213
JM
10842@table @code
10843
10844@item i386-stub.c
41afff9a 10845@cindex @file{i386-stub.c}
104c1213
JM
10846@cindex Intel
10847@cindex i386
10848For Intel 386 and compatible architectures.
10849
10850@item m68k-stub.c
41afff9a 10851@cindex @file{m68k-stub.c}
104c1213
JM
10852@cindex Motorola 680x0
10853@cindex m680x0
10854For Motorola 680x0 architectures.
10855
10856@item sh-stub.c
41afff9a 10857@cindex @file{sh-stub.c}
104c1213
JM
10858@cindex Hitachi
10859@cindex SH
10860For Hitachi SH architectures.
10861
10862@item sparc-stub.c
41afff9a 10863@cindex @file{sparc-stub.c}
104c1213
JM
10864@cindex Sparc
10865For @sc{sparc} architectures.
10866
10867@item sparcl-stub.c
41afff9a 10868@cindex @file{sparcl-stub.c}
104c1213
JM
10869@cindex Fujitsu
10870@cindex SparcLite
10871For Fujitsu @sc{sparclite} architectures.
10872
10873@end table
10874
10875The @file{README} file in the @value{GDBN} distribution may list other
10876recently added stubs.
10877
10878@menu
10879* Stub Contents:: What the stub can do for you
10880* Bootstrapping:: What you must do for the stub
10881* Debug Session:: Putting it all together
104c1213
JM
10882@end menu
10883
6d2ebf8b 10884@node Stub Contents
6f05cf9f 10885@subsection What the stub can do for you
104c1213
JM
10886
10887@cindex remote serial stub
10888The debugging stub for your architecture supplies these three
10889subroutines:
10890
10891@table @code
10892@item set_debug_traps
10893@kindex set_debug_traps
10894@cindex remote serial stub, initialization
10895This routine arranges for @code{handle_exception} to run when your
10896program stops. You must call this subroutine explicitly near the
10897beginning of your program.
10898
10899@item handle_exception
10900@kindex handle_exception
10901@cindex remote serial stub, main routine
10902This is the central workhorse, but your program never calls it
10903explicitly---the setup code arranges for @code{handle_exception} to
10904run when a trap is triggered.
10905
10906@code{handle_exception} takes control when your program stops during
10907execution (for example, on a breakpoint), and mediates communications
10908with @value{GDBN} on the host machine. This is where the communications
10909protocol is implemented; @code{handle_exception} acts as the @value{GDBN}
d4f3574e 10910representative on the target machine. It begins by sending summary
104c1213
JM
10911information on the state of your program, then continues to execute,
10912retrieving and transmitting any information @value{GDBN} needs, until you
10913execute a @value{GDBN} command that makes your program resume; at that point,
10914@code{handle_exception} returns control to your own code on the target
5d161b24 10915machine.
104c1213
JM
10916
10917@item breakpoint
10918@cindex @code{breakpoint} subroutine, remote
10919Use this auxiliary subroutine to make your program contain a
10920breakpoint. Depending on the particular situation, this may be the only
10921way for @value{GDBN} to get control. For instance, if your target
10922machine has some sort of interrupt button, you won't need to call this;
10923pressing the interrupt button transfers control to
10924@code{handle_exception}---in effect, to @value{GDBN}. On some machines,
10925simply receiving characters on the serial port may also trigger a trap;
10926again, in that situation, you don't need to call @code{breakpoint} from
10927your own program---simply running @samp{target remote} from the host
5d161b24 10928@value{GDBN} session gets control.
104c1213
JM
10929
10930Call @code{breakpoint} if none of these is true, or if you simply want
10931to make certain your program stops at a predetermined point for the
10932start of your debugging session.
10933@end table
10934
6d2ebf8b 10935@node Bootstrapping
6f05cf9f 10936@subsection What you must do for the stub
104c1213
JM
10937
10938@cindex remote stub, support routines
10939The debugging stubs that come with @value{GDBN} are set up for a particular
10940chip architecture, but they have no information about the rest of your
10941debugging target machine.
10942
10943First of all you need to tell the stub how to communicate with the
10944serial port.
10945
10946@table @code
10947@item int getDebugChar()
10948@kindex getDebugChar
10949Write this subroutine to read a single character from the serial port.
10950It may be identical to @code{getchar} for your target system; a
10951different name is used to allow you to distinguish the two if you wish.
10952
10953@item void putDebugChar(int)
10954@kindex putDebugChar
10955Write this subroutine to write a single character to the serial port.
5d161b24 10956It may be identical to @code{putchar} for your target system; a
104c1213
JM
10957different name is used to allow you to distinguish the two if you wish.
10958@end table
10959
10960@cindex control C, and remote debugging
10961@cindex interrupting remote targets
10962If you want @value{GDBN} to be able to stop your program while it is
10963running, you need to use an interrupt-driven serial driver, and arrange
10964for it to stop when it receives a @code{^C} (@samp{\003}, the control-C
10965character). That is the character which @value{GDBN} uses to tell the
10966remote system to stop.
10967
10968Getting the debugging target to return the proper status to @value{GDBN}
10969probably requires changes to the standard stub; one quick and dirty way
10970is to just execute a breakpoint instruction (the ``dirty'' part is that
10971@value{GDBN} reports a @code{SIGTRAP} instead of a @code{SIGINT}).
10972
10973Other routines you need to supply are:
10974
10975@table @code
10976@item void exceptionHandler (int @var{exception_number}, void *@var{exception_address})
10977@kindex exceptionHandler
10978Write this function to install @var{exception_address} in the exception
10979handling tables. You need to do this because the stub does not have any
10980way of knowing what the exception handling tables on your target system
10981are like (for example, the processor's table might be in @sc{rom},
10982containing entries which point to a table in @sc{ram}).
10983@var{exception_number} is the exception number which should be changed;
10984its meaning is architecture-dependent (for example, different numbers
10985might represent divide by zero, misaligned access, etc). When this
10986exception occurs, control should be transferred directly to
10987@var{exception_address}, and the processor state (stack, registers,
10988and so on) should be just as it is when a processor exception occurs. So if
10989you want to use a jump instruction to reach @var{exception_address}, it
10990should be a simple jump, not a jump to subroutine.
10991
10992For the 386, @var{exception_address} should be installed as an interrupt
10993gate so that interrupts are masked while the handler runs. The gate
10994should be at privilege level 0 (the most privileged level). The
10995@sc{sparc} and 68k stubs are able to mask interrupts themselves without
10996help from @code{exceptionHandler}.
10997
10998@item void flush_i_cache()
10999@kindex flush_i_cache
d4f3574e 11000On @sc{sparc} and @sc{sparclite} only, write this subroutine to flush the
104c1213
JM
11001instruction cache, if any, on your target machine. If there is no
11002instruction cache, this subroutine may be a no-op.
11003
11004On target machines that have instruction caches, @value{GDBN} requires this
11005function to make certain that the state of your program is stable.
11006@end table
11007
11008@noindent
11009You must also make sure this library routine is available:
11010
11011@table @code
11012@item void *memset(void *, int, int)
11013@kindex memset
11014This is the standard library function @code{memset} that sets an area of
11015memory to a known value. If you have one of the free versions of
11016@code{libc.a}, @code{memset} can be found there; otherwise, you must
11017either obtain it from your hardware manufacturer, or write your own.
11018@end table
11019
11020If you do not use the GNU C compiler, you may need other standard
11021library subroutines as well; this varies from one stub to another,
11022but in general the stubs are likely to use any of the common library
d4f3574e 11023subroutines which @code{@value{GCC}} generates as inline code.
104c1213
JM
11024
11025
6d2ebf8b 11026@node Debug Session
6f05cf9f 11027@subsection Putting it all together
104c1213
JM
11028
11029@cindex remote serial debugging summary
11030In summary, when your program is ready to debug, you must follow these
11031steps.
11032
11033@enumerate
11034@item
6d2ebf8b 11035Make sure you have defined the supporting low-level routines
104c1213
JM
11036(@pxref{Bootstrapping,,What you must do for the stub}):
11037@display
11038@code{getDebugChar}, @code{putDebugChar},
11039@code{flush_i_cache}, @code{memset}, @code{exceptionHandler}.
11040@end display
11041
11042@item
11043Insert these lines near the top of your program:
11044
474c8240 11045@smallexample
104c1213
JM
11046set_debug_traps();
11047breakpoint();
474c8240 11048@end smallexample
104c1213
JM
11049
11050@item
11051For the 680x0 stub only, you need to provide a variable called
11052@code{exceptionHook}. Normally you just use:
11053
474c8240 11054@smallexample
104c1213 11055void (*exceptionHook)() = 0;
474c8240 11056@end smallexample
104c1213 11057
d4f3574e 11058@noindent
104c1213 11059but if before calling @code{set_debug_traps}, you set it to point to a
598ca718 11060function in your program, that function is called when
104c1213
JM
11061@code{@value{GDBN}} continues after stopping on a trap (for example, bus
11062error). The function indicated by @code{exceptionHook} is called with
11063one parameter: an @code{int} which is the exception number.
11064
11065@item
11066Compile and link together: your program, the @value{GDBN} debugging stub for
11067your target architecture, and the supporting subroutines.
11068
11069@item
11070Make sure you have a serial connection between your target machine and
11071the @value{GDBN} host, and identify the serial port on the host.
11072
11073@item
11074@c The "remote" target now provides a `load' command, so we should
11075@c document that. FIXME.
11076Download your program to your target machine (or get it there by
11077whatever means the manufacturer provides), and start it.
11078
11079@item
07f31aa6
DJ
11080Start @value{GDBN} on the host, and connect to the target
11081(@pxref{Connecting,,Connecting to a remote target}).
9db8d71f 11082
104c1213
JM
11083@end enumerate
11084
8e04817f
AC
11085@node Configurations
11086@chapter Configuration-Specific Information
104c1213 11087
8e04817f
AC
11088While nearly all @value{GDBN} commands are available for all native and
11089cross versions of the debugger, there are some exceptions. This chapter
11090describes things that are only available in certain configurations.
104c1213 11091
8e04817f
AC
11092There are three major categories of configurations: native
11093configurations, where the host and target are the same, embedded
11094operating system configurations, which are usually the same for several
11095different processor architectures, and bare embedded processors, which
11096are quite different from each other.
104c1213 11097
8e04817f
AC
11098@menu
11099* Native::
11100* Embedded OS::
11101* Embedded Processors::
11102* Architectures::
11103@end menu
104c1213 11104
8e04817f
AC
11105@node Native
11106@section Native
104c1213 11107
8e04817f
AC
11108This section describes details specific to particular native
11109configurations.
6cf7e474 11110
8e04817f
AC
11111@menu
11112* HP-UX:: HP-UX
11113* SVR4 Process Information:: SVR4 process information
11114* DJGPP Native:: Features specific to the DJGPP port
78c47bea 11115* Cygwin Native:: Features specific to the Cygwin port
8e04817f 11116@end menu
6cf7e474 11117
8e04817f
AC
11118@node HP-UX
11119@subsection HP-UX
104c1213 11120
8e04817f
AC
11121On HP-UX systems, if you refer to a function or variable name that
11122begins with a dollar sign, @value{GDBN} searches for a user or system
11123name first, before it searches for a convenience variable.
104c1213 11124
8e04817f
AC
11125@node SVR4 Process Information
11126@subsection SVR4 process information
104c1213 11127
8e04817f
AC
11128@kindex /proc
11129@cindex process image
104c1213 11130
8e04817f
AC
11131Many versions of SVR4 provide a facility called @samp{/proc} that can be
11132used to examine the image of a running process using file-system
11133subroutines. If @value{GDBN} is configured for an operating system with
11134this facility, the command @code{info proc} is available to report on
11135several kinds of information about the process running your program.
11136@code{info proc} works only on SVR4 systems that include the
11137@code{procfs} code. This includes OSF/1 (Digital Unix), Solaris, Irix,
1104b9e7 11138and Unixware, but not HP-UX or @sc{gnu}/Linux, for example.
104c1213 11139
8e04817f
AC
11140@table @code
11141@kindex info proc
11142@item info proc
11143Summarize available information about the process.
6cf7e474 11144
8e04817f
AC
11145@kindex info proc mappings
11146@item info proc mappings
11147Report on the address ranges accessible in the program, with information
11148on whether your program may read, write, or execute each range.
11149@ignore
11150@comment These sub-options of 'info proc' were not included when
11151@comment procfs.c was re-written. Keep their descriptions around
11152@comment against the day when someone finds the time to put them back in.
11153@kindex info proc times
11154@item info proc times
11155Starting time, user CPU time, and system CPU time for your program and
11156its children.
6cf7e474 11157
8e04817f
AC
11158@kindex info proc id
11159@item info proc id
11160Report on the process IDs related to your program: its own process ID,
11161the ID of its parent, the process group ID, and the session ID.
104c1213 11162
8e04817f
AC
11163@kindex info proc status
11164@item info proc status
11165General information on the state of the process. If the process is
11166stopped, this report includes the reason for stopping, and any signal
11167received.
d4f3574e 11168
8e04817f
AC
11169@item info proc all
11170Show all the above information about the process.
11171@end ignore
11172@end table
104c1213 11173
8e04817f
AC
11174@node DJGPP Native
11175@subsection Features for Debugging @sc{djgpp} Programs
11176@cindex @sc{djgpp} debugging
11177@cindex native @sc{djgpp} debugging
11178@cindex MS-DOS-specific commands
104c1213 11179
8e04817f
AC
11180@sc{djgpp} is the port of @sc{gnu} development tools to MS-DOS and
11181MS-Windows. @sc{djgpp} programs are 32-bit protected-mode programs
11182that use the @dfn{DPMI} (DOS Protected-Mode Interface) API to run on
11183top of real-mode DOS systems and their emulations.
104c1213 11184
8e04817f
AC
11185@value{GDBN} supports native debugging of @sc{djgpp} programs, and
11186defines a few commands specific to the @sc{djgpp} port. This
11187subsection describes those commands.
104c1213 11188
8e04817f
AC
11189@table @code
11190@kindex info dos
11191@item info dos
11192This is a prefix of @sc{djgpp}-specific commands which print
11193information about the target system and important OS structures.
f1251bdd 11194
8e04817f
AC
11195@kindex sysinfo
11196@cindex MS-DOS system info
11197@cindex free memory information (MS-DOS)
11198@item info dos sysinfo
11199This command displays assorted information about the underlying
11200platform: the CPU type and features, the OS version and flavor, the
11201DPMI version, and the available conventional and DPMI memory.
104c1213 11202
8e04817f
AC
11203@cindex GDT
11204@cindex LDT
11205@cindex IDT
11206@cindex segment descriptor tables
11207@cindex descriptor tables display
11208@item info dos gdt
11209@itemx info dos ldt
11210@itemx info dos idt
11211These 3 commands display entries from, respectively, Global, Local,
11212and Interrupt Descriptor Tables (GDT, LDT, and IDT). The descriptor
11213tables are data structures which store a descriptor for each segment
11214that is currently in use. The segment's selector is an index into a
11215descriptor table; the table entry for that index holds the
11216descriptor's base address and limit, and its attributes and access
11217rights.
104c1213 11218
8e04817f
AC
11219A typical @sc{djgpp} program uses 3 segments: a code segment, a data
11220segment (used for both data and the stack), and a DOS segment (which
11221allows access to DOS/BIOS data structures and absolute addresses in
11222conventional memory). However, the DPMI host will usually define
11223additional segments in order to support the DPMI environment.
d4f3574e 11224
8e04817f
AC
11225@cindex garbled pointers
11226These commands allow to display entries from the descriptor tables.
11227Without an argument, all entries from the specified table are
11228displayed. An argument, which should be an integer expression, means
11229display a single entry whose index is given by the argument. For
11230example, here's a convenient way to display information about the
11231debugged program's data segment:
104c1213 11232
8e04817f
AC
11233@smallexample
11234@exdent @code{(@value{GDBP}) info dos ldt $ds}
11235@exdent @code{0x13f: base=0x11970000 limit=0x0009ffff 32-Bit Data (Read/Write, Exp-up)}
11236@end smallexample
104c1213 11237
8e04817f
AC
11238@noindent
11239This comes in handy when you want to see whether a pointer is outside
11240the data segment's limit (i.e.@: @dfn{garbled}).
104c1213 11241
8e04817f
AC
11242@cindex page tables display (MS-DOS)
11243@item info dos pde
11244@itemx info dos pte
11245These two commands display entries from, respectively, the Page
11246Directory and the Page Tables. Page Directories and Page Tables are
11247data structures which control how virtual memory addresses are mapped
11248into physical addresses. A Page Table includes an entry for every
11249page of memory that is mapped into the program's address space; there
11250may be several Page Tables, each one holding up to 4096 entries. A
11251Page Directory has up to 4096 entries, one each for every Page Table
11252that is currently in use.
104c1213 11253
8e04817f
AC
11254Without an argument, @kbd{info dos pde} displays the entire Page
11255Directory, and @kbd{info dos pte} displays all the entries in all of
11256the Page Tables. An argument, an integer expression, given to the
11257@kbd{info dos pde} command means display only that entry from the Page
11258Directory table. An argument given to the @kbd{info dos pte} command
11259means display entries from a single Page Table, the one pointed to by
11260the specified entry in the Page Directory.
104c1213 11261
8e04817f
AC
11262@cindex direct memory access (DMA) on MS-DOS
11263These commands are useful when your program uses @dfn{DMA} (Direct
11264Memory Access), which needs physical addresses to program the DMA
11265controller.
104c1213 11266
8e04817f 11267These commands are supported only with some DPMI servers.
104c1213 11268
8e04817f
AC
11269@cindex physical address from linear address
11270@item info dos address-pte @var{addr}
11271This command displays the Page Table entry for a specified linear
11272address. The argument linear address @var{addr} should already have the
11273appropriate segment's base address added to it, because this command
11274accepts addresses which may belong to @emph{any} segment. For
11275example, here's how to display the Page Table entry for the page where
11276the variable @code{i} is stored:
104c1213 11277
8e04817f
AC
11278@smallexample
11279@exdent @code{(@value{GDBP}) info dos address-pte __djgpp_base_address + (char *)&i}
11280@exdent @code{Page Table entry for address 0x11a00d30:}
11281@exdent @code{Base=0x02698000 Dirty Acc. Not-Cached Write-Back Usr Read-Write +0xd30}
11282@end smallexample
104c1213 11283
8e04817f
AC
11284@noindent
11285This says that @code{i} is stored at offset @code{0xd30} from the page
11286whose physical base address is @code{0x02698000}, and prints all the
11287attributes of that page.
104c1213 11288
8e04817f
AC
11289Note that you must cast the addresses of variables to a @code{char *},
11290since otherwise the value of @code{__djgpp_base_address}, the base
11291address of all variables and functions in a @sc{djgpp} program, will
11292be added using the rules of C pointer arithmetics: if @code{i} is
11293declared an @code{int}, @value{GDBN} will add 4 times the value of
11294@code{__djgpp_base_address} to the address of @code{i}.
104c1213 11295
8e04817f
AC
11296Here's another example, it displays the Page Table entry for the
11297transfer buffer:
104c1213 11298
8e04817f
AC
11299@smallexample
11300@exdent @code{(@value{GDBP}) info dos address-pte *((unsigned *)&_go32_info_block + 3)}
11301@exdent @code{Page Table entry for address 0x29110:}
11302@exdent @code{Base=0x00029000 Dirty Acc. Not-Cached Write-Back Usr Read-Write +0x110}
11303@end smallexample
104c1213 11304
8e04817f
AC
11305@noindent
11306(The @code{+ 3} offset is because the transfer buffer's address is the
113073rd member of the @code{_go32_info_block} structure.) The output of
11308this command clearly shows that addresses in conventional memory are
11309mapped 1:1, i.e.@: the physical and linear addresses are identical.
104c1213 11310
8e04817f
AC
11311This command is supported only with some DPMI servers.
11312@end table
104c1213 11313
78c47bea
PM
11314@node Cygwin Native
11315@subsection Features for Debugging MS Windows PE executables
11316@cindex MS Windows debugging
11317@cindex native Cygwin debugging
11318@cindex Cygwin-specific commands
11319
be448670
CF
11320@value{GDBN} supports native debugging of MS Windows programs, including
11321DLLs with and without symbolic debugging information. There are various
11322additional Cygwin-specific commands, described in this subsection. The
11323subsubsection @pxref{Non-debug DLL symbols} describes working with DLLs
11324that have no debugging symbols.
11325
78c47bea
PM
11326
11327@table @code
11328@kindex info w32
11329@item info w32
11330This is a prefix of MS Windows specific commands which print
11331information about the target system and important OS structures.
11332
11333@item info w32 selector
11334This command displays information returned by
11335the Win32 API @code{GetThreadSelectorEntry} function.
11336It takes an optional argument that is evaluated to
11337a long value to give the information about this given selector.
11338Without argument, this command displays information
11339about the the six segment registers.
11340
11341@kindex info dll
11342@item info dll
11343This is a Cygwin specific alias of info shared.
11344
11345@kindex dll-symbols
11346@item dll-symbols
11347This command loads symbols from a dll similarly to
11348add-sym command but without the need to specify a base address.
11349
11350@kindex set new-console
11351@item set new-console @var{mode}
11352If @var{mode} is @code{on} the debuggee will
11353be started in a new console on next start.
11354If @var{mode} is @code{off}i, the debuggee will
11355be started in the same console as the debugger.
11356
11357@kindex show new-console
11358@item show new-console
11359Displays whether a new console is used
11360when the debuggee is started.
11361
11362@kindex set new-group
11363@item set new-group @var{mode}
11364This boolean value controls whether the debuggee should
11365start a new group or stay in the same group as the debugger.
11366This affects the way the Windows OS handles
11367Ctrl-C.
11368
11369@kindex show new-group
11370@item show new-group
11371Displays current value of new-group boolean.
11372
11373@kindex set debugevents
11374@item set debugevents
11375This boolean value adds debug output concerning events seen by the debugger.
11376
11377@kindex set debugexec
11378@item set debugexec
11379This boolean value adds debug output concerning execute events
11380seen by the debugger.
11381
11382@kindex set debugexceptions
11383@item set debugexceptions
11384This boolean value adds debug ouptut concerning exception events
11385seen by the debugger.
11386
11387@kindex set debugmemory
11388@item set debugmemory
11389This boolean value adds debug ouptut concerning memory events
11390seen by the debugger.
11391
11392@kindex set shell
11393@item set shell
11394This boolean values specifies whether the debuggee is called
11395via a shell or directly (default value is on).
11396
11397@kindex show shell
11398@item show shell
11399Displays if the debuggee will be started with a shell.
11400
11401@end table
11402
be448670
CF
11403@menu
11404* Non-debug DLL symbols:: Support for DLLs without debugging symbols
11405@end menu
11406
11407@node Non-debug DLL symbols
11408@subsubsection Support for DLLs without debugging symbols
11409@cindex DLLs with no debugging symbols
11410@cindex Minimal symbols and DLLs
11411
11412Very often on windows, some of the DLLs that your program relies on do
11413not include symbolic debugging information (for example,
11414@file{kernel32.dll}). When @value{GDBN} doesn't recognize any debugging
11415symbols in a DLL, it relies on the minimal amount of symbolic
11416information contained in the DLL's export table. This subsubsection
11417describes working with such symbols, known internally to @value{GDBN} as
11418``minimal symbols''.
11419
11420Note that before the debugged program has started execution, no DLLs
11421will have been loaded. The easiest way around this problem is simply to
11422start the program --- either by setting a breakpoint or letting the
11423program run once to completion. It is also possible to force
11424@value{GDBN} to load a particular DLL before starting the executable ---
11425see the shared library information in @pxref{Files} or the
11426@code{dll-symbols} command in @pxref{Cygwin Native}. Currently,
11427explicitly loading symbols from a DLL with no debugging information will
11428cause the symbol names to be duplicated in @value{GDBN}'s lookup table,
11429which may adversely affect symbol lookup performance.
11430
11431@subsubsection DLL name prefixes
11432
11433In keeping with the naming conventions used by the Microsoft debugging
11434tools, DLL export symbols are made available with a prefix based on the
11435DLL name, for instance @code{KERNEL32!CreateFileA}. The plain name is
11436also entered into the symbol table, so @code{CreateFileA} is often
11437sufficient. In some cases there will be name clashes within a program
11438(particularly if the executable itself includes full debugging symbols)
11439necessitating the use of the fully qualified name when referring to the
11440contents of the DLL. Use single-quotes around the name to avoid the
11441exclamation mark (``!'') being interpreted as a language operator.
11442
11443Note that the internal name of the DLL may be all upper-case, even
11444though the file name of the DLL is lower-case, or vice-versa. Since
11445symbols within @value{GDBN} are @emph{case-sensitive} this may cause
11446some confusion. If in doubt, try the @code{info functions} and
11447@code{info variables} commands or even @code{maint print msymbols} (see
11448@pxref{Symbols}). Here's an example:
11449
11450@smallexample
11451(gdb) info function CreateFileA
11452All functions matching regular expression "CreateFileA":
11453
11454Non-debugging symbols:
114550x77e885f4 CreateFileA
114560x77e885f4 KERNEL32!CreateFileA
11457@end smallexample
11458
11459@smallexample
11460(gdb) info function !
11461All functions matching regular expression "!":
11462
11463Non-debugging symbols:
114640x6100114c cygwin1!__assert
114650x61004034 cygwin1!_dll_crt0@@0
114660x61004240 cygwin1!dll_crt0(per_process *)
11467[etc...]
11468@end smallexample
11469
11470@subsubsection Working with minimal symbols
11471
11472Symbols extracted from a DLL's export table do not contain very much
11473type information. All that @value{GDBN} can do is guess whether a symbol
11474refers to a function or variable depending on the linker section that
11475contains the symbol. Also note that the actual contents of the memory
11476contained in a DLL are not available unless the program is running. This
11477means that you cannot examine the contents of a variable or disassemble
11478a function within a DLL without a running program.
11479
11480Variables are generally treated as pointers and dereferenced
11481automatically. For this reason, it is often necessary to prefix a
11482variable name with the address-of operator (``&'') and provide explicit
11483type information in the command. Here's an example of the type of
11484problem:
11485
11486@smallexample
11487(gdb) print 'cygwin1!__argv'
11488$1 = 268572168
11489@end smallexample
11490
11491@smallexample
11492(gdb) x 'cygwin1!__argv'
114930x10021610: "\230y\""
11494@end smallexample
11495
11496And two possible solutions:
11497
11498@smallexample
11499(gdb) print ((char **)'cygwin1!__argv')[0]
11500$2 = 0x22fd98 "/cygdrive/c/mydirectory/myprogram"
11501@end smallexample
11502
11503@smallexample
11504(gdb) x/2x &'cygwin1!__argv'
115050x610c0aa8 <cygwin1!__argv>: 0x10021608 0x00000000
11506(gdb) x/x 0x10021608
115070x10021608: 0x0022fd98
11508(gdb) x/s 0x0022fd98
115090x22fd98: "/cygdrive/c/mydirectory/myprogram"
11510@end smallexample
11511
11512Setting a break point within a DLL is possible even before the program
11513starts execution. However, under these circumstances, @value{GDBN} can't
11514examine the initial instructions of the function in order to skip the
11515function's frame set-up code. You can work around this by using ``*&''
11516to set the breakpoint at a raw memory address:
11517
11518@smallexample
11519(gdb) break *&'python22!PyOS_Readline'
11520Breakpoint 1 at 0x1e04eff0
11521@end smallexample
11522
11523The author of these extensions is not entirely convinced that setting a
11524break point within a shared DLL like @file{kernel32.dll} is completely
11525safe.
11526
8e04817f
AC
11527@node Embedded OS
11528@section Embedded Operating Systems
104c1213 11529
8e04817f
AC
11530This section describes configurations involving the debugging of
11531embedded operating systems that are available for several different
11532architectures.
d4f3574e 11533
8e04817f
AC
11534@menu
11535* VxWorks:: Using @value{GDBN} with VxWorks
11536@end menu
104c1213 11537
8e04817f
AC
11538@value{GDBN} includes the ability to debug programs running on
11539various real-time operating systems.
104c1213 11540
8e04817f
AC
11541@node VxWorks
11542@subsection Using @value{GDBN} with VxWorks
104c1213 11543
8e04817f 11544@cindex VxWorks
104c1213 11545
8e04817f 11546@table @code
104c1213 11547
8e04817f
AC
11548@kindex target vxworks
11549@item target vxworks @var{machinename}
11550A VxWorks system, attached via TCP/IP. The argument @var{machinename}
11551is the target system's machine name or IP address.
104c1213 11552
8e04817f 11553@end table
104c1213 11554
8e04817f
AC
11555On VxWorks, @code{load} links @var{filename} dynamically on the
11556current target system as well as adding its symbols in @value{GDBN}.
104c1213 11557
8e04817f
AC
11558@value{GDBN} enables developers to spawn and debug tasks running on networked
11559VxWorks targets from a Unix host. Already-running tasks spawned from
11560the VxWorks shell can also be debugged. @value{GDBN} uses code that runs on
11561both the Unix host and on the VxWorks target. The program
11562@code{@value{GDBP}} is installed and executed on the Unix host. (It may be
11563installed with the name @code{vxgdb}, to distinguish it from a
11564@value{GDBN} for debugging programs on the host itself.)
104c1213 11565
8e04817f
AC
11566@table @code
11567@item VxWorks-timeout @var{args}
11568@kindex vxworks-timeout
11569All VxWorks-based targets now support the option @code{vxworks-timeout}.
11570This option is set by the user, and @var{args} represents the number of
11571seconds @value{GDBN} waits for responses to rpc's. You might use this if
11572your VxWorks target is a slow software simulator or is on the far side
11573of a thin network line.
11574@end table
104c1213 11575
8e04817f
AC
11576The following information on connecting to VxWorks was current when
11577this manual was produced; newer releases of VxWorks may use revised
11578procedures.
104c1213 11579
8e04817f
AC
11580@kindex INCLUDE_RDB
11581To use @value{GDBN} with VxWorks, you must rebuild your VxWorks kernel
11582to include the remote debugging interface routines in the VxWorks
11583library @file{rdb.a}. To do this, define @code{INCLUDE_RDB} in the
11584VxWorks configuration file @file{configAll.h} and rebuild your VxWorks
11585kernel. The resulting kernel contains @file{rdb.a}, and spawns the
11586source debugging task @code{tRdbTask} when VxWorks is booted. For more
11587information on configuring and remaking VxWorks, see the manufacturer's
11588manual.
11589@c VxWorks, see the @cite{VxWorks Programmer's Guide}.
104c1213 11590
8e04817f
AC
11591Once you have included @file{rdb.a} in your VxWorks system image and set
11592your Unix execution search path to find @value{GDBN}, you are ready to
11593run @value{GDBN}. From your Unix host, run @code{@value{GDBP}} (or
11594@code{vxgdb}, depending on your installation).
104c1213 11595
8e04817f 11596@value{GDBN} comes up showing the prompt:
104c1213 11597
474c8240 11598@smallexample
8e04817f 11599(vxgdb)
474c8240 11600@end smallexample
104c1213 11601
8e04817f
AC
11602@menu
11603* VxWorks Connection:: Connecting to VxWorks
11604* VxWorks Download:: VxWorks download
11605* VxWorks Attach:: Running tasks
11606@end menu
104c1213 11607
8e04817f
AC
11608@node VxWorks Connection
11609@subsubsection Connecting to VxWorks
104c1213 11610
8e04817f
AC
11611The @value{GDBN} command @code{target} lets you connect to a VxWorks target on the
11612network. To connect to a target whose host name is ``@code{tt}'', type:
104c1213 11613
474c8240 11614@smallexample
8e04817f 11615(vxgdb) target vxworks tt
474c8240 11616@end smallexample
104c1213 11617
8e04817f
AC
11618@need 750
11619@value{GDBN} displays messages like these:
104c1213 11620
8e04817f
AC
11621@smallexample
11622Attaching remote machine across net...
11623Connected to tt.
11624@end smallexample
104c1213 11625
8e04817f
AC
11626@need 1000
11627@value{GDBN} then attempts to read the symbol tables of any object modules
11628loaded into the VxWorks target since it was last booted. @value{GDBN} locates
11629these files by searching the directories listed in the command search
11630path (@pxref{Environment, ,Your program's environment}); if it fails
11631to find an object file, it displays a message such as:
5d161b24 11632
474c8240 11633@smallexample
8e04817f 11634prog.o: No such file or directory.
474c8240 11635@end smallexample
104c1213 11636
8e04817f
AC
11637When this happens, add the appropriate directory to the search path with
11638the @value{GDBN} command @code{path}, and execute the @code{target}
11639command again.
104c1213 11640
8e04817f
AC
11641@node VxWorks Download
11642@subsubsection VxWorks download
104c1213 11643
8e04817f
AC
11644@cindex download to VxWorks
11645If you have connected to the VxWorks target and you want to debug an
11646object that has not yet been loaded, you can use the @value{GDBN}
11647@code{load} command to download a file from Unix to VxWorks
11648incrementally. The object file given as an argument to the @code{load}
11649command is actually opened twice: first by the VxWorks target in order
11650to download the code, then by @value{GDBN} in order to read the symbol
11651table. This can lead to problems if the current working directories on
11652the two systems differ. If both systems have NFS mounted the same
11653filesystems, you can avoid these problems by using absolute paths.
11654Otherwise, it is simplest to set the working directory on both systems
11655to the directory in which the object file resides, and then to reference
11656the file by its name, without any path. For instance, a program
11657@file{prog.o} may reside in @file{@var{vxpath}/vw/demo/rdb} in VxWorks
11658and in @file{@var{hostpath}/vw/demo/rdb} on the host. To load this
11659program, type this on VxWorks:
104c1213 11660
474c8240 11661@smallexample
8e04817f 11662-> cd "@var{vxpath}/vw/demo/rdb"
474c8240 11663@end smallexample
104c1213 11664
8e04817f
AC
11665@noindent
11666Then, in @value{GDBN}, type:
104c1213 11667
474c8240 11668@smallexample
8e04817f
AC
11669(vxgdb) cd @var{hostpath}/vw/demo/rdb
11670(vxgdb) load prog.o
474c8240 11671@end smallexample
104c1213 11672
8e04817f 11673@value{GDBN} displays a response similar to this:
104c1213 11674
8e04817f
AC
11675@smallexample
11676Reading symbol data from wherever/vw/demo/rdb/prog.o... done.
11677@end smallexample
104c1213 11678
8e04817f
AC
11679You can also use the @code{load} command to reload an object module
11680after editing and recompiling the corresponding source file. Note that
11681this makes @value{GDBN} delete all currently-defined breakpoints,
11682auto-displays, and convenience variables, and to clear the value
11683history. (This is necessary in order to preserve the integrity of
11684debugger's data structures that reference the target system's symbol
11685table.)
104c1213 11686
8e04817f
AC
11687@node VxWorks Attach
11688@subsubsection Running tasks
104c1213
JM
11689
11690@cindex running VxWorks tasks
11691You can also attach to an existing task using the @code{attach} command as
11692follows:
11693
474c8240 11694@smallexample
104c1213 11695(vxgdb) attach @var{task}
474c8240 11696@end smallexample
104c1213
JM
11697
11698@noindent
11699where @var{task} is the VxWorks hexadecimal task ID. The task can be running
11700or suspended when you attach to it. Running tasks are suspended at
11701the time of attachment.
11702
6d2ebf8b 11703@node Embedded Processors
104c1213
JM
11704@section Embedded Processors
11705
11706This section goes into details specific to particular embedded
11707configurations.
11708
7d86b5d5 11709
104c1213 11710@menu
104c1213
JM
11711* ARM:: ARM
11712* H8/300:: Hitachi H8/300
11713* H8/500:: Hitachi H8/500
104c1213
JM
11714* M32R/D:: Mitsubishi M32R/D
11715* M68K:: Motorola M68K
104c1213 11716* MIPS Embedded:: MIPS Embedded
a37295f9 11717* OpenRISC 1000:: OpenRisc 1000
104c1213
JM
11718* PA:: HP PA Embedded
11719* PowerPC: PowerPC
11720* SH:: Hitachi SH
11721* Sparclet:: Tsqware Sparclet
11722* Sparclite:: Fujitsu Sparclite
11723* ST2000:: Tandem ST2000
11724* Z8000:: Zilog Z8000
11725@end menu
11726
6d2ebf8b 11727@node ARM
104c1213
JM
11728@subsection ARM
11729
11730@table @code
11731
8e04817f
AC
11732@kindex target rdi
11733@item target rdi @var{dev}
11734ARM Angel monitor, via RDI library interface to ADP protocol. You may
11735use this target to communicate with both boards running the Angel
11736monitor, or with the EmbeddedICE JTAG debug device.
11737
11738@kindex target rdp
11739@item target rdp @var{dev}
11740ARM Demon monitor.
11741
11742@end table
11743
11744@node H8/300
11745@subsection Hitachi H8/300
11746
11747@table @code
11748
11749@kindex target hms@r{, with H8/300}
11750@item target hms @var{dev}
11751A Hitachi SH, H8/300, or H8/500 board, attached via serial line to your host.
11752Use special commands @code{device} and @code{speed} to control the serial
11753line and the communications speed used.
11754
11755@kindex target e7000@r{, with H8/300}
11756@item target e7000 @var{dev}
11757E7000 emulator for Hitachi H8 and SH.
11758
11759@kindex target sh3@r{, with H8/300}
11760@kindex target sh3e@r{, with H8/300}
11761@item target sh3 @var{dev}
11762@itemx target sh3e @var{dev}
11763Hitachi SH-3 and SH-3E target systems.
11764
11765@end table
11766
11767@cindex download to H8/300 or H8/500
11768@cindex H8/300 or H8/500 download
11769@cindex download to Hitachi SH
11770@cindex Hitachi SH download
11771When you select remote debugging to a Hitachi SH, H8/300, or H8/500
11772board, the @code{load} command downloads your program to the Hitachi
11773board and also opens it as the current executable target for
11774@value{GDBN} on your host (like the @code{file} command).
11775
11776@value{GDBN} needs to know these things to talk to your
11777Hitachi SH, H8/300, or H8/500:
11778
11779@enumerate
11780@item
11781that you want to use @samp{target hms}, the remote debugging interface
11782for Hitachi microprocessors, or @samp{target e7000}, the in-circuit
11783emulator for the Hitachi SH and the Hitachi 300H. (@samp{target hms} is
11784the default when @value{GDBN} is configured specifically for the Hitachi SH,
11785H8/300, or H8/500.)
11786
11787@item
11788what serial device connects your host to your Hitachi board (the first
11789serial device available on your host is the default).
11790
11791@item
11792what speed to use over the serial device.
11793@end enumerate
11794
11795@menu
11796* Hitachi Boards:: Connecting to Hitachi boards.
11797* Hitachi ICE:: Using the E7000 In-Circuit Emulator.
11798* Hitachi Special:: Special @value{GDBN} commands for Hitachi micros.
11799@end menu
11800
11801@node Hitachi Boards
11802@subsubsection Connecting to Hitachi boards
11803
11804@c only for Unix hosts
11805@kindex device
11806@cindex serial device, Hitachi micros
11807Use the special @code{@value{GDBN}} command @samp{device @var{port}} if you
11808need to explicitly set the serial device. The default @var{port} is the
11809first available port on your host. This is only necessary on Unix
11810hosts, where it is typically something like @file{/dev/ttya}.
11811
11812@kindex speed
11813@cindex serial line speed, Hitachi micros
11814@code{@value{GDBN}} has another special command to set the communications
11815speed: @samp{speed @var{bps}}. This command also is only used from Unix
11816hosts; on DOS hosts, set the line speed as usual from outside @value{GDBN} with
11817the DOS @code{mode} command (for instance,
11818@w{@kbd{mode com2:9600,n,8,1,p}} for a 9600@dmn{bps} connection).
11819
11820The @samp{device} and @samp{speed} commands are available only when you
11821use a Unix host to debug your Hitachi microprocessor programs. If you
11822use a DOS host,
11823@value{GDBN} depends on an auxiliary terminate-and-stay-resident program
11824called @code{asynctsr} to communicate with the development board
11825through a PC serial port. You must also use the DOS @code{mode} command
11826to set up the serial port on the DOS side.
11827
11828The following sample session illustrates the steps needed to start a
11829program under @value{GDBN} control on an H8/300. The example uses a
11830sample H8/300 program called @file{t.x}. The procedure is the same for
11831the Hitachi SH and the H8/500.
11832
11833First hook up your development board. In this example, we use a
11834board attached to serial port @code{COM2}; if you use a different serial
11835port, substitute its name in the argument of the @code{mode} command.
11836When you call @code{asynctsr}, the auxiliary comms program used by the
11837debugger, you give it just the numeric part of the serial port's name;
11838for example, @samp{asyncstr 2} below runs @code{asyncstr} on
11839@code{COM2}.
11840
474c8240 11841@smallexample
8e04817f
AC
11842C:\H8300\TEST> asynctsr 2
11843C:\H8300\TEST> mode com2:9600,n,8,1,p
11844
11845Resident portion of MODE loaded
11846
11847COM2: 9600, n, 8, 1, p
11848
474c8240 11849@end smallexample
8e04817f
AC
11850
11851@quotation
11852@emph{Warning:} We have noticed a bug in PC-NFS that conflicts with
11853@code{asynctsr}. If you also run PC-NFS on your DOS host, you may need to
11854disable it, or even boot without it, to use @code{asynctsr} to control
11855your development board.
11856@end quotation
11857
11858@kindex target hms@r{, and serial protocol}
11859Now that serial communications are set up, and the development board is
11860connected, you can start up @value{GDBN}. Call @code{@value{GDBP}} with
11861the name of your program as the argument. @code{@value{GDBN}} prompts
11862you, as usual, with the prompt @samp{(@value{GDBP})}. Use two special
11863commands to begin your debugging session: @samp{target hms} to specify
11864cross-debugging to the Hitachi board, and the @code{load} command to
11865download your program to the board. @code{load} displays the names of
11866the program's sections, and a @samp{*} for each 2K of data downloaded.
11867(If you want to refresh @value{GDBN} data on symbols or on the
11868executable file without downloading, use the @value{GDBN} commands
11869@code{file} or @code{symbol-file}. These commands, and @code{load}
11870itself, are described in @ref{Files,,Commands to specify files}.)
11871
11872@smallexample
11873(eg-C:\H8300\TEST) @value{GDBP} t.x
11874@value{GDBN} is free software and you are welcome to distribute copies
11875 of it under certain conditions; type "show copying" to see
11876 the conditions.
11877There is absolutely no warranty for @value{GDBN}; type "show warranty"
11878for details.
11879@value{GDBN} @value{GDBVN}, Copyright 1992 Free Software Foundation, Inc...
11880(@value{GDBP}) target hms
11881Connected to remote H8/300 HMS system.
11882(@value{GDBP}) load t.x
11883.text : 0x8000 .. 0xabde ***********
11884.data : 0xabde .. 0xad30 *
11885.stack : 0xf000 .. 0xf014 *
11886@end smallexample
11887
11888At this point, you're ready to run or debug your program. From here on,
11889you can use all the usual @value{GDBN} commands. The @code{break} command
11890sets breakpoints; the @code{run} command starts your program;
11891@code{print} or @code{x} display data; the @code{continue} command
11892resumes execution after stopping at a breakpoint. You can use the
11893@code{help} command at any time to find out more about @value{GDBN} commands.
11894
11895Remember, however, that @emph{operating system} facilities aren't
11896available on your development board; for example, if your program hangs,
11897you can't send an interrupt---but you can press the @sc{reset} switch!
11898
11899Use the @sc{reset} button on the development board
11900@itemize @bullet
11901@item
11902to interrupt your program (don't use @kbd{ctl-C} on the DOS host---it has
11903no way to pass an interrupt signal to the development board); and
11904
11905@item
11906to return to the @value{GDBN} command prompt after your program finishes
11907normally. The communications protocol provides no other way for @value{GDBN}
11908to detect program completion.
11909@end itemize
11910
11911In either case, @value{GDBN} sees the effect of a @sc{reset} on the
11912development board as a ``normal exit'' of your program.
11913
11914@node Hitachi ICE
11915@subsubsection Using the E7000 in-circuit emulator
11916
11917@kindex target e7000@r{, with Hitachi ICE}
11918You can use the E7000 in-circuit emulator to develop code for either the
11919Hitachi SH or the H8/300H. Use one of these forms of the @samp{target
11920e7000} command to connect @value{GDBN} to your E7000:
11921
11922@table @code
11923@item target e7000 @var{port} @var{speed}
11924Use this form if your E7000 is connected to a serial port. The
11925@var{port} argument identifies what serial port to use (for example,
11926@samp{com2}). The third argument is the line speed in bits per second
11927(for example, @samp{9600}).
11928
11929@item target e7000 @var{hostname}
11930If your E7000 is installed as a host on a TCP/IP network, you can just
11931specify its hostname; @value{GDBN} uses @code{telnet} to connect.
11932@end table
11933
11934@node Hitachi Special
11935@subsubsection Special @value{GDBN} commands for Hitachi micros
11936
11937Some @value{GDBN} commands are available only for the H8/300:
11938
11939@table @code
11940
11941@kindex set machine
11942@kindex show machine
11943@item set machine h8300
11944@itemx set machine h8300h
11945Condition @value{GDBN} for one of the two variants of the H8/300
11946architecture with @samp{set machine}. You can use @samp{show machine}
11947to check which variant is currently in effect.
104c1213
JM
11948
11949@end table
11950
8e04817f
AC
11951@node H8/500
11952@subsection H8/500
104c1213
JM
11953
11954@table @code
11955
8e04817f
AC
11956@kindex set memory @var{mod}
11957@cindex memory models, H8/500
11958@item set memory @var{mod}
11959@itemx show memory
11960Specify which H8/500 memory model (@var{mod}) you are using with
11961@samp{set memory}; check which memory model is in effect with @samp{show
11962memory}. The accepted values for @var{mod} are @code{small},
11963@code{big}, @code{medium}, and @code{compact}.
104c1213 11964
8e04817f 11965@end table
104c1213 11966
8e04817f
AC
11967@node M32R/D
11968@subsection Mitsubishi M32R/D
11969
11970@table @code
11971
11972@kindex target m32r
11973@item target m32r @var{dev}
11974Mitsubishi M32R/D ROM monitor.
11975
11976@end table
11977
11978@node M68K
11979@subsection M68k
11980
11981The Motorola m68k configuration includes ColdFire support, and
11982target command for the following ROM monitors.
11983
11984@table @code
11985
11986@kindex target abug
11987@item target abug @var{dev}
11988ABug ROM monitor for M68K.
11989
11990@kindex target cpu32bug
11991@item target cpu32bug @var{dev}
11992CPU32BUG monitor, running on a CPU32 (M68K) board.
11993
11994@kindex target dbug
11995@item target dbug @var{dev}
11996dBUG ROM monitor for Motorola ColdFire.
11997
11998@kindex target est
11999@item target est @var{dev}
12000EST-300 ICE monitor, running on a CPU32 (M68K) board.
12001
12002@kindex target rom68k
12003@item target rom68k @var{dev}
12004ROM 68K monitor, running on an M68K IDP board.
12005
12006@end table
12007
8e04817f
AC
12008@table @code
12009
12010@kindex target rombug
12011@item target rombug @var{dev}
12012ROMBUG ROM monitor for OS/9000.
12013
12014@end table
12015
8e04817f
AC
12016@node MIPS Embedded
12017@subsection MIPS Embedded
12018
12019@cindex MIPS boards
12020@value{GDBN} can use the MIPS remote debugging protocol to talk to a
12021MIPS board attached to a serial line. This is available when
12022you configure @value{GDBN} with @samp{--target=mips-idt-ecoff}.
104c1213 12023
8e04817f
AC
12024@need 1000
12025Use these @value{GDBN} commands to specify the connection to your target board:
104c1213 12026
8e04817f
AC
12027@table @code
12028@item target mips @var{port}
12029@kindex target mips @var{port}
12030To run a program on the board, start up @code{@value{GDBP}} with the
12031name of your program as the argument. To connect to the board, use the
12032command @samp{target mips @var{port}}, where @var{port} is the name of
12033the serial port connected to the board. If the program has not already
12034been downloaded to the board, you may use the @code{load} command to
12035download it. You can then use all the usual @value{GDBN} commands.
104c1213 12036
8e04817f
AC
12037For example, this sequence connects to the target board through a serial
12038port, and loads and runs a program called @var{prog} through the
12039debugger:
104c1213 12040
474c8240 12041@smallexample
8e04817f
AC
12042host$ @value{GDBP} @var{prog}
12043@value{GDBN} is free software and @dots{}
12044(@value{GDBP}) target mips /dev/ttyb
12045(@value{GDBP}) load @var{prog}
12046(@value{GDBP}) run
474c8240 12047@end smallexample
104c1213 12048
8e04817f
AC
12049@item target mips @var{hostname}:@var{portnumber}
12050On some @value{GDBN} host configurations, you can specify a TCP
12051connection (for instance, to a serial line managed by a terminal
12052concentrator) instead of a serial port, using the syntax
12053@samp{@var{hostname}:@var{portnumber}}.
104c1213 12054
8e04817f
AC
12055@item target pmon @var{port}
12056@kindex target pmon @var{port}
12057PMON ROM monitor.
104c1213 12058
8e04817f
AC
12059@item target ddb @var{port}
12060@kindex target ddb @var{port}
12061NEC's DDB variant of PMON for Vr4300.
104c1213 12062
8e04817f
AC
12063@item target lsi @var{port}
12064@kindex target lsi @var{port}
12065LSI variant of PMON.
104c1213 12066
8e04817f
AC
12067@kindex target r3900
12068@item target r3900 @var{dev}
12069Densan DVE-R3900 ROM monitor for Toshiba R3900 Mips.
104c1213 12070
8e04817f
AC
12071@kindex target array
12072@item target array @var{dev}
12073Array Tech LSI33K RAID controller board.
104c1213 12074
8e04817f 12075@end table
104c1213 12076
104c1213 12077
8e04817f
AC
12078@noindent
12079@value{GDBN} also supports these special commands for MIPS targets:
104c1213 12080
8e04817f
AC
12081@table @code
12082@item set processor @var{args}
12083@itemx show processor
12084@kindex set processor @var{args}
12085@kindex show processor
12086Use the @code{set processor} command to set the type of MIPS
12087processor when you want to access processor-type-specific registers.
12088For example, @code{set processor @var{r3041}} tells @value{GDBN}
12089to use the CPU registers appropriate for the 3041 chip.
12090Use the @code{show processor} command to see what MIPS processor @value{GDBN}
12091is using. Use the @code{info reg} command to see what registers
12092@value{GDBN} is using.
104c1213 12093
8e04817f
AC
12094@item set mipsfpu double
12095@itemx set mipsfpu single
12096@itemx set mipsfpu none
12097@itemx show mipsfpu
12098@kindex set mipsfpu
12099@kindex show mipsfpu
12100@cindex MIPS remote floating point
12101@cindex floating point, MIPS remote
12102If your target board does not support the MIPS floating point
12103coprocessor, you should use the command @samp{set mipsfpu none} (if you
12104need this, you may wish to put the command in your @value{GDBN} init
12105file). This tells @value{GDBN} how to find the return value of
12106functions which return floating point values. It also allows
12107@value{GDBN} to avoid saving the floating point registers when calling
12108functions on the board. If you are using a floating point coprocessor
12109with only single precision floating point support, as on the @sc{r4650}
12110processor, use the command @samp{set mipsfpu single}. The default
12111double precision floating point coprocessor may be selected using
12112@samp{set mipsfpu double}.
104c1213 12113
8e04817f
AC
12114In previous versions the only choices were double precision or no
12115floating point, so @samp{set mipsfpu on} will select double precision
12116and @samp{set mipsfpu off} will select no floating point.
104c1213 12117
8e04817f
AC
12118As usual, you can inquire about the @code{mipsfpu} variable with
12119@samp{show mipsfpu}.
104c1213 12120
8e04817f
AC
12121@item set remotedebug @var{n}
12122@itemx show remotedebug
12123@kindex set remotedebug@r{, MIPS protocol}
12124@kindex show remotedebug@r{, MIPS protocol}
12125@cindex @code{remotedebug}, MIPS protocol
12126@cindex MIPS @code{remotedebug} protocol
12127@c FIXME! For this to be useful, you must know something about the MIPS
12128@c FIXME...protocol. Where is it described?
12129You can see some debugging information about communications with the board
12130by setting the @code{remotedebug} variable. If you set it to @code{1} using
12131@samp{set remotedebug 1}, every packet is displayed. If you set it
12132to @code{2}, every character is displayed. You can check the current value
12133at any time with the command @samp{show remotedebug}.
104c1213 12134
8e04817f
AC
12135@item set timeout @var{seconds}
12136@itemx set retransmit-timeout @var{seconds}
12137@itemx show timeout
12138@itemx show retransmit-timeout
12139@cindex @code{timeout}, MIPS protocol
12140@cindex @code{retransmit-timeout}, MIPS protocol
12141@kindex set timeout
12142@kindex show timeout
12143@kindex set retransmit-timeout
12144@kindex show retransmit-timeout
12145You can control the timeout used while waiting for a packet, in the MIPS
12146remote protocol, with the @code{set timeout @var{seconds}} command. The
12147default is 5 seconds. Similarly, you can control the timeout used while
12148waiting for an acknowledgement of a packet with the @code{set
12149retransmit-timeout @var{seconds}} command. The default is 3 seconds.
12150You can inspect both values with @code{show timeout} and @code{show
12151retransmit-timeout}. (These commands are @emph{only} available when
12152@value{GDBN} is configured for @samp{--target=mips-idt-ecoff}.)
104c1213 12153
8e04817f
AC
12154The timeout set by @code{set timeout} does not apply when @value{GDBN}
12155is waiting for your program to stop. In that case, @value{GDBN} waits
12156forever because it has no way of knowing how long the program is going
12157to run before stopping.
12158@end table
104c1213 12159
a37295f9
MM
12160@node OpenRISC 1000
12161@subsection OpenRISC 1000
12162@cindex OpenRISC 1000
12163
12164@cindex or1k boards
12165See OR1k Architecture document (@uref{www.opencores.org}) for more information
12166about platform and commands.
12167
12168@table @code
12169
12170@kindex target jtag
12171@item target jtag jtag://@var{host}:@var{port}
12172
12173Connects to remote JTAG server.
12174JTAG remote server can be either an or1ksim or JTAG server,
12175connected via parallel port to the board.
12176
12177Example: @code{target jtag jtag://localhost:9999}
12178
12179@kindex or1ksim
12180@item or1ksim @var{command}
12181If connected to @code{or1ksim} OpenRISC 1000 Architectural
12182Simulator, proprietary commands can be executed.
12183
12184@kindex info or1k spr
12185@item info or1k spr
12186Displays spr groups.
12187
12188@item info or1k spr @var{group}
12189@itemx info or1k spr @var{groupno}
12190Displays register names in selected group.
12191
12192@item info or1k spr @var{group} @var{register}
12193@itemx info or1k spr @var{register}
12194@itemx info or1k spr @var{groupno} @var{registerno}
12195@itemx info or1k spr @var{registerno}
12196Shows information about specified spr register.
12197
12198@kindex spr
12199@item spr @var{group} @var{register} @var{value}
12200@itemx spr @var{register @var{value}}
12201@itemx spr @var{groupno} @var{registerno @var{value}}
12202@itemx spr @var{registerno @var{value}}
12203Writes @var{value} to specified spr register.
12204@end table
12205
12206Some implementations of OpenRISC 1000 Architecture also have hardware trace.
12207It is very similar to @value{GDBN} trace, except it does not interfere with normal
12208program execution and is thus much faster. Hardware breakpoints/watchpoint
12209triggers can be set using:
12210@table @code
12211@item $LEA/$LDATA
12212Load effective address/data
12213@item $SEA/$SDATA
12214Store effective address/data
12215@item $AEA/$ADATA
12216Access effective address ($SEA or $LEA) or data ($SDATA/$LDATA)
12217@item $FETCH
12218Fetch data
12219@end table
12220
12221When triggered, it can capture low level data, like: @code{PC}, @code{LSEA},
12222@code{LDATA}, @code{SDATA}, @code{READSPR}, @code{WRITESPR}, @code{INSTR}.
12223
12224@code{htrace} commands:
12225@cindex OpenRISC 1000 htrace
12226@table @code
12227@kindex hwatch
12228@item hwatch @var{conditional}
12229Set hardware watchpoint on combination of Load/Store Effecive Address(es)
12230or Data. For example:
12231
12232@code{hwatch ($LEA == my_var) && ($LDATA < 50) || ($SEA == my_var) && ($SDATA >= 50)}
12233
12234@code{hwatch ($LEA == my_var) && ($LDATA < 50) || ($SEA == my_var) && ($SDATA >= 50)}
12235
12236@kindex htrace info
12237@item htrace info
12238Display information about current HW trace configuration.
12239
12240@kindex htrace trigger
12241@item htrace trigger @var{conditional}
12242Set starting criteria for HW trace.
12243
12244@kindex htrace qualifier
12245@item htrace qualifier @var{conditional}
12246Set acquisition qualifier for HW trace.
12247
12248@kindex htrace stop
12249@item htrace stop @var{conditional}
12250Set HW trace stopping criteria.
12251
12252@kindex htrace record
f153cc92 12253@item htrace record [@var{data}]*
a37295f9
MM
12254Selects the data to be recorded, when qualifier is met and HW trace was
12255triggered.
12256
12257@kindex htrace enable
12258@item htrace enable
12259@kindex htrace disable
12260@itemx htrace disable
12261Enables/disables the HW trace.
12262
12263@kindex htrace rewind
f153cc92 12264@item htrace rewind [@var{filename}]
a37295f9
MM
12265Clears currently recorded trace data.
12266
12267If filename is specified, new trace file is made and any newly collected data
12268will be written there.
12269
12270@kindex htrace print
f153cc92 12271@item htrace print [@var{start} [@var{len}]]
a37295f9
MM
12272Prints trace buffer, using current record configuration.
12273
12274@kindex htrace mode continuous
12275@item htrace mode continuous
12276Set continuous trace mode.
12277
12278@kindex htrace mode suspend
12279@item htrace mode suspend
12280Set suspend trace mode.
12281
12282@end table
12283
8e04817f
AC
12284@node PowerPC
12285@subsection PowerPC
104c1213
JM
12286
12287@table @code
104c1213 12288
8e04817f
AC
12289@kindex target dink32
12290@item target dink32 @var{dev}
12291DINK32 ROM monitor.
104c1213 12292
8e04817f
AC
12293@kindex target ppcbug
12294@item target ppcbug @var{dev}
12295@kindex target ppcbug1
12296@item target ppcbug1 @var{dev}
12297PPCBUG ROM monitor for PowerPC.
104c1213 12298
8e04817f
AC
12299@kindex target sds
12300@item target sds @var{dev}
12301SDS monitor, running on a PowerPC board (such as Motorola's ADS).
12302
12303@end table
12304
12305@node PA
12306@subsection HP PA Embedded
104c1213
JM
12307
12308@table @code
12309
8e04817f
AC
12310@kindex target op50n
12311@item target op50n @var{dev}
12312OP50N monitor, running on an OKI HPPA board.
12313
12314@kindex target w89k
12315@item target w89k @var{dev}
12316W89K monitor, running on a Winbond HPPA board.
104c1213
JM
12317
12318@end table
12319
8e04817f
AC
12320@node SH
12321@subsection Hitachi SH
104c1213
JM
12322
12323@table @code
12324
8e04817f
AC
12325@kindex target hms@r{, with Hitachi SH}
12326@item target hms @var{dev}
12327A Hitachi SH board attached via serial line to your host. Use special
12328commands @code{device} and @code{speed} to control the serial line and
12329the communications speed used.
104c1213 12330
8e04817f
AC
12331@kindex target e7000@r{, with Hitachi SH}
12332@item target e7000 @var{dev}
12333E7000 emulator for Hitachi SH.
104c1213 12334
8e04817f
AC
12335@kindex target sh3@r{, with SH}
12336@kindex target sh3e@r{, with SH}
12337@item target sh3 @var{dev}
12338@item target sh3e @var{dev}
12339Hitachi SH-3 and SH-3E target systems.
104c1213 12340
8e04817f 12341@end table
104c1213 12342
8e04817f
AC
12343@node Sparclet
12344@subsection Tsqware Sparclet
104c1213 12345
8e04817f
AC
12346@cindex Sparclet
12347
12348@value{GDBN} enables developers to debug tasks running on
12349Sparclet targets from a Unix host.
12350@value{GDBN} uses code that runs on
12351both the Unix host and on the Sparclet target. The program
12352@code{@value{GDBP}} is installed and executed on the Unix host.
104c1213 12353
8e04817f
AC
12354@table @code
12355@item remotetimeout @var{args}
12356@kindex remotetimeout
12357@value{GDBN} supports the option @code{remotetimeout}.
12358This option is set by the user, and @var{args} represents the number of
12359seconds @value{GDBN} waits for responses.
104c1213
JM
12360@end table
12361
8e04817f
AC
12362@cindex compiling, on Sparclet
12363When compiling for debugging, include the options @samp{-g} to get debug
12364information and @samp{-Ttext} to relocate the program to where you wish to
12365load it on the target. You may also want to add the options @samp{-n} or
12366@samp{-N} in order to reduce the size of the sections. Example:
104c1213 12367
474c8240 12368@smallexample
8e04817f 12369sparclet-aout-gcc prog.c -Ttext 0x12010000 -g -o prog -N
474c8240 12370@end smallexample
104c1213 12371
8e04817f 12372You can use @code{objdump} to verify that the addresses are what you intended:
104c1213 12373
474c8240 12374@smallexample
8e04817f 12375sparclet-aout-objdump --headers --syms prog
474c8240 12376@end smallexample
104c1213 12377
8e04817f
AC
12378@cindex running, on Sparclet
12379Once you have set
12380your Unix execution search path to find @value{GDBN}, you are ready to
12381run @value{GDBN}. From your Unix host, run @code{@value{GDBP}}
12382(or @code{sparclet-aout-gdb}, depending on your installation).
104c1213 12383
8e04817f
AC
12384@value{GDBN} comes up showing the prompt:
12385
474c8240 12386@smallexample
8e04817f 12387(gdbslet)
474c8240 12388@end smallexample
104c1213
JM
12389
12390@menu
8e04817f
AC
12391* Sparclet File:: Setting the file to debug
12392* Sparclet Connection:: Connecting to Sparclet
12393* Sparclet Download:: Sparclet download
12394* Sparclet Execution:: Running and debugging
104c1213
JM
12395@end menu
12396
8e04817f
AC
12397@node Sparclet File
12398@subsubsection Setting file to debug
104c1213 12399
8e04817f 12400The @value{GDBN} command @code{file} lets you choose with program to debug.
104c1213 12401
474c8240 12402@smallexample
8e04817f 12403(gdbslet) file prog
474c8240 12404@end smallexample
104c1213 12405
8e04817f
AC
12406@need 1000
12407@value{GDBN} then attempts to read the symbol table of @file{prog}.
12408@value{GDBN} locates
12409the file by searching the directories listed in the command search
12410path.
12411If the file was compiled with debug information (option "-g"), source
12412files will be searched as well.
12413@value{GDBN} locates
12414the source files by searching the directories listed in the directory search
12415path (@pxref{Environment, ,Your program's environment}).
12416If it fails
12417to find a file, it displays a message such as:
104c1213 12418
474c8240 12419@smallexample
8e04817f 12420prog: No such file or directory.
474c8240 12421@end smallexample
104c1213 12422
8e04817f
AC
12423When this happens, add the appropriate directories to the search paths with
12424the @value{GDBN} commands @code{path} and @code{dir}, and execute the
12425@code{target} command again.
104c1213 12426
8e04817f
AC
12427@node Sparclet Connection
12428@subsubsection Connecting to Sparclet
104c1213 12429
8e04817f
AC
12430The @value{GDBN} command @code{target} lets you connect to a Sparclet target.
12431To connect to a target on serial port ``@code{ttya}'', type:
104c1213 12432
474c8240 12433@smallexample
8e04817f
AC
12434(gdbslet) target sparclet /dev/ttya
12435Remote target sparclet connected to /dev/ttya
12436main () at ../prog.c:3
474c8240 12437@end smallexample
104c1213 12438
8e04817f
AC
12439@need 750
12440@value{GDBN} displays messages like these:
104c1213 12441
474c8240 12442@smallexample
8e04817f 12443Connected to ttya.
474c8240 12444@end smallexample
104c1213 12445
8e04817f
AC
12446@node Sparclet Download
12447@subsubsection Sparclet download
104c1213 12448
8e04817f
AC
12449@cindex download to Sparclet
12450Once connected to the Sparclet target,
12451you can use the @value{GDBN}
12452@code{load} command to download the file from the host to the target.
12453The file name and load offset should be given as arguments to the @code{load}
12454command.
12455Since the file format is aout, the program must be loaded to the starting
12456address. You can use @code{objdump} to find out what this value is. The load
12457offset is an offset which is added to the VMA (virtual memory address)
12458of each of the file's sections.
12459For instance, if the program
12460@file{prog} was linked to text address 0x1201000, with data at 0x12010160
12461and bss at 0x12010170, in @value{GDBN}, type:
104c1213 12462
474c8240 12463@smallexample
8e04817f
AC
12464(gdbslet) load prog 0x12010000
12465Loading section .text, size 0xdb0 vma 0x12010000
474c8240 12466@end smallexample
104c1213 12467
8e04817f
AC
12468If the code is loaded at a different address then what the program was linked
12469to, you may need to use the @code{section} and @code{add-symbol-file} commands
12470to tell @value{GDBN} where to map the symbol table.
12471
12472@node Sparclet Execution
12473@subsubsection Running and debugging
12474
12475@cindex running and debugging Sparclet programs
12476You can now begin debugging the task using @value{GDBN}'s execution control
12477commands, @code{b}, @code{step}, @code{run}, etc. See the @value{GDBN}
12478manual for the list of commands.
12479
474c8240 12480@smallexample
8e04817f
AC
12481(gdbslet) b main
12482Breakpoint 1 at 0x12010000: file prog.c, line 3.
12483(gdbslet) run
12484Starting program: prog
12485Breakpoint 1, main (argc=1, argv=0xeffff21c) at prog.c:3
124863 char *symarg = 0;
12487(gdbslet) step
124884 char *execarg = "hello!";
12489(gdbslet)
474c8240 12490@end smallexample
8e04817f
AC
12491
12492@node Sparclite
12493@subsection Fujitsu Sparclite
104c1213
JM
12494
12495@table @code
12496
8e04817f
AC
12497@kindex target sparclite
12498@item target sparclite @var{dev}
12499Fujitsu sparclite boards, used only for the purpose of loading.
12500You must use an additional command to debug the program.
12501For example: target remote @var{dev} using @value{GDBN} standard
12502remote protocol.
104c1213
JM
12503
12504@end table
12505
8e04817f
AC
12506@node ST2000
12507@subsection Tandem ST2000
104c1213 12508
8e04817f
AC
12509@value{GDBN} may be used with a Tandem ST2000 phone switch, running Tandem's
12510STDBUG protocol.
104c1213 12511
8e04817f
AC
12512To connect your ST2000 to the host system, see the manufacturer's
12513manual. Once the ST2000 is physically attached, you can run:
104c1213 12514
474c8240 12515@smallexample
8e04817f 12516target st2000 @var{dev} @var{speed}
474c8240 12517@end smallexample
104c1213 12518
8e04817f
AC
12519@noindent
12520to establish it as your debugging environment. @var{dev} is normally
12521the name of a serial device, such as @file{/dev/ttya}, connected to the
12522ST2000 via a serial line. You can instead specify @var{dev} as a TCP
12523connection (for example, to a serial line attached via a terminal
12524concentrator) using the syntax @code{@var{hostname}:@var{portnumber}}.
104c1213 12525
8e04817f
AC
12526The @code{load} and @code{attach} commands are @emph{not} defined for
12527this target; you must load your program into the ST2000 as you normally
12528would for standalone operation. @value{GDBN} reads debugging information
12529(such as symbols) from a separate, debugging version of the program
12530available on your host computer.
12531@c FIXME!! This is terribly vague; what little content is here is
12532@c basically hearsay.
104c1213 12533
8e04817f
AC
12534@cindex ST2000 auxiliary commands
12535These auxiliary @value{GDBN} commands are available to help you with the ST2000
12536environment:
104c1213 12537
8e04817f
AC
12538@table @code
12539@item st2000 @var{command}
12540@kindex st2000 @var{cmd}
12541@cindex STDBUG commands (ST2000)
12542@cindex commands to STDBUG (ST2000)
12543Send a @var{command} to the STDBUG monitor. See the manufacturer's
12544manual for available commands.
104c1213 12545
8e04817f
AC
12546@item connect
12547@cindex connect (to STDBUG)
12548Connect the controlling terminal to the STDBUG command monitor. When
12549you are done interacting with STDBUG, typing either of two character
12550sequences gets you back to the @value{GDBN} command prompt:
12551@kbd{@key{RET}~.} (Return, followed by tilde and period) or
12552@kbd{@key{RET}~@key{C-d}} (Return, followed by tilde and control-D).
104c1213
JM
12553@end table
12554
8e04817f
AC
12555@node Z8000
12556@subsection Zilog Z8000
104c1213 12557
8e04817f
AC
12558@cindex Z8000
12559@cindex simulator, Z8000
12560@cindex Zilog Z8000 simulator
104c1213 12561
8e04817f
AC
12562When configured for debugging Zilog Z8000 targets, @value{GDBN} includes
12563a Z8000 simulator.
12564
12565For the Z8000 family, @samp{target sim} simulates either the Z8002 (the
12566unsegmented variant of the Z8000 architecture) or the Z8001 (the
12567segmented variant). The simulator recognizes which architecture is
12568appropriate by inspecting the object code.
104c1213 12569
8e04817f
AC
12570@table @code
12571@item target sim @var{args}
12572@kindex sim
12573@kindex target sim@r{, with Z8000}
12574Debug programs on a simulated CPU. If the simulator supports setup
12575options, specify them via @var{args}.
104c1213
JM
12576@end table
12577
8e04817f
AC
12578@noindent
12579After specifying this target, you can debug programs for the simulated
12580CPU in the same style as programs for your host computer; use the
12581@code{file} command to load a new program image, the @code{run} command
12582to run your program, and so on.
12583
12584As well as making available all the usual machine registers
12585(@pxref{Registers, ,Registers}), the Z8000 simulator provides three
12586additional items of information as specially named registers:
104c1213
JM
12587
12588@table @code
12589
8e04817f
AC
12590@item cycles
12591Counts clock-ticks in the simulator.
104c1213 12592
8e04817f
AC
12593@item insts
12594Counts instructions run in the simulator.
104c1213 12595
8e04817f
AC
12596@item time
12597Execution time in 60ths of a second.
104c1213 12598
8e04817f 12599@end table
104c1213 12600
8e04817f
AC
12601You can refer to these values in @value{GDBN} expressions with the usual
12602conventions; for example, @w{@samp{b fputc if $cycles>5000}} sets a
12603conditional breakpoint that suspends only after at least 5000
12604simulated clock ticks.
104c1213 12605
8e04817f
AC
12606@node Architectures
12607@section Architectures
104c1213 12608
8e04817f
AC
12609This section describes characteristics of architectures that affect
12610all uses of @value{GDBN} with the architecture, both native and cross.
104c1213 12611
8e04817f
AC
12612@menu
12613* A29K::
12614* Alpha::
12615* MIPS::
12616@end menu
104c1213 12617
8e04817f
AC
12618@node A29K
12619@subsection A29K
104c1213
JM
12620
12621@table @code
104c1213 12622
8e04817f
AC
12623@kindex set rstack_high_address
12624@cindex AMD 29K register stack
12625@cindex register stack, AMD29K
12626@item set rstack_high_address @var{address}
12627On AMD 29000 family processors, registers are saved in a separate
12628@dfn{register stack}. There is no way for @value{GDBN} to determine the
12629extent of this stack. Normally, @value{GDBN} just assumes that the
12630stack is ``large enough''. This may result in @value{GDBN} referencing
12631memory locations that do not exist. If necessary, you can get around
12632this problem by specifying the ending address of the register stack with
12633the @code{set rstack_high_address} command. The argument should be an
12634address, which you probably want to precede with @samp{0x} to specify in
12635hexadecimal.
104c1213 12636
8e04817f
AC
12637@kindex show rstack_high_address
12638@item show rstack_high_address
12639Display the current limit of the register stack, on AMD 29000 family
12640processors.
104c1213 12641
8e04817f 12642@end table
104c1213 12643
8e04817f
AC
12644@node Alpha
12645@subsection Alpha
104c1213 12646
8e04817f 12647See the following section.
104c1213 12648
8e04817f
AC
12649@node MIPS
12650@subsection MIPS
104c1213 12651
8e04817f
AC
12652@cindex stack on Alpha
12653@cindex stack on MIPS
12654@cindex Alpha stack
12655@cindex MIPS stack
12656Alpha- and MIPS-based computers use an unusual stack frame, which
12657sometimes requires @value{GDBN} to search backward in the object code to
12658find the beginning of a function.
104c1213 12659
8e04817f
AC
12660@cindex response time, MIPS debugging
12661To improve response time (especially for embedded applications, where
12662@value{GDBN} may be restricted to a slow serial line for this search)
12663you may want to limit the size of this search, using one of these
12664commands:
104c1213 12665
8e04817f
AC
12666@table @code
12667@cindex @code{heuristic-fence-post} (Alpha, MIPS)
12668@item set heuristic-fence-post @var{limit}
12669Restrict @value{GDBN} to examining at most @var{limit} bytes in its
12670search for the beginning of a function. A value of @var{0} (the
12671default) means there is no limit. However, except for @var{0}, the
12672larger the limit the more bytes @code{heuristic-fence-post} must search
12673and therefore the longer it takes to run.
104c1213 12674
8e04817f
AC
12675@item show heuristic-fence-post
12676Display the current limit.
12677@end table
104c1213
JM
12678
12679@noindent
8e04817f
AC
12680These commands are available @emph{only} when @value{GDBN} is configured
12681for debugging programs on Alpha or MIPS processors.
104c1213 12682
104c1213 12683
8e04817f
AC
12684@node Controlling GDB
12685@chapter Controlling @value{GDBN}
12686
12687You can alter the way @value{GDBN} interacts with you by using the
12688@code{set} command. For commands controlling how @value{GDBN} displays
12689data, see @ref{Print Settings, ,Print settings}. Other settings are
12690described here.
12691
12692@menu
12693* Prompt:: Prompt
12694* Editing:: Command editing
12695* History:: Command history
12696* Screen Size:: Screen size
12697* Numbers:: Numbers
1e698235 12698* ABI:: Configuring the current ABI
8e04817f
AC
12699* Messages/Warnings:: Optional warnings and messages
12700* Debugging Output:: Optional messages about internal happenings
12701@end menu
12702
12703@node Prompt
12704@section Prompt
104c1213 12705
8e04817f 12706@cindex prompt
104c1213 12707
8e04817f
AC
12708@value{GDBN} indicates its readiness to read a command by printing a string
12709called the @dfn{prompt}. This string is normally @samp{(@value{GDBP})}. You
12710can change the prompt string with the @code{set prompt} command. For
12711instance, when debugging @value{GDBN} with @value{GDBN}, it is useful to change
12712the prompt in one of the @value{GDBN} sessions so that you can always tell
12713which one you are talking to.
104c1213 12714
8e04817f
AC
12715@emph{Note:} @code{set prompt} does not add a space for you after the
12716prompt you set. This allows you to set a prompt which ends in a space
12717or a prompt that does not.
104c1213 12718
8e04817f
AC
12719@table @code
12720@kindex set prompt
12721@item set prompt @var{newprompt}
12722Directs @value{GDBN} to use @var{newprompt} as its prompt string henceforth.
104c1213 12723
8e04817f
AC
12724@kindex show prompt
12725@item show prompt
12726Prints a line of the form: @samp{Gdb's prompt is: @var{your-prompt}}
104c1213
JM
12727@end table
12728
8e04817f
AC
12729@node Editing
12730@section Command editing
12731@cindex readline
12732@cindex command line editing
104c1213 12733
8e04817f
AC
12734@value{GDBN} reads its input commands via the @dfn{readline} interface. This
12735@sc{gnu} library provides consistent behavior for programs which provide a
12736command line interface to the user. Advantages are @sc{gnu} Emacs-style
12737or @dfn{vi}-style inline editing of commands, @code{csh}-like history
12738substitution, and a storage and recall of command history across
12739debugging sessions.
104c1213 12740
8e04817f
AC
12741You may control the behavior of command line editing in @value{GDBN} with the
12742command @code{set}.
104c1213 12743
8e04817f
AC
12744@table @code
12745@kindex set editing
12746@cindex editing
12747@item set editing
12748@itemx set editing on
12749Enable command line editing (enabled by default).
104c1213 12750
8e04817f
AC
12751@item set editing off
12752Disable command line editing.
104c1213 12753
8e04817f
AC
12754@kindex show editing
12755@item show editing
12756Show whether command line editing is enabled.
104c1213
JM
12757@end table
12758
8e04817f
AC
12759@node History
12760@section Command history
12761
12762@value{GDBN} can keep track of the commands you type during your
12763debugging sessions, so that you can be certain of precisely what
12764happened. Use these commands to manage the @value{GDBN} command
12765history facility.
104c1213
JM
12766
12767@table @code
8e04817f
AC
12768@cindex history substitution
12769@cindex history file
12770@kindex set history filename
12771@kindex GDBHISTFILE
12772@item set history filename @var{fname}
12773Set the name of the @value{GDBN} command history file to @var{fname}.
12774This is the file where @value{GDBN} reads an initial command history
12775list, and where it writes the command history from this session when it
12776exits. You can access this list through history expansion or through
12777the history command editing characters listed below. This file defaults
12778to the value of the environment variable @code{GDBHISTFILE}, or to
12779@file{./.gdb_history} (@file{./_gdb_history} on MS-DOS) if this variable
12780is not set.
104c1213 12781
8e04817f
AC
12782@cindex history save
12783@kindex set history save
12784@item set history save
12785@itemx set history save on
12786Record command history in a file, whose name may be specified with the
12787@code{set history filename} command. By default, this option is disabled.
104c1213 12788
8e04817f
AC
12789@item set history save off
12790Stop recording command history in a file.
104c1213 12791
8e04817f
AC
12792@cindex history size
12793@kindex set history size
12794@item set history size @var{size}
12795Set the number of commands which @value{GDBN} keeps in its history list.
12796This defaults to the value of the environment variable
12797@code{HISTSIZE}, or to 256 if this variable is not set.
104c1213
JM
12798@end table
12799
8e04817f
AC
12800@cindex history expansion
12801History expansion assigns special meaning to the character @kbd{!}.
12802@ifset have-readline-appendices
12803@xref{Event Designators}.
12804@end ifset
12805
12806Since @kbd{!} is also the logical not operator in C, history expansion
12807is off by default. If you decide to enable history expansion with the
12808@code{set history expansion on} command, you may sometimes need to
12809follow @kbd{!} (when it is used as logical not, in an expression) with
12810a space or a tab to prevent it from being expanded. The readline
12811history facilities do not attempt substitution on the strings
12812@kbd{!=} and @kbd{!(}, even when history expansion is enabled.
12813
12814The commands to control history expansion are:
104c1213
JM
12815
12816@table @code
8e04817f
AC
12817@kindex set history expansion
12818@item set history expansion on
12819@itemx set history expansion
12820Enable history expansion. History expansion is off by default.
104c1213 12821
8e04817f
AC
12822@item set history expansion off
12823Disable history expansion.
104c1213 12824
8e04817f
AC
12825The readline code comes with more complete documentation of
12826editing and history expansion features. Users unfamiliar with @sc{gnu} Emacs
12827or @code{vi} may wish to read it.
12828@ifset have-readline-appendices
12829@xref{Command Line Editing}.
12830@end ifset
104c1213 12831
8e04817f
AC
12832@c @group
12833@kindex show history
12834@item show history
12835@itemx show history filename
12836@itemx show history save
12837@itemx show history size
12838@itemx show history expansion
12839These commands display the state of the @value{GDBN} history parameters.
12840@code{show history} by itself displays all four states.
12841@c @end group
12842@end table
12843
12844@table @code
12845@kindex shows
12846@item show commands
12847Display the last ten commands in the command history.
104c1213 12848
8e04817f
AC
12849@item show commands @var{n}
12850Print ten commands centered on command number @var{n}.
12851
12852@item show commands +
12853Print ten commands just after the commands last printed.
104c1213
JM
12854@end table
12855
8e04817f
AC
12856@node Screen Size
12857@section Screen size
12858@cindex size of screen
12859@cindex pauses in output
104c1213 12860
8e04817f
AC
12861Certain commands to @value{GDBN} may produce large amounts of
12862information output to the screen. To help you read all of it,
12863@value{GDBN} pauses and asks you for input at the end of each page of
12864output. Type @key{RET} when you want to continue the output, or @kbd{q}
12865to discard the remaining output. Also, the screen width setting
12866determines when to wrap lines of output. Depending on what is being
12867printed, @value{GDBN} tries to break the line at a readable place,
12868rather than simply letting it overflow onto the following line.
12869
12870Normally @value{GDBN} knows the size of the screen from the terminal
12871driver software. For example, on Unix @value{GDBN} uses the termcap data base
12872together with the value of the @code{TERM} environment variable and the
12873@code{stty rows} and @code{stty cols} settings. If this is not correct,
12874you can override it with the @code{set height} and @code{set
12875width} commands:
12876
12877@table @code
12878@kindex set height
12879@kindex set width
12880@kindex show width
12881@kindex show height
12882@item set height @var{lpp}
12883@itemx show height
12884@itemx set width @var{cpl}
12885@itemx show width
12886These @code{set} commands specify a screen height of @var{lpp} lines and
12887a screen width of @var{cpl} characters. The associated @code{show}
12888commands display the current settings.
104c1213 12889
8e04817f
AC
12890If you specify a height of zero lines, @value{GDBN} does not pause during
12891output no matter how long the output is. This is useful if output is to a
12892file or to an editor buffer.
104c1213 12893
8e04817f
AC
12894Likewise, you can specify @samp{set width 0} to prevent @value{GDBN}
12895from wrapping its output.
104c1213
JM
12896@end table
12897
8e04817f
AC
12898@node Numbers
12899@section Numbers
12900@cindex number representation
12901@cindex entering numbers
104c1213 12902
8e04817f
AC
12903You can always enter numbers in octal, decimal, or hexadecimal in
12904@value{GDBN} by the usual conventions: octal numbers begin with
12905@samp{0}, decimal numbers end with @samp{.}, and hexadecimal numbers
12906begin with @samp{0x}. Numbers that begin with none of these are, by
12907default, entered in base 10; likewise, the default display for
12908numbers---when no particular format is specified---is base 10. You can
12909change the default base for both input and output with the @code{set
12910radix} command.
104c1213 12911
8e04817f
AC
12912@table @code
12913@kindex set input-radix
12914@item set input-radix @var{base}
12915Set the default base for numeric input. Supported choices
12916for @var{base} are decimal 8, 10, or 16. @var{base} must itself be
12917specified either unambiguously or using the current default radix; for
12918example, any of
104c1213 12919
8e04817f
AC
12920@smallexample
12921set radix 012
12922set radix 10.
12923set radix 0xa
12924@end smallexample
104c1213 12925
8e04817f
AC
12926@noindent
12927sets the base to decimal. On the other hand, @samp{set radix 10}
12928leaves the radix unchanged no matter what it was.
104c1213 12929
8e04817f
AC
12930@kindex set output-radix
12931@item set output-radix @var{base}
12932Set the default base for numeric display. Supported choices
12933for @var{base} are decimal 8, 10, or 16. @var{base} must itself be
12934specified either unambiguously or using the current default radix.
104c1213 12935
8e04817f
AC
12936@kindex show input-radix
12937@item show input-radix
12938Display the current default base for numeric input.
104c1213 12939
8e04817f
AC
12940@kindex show output-radix
12941@item show output-radix
12942Display the current default base for numeric display.
12943@end table
104c1213 12944
1e698235
DJ
12945@node ABI
12946@section Configuring the current ABI
12947
12948@value{GDBN} can determine the @dfn{ABI} (Application Binary Interface) of your
12949application automatically. However, sometimes you need to override its
12950conclusions. Use these commands to manage @value{GDBN}'s view of the
12951current ABI.
12952
98b45e30
DJ
12953@cindex OS ABI
12954@kindex set osabi
b4e9345d 12955@kindex show osabi
98b45e30
DJ
12956
12957One @value{GDBN} configuration can debug binaries for multiple operating
12958system targets, either via remote debugging or native emulation.
12959@value{GDBN} will autodetect the @dfn{OS ABI} (Operating System ABI) in use,
12960but you can override its conclusion using the @code{set osabi} command.
12961One example where this is useful is in debugging of binaries which use
12962an alternate C library (e.g.@: @sc{uClibc} for @sc{gnu}/Linux) which does
12963not have the same identifying marks that the standard C library for your
12964platform provides.
12965
12966@table @code
12967@item show osabi
12968Show the OS ABI currently in use.
12969
12970@item set osabi
12971With no argument, show the list of registered available OS ABI's.
12972
12973@item set osabi @var{abi}
12974Set the current OS ABI to @var{abi}.
12975@end table
12976
1e698235
DJ
12977@cindex float promotion
12978@kindex set coerce-float-to-double
12979
12980Generally, the way that an argument of type @code{float} is passed to a
12981function depends on whether the function is prototyped. For a prototyped
12982(i.e.@: ANSI/ISO style) function, @code{float} arguments are passed unchanged,
12983according to the architecture's convention for @code{float}. For unprototyped
12984(i.e.@: K&R style) functions, @code{float} arguments are first promoted to type
12985@code{double} and then passed.
12986
12987Unfortunately, some forms of debug information do not reliably indicate whether
12988a function is prototyped. If @value{GDBN} calls a function that is not marked
12989as prototyped, it consults @kbd{set coerce-float-to-double}.
12990
12991@table @code
12992@item set coerce-float-to-double
12993@itemx set coerce-float-to-double on
12994Arguments of type @code{float} will be promoted to @code{double} when passed
12995to an unprototyped function. This is the default setting.
12996
12997@item set coerce-float-to-double off
12998Arguments of type @code{float} will be passed directly to unprototyped
12999functions.
13000@end table
13001
f1212245
DJ
13002@kindex set cp-abi
13003@kindex show cp-abi
13004@value{GDBN} needs to know the ABI used for your program's C@t{++}
13005objects. The correct C@t{++} ABI depends on which C@t{++} compiler was
13006used to build your application. @value{GDBN} only fully supports
13007programs with a single C@t{++} ABI; if your program contains code using
13008multiple C@t{++} ABI's or if @value{GDBN} can not identify your
13009program's ABI correctly, you can tell @value{GDBN} which ABI to use.
13010Currently supported ABI's include ``gnu-v2'', for @code{g++} versions
13011before 3.0, ``gnu-v3'', for @code{g++} versions 3.0 and later, and
13012``hpaCC'' for the HP ANSI C@t{++} compiler. Other C@t{++} compilers may
13013use the ``gnu-v2'' or ``gnu-v3'' ABI's as well. The default setting is
13014``auto''.
13015
13016@table @code
13017@item show cp-abi
13018Show the C@t{++} ABI currently in use.
13019
13020@item set cp-abi
13021With no argument, show the list of supported C@t{++} ABI's.
13022
13023@item set cp-abi @var{abi}
13024@itemx set cp-abi auto
13025Set the current C@t{++} ABI to @var{abi}, or return to automatic detection.
13026@end table
13027
8e04817f
AC
13028@node Messages/Warnings
13029@section Optional warnings and messages
104c1213 13030
8e04817f
AC
13031By default, @value{GDBN} is silent about its inner workings. If you are
13032running on a slow machine, you may want to use the @code{set verbose}
13033command. This makes @value{GDBN} tell you when it does a lengthy
13034internal operation, so you will not think it has crashed.
104c1213 13035
8e04817f
AC
13036Currently, the messages controlled by @code{set verbose} are those
13037which announce that the symbol table for a source file is being read;
13038see @code{symbol-file} in @ref{Files, ,Commands to specify files}.
104c1213 13039
8e04817f
AC
13040@table @code
13041@kindex set verbose
13042@item set verbose on
13043Enables @value{GDBN} output of certain informational messages.
104c1213 13044
8e04817f
AC
13045@item set verbose off
13046Disables @value{GDBN} output of certain informational messages.
104c1213 13047
8e04817f
AC
13048@kindex show verbose
13049@item show verbose
13050Displays whether @code{set verbose} is on or off.
13051@end table
104c1213 13052
8e04817f
AC
13053By default, if @value{GDBN} encounters bugs in the symbol table of an
13054object file, it is silent; but if you are debugging a compiler, you may
13055find this information useful (@pxref{Symbol Errors, ,Errors reading
13056symbol files}).
104c1213 13057
8e04817f 13058@table @code
104c1213 13059
8e04817f
AC
13060@kindex set complaints
13061@item set complaints @var{limit}
13062Permits @value{GDBN} to output @var{limit} complaints about each type of
13063unusual symbols before becoming silent about the problem. Set
13064@var{limit} to zero to suppress all complaints; set it to a large number
13065to prevent complaints from being suppressed.
104c1213 13066
8e04817f
AC
13067@kindex show complaints
13068@item show complaints
13069Displays how many symbol complaints @value{GDBN} is permitted to produce.
104c1213 13070
8e04817f 13071@end table
104c1213 13072
8e04817f
AC
13073By default, @value{GDBN} is cautious, and asks what sometimes seems to be a
13074lot of stupid questions to confirm certain commands. For example, if
13075you try to run a program which is already running:
104c1213 13076
474c8240 13077@smallexample
8e04817f
AC
13078(@value{GDBP}) run
13079The program being debugged has been started already.
13080Start it from the beginning? (y or n)
474c8240 13081@end smallexample
104c1213 13082
8e04817f
AC
13083If you are willing to unflinchingly face the consequences of your own
13084commands, you can disable this ``feature'':
104c1213 13085
8e04817f 13086@table @code
104c1213 13087
8e04817f
AC
13088@kindex set confirm
13089@cindex flinching
13090@cindex confirmation
13091@cindex stupid questions
13092@item set confirm off
13093Disables confirmation requests.
104c1213 13094
8e04817f
AC
13095@item set confirm on
13096Enables confirmation requests (the default).
104c1213 13097
8e04817f
AC
13098@kindex show confirm
13099@item show confirm
13100Displays state of confirmation requests.
13101
13102@end table
104c1213 13103
8e04817f
AC
13104@node Debugging Output
13105@section Optional messages about internal happenings
104c1213 13106@table @code
8e04817f
AC
13107@kindex set debug arch
13108@item set debug arch
13109Turns on or off display of gdbarch debugging info. The default is off
13110@kindex show debug arch
13111@item show debug arch
13112Displays the current state of displaying gdbarch debugging info.
13113@kindex set debug event
13114@item set debug event
13115Turns on or off display of @value{GDBN} event debugging info. The
13116default is off.
13117@kindex show debug event
13118@item show debug event
13119Displays the current state of displaying @value{GDBN} event debugging
13120info.
13121@kindex set debug expression
13122@item set debug expression
13123Turns on or off display of @value{GDBN} expression debugging info. The
13124default is off.
13125@kindex show debug expression
13126@item show debug expression
13127Displays the current state of displaying @value{GDBN} expression
13128debugging info.
7453dc06
AC
13129@kindex set debug frame
13130@item set debug frame
13131Turns on or off display of @value{GDBN} frame debugging info. The
13132default is off.
13133@kindex show debug frame
13134@item show debug frame
13135Displays the current state of displaying @value{GDBN} frame debugging
13136info.
8e04817f
AC
13137@kindex set debug overload
13138@item set debug overload
13139Turns on or off display of @value{GDBN} C@t{++} overload debugging
13140info. This includes info such as ranking of functions, etc. The default
13141is off.
13142@kindex show debug overload
13143@item show debug overload
13144Displays the current state of displaying @value{GDBN} C@t{++} overload
13145debugging info.
13146@kindex set debug remote
13147@cindex packets, reporting on stdout
13148@cindex serial connections, debugging
13149@item set debug remote
13150Turns on or off display of reports on all packets sent back and forth across
13151the serial line to the remote machine. The info is printed on the
13152@value{GDBN} standard output stream. The default is off.
13153@kindex show debug remote
13154@item show debug remote
13155Displays the state of display of remote packets.
13156@kindex set debug serial
13157@item set debug serial
13158Turns on or off display of @value{GDBN} serial debugging info. The
13159default is off.
13160@kindex show debug serial
13161@item show debug serial
13162Displays the current state of displaying @value{GDBN} serial debugging
13163info.
13164@kindex set debug target
13165@item set debug target
13166Turns on or off display of @value{GDBN} target debugging info. This info
13167includes what is going on at the target level of GDB, as it happens. The
13168default is off.
13169@kindex show debug target
13170@item show debug target
13171Displays the current state of displaying @value{GDBN} target debugging
13172info.
13173@kindex set debug varobj
13174@item set debug varobj
13175Turns on or off display of @value{GDBN} variable object debugging
13176info. The default is off.
13177@kindex show debug varobj
13178@item show debug varobj
13179Displays the current state of displaying @value{GDBN} variable object
13180debugging info.
13181@end table
104c1213 13182
8e04817f
AC
13183@node Sequences
13184@chapter Canned Sequences of Commands
104c1213 13185
8e04817f
AC
13186Aside from breakpoint commands (@pxref{Break Commands, ,Breakpoint
13187command lists}), @value{GDBN} provides two ways to store sequences of
13188commands for execution as a unit: user-defined commands and command
13189files.
104c1213 13190
8e04817f
AC
13191@menu
13192* Define:: User-defined commands
13193* Hooks:: User-defined command hooks
13194* Command Files:: Command files
13195* Output:: Commands for controlled output
13196@end menu
104c1213 13197
8e04817f
AC
13198@node Define
13199@section User-defined commands
104c1213 13200
8e04817f
AC
13201@cindex user-defined command
13202A @dfn{user-defined command} is a sequence of @value{GDBN} commands to
13203which you assign a new name as a command. This is done with the
13204@code{define} command. User commands may accept up to 10 arguments
13205separated by whitespace. Arguments are accessed within the user command
13206via @var{$arg0@dots{}$arg9}. A trivial example:
104c1213 13207
8e04817f
AC
13208@smallexample
13209define adder
13210 print $arg0 + $arg1 + $arg2
13211@end smallexample
104c1213
JM
13212
13213@noindent
8e04817f 13214To execute the command use:
104c1213 13215
8e04817f
AC
13216@smallexample
13217adder 1 2 3
13218@end smallexample
104c1213 13219
8e04817f
AC
13220@noindent
13221This defines the command @code{adder}, which prints the sum of
13222its three arguments. Note the arguments are text substitutions, so they may
13223reference variables, use complex expressions, or even perform inferior
13224functions calls.
104c1213
JM
13225
13226@table @code
104c1213 13227
8e04817f
AC
13228@kindex define
13229@item define @var{commandname}
13230Define a command named @var{commandname}. If there is already a command
13231by that name, you are asked to confirm that you want to redefine it.
104c1213 13232
8e04817f
AC
13233The definition of the command is made up of other @value{GDBN} command lines,
13234which are given following the @code{define} command. The end of these
13235commands is marked by a line containing @code{end}.
104c1213 13236
8e04817f
AC
13237@kindex if
13238@kindex else
13239@item if
13240Takes a single argument, which is an expression to evaluate.
13241It is followed by a series of commands that are executed
13242only if the expression is true (nonzero).
13243There can then optionally be a line @code{else}, followed
13244by a series of commands that are only executed if the expression
13245was false. The end of the list is marked by a line containing @code{end}.
104c1213 13246
8e04817f
AC
13247@kindex while
13248@item while
13249The syntax is similar to @code{if}: the command takes a single argument,
13250which is an expression to evaluate, and must be followed by the commands to
13251execute, one per line, terminated by an @code{end}.
13252The commands are executed repeatedly as long as the expression
13253evaluates to true.
104c1213 13254
8e04817f
AC
13255@kindex document
13256@item document @var{commandname}
13257Document the user-defined command @var{commandname}, so that it can be
13258accessed by @code{help}. The command @var{commandname} must already be
13259defined. This command reads lines of documentation just as @code{define}
13260reads the lines of the command definition, ending with @code{end}.
13261After the @code{document} command is finished, @code{help} on command
13262@var{commandname} displays the documentation you have written.
104c1213 13263
8e04817f
AC
13264You may use the @code{document} command again to change the
13265documentation of a command. Redefining the command with @code{define}
13266does not change the documentation.
104c1213 13267
8e04817f
AC
13268@kindex help user-defined
13269@item help user-defined
13270List all user-defined commands, with the first line of the documentation
13271(if any) for each.
104c1213 13272
8e04817f
AC
13273@kindex show user
13274@item show user
13275@itemx show user @var{commandname}
13276Display the @value{GDBN} commands used to define @var{commandname} (but
13277not its documentation). If no @var{commandname} is given, display the
13278definitions for all user-defined commands.
104c1213 13279
20f01a46
DH
13280@kindex show max-user-call-depth
13281@kindex set max-user-call-depth
13282@item show max-user-call-depth
5ca0cb28
DH
13283@itemx set max-user-call-depth
13284The value of @code{max-user-call-depth} controls how many recursion
13285levels are allowed in user-defined commands before GDB suspects an
13286infinite recursion and aborts the command.
20f01a46 13287
104c1213
JM
13288@end table
13289
8e04817f
AC
13290When user-defined commands are executed, the
13291commands of the definition are not printed. An error in any command
13292stops execution of the user-defined command.
104c1213 13293
8e04817f
AC
13294If used interactively, commands that would ask for confirmation proceed
13295without asking when used inside a user-defined command. Many @value{GDBN}
13296commands that normally print messages to say what they are doing omit the
13297messages when used in a user-defined command.
104c1213 13298
8e04817f
AC
13299@node Hooks
13300@section User-defined command hooks
13301@cindex command hooks
13302@cindex hooks, for commands
13303@cindex hooks, pre-command
104c1213 13304
8e04817f
AC
13305@kindex hook
13306@kindex hook-
13307You may define @dfn{hooks}, which are a special kind of user-defined
13308command. Whenever you run the command @samp{foo}, if the user-defined
13309command @samp{hook-foo} exists, it is executed (with no arguments)
13310before that command.
104c1213 13311
8e04817f
AC
13312@cindex hooks, post-command
13313@kindex hookpost
13314@kindex hookpost-
13315A hook may also be defined which is run after the command you executed.
13316Whenever you run the command @samp{foo}, if the user-defined command
13317@samp{hookpost-foo} exists, it is executed (with no arguments) after
13318that command. Post-execution hooks may exist simultaneously with
13319pre-execution hooks, for the same command.
104c1213 13320
8e04817f
AC
13321It is valid for a hook to call the command which it hooks. If this
13322occurs, the hook is not re-executed, thereby avoiding infinte recursion.
104c1213 13323
8e04817f
AC
13324@c It would be nice if hookpost could be passed a parameter indicating
13325@c if the command it hooks executed properly or not. FIXME!
104c1213 13326
8e04817f
AC
13327@kindex stop@r{, a pseudo-command}
13328In addition, a pseudo-command, @samp{stop} exists. Defining
13329(@samp{hook-stop}) makes the associated commands execute every time
13330execution stops in your program: before breakpoint commands are run,
13331displays are printed, or the stack frame is printed.
104c1213 13332
8e04817f
AC
13333For example, to ignore @code{SIGALRM} signals while
13334single-stepping, but treat them normally during normal execution,
13335you could define:
104c1213 13336
474c8240 13337@smallexample
8e04817f
AC
13338define hook-stop
13339handle SIGALRM nopass
13340end
104c1213 13341
8e04817f
AC
13342define hook-run
13343handle SIGALRM pass
13344end
104c1213 13345
8e04817f
AC
13346define hook-continue
13347handle SIGLARM pass
13348end
474c8240 13349@end smallexample
104c1213 13350
8e04817f
AC
13351As a further example, to hook at the begining and end of the @code{echo}
13352command, and to add extra text to the beginning and end of the message,
13353you could define:
104c1213 13354
474c8240 13355@smallexample
8e04817f
AC
13356define hook-echo
13357echo <<<---
13358end
104c1213 13359
8e04817f
AC
13360define hookpost-echo
13361echo --->>>\n
13362end
104c1213 13363
8e04817f
AC
13364(@value{GDBP}) echo Hello World
13365<<<---Hello World--->>>
13366(@value{GDBP})
104c1213 13367
474c8240 13368@end smallexample
104c1213 13369
8e04817f
AC
13370You can define a hook for any single-word command in @value{GDBN}, but
13371not for command aliases; you should define a hook for the basic command
13372name, e.g. @code{backtrace} rather than @code{bt}.
13373@c FIXME! So how does Joe User discover whether a command is an alias
13374@c or not?
13375If an error occurs during the execution of your hook, execution of
13376@value{GDBN} commands stops and @value{GDBN} issues a prompt
13377(before the command that you actually typed had a chance to run).
104c1213 13378
8e04817f
AC
13379If you try to define a hook which does not match any known command, you
13380get a warning from the @code{define} command.
c906108c 13381
8e04817f
AC
13382@node Command Files
13383@section Command files
c906108c 13384
8e04817f
AC
13385@cindex command files
13386A command file for @value{GDBN} is a file of lines that are @value{GDBN}
13387commands. Comments (lines starting with @kbd{#}) may also be included.
13388An empty line in a command file does nothing; it does not mean to repeat
13389the last command, as it would from the terminal.
c906108c 13390
8e04817f
AC
13391@cindex init file
13392@cindex @file{.gdbinit}
13393@cindex @file{gdb.ini}
13394When you start @value{GDBN}, it automatically executes commands from its
13395@dfn{init files}, normally called @file{.gdbinit}@footnote{The DJGPP
13396port of @value{GDBN} uses the name @file{gdb.ini} instead, due to the
13397limitations of file names imposed by DOS filesystems.}.
13398During startup, @value{GDBN} does the following:
c906108c 13399
8e04817f
AC
13400@enumerate
13401@item
13402Reads the init file (if any) in your home directory@footnote{On
13403DOS/Windows systems, the home directory is the one pointed to by the
13404@code{HOME} environment variable.}.
c906108c 13405
8e04817f
AC
13406@item
13407Processes command line options and operands.
c906108c 13408
8e04817f
AC
13409@item
13410Reads the init file (if any) in the current working directory.
c906108c 13411
8e04817f
AC
13412@item
13413Reads command files specified by the @samp{-x} option.
13414@end enumerate
c906108c 13415
8e04817f
AC
13416The init file in your home directory can set options (such as @samp{set
13417complaints}) that affect subsequent processing of command line options
13418and operands. Init files are not executed if you use the @samp{-nx}
13419option (@pxref{Mode Options, ,Choosing modes}).
c906108c 13420
8e04817f
AC
13421@cindex init file name
13422On some configurations of @value{GDBN}, the init file is known by a
13423different name (these are typically environments where a specialized
13424form of @value{GDBN} may need to coexist with other forms, hence a
13425different name for the specialized version's init file). These are the
13426environments with special init file names:
c906108c 13427
8e04817f
AC
13428@cindex @file{.vxgdbinit}
13429@itemize @bullet
13430@item
13431VxWorks (Wind River Systems real-time OS): @file{.vxgdbinit}
c906108c 13432
8e04817f
AC
13433@cindex @file{.os68gdbinit}
13434@item
13435OS68K (Enea Data Systems real-time OS): @file{.os68gdbinit}
c906108c 13436
8e04817f
AC
13437@cindex @file{.esgdbinit}
13438@item
13439ES-1800 (Ericsson Telecom AB M68000 emulator): @file{.esgdbinit}
13440@end itemize
c906108c 13441
8e04817f
AC
13442You can also request the execution of a command file with the
13443@code{source} command:
c906108c 13444
8e04817f
AC
13445@table @code
13446@kindex source
13447@item source @var{filename}
13448Execute the command file @var{filename}.
c906108c
SS
13449@end table
13450
8e04817f 13451The lines in a command file are executed sequentially. They are not
a71ec265
DH
13452printed as they are executed. An error in any command terminates
13453execution of the command file and control is returned to the console.
c906108c 13454
8e04817f
AC
13455Commands that would ask for confirmation if used interactively proceed
13456without asking when used in a command file. Many @value{GDBN} commands that
13457normally print messages to say what they are doing omit the messages
13458when called from command files.
c906108c 13459
8e04817f
AC
13460@value{GDBN} also accepts command input from standard input. In this
13461mode, normal output goes to standard output and error output goes to
13462standard error. Errors in a command file supplied on standard input do
13463not terminate execution of the command file --- execution continues with
13464the next command.
c906108c 13465
474c8240 13466@smallexample
8e04817f 13467gdb < cmds > log 2>&1
474c8240 13468@end smallexample
c906108c 13469
8e04817f
AC
13470(The syntax above will vary depending on the shell used.) This example
13471will execute commands from the file @file{cmds}. All output and errors
13472would be directed to @file{log}.
c906108c 13473
8e04817f
AC
13474@node Output
13475@section Commands for controlled output
c906108c 13476
8e04817f
AC
13477During the execution of a command file or a user-defined command, normal
13478@value{GDBN} output is suppressed; the only output that appears is what is
13479explicitly printed by the commands in the definition. This section
13480describes three commands useful for generating exactly the output you
13481want.
c906108c
SS
13482
13483@table @code
8e04817f
AC
13484@kindex echo
13485@item echo @var{text}
13486@c I do not consider backslash-space a standard C escape sequence
13487@c because it is not in ANSI.
13488Print @var{text}. Nonprinting characters can be included in
13489@var{text} using C escape sequences, such as @samp{\n} to print a
13490newline. @strong{No newline is printed unless you specify one.}
13491In addition to the standard C escape sequences, a backslash followed
13492by a space stands for a space. This is useful for displaying a
13493string with spaces at the beginning or the end, since leading and
13494trailing spaces are otherwise trimmed from all arguments.
13495To print @samp{@w{ }and foo =@w{ }}, use the command
13496@samp{echo \@w{ }and foo = \@w{ }}.
c906108c 13497
8e04817f
AC
13498A backslash at the end of @var{text} can be used, as in C, to continue
13499the command onto subsequent lines. For example,
c906108c 13500
474c8240 13501@smallexample
8e04817f
AC
13502echo This is some text\n\
13503which is continued\n\
13504onto several lines.\n
474c8240 13505@end smallexample
c906108c 13506
8e04817f 13507produces the same output as
c906108c 13508
474c8240 13509@smallexample
8e04817f
AC
13510echo This is some text\n
13511echo which is continued\n
13512echo onto several lines.\n
474c8240 13513@end smallexample
c906108c 13514
8e04817f
AC
13515@kindex output
13516@item output @var{expression}
13517Print the value of @var{expression} and nothing but that value: no
13518newlines, no @samp{$@var{nn} = }. The value is not entered in the
13519value history either. @xref{Expressions, ,Expressions}, for more information
13520on expressions.
c906108c 13521
8e04817f
AC
13522@item output/@var{fmt} @var{expression}
13523Print the value of @var{expression} in format @var{fmt}. You can use
13524the same formats as for @code{print}. @xref{Output Formats,,Output
13525formats}, for more information.
c906108c 13526
8e04817f
AC
13527@kindex printf
13528@item printf @var{string}, @var{expressions}@dots{}
13529Print the values of the @var{expressions} under the control of
13530@var{string}. The @var{expressions} are separated by commas and may be
13531either numbers or pointers. Their values are printed as specified by
13532@var{string}, exactly as if your program were to execute the C
13533subroutine
13534@c FIXME: the above implies that at least all ANSI C formats are
13535@c supported, but it isn't true: %E and %G don't work (or so it seems).
13536@c Either this is a bug, or the manual should document what formats are
13537@c supported.
c906108c 13538
474c8240 13539@smallexample
8e04817f 13540printf (@var{string}, @var{expressions}@dots{});
474c8240 13541@end smallexample
c906108c 13542
8e04817f 13543For example, you can print two values in hex like this:
c906108c 13544
8e04817f
AC
13545@smallexample
13546printf "foo, bar-foo = 0x%x, 0x%x\n", foo, bar-foo
13547@end smallexample
c906108c 13548
8e04817f
AC
13549The only backslash-escape sequences that you can use in the format
13550string are the simple ones that consist of backslash followed by a
13551letter.
c906108c
SS
13552@end table
13553
21c294e6
AC
13554@node Interpreters
13555@chapter Command Interpreters
13556@cindex command interpreters
13557
13558@value{GDBN} supports multiple command interpreters, and some command
13559infrastructure to allow users or user interface writers to switch
13560between interpreters or run commands in other interpreters.
13561
13562@value{GDBN} currently supports two command interpreters, the console
13563interpreter (sometimes called the command-line interpreter or @sc{cli})
13564and the machine interface interpreter (or @sc{gdb/mi}). This manual
13565describes both of these interfaces in great detail.
13566
13567By default, @value{GDBN} will start with the console interpreter.
13568However, the user may choose to start @value{GDBN} with another
13569interpreter by specifying the @option{-i} or @option{--interpreter}
13570startup options. Defined interpreters include:
13571
13572@table @code
13573@item console
13574@cindex console interpreter
13575The traditional console or command-line interpreter. This is the most often
13576used interpreter with @value{GDBN}. With no interpreter specified at runtime,
13577@value{GDBN} will use this interpreter.
13578
13579@item mi
13580@cindex mi interpreter
13581The newest @sc{gdb/mi} interface (currently @code{mi2}). Used primarily
13582by programs wishing to use @value{GDBN} as a backend for a debugger GUI
13583or an IDE. For more information, see @ref{GDB/MI, ,The @sc{gdb/mi}
13584Interface}.
13585
13586@item mi2
13587@cindex mi2 interpreter
13588The current @sc{gdb/mi} interface.
13589
13590@item mi1
13591@cindex mi1 interpreter
13592The @sc{gdb/mi} interface included in @value{GDBN} 5.1, 5.2, and 5.3.
13593
13594@end table
13595
13596@cindex invoke another interpreter
13597The interpreter being used by @value{GDBN} may not be dynamically
13598switched at runtime. Although possible, this could lead to a very
13599precarious situation. Consider an IDE using @sc{gdb/mi}. If a user
13600enters the command "interpreter-set console" in a console view,
13601@value{GDBN} would switch to using the console interpreter, rendering
13602the IDE inoperable!
13603
13604@kindex interpreter-exec
13605Although you may only choose a single interpreter at startup, you may execute
13606commands in any interpreter from the current interpreter using the appropriate
13607command. If you are running the console interpreter, simply use the
13608@code{interpreter-exec} command:
13609
13610@smallexample
13611interpreter-exec mi "-data-list-register-names"
13612@end smallexample
13613
13614@sc{gdb/mi} has a similar command, although it is only available in versions of
13615@value{GDBN} which support @sc{gdb/mi} version 2 (or greater).
13616
8e04817f
AC
13617@node TUI
13618@chapter @value{GDBN} Text User Interface
13619@cindex TUI
c906108c 13620
8e04817f
AC
13621@menu
13622* TUI Overview:: TUI overview
13623* TUI Keys:: TUI key bindings
7cf36c78 13624* TUI Single Key Mode:: TUI single key mode
8e04817f
AC
13625* TUI Commands:: TUI specific commands
13626* TUI Configuration:: TUI configuration variables
13627@end menu
c906108c 13628
8e04817f
AC
13629The @value{GDBN} Text User Interface, TUI in short,
13630is a terminal interface which uses the @code{curses} library
13631to show the source file, the assembly output, the program registers
13632and @value{GDBN} commands in separate text windows.
13633The TUI is available only when @value{GDBN} is configured
13634with the @code{--enable-tui} configure option (@pxref{Configure Options}).
c906108c 13635
8e04817f
AC
13636@node TUI Overview
13637@section TUI overview
c906108c 13638
8e04817f
AC
13639The TUI has two display modes that can be switched while
13640@value{GDBN} runs:
c906108c 13641
8e04817f
AC
13642@itemize @bullet
13643@item
13644A curses (or TUI) mode in which it displays several text
13645windows on the terminal.
c906108c 13646
8e04817f
AC
13647@item
13648A standard mode which corresponds to the @value{GDBN} configured without
13649the TUI.
13650@end itemize
c906108c 13651
8e04817f
AC
13652In the TUI mode, @value{GDBN} can display several text window
13653on the terminal:
c906108c 13654
8e04817f
AC
13655@table @emph
13656@item command
13657This window is the @value{GDBN} command window with the @value{GDBN}
13658prompt and the @value{GDBN} outputs. The @value{GDBN} input is still
13659managed using readline but through the TUI. The @emph{command}
13660window is always visible.
c906108c 13661
8e04817f
AC
13662@item source
13663The source window shows the source file of the program. The current
13664line as well as active breakpoints are displayed in this window.
c906108c 13665
8e04817f
AC
13666@item assembly
13667The assembly window shows the disassembly output of the program.
c906108c 13668
8e04817f
AC
13669@item register
13670This window shows the processor registers. It detects when
13671a register is changed and when this is the case, registers that have
13672changed are highlighted.
c906108c 13673
c906108c
SS
13674@end table
13675
269c21fe
SC
13676The source and assembly windows show the current program position
13677by highlighting the current line and marking them with the @samp{>} marker.
13678Breakpoints are also indicated with two markers. A first one
13679indicates the breakpoint type:
13680
13681@table @code
13682@item B
13683Breakpoint which was hit at least once.
13684
13685@item b
13686Breakpoint which was never hit.
13687
13688@item H
13689Hardware breakpoint which was hit at least once.
13690
13691@item h
13692Hardware breakpoint which was never hit.
13693
13694@end table
13695
13696The second marker indicates whether the breakpoint is enabled or not:
13697
13698@table @code
13699@item +
13700Breakpoint is enabled.
13701
13702@item -
13703Breakpoint is disabled.
13704
13705@end table
13706
8e04817f
AC
13707The source, assembly and register windows are attached to the thread
13708and the frame position. They are updated when the current thread
13709changes, when the frame changes or when the program counter changes.
13710These three windows are arranged by the TUI according to several
13711layouts. The layout defines which of these three windows are visible.
13712The following layouts are available:
c906108c 13713
8e04817f
AC
13714@itemize @bullet
13715@item
13716source
2df3850c 13717
8e04817f
AC
13718@item
13719assembly
13720
13721@item
13722source and assembly
13723
13724@item
13725source and registers
c906108c 13726
8e04817f
AC
13727@item
13728assembly and registers
2df3850c 13729
8e04817f 13730@end itemize
c906108c 13731
b7bb15bc
SC
13732On top of the command window a status line gives various information
13733concerning the current process begin debugged. The status line is
13734updated when the information it shows changes. The following fields
13735are displayed:
13736
13737@table @emph
13738@item target
13739Indicates the current gdb target
13740(@pxref{Targets, ,Specifying a Debugging Target}).
13741
13742@item process
13743Gives information about the current process or thread number.
13744When no process is being debugged, this field is set to @code{No process}.
13745
13746@item function
13747Gives the current function name for the selected frame.
13748The name is demangled if demangling is turned on (@pxref{Print Settings}).
13749When there is no symbol corresponding to the current program counter
13750the string @code{??} is displayed.
13751
13752@item line
13753Indicates the current line number for the selected frame.
13754When the current line number is not known the string @code{??} is displayed.
13755
13756@item pc
13757Indicates the current program counter address.
13758
13759@end table
13760
8e04817f
AC
13761@node TUI Keys
13762@section TUI Key Bindings
13763@cindex TUI key bindings
c906108c 13764
8e04817f
AC
13765The TUI installs several key bindings in the readline keymaps
13766(@pxref{Command Line Editing}).
13767They allow to leave or enter in the TUI mode or they operate
7cf36c78
SC
13768directly on the TUI layout and windows. The TUI also provides
13769a @emph{SingleKey} keymap which binds several keys directly to
13770@value{GDBN} commands. The following key bindings
8e04817f 13771are installed for both TUI mode and the @value{GDBN} standard mode.
c906108c 13772
8e04817f
AC
13773@table @kbd
13774@kindex C-x C-a
13775@item C-x C-a
13776@kindex C-x a
13777@itemx C-x a
13778@kindex C-x A
13779@itemx C-x A
13780Enter or leave the TUI mode. When the TUI mode is left,
13781the curses window management is left and @value{GDBN} operates using
13782its standard mode writing on the terminal directly. When the TUI
13783mode is entered, the control is given back to the curses windows.
13784The screen is then refreshed.
c906108c 13785
8e04817f
AC
13786@kindex C-x 1
13787@item C-x 1
13788Use a TUI layout with only one window. The layout will
13789either be @samp{source} or @samp{assembly}. When the TUI mode
13790is not active, it will switch to the TUI mode.
2df3850c 13791
8e04817f 13792Think of this key binding as the Emacs @kbd{C-x 1} binding.
c906108c 13793
8e04817f
AC
13794@kindex C-x 2
13795@item C-x 2
13796Use a TUI layout with at least two windows. When the current
13797layout shows already two windows, a next layout with two windows is used.
13798When a new layout is chosen, one window will always be common to the
13799previous layout and the new one.
c906108c 13800
8e04817f 13801Think of it as the Emacs @kbd{C-x 2} binding.
2df3850c 13802
7cf36c78
SC
13803@kindex C-x s
13804@item C-x s
13805Use the TUI @emph{SingleKey} keymap that binds single key to gdb commands
13806(@pxref{TUI Single Key Mode}).
13807
c906108c
SS
13808@end table
13809
8e04817f 13810The following key bindings are handled only by the TUI mode:
5d161b24 13811
8e04817f
AC
13812@table @key
13813@kindex PgUp
13814@item PgUp
13815Scroll the active window one page up.
c906108c 13816
8e04817f
AC
13817@kindex PgDn
13818@item PgDn
13819Scroll the active window one page down.
c906108c 13820
8e04817f
AC
13821@kindex Up
13822@item Up
13823Scroll the active window one line up.
c906108c 13824
8e04817f
AC
13825@kindex Down
13826@item Down
13827Scroll the active window one line down.
c906108c 13828
8e04817f
AC
13829@kindex Left
13830@item Left
13831Scroll the active window one column left.
c906108c 13832
8e04817f
AC
13833@kindex Right
13834@item Right
13835Scroll the active window one column right.
c906108c 13836
8e04817f
AC
13837@kindex C-L
13838@item C-L
13839Refresh the screen.
c906108c 13840
8e04817f 13841@end table
c906108c 13842
8e04817f
AC
13843In the TUI mode, the arrow keys are used by the active window
13844for scrolling. This means they are not available for readline. It is
13845necessary to use other readline key bindings such as @key{C-p}, @key{C-n},
13846@key{C-b} and @key{C-f}.
13847
7cf36c78
SC
13848@node TUI Single Key Mode
13849@section TUI Single Key Mode
13850@cindex TUI single key mode
13851
13852The TUI provides a @emph{SingleKey} mode in which it installs a particular
13853key binding in the readline keymaps to connect single keys to
13854some gdb commands.
13855
13856@table @kbd
13857@kindex c @r{(SingleKey TUI key)}
13858@item c
13859continue
13860
13861@kindex d @r{(SingleKey TUI key)}
13862@item d
13863down
13864
13865@kindex f @r{(SingleKey TUI key)}
13866@item f
13867finish
13868
13869@kindex n @r{(SingleKey TUI key)}
13870@item n
13871next
13872
13873@kindex q @r{(SingleKey TUI key)}
13874@item q
13875exit the @emph{SingleKey} mode.
13876
13877@kindex r @r{(SingleKey TUI key)}
13878@item r
13879run
13880
13881@kindex s @r{(SingleKey TUI key)}
13882@item s
13883step
13884
13885@kindex u @r{(SingleKey TUI key)}
13886@item u
13887up
13888
13889@kindex v @r{(SingleKey TUI key)}
13890@item v
13891info locals
13892
13893@kindex w @r{(SingleKey TUI key)}
13894@item w
13895where
13896
13897@end table
13898
13899Other keys temporarily switch to the @value{GDBN} command prompt.
13900The key that was pressed is inserted in the editing buffer so that
13901it is possible to type most @value{GDBN} commands without interaction
13902with the TUI @emph{SingleKey} mode. Once the command is entered the TUI
13903@emph{SingleKey} mode is restored. The only way to permanently leave
13904this mode is by hitting @key{q} or @samp{@key{C-x} @key{s}}.
13905
13906
8e04817f
AC
13907@node TUI Commands
13908@section TUI specific commands
13909@cindex TUI commands
13910
13911The TUI has specific commands to control the text windows.
13912These commands are always available, that is they do not depend on
13913the current terminal mode in which @value{GDBN} runs. When @value{GDBN}
13914is in the standard mode, using these commands will automatically switch
13915in the TUI mode.
c906108c
SS
13916
13917@table @code
3d757584
SC
13918@item info win
13919@kindex info win
13920List and give the size of all displayed windows.
13921
8e04817f
AC
13922@item layout next
13923@kindex layout next
13924Display the next layout.
2df3850c 13925
8e04817f
AC
13926@item layout prev
13927@kindex layout prev
13928Display the previous layout.
c906108c 13929
8e04817f
AC
13930@item layout src
13931@kindex layout src
13932Display the source window only.
c906108c 13933
8e04817f
AC
13934@item layout asm
13935@kindex layout asm
13936Display the assembly window only.
c906108c 13937
8e04817f
AC
13938@item layout split
13939@kindex layout split
13940Display the source and assembly window.
c906108c 13941
8e04817f
AC
13942@item layout regs
13943@kindex layout regs
13944Display the register window together with the source or assembly window.
13945
13946@item focus next | prev | src | asm | regs | split
13947@kindex focus
13948Set the focus to the named window.
13949This command allows to change the active window so that scrolling keys
13950can be affected to another window.
c906108c 13951
8e04817f
AC
13952@item refresh
13953@kindex refresh
13954Refresh the screen. This is similar to using @key{C-L} key.
c906108c 13955
8e04817f
AC
13956@item update
13957@kindex update
13958Update the source window and the current execution point.
c906108c 13959
8e04817f
AC
13960@item winheight @var{name} +@var{count}
13961@itemx winheight @var{name} -@var{count}
13962@kindex winheight
13963Change the height of the window @var{name} by @var{count}
13964lines. Positive counts increase the height, while negative counts
13965decrease it.
2df3850c 13966
c906108c
SS
13967@end table
13968
8e04817f
AC
13969@node TUI Configuration
13970@section TUI configuration variables
13971@cindex TUI configuration variables
c906108c 13972
8e04817f
AC
13973The TUI has several configuration variables that control the
13974appearance of windows on the terminal.
c906108c 13975
8e04817f
AC
13976@table @code
13977@item set tui border-kind @var{kind}
13978@kindex set tui border-kind
13979Select the border appearance for the source, assembly and register windows.
13980The possible values are the following:
13981@table @code
13982@item space
13983Use a space character to draw the border.
c906108c 13984
8e04817f
AC
13985@item ascii
13986Use ascii characters + - and | to draw the border.
c906108c 13987
8e04817f
AC
13988@item acs
13989Use the Alternate Character Set to draw the border. The border is
13990drawn using character line graphics if the terminal supports them.
c78b4128 13991
8e04817f 13992@end table
c78b4128 13993
8e04817f
AC
13994@item set tui active-border-mode @var{mode}
13995@kindex set tui active-border-mode
13996Select the attributes to display the border of the active window.
13997The possible values are @code{normal}, @code{standout}, @code{reverse},
13998@code{half}, @code{half-standout}, @code{bold} and @code{bold-standout}.
c78b4128 13999
8e04817f
AC
14000@item set tui border-mode @var{mode}
14001@kindex set tui border-mode
14002Select the attributes to display the border of other windows.
14003The @var{mode} can be one of the following:
14004@table @code
14005@item normal
14006Use normal attributes to display the border.
c906108c 14007
8e04817f
AC
14008@item standout
14009Use standout mode.
c906108c 14010
8e04817f
AC
14011@item reverse
14012Use reverse video mode.
c906108c 14013
8e04817f
AC
14014@item half
14015Use half bright mode.
c906108c 14016
8e04817f
AC
14017@item half-standout
14018Use half bright and standout mode.
c906108c 14019
8e04817f
AC
14020@item bold
14021Use extra bright or bold mode.
c78b4128 14022
8e04817f
AC
14023@item bold-standout
14024Use extra bright or bold and standout mode.
c78b4128 14025
8e04817f 14026@end table
c78b4128 14027
8e04817f 14028@end table
c78b4128 14029
8e04817f
AC
14030@node Emacs
14031@chapter Using @value{GDBN} under @sc{gnu} Emacs
c78b4128 14032
8e04817f
AC
14033@cindex Emacs
14034@cindex @sc{gnu} Emacs
14035A special interface allows you to use @sc{gnu} Emacs to view (and
14036edit) the source files for the program you are debugging with
14037@value{GDBN}.
c906108c 14038
8e04817f
AC
14039To use this interface, use the command @kbd{M-x gdb} in Emacs. Give the
14040executable file you want to debug as an argument. This command starts
14041@value{GDBN} as a subprocess of Emacs, with input and output through a newly
14042created Emacs buffer.
14043@c (Do not use the @code{-tui} option to run @value{GDBN} from Emacs.)
c906108c 14044
8e04817f
AC
14045Using @value{GDBN} under Emacs is just like using @value{GDBN} normally except for two
14046things:
c906108c 14047
8e04817f
AC
14048@itemize @bullet
14049@item
14050All ``terminal'' input and output goes through the Emacs buffer.
14051@end itemize
c906108c 14052
8e04817f
AC
14053This applies both to @value{GDBN} commands and their output, and to the input
14054and output done by the program you are debugging.
bf0184be 14055
8e04817f
AC
14056This is useful because it means that you can copy the text of previous
14057commands and input them again; you can even use parts of the output
14058in this way.
bf0184be 14059
8e04817f
AC
14060All the facilities of Emacs' Shell mode are available for interacting
14061with your program. In particular, you can send signals the usual
14062way---for example, @kbd{C-c C-c} for an interrupt, @kbd{C-c C-z} for a
14063stop.
bf0184be 14064
8e04817f 14065@itemize @bullet
bf0184be 14066@item
8e04817f
AC
14067@value{GDBN} displays source code through Emacs.
14068@end itemize
bf0184be 14069
8e04817f
AC
14070Each time @value{GDBN} displays a stack frame, Emacs automatically finds the
14071source file for that frame and puts an arrow (@samp{=>}) at the
14072left margin of the current line. Emacs uses a separate buffer for
14073source display, and splits the screen to show both your @value{GDBN} session
14074and the source.
bf0184be 14075
8e04817f
AC
14076Explicit @value{GDBN} @code{list} or search commands still produce output as
14077usual, but you probably have no reason to use them from Emacs.
c906108c 14078
8e04817f
AC
14079@quotation
14080@emph{Warning:} If the directory where your program resides is not your
14081current directory, it can be easy to confuse Emacs about the location of
14082the source files, in which case the auxiliary display buffer does not
14083appear to show your source. @value{GDBN} can find programs by searching your
14084environment's @code{PATH} variable, so the @value{GDBN} input and output
14085session proceeds normally; but Emacs does not get enough information
14086back from @value{GDBN} to locate the source files in this situation. To
14087avoid this problem, either start @value{GDBN} mode from the directory where
14088your program resides, or specify an absolute file name when prompted for the
14089@kbd{M-x gdb} argument.
c906108c 14090
8e04817f
AC
14091A similar confusion can result if you use the @value{GDBN} @code{file} command to
14092switch to debugging a program in some other location, from an existing
14093@value{GDBN} buffer in Emacs.
14094@end quotation
14095
14096By default, @kbd{M-x gdb} calls the program called @file{gdb}. If
14097you need to call @value{GDBN} by a different name (for example, if you keep
14098several configurations around, with different names) you can set the
14099Emacs variable @code{gdb-command-name}; for example,
14100
474c8240 14101@smallexample
8e04817f 14102(setq gdb-command-name "mygdb")
474c8240 14103@end smallexample
8e04817f
AC
14104
14105@noindent
14106(preceded by @kbd{M-:} or @kbd{ESC :}, or typed in the @code{*scratch*} buffer, or
14107in your @file{.emacs} file) makes Emacs call the program named
14108``@code{mygdb}'' instead.
14109
14110In the @value{GDBN} I/O buffer, you can use these special Emacs commands in
14111addition to the standard Shell mode commands:
c906108c 14112
8e04817f
AC
14113@table @kbd
14114@item C-h m
14115Describe the features of Emacs' @value{GDBN} Mode.
c906108c 14116
8e04817f
AC
14117@item M-s
14118Execute to another source line, like the @value{GDBN} @code{step} command; also
14119update the display window to show the current file and location.
c906108c 14120
8e04817f
AC
14121@item M-n
14122Execute to next source line in this function, skipping all function
14123calls, like the @value{GDBN} @code{next} command. Then update the display window
14124to show the current file and location.
c906108c 14125
8e04817f
AC
14126@item M-i
14127Execute one instruction, like the @value{GDBN} @code{stepi} command; update
14128display window accordingly.
c906108c 14129
8e04817f
AC
14130@item M-x gdb-nexti
14131Execute to next instruction, using the @value{GDBN} @code{nexti} command; update
14132display window accordingly.
c906108c 14133
8e04817f
AC
14134@item C-c C-f
14135Execute until exit from the selected stack frame, like the @value{GDBN}
14136@code{finish} command.
c906108c 14137
8e04817f
AC
14138@item M-c
14139Continue execution of your program, like the @value{GDBN} @code{continue}
14140command.
b433d00b 14141
8e04817f 14142@emph{Warning:} In Emacs v19, this command is @kbd{C-c C-p}.
b433d00b 14143
8e04817f
AC
14144@item M-u
14145Go up the number of frames indicated by the numeric argument
14146(@pxref{Arguments, , Numeric Arguments, Emacs, The @sc{gnu} Emacs Manual}),
14147like the @value{GDBN} @code{up} command.
b433d00b 14148
8e04817f 14149@emph{Warning:} In Emacs v19, this command is @kbd{C-c C-u}.
c906108c 14150
8e04817f
AC
14151@item M-d
14152Go down the number of frames indicated by the numeric argument, like the
14153@value{GDBN} @code{down} command.
c906108c 14154
8e04817f 14155@emph{Warning:} In Emacs v19, this command is @kbd{C-c C-d}.
c906108c 14156
8e04817f
AC
14157@item C-x &
14158Read the number where the cursor is positioned, and insert it at the end
14159of the @value{GDBN} I/O buffer. For example, if you wish to disassemble code
14160around an address that was displayed earlier, type @kbd{disassemble};
14161then move the cursor to the address display, and pick up the
14162argument for @code{disassemble} by typing @kbd{C-x &}.
c906108c 14163
8e04817f
AC
14164You can customize this further by defining elements of the list
14165@code{gdb-print-command}; once it is defined, you can format or
14166otherwise process numbers picked up by @kbd{C-x &} before they are
14167inserted. A numeric argument to @kbd{C-x &} indicates that you
14168wish special formatting, and also acts as an index to pick an element of the
14169list. If the list element is a string, the number to be inserted is
14170formatted using the Emacs function @code{format}; otherwise the number
14171is passed as an argument to the corresponding list element.
14172@end table
c906108c 14173
8e04817f
AC
14174In any source file, the Emacs command @kbd{C-x SPC} (@code{gdb-break})
14175tells @value{GDBN} to set a breakpoint on the source line point is on.
c906108c 14176
8e04817f
AC
14177If you accidentally delete the source-display buffer, an easy way to get
14178it back is to type the command @code{f} in the @value{GDBN} buffer, to
14179request a frame display; when you run under Emacs, this recreates
14180the source buffer if necessary to show you the context of the current
14181frame.
c906108c 14182
8e04817f
AC
14183The source files displayed in Emacs are in ordinary Emacs buffers
14184which are visiting the source files in the usual way. You can edit
14185the files with these buffers if you wish; but keep in mind that @value{GDBN}
14186communicates with Emacs in terms of line numbers. If you add or
14187delete lines from the text, the line numbers that @value{GDBN} knows cease
14188to correspond properly with the code.
c906108c 14189
8e04817f
AC
14190@c The following dropped because Epoch is nonstandard. Reactivate
14191@c if/when v19 does something similar. ---doc@cygnus.com 19dec1990
14192@ignore
14193@kindex Emacs Epoch environment
14194@kindex Epoch
14195@kindex inspect
c906108c 14196
8e04817f
AC
14197Version 18 of @sc{gnu} Emacs has a built-in window system
14198called the @code{epoch}
14199environment. Users of this environment can use a new command,
14200@code{inspect} which performs identically to @code{print} except that
14201each value is printed in its own window.
14202@end ignore
c906108c 14203
922fbb7b
AC
14204
14205@node GDB/MI
14206@chapter The @sc{gdb/mi} Interface
14207
14208@unnumberedsec Function and Purpose
14209
14210@cindex @sc{gdb/mi}, its purpose
14211@sc{gdb/mi} is a line based machine oriented text interface to @value{GDBN}. It is
14212specifically intended to support the development of systems which use
14213the debugger as just one small component of a larger system.
14214
14215This chapter is a specification of the @sc{gdb/mi} interface. It is written
14216in the form of a reference manual.
14217
14218Note that @sc{gdb/mi} is still under construction, so some of the
14219features described below are incomplete and subject to change.
14220
14221@unnumberedsec Notation and Terminology
14222
14223@cindex notational conventions, for @sc{gdb/mi}
14224This chapter uses the following notation:
14225
14226@itemize @bullet
14227@item
14228@code{|} separates two alternatives.
14229
14230@item
14231@code{[ @var{something} ]} indicates that @var{something} is optional:
14232it may or may not be given.
14233
14234@item
14235@code{( @var{group} )*} means that @var{group} inside the parentheses
14236may repeat zero or more times.
14237
14238@item
14239@code{( @var{group} )+} means that @var{group} inside the parentheses
14240may repeat one or more times.
14241
14242@item
14243@code{"@var{string}"} means a literal @var{string}.
14244@end itemize
14245
14246@ignore
14247@heading Dependencies
14248@end ignore
14249
14250@heading Acknowledgments
14251
14252In alphabetic order: Andrew Cagney, Fernando Nasser, Stan Shebs and
14253Elena Zannoni.
14254
14255@menu
14256* GDB/MI Command Syntax::
14257* GDB/MI Compatibility with CLI::
14258* GDB/MI Output Records::
14259* GDB/MI Command Description Format::
14260* GDB/MI Breakpoint Table Commands::
14261* GDB/MI Data Manipulation::
14262* GDB/MI Program Control::
14263* GDB/MI Miscellaneous Commands::
14264@ignore
14265* GDB/MI Kod Commands::
14266* GDB/MI Memory Overlay Commands::
14267* GDB/MI Signal Handling Commands::
14268@end ignore
14269* GDB/MI Stack Manipulation::
14270* GDB/MI Symbol Query::
14271* GDB/MI Target Manipulation::
14272* GDB/MI Thread Commands::
14273* GDB/MI Tracepoint Commands::
14274* GDB/MI Variable Objects::
14275@end menu
14276
14277@c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
14278@node GDB/MI Command Syntax
14279@section @sc{gdb/mi} Command Syntax
14280
14281@menu
14282* GDB/MI Input Syntax::
14283* GDB/MI Output Syntax::
14284* GDB/MI Simple Examples::
14285@end menu
14286
14287@node GDB/MI Input Syntax
14288@subsection @sc{gdb/mi} Input Syntax
14289
14290@cindex input syntax for @sc{gdb/mi}
14291@cindex @sc{gdb/mi}, input syntax
14292@table @code
14293@item @var{command} @expansion{}
14294@code{@var{cli-command} | @var{mi-command}}
14295
14296@item @var{cli-command} @expansion{}
14297@code{[ @var{token} ] @var{cli-command} @var{nl}}, where
14298@var{cli-command} is any existing @value{GDBN} CLI command.
14299
14300@item @var{mi-command} @expansion{}
14301@code{[ @var{token} ] "-" @var{operation} ( " " @var{option} )*
14302@code{[} " --" @code{]} ( " " @var{parameter} )* @var{nl}}
14303
14304@item @var{token} @expansion{}
14305"any sequence of digits"
14306
14307@item @var{option} @expansion{}
14308@code{"-" @var{parameter} [ " " @var{parameter} ]}
14309
14310@item @var{parameter} @expansion{}
14311@code{@var{non-blank-sequence} | @var{c-string}}
14312
14313@item @var{operation} @expansion{}
14314@emph{any of the operations described in this chapter}
14315
14316@item @var{non-blank-sequence} @expansion{}
14317@emph{anything, provided it doesn't contain special characters such as
14318"-", @var{nl}, """ and of course " "}
14319
14320@item @var{c-string} @expansion{}
14321@code{""" @var{seven-bit-iso-c-string-content} """}
14322
14323@item @var{nl} @expansion{}
14324@code{CR | CR-LF}
14325@end table
14326
14327@noindent
14328Notes:
14329
14330@itemize @bullet
14331@item
14332The CLI commands are still handled by the @sc{mi} interpreter; their
14333output is described below.
14334
14335@item
14336The @code{@var{token}}, when present, is passed back when the command
14337finishes.
14338
14339@item
14340Some @sc{mi} commands accept optional arguments as part of the parameter
14341list. Each option is identified by a leading @samp{-} (dash) and may be
14342followed by an optional argument parameter. Options occur first in the
14343parameter list and can be delimited from normal parameters using
14344@samp{--} (this is useful when some parameters begin with a dash).
14345@end itemize
14346
14347Pragmatics:
14348
14349@itemize @bullet
14350@item
14351We want easy access to the existing CLI syntax (for debugging).
14352
14353@item
14354We want it to be easy to spot a @sc{mi} operation.
14355@end itemize
14356
14357@node GDB/MI Output Syntax
14358@subsection @sc{gdb/mi} Output Syntax
14359
14360@cindex output syntax of @sc{gdb/mi}
14361@cindex @sc{gdb/mi}, output syntax
14362The output from @sc{gdb/mi} consists of zero or more out-of-band records
14363followed, optionally, by a single result record. This result record
14364is for the most recent command. The sequence of output records is
14365terminated by @samp{(@value{GDBP})}.
14366
14367If an input command was prefixed with a @code{@var{token}} then the
14368corresponding output for that command will also be prefixed by that same
14369@var{token}.
14370
14371@table @code
14372@item @var{output} @expansion{}
14373@code{( @var{out-of-band-record} )* [ @var{result-record} ] "(gdb)" @var{nl}}
14374
14375@item @var{result-record} @expansion{}
14376@code{ [ @var{token} ] "^" @var{result-class} ( "," @var{result} )* @var{nl}}
14377
14378@item @var{out-of-band-record} @expansion{}
14379@code{@var{async-record} | @var{stream-record}}
14380
14381@item @var{async-record} @expansion{}
14382@code{@var{exec-async-output} | @var{status-async-output} | @var{notify-async-output}}
14383
14384@item @var{exec-async-output} @expansion{}
14385@code{[ @var{token} ] "*" @var{async-output}}
14386
14387@item @var{status-async-output} @expansion{}
14388@code{[ @var{token} ] "+" @var{async-output}}
14389
14390@item @var{notify-async-output} @expansion{}
14391@code{[ @var{token} ] "=" @var{async-output}}
14392
14393@item @var{async-output} @expansion{}
14394@code{@var{async-class} ( "," @var{result} )* @var{nl}}
14395
14396@item @var{result-class} @expansion{}
14397@code{"done" | "running" | "connected" | "error" | "exit"}
14398
14399@item @var{async-class} @expansion{}
14400@code{"stopped" | @var{others}} (where @var{others} will be added
14401depending on the needs---this is still in development).
14402
14403@item @var{result} @expansion{}
14404@code{ @var{variable} "=" @var{value}}
14405
14406@item @var{variable} @expansion{}
14407@code{ @var{string} }
14408
14409@item @var{value} @expansion{}
14410@code{ @var{const} | @var{tuple} | @var{list} }
14411
14412@item @var{const} @expansion{}
14413@code{@var{c-string}}
14414
14415@item @var{tuple} @expansion{}
14416@code{ "@{@}" | "@{" @var{result} ( "," @var{result} )* "@}" }
14417
14418@item @var{list} @expansion{}
14419@code{ "[]" | "[" @var{value} ( "," @var{value} )* "]" | "["
14420@var{result} ( "," @var{result} )* "]" }
14421
14422@item @var{stream-record} @expansion{}
14423@code{@var{console-stream-output} | @var{target-stream-output} | @var{log-stream-output}}
14424
14425@item @var{console-stream-output} @expansion{}
14426@code{"~" @var{c-string}}
14427
14428@item @var{target-stream-output} @expansion{}
14429@code{"@@" @var{c-string}}
14430
14431@item @var{log-stream-output} @expansion{}
14432@code{"&" @var{c-string}}
14433
14434@item @var{nl} @expansion{}
14435@code{CR | CR-LF}
14436
14437@item @var{token} @expansion{}
14438@emph{any sequence of digits}.
14439@end table
14440
14441@noindent
14442Notes:
14443
14444@itemize @bullet
14445@item
14446All output sequences end in a single line containing a period.
14447
14448@item
14449The @code{@var{token}} is from the corresponding request. If an execution
14450command is interrupted by the @samp{-exec-interrupt} command, the
14451@var{token} associated with the @samp{*stopped} message is the one of the
14452original execution command, not the one of the interrupt command.
14453
14454@item
14455@cindex status output in @sc{gdb/mi}
14456@var{status-async-output} contains on-going status information about the
14457progress of a slow operation. It can be discarded. All status output is
14458prefixed by @samp{+}.
14459
14460@item
14461@cindex async output in @sc{gdb/mi}
14462@var{exec-async-output} contains asynchronous state change on the target
14463(stopped, started, disappeared). All async output is prefixed by
14464@samp{*}.
14465
14466@item
14467@cindex notify output in @sc{gdb/mi}
14468@var{notify-async-output} contains supplementary information that the
14469client should handle (e.g., a new breakpoint information). All notify
14470output is prefixed by @samp{=}.
14471
14472@item
14473@cindex console output in @sc{gdb/mi}
14474@var{console-stream-output} is output that should be displayed as is in the
14475console. It is the textual response to a CLI command. All the console
14476output is prefixed by @samp{~}.
14477
14478@item
14479@cindex target output in @sc{gdb/mi}
14480@var{target-stream-output} is the output produced by the target program.
14481All the target output is prefixed by @samp{@@}.
14482
14483@item
14484@cindex log output in @sc{gdb/mi}
14485@var{log-stream-output} is output text coming from @value{GDBN}'s internals, for
14486instance messages that should be displayed as part of an error log. All
14487the log output is prefixed by @samp{&}.
14488
14489@item
14490@cindex list output in @sc{gdb/mi}
14491New @sc{gdb/mi} commands should only output @var{lists} containing
14492@var{values}.
14493
14494
14495@end itemize
14496
14497@xref{GDB/MI Stream Records, , @sc{gdb/mi} Stream Records}, for more
14498details about the various output records.
14499
14500@node GDB/MI Simple Examples
14501@subsection Simple Examples of @sc{gdb/mi} Interaction
14502@cindex @sc{gdb/mi}, simple examples
14503
14504This subsection presents several simple examples of interaction using
14505the @sc{gdb/mi} interface. In these examples, @samp{->} means that the
14506following line is passed to @sc{gdb/mi} as input, while @samp{<-} means
14507the output received from @sc{gdb/mi}.
14508
14509@subsubheading Target Stop
14510@c Ummm... There is no "-stop" command. This assumes async, no?
14511Here's an example of stopping the inferior process:
14512
14513@smallexample
14514-> -stop
14515<- (@value{GDBP})
14516@end smallexample
14517
14518@noindent
14519and later:
14520
14521@smallexample
14522<- *stop,reason="stop",address="0x123",source="a.c:123"
14523<- (@value{GDBP})
14524@end smallexample
14525
14526@subsubheading Simple CLI Command
14527
14528Here's an example of a simple CLI command being passed through
14529@sc{gdb/mi} and on to the CLI.
14530
14531@smallexample
14532-> print 1+2
14533<- &"print 1+2\n"
14534<- ~"$1 = 3\n"
14535<- ^done
14536<- (@value{GDBP})
14537@end smallexample
14538
14539@subsubheading Command With Side Effects
14540
14541@smallexample
14542-> -symbol-file xyz.exe
14543<- *breakpoint,nr="3",address="0x123",source="a.c:123"
14544<- (@value{GDBP})
14545@end smallexample
14546
14547@subsubheading A Bad Command
14548
14549Here's what happens if you pass a non-existent command:
14550
14551@smallexample
14552-> -rubbish
14553<- ^error,msg="Undefined MI command: rubbish"
14554<- (@value{GDBP})
14555@end smallexample
14556
14557@c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
14558@node GDB/MI Compatibility with CLI
14559@section @sc{gdb/mi} Compatibility with CLI
14560
14561@cindex compatibility, @sc{gdb/mi} and CLI
14562@cindex @sc{gdb/mi}, compatibility with CLI
14563To help users familiar with @value{GDBN}'s existing CLI interface, @sc{gdb/mi}
14564accepts existing CLI commands. As specified by the syntax, such
14565commands can be directly entered into the @sc{gdb/mi} interface and @value{GDBN} will
14566respond.
14567
14568This mechanism is provided as an aid to developers of @sc{gdb/mi}
14569clients and not as a reliable interface into the CLI. Since the command
14570is being interpreteted in an environment that assumes @sc{gdb/mi}
14571behaviour, the exact output of such commands is likely to end up being
14572an un-supported hybrid of @sc{gdb/mi} and CLI output.
14573
14574@c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
14575@node GDB/MI Output Records
14576@section @sc{gdb/mi} Output Records
14577
14578@menu
14579* GDB/MI Result Records::
14580* GDB/MI Stream Records::
14581* GDB/MI Out-of-band Records::
14582@end menu
14583
14584@node GDB/MI Result Records
14585@subsection @sc{gdb/mi} Result Records
14586
14587@cindex result records in @sc{gdb/mi}
14588@cindex @sc{gdb/mi}, result records
14589In addition to a number of out-of-band notifications, the response to a
14590@sc{gdb/mi} command includes one of the following result indications:
14591
14592@table @code
14593@findex ^done
14594@item "^done" [ "," @var{results} ]
14595The synchronous operation was successful, @code{@var{results}} are the return
14596values.
14597
14598@item "^running"
14599@findex ^running
14600@c Is this one correct? Should it be an out-of-band notification?
14601The asynchronous operation was successfully started. The target is
14602running.
14603
14604@item "^error" "," @var{c-string}
14605@findex ^error
14606The operation failed. The @code{@var{c-string}} contains the corresponding
14607error message.
14608@end table
14609
14610@node GDB/MI Stream Records
14611@subsection @sc{gdb/mi} Stream Records
14612
14613@cindex @sc{gdb/mi}, stream records
14614@cindex stream records in @sc{gdb/mi}
14615@value{GDBN} internally maintains a number of output streams: the console, the
14616target, and the log. The output intended for each of these streams is
14617funneled through the @sc{gdb/mi} interface using @dfn{stream records}.
14618
14619Each stream record begins with a unique @dfn{prefix character} which
14620identifies its stream (@pxref{GDB/MI Output Syntax, , @sc{gdb/mi} Output
14621Syntax}). In addition to the prefix, each stream record contains a
14622@code{@var{string-output}}. This is either raw text (with an implicit new
14623line) or a quoted C string (which does not contain an implicit newline).
14624
14625@table @code
14626@item "~" @var{string-output}
14627The console output stream contains text that should be displayed in the
14628CLI console window. It contains the textual responses to CLI commands.
14629
14630@item "@@" @var{string-output}
14631The target output stream contains any textual output from the running
14632target.
14633
14634@item "&" @var{string-output}
14635The log stream contains debugging messages being produced by @value{GDBN}'s
14636internals.
14637@end table
14638
14639@node GDB/MI Out-of-band Records
14640@subsection @sc{gdb/mi} Out-of-band Records
14641
14642@cindex out-of-band records in @sc{gdb/mi}
14643@cindex @sc{gdb/mi}, out-of-band records
14644@dfn{Out-of-band} records are used to notify the @sc{gdb/mi} client of
14645additional changes that have occurred. Those changes can either be a
14646consequence of @sc{gdb/mi} (e.g., a breakpoint modified) or a result of
14647target activity (e.g., target stopped).
14648
14649The following is a preliminary list of possible out-of-band records.
14650
14651@table @code
14652@item "*" "stop"
14653@end table
14654
14655
14656@c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
14657@node GDB/MI Command Description Format
14658@section @sc{gdb/mi} Command Description Format
14659
14660The remaining sections describe blocks of commands. Each block of
14661commands is laid out in a fashion similar to this section.
14662
14663Note the the line breaks shown in the examples are here only for
14664readability. They don't appear in the real output.
14665Also note that the commands with a non-available example (N.A.@:) are
14666not yet implemented.
14667
14668@subheading Motivation
14669
14670The motivation for this collection of commands.
14671
14672@subheading Introduction
14673
14674A brief introduction to this collection of commands as a whole.
14675
14676@subheading Commands
14677
14678For each command in the block, the following is described:
14679
14680@subsubheading Synopsis
14681
14682@smallexample
14683 -command @var{args}@dots{}
14684@end smallexample
14685
14686@subsubheading @value{GDBN} Command
14687
14688The corresponding @value{GDBN} CLI command.
14689
14690@subsubheading Result
14691
14692@subsubheading Out-of-band
14693
14694@subsubheading Notes
14695
14696@subsubheading Example
14697
14698
14699@c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
14700@node GDB/MI Breakpoint Table Commands
14701@section @sc{gdb/mi} Breakpoint table commands
14702
14703@cindex breakpoint commands for @sc{gdb/mi}
14704@cindex @sc{gdb/mi}, breakpoint commands
14705This section documents @sc{gdb/mi} commands for manipulating
14706breakpoints.
14707
14708@subheading The @code{-break-after} Command
14709@findex -break-after
14710
14711@subsubheading Synopsis
14712
14713@smallexample
14714 -break-after @var{number} @var{count}
14715@end smallexample
14716
14717The breakpoint number @var{number} is not in effect until it has been
14718hit @var{count} times. To see how this is reflected in the output of
14719the @samp{-break-list} command, see the description of the
14720@samp{-break-list} command below.
14721
14722@subsubheading @value{GDBN} Command
14723
14724The corresponding @value{GDBN} command is @samp{ignore}.
14725
14726@subsubheading Example
14727
14728@smallexample
14729(@value{GDBP})
14730-break-insert main
14731^done,bkpt=@{number="1",addr="0x000100d0",file="hello.c",line="5"@}
14732(@value{GDBP})
14733-break-after 1 3
14734~
14735^done
14736(@value{GDBP})
14737-break-list
14738^done,BreakpointTable=@{nr_rows="1",nr_cols="6",
14739hdr=[@{width="3",alignment="-1",col_name="number",colhdr="Num"@},
14740@{width="14",alignment="-1",col_name="type",colhdr="Type"@},
14741@{width="4",alignment="-1",col_name="disp",colhdr="Disp"@},
14742@{width="3",alignment="-1",col_name="enabled",colhdr="Enb"@},
14743@{width="10",alignment="-1",col_name="addr",colhdr="Address"@},
14744@{width="40",alignment="2",col_name="what",colhdr="What"@}],
14745body=[bkpt=@{number="1",type="breakpoint",disp="keep",enabled="y",
14746addr="0x000100d0",func="main",file="hello.c",line="5",times="0",
14747ignore="3"@}]@}
14748(@value{GDBP})
14749@end smallexample
14750
14751@ignore
14752@subheading The @code{-break-catch} Command
14753@findex -break-catch
14754
14755@subheading The @code{-break-commands} Command
14756@findex -break-commands
14757@end ignore
14758
14759
14760@subheading The @code{-break-condition} Command
14761@findex -break-condition
14762
14763@subsubheading Synopsis
14764
14765@smallexample
14766 -break-condition @var{number} @var{expr}
14767@end smallexample
14768
14769Breakpoint @var{number} will stop the program only if the condition in
14770@var{expr} is true. The condition becomes part of the
14771@samp{-break-list} output (see the description of the @samp{-break-list}
14772command below).
14773
14774@subsubheading @value{GDBN} Command
14775
14776The corresponding @value{GDBN} command is @samp{condition}.
14777
14778@subsubheading Example
14779
14780@smallexample
14781(@value{GDBP})
14782-break-condition 1 1
14783^done
14784(@value{GDBP})
14785-break-list
14786^done,BreakpointTable=@{nr_rows="1",nr_cols="6",
14787hdr=[@{width="3",alignment="-1",col_name="number",colhdr="Num"@},
14788@{width="14",alignment="-1",col_name="type",colhdr="Type"@},
14789@{width="4",alignment="-1",col_name="disp",colhdr="Disp"@},
14790@{width="3",alignment="-1",col_name="enabled",colhdr="Enb"@},
14791@{width="10",alignment="-1",col_name="addr",colhdr="Address"@},
14792@{width="40",alignment="2",col_name="what",colhdr="What"@}],
14793body=[bkpt=@{number="1",type="breakpoint",disp="keep",enabled="y",
14794addr="0x000100d0",func="main",file="hello.c",line="5",cond="1",
14795times="0",ignore="3"@}]@}
14796(@value{GDBP})
14797@end smallexample
14798
14799@subheading The @code{-break-delete} Command
14800@findex -break-delete
14801
14802@subsubheading Synopsis
14803
14804@smallexample
14805 -break-delete ( @var{breakpoint} )+
14806@end smallexample
14807
14808Delete the breakpoint(s) whose number(s) are specified in the argument
14809list. This is obviously reflected in the breakpoint list.
14810
14811@subsubheading @value{GDBN} command
14812
14813The corresponding @value{GDBN} command is @samp{delete}.
14814
14815@subsubheading Example
14816
14817@smallexample
14818(@value{GDBP})
14819-break-delete 1
14820^done
14821(@value{GDBP})
14822-break-list
14823^done,BreakpointTable=@{nr_rows="0",nr_cols="6",
14824hdr=[@{width="3",alignment="-1",col_name="number",colhdr="Num"@},
14825@{width="14",alignment="-1",col_name="type",colhdr="Type"@},
14826@{width="4",alignment="-1",col_name="disp",colhdr="Disp"@},
14827@{width="3",alignment="-1",col_name="enabled",colhdr="Enb"@},
14828@{width="10",alignment="-1",col_name="addr",colhdr="Address"@},
14829@{width="40",alignment="2",col_name="what",colhdr="What"@}],
14830body=[]@}
14831(@value{GDBP})
14832@end smallexample
14833
14834@subheading The @code{-break-disable} Command
14835@findex -break-disable
14836
14837@subsubheading Synopsis
14838
14839@smallexample
14840 -break-disable ( @var{breakpoint} )+
14841@end smallexample
14842
14843Disable the named @var{breakpoint}(s). The field @samp{enabled} in the
14844break list is now set to @samp{n} for the named @var{breakpoint}(s).
14845
14846@subsubheading @value{GDBN} Command
14847
14848The corresponding @value{GDBN} command is @samp{disable}.
14849
14850@subsubheading Example
14851
14852@smallexample
14853(@value{GDBP})
14854-break-disable 2
14855^done
14856(@value{GDBP})
14857-break-list
14858^done,BreakpointTable=@{nr_rows="1",nr_cols="6",
14859hdr=[@{width="3",alignment="-1",col_name="number",colhdr="Num"@},
14860@{width="14",alignment="-1",col_name="type",colhdr="Type"@},
14861@{width="4",alignment="-1",col_name="disp",colhdr="Disp"@},
14862@{width="3",alignment="-1",col_name="enabled",colhdr="Enb"@},
14863@{width="10",alignment="-1",col_name="addr",colhdr="Address"@},
14864@{width="40",alignment="2",col_name="what",colhdr="What"@}],
14865body=[bkpt=@{number="2",type="breakpoint",disp="keep",enabled="n",
14866addr="0x000100d0",func="main",file="hello.c",line="5",times="0"@}]@}
14867(@value{GDBP})
14868@end smallexample
14869
14870@subheading The @code{-break-enable} Command
14871@findex -break-enable
14872
14873@subsubheading Synopsis
14874
14875@smallexample
14876 -break-enable ( @var{breakpoint} )+
14877@end smallexample
14878
14879Enable (previously disabled) @var{breakpoint}(s).
14880
14881@subsubheading @value{GDBN} Command
14882
14883The corresponding @value{GDBN} command is @samp{enable}.
14884
14885@subsubheading Example
14886
14887@smallexample
14888(@value{GDBP})
14889-break-enable 2
14890^done
14891(@value{GDBP})
14892-break-list
14893^done,BreakpointTable=@{nr_rows="1",nr_cols="6",
14894hdr=[@{width="3",alignment="-1",col_name="number",colhdr="Num"@},
14895@{width="14",alignment="-1",col_name="type",colhdr="Type"@},
14896@{width="4",alignment="-1",col_name="disp",colhdr="Disp"@},
14897@{width="3",alignment="-1",col_name="enabled",colhdr="Enb"@},
14898@{width="10",alignment="-1",col_name="addr",colhdr="Address"@},
14899@{width="40",alignment="2",col_name="what",colhdr="What"@}],
14900body=[bkpt=@{number="2",type="breakpoint",disp="keep",enabled="y",
14901addr="0x000100d0",func="main",file="hello.c",line="5",times="0"@}]@}
14902(@value{GDBP})
14903@end smallexample
14904
14905@subheading The @code{-break-info} Command
14906@findex -break-info
14907
14908@subsubheading Synopsis
14909
14910@smallexample
14911 -break-info @var{breakpoint}
14912@end smallexample
14913
14914@c REDUNDANT???
14915Get information about a single breakpoint.
14916
14917@subsubheading @value{GDBN} command
14918
14919The corresponding @value{GDBN} command is @samp{info break @var{breakpoint}}.
14920
14921@subsubheading Example
14922N.A.
14923
14924@subheading The @code{-break-insert} Command
14925@findex -break-insert
14926
14927@subsubheading Synopsis
14928
14929@smallexample
14930 -break-insert [ -t ] [ -h ] [ -r ]
14931 [ -c @var{condition} ] [ -i @var{ignore-count} ]
14932 [ -p @var{thread} ] [ @var{line} | @var{addr} ]
14933@end smallexample
14934
14935@noindent
14936If specified, @var{line}, can be one of:
14937
14938@itemize @bullet
14939@item function
14940@c @item +offset
14941@c @item -offset
14942@c @item linenum
14943@item filename:linenum
14944@item filename:function
14945@item *address
14946@end itemize
14947
14948The possible optional parameters of this command are:
14949
14950@table @samp
14951@item -t
14952Insert a tempoary breakpoint.
14953@item -h
14954Insert a hardware breakpoint.
14955@item -c @var{condition}
14956Make the breakpoint conditional on @var{condition}.
14957@item -i @var{ignore-count}
14958Initialize the @var{ignore-count}.
14959@item -r
14960Insert a regular breakpoint in all the functions whose names match the
14961given regular expression. Other flags are not applicable to regular
14962expresson.
14963@end table
14964
14965@subsubheading Result
14966
14967The result is in the form:
14968
14969@smallexample
14970 ^done,bkptno="@var{number}",func="@var{funcname}",
14971 file="@var{filename}",line="@var{lineno}"
14972@end smallexample
14973
14974@noindent
14975where @var{number} is the @value{GDBN} number for this breakpoint, @var{funcname}
14976is the name of the function where the breakpoint was inserted,
14977@var{filename} is the name of the source file which contains this
14978function, and @var{lineno} is the source line number within that file.
14979
14980Note: this format is open to change.
14981@c An out-of-band breakpoint instead of part of the result?
14982
14983@subsubheading @value{GDBN} Command
14984
14985The corresponding @value{GDBN} commands are @samp{break}, @samp{tbreak},
14986@samp{hbreak}, @samp{thbreak}, and @samp{rbreak}.
14987
14988@subsubheading Example
14989
14990@smallexample
14991(@value{GDBP})
14992-break-insert main
14993^done,bkpt=@{number="1",addr="0x0001072c",file="recursive2.c",line="4"@}
14994(@value{GDBP})
14995-break-insert -t foo
14996^done,bkpt=@{number="2",addr="0x00010774",file="recursive2.c",line="11"@}
14997(@value{GDBP})
14998-break-list
14999^done,BreakpointTable=@{nr_rows="2",nr_cols="6",
15000hdr=[@{width="3",alignment="-1",col_name="number",colhdr="Num"@},
15001@{width="14",alignment="-1",col_name="type",colhdr="Type"@},
15002@{width="4",alignment="-1",col_name="disp",colhdr="Disp"@},
15003@{width="3",alignment="-1",col_name="enabled",colhdr="Enb"@},
15004@{width="10",alignment="-1",col_name="addr",colhdr="Address"@},
15005@{width="40",alignment="2",col_name="what",colhdr="What"@}],
15006body=[bkpt=@{number="1",type="breakpoint",disp="keep",enabled="y",
15007addr="0x0001072c", func="main",file="recursive2.c",line="4",times="0"@},
15008bkpt=@{number="2",type="breakpoint",disp="del",enabled="y",
15009addr="0x00010774",func="foo",file="recursive2.c",line="11",times="0"@}]@}
15010(@value{GDBP})
15011-break-insert -r foo.*
15012~int foo(int, int);
15013^done,bkpt=@{number="3",addr="0x00010774",file="recursive2.c",line="11"@}
15014(@value{GDBP})
15015@end smallexample
15016
15017@subheading The @code{-break-list} Command
15018@findex -break-list
15019
15020@subsubheading Synopsis
15021
15022@smallexample
15023 -break-list
15024@end smallexample
15025
15026Displays the list of inserted breakpoints, showing the following fields:
15027
15028@table @samp
15029@item Number
15030number of the breakpoint
15031@item Type
15032type of the breakpoint: @samp{breakpoint} or @samp{watchpoint}
15033@item Disposition
15034should the breakpoint be deleted or disabled when it is hit: @samp{keep}
15035or @samp{nokeep}
15036@item Enabled
15037is the breakpoint enabled or no: @samp{y} or @samp{n}
15038@item Address
15039memory location at which the breakpoint is set
15040@item What
15041logical location of the breakpoint, expressed by function name, file
15042name, line number
15043@item Times
15044number of times the breakpoint has been hit
15045@end table
15046
15047If there are no breakpoints or watchpoints, the @code{BreakpointTable}
15048@code{body} field is an empty list.
15049
15050@subsubheading @value{GDBN} Command
15051
15052The corresponding @value{GDBN} command is @samp{info break}.
15053
15054@subsubheading Example
15055
15056@smallexample
15057(@value{GDBP})
15058-break-list
15059^done,BreakpointTable=@{nr_rows="2",nr_cols="6",
15060hdr=[@{width="3",alignment="-1",col_name="number",colhdr="Num"@},
15061@{width="14",alignment="-1",col_name="type",colhdr="Type"@},
15062@{width="4",alignment="-1",col_name="disp",colhdr="Disp"@},
15063@{width="3",alignment="-1",col_name="enabled",colhdr="Enb"@},
15064@{width="10",alignment="-1",col_name="addr",colhdr="Address"@},
15065@{width="40",alignment="2",col_name="what",colhdr="What"@}],
15066body=[bkpt=@{number="1",type="breakpoint",disp="keep",enabled="y",
15067addr="0x000100d0",func="main",file="hello.c",line="5",times="0"@},
15068bkpt=@{number="2",type="breakpoint",disp="keep",enabled="y",
15069addr="0x00010114",func="foo",file="hello.c",line="13",times="0"@}]@}
15070(@value{GDBP})
15071@end smallexample
15072
15073Here's an example of the result when there are no breakpoints:
15074
15075@smallexample
15076(@value{GDBP})
15077-break-list
15078^done,BreakpointTable=@{nr_rows="0",nr_cols="6",
15079hdr=[@{width="3",alignment="-1",col_name="number",colhdr="Num"@},
15080@{width="14",alignment="-1",col_name="type",colhdr="Type"@},
15081@{width="4",alignment="-1",col_name="disp",colhdr="Disp"@},
15082@{width="3",alignment="-1",col_name="enabled",colhdr="Enb"@},
15083@{width="10",alignment="-1",col_name="addr",colhdr="Address"@},
15084@{width="40",alignment="2",col_name="what",colhdr="What"@}],
15085body=[]@}
15086(@value{GDBP})
15087@end smallexample
15088
15089@subheading The @code{-break-watch} Command
15090@findex -break-watch
15091
15092@subsubheading Synopsis
15093
15094@smallexample
15095 -break-watch [ -a | -r ]
15096@end smallexample
15097
15098Create a watchpoint. With the @samp{-a} option it will create an
15099@dfn{access} watchpoint, i.e. a watchpoint that triggers either on a
15100read from or on a write to the memory location. With the @samp{-r}
15101option, the watchpoint created is a @dfn{read} watchpoint, i.e. it will
15102trigger only when the memory location is accessed for reading. Without
15103either of the options, the watchpoint created is a regular watchpoint,
15104i.e. it will trigger when the memory location is accessed for writing.
15105@xref{Set Watchpoints, , Setting watchpoints}.
15106
15107Note that @samp{-break-list} will report a single list of watchpoints and
15108breakpoints inserted.
15109
15110@subsubheading @value{GDBN} Command
15111
15112The corresponding @value{GDBN} commands are @samp{watch}, @samp{awatch}, and
15113@samp{rwatch}.
15114
15115@subsubheading Example
15116
15117Setting a watchpoint on a variable in the @code{main} function:
15118
15119@smallexample
15120(@value{GDBP})
15121-break-watch x
15122^done,wpt=@{number="2",exp="x"@}
15123(@value{GDBP})
15124-exec-continue
15125^running
15126^done,reason="watchpoint-trigger",wpt=@{number="2",exp="x"@},
15127value=@{old="-268439212",new="55"@},
15128frame=@{func="main",args=[],file="recursive2.c",line="5"@}
15129(@value{GDBP})
15130@end smallexample
15131
15132Setting a watchpoint on a variable local to a function. @value{GDBN} will stop
15133the program execution twice: first for the variable changing value, then
15134for the watchpoint going out of scope.
15135
15136@smallexample
15137(@value{GDBP})
15138-break-watch C
15139^done,wpt=@{number="5",exp="C"@}
15140(@value{GDBP})
15141-exec-continue
15142^running
15143^done,reason="watchpoint-trigger",
15144wpt=@{number="5",exp="C"@},value=@{old="-276895068",new="3"@},
15145frame=@{func="callee4",args=[],
15146file="../../../devo/gdb/testsuite/gdb.mi/basics.c",line="13"@}
15147(@value{GDBP})
15148-exec-continue
15149^running
15150^done,reason="watchpoint-scope",wpnum="5",
15151frame=@{func="callee3",args=[@{name="strarg",
15152value="0x11940 \"A string argument.\""@}],
15153file="../../../devo/gdb/testsuite/gdb.mi/basics.c",line="18"@}
15154(@value{GDBP})
15155@end smallexample
15156
15157Listing breakpoints and watchpoints, at different points in the program
15158execution. Note that once the watchpoint goes out of scope, it is
15159deleted.
15160
15161@smallexample
15162(@value{GDBP})
15163-break-watch C
15164^done,wpt=@{number="2",exp="C"@}
15165(@value{GDBP})
15166-break-list
15167^done,BreakpointTable=@{nr_rows="2",nr_cols="6",
15168hdr=[@{width="3",alignment="-1",col_name="number",colhdr="Num"@},
15169@{width="14",alignment="-1",col_name="type",colhdr="Type"@},
15170@{width="4",alignment="-1",col_name="disp",colhdr="Disp"@},
15171@{width="3",alignment="-1",col_name="enabled",colhdr="Enb"@},
15172@{width="10",alignment="-1",col_name="addr",colhdr="Address"@},
15173@{width="40",alignment="2",col_name="what",colhdr="What"@}],
15174body=[bkpt=@{number="1",type="breakpoint",disp="keep",enabled="y",
15175addr="0x00010734",func="callee4",
15176file="../../../devo/gdb/testsuite/gdb.mi/basics.c",line="8",times="1"@},
15177bkpt=@{number="2",type="watchpoint",disp="keep",
15178enabled="y",addr="",what="C",times="0"@}]@}
15179(@value{GDBP})
15180-exec-continue
15181^running
15182^done,reason="watchpoint-trigger",wpt=@{number="2",exp="C"@},
15183value=@{old="-276895068",new="3"@},
15184frame=@{func="callee4",args=[],
15185file="../../../devo/gdb/testsuite/gdb.mi/basics.c",line="13"@}
15186(@value{GDBP})
15187-break-list
15188^done,BreakpointTable=@{nr_rows="2",nr_cols="6",
15189hdr=[@{width="3",alignment="-1",col_name="number",colhdr="Num"@},
15190@{width="14",alignment="-1",col_name="type",colhdr="Type"@},
15191@{width="4",alignment="-1",col_name="disp",colhdr="Disp"@},
15192@{width="3",alignment="-1",col_name="enabled",colhdr="Enb"@},
15193@{width="10",alignment="-1",col_name="addr",colhdr="Address"@},
15194@{width="40",alignment="2",col_name="what",colhdr="What"@}],
15195body=[bkpt=@{number="1",type="breakpoint",disp="keep",enabled="y",
15196addr="0x00010734",func="callee4",
15197file="../../../devo/gdb/testsuite/gdb.mi/basics.c",line="8",times="1"@},
15198bkpt=@{number="2",type="watchpoint",disp="keep",
15199enabled="y",addr="",what="C",times="-5"@}]@}
15200(@value{GDBP})
15201-exec-continue
15202^running
15203^done,reason="watchpoint-scope",wpnum="2",
15204frame=@{func="callee3",args=[@{name="strarg",
15205value="0x11940 \"A string argument.\""@}],
15206file="../../../devo/gdb/testsuite/gdb.mi/basics.c",line="18"@}
15207(@value{GDBP})
15208-break-list
15209^done,BreakpointTable=@{nr_rows="1",nr_cols="6",
15210hdr=[@{width="3",alignment="-1",col_name="number",colhdr="Num"@},
15211@{width="14",alignment="-1",col_name="type",colhdr="Type"@},
15212@{width="4",alignment="-1",col_name="disp",colhdr="Disp"@},
15213@{width="3",alignment="-1",col_name="enabled",colhdr="Enb"@},
15214@{width="10",alignment="-1",col_name="addr",colhdr="Address"@},
15215@{width="40",alignment="2",col_name="what",colhdr="What"@}],
15216body=[bkpt=@{number="1",type="breakpoint",disp="keep",enabled="y",
15217addr="0x00010734",func="callee4",
15218file="../../../devo/gdb/testsuite/gdb.mi/basics.c",line="8",times="1"@}]@}
15219(@value{GDBP})
15220@end smallexample
15221
15222@c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
15223@node GDB/MI Data Manipulation
15224@section @sc{gdb/mi} Data Manipulation
15225
15226@cindex data manipulation, in @sc{gdb/mi}
15227@cindex @sc{gdb/mi}, data manipulation
15228This section describes the @sc{gdb/mi} commands that manipulate data:
15229examine memory and registers, evaluate expressions, etc.
15230
15231@c REMOVED FROM THE INTERFACE.
15232@c @subheading -data-assign
15233@c Change the value of a program variable. Plenty of side effects.
15234@c @subsubheading GDB command
15235@c set variable
15236@c @subsubheading Example
15237@c N.A.
15238
15239@subheading The @code{-data-disassemble} Command
15240@findex -data-disassemble
15241
15242@subsubheading Synopsis
15243
15244@smallexample
15245 -data-disassemble
15246 [ -s @var{start-addr} -e @var{end-addr} ]
15247 | [ -f @var{filename} -l @var{linenum} [ -n @var{lines} ] ]
15248 -- @var{mode}
15249@end smallexample
15250
15251@noindent
15252Where:
15253
15254@table @samp
15255@item @var{start-addr}
15256is the beginning address (or @code{$pc})
15257@item @var{end-addr}
15258is the end address
15259@item @var{filename}
15260is the name of the file to disassemble
15261@item @var{linenum}
15262is the line number to disassemble around
15263@item @var{lines}
15264is the the number of disassembly lines to be produced. If it is -1,
15265the whole function will be disassembled, in case no @var{end-addr} is
15266specified. If @var{end-addr} is specified as a non-zero value, and
15267@var{lines} is lower than the number of disassembly lines between
15268@var{start-addr} and @var{end-addr}, only @var{lines} lines are
15269displayed; if @var{lines} is higher than the number of lines between
15270@var{start-addr} and @var{end-addr}, only the lines up to @var{end-addr}
15271are displayed.
15272@item @var{mode}
15273is either 0 (meaning only disassembly) or 1 (meaning mixed source and
15274disassembly).
15275@end table
15276
15277@subsubheading Result
15278
15279The output for each instruction is composed of four fields:
15280
15281@itemize @bullet
15282@item Address
15283@item Func-name
15284@item Offset
15285@item Instruction
15286@end itemize
15287
15288Note that whatever included in the instruction field, is not manipulated
15289directely by @sc{gdb/mi}, i.e. it is not possible to adjust its format.
15290
15291@subsubheading @value{GDBN} Command
15292
15293There's no direct mapping from this command to the CLI.
15294
15295@subsubheading Example
15296
15297Disassemble from the current value of @code{$pc} to @code{$pc + 20}:
15298
15299@smallexample
15300(@value{GDBP})
15301-data-disassemble -s $pc -e "$pc + 20" -- 0
15302^done,
15303asm_insns=[
15304@{address="0x000107c0",func-name="main",offset="4",
15305inst="mov 2, %o0"@},
15306@{address="0x000107c4",func-name="main",offset="8",
15307inst="sethi %hi(0x11800), %o2"@},
15308@{address="0x000107c8",func-name="main",offset="12",
15309inst="or %o2, 0x140, %o1\t! 0x11940 <_lib_version+8>"@},
15310@{address="0x000107cc",func-name="main",offset="16",
15311inst="sethi %hi(0x11800), %o2"@},
15312@{address="0x000107d0",func-name="main",offset="20",
15313inst="or %o2, 0x168, %o4\t! 0x11968 <_lib_version+48>"@}]
15314(@value{GDBP})
15315@end smallexample
15316
15317Disassemble the whole @code{main} function. Line 32 is part of
15318@code{main}.
15319
15320@smallexample
15321-data-disassemble -f basics.c -l 32 -- 0
15322^done,asm_insns=[
15323@{address="0x000107bc",func-name="main",offset="0",
15324inst="save %sp, -112, %sp"@},
15325@{address="0x000107c0",func-name="main",offset="4",
15326inst="mov 2, %o0"@},
15327@{address="0x000107c4",func-name="main",offset="8",
15328inst="sethi %hi(0x11800), %o2"@},
15329[@dots{}]
15330@{address="0x0001081c",func-name="main",offset="96",inst="ret "@},
15331@{address="0x00010820",func-name="main",offset="100",inst="restore "@}]
15332(@value{GDBP})
15333@end smallexample
15334
15335Disassemble 3 instructions from the start of @code{main}:
15336
15337@smallexample
15338(@value{GDBP})
15339-data-disassemble -f basics.c -l 32 -n 3 -- 0
15340^done,asm_insns=[
15341@{address="0x000107bc",func-name="main",offset="0",
15342inst="save %sp, -112, %sp"@},
15343@{address="0x000107c0",func-name="main",offset="4",
15344inst="mov 2, %o0"@},
15345@{address="0x000107c4",func-name="main",offset="8",
15346inst="sethi %hi(0x11800), %o2"@}]
15347(@value{GDBP})
15348@end smallexample
15349
15350Disassemble 3 instructions from the start of @code{main} in mixed mode:
15351
15352@smallexample
15353(@value{GDBP})
15354-data-disassemble -f basics.c -l 32 -n 3 -- 1
15355^done,asm_insns=[
15356src_and_asm_line=@{line="31",
15357file="/kwikemart/marge/ezannoni/flathead-dev/devo/gdb/ \
15358 testsuite/gdb.mi/basics.c",line_asm_insn=[
15359@{address="0x000107bc",func-name="main",offset="0",
15360inst="save %sp, -112, %sp"@}]@},
15361src_and_asm_line=@{line="32",
15362file="/kwikemart/marge/ezannoni/flathead-dev/devo/gdb/ \
15363 testsuite/gdb.mi/basics.c",line_asm_insn=[
15364@{address="0x000107c0",func-name="main",offset="4",
15365inst="mov 2, %o0"@},
15366@{address="0x000107c4",func-name="main",offset="8",
15367inst="sethi %hi(0x11800), %o2"@}]@}]
15368(@value{GDBP})
15369@end smallexample
15370
15371
15372@subheading The @code{-data-evaluate-expression} Command
15373@findex -data-evaluate-expression
15374
15375@subsubheading Synopsis
15376
15377@smallexample
15378 -data-evaluate-expression @var{expr}
15379@end smallexample
15380
15381Evaluate @var{expr} as an expression. The expression could contain an
15382inferior function call. The function call will execute synchronously.
15383If the expression contains spaces, it must be enclosed in double quotes.
15384
15385@subsubheading @value{GDBN} Command
15386
15387The corresponding @value{GDBN} commands are @samp{print}, @samp{output}, and
15388@samp{call}. In @code{gdbtk} only, there's a corresponding
15389@samp{gdb_eval} command.
15390
15391@subsubheading Example
15392
15393In the following example, the numbers that precede the commands are the
15394@dfn{tokens} described in @ref{GDB/MI Command Syntax, ,@sc{gdb/mi}
15395Command Syntax}. Notice how @sc{gdb/mi} returns the same tokens in its
15396output.
15397
15398@smallexample
15399211-data-evaluate-expression A
15400211^done,value="1"
15401(@value{GDBP})
15402311-data-evaluate-expression &A
15403311^done,value="0xefffeb7c"
15404(@value{GDBP})
15405411-data-evaluate-expression A+3
15406411^done,value="4"
15407(@value{GDBP})
15408511-data-evaluate-expression "A + 3"
15409511^done,value="4"
15410(@value{GDBP})
15411@end smallexample
15412
15413
15414@subheading The @code{-data-list-changed-registers} Command
15415@findex -data-list-changed-registers
15416
15417@subsubheading Synopsis
15418
15419@smallexample
15420 -data-list-changed-registers
15421@end smallexample
15422
15423Display a list of the registers that have changed.
15424
15425@subsubheading @value{GDBN} Command
15426
15427@value{GDBN} doesn't have a direct analog for this command; @code{gdbtk}
15428has the corresponding command @samp{gdb_changed_register_list}.
15429
15430@subsubheading Example
15431
15432On a PPC MBX board:
15433
15434@smallexample
15435(@value{GDBP})
15436-exec-continue
15437^running
15438
15439(@value{GDBP})
15440*stopped,reason="breakpoint-hit",bkptno="1",frame=@{func="main",
15441args=[],file="try.c",line="5"@}
15442(@value{GDBP})
15443-data-list-changed-registers
15444^done,changed-registers=["0","1","2","4","5","6","7","8","9",
15445"10","11","13","14","15","16","17","18","19","20","21","22","23",
15446"24","25","26","27","28","30","31","64","65","66","67","69"]
15447(@value{GDBP})
15448@end smallexample
15449
15450
15451@subheading The @code{-data-list-register-names} Command
15452@findex -data-list-register-names
15453
15454@subsubheading Synopsis
15455
15456@smallexample
15457 -data-list-register-names [ ( @var{regno} )+ ]
15458@end smallexample
15459
15460Show a list of register names for the current target. If no arguments
15461are given, it shows a list of the names of all the registers. If
15462integer numbers are given as arguments, it will print a list of the
15463names of the registers corresponding to the arguments. To ensure
15464consistency between a register name and its number, the output list may
15465include empty register names.
15466
15467@subsubheading @value{GDBN} Command
15468
15469@value{GDBN} does not have a command which corresponds to
15470@samp{-data-list-register-names}. In @code{gdbtk} there is a
15471corresponding command @samp{gdb_regnames}.
15472
15473@subsubheading Example
15474
15475For the PPC MBX board:
15476@smallexample
15477(@value{GDBP})
15478-data-list-register-names
15479^done,register-names=["r0","r1","r2","r3","r4","r5","r6","r7",
15480"r8","r9","r10","r11","r12","r13","r14","r15","r16","r17","r18",
15481"r19","r20","r21","r22","r23","r24","r25","r26","r27","r28","r29",
15482"r30","r31","f0","f1","f2","f3","f4","f5","f6","f7","f8","f9",
15483"f10","f11","f12","f13","f14","f15","f16","f17","f18","f19","f20",
15484"f21","f22","f23","f24","f25","f26","f27","f28","f29","f30","f31",
15485"", "pc","ps","cr","lr","ctr","xer"]
15486(@value{GDBP})
15487-data-list-register-names 1 2 3
15488^done,register-names=["r1","r2","r3"]
15489(@value{GDBP})
15490@end smallexample
15491
15492@subheading The @code{-data-list-register-values} Command
15493@findex -data-list-register-values
15494
15495@subsubheading Synopsis
15496
15497@smallexample
15498 -data-list-register-values @var{fmt} [ ( @var{regno} )*]
15499@end smallexample
15500
15501Display the registers' contents. @var{fmt} is the format according to
15502which the registers' contents are to be returned, followed by an optional
15503list of numbers specifying the registers to display. A missing list of
15504numbers indicates that the contents of all the registers must be returned.
15505
15506Allowed formats for @var{fmt} are:
15507
15508@table @code
15509@item x
15510Hexadecimal
15511@item o
15512Octal
15513@item t
15514Binary
15515@item d
15516Decimal
15517@item r
15518Raw
15519@item N
15520Natural
15521@end table
15522
15523@subsubheading @value{GDBN} Command
15524
15525The corresponding @value{GDBN} commands are @samp{info reg}, @samp{info
15526all-reg}, and (in @code{gdbtk}) @samp{gdb_fetch_registers}.
15527
15528@subsubheading Example
15529
15530For a PPC MBX board (note: line breaks are for readability only, they
15531don't appear in the actual output):
15532
15533@smallexample
15534(@value{GDBP})
15535-data-list-register-values r 64 65
15536^done,register-values=[@{number="64",value="0xfe00a300"@},
15537@{number="65",value="0x00029002"@}]
15538(@value{GDBP})
15539-data-list-register-values x
15540^done,register-values=[@{number="0",value="0xfe0043c8"@},
15541@{number="1",value="0x3fff88"@},@{number="2",value="0xfffffffe"@},
15542@{number="3",value="0x0"@},@{number="4",value="0xa"@},
15543@{number="5",value="0x3fff68"@},@{number="6",value="0x3fff58"@},
15544@{number="7",value="0xfe011e98"@},@{number="8",value="0x2"@},
15545@{number="9",value="0xfa202820"@},@{number="10",value="0xfa202808"@},
15546@{number="11",value="0x1"@},@{number="12",value="0x0"@},
15547@{number="13",value="0x4544"@},@{number="14",value="0xffdfffff"@},
15548@{number="15",value="0xffffffff"@},@{number="16",value="0xfffffeff"@},
15549@{number="17",value="0xefffffed"@},@{number="18",value="0xfffffffe"@},
15550@{number="19",value="0xffffffff"@},@{number="20",value="0xffffffff"@},
15551@{number="21",value="0xffffffff"@},@{number="22",value="0xfffffff7"@},
15552@{number="23",value="0xffffffff"@},@{number="24",value="0xffffffff"@},
15553@{number="25",value="0xffffffff"@},@{number="26",value="0xfffffffb"@},
15554@{number="27",value="0xffffffff"@},@{number="28",value="0xf7bfffff"@},
15555@{number="29",value="0x0"@},@{number="30",value="0xfe010000"@},
15556@{number="31",value="0x0"@},@{number="32",value="0x0"@},
15557@{number="33",value="0x0"@},@{number="34",value="0x0"@},
15558@{number="35",value="0x0"@},@{number="36",value="0x0"@},
15559@{number="37",value="0x0"@},@{number="38",value="0x0"@},
15560@{number="39",value="0x0"@},@{number="40",value="0x0"@},
15561@{number="41",value="0x0"@},@{number="42",value="0x0"@},
15562@{number="43",value="0x0"@},@{number="44",value="0x0"@},
15563@{number="45",value="0x0"@},@{number="46",value="0x0"@},
15564@{number="47",value="0x0"@},@{number="48",value="0x0"@},
15565@{number="49",value="0x0"@},@{number="50",value="0x0"@},
15566@{number="51",value="0x0"@},@{number="52",value="0x0"@},
15567@{number="53",value="0x0"@},@{number="54",value="0x0"@},
15568@{number="55",value="0x0"@},@{number="56",value="0x0"@},
15569@{number="57",value="0x0"@},@{number="58",value="0x0"@},
15570@{number="59",value="0x0"@},@{number="60",value="0x0"@},
15571@{number="61",value="0x0"@},@{number="62",value="0x0"@},
15572@{number="63",value="0x0"@},@{number="64",value="0xfe00a300"@},
15573@{number="65",value="0x29002"@},@{number="66",value="0x202f04b5"@},
15574@{number="67",value="0xfe0043b0"@},@{number="68",value="0xfe00b3e4"@},
15575@{number="69",value="0x20002b03"@}]
15576(@value{GDBP})
15577@end smallexample
15578
15579
15580@subheading The @code{-data-read-memory} Command
15581@findex -data-read-memory
15582
15583@subsubheading Synopsis
15584
15585@smallexample
15586 -data-read-memory [ -o @var{byte-offset} ]
15587 @var{address} @var{word-format} @var{word-size}
15588 @var{nr-rows} @var{nr-cols} [ @var{aschar} ]
15589@end smallexample
15590
15591@noindent
15592where:
15593
15594@table @samp
15595@item @var{address}
15596An expression specifying the address of the first memory word to be
15597read. Complex expressions containing embedded white space should be
15598quoted using the C convention.
15599
15600@item @var{word-format}
15601The format to be used to print the memory words. The notation is the
15602same as for @value{GDBN}'s @code{print} command (@pxref{Output Formats,
15603,Output formats}).
15604
15605@item @var{word-size}
15606The size of each memory word in bytes.
15607
15608@item @var{nr-rows}
15609The number of rows in the output table.
15610
15611@item @var{nr-cols}
15612The number of columns in the output table.
15613
15614@item @var{aschar}
15615If present, indicates that each row should include an @sc{ascii} dump. The
15616value of @var{aschar} is used as a padding character when a byte is not a
15617member of the printable @sc{ascii} character set (printable @sc{ascii}
15618characters are those whose code is between 32 and 126, inclusively).
15619
15620@item @var{byte-offset}
15621An offset to add to the @var{address} before fetching memory.
15622@end table
15623
15624This command displays memory contents as a table of @var{nr-rows} by
15625@var{nr-cols} words, each word being @var{word-size} bytes. In total,
15626@code{@var{nr-rows} * @var{nr-cols} * @var{word-size}} bytes are read
15627(returned as @samp{total-bytes}). Should less than the requested number
15628of bytes be returned by the target, the missing words are identified
15629using @samp{N/A}. The number of bytes read from the target is returned
15630in @samp{nr-bytes} and the starting address used to read memory in
15631@samp{addr}.
15632
15633The address of the next/previous row or page is available in
15634@samp{next-row} and @samp{prev-row}, @samp{next-page} and
15635@samp{prev-page}.
15636
15637@subsubheading @value{GDBN} Command
15638
15639The corresponding @value{GDBN} command is @samp{x}. @code{gdbtk} has
15640@samp{gdb_get_mem} memory read command.
15641
15642@subsubheading Example
15643
15644Read six bytes of memory starting at @code{bytes+6} but then offset by
15645@code{-6} bytes. Format as three rows of two columns. One byte per
15646word. Display each word in hex.
15647
15648@smallexample
15649(@value{GDBP})
156509-data-read-memory -o -6 -- bytes+6 x 1 3 2
156519^done,addr="0x00001390",nr-bytes="6",total-bytes="6",
15652next-row="0x00001396",prev-row="0x0000138e",next-page="0x00001396",
15653prev-page="0x0000138a",memory=[
15654@{addr="0x00001390",data=["0x00","0x01"]@},
15655@{addr="0x00001392",data=["0x02","0x03"]@},
15656@{addr="0x00001394",data=["0x04","0x05"]@}]
15657(@value{GDBP})
15658@end smallexample
15659
15660Read two bytes of memory starting at address @code{shorts + 64} and
15661display as a single word formatted in decimal.
15662
15663@smallexample
15664(@value{GDBP})
156655-data-read-memory shorts+64 d 2 1 1
156665^done,addr="0x00001510",nr-bytes="2",total-bytes="2",
15667next-row="0x00001512",prev-row="0x0000150e",
15668next-page="0x00001512",prev-page="0x0000150e",memory=[
15669@{addr="0x00001510",data=["128"]@}]
15670(@value{GDBP})
15671@end smallexample
15672
15673Read thirty two bytes of memory starting at @code{bytes+16} and format
15674as eight rows of four columns. Include a string encoding with @samp{x}
15675used as the non-printable character.
15676
15677@smallexample
15678(@value{GDBP})
156794-data-read-memory bytes+16 x 1 8 4 x
156804^done,addr="0x000013a0",nr-bytes="32",total-bytes="32",
15681next-row="0x000013c0",prev-row="0x0000139c",
15682next-page="0x000013c0",prev-page="0x00001380",memory=[
15683@{addr="0x000013a0",data=["0x10","0x11","0x12","0x13"],ascii="xxxx"@},
15684@{addr="0x000013a4",data=["0x14","0x15","0x16","0x17"],ascii="xxxx"@},
15685@{addr="0x000013a8",data=["0x18","0x19","0x1a","0x1b"],ascii="xxxx"@},
15686@{addr="0x000013ac",data=["0x1c","0x1d","0x1e","0x1f"],ascii="xxxx"@},
15687@{addr="0x000013b0",data=["0x20","0x21","0x22","0x23"],ascii=" !\"#"@},
15688@{addr="0x000013b4",data=["0x24","0x25","0x26","0x27"],ascii="$%&'"@},
15689@{addr="0x000013b8",data=["0x28","0x29","0x2a","0x2b"],ascii="()*+"@},
15690@{addr="0x000013bc",data=["0x2c","0x2d","0x2e","0x2f"],ascii=",-./"@}]
15691(@value{GDBP})
15692@end smallexample
15693
15694@subheading The @code{-display-delete} Command
15695@findex -display-delete
15696
15697@subsubheading Synopsis
15698
15699@smallexample
15700 -display-delete @var{number}
15701@end smallexample
15702
15703Delete the display @var{number}.
15704
15705@subsubheading @value{GDBN} Command
15706
15707The corresponding @value{GDBN} command is @samp{delete display}.
15708
15709@subsubheading Example
15710N.A.
15711
15712
15713@subheading The @code{-display-disable} Command
15714@findex -display-disable
15715
15716@subsubheading Synopsis
15717
15718@smallexample
15719 -display-disable @var{number}
15720@end smallexample
15721
15722Disable display @var{number}.
15723
15724@subsubheading @value{GDBN} Command
15725
15726The corresponding @value{GDBN} command is @samp{disable display}.
15727
15728@subsubheading Example
15729N.A.
15730
15731
15732@subheading The @code{-display-enable} Command
15733@findex -display-enable
15734
15735@subsubheading Synopsis
15736
15737@smallexample
15738 -display-enable @var{number}
15739@end smallexample
15740
15741Enable display @var{number}.
15742
15743@subsubheading @value{GDBN} Command
15744
15745The corresponding @value{GDBN} command is @samp{enable display}.
15746
15747@subsubheading Example
15748N.A.
15749
15750
15751@subheading The @code{-display-insert} Command
15752@findex -display-insert
15753
15754@subsubheading Synopsis
15755
15756@smallexample
15757 -display-insert @var{expression}
15758@end smallexample
15759
15760Display @var{expression} every time the program stops.
15761
15762@subsubheading @value{GDBN} Command
15763
15764The corresponding @value{GDBN} command is @samp{display}.
15765
15766@subsubheading Example
15767N.A.
15768
15769
15770@subheading The @code{-display-list} Command
15771@findex -display-list
15772
15773@subsubheading Synopsis
15774
15775@smallexample
15776 -display-list
15777@end smallexample
15778
15779List the displays. Do not show the current values.
15780
15781@subsubheading @value{GDBN} Command
15782
15783The corresponding @value{GDBN} command is @samp{info display}.
15784
15785@subsubheading Example
15786N.A.
15787
15788
15789@subheading The @code{-environment-cd} Command
15790@findex -environment-cd
15791
15792@subsubheading Synopsis
15793
15794@smallexample
15795 -environment-cd @var{pathdir}
15796@end smallexample
15797
15798Set @value{GDBN}'s working directory.
15799
15800@subsubheading @value{GDBN} Command
15801
15802The corresponding @value{GDBN} command is @samp{cd}.
15803
15804@subsubheading Example
15805
15806@smallexample
15807(@value{GDBP})
15808-environment-cd /kwikemart/marge/ezannoni/flathead-dev/devo/gdb
15809^done
15810(@value{GDBP})
15811@end smallexample
15812
15813
15814@subheading The @code{-environment-directory} Command
15815@findex -environment-directory
15816
15817@subsubheading Synopsis
15818
15819@smallexample
15820 -environment-directory [ -r ] [ @var{pathdir} ]+
15821@end smallexample
15822
15823Add directories @var{pathdir} to beginning of search path for source files.
15824If the @samp{-r} option is used, the search path is reset to the default
15825search path. If directories @var{pathdir} are supplied in addition to the
15826@samp{-r} option, the search path is first reset and then addition
15827occurs as normal.
15828Multiple directories may be specified, separated by blanks. Specifying
15829multiple directories in a single command
15830results in the directories added to the beginning of the
15831search path in the same order they were presented in the command.
15832If blanks are needed as
15833part of a directory name, double-quotes should be used around
15834the name. In the command output, the path will show up separated
15835by the system directory-separator character. The directory-seperator
15836character must not be used
15837in any directory name.
15838If no directories are specified, the current search path is displayed.
15839
15840@subsubheading @value{GDBN} Command
15841
15842The corresponding @value{GDBN} command is @samp{dir}.
15843
15844@subsubheading Example
15845
15846@smallexample
15847(@value{GDBP})
15848-environment-directory /kwikemart/marge/ezannoni/flathead-dev/devo/gdb
15849^done,source-path="/kwikemart/marge/ezannoni/flathead-dev/devo/gdb:$cdir:$cwd"
15850(@value{GDBP})
15851-environment-directory ""
15852^done,source-path="/kwikemart/marge/ezannoni/flathead-dev/devo/gdb:$cdir:$cwd"
15853(@value{GDBP})
15854-environment-directory -r /home/jjohnstn/src/gdb /usr/src
15855^done,source-path="/home/jjohnstn/src/gdb:/usr/src:$cdir:$cwd"
15856(@value{GDBP})
15857-environment-directory -r
15858^done,source-path="$cdir:$cwd"
15859(@value{GDBP})
15860@end smallexample
15861
15862
15863@subheading The @code{-environment-path} Command
15864@findex -environment-path
15865
15866@subsubheading Synopsis
15867
15868@smallexample
15869 -environment-path [ -r ] [ @var{pathdir} ]+
15870@end smallexample
15871
15872Add directories @var{pathdir} to beginning of search path for object files.
15873If the @samp{-r} option is used, the search path is reset to the original
15874search path that existed at gdb start-up. If directories @var{pathdir} are
15875supplied in addition to the
15876@samp{-r} option, the search path is first reset and then addition
15877occurs as normal.
15878Multiple directories may be specified, separated by blanks. Specifying
15879multiple directories in a single command
15880results in the directories added to the beginning of the
15881search path in the same order they were presented in the command.
15882If blanks are needed as
15883part of a directory name, double-quotes should be used around
15884the name. In the command output, the path will show up separated
15885by the system directory-separator character. The directory-seperator
15886character must not be used
15887in any directory name.
15888If no directories are specified, the current path is displayed.
15889
15890
15891@subsubheading @value{GDBN} Command
15892
15893The corresponding @value{GDBN} command is @samp{path}.
15894
15895@subsubheading Example
15896
15897@smallexample
15898(@value{GDBP})
15899-environment-path
15900^done,path="/usr/bin"
15901(@value{GDBP})
15902-environment-path /kwikemart/marge/ezannoni/flathead-dev/ppc-eabi/gdb /bin
15903^done,path="/kwikemart/marge/ezannoni/flathead-dev/ppc-eabi/gdb:/bin:/usr/bin"
15904(@value{GDBP})
15905-environment-path -r /usr/local/bin
15906^done,path="/usr/local/bin:/usr/bin"
15907(@value{GDBP})
15908@end smallexample
15909
15910
15911@subheading The @code{-environment-pwd} Command
15912@findex -environment-pwd
15913
15914@subsubheading Synopsis
15915
15916@smallexample
15917 -environment-pwd
15918@end smallexample
15919
15920Show the current working directory.
15921
15922@subsubheading @value{GDBN} command
15923
15924The corresponding @value{GDBN} command is @samp{pwd}.
15925
15926@subsubheading Example
15927
15928@smallexample
15929(@value{GDBP})
15930-environment-pwd
15931^done,cwd="/kwikemart/marge/ezannoni/flathead-dev/devo/gdb"
15932(@value{GDBP})
15933@end smallexample
15934
15935@c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
15936@node GDB/MI Program Control
15937@section @sc{gdb/mi} Program control
15938
15939@subsubheading Program termination
15940
15941As a result of execution, the inferior program can run to completion, if
15942it doesn't encounter any breakpoints. In this case the output will
15943include an exit code, if the program has exited exceptionally.
15944
15945@subsubheading Examples
15946
15947@noindent
15948Program exited normally:
15949
15950@smallexample
15951(@value{GDBP})
15952-exec-run
15953^running
15954(@value{GDBP})
15955x = 55
15956*stopped,reason="exited-normally"
15957(@value{GDBP})
15958@end smallexample
15959
15960@noindent
15961Program exited exceptionally:
15962
15963@smallexample
15964(@value{GDBP})
15965-exec-run
15966^running
15967(@value{GDBP})
15968x = 55
15969*stopped,reason="exited",exit-code="01"
15970(@value{GDBP})
15971@end smallexample
15972
15973Another way the program can terminate is if it receives a signal such as
15974@code{SIGINT}. In this case, @sc{gdb/mi} displays this:
15975
15976@smallexample
15977(@value{GDBP})
15978*stopped,reason="exited-signalled",signal-name="SIGINT",
15979signal-meaning="Interrupt"
15980@end smallexample
15981
15982
15983@subheading The @code{-exec-abort} Command
15984@findex -exec-abort
15985
15986@subsubheading Synopsis
15987
15988@smallexample
15989 -exec-abort
15990@end smallexample
15991
15992Kill the inferior running program.
15993
15994@subsubheading @value{GDBN} Command
15995
15996The corresponding @value{GDBN} command is @samp{kill}.
15997
15998@subsubheading Example
15999N.A.
16000
16001
16002@subheading The @code{-exec-arguments} Command
16003@findex -exec-arguments
16004
16005@subsubheading Synopsis
16006
16007@smallexample
16008 -exec-arguments @var{args}
16009@end smallexample
16010
16011Set the inferior program arguments, to be used in the next
16012@samp{-exec-run}.
16013
16014@subsubheading @value{GDBN} Command
16015
16016The corresponding @value{GDBN} command is @samp{set args}.
16017
16018@subsubheading Example
16019
16020@c FIXME!
16021Don't have one around.
16022
16023
16024@subheading The @code{-exec-continue} Command
16025@findex -exec-continue
16026
16027@subsubheading Synopsis
16028
16029@smallexample
16030 -exec-continue
16031@end smallexample
16032
16033Asynchronous command. Resumes the execution of the inferior program
16034until a breakpoint is encountered, or until the inferior exits.
16035
16036@subsubheading @value{GDBN} Command
16037
16038The corresponding @value{GDBN} corresponding is @samp{continue}.
16039
16040@subsubheading Example
16041
16042@smallexample
16043-exec-continue
16044^running
16045(@value{GDBP})
16046@@Hello world
16047*stopped,reason="breakpoint-hit",bkptno="2",frame=@{func="foo",args=[],
16048file="hello.c",line="13"@}
16049(@value{GDBP})
16050@end smallexample
16051
16052
16053@subheading The @code{-exec-finish} Command
16054@findex -exec-finish
16055
16056@subsubheading Synopsis
16057
16058@smallexample
16059 -exec-finish
16060@end smallexample
16061
16062Asynchronous command. Resumes the execution of the inferior program
16063until the current function is exited. Displays the results returned by
16064the function.
16065
16066@subsubheading @value{GDBN} Command
16067
16068The corresponding @value{GDBN} command is @samp{finish}.
16069
16070@subsubheading Example
16071
16072Function returning @code{void}.
16073
16074@smallexample
16075-exec-finish
16076^running
16077(@value{GDBP})
16078@@hello from foo
16079*stopped,reason="function-finished",frame=@{func="main",args=[],
16080file="hello.c",line="7"@}
16081(@value{GDBP})
16082@end smallexample
16083
16084Function returning other than @code{void}. The name of the internal
16085@value{GDBN} variable storing the result is printed, together with the
16086value itself.
16087
16088@smallexample
16089-exec-finish
16090^running
16091(@value{GDBP})
16092*stopped,reason="function-finished",frame=@{addr="0x000107b0",func="foo",
16093args=[@{name="a",value="1"],@{name="b",value="9"@}@},
16094file="recursive2.c",line="14"@},
16095gdb-result-var="$1",return-value="0"
16096(@value{GDBP})
16097@end smallexample
16098
16099
16100@subheading The @code{-exec-interrupt} Command
16101@findex -exec-interrupt
16102
16103@subsubheading Synopsis
16104
16105@smallexample
16106 -exec-interrupt
16107@end smallexample
16108
16109Asynchronous command. Interrupts the background execution of the target.
16110Note how the token associated with the stop message is the one for the
16111execution command that has been interrupted. The token for the interrupt
16112itself only appears in the @samp{^done} output. If the user is trying to
16113interrupt a non-running program, an error message will be printed.
16114
16115@subsubheading @value{GDBN} Command
16116
16117The corresponding @value{GDBN} command is @samp{interrupt}.
16118
16119@subsubheading Example
16120
16121@smallexample
16122(@value{GDBP})
16123111-exec-continue
16124111^running
16125
16126(@value{GDBP})
16127222-exec-interrupt
16128222^done
16129(@value{GDBP})
16130111*stopped,signal-name="SIGINT",signal-meaning="Interrupt",
16131frame=@{addr="0x00010140",func="foo",args=[],file="try.c",line="13"@}
16132(@value{GDBP})
16133
16134(@value{GDBP})
16135-exec-interrupt
16136^error,msg="mi_cmd_exec_interrupt: Inferior not executing."
16137(@value{GDBP})
16138@end smallexample
16139
16140
16141@subheading The @code{-exec-next} Command
16142@findex -exec-next
16143
16144@subsubheading Synopsis
16145
16146@smallexample
16147 -exec-next
16148@end smallexample
16149
16150Asynchronous command. Resumes execution of the inferior program, stopping
16151when the beginning of the next source line is reached.
16152
16153@subsubheading @value{GDBN} Command
16154
16155The corresponding @value{GDBN} command is @samp{next}.
16156
16157@subsubheading Example
16158
16159@smallexample
16160-exec-next
16161^running
16162(@value{GDBP})
16163*stopped,reason="end-stepping-range",line="8",file="hello.c"
16164(@value{GDBP})
16165@end smallexample
16166
16167
16168@subheading The @code{-exec-next-instruction} Command
16169@findex -exec-next-instruction
16170
16171@subsubheading Synopsis
16172
16173@smallexample
16174 -exec-next-instruction
16175@end smallexample
16176
16177Asynchronous command. Executes one machine instruction. If the
16178instruction is a function call continues until the function returns. If
16179the program stops at an instruction in the middle of a source line, the
16180address will be printed as well.
16181
16182@subsubheading @value{GDBN} Command
16183
16184The corresponding @value{GDBN} command is @samp{nexti}.
16185
16186@subsubheading Example
16187
16188@smallexample
16189(@value{GDBP})
16190-exec-next-instruction
16191^running
16192
16193(@value{GDBP})
16194*stopped,reason="end-stepping-range",
16195addr="0x000100d4",line="5",file="hello.c"
16196(@value{GDBP})
16197@end smallexample
16198
16199
16200@subheading The @code{-exec-return} Command
16201@findex -exec-return
16202
16203@subsubheading Synopsis
16204
16205@smallexample
16206 -exec-return
16207@end smallexample
16208
16209Makes current function return immediately. Doesn't execute the inferior.
16210Displays the new current frame.
16211
16212@subsubheading @value{GDBN} Command
16213
16214The corresponding @value{GDBN} command is @samp{return}.
16215
16216@subsubheading Example
16217
16218@smallexample
16219(@value{GDBP})
16220200-break-insert callee4
16221200^done,bkpt=@{number="1",addr="0x00010734",
16222file="../../../devo/gdb/testsuite/gdb.mi/basics.c",line="8"@}
16223(@value{GDBP})
16224000-exec-run
16225000^running
16226(@value{GDBP})
16227000*stopped,reason="breakpoint-hit",bkptno="1",
16228frame=@{func="callee4",args=[],
16229file="../../../devo/gdb/testsuite/gdb.mi/basics.c",line="8"@}
16230(@value{GDBP})
16231205-break-delete
16232205^done
16233(@value{GDBP})
16234111-exec-return
16235111^done,frame=@{level="0",func="callee3",
16236args=[@{name="strarg",
16237value="0x11940 \"A string argument.\""@}],
16238file="../../../devo/gdb/testsuite/gdb.mi/basics.c",line="18"@}
16239(@value{GDBP})
16240@end smallexample
16241
16242
16243@subheading The @code{-exec-run} Command
16244@findex -exec-run
16245
16246@subsubheading Synopsis
16247
16248@smallexample
16249 -exec-run
16250@end smallexample
16251
16252Asynchronous command. Starts execution of the inferior from the
16253beginning. The inferior executes until either a breakpoint is
16254encountered or the program exits.
16255
16256@subsubheading @value{GDBN} Command
16257
16258The corresponding @value{GDBN} command is @samp{run}.
16259
16260@subsubheading Example
16261
16262@smallexample
16263(@value{GDBP})
16264-break-insert main
16265^done,bkpt=@{number="1",addr="0x0001072c",file="recursive2.c",line="4"@}
16266(@value{GDBP})
16267-exec-run
16268^running
16269(@value{GDBP})
16270*stopped,reason="breakpoint-hit",bkptno="1",
16271frame=@{func="main",args=[],file="recursive2.c",line="4"@}
16272(@value{GDBP})
16273@end smallexample
16274
16275
16276@subheading The @code{-exec-show-arguments} Command
16277@findex -exec-show-arguments
16278
16279@subsubheading Synopsis
16280
16281@smallexample
16282 -exec-show-arguments
16283@end smallexample
16284
16285Print the arguments of the program.
16286
16287@subsubheading @value{GDBN} Command
16288
16289The corresponding @value{GDBN} command is @samp{show args}.
16290
16291@subsubheading Example
16292N.A.
16293
16294@c @subheading -exec-signal
16295
16296@subheading The @code{-exec-step} Command
16297@findex -exec-step
16298
16299@subsubheading Synopsis
16300
16301@smallexample
16302 -exec-step
16303@end smallexample
16304
16305Asynchronous command. Resumes execution of the inferior program, stopping
16306when the beginning of the next source line is reached, if the next
16307source line is not a function call. If it is, stop at the first
16308instruction of the called function.
16309
16310@subsubheading @value{GDBN} Command
16311
16312The corresponding @value{GDBN} command is @samp{step}.
16313
16314@subsubheading Example
16315
16316Stepping into a function:
16317
16318@smallexample
16319-exec-step
16320^running
16321(@value{GDBP})
16322*stopped,reason="end-stepping-range",
16323frame=@{func="foo",args=[@{name="a",value="10"@},
16324@{name="b",value="0"@}],file="recursive2.c",line="11"@}
16325(@value{GDBP})
16326@end smallexample
16327
16328Regular stepping:
16329
16330@smallexample
16331-exec-step
16332^running
16333(@value{GDBP})
16334*stopped,reason="end-stepping-range",line="14",file="recursive2.c"
16335(@value{GDBP})
16336@end smallexample
16337
16338
16339@subheading The @code{-exec-step-instruction} Command
16340@findex -exec-step-instruction
16341
16342@subsubheading Synopsis
16343
16344@smallexample
16345 -exec-step-instruction
16346@end smallexample
16347
16348Asynchronous command. Resumes the inferior which executes one machine
16349instruction. The output, once @value{GDBN} has stopped, will vary depending on
16350whether we have stopped in the middle of a source line or not. In the
16351former case, the address at which the program stopped will be printed as
16352well.
16353
16354@subsubheading @value{GDBN} Command
16355
16356The corresponding @value{GDBN} command is @samp{stepi}.
16357
16358@subsubheading Example
16359
16360@smallexample
16361(@value{GDBP})
16362-exec-step-instruction
16363^running
16364
16365(@value{GDBP})
16366*stopped,reason="end-stepping-range",
16367frame=@{func="foo",args=[],file="try.c",line="10"@}
16368(@value{GDBP})
16369-exec-step-instruction
16370^running
16371
16372(@value{GDBP})
16373*stopped,reason="end-stepping-range",
16374frame=@{addr="0x000100f4",func="foo",args=[],file="try.c",line="10"@}
16375(@value{GDBP})
16376@end smallexample
16377
16378
16379@subheading The @code{-exec-until} Command
16380@findex -exec-until
16381
16382@subsubheading Synopsis
16383
16384@smallexample
16385 -exec-until [ @var{location} ]
16386@end smallexample
16387
16388Asynchronous command. Executes the inferior until the @var{location}
16389specified in the argument is reached. If there is no argument, the inferior
16390executes until a source line greater than the current one is reached.
16391The reason for stopping in this case will be @samp{location-reached}.
16392
16393@subsubheading @value{GDBN} Command
16394
16395The corresponding @value{GDBN} command is @samp{until}.
16396
16397@subsubheading Example
16398
16399@smallexample
16400(@value{GDBP})
16401-exec-until recursive2.c:6
16402^running
16403(@value{GDBP})
16404x = 55
16405*stopped,reason="location-reached",frame=@{func="main",args=[],
16406file="recursive2.c",line="6"@}
16407(@value{GDBP})
16408@end smallexample
16409
16410@ignore
16411@subheading -file-clear
16412Is this going away????
16413@end ignore
16414
16415
16416@subheading The @code{-file-exec-and-symbols} Command
16417@findex -file-exec-and-symbols
16418
16419@subsubheading Synopsis
16420
16421@smallexample
16422 -file-exec-and-symbols @var{file}
16423@end smallexample
16424
16425Specify the executable file to be debugged. This file is the one from
16426which the symbol table is also read. If no file is specified, the
16427command clears the executable and symbol information. If breakpoints
16428are set when using this command with no arguments, @value{GDBN} will produce
16429error messages. Otherwise, no output is produced, except a completion
16430notification.
16431
16432@subsubheading @value{GDBN} Command
16433
16434The corresponding @value{GDBN} command is @samp{file}.
16435
16436@subsubheading Example
16437
16438@smallexample
16439(@value{GDBP})
16440-file-exec-and-symbols /kwikemart/marge/ezannoni/TRUNK/mbx/hello.mbx
16441^done
16442(@value{GDBP})
16443@end smallexample
16444
16445
16446@subheading The @code{-file-exec-file} Command
16447@findex -file-exec-file
16448
16449@subsubheading Synopsis
16450
16451@smallexample
16452 -file-exec-file @var{file}
16453@end smallexample
16454
16455Specify the executable file to be debugged. Unlike
16456@samp{-file-exec-and-symbols}, the symbol table is @emph{not} read
16457from this file. If used without argument, @value{GDBN} clears the information
16458about the executable file. No output is produced, except a completion
16459notification.
16460
16461@subsubheading @value{GDBN} Command
16462
16463The corresponding @value{GDBN} command is @samp{exec-file}.
16464
16465@subsubheading Example
16466
16467@smallexample
16468(@value{GDBP})
16469-file-exec-file /kwikemart/marge/ezannoni/TRUNK/mbx/hello.mbx
16470^done
16471(@value{GDBP})
16472@end smallexample
16473
16474
16475@subheading The @code{-file-list-exec-sections} Command
16476@findex -file-list-exec-sections
16477
16478@subsubheading Synopsis
16479
16480@smallexample
16481 -file-list-exec-sections
16482@end smallexample
16483
16484List the sections of the current executable file.
16485
16486@subsubheading @value{GDBN} Command
16487
16488The @value{GDBN} command @samp{info file} shows, among the rest, the same
16489information as this command. @code{gdbtk} has a corresponding command
16490@samp{gdb_load_info}.
16491
16492@subsubheading Example
16493N.A.
16494
16495
1abaf70c
BR
16496@subheading The @code{-file-list-exec-source-file} Command
16497@findex -file-list-exec-source-file
16498
16499@subsubheading Synopsis
16500
16501@smallexample
16502 -file-list-exec-source-file
16503@end smallexample
16504
16505List the line number, the current source file, and the absolute path
16506to the current source file for the current executable.
16507
16508@subsubheading @value{GDBN} Command
16509
16510There's no @value{GDBN} command which directly corresponds to this one.
16511
16512@subsubheading Example
16513
16514@smallexample
16515(@value{GDBP})
16516123-file-list-exec-source-file
16517123^done,line="1",file="foo.c",fullname="/home/bar/foo.c"
16518(@value{GDBP})
16519@end smallexample
16520
16521
922fbb7b
AC
16522@subheading The @code{-file-list-exec-source-files} Command
16523@findex -file-list-exec-source-files
16524
16525@subsubheading Synopsis
16526
16527@smallexample
16528 -file-list-exec-source-files
16529@end smallexample
16530
16531List the source files for the current executable.
16532
16533@subsubheading @value{GDBN} Command
16534
16535There's no @value{GDBN} command which directly corresponds to this one.
16536@code{gdbtk} has an analogous command @samp{gdb_listfiles}.
16537
16538@subsubheading Example
16539N.A.
16540
16541
16542@subheading The @code{-file-list-shared-libraries} Command
16543@findex -file-list-shared-libraries
16544
16545@subsubheading Synopsis
16546
16547@smallexample
16548 -file-list-shared-libraries
16549@end smallexample
16550
16551List the shared libraries in the program.
16552
16553@subsubheading @value{GDBN} Command
16554
16555The corresponding @value{GDBN} command is @samp{info shared}.
16556
16557@subsubheading Example
16558N.A.
16559
16560
16561@subheading The @code{-file-list-symbol-files} Command
16562@findex -file-list-symbol-files
16563
16564@subsubheading Synopsis
16565
16566@smallexample
16567 -file-list-symbol-files
16568@end smallexample
16569
16570List symbol files.
16571
16572@subsubheading @value{GDBN} Command
16573
16574The corresponding @value{GDBN} command is @samp{info file} (part of it).
16575
16576@subsubheading Example
16577N.A.
16578
16579
16580@subheading The @code{-file-symbol-file} Command
16581@findex -file-symbol-file
16582
16583@subsubheading Synopsis
16584
16585@smallexample
16586 -file-symbol-file @var{file}
16587@end smallexample
16588
16589Read symbol table info from the specified @var{file} argument. When
16590used without arguments, clears @value{GDBN}'s symbol table info. No output is
16591produced, except for a completion notification.
16592
16593@subsubheading @value{GDBN} Command
16594
16595The corresponding @value{GDBN} command is @samp{symbol-file}.
16596
16597@subsubheading Example
16598
16599@smallexample
16600(@value{GDBP})
16601-file-symbol-file /kwikemart/marge/ezannoni/TRUNK/mbx/hello.mbx
16602^done
16603(@value{GDBP})
16604@end smallexample
16605
16606@c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
16607@node GDB/MI Miscellaneous Commands
16608@section Miscellaneous @value{GDBN} commands in @sc{gdb/mi}
16609
16610@c @subheading -gdb-complete
16611
16612@subheading The @code{-gdb-exit} Command
16613@findex -gdb-exit
16614
16615@subsubheading Synopsis
16616
16617@smallexample
16618 -gdb-exit
16619@end smallexample
16620
16621Exit @value{GDBN} immediately.
16622
16623@subsubheading @value{GDBN} Command
16624
16625Approximately corresponds to @samp{quit}.
16626
16627@subsubheading Example
16628
16629@smallexample
16630(@value{GDBP})
16631-gdb-exit
16632@end smallexample
16633
16634@subheading The @code{-gdb-set} Command
16635@findex -gdb-set
16636
16637@subsubheading Synopsis
16638
16639@smallexample
16640 -gdb-set
16641@end smallexample
16642
16643Set an internal @value{GDBN} variable.
16644@c IS THIS A DOLLAR VARIABLE? OR SOMETHING LIKE ANNOTATE ?????
16645
16646@subsubheading @value{GDBN} Command
16647
16648The corresponding @value{GDBN} command is @samp{set}.
16649
16650@subsubheading Example
16651
16652@smallexample
16653(@value{GDBP})
16654-gdb-set $foo=3
16655^done
16656(@value{GDBP})
16657@end smallexample
16658
16659
16660@subheading The @code{-gdb-show} Command
16661@findex -gdb-show
16662
16663@subsubheading Synopsis
16664
16665@smallexample
16666 -gdb-show
16667@end smallexample
16668
16669Show the current value of a @value{GDBN} variable.
16670
16671@subsubheading @value{GDBN} command
16672
16673The corresponding @value{GDBN} command is @samp{show}.
16674
16675@subsubheading Example
16676
16677@smallexample
16678(@value{GDBP})
16679-gdb-show annotate
16680^done,value="0"
16681(@value{GDBP})
16682@end smallexample
16683
16684@c @subheading -gdb-source
16685
16686
16687@subheading The @code{-gdb-version} Command
16688@findex -gdb-version
16689
16690@subsubheading Synopsis
16691
16692@smallexample
16693 -gdb-version
16694@end smallexample
16695
16696Show version information for @value{GDBN}. Used mostly in testing.
16697
16698@subsubheading @value{GDBN} Command
16699
16700There's no equivalent @value{GDBN} command. @value{GDBN} by default shows this
16701information when you start an interactive session.
16702
16703@subsubheading Example
16704
16705@c This example modifies the actual output from GDB to avoid overfull
16706@c box in TeX.
16707@smallexample
16708(@value{GDBP})
16709-gdb-version
16710~GNU gdb 5.2.1
16711~Copyright 2000 Free Software Foundation, Inc.
16712~GDB is free software, covered by the GNU General Public License, and
16713~you are welcome to change it and/or distribute copies of it under
16714~ certain conditions.
16715~Type "show copying" to see the conditions.
16716~There is absolutely no warranty for GDB. Type "show warranty" for
16717~ details.
16718~This GDB was configured as
16719 "--host=sparc-sun-solaris2.5.1 --target=ppc-eabi".
16720^done
16721(@value{GDBP})
16722@end smallexample
16723
16724@subheading The @code{-interpreter-exec} Command
16725@findex -interpreter-exec
16726
16727@subheading Synopsis
16728
16729@smallexample
16730-interpreter-exec @var{interpreter} @var{command}
16731@end smallexample
16732
16733Execute the specified @var{command} in the given @var{interpreter}.
16734
16735@subheading @value{GDBN} Command
16736
16737The corresponding @value{GDBN} command is @samp{interpreter-exec}.
16738
16739@subheading Example
16740
16741@smallexample
16742(@value{GDBP})
16743-interpreter-exec console "break main"
16744&"During symbol reading, couldn't parse type; debugger out of date?.\n"
16745&"During symbol reading, bad structure-type format.\n"
16746~"Breakpoint 1 at 0x8074fc6: file ../../src/gdb/main.c, line 743.\n"
16747^done
16748(@value{GDBP})
16749@end smallexample
16750
16751@ignore
16752@c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
16753@node GDB/MI Kod Commands
16754@section @sc{gdb/mi} Kod Commands
16755
16756The Kod commands are not implemented.
16757
16758@c @subheading -kod-info
16759
16760@c @subheading -kod-list
16761
16762@c @subheading -kod-list-object-types
16763
16764@c @subheading -kod-show
16765
16766@c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
16767@node GDB/MI Memory Overlay Commands
16768@section @sc{gdb/mi} Memory Overlay Commands
16769
16770The memory overlay commands are not implemented.
16771
16772@c @subheading -overlay-auto
16773
16774@c @subheading -overlay-list-mapping-state
16775
16776@c @subheading -overlay-list-overlays
16777
16778@c @subheading -overlay-map
16779
16780@c @subheading -overlay-off
16781
16782@c @subheading -overlay-on
16783
16784@c @subheading -overlay-unmap
16785
16786@c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
16787@node GDB/MI Signal Handling Commands
16788@section @sc{gdb/mi} Signal Handling Commands
16789
16790Signal handling commands are not implemented.
16791
16792@c @subheading -signal-handle
16793
16794@c @subheading -signal-list-handle-actions
16795
16796@c @subheading -signal-list-signal-types
16797@end ignore
16798
16799
16800@c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
16801@node GDB/MI Stack Manipulation
16802@section @sc{gdb/mi} Stack Manipulation Commands
16803
16804
16805@subheading The @code{-stack-info-frame} Command
16806@findex -stack-info-frame
16807
16808@subsubheading Synopsis
16809
16810@smallexample
16811 -stack-info-frame
16812@end smallexample
16813
16814Get info on the current frame.
16815
16816@subsubheading @value{GDBN} Command
16817
16818The corresponding @value{GDBN} command is @samp{info frame} or @samp{frame}
16819(without arguments).
16820
16821@subsubheading Example
16822N.A.
16823
16824@subheading The @code{-stack-info-depth} Command
16825@findex -stack-info-depth
16826
16827@subsubheading Synopsis
16828
16829@smallexample
16830 -stack-info-depth [ @var{max-depth} ]
16831@end smallexample
16832
16833Return the depth of the stack. If the integer argument @var{max-depth}
16834is specified, do not count beyond @var{max-depth} frames.
16835
16836@subsubheading @value{GDBN} Command
16837
16838There's no equivalent @value{GDBN} command.
16839
16840@subsubheading Example
16841
16842For a stack with frame levels 0 through 11:
16843
16844@smallexample
16845(@value{GDBP})
16846-stack-info-depth
16847^done,depth="12"
16848(@value{GDBP})
16849-stack-info-depth 4
16850^done,depth="4"
16851(@value{GDBP})
16852-stack-info-depth 12
16853^done,depth="12"
16854(@value{GDBP})
16855-stack-info-depth 11
16856^done,depth="11"
16857(@value{GDBP})
16858-stack-info-depth 13
16859^done,depth="12"
16860(@value{GDBP})
16861@end smallexample
16862
16863@subheading The @code{-stack-list-arguments} Command
16864@findex -stack-list-arguments
16865
16866@subsubheading Synopsis
16867
16868@smallexample
16869 -stack-list-arguments @var{show-values}
16870 [ @var{low-frame} @var{high-frame} ]
16871@end smallexample
16872
16873Display a list of the arguments for the frames between @var{low-frame}
16874and @var{high-frame} (inclusive). If @var{low-frame} and
16875@var{high-frame} are not provided, list the arguments for the whole call
16876stack.
16877
16878The @var{show-values} argument must have a value of 0 or 1. A value of
168790 means that only the names of the arguments are listed, a value of 1
16880means that both names and values of the arguments are printed.
16881
16882@subsubheading @value{GDBN} Command
16883
16884@value{GDBN} does not have an equivalent command. @code{gdbtk} has a
16885@samp{gdb_get_args} command which partially overlaps with the
16886functionality of @samp{-stack-list-arguments}.
16887
16888@subsubheading Example
16889
16890@smallexample
16891(@value{GDBP})
16892-stack-list-frames
16893^done,
16894stack=[
16895frame=@{level="0",addr="0x00010734",func="callee4",
16896file="../../../devo/gdb/testsuite/gdb.mi/basics.c",line="8"@},
16897frame=@{level="1",addr="0x0001076c",func="callee3",
16898file="../../../devo/gdb/testsuite/gdb.mi/basics.c",line="17"@},
16899frame=@{level="2",addr="0x0001078c",func="callee2",
16900file="../../../devo/gdb/testsuite/gdb.mi/basics.c",line="22"@},
16901frame=@{level="3",addr="0x000107b4",func="callee1",
16902file="../../../devo/gdb/testsuite/gdb.mi/basics.c",line="27"@},
16903frame=@{level="4",addr="0x000107e0",func="main",
16904file="../../../devo/gdb/testsuite/gdb.mi/basics.c",line="32"@}]
16905(@value{GDBP})
16906-stack-list-arguments 0
16907^done,
16908stack-args=[
16909frame=@{level="0",args=[]@},
16910frame=@{level="1",args=[name="strarg"]@},
16911frame=@{level="2",args=[name="intarg",name="strarg"]@},
16912frame=@{level="3",args=[name="intarg",name="strarg",name="fltarg"]@},
16913frame=@{level="4",args=[]@}]
16914(@value{GDBP})
16915-stack-list-arguments 1
16916^done,
16917stack-args=[
16918frame=@{level="0",args=[]@},
16919frame=@{level="1",
16920 args=[@{name="strarg",value="0x11940 \"A string argument.\""@}]@},
16921frame=@{level="2",args=[
16922@{name="intarg",value="2"@},
16923@{name="strarg",value="0x11940 \"A string argument.\""@}]@},
16924@{frame=@{level="3",args=[
16925@{name="intarg",value="2"@},
16926@{name="strarg",value="0x11940 \"A string argument.\""@},
16927@{name="fltarg",value="3.5"@}]@},
16928frame=@{level="4",args=[]@}]
16929(@value{GDBP})
16930-stack-list-arguments 0 2 2
16931^done,stack-args=[frame=@{level="2",args=[name="intarg",name="strarg"]@}]
16932(@value{GDBP})
16933-stack-list-arguments 1 2 2
16934^done,stack-args=[frame=@{level="2",
16935args=[@{name="intarg",value="2"@},
16936@{name="strarg",value="0x11940 \"A string argument.\""@}]@}]
16937(@value{GDBP})
16938@end smallexample
16939
16940@c @subheading -stack-list-exception-handlers
16941
16942
16943@subheading The @code{-stack-list-frames} Command
16944@findex -stack-list-frames
16945
16946@subsubheading Synopsis
16947
16948@smallexample
16949 -stack-list-frames [ @var{low-frame} @var{high-frame} ]
16950@end smallexample
16951
16952List the frames currently on the stack. For each frame it displays the
16953following info:
16954
16955@table @samp
16956@item @var{level}
16957The frame number, 0 being the topmost frame, i.e. the innermost function.
16958@item @var{addr}
16959The @code{$pc} value for that frame.
16960@item @var{func}
16961Function name.
16962@item @var{file}
16963File name of the source file where the function lives.
16964@item @var{line}
16965Line number corresponding to the @code{$pc}.
16966@end table
16967
16968If invoked without arguments, this command prints a backtrace for the
16969whole stack. If given two integer arguments, it shows the frames whose
16970levels are between the two arguments (inclusive). If the two arguments
16971are equal, it shows the single frame at the corresponding level.
16972
16973@subsubheading @value{GDBN} Command
16974
16975The corresponding @value{GDBN} commands are @samp{backtrace} and @samp{where}.
16976
16977@subsubheading Example
16978
16979Full stack backtrace:
16980
16981@smallexample
16982(@value{GDBP})
16983-stack-list-frames
16984^done,stack=
16985[frame=@{level="0",addr="0x0001076c",func="foo",
16986 file="recursive2.c",line="11"@},
16987frame=@{level="1",addr="0x000107a4",func="foo",
16988 file="recursive2.c",line="14"@},
16989frame=@{level="2",addr="0x000107a4",func="foo",
16990 file="recursive2.c",line="14"@},
16991frame=@{level="3",addr="0x000107a4",func="foo",
16992 file="recursive2.c",line="14"@},
16993frame=@{level="4",addr="0x000107a4",func="foo",
16994 file="recursive2.c",line="14"@},
16995frame=@{level="5",addr="0x000107a4",func="foo",
16996 file="recursive2.c",line="14"@},
16997frame=@{level="6",addr="0x000107a4",func="foo",
16998 file="recursive2.c",line="14"@},
16999frame=@{level="7",addr="0x000107a4",func="foo",
17000 file="recursive2.c",line="14"@},
17001frame=@{level="8",addr="0x000107a4",func="foo",
17002 file="recursive2.c",line="14"@},
17003frame=@{level="9",addr="0x000107a4",func="foo",
17004 file="recursive2.c",line="14"@},
17005frame=@{level="10",addr="0x000107a4",func="foo",
17006 file="recursive2.c",line="14"@},
17007frame=@{level="11",addr="0x00010738",func="main",
17008 file="recursive2.c",line="4"@}]
17009(@value{GDBP})
17010@end smallexample
17011
17012Show frames between @var{low_frame} and @var{high_frame}:
17013
17014@smallexample
17015(@value{GDBP})
17016-stack-list-frames 3 5
17017^done,stack=
17018[frame=@{level="3",addr="0x000107a4",func="foo",
17019 file="recursive2.c",line="14"@},
17020frame=@{level="4",addr="0x000107a4",func="foo",
17021 file="recursive2.c",line="14"@},
17022frame=@{level="5",addr="0x000107a4",func="foo",
17023 file="recursive2.c",line="14"@}]
17024(@value{GDBP})
17025@end smallexample
17026
17027Show a single frame:
17028
17029@smallexample
17030(@value{GDBP})
17031-stack-list-frames 3 3
17032^done,stack=
17033[frame=@{level="3",addr="0x000107a4",func="foo",
17034 file="recursive2.c",line="14"@}]
17035(@value{GDBP})
17036@end smallexample
17037
17038
17039@subheading The @code{-stack-list-locals} Command
17040@findex -stack-list-locals
17041
17042@subsubheading Synopsis
17043
17044@smallexample
17045 -stack-list-locals @var{print-values}
17046@end smallexample
17047
17048Display the local variable names for the current frame. With an
17049argument of 0 prints only the names of the variables, with argument of 1
17050prints also their values.
17051
17052@subsubheading @value{GDBN} Command
17053
17054@samp{info locals} in @value{GDBN}, @samp{gdb_get_locals} in @code{gdbtk}.
17055
17056@subsubheading Example
17057
17058@smallexample
17059(@value{GDBP})
17060-stack-list-locals 0
17061^done,locals=[name="A",name="B",name="C"]
17062(@value{GDBP})
17063-stack-list-locals 1
17064^done,locals=[@{name="A",value="1"@},@{name="B",value="2"@},
17065 @{name="C",value="3"@}]
17066(@value{GDBP})
17067@end smallexample
17068
17069
17070@subheading The @code{-stack-select-frame} Command
17071@findex -stack-select-frame
17072
17073@subsubheading Synopsis
17074
17075@smallexample
17076 -stack-select-frame @var{framenum}
17077@end smallexample
17078
17079Change the current frame. Select a different frame @var{framenum} on
17080the stack.
17081
17082@subsubheading @value{GDBN} Command
17083
17084The corresponding @value{GDBN} commands are @samp{frame}, @samp{up},
17085@samp{down}, @samp{select-frame}, @samp{up-silent}, and @samp{down-silent}.
17086
17087@subsubheading Example
17088
17089@smallexample
17090(@value{GDBP})
17091-stack-select-frame 2
17092^done
17093(@value{GDBP})
17094@end smallexample
17095
17096@c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
17097@node GDB/MI Symbol Query
17098@section @sc{gdb/mi} Symbol Query Commands
17099
17100
17101@subheading The @code{-symbol-info-address} Command
17102@findex -symbol-info-address
17103
17104@subsubheading Synopsis
17105
17106@smallexample
17107 -symbol-info-address @var{symbol}
17108@end smallexample
17109
17110Describe where @var{symbol} is stored.
17111
17112@subsubheading @value{GDBN} Command
17113
17114The corresponding @value{GDBN} command is @samp{info address}.
17115
17116@subsubheading Example
17117N.A.
17118
17119
17120@subheading The @code{-symbol-info-file} Command
17121@findex -symbol-info-file
17122
17123@subsubheading Synopsis
17124
17125@smallexample
17126 -symbol-info-file
17127@end smallexample
17128
17129Show the file for the symbol.
17130
17131@subsubheading @value{GDBN} Command
17132
17133There's no equivalent @value{GDBN} command. @code{gdbtk} has
17134@samp{gdb_find_file}.
17135
17136@subsubheading Example
17137N.A.
17138
17139
17140@subheading The @code{-symbol-info-function} Command
17141@findex -symbol-info-function
17142
17143@subsubheading Synopsis
17144
17145@smallexample
17146 -symbol-info-function
17147@end smallexample
17148
17149Show which function the symbol lives in.
17150
17151@subsubheading @value{GDBN} Command
17152
17153@samp{gdb_get_function} in @code{gdbtk}.
17154
17155@subsubheading Example
17156N.A.
17157
17158
17159@subheading The @code{-symbol-info-line} Command
17160@findex -symbol-info-line
17161
17162@subsubheading Synopsis
17163
17164@smallexample
17165 -symbol-info-line
17166@end smallexample
17167
17168Show the core addresses of the code for a source line.
17169
17170@subsubheading @value{GDBN} Command
17171
17172The corresponding @value{GDBN} comamnd is @samp{info line}.
17173@code{gdbtk} has the @samp{gdb_get_line} and @samp{gdb_get_file} commands.
17174
17175@subsubheading Example
17176N.A.
17177
17178
17179@subheading The @code{-symbol-info-symbol} Command
17180@findex -symbol-info-symbol
17181
17182@subsubheading Synopsis
17183
17184@smallexample
17185 -symbol-info-symbol @var{addr}
17186@end smallexample
17187
17188Describe what symbol is at location @var{addr}.
17189
17190@subsubheading @value{GDBN} Command
17191
17192The corresponding @value{GDBN} command is @samp{info symbol}.
17193
17194@subsubheading Example
17195N.A.
17196
17197
17198@subheading The @code{-symbol-list-functions} Command
17199@findex -symbol-list-functions
17200
17201@subsubheading Synopsis
17202
17203@smallexample
17204 -symbol-list-functions
17205@end smallexample
17206
17207List the functions in the executable.
17208
17209@subsubheading @value{GDBN} Command
17210
17211@samp{info functions} in @value{GDBN}, @samp{gdb_listfunc} and
17212@samp{gdb_search} in @code{gdbtk}.
17213
17214@subsubheading Example
17215N.A.
17216
17217
32e7087d
JB
17218@subheading The @code{-symbol-list-lines} Command
17219@findex -symbol-list-lines
17220
17221@subsubheading Synopsis
17222
17223@smallexample
17224 -symbol-list-lines @var{filename}
17225@end smallexample
17226
17227Print the list of lines that contain code and their associated program
17228addresses for the given source filename. The entries are sorted in
17229ascending PC order.
17230
17231@subsubheading @value{GDBN} Command
17232
17233There is no corresponding @value{GDBN} command.
17234
17235@subsubheading Example
17236@smallexample
17237(@value{GDBP})
17238-symbol-list-lines basics.c
54ff5908 17239^done,lines=[@{pc="0x08048554",line="7"@},@{pc="0x0804855a",line="8"@}]
32e7087d
JB
17240(@value{GDBP})
17241@end smallexample
17242
17243
922fbb7b
AC
17244@subheading The @code{-symbol-list-types} Command
17245@findex -symbol-list-types
17246
17247@subsubheading Synopsis
17248
17249@smallexample
17250 -symbol-list-types
17251@end smallexample
17252
17253List all the type names.
17254
17255@subsubheading @value{GDBN} Command
17256
17257The corresponding commands are @samp{info types} in @value{GDBN},
17258@samp{gdb_search} in @code{gdbtk}.
17259
17260@subsubheading Example
17261N.A.
17262
17263
17264@subheading The @code{-symbol-list-variables} Command
17265@findex -symbol-list-variables
17266
17267@subsubheading Synopsis
17268
17269@smallexample
17270 -symbol-list-variables
17271@end smallexample
17272
17273List all the global and static variable names.
17274
17275@subsubheading @value{GDBN} Command
17276
17277@samp{info variables} in @value{GDBN}, @samp{gdb_search} in @code{gdbtk}.
17278
17279@subsubheading Example
17280N.A.
17281
17282
17283@subheading The @code{-symbol-locate} Command
17284@findex -symbol-locate
17285
17286@subsubheading Synopsis
17287
17288@smallexample
17289 -symbol-locate
17290@end smallexample
17291
17292@subsubheading @value{GDBN} Command
17293
17294@samp{gdb_loc} in @code{gdbtk}.
17295
17296@subsubheading Example
17297N.A.
17298
17299
17300@subheading The @code{-symbol-type} Command
17301@findex -symbol-type
17302
17303@subsubheading Synopsis
17304
17305@smallexample
17306 -symbol-type @var{variable}
17307@end smallexample
17308
17309Show type of @var{variable}.
17310
17311@subsubheading @value{GDBN} Command
17312
17313The corresponding @value{GDBN} command is @samp{ptype}, @code{gdbtk} has
17314@samp{gdb_obj_variable}.
17315
17316@subsubheading Example
17317N.A.
17318
17319
17320@c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
17321@node GDB/MI Target Manipulation
17322@section @sc{gdb/mi} Target Manipulation Commands
17323
17324
17325@subheading The @code{-target-attach} Command
17326@findex -target-attach
17327
17328@subsubheading Synopsis
17329
17330@smallexample
17331 -target-attach @var{pid} | @var{file}
17332@end smallexample
17333
17334Attach to a process @var{pid} or a file @var{file} outside of @value{GDBN}.
17335
17336@subsubheading @value{GDBN} command
17337
17338The corresponding @value{GDBN} command is @samp{attach}.
17339
17340@subsubheading Example
17341N.A.
17342
17343
17344@subheading The @code{-target-compare-sections} Command
17345@findex -target-compare-sections
17346
17347@subsubheading Synopsis
17348
17349@smallexample
17350 -target-compare-sections [ @var{section} ]
17351@end smallexample
17352
17353Compare data of section @var{section} on target to the exec file.
17354Without the argument, all sections are compared.
17355
17356@subsubheading @value{GDBN} Command
17357
17358The @value{GDBN} equivalent is @samp{compare-sections}.
17359
17360@subsubheading Example
17361N.A.
17362
17363
17364@subheading The @code{-target-detach} Command
17365@findex -target-detach
17366
17367@subsubheading Synopsis
17368
17369@smallexample
17370 -target-detach
17371@end smallexample
17372
17373Disconnect from the remote target. There's no output.
17374
17375@subsubheading @value{GDBN} command
17376
17377The corresponding @value{GDBN} command is @samp{detach}.
17378
17379@subsubheading Example
17380
17381@smallexample
17382(@value{GDBP})
17383-target-detach
17384^done
17385(@value{GDBP})
17386@end smallexample
17387
17388
07f31aa6
DJ
17389@subheading The @code{-target-disconnect} Command
17390@findex -target-disconnect
17391
17392@subsubheading Synopsis
17393
17394@example
17395 -target-disconnect
17396@end example
17397
17398Disconnect from the remote target. There's no output.
17399
17400@subsubheading @value{GDBN} command
17401
17402The corresponding @value{GDBN} command is @samp{disconnect}.
17403
17404@subsubheading Example
17405
17406@smallexample
17407(@value{GDBP})
17408-target-disconnect
17409^done
17410(@value{GDBP})
17411@end smallexample
17412
17413
922fbb7b
AC
17414@subheading The @code{-target-download} Command
17415@findex -target-download
17416
17417@subsubheading Synopsis
17418
17419@smallexample
17420 -target-download
17421@end smallexample
17422
17423Loads the executable onto the remote target.
17424It prints out an update message every half second, which includes the fields:
17425
17426@table @samp
17427@item section
17428The name of the section.
17429@item section-sent
17430The size of what has been sent so far for that section.
17431@item section-size
17432The size of the section.
17433@item total-sent
17434The total size of what was sent so far (the current and the previous sections).
17435@item total-size
17436The size of the overall executable to download.
17437@end table
17438
17439@noindent
17440Each message is sent as status record (@pxref{GDB/MI Output Syntax, ,
17441@sc{gdb/mi} Output Syntax}).
17442
17443In addition, it prints the name and size of the sections, as they are
17444downloaded. These messages include the following fields:
17445
17446@table @samp
17447@item section
17448The name of the section.
17449@item section-size
17450The size of the section.
17451@item total-size
17452The size of the overall executable to download.
17453@end table
17454
17455@noindent
17456At the end, a summary is printed.
17457
17458@subsubheading @value{GDBN} Command
17459
17460The corresponding @value{GDBN} command is @samp{load}.
17461
17462@subsubheading Example
17463
17464Note: each status message appears on a single line. Here the messages
17465have been broken down so that they can fit onto a page.
17466
17467@smallexample
17468(@value{GDBP})
17469-target-download
17470+download,@{section=".text",section-size="6668",total-size="9880"@}
17471+download,@{section=".text",section-sent="512",section-size="6668",
17472total-sent="512",total-size="9880"@}
17473+download,@{section=".text",section-sent="1024",section-size="6668",
17474total-sent="1024",total-size="9880"@}
17475+download,@{section=".text",section-sent="1536",section-size="6668",
17476total-sent="1536",total-size="9880"@}
17477+download,@{section=".text",section-sent="2048",section-size="6668",
17478total-sent="2048",total-size="9880"@}
17479+download,@{section=".text",section-sent="2560",section-size="6668",
17480total-sent="2560",total-size="9880"@}
17481+download,@{section=".text",section-sent="3072",section-size="6668",
17482total-sent="3072",total-size="9880"@}
17483+download,@{section=".text",section-sent="3584",section-size="6668",
17484total-sent="3584",total-size="9880"@}
17485+download,@{section=".text",section-sent="4096",section-size="6668",
17486total-sent="4096",total-size="9880"@}
17487+download,@{section=".text",section-sent="4608",section-size="6668",
17488total-sent="4608",total-size="9880"@}
17489+download,@{section=".text",section-sent="5120",section-size="6668",
17490total-sent="5120",total-size="9880"@}
17491+download,@{section=".text",section-sent="5632",section-size="6668",
17492total-sent="5632",total-size="9880"@}
17493+download,@{section=".text",section-sent="6144",section-size="6668",
17494total-sent="6144",total-size="9880"@}
17495+download,@{section=".text",section-sent="6656",section-size="6668",
17496total-sent="6656",total-size="9880"@}
17497+download,@{section=".init",section-size="28",total-size="9880"@}
17498+download,@{section=".fini",section-size="28",total-size="9880"@}
17499+download,@{section=".data",section-size="3156",total-size="9880"@}
17500+download,@{section=".data",section-sent="512",section-size="3156",
17501total-sent="7236",total-size="9880"@}
17502+download,@{section=".data",section-sent="1024",section-size="3156",
17503total-sent="7748",total-size="9880"@}
17504+download,@{section=".data",section-sent="1536",section-size="3156",
17505total-sent="8260",total-size="9880"@}
17506+download,@{section=".data",section-sent="2048",section-size="3156",
17507total-sent="8772",total-size="9880"@}
17508+download,@{section=".data",section-sent="2560",section-size="3156",
17509total-sent="9284",total-size="9880"@}
17510+download,@{section=".data",section-sent="3072",section-size="3156",
17511total-sent="9796",total-size="9880"@}
17512^done,address="0x10004",load-size="9880",transfer-rate="6586",
17513write-rate="429"
17514(@value{GDBP})
17515@end smallexample
17516
17517
17518@subheading The @code{-target-exec-status} Command
17519@findex -target-exec-status
17520
17521@subsubheading Synopsis
17522
17523@smallexample
17524 -target-exec-status
17525@end smallexample
17526
17527Provide information on the state of the target (whether it is running or
17528not, for instance).
17529
17530@subsubheading @value{GDBN} Command
17531
17532There's no equivalent @value{GDBN} command.
17533
17534@subsubheading Example
17535N.A.
17536
17537
17538@subheading The @code{-target-list-available-targets} Command
17539@findex -target-list-available-targets
17540
17541@subsubheading Synopsis
17542
17543@smallexample
17544 -target-list-available-targets
17545@end smallexample
17546
17547List the possible targets to connect to.
17548
17549@subsubheading @value{GDBN} Command
17550
17551The corresponding @value{GDBN} command is @samp{help target}.
17552
17553@subsubheading Example
17554N.A.
17555
17556
17557@subheading The @code{-target-list-current-targets} Command
17558@findex -target-list-current-targets
17559
17560@subsubheading Synopsis
17561
17562@smallexample
17563 -target-list-current-targets
17564@end smallexample
17565
17566Describe the current target.
17567
17568@subsubheading @value{GDBN} Command
17569
17570The corresponding information is printed by @samp{info file} (among
17571other things).
17572
17573@subsubheading Example
17574N.A.
17575
17576
17577@subheading The @code{-target-list-parameters} Command
17578@findex -target-list-parameters
17579
17580@subsubheading Synopsis
17581
17582@smallexample
17583 -target-list-parameters
17584@end smallexample
17585
17586@c ????
17587
17588@subsubheading @value{GDBN} Command
17589
17590No equivalent.
17591
17592@subsubheading Example
17593N.A.
17594
17595
17596@subheading The @code{-target-select} Command
17597@findex -target-select
17598
17599@subsubheading Synopsis
17600
17601@smallexample
17602 -target-select @var{type} @var{parameters @dots{}}
17603@end smallexample
17604
17605Connect @value{GDBN} to the remote target. This command takes two args:
17606
17607@table @samp
17608@item @var{type}
17609The type of target, for instance @samp{async}, @samp{remote}, etc.
17610@item @var{parameters}
17611Device names, host names and the like. @xref{Target Commands, ,
17612Commands for managing targets}, for more details.
17613@end table
17614
17615The output is a connection notification, followed by the address at
17616which the target program is, in the following form:
17617
17618@smallexample
17619^connected,addr="@var{address}",func="@var{function name}",
17620 args=[@var{arg list}]
17621@end smallexample
17622
17623@subsubheading @value{GDBN} Command
17624
17625The corresponding @value{GDBN} command is @samp{target}.
17626
17627@subsubheading Example
17628
17629@smallexample
17630(@value{GDBP})
17631-target-select async /dev/ttya
17632^connected,addr="0xfe00a300",func="??",args=[]
17633(@value{GDBP})
17634@end smallexample
17635
17636@c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
17637@node GDB/MI Thread Commands
17638@section @sc{gdb/mi} Thread Commands
17639
17640
17641@subheading The @code{-thread-info} Command
17642@findex -thread-info
17643
17644@subsubheading Synopsis
17645
17646@smallexample
17647 -thread-info
17648@end smallexample
17649
17650@subsubheading @value{GDBN} command
17651
17652No equivalent.
17653
17654@subsubheading Example
17655N.A.
17656
17657
17658@subheading The @code{-thread-list-all-threads} Command
17659@findex -thread-list-all-threads
17660
17661@subsubheading Synopsis
17662
17663@smallexample
17664 -thread-list-all-threads
17665@end smallexample
17666
17667@subsubheading @value{GDBN} Command
17668
17669The equivalent @value{GDBN} command is @samp{info threads}.
17670
17671@subsubheading Example
17672N.A.
17673
17674
17675@subheading The @code{-thread-list-ids} Command
17676@findex -thread-list-ids
17677
17678@subsubheading Synopsis
17679
17680@smallexample
17681 -thread-list-ids
17682@end smallexample
17683
17684Produces a list of the currently known @value{GDBN} thread ids. At the
17685end of the list it also prints the total number of such threads.
17686
17687@subsubheading @value{GDBN} Command
17688
17689Part of @samp{info threads} supplies the same information.
17690
17691@subsubheading Example
17692
17693No threads present, besides the main process:
17694
17695@smallexample
17696(@value{GDBP})
17697-thread-list-ids
17698^done,thread-ids=@{@},number-of-threads="0"
17699(@value{GDBP})
17700@end smallexample
17701
17702
17703Several threads:
17704
17705@smallexample
17706(@value{GDBP})
17707-thread-list-ids
17708^done,thread-ids=@{thread-id="3",thread-id="2",thread-id="1"@},
17709number-of-threads="3"
17710(@value{GDBP})
17711@end smallexample
17712
17713
17714@subheading The @code{-thread-select} Command
17715@findex -thread-select
17716
17717@subsubheading Synopsis
17718
17719@smallexample
17720 -thread-select @var{threadnum}
17721@end smallexample
17722
17723Make @var{threadnum} the current thread. It prints the number of the new
17724current thread, and the topmost frame for that thread.
17725
17726@subsubheading @value{GDBN} Command
17727
17728The corresponding @value{GDBN} command is @samp{thread}.
17729
17730@subsubheading Example
17731
17732@smallexample
17733(@value{GDBP})
17734-exec-next
17735^running
17736(@value{GDBP})
17737*stopped,reason="end-stepping-range",thread-id="2",line="187",
17738file="../../../devo/gdb/testsuite/gdb.threads/linux-dp.c"
17739(@value{GDBP})
17740-thread-list-ids
17741^done,
17742thread-ids=@{thread-id="3",thread-id="2",thread-id="1"@},
17743number-of-threads="3"
17744(@value{GDBP})
17745-thread-select 3
17746^done,new-thread-id="3",
17747frame=@{level="0",func="vprintf",
17748args=[@{name="format",value="0x8048e9c \"%*s%c %d %c\\n\""@},
17749@{name="arg",value="0x2"@}],file="vprintf.c",line="31"@}
17750(@value{GDBP})
17751@end smallexample
17752
17753@c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
17754@node GDB/MI Tracepoint Commands
17755@section @sc{gdb/mi} Tracepoint Commands
17756
17757The tracepoint commands are not yet implemented.
17758
17759@c @subheading -trace-actions
17760
17761@c @subheading -trace-delete
17762
17763@c @subheading -trace-disable
17764
17765@c @subheading -trace-dump
17766
17767@c @subheading -trace-enable
17768
17769@c @subheading -trace-exists
17770
17771@c @subheading -trace-find
17772
17773@c @subheading -trace-frame-number
17774
17775@c @subheading -trace-info
17776
17777@c @subheading -trace-insert
17778
17779@c @subheading -trace-list
17780
17781@c @subheading -trace-pass-count
17782
17783@c @subheading -trace-save
17784
17785@c @subheading -trace-start
17786
17787@c @subheading -trace-stop
17788
17789
17790@c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
17791@node GDB/MI Variable Objects
17792@section @sc{gdb/mi} Variable Objects
17793
17794
17795@subheading Motivation for Variable Objects in @sc{gdb/mi}
17796
17797For the implementation of a variable debugger window (locals, watched
17798expressions, etc.), we are proposing the adaptation of the existing code
17799used by @code{Insight}.
17800
17801The two main reasons for that are:
17802
17803@enumerate 1
17804@item
17805It has been proven in practice (it is already on its second generation).
17806
17807@item
17808It will shorten development time (needless to say how important it is
17809now).
17810@end enumerate
17811
17812The original interface was designed to be used by Tcl code, so it was
17813slightly changed so it could be used through @sc{gdb/mi}. This section
17814describes the @sc{gdb/mi} operations that will be available and gives some
17815hints about their use.
17816
17817@emph{Note}: In addition to the set of operations described here, we
17818expect the @sc{gui} implementation of a variable window to require, at
17819least, the following operations:
17820
17821@itemize @bullet
17822@item @code{-gdb-show} @code{output-radix}
17823@item @code{-stack-list-arguments}
17824@item @code{-stack-list-locals}
17825@item @code{-stack-select-frame}
17826@end itemize
17827
17828@subheading Introduction to Variable Objects in @sc{gdb/mi}
17829
17830@cindex variable objects in @sc{gdb/mi}
17831The basic idea behind variable objects is the creation of a named object
17832to represent a variable, an expression, a memory location or even a CPU
17833register. For each object created, a set of operations is available for
17834examining or changing its properties.
17835
17836Furthermore, complex data types, such as C structures, are represented
17837in a tree format. For instance, the @code{struct} type variable is the
17838root and the children will represent the struct members. If a child
17839is itself of a complex type, it will also have children of its own.
17840Appropriate language differences are handled for C, C@t{++} and Java.
17841
17842When returning the actual values of the objects, this facility allows
17843for the individual selection of the display format used in the result
17844creation. It can be chosen among: binary, decimal, hexadecimal, octal
17845and natural. Natural refers to a default format automatically
17846chosen based on the variable type (like decimal for an @code{int}, hex
17847for pointers, etc.).
17848
17849The following is the complete set of @sc{gdb/mi} operations defined to
17850access this functionality:
17851
17852@multitable @columnfractions .4 .6
17853@item @strong{Operation}
17854@tab @strong{Description}
17855
17856@item @code{-var-create}
17857@tab create a variable object
17858@item @code{-var-delete}
17859@tab delete the variable object and its children
17860@item @code{-var-set-format}
17861@tab set the display format of this variable
17862@item @code{-var-show-format}
17863@tab show the display format of this variable
17864@item @code{-var-info-num-children}
17865@tab tells how many children this object has
17866@item @code{-var-list-children}
17867@tab return a list of the object's children
17868@item @code{-var-info-type}
17869@tab show the type of this variable object
17870@item @code{-var-info-expression}
17871@tab print what this variable object represents
17872@item @code{-var-show-attributes}
17873@tab is this variable editable? does it exist here?
17874@item @code{-var-evaluate-expression}
17875@tab get the value of this variable
17876@item @code{-var-assign}
17877@tab set the value of this variable
17878@item @code{-var-update}
17879@tab update the variable and its children
17880@end multitable
17881
17882In the next subsection we describe each operation in detail and suggest
17883how it can be used.
17884
17885@subheading Description And Use of Operations on Variable Objects
17886
17887@subheading The @code{-var-create} Command
17888@findex -var-create
17889
17890@subsubheading Synopsis
17891
17892@smallexample
17893 -var-create @{@var{name} | "-"@}
17894 @{@var{frame-addr} | "*"@} @var{expression}
17895@end smallexample
17896
17897This operation creates a variable object, which allows the monitoring of
17898a variable, the result of an expression, a memory cell or a CPU
17899register.
17900
17901The @var{name} parameter is the string by which the object can be
17902referenced. It must be unique. If @samp{-} is specified, the varobj
17903system will generate a string ``varNNNNNN'' automatically. It will be
17904unique provided that one does not specify @var{name} on that format.
17905The command fails if a duplicate name is found.
17906
17907The frame under which the expression should be evaluated can be
17908specified by @var{frame-addr}. A @samp{*} indicates that the current
17909frame should be used.
17910
17911@var{expression} is any expression valid on the current language set (must not
17912begin with a @samp{*}), or one of the following:
17913
17914@itemize @bullet
17915@item
17916@samp{*@var{addr}}, where @var{addr} is the address of a memory cell
17917
17918@item
17919@samp{*@var{addr}-@var{addr}} --- a memory address range (TBD)
17920
17921@item
17922@samp{$@var{regname}} --- a CPU register name
17923@end itemize
17924
17925@subsubheading Result
17926
17927This operation returns the name, number of children and the type of the
17928object created. Type is returned as a string as the ones generated by
17929the @value{GDBN} CLI:
17930
17931@smallexample
17932 name="@var{name}",numchild="N",type="@var{type}"
17933@end smallexample
17934
17935
17936@subheading The @code{-var-delete} Command
17937@findex -var-delete
17938
17939@subsubheading Synopsis
17940
17941@smallexample
17942 -var-delete @var{name}
17943@end smallexample
17944
17945Deletes a previously created variable object and all of its children.
17946
17947Returns an error if the object @var{name} is not found.
17948
17949
17950@subheading The @code{-var-set-format} Command
17951@findex -var-set-format
17952
17953@subsubheading Synopsis
17954
17955@smallexample
17956 -var-set-format @var{name} @var{format-spec}
17957@end smallexample
17958
17959Sets the output format for the value of the object @var{name} to be
17960@var{format-spec}.
17961
17962The syntax for the @var{format-spec} is as follows:
17963
17964@smallexample
17965 @var{format-spec} @expansion{}
17966 @{binary | decimal | hexadecimal | octal | natural@}
17967@end smallexample
17968
17969
17970@subheading The @code{-var-show-format} Command
17971@findex -var-show-format
17972
17973@subsubheading Synopsis
17974
17975@smallexample
17976 -var-show-format @var{name}
17977@end smallexample
17978
17979Returns the format used to display the value of the object @var{name}.
17980
17981@smallexample
17982 @var{format} @expansion{}
17983 @var{format-spec}
17984@end smallexample
17985
17986
17987@subheading The @code{-var-info-num-children} Command
17988@findex -var-info-num-children
17989
17990@subsubheading Synopsis
17991
17992@smallexample
17993 -var-info-num-children @var{name}
17994@end smallexample
17995
17996Returns the number of children of a variable object @var{name}:
17997
17998@smallexample
17999 numchild=@var{n}
18000@end smallexample
18001
18002
18003@subheading The @code{-var-list-children} Command
18004@findex -var-list-children
18005
18006@subsubheading Synopsis
18007
18008@smallexample
18009 -var-list-children @var{name}
18010@end smallexample
18011
18012Returns a list of the children of the specified variable object:
18013
18014@smallexample
18015 numchild=@var{n},children=[@{name=@var{name},
18016 numchild=@var{n},type=@var{type}@},@r{(repeats N times)}]
18017@end smallexample
18018
18019
18020@subheading The @code{-var-info-type} Command
18021@findex -var-info-type
18022
18023@subsubheading Synopsis
18024
18025@smallexample
18026 -var-info-type @var{name}
18027@end smallexample
18028
18029Returns the type of the specified variable @var{name}. The type is
18030returned as a string in the same format as it is output by the
18031@value{GDBN} CLI:
18032
18033@smallexample
18034 type=@var{typename}
18035@end smallexample
18036
18037
18038@subheading The @code{-var-info-expression} Command
18039@findex -var-info-expression
18040
18041@subsubheading Synopsis
18042
18043@smallexample
18044 -var-info-expression @var{name}
18045@end smallexample
18046
18047Returns what is represented by the variable object @var{name}:
18048
18049@smallexample
18050 lang=@var{lang-spec},exp=@var{expression}
18051@end smallexample
18052
18053@noindent
18054where @var{lang-spec} is @code{@{"C" | "C++" | "Java"@}}.
18055
18056@subheading The @code{-var-show-attributes} Command
18057@findex -var-show-attributes
18058
18059@subsubheading Synopsis
18060
18061@smallexample
18062 -var-show-attributes @var{name}
18063@end smallexample
18064
18065List attributes of the specified variable object @var{name}:
18066
18067@smallexample
18068 status=@var{attr} [ ( ,@var{attr} )* ]
18069@end smallexample
18070
18071@noindent
18072where @var{attr} is @code{@{ @{ editable | noneditable @} | TBD @}}.
18073
18074@subheading The @code{-var-evaluate-expression} Command
18075@findex -var-evaluate-expression
18076
18077@subsubheading Synopsis
18078
18079@smallexample
18080 -var-evaluate-expression @var{name}
18081@end smallexample
18082
18083Evaluates the expression that is represented by the specified variable
18084object and returns its value as a string in the current format specified
18085for the object:
18086
18087@smallexample
18088 value=@var{value}
18089@end smallexample
18090
18091Note that one must invoke @code{-var-list-children} for a variable
18092before the value of a child variable can be evaluated.
18093
18094@subheading The @code{-var-assign} Command
18095@findex -var-assign
18096
18097@subsubheading Synopsis
18098
18099@smallexample
18100 -var-assign @var{name} @var{expression}
18101@end smallexample
18102
18103Assigns the value of @var{expression} to the variable object specified
18104by @var{name}. The object must be @samp{editable}. If the variable's
18105value is altered by the assign, the variable will show up in any
18106subsequent @code{-var-update} list.
18107
18108@subsubheading Example
18109
18110@smallexample
18111(@value{GDBP})
18112-var-assign var1 3
18113^done,value="3"
18114(@value{GDBP})
18115-var-update *
18116^done,changelist=[@{name="var1",in_scope="true",type_changed="false"@}]
18117(@value{GDBP})
18118@end smallexample
18119
18120@subheading The @code{-var-update} Command
18121@findex -var-update
18122
18123@subsubheading Synopsis
18124
18125@smallexample
18126 -var-update @{@var{name} | "*"@}
18127@end smallexample
18128
18129Update the value of the variable object @var{name} by evaluating its
18130expression after fetching all the new values from memory or registers.
18131A @samp{*} causes all existing variable objects to be updated.
18132
18133
18134@node Annotations
18135@chapter @value{GDBN} Annotations
18136
18137This chapter describes annotations in @value{GDBN}. Annotations are
18138designed to interface @value{GDBN} to graphical user interfaces or
18139other similar programs which want to interact with @value{GDBN} at a
18140relatively high level.
18141
18142@ignore
18143This is Edition @value{EDITION}, @value{DATE}.
18144@end ignore
18145
18146@menu
18147* Annotations Overview:: What annotations are; the general syntax.
18148* Server Prefix:: Issuing a command without affecting user state.
18149* Value Annotations:: Values are marked as such.
18150* Frame Annotations:: Stack frames are annotated.
18151* Displays:: @value{GDBN} can be told to display something periodically.
18152* Prompting:: Annotations marking @value{GDBN}'s need for input.
18153* Errors:: Annotations for error messages.
18154* Breakpoint Info:: Information on breakpoints.
18155* Invalidation:: Some annotations describe things now invalid.
18156* Annotations for Running::
18157 Whether the program is running, how it stopped, etc.
18158* Source Annotations:: Annotations describing source code.
18159* TODO:: Annotations which might be added in the future.
18160@end menu
18161
18162@node Annotations Overview
18163@section What is an Annotation?
18164@cindex annotations
18165
18166To produce annotations, start @value{GDBN} with the @code{--annotate=2} option.
18167
18168Annotations start with a newline character, two @samp{control-z}
18169characters, and the name of the annotation. If there is no additional
18170information associated with this annotation, the name of the annotation
18171is followed immediately by a newline. If there is additional
18172information, the name of the annotation is followed by a space, the
18173additional information, and a newline. The additional information
18174cannot contain newline characters.
18175
18176Any output not beginning with a newline and two @samp{control-z}
18177characters denotes literal output from @value{GDBN}. Currently there is
18178no need for @value{GDBN} to output a newline followed by two
18179@samp{control-z} characters, but if there was such a need, the
18180annotations could be extended with an @samp{escape} annotation which
18181means those three characters as output.
18182
18183A simple example of starting up @value{GDBN} with annotations is:
18184
18185@smallexample
18186$ gdb --annotate=2
18187GNU GDB 5.0
18188Copyright 2000 Free Software Foundation, Inc.
18189GDB is free software, covered by the GNU General Public License,
18190and you are welcome to change it and/or distribute copies of it
18191under certain conditions.
18192Type "show copying" to see the conditions.
18193There is absolutely no warranty for GDB. Type "show warranty"
18194for details.
18195This GDB was configured as "sparc-sun-sunos4.1.3"
18196
18197^Z^Zpre-prompt
18198(gdb)
18199^Z^Zprompt
18200quit
18201
18202^Z^Zpost-prompt
18203$
18204@end smallexample
18205
18206Here @samp{quit} is input to @value{GDBN}; the rest is output from
18207@value{GDBN}. The three lines beginning @samp{^Z^Z} (where @samp{^Z}
18208denotes a @samp{control-z} character) are annotations; the rest is
18209output from @value{GDBN}.
18210
18211@node Server Prefix
18212@section The Server Prefix
18213@cindex server prefix for annotations
18214
18215To issue a command to @value{GDBN} without affecting certain aspects of
18216the state which is seen by users, prefix it with @samp{server }. This
18217means that this command will not affect the command history, nor will it
18218affect @value{GDBN}'s notion of which command to repeat if @key{RET} is
18219pressed on a line by itself.
18220
18221The server prefix does not affect the recording of values into the value
18222history; to print a value without recording it into the value history,
18223use the @code{output} command instead of the @code{print} command.
18224
18225@node Value Annotations
18226@section Values
18227
18228@cindex annotations for values
18229When a value is printed in various contexts, @value{GDBN} uses
18230annotations to delimit the value from the surrounding text.
18231
18232@findex value-history-begin
18233@findex value-history-value
18234@findex value-history-end
18235If a value is printed using @code{print} and added to the value history,
18236the annotation looks like
18237
18238@smallexample
18239^Z^Zvalue-history-begin @var{history-number} @var{value-flags}
18240@var{history-string}
18241^Z^Zvalue-history-value
18242@var{the-value}
18243^Z^Zvalue-history-end
18244@end smallexample
18245
18246@noindent
18247where @var{history-number} is the number it is getting in the value
18248history, @var{history-string} is a string, such as @samp{$5 = }, which
18249introduces the value to the user, @var{the-value} is the output
18250corresponding to the value itself, and @var{value-flags} is @samp{*} for
18251a value which can be dereferenced and @samp{-} for a value which cannot.
18252
18253@findex value-begin
18254@findex value-end
18255If the value is not added to the value history (it is an invalid float
18256or it is printed with the @code{output} command), the annotation is similar:
18257
18258@smallexample
18259^Z^Zvalue-begin @var{value-flags}
18260@var{the-value}
18261^Z^Zvalue-end
18262@end smallexample
18263
18264@findex arg-begin
18265@findex arg-name-end
18266@findex arg-value
18267@findex arg-end
18268When @value{GDBN} prints an argument to a function (for example, in the output
18269from the @code{backtrace} command), it annotates it as follows:
18270
18271@smallexample
18272^Z^Zarg-begin
18273@var{argument-name}
18274^Z^Zarg-name-end
18275@var{separator-string}
18276^Z^Zarg-value @var{value-flags}
18277@var{the-value}
18278^Z^Zarg-end
18279@end smallexample
18280
18281@noindent
18282where @var{argument-name} is the name of the argument,
18283@var{separator-string} is text which separates the name from the value
18284for the user's benefit (such as @samp{=}), and @var{value-flags} and
18285@var{the-value} have the same meanings as in a
18286@code{value-history-begin} annotation.
18287
18288@findex field-begin
18289@findex field-name-end
18290@findex field-value
18291@findex field-end
18292When printing a structure, @value{GDBN} annotates it as follows:
18293
18294@smallexample
18295^Z^Zfield-begin @var{value-flags}
18296@var{field-name}
18297^Z^Zfield-name-end
18298@var{separator-string}
18299^Z^Zfield-value
18300@var{the-value}
18301^Z^Zfield-end
18302@end smallexample
18303
18304@noindent
18305where @var{field-name} is the name of the field, @var{separator-string}
18306is text which separates the name from the value for the user's benefit
18307(such as @samp{=}), and @var{value-flags} and @var{the-value} have the
18308same meanings as in a @code{value-history-begin} annotation.
18309
18310When printing an array, @value{GDBN} annotates it as follows:
18311
18312@smallexample
18313^Z^Zarray-section-begin @var{array-index} @var{value-flags}
18314@end smallexample
18315
18316@noindent
18317where @var{array-index} is the index of the first element being
18318annotated and @var{value-flags} has the same meaning as in a
18319@code{value-history-begin} annotation. This is followed by any number
18320of elements, where is element can be either a single element:
18321
18322@findex elt
18323@smallexample
18324@samp{,} @var{whitespace} ; @r{omitted for the first element}
18325@var{the-value}
18326^Z^Zelt
18327@end smallexample
18328
18329or a repeated element
18330
18331@findex elt-rep
18332@findex elt-rep-end
18333@smallexample
18334@samp{,} @var{whitespace} ; @r{omitted for the first element}
18335@var{the-value}
18336^Z^Zelt-rep @var{number-of-repetitions}
18337@var{repetition-string}
18338^Z^Zelt-rep-end
18339@end smallexample
18340
18341In both cases, @var{the-value} is the output for the value of the
18342element and @var{whitespace} can contain spaces, tabs, and newlines. In
18343the repeated case, @var{number-of-repetitions} is the number of
18344consecutive array elements which contain that value, and
18345@var{repetition-string} is a string which is designed to convey to the
18346user that repetition is being depicted.
18347
18348@findex array-section-end
18349Once all the array elements have been output, the array annotation is
18350ended with
18351
18352@smallexample
18353^Z^Zarray-section-end
18354@end smallexample
18355
18356@node Frame Annotations
18357@section Frames
18358
18359@cindex annotations for frames
18360Whenever @value{GDBN} prints a frame, it annotates it. For example, this applies
18361to frames printed when @value{GDBN} stops, output from commands such as
18362@code{backtrace} or @code{up}, etc.
18363
18364@findex frame-begin
18365The frame annotation begins with
18366
18367@smallexample
18368^Z^Zframe-begin @var{level} @var{address}
18369@var{level-string}
18370@end smallexample
18371
18372@noindent
18373where @var{level} is the number of the frame (0 is the innermost frame,
18374and other frames have positive numbers), @var{address} is the address of
18375the code executing in that frame, and @var{level-string} is a string
18376designed to convey the level to the user. @var{address} is in the form
18377@samp{0x} followed by one or more lowercase hex digits (note that this
18378does not depend on the language). The frame ends with
18379
18380@findex frame-end
18381@smallexample
18382^Z^Zframe-end
18383@end smallexample
18384
18385Between these annotations is the main body of the frame, which can
18386consist of
18387
18388@itemize @bullet
18389@item
18390@findex function-call
18391@smallexample
18392^Z^Zfunction-call
18393@var{function-call-string}
18394@end smallexample
18395
18396where @var{function-call-string} is text designed to convey to the user
18397that this frame is associated with a function call made by @value{GDBN} to a
18398function in the program being debugged.
18399
18400@item
18401@findex signal-handler-caller
18402@smallexample
18403^Z^Zsignal-handler-caller
18404@var{signal-handler-caller-string}
18405@end smallexample
18406
18407where @var{signal-handler-caller-string} is text designed to convey to
18408the user that this frame is associated with whatever mechanism is used
18409by this operating system to call a signal handler (it is the frame which
18410calls the signal handler, not the frame for the signal handler itself).
18411
18412@item
18413A normal frame.
18414
18415@findex frame-address
18416@findex frame-address-end
18417This can optionally (depending on whether this is thought of as
18418interesting information for the user to see) begin with
18419
18420@smallexample
18421^Z^Zframe-address
18422@var{address}
18423^Z^Zframe-address-end
18424@var{separator-string}
18425@end smallexample
18426
18427where @var{address} is the address executing in the frame (the same
18428address as in the @code{frame-begin} annotation, but printed in a form
18429which is intended for user consumption---in particular, the syntax varies
18430depending on the language), and @var{separator-string} is a string
18431intended to separate this address from what follows for the user's
18432benefit.
18433
18434@findex frame-function-name
18435@findex frame-args
18436Then comes
18437
18438@smallexample
18439^Z^Zframe-function-name
18440@var{function-name}
18441^Z^Zframe-args
18442@var{arguments}
18443@end smallexample
18444
18445where @var{function-name} is the name of the function executing in the
18446frame, or @samp{??} if not known, and @var{arguments} are the arguments
18447to the frame, with parentheses around them (each argument is annotated
18448individually as well, @pxref{Value Annotations}).
18449
18450@findex frame-source-begin
18451@findex frame-source-file
18452@findex frame-source-file-end
18453@findex frame-source-line
18454@findex frame-source-end
18455If source information is available, a reference to it is then printed:
18456
18457@smallexample
18458^Z^Zframe-source-begin
18459@var{source-intro-string}
18460^Z^Zframe-source-file
18461@var{filename}
18462^Z^Zframe-source-file-end
18463:
18464^Z^Zframe-source-line
18465@var{line-number}
18466^Z^Zframe-source-end
18467@end smallexample
18468
18469where @var{source-intro-string} separates for the user's benefit the
18470reference from the text which precedes it, @var{filename} is the name of
18471the source file, and @var{line-number} is the line number within that
18472file (the first line is line 1).
18473
18474@findex frame-where
18475If @value{GDBN} prints some information about where the frame is from (which
18476library, which load segment, etc.; currently only done on the RS/6000),
18477it is annotated with
18478
18479@smallexample
18480^Z^Zframe-where
18481@var{information}
18482@end smallexample
18483
18484Then, if source is to actually be displayed for this frame (for example,
18485this is not true for output from the @code{backtrace} command), then a
18486@code{source} annotation (@pxref{Source Annotations}) is displayed. Unlike
18487most annotations, this is output instead of the normal text which would be
18488output, not in addition.
18489@end itemize
18490
18491@node Displays
18492@section Displays
18493
18494@findex display-begin
18495@findex display-number-end
18496@findex display-format
18497@findex display-expression
18498@findex display-expression-end
18499@findex display-value
18500@findex display-end
18501@cindex annotations for display
18502When @value{GDBN} is told to display something using the @code{display} command,
18503the results of the display are annotated:
18504
18505@smallexample
18506^Z^Zdisplay-begin
18507@var{number}
18508^Z^Zdisplay-number-end
18509@var{number-separator}
18510^Z^Zdisplay-format
18511@var{format}
18512^Z^Zdisplay-expression
18513@var{expression}
18514^Z^Zdisplay-expression-end
18515@var{expression-separator}
18516^Z^Zdisplay-value
18517@var{value}
18518^Z^Zdisplay-end
18519@end smallexample
18520
18521@noindent
18522where @var{number} is the number of the display, @var{number-separator}
18523is intended to separate the number from what follows for the user,
18524@var{format} includes information such as the size, format, or other
18525information about how the value is being displayed, @var{expression} is
18526the expression being displayed, @var{expression-separator} is intended
18527to separate the expression from the text that follows for the user,
18528and @var{value} is the actual value being displayed.
18529
18530@node Prompting
18531@section Annotation for @value{GDBN} Input
18532
18533@cindex annotations for prompts
18534When @value{GDBN} prompts for input, it annotates this fact so it is possible
18535to know when to send output, when the output from a given command is
18536over, etc.
18537
18538Different kinds of input each have a different @dfn{input type}. Each
18539input type has three annotations: a @code{pre-} annotation, which
18540denotes the beginning of any prompt which is being output, a plain
18541annotation, which denotes the end of the prompt, and then a @code{post-}
18542annotation which denotes the end of any echo which may (or may not) be
18543associated with the input. For example, the @code{prompt} input type
18544features the following annotations:
18545
18546@smallexample
18547^Z^Zpre-prompt
18548^Z^Zprompt
18549^Z^Zpost-prompt
18550@end smallexample
18551
18552The input types are
18553
18554@table @code
18555@findex pre-prompt
18556@findex prompt
18557@findex post-prompt
18558@item prompt
18559When @value{GDBN} is prompting for a command (the main @value{GDBN} prompt).
18560
18561@findex pre-commands
18562@findex commands
18563@findex post-commands
18564@item commands
18565When @value{GDBN} prompts for a set of commands, like in the @code{commands}
18566command. The annotations are repeated for each command which is input.
18567
18568@findex pre-overload-choice
18569@findex overload-choice
18570@findex post-overload-choice
18571@item overload-choice
18572When @value{GDBN} wants the user to select between various overloaded functions.
18573
18574@findex pre-query
18575@findex query
18576@findex post-query
18577@item query
18578When @value{GDBN} wants the user to confirm a potentially dangerous operation.
18579
18580@findex pre-prompt-for-continue
18581@findex prompt-for-continue
18582@findex post-prompt-for-continue
18583@item prompt-for-continue
18584When @value{GDBN} is asking the user to press return to continue. Note: Don't
18585expect this to work well; instead use @code{set height 0} to disable
18586prompting. This is because the counting of lines is buggy in the
18587presence of annotations.
18588@end table
18589
18590@node Errors
18591@section Errors
18592@cindex annotations for errors, warnings and interrupts
18593
18594@findex quit
18595@smallexample
18596^Z^Zquit
18597@end smallexample
18598
18599This annotation occurs right before @value{GDBN} responds to an interrupt.
18600
18601@findex error
18602@smallexample
18603^Z^Zerror
18604@end smallexample
18605
18606This annotation occurs right before @value{GDBN} responds to an error.
18607
18608Quit and error annotations indicate that any annotations which @value{GDBN} was
18609in the middle of may end abruptly. For example, if a
18610@code{value-history-begin} annotation is followed by a @code{error}, one
18611cannot expect to receive the matching @code{value-history-end}. One
18612cannot expect not to receive it either, however; an error annotation
18613does not necessarily mean that @value{GDBN} is immediately returning all the way
18614to the top level.
18615
18616@findex error-begin
18617A quit or error annotation may be preceded by
18618
18619@smallexample
18620^Z^Zerror-begin
18621@end smallexample
18622
18623Any output between that and the quit or error annotation is the error
18624message.
18625
18626Warning messages are not yet annotated.
18627@c If we want to change that, need to fix warning(), type_error(),
18628@c range_error(), and possibly other places.
18629
18630@node Breakpoint Info
18631@section Information on Breakpoints
18632
18633@cindex annotations for breakpoints
18634The output from the @code{info breakpoints} command is annotated as follows:
18635
18636@findex breakpoints-headers
18637@findex breakpoints-table
18638@smallexample
18639^Z^Zbreakpoints-headers
18640@var{header-entry}
18641^Z^Zbreakpoints-table
18642@end smallexample
18643
18644@noindent
18645where @var{header-entry} has the same syntax as an entry (see below) but
18646instead of containing data, it contains strings which are intended to
18647convey the meaning of each field to the user. This is followed by any
18648number of entries. If a field does not apply for this entry, it is
18649omitted. Fields may contain trailing whitespace. Each entry consists
18650of:
18651
18652@findex record
18653@findex field
18654@smallexample
18655^Z^Zrecord
18656^Z^Zfield 0
18657@var{number}
18658^Z^Zfield 1
18659@var{type}
18660^Z^Zfield 2
18661@var{disposition}
18662^Z^Zfield 3
18663@var{enable}
18664^Z^Zfield 4
18665@var{address}
18666^Z^Zfield 5
18667@var{what}
18668^Z^Zfield 6
18669@var{frame}
18670^Z^Zfield 7
18671@var{condition}
18672^Z^Zfield 8
18673@var{ignore-count}
18674^Z^Zfield 9
18675@var{commands}
18676@end smallexample
18677
18678Note that @var{address} is intended for user consumption---the syntax
18679varies depending on the language.
18680
18681The output ends with
18682
18683@findex breakpoints-table-end
18684@smallexample
18685^Z^Zbreakpoints-table-end
18686@end smallexample
18687
18688@node Invalidation
18689@section Invalidation Notices
18690
18691@cindex annotations for invalidation messages
18692The following annotations say that certain pieces of state may have
18693changed.
18694
18695@table @code
18696@findex frames-invalid
18697@item ^Z^Zframes-invalid
18698
18699The frames (for example, output from the @code{backtrace} command) may
18700have changed.
18701
18702@findex breakpoints-invalid
18703@item ^Z^Zbreakpoints-invalid
18704
18705The breakpoints may have changed. For example, the user just added or
18706deleted a breakpoint.
18707@end table
18708
18709@node Annotations for Running
18710@section Running the Program
18711@cindex annotations for running programs
18712
18713@findex starting
18714@findex stopping
18715When the program starts executing due to a @value{GDBN} command such as
18716@code{step} or @code{continue},
18717
18718@smallexample
18719^Z^Zstarting
18720@end smallexample
18721
18722is output. When the program stops,
18723
18724@smallexample
18725^Z^Zstopped
18726@end smallexample
18727
18728is output. Before the @code{stopped} annotation, a variety of
18729annotations describe how the program stopped.
18730
18731@table @code
18732@findex exited
18733@item ^Z^Zexited @var{exit-status}
18734The program exited, and @var{exit-status} is the exit status (zero for
18735successful exit, otherwise nonzero).
18736
18737@findex signalled
18738@findex signal-name
18739@findex signal-name-end
18740@findex signal-string
18741@findex signal-string-end
18742@item ^Z^Zsignalled
18743The program exited with a signal. After the @code{^Z^Zsignalled}, the
18744annotation continues:
18745
18746@smallexample
18747@var{intro-text}
18748^Z^Zsignal-name
18749@var{name}
18750^Z^Zsignal-name-end
18751@var{middle-text}
18752^Z^Zsignal-string
18753@var{string}
18754^Z^Zsignal-string-end
18755@var{end-text}
18756@end smallexample
18757
18758@noindent
18759where @var{name} is the name of the signal, such as @code{SIGILL} or
18760@code{SIGSEGV}, and @var{string} is the explanation of the signal, such
18761as @code{Illegal Instruction} or @code{Segmentation fault}.
18762@var{intro-text}, @var{middle-text}, and @var{end-text} are for the
18763user's benefit and have no particular format.
18764
18765@findex signal
18766@item ^Z^Zsignal
18767The syntax of this annotation is just like @code{signalled}, but @value{GDBN} is
18768just saying that the program received the signal, not that it was
18769terminated with it.
18770
18771@findex breakpoint
18772@item ^Z^Zbreakpoint @var{number}
18773The program hit breakpoint number @var{number}.
18774
18775@findex watchpoint
18776@item ^Z^Zwatchpoint @var{number}
18777The program hit watchpoint number @var{number}.
18778@end table
18779
18780@node Source Annotations
18781@section Displaying Source
18782@cindex annotations for source display
18783
18784@findex source
18785The following annotation is used instead of displaying source code:
18786
18787@smallexample
18788^Z^Zsource @var{filename}:@var{line}:@var{character}:@var{middle}:@var{addr}
18789@end smallexample
18790
18791where @var{filename} is an absolute file name indicating which source
18792file, @var{line} is the line number within that file (where 1 is the
18793first line in the file), @var{character} is the character position
18794within the file (where 0 is the first character in the file) (for most
18795debug formats this will necessarily point to the beginning of a line),
18796@var{middle} is @samp{middle} if @var{addr} is in the middle of the
18797line, or @samp{beg} if @var{addr} is at the beginning of the line, and
18798@var{addr} is the address in the target program associated with the
18799source which is being displayed. @var{addr} is in the form @samp{0x}
18800followed by one or more lowercase hex digits (note that this does not
18801depend on the language).
18802
18803@node TODO
18804@section Annotations We Might Want in the Future
18805
18806@format
18807 - target-invalid
18808 the target might have changed (registers, heap contents, or
18809 execution status). For performance, we might eventually want
18810 to hit `registers-invalid' and `all-registers-invalid' with
18811 greater precision
18812
18813 - systematic annotation for set/show parameters (including
18814 invalidation notices).
18815
18816 - similarly, `info' returns a list of candidates for invalidation
18817 notices.
18818@end format
c906108c 18819
8e04817f
AC
18820@node GDB Bugs
18821@chapter Reporting Bugs in @value{GDBN}
18822@cindex bugs in @value{GDBN}
18823@cindex reporting bugs in @value{GDBN}
c906108c 18824
8e04817f 18825Your bug reports play an essential role in making @value{GDBN} reliable.
c906108c 18826
8e04817f
AC
18827Reporting a bug may help you by bringing a solution to your problem, or it
18828may not. But in any case the principal function of a bug report is to help
18829the entire community by making the next version of @value{GDBN} work better. Bug
18830reports are your contribution to the maintenance of @value{GDBN}.
c906108c 18831
8e04817f
AC
18832In order for a bug report to serve its purpose, you must include the
18833information that enables us to fix the bug.
c4555f82
SC
18834
18835@menu
8e04817f
AC
18836* Bug Criteria:: Have you found a bug?
18837* Bug Reporting:: How to report bugs
c4555f82
SC
18838@end menu
18839
8e04817f
AC
18840@node Bug Criteria
18841@section Have you found a bug?
18842@cindex bug criteria
c4555f82 18843
8e04817f 18844If you are not sure whether you have found a bug, here are some guidelines:
c4555f82
SC
18845
18846@itemize @bullet
8e04817f
AC
18847@cindex fatal signal
18848@cindex debugger crash
18849@cindex crash of debugger
c4555f82 18850@item
8e04817f
AC
18851If the debugger gets a fatal signal, for any input whatever, that is a
18852@value{GDBN} bug. Reliable debuggers never crash.
18853
18854@cindex error on valid input
18855@item
18856If @value{GDBN} produces an error message for valid input, that is a
18857bug. (Note that if you're cross debugging, the problem may also be
18858somewhere in the connection to the target.)
c4555f82 18859
8e04817f 18860@cindex invalid input
c4555f82 18861@item
8e04817f
AC
18862If @value{GDBN} does not produce an error message for invalid input,
18863that is a bug. However, you should note that your idea of
18864``invalid input'' might be our idea of ``an extension'' or ``support
18865for traditional practice''.
18866
18867@item
18868If you are an experienced user of debugging tools, your suggestions
18869for improvement of @value{GDBN} are welcome in any case.
c4555f82
SC
18870@end itemize
18871
8e04817f
AC
18872@node Bug Reporting
18873@section How to report bugs
18874@cindex bug reports
18875@cindex @value{GDBN} bugs, reporting
18876
18877A number of companies and individuals offer support for @sc{gnu} products.
18878If you obtained @value{GDBN} from a support organization, we recommend you
18879contact that organization first.
18880
18881You can find contact information for many support companies and
18882individuals in the file @file{etc/SERVICE} in the @sc{gnu} Emacs
18883distribution.
18884@c should add a web page ref...
18885
129188f6
AC
18886In any event, we also recommend that you submit bug reports for
18887@value{GDBN}. The prefered method is to submit them directly using
18888@uref{http://www.gnu.org/software/gdb/bugs/, @value{GDBN}'s Bugs web
18889page}. Alternatively, the @email{bug-gdb@@gnu.org, e-mail gateway} can
18890be used.
8e04817f
AC
18891
18892@strong{Do not send bug reports to @samp{info-gdb}, or to
18893@samp{help-gdb}, or to any newsgroups.} Most users of @value{GDBN} do
18894not want to receive bug reports. Those that do have arranged to receive
18895@samp{bug-gdb}.
18896
18897The mailing list @samp{bug-gdb} has a newsgroup @samp{gnu.gdb.bug} which
18898serves as a repeater. The mailing list and the newsgroup carry exactly
18899the same messages. Often people think of posting bug reports to the
18900newsgroup instead of mailing them. This appears to work, but it has one
18901problem which can be crucial: a newsgroup posting often lacks a mail
18902path back to the sender. Thus, if we need to ask for more information,
18903we may be unable to reach you. For this reason, it is better to send
18904bug reports to the mailing list.
c4555f82 18905
8e04817f
AC
18906The fundamental principle of reporting bugs usefully is this:
18907@strong{report all the facts}. If you are not sure whether to state a
18908fact or leave it out, state it!
c4555f82 18909
8e04817f
AC
18910Often people omit facts because they think they know what causes the
18911problem and assume that some details do not matter. Thus, you might
18912assume that the name of the variable you use in an example does not matter.
18913Well, probably it does not, but one cannot be sure. Perhaps the bug is a
18914stray memory reference which happens to fetch from the location where that
18915name is stored in memory; perhaps, if the name were different, the contents
18916of that location would fool the debugger into doing the right thing despite
18917the bug. Play it safe and give a specific, complete example. That is the
18918easiest thing for you to do, and the most helpful.
c4555f82 18919
8e04817f
AC
18920Keep in mind that the purpose of a bug report is to enable us to fix the
18921bug. It may be that the bug has been reported previously, but neither
18922you nor we can know that unless your bug report is complete and
18923self-contained.
c4555f82 18924
8e04817f
AC
18925Sometimes people give a few sketchy facts and ask, ``Does this ring a
18926bell?'' Those bug reports are useless, and we urge everyone to
18927@emph{refuse to respond to them} except to chide the sender to report
18928bugs properly.
18929
18930To enable us to fix the bug, you should include all these things:
c4555f82
SC
18931
18932@itemize @bullet
18933@item
8e04817f
AC
18934The version of @value{GDBN}. @value{GDBN} announces it if you start
18935with no arguments; you can also print it at any time using @code{show
18936version}.
c4555f82 18937
8e04817f
AC
18938Without this, we will not know whether there is any point in looking for
18939the bug in the current version of @value{GDBN}.
c4555f82
SC
18940
18941@item
8e04817f
AC
18942The type of machine you are using, and the operating system name and
18943version number.
c4555f82
SC
18944
18945@item
8e04817f
AC
18946What compiler (and its version) was used to compile @value{GDBN}---e.g.
18947``@value{GCC}--2.8.1''.
c4555f82
SC
18948
18949@item
8e04817f
AC
18950What compiler (and its version) was used to compile the program you are
18951debugging---e.g. ``@value{GCC}--2.8.1'', or ``HP92453-01 A.10.32.03 HP
18952C Compiler''. For GCC, you can say @code{gcc --version} to get this
18953information; for other compilers, see the documentation for those
18954compilers.
c4555f82 18955
8e04817f
AC
18956@item
18957The command arguments you gave the compiler to compile your example and
18958observe the bug. For example, did you use @samp{-O}? To guarantee
18959you will not omit something important, list them all. A copy of the
18960Makefile (or the output from make) is sufficient.
c4555f82 18961
8e04817f
AC
18962If we were to try to guess the arguments, we would probably guess wrong
18963and then we might not encounter the bug.
c4555f82 18964
8e04817f
AC
18965@item
18966A complete input script, and all necessary source files, that will
18967reproduce the bug.
c4555f82 18968
8e04817f
AC
18969@item
18970A description of what behavior you observe that you believe is
18971incorrect. For example, ``It gets a fatal signal.''
c4555f82 18972
8e04817f
AC
18973Of course, if the bug is that @value{GDBN} gets a fatal signal, then we
18974will certainly notice it. But if the bug is incorrect output, we might
18975not notice unless it is glaringly wrong. You might as well not give us
18976a chance to make a mistake.
c4555f82 18977
8e04817f
AC
18978Even if the problem you experience is a fatal signal, you should still
18979say so explicitly. Suppose something strange is going on, such as, your
18980copy of @value{GDBN} is out of synch, or you have encountered a bug in
18981the C library on your system. (This has happened!) Your copy might
18982crash and ours would not. If you told us to expect a crash, then when
18983ours fails to crash, we would know that the bug was not happening for
18984us. If you had not told us to expect a crash, then we would not be able
18985to draw any conclusion from our observations.
c4555f82 18986
8e04817f
AC
18987@item
18988If you wish to suggest changes to the @value{GDBN} source, send us context
18989diffs. If you even discuss something in the @value{GDBN} source, refer to
18990it by context, not by line number.
c4555f82 18991
8e04817f
AC
18992The line numbers in our development sources will not match those in your
18993sources. Your line numbers would convey no useful information to us.
c4555f82 18994
8e04817f 18995@end itemize
c4555f82 18996
8e04817f 18997Here are some things that are not necessary:
c4555f82 18998
8e04817f
AC
18999@itemize @bullet
19000@item
19001A description of the envelope of the bug.
c4555f82 19002
8e04817f
AC
19003Often people who encounter a bug spend a lot of time investigating
19004which changes to the input file will make the bug go away and which
19005changes will not affect it.
c4555f82 19006
8e04817f
AC
19007This is often time consuming and not very useful, because the way we
19008will find the bug is by running a single example under the debugger
19009with breakpoints, not by pure deduction from a series of examples.
19010We recommend that you save your time for something else.
c4555f82 19011
8e04817f
AC
19012Of course, if you can find a simpler example to report @emph{instead}
19013of the original one, that is a convenience for us. Errors in the
19014output will be easier to spot, running under the debugger will take
19015less time, and so on.
c4555f82 19016
8e04817f
AC
19017However, simplification is not vital; if you do not want to do this,
19018report the bug anyway and send us the entire test case you used.
c4555f82 19019
8e04817f
AC
19020@item
19021A patch for the bug.
c4555f82 19022
8e04817f
AC
19023A patch for the bug does help us if it is a good one. But do not omit
19024the necessary information, such as the test case, on the assumption that
19025a patch is all we need. We might see problems with your patch and decide
19026to fix the problem another way, or we might not understand it at all.
c4555f82 19027
8e04817f
AC
19028Sometimes with a program as complicated as @value{GDBN} it is very hard to
19029construct an example that will make the program follow a certain path
19030through the code. If you do not send us the example, we will not be able
19031to construct one, so we will not be able to verify that the bug is fixed.
c4555f82 19032
8e04817f
AC
19033And if we cannot understand what bug you are trying to fix, or why your
19034patch should be an improvement, we will not install it. A test case will
19035help us to understand.
c4555f82 19036
8e04817f
AC
19037@item
19038A guess about what the bug is or what it depends on.
c4555f82 19039
8e04817f
AC
19040Such guesses are usually wrong. Even we cannot guess right about such
19041things without first using the debugger to find the facts.
19042@end itemize
c4555f82 19043
8e04817f
AC
19044@c The readline documentation is distributed with the readline code
19045@c and consists of the two following files:
19046@c rluser.texinfo
19047@c inc-hist.texinfo
19048@c Use -I with makeinfo to point to the appropriate directory,
19049@c environment var TEXINPUTS with TeX.
19050@include rluser.texinfo
19051@include inc-hist.texinfo
c4555f82 19052
c4555f82 19053
8e04817f
AC
19054@node Formatting Documentation
19055@appendix Formatting Documentation
c4555f82 19056
8e04817f
AC
19057@cindex @value{GDBN} reference card
19058@cindex reference card
19059The @value{GDBN} 4 release includes an already-formatted reference card, ready
19060for printing with PostScript or Ghostscript, in the @file{gdb}
19061subdirectory of the main source directory@footnote{In
19062@file{gdb-@value{GDBVN}/gdb/refcard.ps} of the version @value{GDBVN}
19063release.}. If you can use PostScript or Ghostscript with your printer,
19064you can print the reference card immediately with @file{refcard.ps}.
c4555f82 19065
8e04817f
AC
19066The release also includes the source for the reference card. You
19067can format it, using @TeX{}, by typing:
c4555f82 19068
474c8240 19069@smallexample
8e04817f 19070make refcard.dvi
474c8240 19071@end smallexample
c4555f82 19072
8e04817f
AC
19073The @value{GDBN} reference card is designed to print in @dfn{landscape}
19074mode on US ``letter'' size paper;
19075that is, on a sheet 11 inches wide by 8.5 inches
19076high. You will need to specify this form of printing as an option to
19077your @sc{dvi} output program.
c4555f82 19078
8e04817f 19079@cindex documentation
c4555f82 19080
8e04817f
AC
19081All the documentation for @value{GDBN} comes as part of the machine-readable
19082distribution. The documentation is written in Texinfo format, which is
19083a documentation system that uses a single source file to produce both
19084on-line information and a printed manual. You can use one of the Info
19085formatting commands to create the on-line version of the documentation
19086and @TeX{} (or @code{texi2roff}) to typeset the printed version.
c4555f82 19087
8e04817f
AC
19088@value{GDBN} includes an already formatted copy of the on-line Info
19089version of this manual in the @file{gdb} subdirectory. The main Info
19090file is @file{gdb-@value{GDBVN}/gdb/gdb.info}, and it refers to
19091subordinate files matching @samp{gdb.info*} in the same directory. If
19092necessary, you can print out these files, or read them with any editor;
19093but they are easier to read using the @code{info} subsystem in @sc{gnu}
19094Emacs or the standalone @code{info} program, available as part of the
19095@sc{gnu} Texinfo distribution.
c4555f82 19096
8e04817f
AC
19097If you want to format these Info files yourself, you need one of the
19098Info formatting programs, such as @code{texinfo-format-buffer} or
19099@code{makeinfo}.
c4555f82 19100
8e04817f
AC
19101If you have @code{makeinfo} installed, and are in the top level
19102@value{GDBN} source directory (@file{gdb-@value{GDBVN}}, in the case of
19103version @value{GDBVN}), you can make the Info file by typing:
c4555f82 19104
474c8240 19105@smallexample
8e04817f
AC
19106cd gdb
19107make gdb.info
474c8240 19108@end smallexample
c4555f82 19109
8e04817f
AC
19110If you want to typeset and print copies of this manual, you need @TeX{},
19111a program to print its @sc{dvi} output files, and @file{texinfo.tex}, the
19112Texinfo definitions file.
c4555f82 19113
8e04817f
AC
19114@TeX{} is a typesetting program; it does not print files directly, but
19115produces output files called @sc{dvi} files. To print a typeset
19116document, you need a program to print @sc{dvi} files. If your system
19117has @TeX{} installed, chances are it has such a program. The precise
19118command to use depends on your system; @kbd{lpr -d} is common; another
19119(for PostScript devices) is @kbd{dvips}. The @sc{dvi} print command may
19120require a file name without any extension or a @samp{.dvi} extension.
c4555f82 19121
8e04817f
AC
19122@TeX{} also requires a macro definitions file called
19123@file{texinfo.tex}. This file tells @TeX{} how to typeset a document
19124written in Texinfo format. On its own, @TeX{} cannot either read or
19125typeset a Texinfo file. @file{texinfo.tex} is distributed with GDB
19126and is located in the @file{gdb-@var{version-number}/texinfo}
19127directory.
c4555f82 19128
8e04817f
AC
19129If you have @TeX{} and a @sc{dvi} printer program installed, you can
19130typeset and print this manual. First switch to the the @file{gdb}
19131subdirectory of the main source directory (for example, to
19132@file{gdb-@value{GDBVN}/gdb}) and type:
c4555f82 19133
474c8240 19134@smallexample
8e04817f 19135make gdb.dvi
474c8240 19136@end smallexample
c4555f82 19137
8e04817f 19138Then give @file{gdb.dvi} to your @sc{dvi} printing program.
c4555f82 19139
8e04817f
AC
19140@node Installing GDB
19141@appendix Installing @value{GDBN}
19142@cindex configuring @value{GDBN}
19143@cindex installation
94e91d6d 19144@cindex configuring @value{GDBN}, and source tree subdirectories
c4555f82 19145
8e04817f
AC
19146@value{GDBN} comes with a @code{configure} script that automates the process
19147of preparing @value{GDBN} for installation; you can then use @code{make} to
19148build the @code{gdb} program.
19149@iftex
19150@c irrelevant in info file; it's as current as the code it lives with.
19151@footnote{If you have a more recent version of @value{GDBN} than @value{GDBVN},
19152look at the @file{README} file in the sources; we may have improved the
19153installation procedures since publishing this manual.}
19154@end iftex
c4555f82 19155
8e04817f
AC
19156The @value{GDBN} distribution includes all the source code you need for
19157@value{GDBN} in a single directory, whose name is usually composed by
19158appending the version number to @samp{gdb}.
c4555f82 19159
8e04817f
AC
19160For example, the @value{GDBN} version @value{GDBVN} distribution is in the
19161@file{gdb-@value{GDBVN}} directory. That directory contains:
c4555f82 19162
8e04817f
AC
19163@table @code
19164@item gdb-@value{GDBVN}/configure @r{(and supporting files)}
19165script for configuring @value{GDBN} and all its supporting libraries
c4555f82 19166
8e04817f
AC
19167@item gdb-@value{GDBVN}/gdb
19168the source specific to @value{GDBN} itself
c4555f82 19169
8e04817f
AC
19170@item gdb-@value{GDBVN}/bfd
19171source for the Binary File Descriptor library
c906108c 19172
8e04817f
AC
19173@item gdb-@value{GDBVN}/include
19174@sc{gnu} include files
c906108c 19175
8e04817f
AC
19176@item gdb-@value{GDBVN}/libiberty
19177source for the @samp{-liberty} free software library
c906108c 19178
8e04817f
AC
19179@item gdb-@value{GDBVN}/opcodes
19180source for the library of opcode tables and disassemblers
c906108c 19181
8e04817f
AC
19182@item gdb-@value{GDBVN}/readline
19183source for the @sc{gnu} command-line interface
c906108c 19184
8e04817f
AC
19185@item gdb-@value{GDBVN}/glob
19186source for the @sc{gnu} filename pattern-matching subroutine
c906108c 19187
8e04817f
AC
19188@item gdb-@value{GDBVN}/mmalloc
19189source for the @sc{gnu} memory-mapped malloc package
19190@end table
c906108c 19191
8e04817f
AC
19192The simplest way to configure and build @value{GDBN} is to run @code{configure}
19193from the @file{gdb-@var{version-number}} source directory, which in
19194this example is the @file{gdb-@value{GDBVN}} directory.
c906108c 19195
8e04817f
AC
19196First switch to the @file{gdb-@var{version-number}} source directory
19197if you are not already in it; then run @code{configure}. Pass the
19198identifier for the platform on which @value{GDBN} will run as an
19199argument.
c906108c 19200
8e04817f 19201For example:
c906108c 19202
474c8240 19203@smallexample
8e04817f
AC
19204cd gdb-@value{GDBVN}
19205./configure @var{host}
19206make
474c8240 19207@end smallexample
c906108c 19208
8e04817f
AC
19209@noindent
19210where @var{host} is an identifier such as @samp{sun4} or
19211@samp{decstation}, that identifies the platform where @value{GDBN} will run.
19212(You can often leave off @var{host}; @code{configure} tries to guess the
19213correct value by examining your system.)
c906108c 19214
8e04817f
AC
19215Running @samp{configure @var{host}} and then running @code{make} builds the
19216@file{bfd}, @file{readline}, @file{mmalloc}, and @file{libiberty}
19217libraries, then @code{gdb} itself. The configured source files, and the
19218binaries, are left in the corresponding source directories.
c906108c 19219
8e04817f
AC
19220@need 750
19221@code{configure} is a Bourne-shell (@code{/bin/sh}) script; if your
19222system does not recognize this automatically when you run a different
19223shell, you may need to run @code{sh} on it explicitly:
c906108c 19224
474c8240 19225@smallexample
8e04817f 19226sh configure @var{host}
474c8240 19227@end smallexample
c906108c 19228
8e04817f
AC
19229If you run @code{configure} from a directory that contains source
19230directories for multiple libraries or programs, such as the
19231@file{gdb-@value{GDBVN}} source directory for version @value{GDBVN}, @code{configure}
19232creates configuration files for every directory level underneath (unless
19233you tell it not to, with the @samp{--norecursion} option).
19234
94e91d6d
MC
19235You should run the @code{configure} script from the top directory in the
19236source tree, the @file{gdb-@var{version-number}} directory. If you run
19237@code{configure} from one of the subdirectories, you will configure only
19238that subdirectory. That is usually not what you want. In particular,
19239if you run the first @code{configure} from the @file{gdb} subdirectory
19240of the @file{gdb-@var{version-number}} directory, you will omit the
19241configuration of @file{bfd}, @file{readline}, and other sibling
19242directories of the @file{gdb} subdirectory. This leads to build errors
19243about missing include files such as @file{bfd/bfd.h}.
c906108c 19244
8e04817f
AC
19245You can install @code{@value{GDBP}} anywhere; it has no hardwired paths.
19246However, you should make sure that the shell on your path (named by
19247the @samp{SHELL} environment variable) is publicly readable. Remember
19248that @value{GDBN} uses the shell to start your program---some systems refuse to
19249let @value{GDBN} debug child processes whose programs are not readable.
c906108c 19250
8e04817f
AC
19251@menu
19252* Separate Objdir:: Compiling @value{GDBN} in another directory
19253* Config Names:: Specifying names for hosts and targets
19254* Configure Options:: Summary of options for configure
19255@end menu
c906108c 19256
8e04817f
AC
19257@node Separate Objdir
19258@section Compiling @value{GDBN} in another directory
c906108c 19259
8e04817f
AC
19260If you want to run @value{GDBN} versions for several host or target machines,
19261you need a different @code{gdb} compiled for each combination of
19262host and target. @code{configure} is designed to make this easy by
19263allowing you to generate each configuration in a separate subdirectory,
19264rather than in the source directory. If your @code{make} program
19265handles the @samp{VPATH} feature (@sc{gnu} @code{make} does), running
19266@code{make} in each of these directories builds the @code{gdb}
19267program specified there.
c906108c 19268
8e04817f
AC
19269To build @code{gdb} in a separate directory, run @code{configure}
19270with the @samp{--srcdir} option to specify where to find the source.
19271(You also need to specify a path to find @code{configure}
19272itself from your working directory. If the path to @code{configure}
19273would be the same as the argument to @samp{--srcdir}, you can leave out
19274the @samp{--srcdir} option; it is assumed.)
c906108c 19275
8e04817f
AC
19276For example, with version @value{GDBVN}, you can build @value{GDBN} in a
19277separate directory for a Sun 4 like this:
c906108c 19278
474c8240 19279@smallexample
8e04817f
AC
19280@group
19281cd gdb-@value{GDBVN}
19282mkdir ../gdb-sun4
19283cd ../gdb-sun4
19284../gdb-@value{GDBVN}/configure sun4
19285make
19286@end group
474c8240 19287@end smallexample
c906108c 19288
8e04817f
AC
19289When @code{configure} builds a configuration using a remote source
19290directory, it creates a tree for the binaries with the same structure
19291(and using the same names) as the tree under the source directory. In
19292the example, you'd find the Sun 4 library @file{libiberty.a} in the
19293directory @file{gdb-sun4/libiberty}, and @value{GDBN} itself in
19294@file{gdb-sun4/gdb}.
c906108c 19295
94e91d6d
MC
19296Make sure that your path to the @file{configure} script has just one
19297instance of @file{gdb} in it. If your path to @file{configure} looks
19298like @file{../gdb-@value{GDBVN}/gdb/configure}, you are configuring only
19299one subdirectory of @value{GDBN}, not the whole package. This leads to
19300build errors about missing include files such as @file{bfd/bfd.h}.
19301
8e04817f
AC
19302One popular reason to build several @value{GDBN} configurations in separate
19303directories is to configure @value{GDBN} for cross-compiling (where
19304@value{GDBN} runs on one machine---the @dfn{host}---while debugging
19305programs that run on another machine---the @dfn{target}).
19306You specify a cross-debugging target by
19307giving the @samp{--target=@var{target}} option to @code{configure}.
c906108c 19308
8e04817f
AC
19309When you run @code{make} to build a program or library, you must run
19310it in a configured directory---whatever directory you were in when you
19311called @code{configure} (or one of its subdirectories).
c906108c 19312
8e04817f
AC
19313The @code{Makefile} that @code{configure} generates in each source
19314directory also runs recursively. If you type @code{make} in a source
19315directory such as @file{gdb-@value{GDBVN}} (or in a separate configured
19316directory configured with @samp{--srcdir=@var{dirname}/gdb-@value{GDBVN}}), you
19317will build all the required libraries, and then build GDB.
c906108c 19318
8e04817f
AC
19319When you have multiple hosts or targets configured in separate
19320directories, you can run @code{make} on them in parallel (for example,
19321if they are NFS-mounted on each of the hosts); they will not interfere
19322with each other.
c906108c 19323
8e04817f
AC
19324@node Config Names
19325@section Specifying names for hosts and targets
c906108c 19326
8e04817f
AC
19327The specifications used for hosts and targets in the @code{configure}
19328script are based on a three-part naming scheme, but some short predefined
19329aliases are also supported. The full naming scheme encodes three pieces
19330of information in the following pattern:
c906108c 19331
474c8240 19332@smallexample
8e04817f 19333@var{architecture}-@var{vendor}-@var{os}
474c8240 19334@end smallexample
c906108c 19335
8e04817f
AC
19336For example, you can use the alias @code{sun4} as a @var{host} argument,
19337or as the value for @var{target} in a @code{--target=@var{target}}
19338option. The equivalent full name is @samp{sparc-sun-sunos4}.
c906108c 19339
8e04817f
AC
19340The @code{configure} script accompanying @value{GDBN} does not provide
19341any query facility to list all supported host and target names or
19342aliases. @code{configure} calls the Bourne shell script
19343@code{config.sub} to map abbreviations to full names; you can read the
19344script, if you wish, or you can use it to test your guesses on
19345abbreviations---for example:
c906108c 19346
8e04817f
AC
19347@smallexample
19348% sh config.sub i386-linux
19349i386-pc-linux-gnu
19350% sh config.sub alpha-linux
19351alpha-unknown-linux-gnu
19352% sh config.sub hp9k700
19353hppa1.1-hp-hpux
19354% sh config.sub sun4
19355sparc-sun-sunos4.1.1
19356% sh config.sub sun3
19357m68k-sun-sunos4.1.1
19358% sh config.sub i986v
19359Invalid configuration `i986v': machine `i986v' not recognized
19360@end smallexample
c906108c 19361
8e04817f
AC
19362@noindent
19363@code{config.sub} is also distributed in the @value{GDBN} source
19364directory (@file{gdb-@value{GDBVN}}, for version @value{GDBVN}).
d700128c 19365
8e04817f
AC
19366@node Configure Options
19367@section @code{configure} options
c906108c 19368
8e04817f
AC
19369Here is a summary of the @code{configure} options and arguments that
19370are most often useful for building @value{GDBN}. @code{configure} also has
19371several other options not listed here. @inforef{What Configure
19372Does,,configure.info}, for a full explanation of @code{configure}.
c906108c 19373
474c8240 19374@smallexample
8e04817f
AC
19375configure @r{[}--help@r{]}
19376 @r{[}--prefix=@var{dir}@r{]}
19377 @r{[}--exec-prefix=@var{dir}@r{]}
19378 @r{[}--srcdir=@var{dirname}@r{]}
19379 @r{[}--norecursion@r{]} @r{[}--rm@r{]}
19380 @r{[}--target=@var{target}@r{]}
19381 @var{host}
474c8240 19382@end smallexample
c906108c 19383
8e04817f
AC
19384@noindent
19385You may introduce options with a single @samp{-} rather than
19386@samp{--} if you prefer; but you may abbreviate option names if you use
19387@samp{--}.
c906108c 19388
8e04817f
AC
19389@table @code
19390@item --help
19391Display a quick summary of how to invoke @code{configure}.
c906108c 19392
8e04817f
AC
19393@item --prefix=@var{dir}
19394Configure the source to install programs and files under directory
19395@file{@var{dir}}.
c906108c 19396
8e04817f
AC
19397@item --exec-prefix=@var{dir}
19398Configure the source to install programs under directory
19399@file{@var{dir}}.
c906108c 19400
8e04817f
AC
19401@c avoid splitting the warning from the explanation:
19402@need 2000
19403@item --srcdir=@var{dirname}
19404@strong{Warning: using this option requires @sc{gnu} @code{make}, or another
19405@code{make} that implements the @code{VPATH} feature.}@*
19406Use this option to make configurations in directories separate from the
19407@value{GDBN} source directories. Among other things, you can use this to
19408build (or maintain) several configurations simultaneously, in separate
19409directories. @code{configure} writes configuration specific files in
19410the current directory, but arranges for them to use the source in the
19411directory @var{dirname}. @code{configure} creates directories under
19412the working directory in parallel to the source directories below
19413@var{dirname}.
c906108c 19414
8e04817f
AC
19415@item --norecursion
19416Configure only the directory level where @code{configure} is executed; do not
19417propagate configuration to subdirectories.
c906108c 19418
8e04817f
AC
19419@item --target=@var{target}
19420Configure @value{GDBN} for cross-debugging programs running on the specified
19421@var{target}. Without this option, @value{GDBN} is configured to debug
19422programs that run on the same machine (@var{host}) as @value{GDBN} itself.
c906108c 19423
8e04817f 19424There is no convenient way to generate a list of all available targets.
c906108c 19425
8e04817f
AC
19426@item @var{host} @dots{}
19427Configure @value{GDBN} to run on the specified @var{host}.
c906108c 19428
8e04817f
AC
19429There is no convenient way to generate a list of all available hosts.
19430@end table
c906108c 19431
8e04817f
AC
19432There are many other options available as well, but they are generally
19433needed for special purposes only.
c906108c 19434
8e04817f
AC
19435@node Maintenance Commands
19436@appendix Maintenance Commands
19437@cindex maintenance commands
19438@cindex internal commands
c906108c 19439
8e04817f
AC
19440In addition to commands intended for @value{GDBN} users, @value{GDBN}
19441includes a number of commands intended for @value{GDBN} developers.
19442These commands are provided here for reference.
c906108c 19443
8e04817f
AC
19444@table @code
19445@kindex maint info breakpoints
19446@item @anchor{maint info breakpoints}maint info breakpoints
19447Using the same format as @samp{info breakpoints}, display both the
19448breakpoints you've set explicitly, and those @value{GDBN} is using for
19449internal purposes. Internal breakpoints are shown with negative
19450breakpoint numbers. The type column identifies what kind of breakpoint
19451is shown:
c906108c 19452
8e04817f
AC
19453@table @code
19454@item breakpoint
19455Normal, explicitly set breakpoint.
c906108c 19456
8e04817f
AC
19457@item watchpoint
19458Normal, explicitly set watchpoint.
c906108c 19459
8e04817f
AC
19460@item longjmp
19461Internal breakpoint, used to handle correctly stepping through
19462@code{longjmp} calls.
c906108c 19463
8e04817f
AC
19464@item longjmp resume
19465Internal breakpoint at the target of a @code{longjmp}.
c906108c 19466
8e04817f
AC
19467@item until
19468Temporary internal breakpoint used by the @value{GDBN} @code{until} command.
c906108c 19469
8e04817f
AC
19470@item finish
19471Temporary internal breakpoint used by the @value{GDBN} @code{finish} command.
c906108c 19472
8e04817f
AC
19473@item shlib events
19474Shared library events.
c906108c 19475
8e04817f 19476@end table
c906108c 19477
8d30a00d
AC
19478@kindex maint internal-error
19479@kindex maint internal-warning
19480@item maint internal-error
19481@itemx maint internal-warning
19482Cause @value{GDBN} to call the internal function @code{internal_error}
19483or @code{internal_warning} and hence behave as though an internal error
19484or internal warning has been detected. In addition to reporting the
19485internal problem, these functions give the user the opportunity to
19486either quit @value{GDBN} or create a core file of the current
19487@value{GDBN} session.
19488
19489@smallexample
19490(gdb) @kbd{maint internal-error testing, 1, 2}
19491@dots{}/maint.c:121: internal-error: testing, 1, 2
19492A problem internal to GDB has been detected. Further
19493debugging may prove unreliable.
19494Quit this debugging session? (y or n) @kbd{n}
19495Create a core file? (y or n) @kbd{n}
19496(gdb)
19497@end smallexample
19498
19499Takes an optional parameter that is used as the text of the error or
19500warning message.
19501
00905d52
AC
19502@kindex maint print dummy-frames
19503@item maint print dummy-frames
19504
19505Prints the contents of @value{GDBN}'s internal dummy-frame stack.
19506
19507@smallexample
19508(gdb) @kbd{b add}
19509@dots{}
19510(gdb) @kbd{print add(2,3)}
19511Breakpoint 2, add (a=2, b=3) at @dots{}
1951258 return (a + b);
19513The program being debugged stopped while in a function called from GDB.
19514@dots{}
19515(gdb) @kbd{maint print dummy-frames}
195160x1a57c80: pc=0x01014068 fp=0x0200bddc sp=0x0200bdd6
19517 top=0x0200bdd4 id=@{stack=0x200bddc,code=0x101405c@}
19518 call_lo=0x01014000 call_hi=0x01014001
19519(gdb)
19520@end smallexample
19521
19522Takes an optional file parameter.
19523
0680b120
AC
19524@kindex maint print registers
19525@kindex maint print raw-registers
19526@kindex maint print cooked-registers
617073a9 19527@kindex maint print register-groups
0680b120
AC
19528@item maint print registers
19529@itemx maint print raw-registers
19530@itemx maint print cooked-registers
617073a9 19531@itemx maint print register-groups
0680b120
AC
19532Print @value{GDBN}'s internal register data structures.
19533
617073a9
AC
19534The command @code{maint print raw-registers} includes the contents of
19535the raw register cache; the command @code{maint print cooked-registers}
19536includes the (cooked) value of all registers; and the command
19537@code{maint print register-groups} includes the groups that each
19538register is a member of. @xref{Registers,, Registers, gdbint,
19539@value{GDBN} Internals}.
0680b120
AC
19540
19541Takes an optional file parameter.
19542
617073a9
AC
19543@kindex maint print reggroups
19544@item maint print reggroups
19545Print @value{GDBN}'s internal register group data structures.
19546
19547Takes an optional file parameter.
19548
19549@smallexample
19550(gdb) @kbd{maint print reggroups}
19551 Group Type
19552 general user
19553 float user
19554 all user
19555 vector user
19556 system user
19557 save internal
19558 restore internal
19559@end smallexample
19560
e7ba9c65
DJ
19561@kindex maint set profile
19562@kindex maint show profile
19563@cindex profiling GDB
19564@item maint set profile
19565@itemx maint show profile
19566Control profiling of @value{GDBN}.
19567
19568Profiling will be disabled until you use the @samp{maint set profile}
19569command to enable it. When you enable profiling, the system will begin
19570collecting timing and execution count data; when you disable profiling or
19571exit @value{GDBN}, the results will be written to a log file. Remember that
19572if you use profiling, @value{GDBN} will overwrite the profiling log file
19573(often called @file{gmon.out}). If you have a record of important profiling
19574data in a @file{gmon.out} file, be sure to move it to a safe location.
19575
19576Configuring with @samp{--enable-profiling} arranges for @value{GDBN} to be
19577compiled with the @samp{-pg} compiler option.
19578
8e04817f 19579@end table
c906108c 19580
c906108c 19581
e0ce93ac 19582@node Remote Protocol
8e04817f 19583@appendix @value{GDBN} Remote Serial Protocol
c906108c 19584
ee2d5c50
AC
19585@menu
19586* Overview::
19587* Packets::
19588* Stop Reply Packets::
19589* General Query Packets::
19590* Register Packet Format::
19591* Examples::
0ce1b118 19592* File-I/O remote protocol extension::
ee2d5c50
AC
19593@end menu
19594
19595@node Overview
19596@section Overview
19597
8e04817f
AC
19598There may be occasions when you need to know something about the
19599protocol---for example, if there is only one serial port to your target
19600machine, you might want your program to do something special if it
19601recognizes a packet meant for @value{GDBN}.
c906108c 19602
d2c6833e 19603In the examples below, @samp{->} and @samp{<-} are used to indicate
8e04817f 19604transmitted and received data respectfully.
c906108c 19605
8e04817f
AC
19606@cindex protocol, @value{GDBN} remote serial
19607@cindex serial protocol, @value{GDBN} remote
19608@cindex remote serial protocol
19609All @value{GDBN} commands and responses (other than acknowledgments) are
19610sent as a @var{packet}. A @var{packet} is introduced with the character
19611@samp{$}, the actual @var{packet-data}, and the terminating character
19612@samp{#} followed by a two-digit @var{checksum}:
c906108c 19613
474c8240 19614@smallexample
8e04817f 19615@code{$}@var{packet-data}@code{#}@var{checksum}
474c8240 19616@end smallexample
8e04817f 19617@noindent
c906108c 19618
8e04817f
AC
19619@cindex checksum, for @value{GDBN} remote
19620@noindent
19621The two-digit @var{checksum} is computed as the modulo 256 sum of all
19622characters between the leading @samp{$} and the trailing @samp{#} (an
19623eight bit unsigned checksum).
c906108c 19624
8e04817f
AC
19625Implementors should note that prior to @value{GDBN} 5.0 the protocol
19626specification also included an optional two-digit @var{sequence-id}:
c906108c 19627
474c8240 19628@smallexample
8e04817f 19629@code{$}@var{sequence-id}@code{:}@var{packet-data}@code{#}@var{checksum}
474c8240 19630@end smallexample
c906108c 19631
8e04817f
AC
19632@cindex sequence-id, for @value{GDBN} remote
19633@noindent
19634That @var{sequence-id} was appended to the acknowledgment. @value{GDBN}
19635has never output @var{sequence-id}s. Stubs that handle packets added
19636since @value{GDBN} 5.0 must not accept @var{sequence-id}.
c906108c 19637
8e04817f
AC
19638@cindex acknowledgment, for @value{GDBN} remote
19639When either the host or the target machine receives a packet, the first
19640response expected is an acknowledgment: either @samp{+} (to indicate
19641the package was received correctly) or @samp{-} (to request
19642retransmission):
c906108c 19643
474c8240 19644@smallexample
d2c6833e
AC
19645-> @code{$}@var{packet-data}@code{#}@var{checksum}
19646<- @code{+}
474c8240 19647@end smallexample
8e04817f 19648@noindent
53a5351d 19649
8e04817f
AC
19650The host (@value{GDBN}) sends @var{command}s, and the target (the
19651debugging stub incorporated in your program) sends a @var{response}. In
19652the case of step and continue @var{command}s, the response is only sent
19653when the operation has completed (the target has again stopped).
c906108c 19654
8e04817f
AC
19655@var{packet-data} consists of a sequence of characters with the
19656exception of @samp{#} and @samp{$} (see @samp{X} packet for additional
19657exceptions).
c906108c 19658
8e04817f 19659Fields within the packet should be separated using @samp{,} @samp{;} or
ee2d5c50 19660@cindex remote protocol, field separator
8e04817f 19661@samp{:}. Except where otherwise noted all numbers are represented in
ee2d5c50 19662@sc{hex} with leading zeros suppressed.
c906108c 19663
8e04817f
AC
19664Implementors should note that prior to @value{GDBN} 5.0, the character
19665@samp{:} could not appear as the third character in a packet (as it
19666would potentially conflict with the @var{sequence-id}).
c906108c 19667
8e04817f
AC
19668Response @var{data} can be run-length encoded to save space. A @samp{*}
19669means that the next character is an @sc{ascii} encoding giving a repeat count
19670which stands for that many repetitions of the character preceding the
19671@samp{*}. The encoding is @code{n+29}, yielding a printable character
19672where @code{n >=3} (which is where rle starts to win). The printable
19673characters @samp{$}, @samp{#}, @samp{+} and @samp{-} or with a numeric
19674value greater than 126 should not be used.
c906108c 19675
8e04817f
AC
19676Some remote systems have used a different run-length encoding mechanism
19677loosely refered to as the cisco encoding. Following the @samp{*}
19678character are two hex digits that indicate the size of the packet.
c906108c 19679
8e04817f 19680So:
474c8240 19681@smallexample
8e04817f 19682"@code{0* }"
474c8240 19683@end smallexample
8e04817f
AC
19684@noindent
19685means the same as "0000".
c906108c 19686
8e04817f
AC
19687The error response returned for some packets includes a two character
19688error number. That number is not well defined.
c906108c 19689
8e04817f
AC
19690For any @var{command} not supported by the stub, an empty response
19691(@samp{$#00}) should be returned. That way it is possible to extend the
19692protocol. A newer @value{GDBN} can tell if a packet is supported based
19693on that response.
c906108c 19694
8e04817f
AC
19695A stub is required to support the @samp{g}, @samp{G}, @samp{m}, @samp{M},
19696@samp{c}, and @samp{s} @var{command}s. All other @var{command}s are
19697optional.
c906108c 19698
ee2d5c50
AC
19699@node Packets
19700@section Packets
19701
19702The following table provides a complete list of all currently defined
19703@var{command}s and their corresponding response @var{data}.
19704
19705@table @r
19706
19707@item @code{!} --- extended mode
19708@cindex @code{!} packet
19709
8e04817f
AC
19710Enable extended mode. In extended mode, the remote server is made
19711persistent. The @samp{R} packet is used to restart the program being
19712debugged.
ee2d5c50
AC
19713
19714Reply:
19715@table @samp
19716@item OK
8e04817f 19717The remote target both supports and has enabled extended mode.
ee2d5c50 19718@end table
c906108c 19719
ee2d5c50
AC
19720@item @code{?} --- last signal
19721@cindex @code{?} packet
c906108c 19722
ee2d5c50
AC
19723Indicate the reason the target halted. The reply is the same as for
19724step and continue.
c906108c 19725
ee2d5c50
AC
19726Reply:
19727@xref{Stop Reply Packets}, for the reply specifications.
19728
19729@item @code{a} --- reserved
19730
19731Reserved for future use.
19732
19733@item @code{A}@var{arglen}@code{,}@var{argnum}@code{,}@var{arg}@code{,@dots{}} --- set program arguments @strong{(reserved)}
19734@cindex @code{A} packet
c906108c 19735
8e04817f
AC
19736Initialized @samp{argv[]} array passed into program. @var{arglen}
19737specifies the number of bytes in the hex encoded byte stream @var{arg}.
ee2d5c50
AC
19738See @code{gdbserver} for more details.
19739
19740Reply:
19741@table @samp
19742@item OK
19743@item E@var{NN}
19744@end table
19745
19746@item @code{b}@var{baud} --- set baud @strong{(deprecated)}
19747@cindex @code{b} packet
19748
19749Change the serial line speed to @var{baud}.
19750
19751JTC: @emph{When does the transport layer state change? When it's
19752received, or after the ACK is transmitted. In either case, there are
19753problems if the command or the acknowledgment packet is dropped.}
19754
19755Stan: @emph{If people really wanted to add something like this, and get
19756it working for the first time, they ought to modify ser-unix.c to send
19757some kind of out-of-band message to a specially-setup stub and have the
19758switch happen "in between" packets, so that from remote protocol's point
19759of view, nothing actually happened.}
19760
19761@item @code{B}@var{addr},@var{mode} --- set breakpoint @strong{(deprecated)}
19762@cindex @code{B} packet
19763
8e04817f 19764Set (@var{mode} is @samp{S}) or clear (@var{mode} is @samp{C}) a
2f870471
AC
19765breakpoint at @var{addr}.
19766
19767This packet has been replaced by the @samp{Z} and @samp{z} packets
19768(@pxref{insert breakpoint or watchpoint packet}).
c906108c 19769
ee2d5c50
AC
19770@item @code{c}@var{addr} --- continue
19771@cindex @code{c} packet
19772
19773@var{addr} is address to resume. If @var{addr} is omitted, resume at
8e04817f 19774current address.
c906108c 19775
ee2d5c50
AC
19776Reply:
19777@xref{Stop Reply Packets}, for the reply specifications.
19778
19779@item @code{C}@var{sig}@code{;}@var{addr} --- continue with signal
19780@cindex @code{C} packet
19781
8e04817f
AC
19782Continue with signal @var{sig} (hex signal number). If
19783@code{;}@var{addr} is omitted, resume at same address.
c906108c 19784
ee2d5c50
AC
19785Reply:
19786@xref{Stop Reply Packets}, for the reply specifications.
c906108c 19787
ee2d5c50
AC
19788@item @code{d} --- toggle debug @strong{(deprecated)}
19789@cindex @code{d} packet
19790
19791Toggle debug flag.
19792
19793@item @code{D} --- detach
19794@cindex @code{D} packet
19795
19796Detach @value{GDBN} from the remote system. Sent to the remote target
07f31aa6 19797before @value{GDBN} disconnects via the @code{detach} command.
ee2d5c50
AC
19798
19799Reply:
19800@table @samp
19801@item @emph{no response}
8e04817f 19802@value{GDBN} does not check for any response after sending this packet.
ee2d5c50 19803@end table
c906108c 19804
ee2d5c50 19805@item @code{e} --- reserved
c906108c 19806
ee2d5c50 19807Reserved for future use.
c906108c 19808
ee2d5c50 19809@item @code{E} --- reserved
c906108c 19810
ee2d5c50 19811Reserved for future use.
c906108c 19812
ee2d5c50
AC
19813@item @code{f} --- reserved
19814
19815Reserved for future use.
19816
0ce1b118
CV
19817@item @code{F}@var{RC}@code{,}@var{EE}@code{,}@var{CF}@code{;}@var{XX} --- Reply to target's F packet.
19818@cindex @code{F} packet
ee2d5c50 19819
0ce1b118
CV
19820This packet is send by @value{GDBN} as reply to a @code{F} request packet
19821sent by the target. This is part of the File-I/O protocol extension.
19822@xref{File-I/O remote protocol extension}, for the specification.
ee2d5c50
AC
19823
19824@item @code{g} --- read registers
19825@anchor{read registers packet}
19826@cindex @code{g} packet
19827
19828Read general registers.
19829
19830Reply:
19831@table @samp
19832@item @var{XX@dots{}}
8e04817f
AC
19833Each byte of register data is described by two hex digits. The bytes
19834with the register are transmitted in target byte order. The size of
19835each register and their position within the @samp{g} @var{packet} are
ee2d5c50
AC
19836determined by the @value{GDBN} internal macros @var{REGISTER_RAW_SIZE}
19837and @var{REGISTER_NAME} macros. The specification of several standard
8e04817f 19838@code{g} packets is specified below.
ee2d5c50
AC
19839@item E@var{NN}
19840for an error.
19841@end table
c906108c 19842
ee2d5c50
AC
19843@item @code{G}@var{XX@dots{}} --- write regs
19844@cindex @code{G} packet
c906108c 19845
ee2d5c50
AC
19846@xref{read registers packet}, for a description of the @var{XX@dots{}}
19847data.
19848
19849Reply:
19850@table @samp
19851@item OK
19852for success
19853@item E@var{NN}
19854for an error
19855@end table
19856
19857@item @code{h} --- reserved
19858
19859Reserved for future use.
19860
19861@item @code{H}@var{c}@var{t@dots{}} --- set thread
19862@cindex @code{H} packet
c906108c 19863
8e04817f 19864Set thread for subsequent operations (@samp{m}, @samp{M}, @samp{g},
ee2d5c50
AC
19865@samp{G}, et.al.). @var{c} depends on the operation to be performed: it
19866should be @samp{c} for step and continue operations, @samp{g} for other
19867operations. The thread designator @var{t@dots{}} may be -1, meaning all
19868the threads, a thread number, or zero which means pick any thread.
19869
19870Reply:
19871@table @samp
19872@item OK
19873for success
19874@item E@var{NN}
19875for an error
19876@end table
c906108c 19877
8e04817f
AC
19878@c FIXME: JTC:
19879@c 'H': How restrictive (or permissive) is the thread model. If a
19880@c thread is selected and stopped, are other threads allowed
19881@c to continue to execute? As I mentioned above, I think the
19882@c semantics of each command when a thread is selected must be
19883@c described. For example:
19884@c
19885@c 'g': If the stub supports threads and a specific thread is
19886@c selected, returns the register block from that thread;
19887@c otherwise returns current registers.
19888@c
19889@c 'G' If the stub supports threads and a specific thread is
19890@c selected, sets the registers of the register block of
19891@c that thread; otherwise sets current registers.
c906108c 19892
ee2d5c50
AC
19893@item @code{i}@var{addr}@code{,}@var{nnn} --- cycle step @strong{(draft)}
19894@anchor{cycle step packet}
19895@cindex @code{i} packet
19896
8e04817f
AC
19897Step the remote target by a single clock cycle. If @code{,}@var{nnn} is
19898present, cycle step @var{nnn} cycles. If @var{addr} is present, cycle
19899step starting at that address.
c906108c 19900
ee2d5c50
AC
19901@item @code{I} --- signal then cycle step @strong{(reserved)}
19902@cindex @code{I} packet
19903
19904@xref{step with signal packet}. @xref{cycle step packet}.
19905
19906@item @code{j} --- reserved
19907
19908Reserved for future use.
19909
19910@item @code{J} --- reserved
c906108c 19911
ee2d5c50 19912Reserved for future use.
c906108c 19913
ee2d5c50
AC
19914@item @code{k} --- kill request
19915@cindex @code{k} packet
c906108c 19916
ac282366 19917FIXME: @emph{There is no description of how to operate when a specific
ee2d5c50
AC
19918thread context has been selected (i.e.@: does 'k' kill only that
19919thread?)}.
c906108c 19920
ee2d5c50 19921@item @code{K} --- reserved
c906108c 19922
ee2d5c50
AC
19923Reserved for future use.
19924
19925@item @code{l} --- reserved
19926
19927Reserved for future use.
19928
19929@item @code{L} --- reserved
19930
19931Reserved for future use.
19932
19933@item @code{m}@var{addr}@code{,}@var{length} --- read memory
19934@cindex @code{m} packet
c906108c 19935
8e04817f 19936Read @var{length} bytes of memory starting at address @var{addr}.
ee2d5c50 19937Neither @value{GDBN} nor the stub assume that sized memory transfers are
2e834e49 19938assumed using word aligned accesses. FIXME: @emph{A word aligned memory
8e04817f 19939transfer mechanism is needed.}
c906108c 19940
ee2d5c50
AC
19941Reply:
19942@table @samp
19943@item @var{XX@dots{}}
19944@var{XX@dots{}} is mem contents. Can be fewer bytes than requested if able
19945to read only part of the data. Neither @value{GDBN} nor the stub assume
2e834e49 19946that sized memory transfers are assumed using word aligned
ee2d5c50
AC
19947accesses. FIXME: @emph{A word aligned memory transfer mechanism is
19948needed.}
19949@item E@var{NN}
19950@var{NN} is errno
19951@end table
19952
19953@item @code{M}@var{addr},@var{length}@code{:}@var{XX@dots{}} --- write mem
19954@cindex @code{M} packet
19955
8e04817f 19956Write @var{length} bytes of memory starting at address @var{addr}.
ee2d5c50
AC
19957@var{XX@dots{}} is the data.
19958
19959Reply:
19960@table @samp
19961@item OK
19962for success
19963@item E@var{NN}
8e04817f
AC
19964for an error (this includes the case where only part of the data was
19965written).
ee2d5c50 19966@end table
c906108c 19967
ee2d5c50 19968@item @code{n} --- reserved
c906108c 19969
ee2d5c50 19970Reserved for future use.
c906108c 19971
ee2d5c50 19972@item @code{N} --- reserved
c906108c 19973
ee2d5c50 19974Reserved for future use.
c906108c 19975
ee2d5c50
AC
19976@item @code{o} --- reserved
19977
19978Reserved for future use.
19979
19980@item @code{O} --- reserved
19981
19982Reserved for future use.
c906108c 19983
ee2d5c50
AC
19984@item @code{p}@var{n@dots{}} --- read reg @strong{(reserved)}
19985@cindex @code{p} packet
19986
19987@xref{write register packet}.
19988
19989Reply:
19990@table @samp
19991@item @var{r@dots{}.}
19992The hex encoded value of the register in target byte order.
19993@end table
19994
19995@item @code{P}@var{n@dots{}}@code{=}@var{r@dots{}} --- write register
19996@anchor{write register packet}
19997@cindex @code{P} packet
19998
19999Write register @var{n@dots{}} with value @var{r@dots{}}, which contains two hex
8e04817f 20000digits for each byte in the register (target byte order).
c906108c 20001
ee2d5c50
AC
20002Reply:
20003@table @samp
20004@item OK
20005for success
20006@item E@var{NN}
20007for an error
20008@end table
20009
20010@item @code{q}@var{query} --- general query
20011@anchor{general query packet}
20012@cindex @code{q} packet
20013
20014Request info about @var{query}. In general @value{GDBN} queries have a
20015leading upper case letter. Custom vendor queries should use a company
20016prefix (in lower case) ex: @samp{qfsf.var}. @var{query} may optionally
20017be followed by a @samp{,} or @samp{;} separated list. Stubs must ensure
20018that they match the full @var{query} name.
20019
20020Reply:
20021@table @samp
20022@item @var{XX@dots{}}
20023Hex encoded data from query. The reply can not be empty.
20024@item E@var{NN}
20025error reply
8e04817f 20026@item
ee2d5c50
AC
20027Indicating an unrecognized @var{query}.
20028@end table
20029
20030@item @code{Q}@var{var}@code{=}@var{val} --- general set
20031@cindex @code{Q} packet
20032
20033Set value of @var{var} to @var{val}.
20034
20035@xref{general query packet}, for a discussion of naming conventions.
c906108c 20036
ee2d5c50
AC
20037@item @code{r} --- reset @strong{(deprecated)}
20038@cindex @code{r} packet
c906108c 20039
8e04817f 20040Reset the entire system.
c906108c 20041
ee2d5c50
AC
20042@item @code{R}@var{XX} --- remote restart
20043@cindex @code{R} packet
20044
8e04817f
AC
20045Restart the program being debugged. @var{XX}, while needed, is ignored.
20046This packet is only available in extended mode.
ee2d5c50
AC
20047
20048Reply:
20049@table @samp
20050@item @emph{no reply}
8e04817f 20051The @samp{R} packet has no reply.
ee2d5c50
AC
20052@end table
20053
20054@item @code{s}@var{addr} --- step
20055@cindex @code{s} packet
c906108c 20056
8e04817f
AC
20057@var{addr} is address to resume. If @var{addr} is omitted, resume at
20058same address.
c906108c 20059
ee2d5c50
AC
20060Reply:
20061@xref{Stop Reply Packets}, for the reply specifications.
20062
20063@item @code{S}@var{sig}@code{;}@var{addr} --- step with signal
20064@anchor{step with signal packet}
20065@cindex @code{S} packet
20066
8e04817f 20067Like @samp{C} but step not continue.
c906108c 20068
ee2d5c50
AC
20069Reply:
20070@xref{Stop Reply Packets}, for the reply specifications.
20071
20072@item @code{t}@var{addr}@code{:}@var{PP}@code{,}@var{MM} --- search
20073@cindex @code{t} packet
20074
8e04817f 20075Search backwards starting at address @var{addr} for a match with pattern
ee2d5c50
AC
20076@var{PP} and mask @var{MM}. @var{PP} and @var{MM} are 4 bytes.
20077@var{addr} must be at least 3 digits.
c906108c 20078
ee2d5c50
AC
20079@item @code{T}@var{XX} --- thread alive
20080@cindex @code{T} packet
c906108c 20081
ee2d5c50 20082Find out if the thread XX is alive.
c906108c 20083
ee2d5c50
AC
20084Reply:
20085@table @samp
20086@item OK
20087thread is still alive
20088@item E@var{NN}
20089thread is dead
20090@end table
20091
20092@item @code{u} --- reserved
20093
20094Reserved for future use.
20095
20096@item @code{U} --- reserved
20097
20098Reserved for future use.
20099
20100@item @code{v} --- reserved
20101
20102Reserved for future use.
20103
20104@item @code{V} --- reserved
c906108c 20105
ee2d5c50 20106Reserved for future use.
c906108c 20107
ee2d5c50 20108@item @code{w} --- reserved
c906108c 20109
ee2d5c50 20110Reserved for future use.
c906108c 20111
ee2d5c50 20112@item @code{W} --- reserved
c906108c 20113
ee2d5c50 20114Reserved for future use.
c906108c 20115
ee2d5c50
AC
20116@item @code{x} --- reserved
20117
20118Reserved for future use.
20119
20120@item @code{X}@var{addr}@code{,}@var{length}@var{:}@var{XX@dots{}} --- write mem (binary)
20121@cindex @code{X} packet
20122
20123@var{addr} is address, @var{length} is number of bytes, @var{XX@dots{}}
20124is binary data. The characters @code{$}, @code{#}, and @code{0x7d} are
8e04817f 20125escaped using @code{0x7d}.
c906108c 20126
ee2d5c50
AC
20127Reply:
20128@table @samp
20129@item OK
20130for success
20131@item E@var{NN}
20132for an error
20133@end table
20134
20135@item @code{y} --- reserved
c906108c 20136
ee2d5c50 20137Reserved for future use.
c906108c 20138
ee2d5c50
AC
20139@item @code{Y} reserved
20140
20141Reserved for future use.
20142
2f870471
AC
20143@item @code{z}@var{type}@code{,}@var{addr}@code{,}@var{length} --- remove breakpoint or watchpoint @strong{(draft)}
20144@itemx @code{Z}@var{type}@code{,}@var{addr}@code{,}@var{length} --- insert breakpoint or watchpoint @strong{(draft)}
20145@anchor{insert breakpoint or watchpoint packet}
ee2d5c50 20146@cindex @code{z} packet
2f870471 20147@cindex @code{Z} packets
ee2d5c50 20148
2f870471
AC
20149Insert (@code{Z}) or remove (@code{z}) a @var{type} breakpoint or
20150watchpoint starting at address @var{address} and covering the next
20151@var{length} bytes.
ee2d5c50 20152
2f870471
AC
20153Each breakpoint and watchpoint packet @var{type} is documented
20154separately.
20155
512217c7
AC
20156@emph{Implementation notes: A remote target shall return an empty string
20157for an unrecognized breakpoint or watchpoint packet @var{type}. A
20158remote target shall support either both or neither of a given
2f870471
AC
20159@code{Z}@var{type}@dots{} and @code{z}@var{type}@dots{} packet pair. To
20160avoid potential problems with duplicate packets, the operations should
20161be implemented in an idempotent way.}
20162
20163@item @code{z}@code{0}@code{,}@var{addr}@code{,}@var{length} --- remove memory breakpoint @strong{(draft)}
20164@item @code{Z}@code{0}@code{,}@var{addr}@code{,}@var{length} --- insert memory breakpoint @strong{(draft)}
20165@cindex @code{z0} packet
20166@cindex @code{Z0} packet
20167
20168Insert (@code{Z0}) or remove (@code{z0}) a memory breakpoint at address
20169@code{addr} of size @code{length}.
20170
20171A memory breakpoint is implemented by replacing the instruction at
20172@var{addr} with a software breakpoint or trap instruction. The
20173@code{length} is used by targets that indicates the size of the
20174breakpoint (in bytes) that should be inserted (e.g., the @sc{arm} and
20175@sc{mips} can insert either a 2 or 4 byte breakpoint).
c906108c 20176
2f870471
AC
20177@emph{Implementation note: It is possible for a target to copy or move
20178code that contains memory breakpoints (e.g., when implementing
20179overlays). The behavior of this packet, in the presence of such a
20180target, is not defined.}
c906108c 20181
ee2d5c50
AC
20182Reply:
20183@table @samp
2f870471
AC
20184@item OK
20185success
20186@item
20187not supported
ee2d5c50
AC
20188@item E@var{NN}
20189for an error
2f870471
AC
20190@end table
20191
20192@item @code{z}@code{1}@code{,}@var{addr}@code{,}@var{length} --- remove hardware breakpoint @strong{(draft)}
20193@item @code{Z}@code{1}@code{,}@var{addr}@code{,}@var{length} --- insert hardware breakpoint @strong{(draft)}
20194@cindex @code{z1} packet
20195@cindex @code{Z1} packet
20196
20197Insert (@code{Z1}) or remove (@code{z1}) a hardware breakpoint at
20198address @code{addr} of size @code{length}.
20199
20200A hardware breakpoint is implemented using a mechanism that is not
20201dependant on being able to modify the target's memory.
20202
20203@emph{Implementation note: A hardware breakpoint is not affected by code
20204movement.}
20205
20206Reply:
20207@table @samp
ee2d5c50 20208@item OK
2f870471
AC
20209success
20210@item
20211not supported
20212@item E@var{NN}
20213for an error
20214@end table
20215
20216@item @code{z}@code{2}@code{,}@var{addr}@code{,}@var{length} --- remove write watchpoint @strong{(draft)}
20217@item @code{Z}@code{2}@code{,}@var{addr}@code{,}@var{length} --- insert write watchpoint @strong{(draft)}
20218@cindex @code{z2} packet
20219@cindex @code{Z2} packet
20220
20221Insert (@code{Z2}) or remove (@code{z2}) a write watchpoint.
20222
20223Reply:
20224@table @samp
20225@item OK
20226success
20227@item
20228not supported
20229@item E@var{NN}
20230for an error
20231@end table
20232
20233@item @code{z}@code{3}@code{,}@var{addr}@code{,}@var{length} --- remove read watchpoint @strong{(draft)}
20234@item @code{Z}@code{3}@code{,}@var{addr}@code{,}@var{length} --- insert read watchpoint @strong{(draft)}
20235@cindex @code{z3} packet
20236@cindex @code{Z3} packet
20237
2e834e49 20238Insert (@code{Z3}) or remove (@code{z3}) a read watchpoint.
2f870471
AC
20239
20240Reply:
20241@table @samp
20242@item OK
20243success
20244@item
20245not supported
20246@item E@var{NN}
20247for an error
20248@end table
20249
2e834e49
HPN
20250@item @code{z}@code{4}@code{,}@var{addr}@code{,}@var{length} --- remove access watchpoint @strong{(draft)}
20251@item @code{Z}@code{4}@code{,}@var{addr}@code{,}@var{length} --- insert access watchpoint @strong{(draft)}
2f870471
AC
20252@cindex @code{z4} packet
20253@cindex @code{Z4} packet
20254
20255Insert (@code{Z4}) or remove (@code{z4}) an access watchpoint.
20256
20257Reply:
20258@table @samp
20259@item OK
20260success
20261@item
20262not supported
20263@item E@var{NN}
20264for an error
ee2d5c50
AC
20265@end table
20266
20267@end table
c906108c 20268
ee2d5c50
AC
20269@node Stop Reply Packets
20270@section Stop Reply Packets
20271@cindex stop reply packets
c906108c 20272
8e04817f
AC
20273The @samp{C}, @samp{c}, @samp{S}, @samp{s} and @samp{?} packets can
20274receive any of the below as a reply. In the case of the @samp{C},
20275@samp{c}, @samp{S} and @samp{s} packets, that reply is only returned
20276when the target halts. In the below the exact meaning of @samp{signal
20277number} is poorly defined. In general one of the UNIX signal numbering
20278conventions is used.
c906108c 20279
ee2d5c50 20280@table @samp
c906108c 20281
ee2d5c50
AC
20282@item S@var{AA}
20283@var{AA} is the signal number
c906108c 20284
8e04817f 20285@item @code{T}@var{AA}@var{n...}@code{:}@var{r...}@code{;}@var{n...}@code{:}@var{r...}@code{;}@var{n...}@code{:}@var{r...}@code{;}
ee2d5c50
AC
20286@cindex @code{T} packet reply
20287
8e04817f
AC
20288@var{AA} = two hex digit signal number; @var{n...} = register number
20289(hex), @var{r...} = target byte ordered register contents, size defined
20290by @code{REGISTER_RAW_SIZE}; @var{n...} = @samp{thread}, @var{r...} =
3c3bea1c
GS
20291thread process ID, this is a hex integer; @var{n...} = (@samp{watch} |
20292@samp{rwatch} | @samp{awatch}, @var{r...} = data address, this is a hex
20293integer; @var{n...} = other string not starting with valid hex digit.
20294@value{GDBN} should ignore this @var{n...}, @var{r...} pair and go on
20295to the next. This way we can extend the protocol.
c906108c 20296
ee2d5c50
AC
20297@item W@var{AA}
20298
8e04817f 20299The process exited, and @var{AA} is the exit status. This is only
ee2d5c50
AC
20300applicable to certain targets.
20301
20302@item X@var{AA}
c906108c 20303
8e04817f 20304The process terminated with signal @var{AA}.
c906108c 20305
ee2d5c50
AC
20306@item N@var{AA};@var{t@dots{}};@var{d@dots{}};@var{b@dots{}} @strong{(obsolete)}
20307
20308@var{AA} = signal number; @var{t@dots{}} = address of symbol
20309@code{_start}; @var{d@dots{}} = base of data section; @var{b@dots{}} =
20310base of bss section. @emph{Note: only used by Cisco Systems targets.
20311The difference between this reply and the @samp{qOffsets} query is that
20312the @samp{N} packet may arrive spontaneously whereas the @samp{qOffsets}
20313is a query initiated by the host debugger.}
c906108c 20314
ee2d5c50 20315@item O@var{XX@dots{}}
c906108c 20316
ee2d5c50
AC
20317@var{XX@dots{}} is hex encoding of @sc{ascii} data. This can happen at
20318any time while the program is running and the debugger should continue
20319to wait for @samp{W}, @samp{T}, etc.
20320
0ce1b118
CV
20321@item F@var{call-id}@code{,}@var{parameter@dots{}}
20322
20323@var{call-id} is the identifier which says which host system call should
20324be called. This is just the name of the function. Translation into the
20325correct system call is only applicable as it's defined in @value{GDBN}.
20326@xref{File-I/O remote protocol extension}, for a list of implemented
20327system calls.
20328
20329@var{parameter@dots{}} is a list of parameters as defined for this very
20330system call.
20331
20332The target replies with this packet when it expects @value{GDBN} to call
20333a host system call on behalf of the target. @value{GDBN} replies with
20334an appropriate @code{F} packet and keeps up waiting for the next reply
20335packet from the target. The latest @samp{C}, @samp{c}, @samp{S} or
20336@samp{s} action is expected to be continued.
20337@xref{File-I/O remote protocol extension}, for more details.
20338
ee2d5c50
AC
20339@end table
20340
20341@node General Query Packets
20342@section General Query Packets
c906108c 20343
8e04817f 20344The following set and query packets have already been defined.
c906108c 20345
ee2d5c50 20346@table @r
c906108c 20347
ee2d5c50
AC
20348@item @code{q}@code{C} --- current thread
20349
20350Return the current thread id.
20351
20352Reply:
20353@table @samp
20354@item @code{QC}@var{pid}
8e04817f 20355Where @var{pid} is a HEX encoded 16 bit process id.
ee2d5c50
AC
20356@item *
20357Any other reply implies the old pid.
20358@end table
20359
20360@item @code{q}@code{fThreadInfo} -- all thread ids
20361
20362@code{q}@code{sThreadInfo}
c906108c 20363
8e04817f
AC
20364Obtain a list of active thread ids from the target (OS). Since there
20365may be too many active threads to fit into one reply packet, this query
20366works iteratively: it may require more than one query/reply sequence to
20367obtain the entire list of threads. The first query of the sequence will
20368be the @code{qf}@code{ThreadInfo} query; subsequent queries in the
20369sequence will be the @code{qs}@code{ThreadInfo} query.
ee2d5c50
AC
20370
20371NOTE: replaces the @code{qL} query (see below).
20372
20373Reply:
20374@table @samp
20375@item @code{m}@var{id}
20376A single thread id
20377@item @code{m}@var{id},@var{id}@dots{}
20378a comma-separated list of thread ids
20379@item @code{l}
20380(lower case 'el') denotes end of list.
20381@end table
20382
20383In response to each query, the target will reply with a list of one or
20384more thread ids, in big-endian hex, separated by commas. @value{GDBN}
20385will respond to each reply with a request for more thread ids (using the
8e04817f
AC
20386@code{qs} form of the query), until the target responds with @code{l}
20387(lower-case el, for @code{'last'}).
c906108c 20388
ee2d5c50
AC
20389@item @code{q}@code{ThreadExtraInfo}@code{,}@var{id} --- extra thread info
20390
20391Where @var{id} is a thread-id in big-endian hex. Obtain a printable
20392string description of a thread's attributes from the target OS. This
20393string may contain anything that the target OS thinks is interesting for
20394@value{GDBN} to tell the user about the thread. The string is displayed
20395in @value{GDBN}'s @samp{info threads} display. Some examples of
20396possible thread extra info strings are ``Runnable'', or ``Blocked on
20397Mutex''.
20398
20399Reply:
20400@table @samp
20401@item @var{XX@dots{}}
20402Where @var{XX@dots{}} is a hex encoding of @sc{ascii} data, comprising
20403the printable string containing the extra information about the thread's
8e04817f 20404attributes.
ee2d5c50
AC
20405@end table
20406
20407@item @code{q}@code{L}@var{startflag}@var{threadcount}@var{nextthread} --- query @var{LIST} or @var{threadLIST} @strong{(deprecated)}
c906108c 20408
8e04817f
AC
20409Obtain thread information from RTOS. Where: @var{startflag} (one hex
20410digit) is one to indicate the first query and zero to indicate a
20411subsequent query; @var{threadcount} (two hex digits) is the maximum
20412number of threads the response packet can contain; and @var{nextthread}
20413(eight hex digits), for subsequent queries (@var{startflag} is zero), is
20414returned in the response as @var{argthread}.
ee2d5c50
AC
20415
20416NOTE: this query is replaced by the @code{q}@code{fThreadInfo} query
20417(see above).
20418
20419Reply:
20420@table @samp
20421@item @code{q}@code{M}@var{count}@var{done}@var{argthread}@var{thread@dots{}}
8e04817f
AC
20422Where: @var{count} (two hex digits) is the number of threads being
20423returned; @var{done} (one hex digit) is zero to indicate more threads
20424and one indicates no further threads; @var{argthreadid} (eight hex
ee2d5c50
AC
20425digits) is @var{nextthread} from the request packet; @var{thread@dots{}}
20426is a sequence of thread IDs from the target. @var{threadid} (eight hex
8e04817f 20427digits). See @code{remote.c:parse_threadlist_response()}.
ee2d5c50 20428@end table
c906108c 20429
ee2d5c50
AC
20430@item @code{q}@code{CRC:}@var{addr}@code{,}@var{length} --- compute CRC of memory block
20431
20432Reply:
20433@table @samp
20434@item @code{E}@var{NN}
20435An error (such as memory fault)
20436@item @code{C}@var{CRC32}
20437A 32 bit cyclic redundancy check of the specified memory region.
20438@end table
20439
20440@item @code{q}@code{Offsets} --- query sect offs
c906108c 20441
8e04817f
AC
20442Get section offsets that the target used when re-locating the downloaded
20443image. @emph{Note: while a @code{Bss} offset is included in the
20444response, @value{GDBN} ignores this and instead applies the @code{Data}
20445offset to the @code{Bss} section.}
c906108c 20446
ee2d5c50
AC
20447Reply:
20448@table @samp
20449@item @code{Text=}@var{xxx}@code{;Data=}@var{yyy}@code{;Bss=}@var{zzz}
20450@end table
20451
20452@item @code{q}@code{P}@var{mode}@var{threadid} --- thread info request
20453
8e04817f
AC
20454Returns information on @var{threadid}. Where: @var{mode} is a hex
20455encoded 32 bit mode; @var{threadid} is a hex encoded 64 bit thread ID.
ee2d5c50
AC
20456
20457Reply:
20458@table @samp
20459@item *
20460@end table
20461
8e04817f 20462See @code{remote.c:remote_unpack_thread_info_response()}.
c906108c 20463
ee2d5c50
AC
20464@item @code{q}@code{Rcmd,}@var{command} --- remote command
20465
20466@var{command} (hex encoded) is passed to the local interpreter for
8e04817f
AC
20467execution. Invalid commands should be reported using the output string.
20468Before the final result packet, the target may also respond with a
ee2d5c50
AC
20469number of intermediate @code{O}@var{output} console output packets.
20470@emph{Implementors should note that providing access to a stubs's
20471interpreter may have security implications}.
20472
20473Reply:
20474@table @samp
20475@item OK
8e04817f 20476A command response with no output.
ee2d5c50 20477@item @var{OUTPUT}
8e04817f 20478A command response with the hex encoded output string @var{OUTPUT}.
ee2d5c50 20479@item @code{E}@var{NN}
8e04817f 20480Indicate a badly formed request.
ee2d5c50 20481@item @samp{}
8e04817f 20482When @samp{q}@samp{Rcmd} is not recognized.
ee2d5c50
AC
20483@end table
20484
20485@item @code{qSymbol::} --- symbol lookup
c906108c 20486
8e04817f
AC
20487Notify the target that @value{GDBN} is prepared to serve symbol lookup
20488requests. Accept requests from the target for the values of symbols.
ee2d5c50
AC
20489
20490Reply:
20491@table @samp
20492@item @code{OK}
8e04817f 20493The target does not need to look up any (more) symbols.
ee2d5c50
AC
20494@item @code{qSymbol:}@var{sym_name}
20495The target requests the value of symbol @var{sym_name} (hex encoded).
20496@value{GDBN} may provide the value by using the
20497@code{qSymbol:}@var{sym_value}:@var{sym_name} message, described below.
20498@end table
20499
20500@item @code{qSymbol:}@var{sym_value}:@var{sym_name} --- symbol value
20501
20502Set the value of @var{sym_name} to @var{sym_value}.
20503
20504@var{sym_name} (hex encoded) is the name of a symbol whose value the
20505target has previously requested.
20506
20507@var{sym_value} (hex) is the value for symbol @var{sym_name}. If
20508@value{GDBN} cannot supply a value for @var{sym_name}, then this field
20509will be empty.
20510
20511Reply:
20512@table @samp
20513@item @code{OK}
8e04817f 20514The target does not need to look up any (more) symbols.
ee2d5c50
AC
20515@item @code{qSymbol:}@var{sym_name}
20516The target requests the value of a new symbol @var{sym_name} (hex
20517encoded). @value{GDBN} will continue to supply the values of symbols
20518(if available), until the target ceases to request them.
20519@end table
eb12ee30 20520
ee2d5c50
AC
20521@end table
20522
20523@node Register Packet Format
20524@section Register Packet Format
eb12ee30 20525
8e04817f 20526The following @samp{g}/@samp{G} packets have previously been defined.
ee2d5c50
AC
20527In the below, some thirty-two bit registers are transferred as
20528sixty-four bits. Those registers should be zero/sign extended (which?)
20529to fill the space allocated. Register bytes are transfered in target
20530byte order. The two nibbles within a register byte are transfered
20531most-significant - least-significant.
eb12ee30 20532
ee2d5c50 20533@table @r
eb12ee30 20534
8e04817f 20535@item MIPS32
ee2d5c50 20536
8e04817f
AC
20537All registers are transfered as thirty-two bit quantities in the order:
2053832 general-purpose; sr; lo; hi; bad; cause; pc; 32 floating-point
20539registers; fsr; fir; fp.
eb12ee30 20540
8e04817f 20541@item MIPS64
ee2d5c50 20542
8e04817f
AC
20543All registers are transfered as sixty-four bit quantities (including
20544thirty-two bit registers such as @code{sr}). The ordering is the same
20545as @code{MIPS32}.
eb12ee30 20546
ee2d5c50
AC
20547@end table
20548
20549@node Examples
20550@section Examples
eb12ee30 20551
8e04817f
AC
20552Example sequence of a target being re-started. Notice how the restart
20553does not get any direct output:
eb12ee30 20554
474c8240 20555@smallexample
d2c6833e
AC
20556-> @code{R00}
20557<- @code{+}
8e04817f 20558@emph{target restarts}
d2c6833e 20559-> @code{?}
8e04817f 20560<- @code{+}
d2c6833e
AC
20561<- @code{T001:1234123412341234}
20562-> @code{+}
474c8240 20563@end smallexample
eb12ee30 20564
8e04817f 20565Example sequence of a target being stepped by a single instruction:
eb12ee30 20566
474c8240 20567@smallexample
d2c6833e 20568-> @code{G1445@dots{}}
8e04817f 20569<- @code{+}
d2c6833e
AC
20570-> @code{s}
20571<- @code{+}
20572@emph{time passes}
20573<- @code{T001:1234123412341234}
8e04817f 20574-> @code{+}
d2c6833e 20575-> @code{g}
8e04817f 20576<- @code{+}
d2c6833e
AC
20577<- @code{1455@dots{}}
20578-> @code{+}
474c8240 20579@end smallexample
eb12ee30 20580
0ce1b118
CV
20581@node File-I/O remote protocol extension
20582@section File-I/O remote protocol extension
20583@cindex File-I/O remote protocol extension
20584
20585@menu
20586* File-I/O Overview::
20587* Protocol basics::
20588* The `F' request packet::
20589* The `F' reply packet::
20590* Memory transfer::
20591* The Ctrl-C message::
20592* Console I/O::
20593* The isatty call::
20594* The system call::
20595* List of supported calls::
20596* Protocol specific representation of datatypes::
20597* Constants::
20598* File-I/O Examples::
20599@end menu
20600
20601@node File-I/O Overview
20602@subsection File-I/O Overview
20603@cindex file-i/o overview
20604
20605The File I/O remote protocol extension (short: File-I/O) allows the
20606target to use the hosts file system and console I/O when calling various
20607system calls. System calls on the target system are translated into a
20608remote protocol packet to the host system which then performs the needed
20609actions and returns with an adequate response packet to the target system.
20610This simulates file system operations even on targets that lack file systems.
20611
20612The protocol is defined host- and target-system independent. It uses
20613it's own independent representation of datatypes and values. Both,
20614@value{GDBN} and the target's @value{GDBN} stub are responsible for
20615translating the system dependent values into the unified protocol values
20616when data is transmitted.
20617
20618The communication is synchronous. A system call is possible only
20619when GDB is waiting for the @samp{C}, @samp{c}, @samp{S} or @samp{s}
20620packets. While @value{GDBN} handles the request for a system call,
20621the target is stopped to allow deterministic access to the target's
20622memory. Therefore File-I/O is not interuptible by target signals. It
20623is possible to interrupt File-I/O by a user interrupt (Ctrl-C), though.
20624
20625The target's request to perform a host system call does not finish
20626the latest @samp{C}, @samp{c}, @samp{S} or @samp{s} action. That means,
20627after finishing the system call, the target returns to continuing the
20628previous activity (continue, step). No additional continue or step
20629request from @value{GDBN} is required.
20630
20631@smallexample
20632(gdb) continue
20633 <- target requests 'system call X'
20634 target is stopped, @value{GDBN} executes system call
20635 -> GDB returns result
20636 ... target continues, GDB returns to wait for the target
20637 <- target hits breakpoint and sends a Txx packet
20638@end smallexample
20639
20640The protocol is only used for files on the host file system and
20641for I/O on the console. Character or block special devices, pipes,
20642named pipes or sockets or any other communication method on the host
20643system are not supported by this protocol.
20644
20645@node Protocol basics
20646@subsection Protocol basics
20647@cindex protocol basics, file-i/o
20648
20649The File-I/O protocol uses the @code{F} packet, as request as well
20650as as reply packet. Since a File-I/O system call can only occur when
20651@value{GDBN} is waiting for the continuing or stepping target, the
20652File-I/O request is a reply that @value{GDBN} has to expect as a result
20653of a former @samp{C}, @samp{c}, @samp{S} or @samp{s} packet.
20654This @code{F} packet contains all information needed to allow @value{GDBN}
20655to call the appropriate host system call:
20656
20657@itemize @bullet
20658@item
20659A unique identifier for the requested system call.
20660
20661@item
20662All parameters to the system call. Pointers are given as addresses
20663in the target memory address space. Pointers to strings are given as
20664pointer/length pair. Numerical values are given as they are.
20665Numerical control values are given in a protocol specific representation.
20666
20667@end itemize
20668
20669At that point @value{GDBN} has to perform the following actions.
20670
20671@itemize @bullet
20672@item
20673If parameter pointer values are given, which point to data needed as input
20674to a system call, @value{GDBN} requests this data from the target with a
20675standard @code{m} packet request. This additional communication has to be
20676expected by the target implementation and is handled as any other @code{m}
20677packet.
20678
20679@item
20680@value{GDBN} translates all value from protocol representation to host
20681representation as needed. Datatypes are coerced into the host types.
20682
20683@item
20684@value{GDBN} calls the system call
20685
20686@item
20687It then coerces datatypes back to protocol representation.
20688
20689@item
20690If pointer parameters in the request packet point to buffer space in which
20691a system call is expected to copy data to, the data is transmitted to the
20692target using a @code{M} or @code{X} packet. This packet has to be expected
20693by the target implementation and is handled as any other @code{M} or @code{X}
20694packet.
20695
20696@end itemize
20697
20698Eventually @value{GDBN} replies with another @code{F} packet which contains all
20699necessary information for the target to continue. This at least contains
20700
20701@itemize @bullet
20702@item
20703Return value.
20704
20705@item
20706@code{errno}, if has been changed by the system call.
20707
20708@item
20709``Ctrl-C'' flag.
20710
20711@end itemize
20712
20713After having done the needed type and value coercion, the target continues
20714the latest continue or step action.
20715
20716@node The `F' request packet
20717@subsection The @code{F} request packet
20718@cindex file-i/o request packet
20719@cindex @code{F} request packet
20720
20721The @code{F} request packet has the following format:
20722
20723@table @samp
20724
20725@smallexample
20726@code{F}@var{call-id}@code{,}@var{parameter@dots{}}
20727@end smallexample
20728
20729@var{call-id} is the identifier to indicate the host system call to be called.
20730This is just the name of the function.
20731
20732@var{parameter@dots{}} are the parameters to the system call.
20733
20734@end table
20735
20736Parameters are hexadecimal integer values, either the real values in case
20737of scalar datatypes, as pointers to target buffer space in case of compound
20738datatypes and unspecified memory areas or as pointer/length pairs in case
20739of string parameters. These are appended to the call-id, each separated
20740from its predecessor by a comma. All values are transmitted in ASCII
20741string representation, pointer/length pairs separated by a slash.
20742
20743@node The `F' reply packet
20744@subsection The @code{F} reply packet
20745@cindex file-i/o reply packet
20746@cindex @code{F} reply packet
20747
20748The @code{F} reply packet has the following format:
20749
20750@table @samp
20751
20752@smallexample
20753@code{F}@var{retcode}@code{,}@var{errno}@code{,}@var{Ctrl-C flag}@code{;}@var{call specific attachment}
20754@end smallexample
20755
20756@var{retcode} is the return code of the system call as hexadecimal value.
20757
20758@var{errno} is the errno set by the call, in protocol specific representation.
20759This parameter can be omitted if the call was successful.
20760
20761@var{Ctrl-C flag} is only send if the user requested a break. In this
20762case, @var{errno} must be send as well, even if the call was successful.
20763The @var{Ctrl-C flag} itself consists of the character 'C':
20764
20765@smallexample
20766F0,0,C
20767@end smallexample
20768
20769@noindent
20770or, if the call was interupted before the host call has been performed:
20771
20772@smallexample
20773F-1,4,C
20774@end smallexample
20775
20776@noindent
20777assuming 4 is the protocol specific representation of @code{EINTR}.
20778
20779@end table
20780
20781@node Memory transfer
20782@subsection Memory transfer
20783@cindex memory transfer, in file-i/o protocol
20784
20785Structured data which is transferred using a memory read or write as e.g.@:
20786a @code{struct stat} is expected to be in a protocol specific format with
20787all scalar multibyte datatypes being big endian. This should be done by
20788the target before the @code{F} packet is sent resp.@: by @value{GDBN} before
20789it transfers memory to the target. Transferred pointers to structured
20790data should point to the already coerced data at any time.
20791
20792@node The Ctrl-C message
20793@subsection The Ctrl-C message
20794@cindex ctrl-c message, in file-i/o protocol
20795
20796A special case is, if the @var{Ctrl-C flag} is set in the @value{GDBN}
20797reply packet. In this case the target should behave, as if it had
20798gotten a break message. The meaning for the target is ``system call
20799interupted by @code{SIGINT}''. Consequentially, the target should actually stop
20800(as with a break message) and return to @value{GDBN} with a @code{T02}
20801packet. In this case, it's important for the target to know, in which
20802state the system call was interrupted. Since this action is by design
20803not an atomic operation, we have to differ between two cases:
20804
20805@itemize @bullet
20806@item
20807The system call hasn't been performed on the host yet.
20808
20809@item
20810The system call on the host has been finished.
20811
20812@end itemize
20813
20814These two states can be distinguished by the target by the value of the
20815returned @code{errno}. If it's the protocol representation of @code{EINTR}, the system
20816call hasn't been performed. This is equivalent to the @code{EINTR} handling
20817on POSIX systems. In any other case, the target may presume that the
20818system call has been finished --- successful or not --- and should behave
20819as if the break message arrived right after the system call.
20820
20821@value{GDBN} must behave reliable. If the system call has not been called
20822yet, @value{GDBN} may send the @code{F} reply immediately, setting @code{EINTR} as
20823@code{errno} in the packet. If the system call on the host has been finished
20824before the user requests a break, the full action must be finshed by
20825@value{GDBN}. This requires sending @code{M} or @code{X} packets as they fit.
20826The @code{F} packet may only be send when either nothing has happened
20827or the full action has been completed.
20828
20829@node Console I/O
20830@subsection Console I/O
20831@cindex console i/o as part of file-i/o
20832
20833By default and if not explicitely closed by the target system, the file
20834descriptors 0, 1 and 2 are connected to the @value{GDBN} console. Output
20835on the @value{GDBN} console is handled as any other file output operation
20836(@code{write(1, @dots{})} or @code{write(2, @dots{})}). Console input is handled
20837by @value{GDBN} so that after the target read request from file descriptor
208380 all following typing is buffered until either one of the following
20839conditions is met:
20840
20841@itemize @bullet
20842@item
20843The user presses @kbd{Ctrl-C}. The behaviour is as explained above, the
20844@code{read}
20845system call is treated as finished.
20846
20847@item
20848The user presses @kbd{Enter}. This is treated as end of input with a trailing
20849line feed.
20850
20851@item
20852The user presses @kbd{Ctrl-D}. This is treated as end of input. No trailing
20853character, especially no Ctrl-D is appended to the input.
20854
20855@end itemize
20856
20857If the user has typed more characters as fit in the buffer given to
20858the read call, the trailing characters are buffered in @value{GDBN} until
20859either another @code{read(0, @dots{})} is requested by the target or debugging
20860is stopped on users request.
20861
20862@node The isatty call
20863@subsection The isatty(3) call
20864@cindex isatty call, file-i/o protocol
20865
20866A special case in this protocol is the library call @code{isatty} which
20867is implemented as it's own call inside of this protocol. It returns
208681 to the target if the file descriptor given as parameter is attached
20869to the @value{GDBN} console, 0 otherwise. Implementing through system calls
20870would require implementing @code{ioctl} and would be more complex than
20871needed.
20872
20873@node The system call
20874@subsection The system(3) call
20875@cindex system call, file-i/o protocol
20876
20877The other special case in this protocol is the @code{system} call which
20878is implemented as it's own call, too. @value{GDBN} is taking over the full
20879task of calling the necessary host calls to perform the @code{system}
20880call. The return value of @code{system} is simplified before it's returned
20881to the target. Basically, the only signal transmitted back is @code{EINTR}
20882in case the user pressed @kbd{Ctrl-C}. Otherwise the return value consists
20883entirely of the exit status of the called command.
20884
20885Due to security concerns, the @code{system} call is refused to be called
20886by @value{GDBN} by default. The user has to allow this call explicitly by
20887entering
20888
20889@table @samp
20890@kindex set remote system-call-allowed 1
20891@item @code{set remote system-call-allowed 1}
20892@end table
20893
20894Disabling the @code{system} call is done by
20895
20896@table @samp
20897@kindex set remote system-call-allowed 0
20898@item @code{set remote system-call-allowed 0}
20899@end table
20900
20901The current setting is shown by typing
20902
20903@table @samp
20904@kindex show remote system-call-allowed
20905@item @code{show remote system-call-allowed}
20906@end table
20907
20908@node List of supported calls
20909@subsection List of supported calls
20910@cindex list of supported file-i/o calls
20911
20912@menu
20913* open::
20914* close::
20915* read::
20916* write::
20917* lseek::
20918* rename::
20919* unlink::
20920* stat/fstat::
20921* gettimeofday::
20922* isatty::
20923* system::
20924@end menu
20925
20926@node open
20927@unnumberedsubsubsec open
20928@cindex open, file-i/o system call
20929
20930@smallexample
20931@exdent Synopsis:
20932int open(const char *pathname, int flags);
20933int open(const char *pathname, int flags, mode_t mode);
20934
20935@exdent Request:
20936Fopen,pathptr/len,flags,mode
20937@end smallexample
20938
20939@noindent
20940@code{flags} is the bitwise or of the following values:
20941
20942@table @code
20943@item O_CREAT
20944If the file does not exist it will be created. The host
20945rules apply as far as file ownership and time stamps
20946are concerned.
20947
20948@item O_EXCL
20949When used with O_CREAT, if the file already exists it is
20950an error and open() fails.
20951
20952@item O_TRUNC
20953If the file already exists and the open mode allows
20954writing (O_RDWR or O_WRONLY is given) it will be
20955truncated to length 0.
20956
20957@item O_APPEND
20958The file is opened in append mode.
20959
20960@item O_RDONLY
20961The file is opened for reading only.
20962
20963@item O_WRONLY
20964The file is opened for writing only.
20965
20966@item O_RDWR
20967The file is opened for reading and writing.
20968
20969@noindent
20970Each other bit is silently ignored.
20971
20972@end table
20973
20974@noindent
20975@code{mode} is the bitwise or of the following values:
20976
20977@table @code
20978@item S_IRUSR
20979User has read permission.
20980
20981@item S_IWUSR
20982User has write permission.
20983
20984@item S_IRGRP
20985Group has read permission.
20986
20987@item S_IWGRP
20988Group has write permission.
20989
20990@item S_IROTH
20991Others have read permission.
20992
20993@item S_IWOTH
20994Others have write permission.
20995
20996@noindent
20997Each other bit is silently ignored.
20998
20999@end table
21000
21001@smallexample
21002@exdent Return value:
21003open returns the new file descriptor or -1 if an error
21004occured.
21005
21006@exdent Errors:
21007@end smallexample
21008
21009@table @code
21010@item EEXIST
21011pathname already exists and O_CREAT and O_EXCL were used.
21012
21013@item EISDIR
21014pathname refers to a directory.
21015
21016@item EACCES
21017The requested access is not allowed.
21018
21019@item ENAMETOOLONG
21020pathname was too long.
21021
21022@item ENOENT
21023A directory component in pathname does not exist.
21024
21025@item ENODEV
21026pathname refers to a device, pipe, named pipe or socket.
21027
21028@item EROFS
21029pathname refers to a file on a read-only filesystem and
21030write access was requested.
21031
21032@item EFAULT
21033pathname is an invalid pointer value.
21034
21035@item ENOSPC
21036No space on device to create the file.
21037
21038@item EMFILE
21039The process already has the maximum number of files open.
21040
21041@item ENFILE
21042The limit on the total number of files open on the system
21043has been reached.
21044
21045@item EINTR
21046The call was interrupted by the user.
21047@end table
21048
21049@node close
21050@unnumberedsubsubsec close
21051@cindex close, file-i/o system call
21052
21053@smallexample
21054@exdent Synopsis:
21055int close(int fd);
21056
21057@exdent Request:
21058Fclose,fd
21059
21060@exdent Return value:
21061close returns zero on success, or -1 if an error occurred.
21062
21063@exdent Errors:
21064@end smallexample
21065
21066@table @code
21067@item EBADF
21068fd isn't a valid open file descriptor.
21069
21070@item EINTR
21071The call was interrupted by the user.
21072@end table
21073
21074@node read
21075@unnumberedsubsubsec read
21076@cindex read, file-i/o system call
21077
21078@smallexample
21079@exdent Synopsis:
21080int read(int fd, void *buf, unsigned int count);
21081
21082@exdent Request:
21083Fread,fd,bufptr,count
21084
21085@exdent Return value:
21086On success, the number of bytes read is returned.
21087Zero indicates end of file. If count is zero, read
21088returns zero as well. On error, -1 is returned.
21089
21090@exdent Errors:
21091@end smallexample
21092
21093@table @code
21094@item EBADF
21095fd is not a valid file descriptor or is not open for
21096reading.
21097
21098@item EFAULT
21099buf is an invalid pointer value.
21100
21101@item EINTR
21102The call was interrupted by the user.
21103@end table
21104
21105@node write
21106@unnumberedsubsubsec write
21107@cindex write, file-i/o system call
21108
21109@smallexample
21110@exdent Synopsis:
21111int write(int fd, const void *buf, unsigned int count);
21112
21113@exdent Request:
21114Fwrite,fd,bufptr,count
21115
21116@exdent Return value:
21117On success, the number of bytes written are returned.
21118Zero indicates nothing was written. On error, -1
21119is returned.
21120
21121@exdent Errors:
21122@end smallexample
21123
21124@table @code
21125@item EBADF
21126fd is not a valid file descriptor or is not open for
21127writing.
21128
21129@item EFAULT
21130buf is an invalid pointer value.
21131
21132@item EFBIG
21133An attempt was made to write a file that exceeds the
21134host specific maximum file size allowed.
21135
21136@item ENOSPC
21137No space on device to write the data.
21138
21139@item EINTR
21140The call was interrupted by the user.
21141@end table
21142
21143@node lseek
21144@unnumberedsubsubsec lseek
21145@cindex lseek, file-i/o system call
21146
21147@smallexample
21148@exdent Synopsis:
21149long lseek (int fd, long offset, int flag);
21150
21151@exdent Request:
21152Flseek,fd,offset,flag
21153@end smallexample
21154
21155@code{flag} is one of:
21156
21157@table @code
21158@item SEEK_SET
21159The offset is set to offset bytes.
21160
21161@item SEEK_CUR
21162The offset is set to its current location plus offset
21163bytes.
21164
21165@item SEEK_END
21166The offset is set to the size of the file plus offset
21167bytes.
21168@end table
21169
21170@smallexample
21171@exdent Return value:
21172On success, the resulting unsigned offset in bytes from
21173the beginning of the file is returned. Otherwise, a
21174value of -1 is returned.
21175
21176@exdent Errors:
21177@end smallexample
21178
21179@table @code
21180@item EBADF
21181fd is not a valid open file descriptor.
21182
21183@item ESPIPE
21184fd is associated with the @value{GDBN} console.
21185
21186@item EINVAL
21187flag is not a proper value.
21188
21189@item EINTR
21190The call was interrupted by the user.
21191@end table
21192
21193@node rename
21194@unnumberedsubsubsec rename
21195@cindex rename, file-i/o system call
21196
21197@smallexample
21198@exdent Synopsis:
21199int rename(const char *oldpath, const char *newpath);
21200
21201@exdent Request:
21202Frename,oldpathptr/len,newpathptr/len
21203
21204@exdent Return value:
21205On success, zero is returned. On error, -1 is returned.
21206
21207@exdent Errors:
21208@end smallexample
21209
21210@table @code
21211@item EISDIR
21212newpath is an existing directory, but oldpath is not a
21213directory.
21214
21215@item EEXIST
21216newpath is a non-empty directory.
21217
21218@item EBUSY
21219oldpath or newpath is a directory that is in use by some
21220process.
21221
21222@item EINVAL
21223An attempt was made to make a directory a subdirectory
21224of itself.
21225
21226@item ENOTDIR
21227A component used as a directory in oldpath or new
21228path is not a directory. Or oldpath is a directory
21229and newpath exists but is not a directory.
21230
21231@item EFAULT
21232oldpathptr or newpathptr are invalid pointer values.
21233
21234@item EACCES
21235No access to the file or the path of the file.
21236
21237@item ENAMETOOLONG
21238
21239oldpath or newpath was too long.
21240
21241@item ENOENT
21242A directory component in oldpath or newpath does not exist.
21243
21244@item EROFS
21245The file is on a read-only filesystem.
21246
21247@item ENOSPC
21248The device containing the file has no room for the new
21249directory entry.
21250
21251@item EINTR
21252The call was interrupted by the user.
21253@end table
21254
21255@node unlink
21256@unnumberedsubsubsec unlink
21257@cindex unlink, file-i/o system call
21258
21259@smallexample
21260@exdent Synopsis:
21261int unlink(const char *pathname);
21262
21263@exdent Request:
21264Funlink,pathnameptr/len
21265
21266@exdent Return value:
21267On success, zero is returned. On error, -1 is returned.
21268
21269@exdent Errors:
21270@end smallexample
21271
21272@table @code
21273@item EACCES
21274No access to the file or the path of the file.
21275
21276@item EPERM
21277The system does not allow unlinking of directories.
21278
21279@item EBUSY
21280The file pathname cannot be unlinked because it's
21281being used by another process.
21282
21283@item EFAULT
21284pathnameptr is an invalid pointer value.
21285
21286@item ENAMETOOLONG
21287pathname was too long.
21288
21289@item ENOENT
21290A directory component in pathname does not exist.
21291
21292@item ENOTDIR
21293A component of the path is not a directory.
21294
21295@item EROFS
21296The file is on a read-only filesystem.
21297
21298@item EINTR
21299The call was interrupted by the user.
21300@end table
21301
21302@node stat/fstat
21303@unnumberedsubsubsec stat/fstat
21304@cindex fstat, file-i/o system call
21305@cindex stat, file-i/o system call
21306
21307@smallexample
21308@exdent Synopsis:
21309int stat(const char *pathname, struct stat *buf);
21310int fstat(int fd, struct stat *buf);
21311
21312@exdent Request:
21313Fstat,pathnameptr/len,bufptr
21314Ffstat,fd,bufptr
21315
21316@exdent Return value:
21317On success, zero is returned. On error, -1 is returned.
21318
21319@exdent Errors:
21320@end smallexample
21321
21322@table @code
21323@item EBADF
21324fd is not a valid open file.
21325
21326@item ENOENT
21327A directory component in pathname does not exist or the
21328path is an empty string.
21329
21330@item ENOTDIR
21331A component of the path is not a directory.
21332
21333@item EFAULT
21334pathnameptr is an invalid pointer value.
21335
21336@item EACCES
21337No access to the file or the path of the file.
21338
21339@item ENAMETOOLONG
21340pathname was too long.
21341
21342@item EINTR
21343The call was interrupted by the user.
21344@end table
21345
21346@node gettimeofday
21347@unnumberedsubsubsec gettimeofday
21348@cindex gettimeofday, file-i/o system call
21349
21350@smallexample
21351@exdent Synopsis:
21352int gettimeofday(struct timeval *tv, void *tz);
21353
21354@exdent Request:
21355Fgettimeofday,tvptr,tzptr
21356
21357@exdent Return value:
21358On success, 0 is returned, -1 otherwise.
21359
21360@exdent Errors:
21361@end smallexample
21362
21363@table @code
21364@item EINVAL
21365tz is a non-NULL pointer.
21366
21367@item EFAULT
21368tvptr and/or tzptr is an invalid pointer value.
21369@end table
21370
21371@node isatty
21372@unnumberedsubsubsec isatty
21373@cindex isatty, file-i/o system call
21374
21375@smallexample
21376@exdent Synopsis:
21377int isatty(int fd);
21378
21379@exdent Request:
21380Fisatty,fd
21381
21382@exdent Return value:
21383Returns 1 if fd refers to the @value{GDBN} console, 0 otherwise.
21384
21385@exdent Errors:
21386@end smallexample
21387
21388@table @code
21389@item EINTR
21390The call was interrupted by the user.
21391@end table
21392
21393@node system
21394@unnumberedsubsubsec system
21395@cindex system, file-i/o system call
21396
21397@smallexample
21398@exdent Synopsis:
21399int system(const char *command);
21400
21401@exdent Request:
21402Fsystem,commandptr/len
21403
21404@exdent Return value:
21405The value returned is -1 on error and the return status
21406of the command otherwise. Only the exit status of the
21407command is returned, which is extracted from the hosts
21408system return value by calling WEXITSTATUS(retval).
21409In case /bin/sh could not be executed, 127 is returned.
21410
21411@exdent Errors:
21412@end smallexample
21413
21414@table @code
21415@item EINTR
21416The call was interrupted by the user.
21417@end table
21418
21419@node Protocol specific representation of datatypes
21420@subsection Protocol specific representation of datatypes
21421@cindex protocol specific representation of datatypes, in file-i/o protocol
21422
21423@menu
21424* Integral datatypes::
21425* Pointer values::
21426* struct stat::
21427* struct timeval::
21428@end menu
21429
21430@node Integral datatypes
21431@unnumberedsubsubsec Integral datatypes
21432@cindex integral datatypes, in file-i/o protocol
21433
21434The integral datatypes used in the system calls are
21435
21436@smallexample
21437int@r{,} unsigned int@r{,} long@r{,} unsigned long@r{,} mode_t @r{and} time_t
21438@end smallexample
21439
21440@code{Int}, @code{unsigned int}, @code{mode_t} and @code{time_t} are
21441implemented as 32 bit values in this protocol.
21442
21443@code{Long} and @code{unsigned long} are implemented as 64 bit types.
21444
21445@xref{Limits}, for corresponding MIN and MAX values (similar to those
21446in @file{limits.h}) to allow range checking on host and target.
21447
21448@code{time_t} datatypes are defined as seconds since the Epoch.
21449
21450All integral datatypes transferred as part of a memory read or write of a
21451structured datatype e.g.@: a @code{struct stat} have to be given in big endian
21452byte order.
21453
21454@node Pointer values
21455@unnumberedsubsubsec Pointer values
21456@cindex pointer values, in file-i/o protocol
21457
21458Pointers to target data are transmitted as they are. An exception
21459is made for pointers to buffers for which the length isn't
21460transmitted as part of the function call, namely strings. Strings
21461are transmitted as a pointer/length pair, both as hex values, e.g.@:
21462
21463@smallexample
21464@code{1aaf/12}
21465@end smallexample
21466
21467@noindent
21468which is a pointer to data of length 18 bytes at position 0x1aaf.
21469The length is defined as the full string length in bytes, including
21470the trailing null byte. Example:
21471
21472@smallexample
21473``hello, world'' at address 0x123456
21474@end smallexample
21475
21476@noindent
21477is transmitted as
21478
21479@smallexample
21480@code{123456/d}
21481@end smallexample
21482
21483@node struct stat
21484@unnumberedsubsubsec struct stat
21485@cindex struct stat, in file-i/o protocol
21486
21487The buffer of type struct stat used by the target and @value{GDBN} is defined
21488as follows:
21489
21490@smallexample
21491struct stat @{
21492 unsigned int st_dev; /* device */
21493 unsigned int st_ino; /* inode */
21494 mode_t st_mode; /* protection */
21495 unsigned int st_nlink; /* number of hard links */
21496 unsigned int st_uid; /* user ID of owner */
21497 unsigned int st_gid; /* group ID of owner */
21498 unsigned int st_rdev; /* device type (if inode device) */
21499 unsigned long st_size; /* total size, in bytes */
21500 unsigned long st_blksize; /* blocksize for filesystem I/O */
21501 unsigned long st_blocks; /* number of blocks allocated */
21502 time_t st_atime; /* time of last access */
21503 time_t st_mtime; /* time of last modification */
21504 time_t st_ctime; /* time of last change */
21505@};
21506@end smallexample
21507
21508The integral datatypes are conforming to the definitions given in the
21509approriate section (see @ref{Integral datatypes}, for details) so this
21510structure is of size 64 bytes.
21511
21512The values of several fields have a restricted meaning and/or
21513range of values.
21514
21515@smallexample
21516st_dev: 0 file
21517 1 console
21518
21519st_ino: No valid meaning for the target. Transmitted unchanged.
21520
21521st_mode: Valid mode bits are described in Appendix C. Any other
21522 bits have currently no meaning for the target.
21523
21524st_uid: No valid meaning for the target. Transmitted unchanged.
21525
21526st_gid: No valid meaning for the target. Transmitted unchanged.
21527
21528st_rdev: No valid meaning for the target. Transmitted unchanged.
21529
21530st_atime, st_mtime, st_ctime:
21531 These values have a host and file system dependent
21532 accuracy. Especially on Windows hosts the file systems
21533 don't support exact timing values.
21534@end smallexample
21535
21536The target gets a struct stat of the above representation and is
21537responsible to coerce it to the target representation before
21538continuing.
21539
21540Note that due to size differences between the host and target
21541representation of stat members, these members could eventually
21542get truncated on the target.
21543
21544@node struct timeval
21545@unnumberedsubsubsec struct timeval
21546@cindex struct timeval, in file-i/o protocol
21547
21548The buffer of type struct timeval used by the target and @value{GDBN}
21549is defined as follows:
21550
21551@smallexample
21552struct timeval @{
21553 time_t tv_sec; /* second */
21554 long tv_usec; /* microsecond */
21555@};
21556@end smallexample
21557
21558The integral datatypes are conforming to the definitions given in the
21559approriate section (see @ref{Integral datatypes}, for details) so this
21560structure is of size 8 bytes.
21561
21562@node Constants
21563@subsection Constants
21564@cindex constants, in file-i/o protocol
21565
21566The following values are used for the constants inside of the
21567protocol. @value{GDBN} and target are resposible to translate these
21568values before and after the call as needed.
21569
21570@menu
21571* Open flags::
21572* mode_t values::
21573* Errno values::
21574* Lseek flags::
21575* Limits::
21576@end menu
21577
21578@node Open flags
21579@unnumberedsubsubsec Open flags
21580@cindex open flags, in file-i/o protocol
21581
21582All values are given in hexadecimal representation.
21583
21584@smallexample
21585 O_RDONLY 0x0
21586 O_WRONLY 0x1
21587 O_RDWR 0x2
21588 O_APPEND 0x8
21589 O_CREAT 0x200
21590 O_TRUNC 0x400
21591 O_EXCL 0x800
21592@end smallexample
21593
21594@node mode_t values
21595@unnumberedsubsubsec mode_t values
21596@cindex mode_t values, in file-i/o protocol
21597
21598All values are given in octal representation.
21599
21600@smallexample
21601 S_IFREG 0100000
21602 S_IFDIR 040000
21603 S_IRUSR 0400
21604 S_IWUSR 0200
21605 S_IXUSR 0100
21606 S_IRGRP 040
21607 S_IWGRP 020
21608 S_IXGRP 010
21609 S_IROTH 04
21610 S_IWOTH 02
21611 S_IXOTH 01
21612@end smallexample
21613
21614@node Errno values
21615@unnumberedsubsubsec Errno values
21616@cindex errno values, in file-i/o protocol
21617
21618All values are given in decimal representation.
21619
21620@smallexample
21621 EPERM 1
21622 ENOENT 2
21623 EINTR 4
21624 EBADF 9
21625 EACCES 13
21626 EFAULT 14
21627 EBUSY 16
21628 EEXIST 17
21629 ENODEV 19
21630 ENOTDIR 20
21631 EISDIR 21
21632 EINVAL 22
21633 ENFILE 23
21634 EMFILE 24
21635 EFBIG 27
21636 ENOSPC 28
21637 ESPIPE 29
21638 EROFS 30
21639 ENAMETOOLONG 91
21640 EUNKNOWN 9999
21641@end smallexample
21642
21643 EUNKNOWN is used as a fallback error value if a host system returns
21644 any error value not in the list of supported error numbers.
21645
21646@node Lseek flags
21647@unnumberedsubsubsec Lseek flags
21648@cindex lseek flags, in file-i/o protocol
21649
21650@smallexample
21651 SEEK_SET 0
21652 SEEK_CUR 1
21653 SEEK_END 2
21654@end smallexample
21655
21656@node Limits
21657@unnumberedsubsubsec Limits
21658@cindex limits, in file-i/o protocol
21659
21660All values are given in decimal representation.
21661
21662@smallexample
21663 INT_MIN -2147483648
21664 INT_MAX 2147483647
21665 UINT_MAX 4294967295
21666 LONG_MIN -9223372036854775808
21667 LONG_MAX 9223372036854775807
21668 ULONG_MAX 18446744073709551615
21669@end smallexample
21670
21671@node File-I/O Examples
21672@subsection File-I/O Examples
21673@cindex file-i/o examples
21674
21675Example sequence of a write call, file descriptor 3, buffer is at target
21676address 0x1234, 6 bytes should be written:
21677
21678@smallexample
21679<- @code{Fwrite,3,1234,6}
21680@emph{request memory read from target}
21681-> @code{m1234,6}
21682<- XXXXXX
21683@emph{return "6 bytes written"}
21684-> @code{F6}
21685@end smallexample
21686
21687Example sequence of a read call, file descriptor 3, buffer is at target
21688address 0x1234, 6 bytes should be read:
21689
21690@smallexample
21691<- @code{Fread,3,1234,6}
21692@emph{request memory write to target}
21693-> @code{X1234,6:XXXXXX}
21694@emph{return "6 bytes read"}
21695-> @code{F6}
21696@end smallexample
21697
21698Example sequence of a read call, call fails on the host due to invalid
21699file descriptor (EBADF):
21700
21701@smallexample
21702<- @code{Fread,3,1234,6}
21703-> @code{F-1,9}
21704@end smallexample
21705
21706Example sequence of a read call, user presses Ctrl-C before syscall on
21707host is called:
21708
21709@smallexample
21710<- @code{Fread,3,1234,6}
21711-> @code{F-1,4,C}
21712<- @code{T02}
21713@end smallexample
21714
21715Example sequence of a read call, user presses Ctrl-C after syscall on
21716host is called:
21717
21718@smallexample
21719<- @code{Fread,3,1234,6}
21720-> @code{X1234,6:XXXXXX}
21721<- @code{T02}
21722@end smallexample
21723
f418dd93
DJ
21724@include agentexpr.texi
21725
aab4e0ec 21726@include gpl.texi
eb12ee30 21727
6826cf00
EZ
21728@include fdl.texi
21729
6d2ebf8b 21730@node Index
c906108c
SS
21731@unnumbered Index
21732
21733@printindex cp
21734
21735@tex
21736% I think something like @colophon should be in texinfo. In the
21737% meantime:
21738\long\def\colophon{\hbox to0pt{}\vfill
21739\centerline{The body of this manual is set in}
21740\centerline{\fontname\tenrm,}
21741\centerline{with headings in {\bf\fontname\tenbf}}
21742\centerline{and examples in {\tt\fontname\tentt}.}
21743\centerline{{\it\fontname\tenit\/},}
21744\centerline{{\bf\fontname\tenbf}, and}
21745\centerline{{\sl\fontname\tensl\/}}
21746\centerline{are used for emphasis.}\vfill}
21747\page\colophon
21748% Blame: doc@cygnus.com, 1991.
21749@end tex
21750
c906108c 21751@bye
This page took 1.668193 seconds and 4 git commands to generate.