* mmix.h (R_MMIX_PUSHJ_STUBBABLE): New reloc number.
[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 420
172c2a43 421Renesas America, Ltd. sponsored the support for H8/300, H8/500, and
c906108c
SS
422Super-H processors.
423
424NEC sponsored the support for the v850, Vr4xxx, and Vr5xxx processors.
425
172c2a43 426Renesas sponsored the support for D10V, D30V, and M32R/D processors.
c906108c
SS
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}
0fac0b41 760* Logging output:: How to log @value{GDBN}'s output to a file
c906108c
SS
761@end menu
762
6d2ebf8b 763@node Invoking GDB
c906108c
SS
764@section Invoking @value{GDBN}
765
c906108c
SS
766Invoke @value{GDBN} by running the program @code{@value{GDBP}}. Once started,
767@value{GDBN} reads commands from the terminal until you tell it to exit.
768
769You can also run @code{@value{GDBP}} with a variety of arguments and options,
770to specify more of your debugging environment at the outset.
771
c906108c
SS
772The command-line options described here are designed
773to cover a variety of situations; in some environments, some of these
5d161b24 774options may effectively be unavailable.
c906108c
SS
775
776The most usual way to start @value{GDBN} is with one argument,
777specifying an executable program:
778
474c8240 779@smallexample
c906108c 780@value{GDBP} @var{program}
474c8240 781@end smallexample
c906108c 782
c906108c
SS
783@noindent
784You can also start with both an executable program and a core file
785specified:
786
474c8240 787@smallexample
c906108c 788@value{GDBP} @var{program} @var{core}
474c8240 789@end smallexample
c906108c
SS
790
791You can, instead, specify a process ID as a second argument, if you want
792to debug a running process:
793
474c8240 794@smallexample
c906108c 795@value{GDBP} @var{program} 1234
474c8240 796@end smallexample
c906108c
SS
797
798@noindent
799would attach @value{GDBN} to process @code{1234} (unless you also have a file
800named @file{1234}; @value{GDBN} does check for a core file first).
801
c906108c 802Taking advantage of the second command-line argument requires a fairly
2df3850c
JM
803complete operating system; when you use @value{GDBN} as a remote
804debugger attached to a bare board, there may not be any notion of
805``process'', and there is often no way to get a core dump. @value{GDBN}
806will warn you if it is unable to attach or to read core dumps.
c906108c 807
aa26fa3a
TT
808You can optionally have @code{@value{GDBP}} pass any arguments after the
809executable file to the inferior using @code{--args}. This option stops
810option processing.
474c8240 811@smallexample
aa26fa3a 812gdb --args gcc -O2 -c foo.c
474c8240 813@end smallexample
aa26fa3a
TT
814This will cause @code{@value{GDBP}} to debug @code{gcc}, and to set
815@code{gcc}'s command-line arguments (@pxref{Arguments}) to @samp{-O2 -c foo.c}.
816
96a2c332 817You can run @code{@value{GDBP}} without printing the front material, which describes
c906108c
SS
818@value{GDBN}'s non-warranty, by specifying @code{-silent}:
819
820@smallexample
821@value{GDBP} -silent
822@end smallexample
823
824@noindent
825You can further control how @value{GDBN} starts up by using command-line
826options. @value{GDBN} itself can remind you of the options available.
827
828@noindent
829Type
830
474c8240 831@smallexample
c906108c 832@value{GDBP} -help
474c8240 833@end smallexample
c906108c
SS
834
835@noindent
836to display all available options and briefly describe their use
837(@samp{@value{GDBP} -h} is a shorter equivalent).
838
839All options and command line arguments you give are processed
840in sequential order. The order makes a difference when the
841@samp{-x} option is used.
842
843
844@menu
c906108c
SS
845* File Options:: Choosing files
846* Mode Options:: Choosing modes
847@end menu
848
6d2ebf8b 849@node File Options
c906108c
SS
850@subsection Choosing files
851
2df3850c 852When @value{GDBN} starts, it reads any arguments other than options as
c906108c
SS
853specifying an executable file and core file (or process ID). This is
854the same as if the arguments were specified by the @samp{-se} and
19837790
MS
855@samp{-c} (or @samp{-p} options respectively. (@value{GDBN} reads the
856first argument that does not have an associated option flag as
857equivalent to the @samp{-se} option followed by that argument; and the
858second argument that does not have an associated option flag, if any, as
859equivalent to the @samp{-c}/@samp{-p} option followed by that argument.)
860If the second argument begins with a decimal digit, @value{GDBN} will
861first attempt to attach to it as a process, and if that fails, attempt
862to open it as a corefile. If you have a corefile whose name begins with
863a digit, you can prevent @value{GDBN} from treating it as a pid by
79f12247 864prefixing it with @file{./}, eg. @file{./12345}.
7a292a7a
SS
865
866If @value{GDBN} has not been configured to included core file support,
867such as for most embedded targets, then it will complain about a second
868argument and ignore it.
c906108c
SS
869
870Many options have both long and short forms; both are shown in the
871following list. @value{GDBN} also recognizes the long forms if you truncate
872them, so long as enough of the option is present to be unambiguous.
873(If you prefer, you can flag option arguments with @samp{--} rather
874than @samp{-}, though we illustrate the more usual convention.)
875
d700128c
EZ
876@c NOTE: the @cindex entries here use double dashes ON PURPOSE. This
877@c way, both those who look for -foo and --foo in the index, will find
878@c it.
879
c906108c
SS
880@table @code
881@item -symbols @var{file}
882@itemx -s @var{file}
d700128c
EZ
883@cindex @code{--symbols}
884@cindex @code{-s}
c906108c
SS
885Read symbol table from file @var{file}.
886
887@item -exec @var{file}
888@itemx -e @var{file}
d700128c
EZ
889@cindex @code{--exec}
890@cindex @code{-e}
7a292a7a
SS
891Use file @var{file} as the executable file to execute when appropriate,
892and for examining pure data in conjunction with a core dump.
c906108c
SS
893
894@item -se @var{file}
d700128c 895@cindex @code{--se}
c906108c
SS
896Read symbol table from file @var{file} and use it as the executable
897file.
898
c906108c
SS
899@item -core @var{file}
900@itemx -c @var{file}
d700128c
EZ
901@cindex @code{--core}
902@cindex @code{-c}
19837790 903Use file @var{file} as a core dump to examine.
c906108c
SS
904
905@item -c @var{number}
19837790
MS
906@item -pid @var{number}
907@itemx -p @var{number}
908@cindex @code{--pid}
909@cindex @code{-p}
910Connect to process ID @var{number}, as with the @code{attach} command.
911If there is no such process, @value{GDBN} will attempt to open a core
912file named @var{number}.
c906108c
SS
913
914@item -command @var{file}
915@itemx -x @var{file}
d700128c
EZ
916@cindex @code{--command}
917@cindex @code{-x}
c906108c
SS
918Execute @value{GDBN} commands from file @var{file}. @xref{Command
919Files,, Command files}.
920
921@item -directory @var{directory}
922@itemx -d @var{directory}
d700128c
EZ
923@cindex @code{--directory}
924@cindex @code{-d}
c906108c
SS
925Add @var{directory} to the path to search for source files.
926
c906108c
SS
927@item -m
928@itemx -mapped
d700128c
EZ
929@cindex @code{--mapped}
930@cindex @code{-m}
c906108c
SS
931@emph{Warning: this option depends on operating system facilities that are not
932supported on all systems.}@*
933If memory-mapped files are available on your system through the @code{mmap}
5d161b24 934system call, you can use this option
c906108c
SS
935to have @value{GDBN} write the symbols from your
936program into a reusable file in the current directory. If the program you are debugging is
96a2c332 937called @file{/tmp/fred}, the mapped symbol file is @file{/tmp/fred.syms}.
c906108c
SS
938Future @value{GDBN} debugging sessions notice the presence of this file,
939and can quickly map in symbol information from it, rather than reading
940the symbol table from the executable program.
941
942The @file{.syms} file is specific to the host machine where @value{GDBN}
943is run. It holds an exact image of the internal @value{GDBN} symbol
944table. It cannot be shared across multiple host platforms.
c906108c 945
c906108c
SS
946@item -r
947@itemx -readnow
d700128c
EZ
948@cindex @code{--readnow}
949@cindex @code{-r}
c906108c
SS
950Read each symbol file's entire symbol table immediately, rather than
951the default, which is to read it incrementally as it is needed.
952This makes startup slower, but makes future operations faster.
53a5351d 953
c906108c
SS
954@end table
955
2df3850c 956You typically combine the @code{-mapped} and @code{-readnow} options in
c906108c 957order to build a @file{.syms} file that contains complete symbol
2df3850c
JM
958information. (@xref{Files,,Commands to specify files}, for information
959on @file{.syms} files.) A simple @value{GDBN} invocation to do nothing
960but build a @file{.syms} file for future use is:
c906108c 961
474c8240 962@smallexample
2df3850c 963gdb -batch -nx -mapped -readnow programname
474c8240 964@end smallexample
c906108c 965
6d2ebf8b 966@node Mode Options
c906108c
SS
967@subsection Choosing modes
968
969You can run @value{GDBN} in various alternative modes---for example, in
970batch mode or quiet mode.
971
972@table @code
973@item -nx
974@itemx -n
d700128c
EZ
975@cindex @code{--nx}
976@cindex @code{-n}
96565e91 977Do not execute commands found in any initialization files. Normally,
2df3850c
JM
978@value{GDBN} executes the commands in these files after all the command
979options and arguments have been processed. @xref{Command Files,,Command
980files}.
c906108c
SS
981
982@item -quiet
d700128c 983@itemx -silent
c906108c 984@itemx -q
d700128c
EZ
985@cindex @code{--quiet}
986@cindex @code{--silent}
987@cindex @code{-q}
c906108c
SS
988``Quiet''. Do not print the introductory and copyright messages. These
989messages are also suppressed in batch mode.
990
991@item -batch
d700128c 992@cindex @code{--batch}
c906108c
SS
993Run in batch mode. Exit with status @code{0} after processing all the
994command files specified with @samp{-x} (and all commands from
995initialization files, if not inhibited with @samp{-n}). Exit with
996nonzero status if an error occurs in executing the @value{GDBN} commands
997in the command files.
998
2df3850c
JM
999Batch mode may be useful for running @value{GDBN} as a filter, for
1000example to download and run a program on another computer; in order to
1001make this more useful, the message
c906108c 1002
474c8240 1003@smallexample
c906108c 1004Program exited normally.
474c8240 1005@end smallexample
c906108c
SS
1006
1007@noindent
2df3850c
JM
1008(which is ordinarily issued whenever a program running under
1009@value{GDBN} control terminates) is not issued when running in batch
1010mode.
1011
1012@item -nowindows
1013@itemx -nw
d700128c
EZ
1014@cindex @code{--nowindows}
1015@cindex @code{-nw}
2df3850c 1016``No windows''. If @value{GDBN} comes with a graphical user interface
96a2c332 1017(GUI) built in, then this option tells @value{GDBN} to only use the command-line
2df3850c
JM
1018interface. If no GUI is available, this option has no effect.
1019
1020@item -windows
1021@itemx -w
d700128c
EZ
1022@cindex @code{--windows}
1023@cindex @code{-w}
2df3850c
JM
1024If @value{GDBN} includes a GUI, then this option requires it to be
1025used if possible.
c906108c
SS
1026
1027@item -cd @var{directory}
d700128c 1028@cindex @code{--cd}
c906108c
SS
1029Run @value{GDBN} using @var{directory} as its working directory,
1030instead of the current directory.
1031
c906108c
SS
1032@item -fullname
1033@itemx -f
d700128c
EZ
1034@cindex @code{--fullname}
1035@cindex @code{-f}
7a292a7a
SS
1036@sc{gnu} Emacs sets this option when it runs @value{GDBN} as a
1037subprocess. It tells @value{GDBN} to output the full file name and line
1038number in a standard, recognizable fashion each time a stack frame is
1039displayed (which includes each time your program stops). This
1040recognizable format looks like two @samp{\032} characters, followed by
1041the file name, line number and character position separated by colons,
1042and a newline. The Emacs-to-@value{GDBN} interface program uses the two
1043@samp{\032} characters as a signal to display the source code for the
1044frame.
c906108c 1045
d700128c
EZ
1046@item -epoch
1047@cindex @code{--epoch}
1048The Epoch Emacs-@value{GDBN} interface sets this option when it runs
1049@value{GDBN} as a subprocess. It tells @value{GDBN} to modify its print
1050routines so as to allow Epoch to display values of expressions in a
1051separate window.
1052
1053@item -annotate @var{level}
1054@cindex @code{--annotate}
1055This option sets the @dfn{annotation level} inside @value{GDBN}. Its
1056effect is identical to using @samp{set annotate @var{level}}
086432e2
AC
1057(@pxref{Annotations}). The annotation @var{level} controls how much
1058information @value{GDBN} prints together with its prompt, values of
1059expressions, source lines, and other types of output. Level 0 is the
1060normal, level 1 is for use when @value{GDBN} is run as a subprocess of
1061@sc{gnu} Emacs, level 3 is the maximum annotation suitable for programs
1062that control @value{GDBN}, and level 2 has been deprecated.
1063
1064The annotation mechanism has largely been superseeded by @sc{gdb/mi}
1065(@pxref{GDB/MI}).
d700128c
EZ
1066
1067@item -async
1068@cindex @code{--async}
1069Use the asynchronous event loop for the command-line interface.
1070@value{GDBN} processes all events, such as user keyboard input, via a
1071special event loop. This allows @value{GDBN} to accept and process user
1072commands in parallel with the debugged process being
1073run@footnote{@value{GDBN} built with @sc{djgpp} tools for
1074MS-DOS/MS-Windows supports this mode of operation, but the event loop is
1075suspended when the debuggee runs.}, so you don't need to wait for
1076control to return to @value{GDBN} before you type the next command.
b37052ae 1077(@emph{Note:} as of version 5.1, the target side of the asynchronous
d700128c
EZ
1078operation is not yet in place, so @samp{-async} does not work fully
1079yet.)
1080@c FIXME: when the target side of the event loop is done, the above NOTE
1081@c should be removed.
1082
1083When the standard input is connected to a terminal device, @value{GDBN}
1084uses the asynchronous event loop by default, unless disabled by the
1085@samp{-noasync} option.
1086
1087@item -noasync
1088@cindex @code{--noasync}
1089Disable the asynchronous event loop for the command-line interface.
1090
aa26fa3a
TT
1091@item --args
1092@cindex @code{--args}
1093Change interpretation of command line so that arguments following the
1094executable file are passed as command line arguments to the inferior.
1095This option stops option processing.
1096
2df3850c
JM
1097@item -baud @var{bps}
1098@itemx -b @var{bps}
d700128c
EZ
1099@cindex @code{--baud}
1100@cindex @code{-b}
c906108c
SS
1101Set the line speed (baud rate or bits per second) of any serial
1102interface used by @value{GDBN} for remote debugging.
c906108c
SS
1103
1104@item -tty @var{device}
d700128c
EZ
1105@itemx -t @var{device}
1106@cindex @code{--tty}
1107@cindex @code{-t}
c906108c
SS
1108Run using @var{device} for your program's standard input and output.
1109@c FIXME: kingdon thinks there is more to -tty. Investigate.
c906108c 1110
53a5351d 1111@c resolve the situation of these eventually
c4555f82
SC
1112@item -tui
1113@cindex @code{--tui}
1114Activate the Terminal User Interface when starting.
1115The Terminal User Interface manages several text windows on the terminal,
1116showing source, assembly, registers and @value{GDBN} command outputs
1117(@pxref{TUI, ,@value{GDBN} Text User Interface}).
1118Do not use this option if you run @value{GDBN} from Emacs
1119(@pxref{Emacs, ,Using @value{GDBN} under @sc{gnu} Emacs}).
53a5351d
JM
1120
1121@c @item -xdb
d700128c 1122@c @cindex @code{--xdb}
53a5351d
JM
1123@c Run in XDB compatibility mode, allowing the use of certain XDB commands.
1124@c For information, see the file @file{xdb_trans.html}, which is usually
1125@c installed in the directory @code{/opt/langtools/wdb/doc} on HP-UX
1126@c systems.
1127
d700128c
EZ
1128@item -interpreter @var{interp}
1129@cindex @code{--interpreter}
1130Use the interpreter @var{interp} for interface with the controlling
1131program or device. This option is meant to be set by programs which
94bbb2c0 1132communicate with @value{GDBN} using it as a back end.
21c294e6 1133@xref{Interpreters, , Command Interpreters}.
94bbb2c0 1134
da0f9dcd 1135@samp{--interpreter=mi} (or @samp{--interpreter=mi2}) causes
2fcf52f0
AC
1136@value{GDBN} to use the @dfn{@sc{gdb/mi} interface} (@pxref{GDB/MI, ,
1137The @sc{gdb/mi} Interface}) included in @var{GDBN} version 6.0. The
1138previous @sc{gdb/mi} interface, included in @value{GDBN} version 5.3,
1139can be selected with @samp{--interpreter=mi1}. Earlier @sc{gdb/mi}
1140interfaces are not supported.
d700128c
EZ
1141
1142@item -write
1143@cindex @code{--write}
1144Open the executable and core files for both reading and writing. This
1145is equivalent to the @samp{set write on} command inside @value{GDBN}
1146(@pxref{Patching}).
1147
1148@item -statistics
1149@cindex @code{--statistics}
1150This option causes @value{GDBN} to print statistics about time and
1151memory usage after it completes each command and returns to the prompt.
1152
1153@item -version
1154@cindex @code{--version}
1155This option causes @value{GDBN} to print its version number and
1156no-warranty blurb, and exit.
1157
c906108c
SS
1158@end table
1159
6d2ebf8b 1160@node Quitting GDB
c906108c
SS
1161@section Quitting @value{GDBN}
1162@cindex exiting @value{GDBN}
1163@cindex leaving @value{GDBN}
1164
1165@table @code
1166@kindex quit @r{[}@var{expression}@r{]}
41afff9a 1167@kindex q @r{(@code{quit})}
96a2c332
SS
1168@item quit @r{[}@var{expression}@r{]}
1169@itemx q
1170To exit @value{GDBN}, use the @code{quit} command (abbreviated
1171@code{q}), or type an end-of-file character (usually @kbd{C-d}). If you
1172do not supply @var{expression}, @value{GDBN} will terminate normally;
1173otherwise it will terminate using the result of @var{expression} as the
1174error code.
c906108c
SS
1175@end table
1176
1177@cindex interrupt
1178An interrupt (often @kbd{C-c}) does not exit from @value{GDBN}, but rather
1179terminates the action of any @value{GDBN} command that is in progress and
1180returns to @value{GDBN} command level. It is safe to type the interrupt
1181character at any time because @value{GDBN} does not allow it to take effect
1182until a time when it is safe.
1183
c906108c
SS
1184If you have been using @value{GDBN} to control an attached process or
1185device, you can release it with the @code{detach} command
1186(@pxref{Attach, ,Debugging an already-running process}).
c906108c 1187
6d2ebf8b 1188@node Shell Commands
c906108c
SS
1189@section Shell commands
1190
1191If you need to execute occasional shell commands during your
1192debugging session, there is no need to leave or suspend @value{GDBN}; you can
1193just use the @code{shell} command.
1194
1195@table @code
1196@kindex shell
1197@cindex shell escape
1198@item shell @var{command string}
1199Invoke a standard shell to execute @var{command string}.
c906108c 1200If it exists, the environment variable @code{SHELL} determines which
d4f3574e
SS
1201shell to run. Otherwise @value{GDBN} uses the default shell
1202(@file{/bin/sh} on Unix systems, @file{COMMAND.COM} on MS-DOS, etc.).
c906108c
SS
1203@end table
1204
1205The utility @code{make} is often needed in development environments.
1206You do not have to use the @code{shell} command for this purpose in
1207@value{GDBN}:
1208
1209@table @code
1210@kindex make
1211@cindex calling make
1212@item make @var{make-args}
1213Execute the @code{make} program with the specified
1214arguments. This is equivalent to @samp{shell make @var{make-args}}.
1215@end table
1216
0fac0b41
DJ
1217@node Logging output
1218@section Logging output
1219@cindex logging @value{GDBN} output
1220
1221You may want to save the output of @value{GDBN} commands to a file.
1222There are several commands to control @value{GDBN}'s logging.
1223
1224@table @code
1225@kindex set logging
1226@item set logging on
1227Enable logging.
1228@item set logging off
1229Disable logging.
1230@item set logging file @var{file}
1231Change the name of the current logfile. The default logfile is @file{gdb.txt}.
1232@item set logging overwrite [on|off]
1233By default, @value{GDBN} will append to the logfile. Set @code{overwrite} if
1234you want @code{set logging on} to overwrite the logfile instead.
1235@item set logging redirect [on|off]
1236By default, @value{GDBN} output will go to both the terminal and the logfile.
1237Set @code{redirect} if you want output to go only to the log file.
1238@kindex show logging
1239@item show logging
1240Show the current values of the logging settings.
1241@end table
1242
6d2ebf8b 1243@node Commands
c906108c
SS
1244@chapter @value{GDBN} Commands
1245
1246You can abbreviate a @value{GDBN} command to the first few letters of the command
1247name, if that abbreviation is unambiguous; and you can repeat certain
1248@value{GDBN} commands by typing just @key{RET}. You can also use the @key{TAB}
1249key to get @value{GDBN} to fill out the rest of a word in a command (or to
1250show you the alternatives available, if there is more than one possibility).
1251
1252@menu
1253* Command Syntax:: How to give commands to @value{GDBN}
1254* Completion:: Command completion
1255* Help:: How to ask @value{GDBN} for help
1256@end menu
1257
6d2ebf8b 1258@node Command Syntax
c906108c
SS
1259@section Command syntax
1260
1261A @value{GDBN} command is a single line of input. There is no limit on
1262how long it can be. It starts with a command name, which is followed by
1263arguments whose meaning depends on the command name. For example, the
1264command @code{step} accepts an argument which is the number of times to
1265step, as in @samp{step 5}. You can also use the @code{step} command
96a2c332 1266with no arguments. Some commands do not allow any arguments.
c906108c
SS
1267
1268@cindex abbreviation
1269@value{GDBN} command names may always be truncated if that abbreviation is
1270unambiguous. Other possible command abbreviations are listed in the
1271documentation for individual commands. In some cases, even ambiguous
1272abbreviations are allowed; for example, @code{s} is specially defined as
1273equivalent to @code{step} even though there are other commands whose
1274names start with @code{s}. You can test abbreviations by using them as
1275arguments to the @code{help} command.
1276
1277@cindex repeating commands
41afff9a 1278@kindex RET @r{(repeat last command)}
c906108c 1279A blank line as input to @value{GDBN} (typing just @key{RET}) means to
96a2c332 1280repeat the previous command. Certain commands (for example, @code{run})
c906108c
SS
1281will not repeat this way; these are commands whose unintentional
1282repetition might cause trouble and which you are unlikely to want to
1283repeat.
1284
1285The @code{list} and @code{x} commands, when you repeat them with
1286@key{RET}, construct new arguments rather than repeating
1287exactly as typed. This permits easy scanning of source or memory.
1288
1289@value{GDBN} can also use @key{RET} in another way: to partition lengthy
1290output, in a way similar to the common utility @code{more}
1291(@pxref{Screen Size,,Screen size}). Since it is easy to press one
1292@key{RET} too many in this situation, @value{GDBN} disables command
1293repetition after any command that generates this sort of display.
1294
41afff9a 1295@kindex # @r{(a comment)}
c906108c
SS
1296@cindex comment
1297Any text from a @kbd{#} to the end of the line is a comment; it does
1298nothing. This is useful mainly in command files (@pxref{Command
1299Files,,Command files}).
1300
88118b3a
TT
1301@cindex repeating command sequences
1302@kindex C-o @r{(operate-and-get-next)}
1303The @kbd{C-o} binding is useful for repeating a complex sequence of
1304commands. This command accepts the current line, like @kbd{RET}, and
1305then fetches the next line relative to the current line from the history
1306for editing.
1307
6d2ebf8b 1308@node Completion
c906108c
SS
1309@section Command completion
1310
1311@cindex completion
1312@cindex word completion
1313@value{GDBN} can fill in the rest of a word in a command for you, if there is
1314only one possibility; it can also show you what the valid possibilities
1315are for the next word in a command, at any time. This works for @value{GDBN}
1316commands, @value{GDBN} subcommands, and the names of symbols in your program.
1317
1318Press the @key{TAB} key whenever you want @value{GDBN} to fill out the rest
1319of a word. If there is only one possibility, @value{GDBN} fills in the
1320word, and waits for you to finish the command (or press @key{RET} to
1321enter it). For example, if you type
1322
1323@c FIXME "@key" does not distinguish its argument sufficiently to permit
1324@c complete accuracy in these examples; space introduced for clarity.
1325@c If texinfo enhancements make it unnecessary, it would be nice to
1326@c replace " @key" by "@key" in the following...
474c8240 1327@smallexample
c906108c 1328(@value{GDBP}) info bre @key{TAB}
474c8240 1329@end smallexample
c906108c
SS
1330
1331@noindent
1332@value{GDBN} fills in the rest of the word @samp{breakpoints}, since that is
1333the only @code{info} subcommand beginning with @samp{bre}:
1334
474c8240 1335@smallexample
c906108c 1336(@value{GDBP}) info breakpoints
474c8240 1337@end smallexample
c906108c
SS
1338
1339@noindent
1340You can either press @key{RET} at this point, to run the @code{info
1341breakpoints} command, or backspace and enter something else, if
1342@samp{breakpoints} does not look like the command you expected. (If you
1343were sure you wanted @code{info breakpoints} in the first place, you
1344might as well just type @key{RET} immediately after @samp{info bre},
1345to exploit command abbreviations rather than command completion).
1346
1347If there is more than one possibility for the next word when you press
1348@key{TAB}, @value{GDBN} sounds a bell. You can either supply more
1349characters and try again, or just press @key{TAB} a second time;
1350@value{GDBN} displays all the possible completions for that word. For
1351example, you might want to set a breakpoint on a subroutine whose name
1352begins with @samp{make_}, but when you type @kbd{b make_@key{TAB}} @value{GDBN}
1353just sounds the bell. Typing @key{TAB} again displays all the
1354function names in your program that begin with those characters, for
1355example:
1356
474c8240 1357@smallexample
c906108c
SS
1358(@value{GDBP}) b make_ @key{TAB}
1359@exdent @value{GDBN} sounds bell; press @key{TAB} again, to see:
5d161b24
DB
1360make_a_section_from_file make_environ
1361make_abs_section make_function_type
1362make_blockvector make_pointer_type
1363make_cleanup make_reference_type
c906108c
SS
1364make_command make_symbol_completion_list
1365(@value{GDBP}) b make_
474c8240 1366@end smallexample
c906108c
SS
1367
1368@noindent
1369After displaying the available possibilities, @value{GDBN} copies your
1370partial input (@samp{b make_} in the example) so you can finish the
1371command.
1372
1373If you just want to see the list of alternatives in the first place, you
b37052ae 1374can press @kbd{M-?} rather than pressing @key{TAB} twice. @kbd{M-?}
7a292a7a 1375means @kbd{@key{META} ?}. You can type this either by holding down a
c906108c 1376key designated as the @key{META} shift on your keyboard (if there is
7a292a7a 1377one) while typing @kbd{?}, or as @key{ESC} followed by @kbd{?}.
c906108c
SS
1378
1379@cindex quotes in commands
1380@cindex completion of quoted strings
1381Sometimes the string you need, while logically a ``word'', may contain
7a292a7a
SS
1382parentheses or other characters that @value{GDBN} normally excludes from
1383its notion of a word. To permit word completion to work in this
1384situation, you may enclose words in @code{'} (single quote marks) in
1385@value{GDBN} commands.
c906108c 1386
c906108c 1387The most likely situation where you might need this is in typing the
b37052ae
EZ
1388name of a C@t{++} function. This is because C@t{++} allows function
1389overloading (multiple definitions of the same function, distinguished
1390by argument type). For example, when you want to set a breakpoint you
1391may need to distinguish whether you mean the version of @code{name}
1392that takes an @code{int} parameter, @code{name(int)}, or the version
1393that takes a @code{float} parameter, @code{name(float)}. To use the
1394word-completion facilities in this situation, type a single quote
1395@code{'} at the beginning of the function name. This alerts
1396@value{GDBN} that it may need to consider more information than usual
1397when you press @key{TAB} or @kbd{M-?} to request word completion:
c906108c 1398
474c8240 1399@smallexample
96a2c332 1400(@value{GDBP}) b 'bubble( @kbd{M-?}
c906108c
SS
1401bubble(double,double) bubble(int,int)
1402(@value{GDBP}) b 'bubble(
474c8240 1403@end smallexample
c906108c
SS
1404
1405In some cases, @value{GDBN} can tell that completing a name requires using
1406quotes. When this happens, @value{GDBN} inserts the quote for you (while
1407completing as much as it can) if you do not type the quote in the first
1408place:
1409
474c8240 1410@smallexample
c906108c
SS
1411(@value{GDBP}) b bub @key{TAB}
1412@exdent @value{GDBN} alters your input line to the following, and rings a bell:
1413(@value{GDBP}) b 'bubble(
474c8240 1414@end smallexample
c906108c
SS
1415
1416@noindent
1417In general, @value{GDBN} can tell that a quote is needed (and inserts it) if
1418you have not yet started typing the argument list when you ask for
1419completion on an overloaded symbol.
1420
d4f3574e 1421For more information about overloaded functions, see @ref{C plus plus
b37052ae 1422expressions, ,C@t{++} expressions}. You can use the command @code{set
c906108c 1423overload-resolution off} to disable overload resolution;
b37052ae 1424see @ref{Debugging C plus plus, ,@value{GDBN} features for C@t{++}}.
c906108c
SS
1425
1426
6d2ebf8b 1427@node Help
c906108c
SS
1428@section Getting help
1429@cindex online documentation
1430@kindex help
1431
5d161b24 1432You can always ask @value{GDBN} itself for information on its commands,
c906108c
SS
1433using the command @code{help}.
1434
1435@table @code
41afff9a 1436@kindex h @r{(@code{help})}
c906108c
SS
1437@item help
1438@itemx h
1439You can use @code{help} (abbreviated @code{h}) with no arguments to
1440display a short list of named classes of commands:
1441
1442@smallexample
1443(@value{GDBP}) help
1444List of classes of commands:
1445
2df3850c 1446aliases -- Aliases of other commands
c906108c 1447breakpoints -- Making program stop at certain points
2df3850c 1448data -- Examining data
c906108c 1449files -- Specifying and examining files
2df3850c
JM
1450internals -- Maintenance commands
1451obscure -- Obscure features
1452running -- Running the program
1453stack -- Examining the stack
c906108c
SS
1454status -- Status inquiries
1455support -- Support facilities
96a2c332
SS
1456tracepoints -- Tracing of program execution without@*
1457 stopping the program
c906108c 1458user-defined -- User-defined commands
c906108c 1459
5d161b24 1460Type "help" followed by a class name for a list of
c906108c 1461commands in that class.
5d161b24 1462Type "help" followed by command name for full
c906108c
SS
1463documentation.
1464Command name abbreviations are allowed if unambiguous.
1465(@value{GDBP})
1466@end smallexample
96a2c332 1467@c the above line break eliminates huge line overfull...
c906108c
SS
1468
1469@item help @var{class}
1470Using one of the general help classes as an argument, you can get a
1471list of the individual commands in that class. For example, here is the
1472help display for the class @code{status}:
1473
1474@smallexample
1475(@value{GDBP}) help status
1476Status inquiries.
1477
1478List of commands:
1479
1480@c Line break in "show" line falsifies real output, but needed
1481@c to fit in smallbook page size.
2df3850c
JM
1482info -- Generic command for showing things
1483 about the program being debugged
1484show -- Generic command for showing things
1485 about the debugger
c906108c 1486
5d161b24 1487Type "help" followed by command name for full
c906108c
SS
1488documentation.
1489Command name abbreviations are allowed if unambiguous.
1490(@value{GDBP})
1491@end smallexample
1492
1493@item help @var{command}
1494With a command name as @code{help} argument, @value{GDBN} displays a
1495short paragraph on how to use that command.
1496
6837a0a2
DB
1497@kindex apropos
1498@item apropos @var{args}
1499The @code{apropos @var{args}} command searches through all of the @value{GDBN}
1500commands, and their documentation, for the regular expression specified in
1501@var{args}. It prints out all matches found. For example:
1502
1503@smallexample
1504apropos reload
1505@end smallexample
1506
b37052ae
EZ
1507@noindent
1508results in:
6837a0a2
DB
1509
1510@smallexample
6d2ebf8b
SS
1511@c @group
1512set symbol-reloading -- Set dynamic symbol table reloading
1513 multiple times in one run
1514show symbol-reloading -- Show dynamic symbol table reloading
1515 multiple times in one run
1516@c @end group
6837a0a2
DB
1517@end smallexample
1518
c906108c
SS
1519@kindex complete
1520@item complete @var{args}
1521The @code{complete @var{args}} command lists all the possible completions
1522for the beginning of a command. Use @var{args} to specify the beginning of the
1523command you want completed. For example:
1524
1525@smallexample
1526complete i
1527@end smallexample
1528
1529@noindent results in:
1530
1531@smallexample
1532@group
2df3850c
JM
1533if
1534ignore
c906108c
SS
1535info
1536inspect
c906108c
SS
1537@end group
1538@end smallexample
1539
1540@noindent This is intended for use by @sc{gnu} Emacs.
1541@end table
1542
1543In addition to @code{help}, you can use the @value{GDBN} commands @code{info}
1544and @code{show} to inquire about the state of your program, or the state
1545of @value{GDBN} itself. Each command supports many topics of inquiry; this
1546manual introduces each of them in the appropriate context. The listings
1547under @code{info} and under @code{show} in the Index point to
1548all the sub-commands. @xref{Index}.
1549
1550@c @group
1551@table @code
1552@kindex info
41afff9a 1553@kindex i @r{(@code{info})}
c906108c
SS
1554@item info
1555This command (abbreviated @code{i}) is for describing the state of your
1556program. For example, you can list the arguments given to your program
1557with @code{info args}, list the registers currently in use with @code{info
1558registers}, or list the breakpoints you have set with @code{info breakpoints}.
1559You can get a complete list of the @code{info} sub-commands with
1560@w{@code{help info}}.
1561
1562@kindex set
1563@item set
5d161b24 1564You can assign the result of an expression to an environment variable with
c906108c
SS
1565@code{set}. For example, you can set the @value{GDBN} prompt to a $-sign with
1566@code{set prompt $}.
1567
1568@kindex show
1569@item show
5d161b24 1570In contrast to @code{info}, @code{show} is for describing the state of
c906108c
SS
1571@value{GDBN} itself.
1572You can change most of the things you can @code{show}, by using the
1573related command @code{set}; for example, you can control what number
1574system is used for displays with @code{set radix}, or simply inquire
1575which is currently in use with @code{show radix}.
1576
1577@kindex info set
1578To display all the settable parameters and their current
1579values, you can use @code{show} with no arguments; you may also use
1580@code{info set}. Both commands produce the same display.
1581@c FIXME: "info set" violates the rule that "info" is for state of
1582@c FIXME...program. Ck w/ GNU: "info set" to be called something else,
1583@c FIXME...or change desc of rule---eg "state of prog and debugging session"?
1584@end table
1585@c @end group
1586
1587Here are three miscellaneous @code{show} subcommands, all of which are
1588exceptional in lacking corresponding @code{set} commands:
1589
1590@table @code
1591@kindex show version
1592@cindex version number
1593@item show version
1594Show what version of @value{GDBN} is running. You should include this
2df3850c
JM
1595information in @value{GDBN} bug-reports. If multiple versions of
1596@value{GDBN} are in use at your site, you may need to determine which
1597version of @value{GDBN} you are running; as @value{GDBN} evolves, new
1598commands are introduced, and old ones may wither away. Also, many
1599system vendors ship variant versions of @value{GDBN}, and there are
96a2c332 1600variant versions of @value{GDBN} in @sc{gnu}/Linux distributions as well.
2df3850c
JM
1601The version number is the same as the one announced when you start
1602@value{GDBN}.
c906108c
SS
1603
1604@kindex show copying
1605@item show copying
1606Display information about permission for copying @value{GDBN}.
1607
1608@kindex show warranty
1609@item show warranty
2df3850c 1610Display the @sc{gnu} ``NO WARRANTY'' statement, or a warranty,
96a2c332 1611if your version of @value{GDBN} comes with one.
2df3850c 1612
c906108c
SS
1613@end table
1614
6d2ebf8b 1615@node Running
c906108c
SS
1616@chapter Running Programs Under @value{GDBN}
1617
1618When you run a program under @value{GDBN}, you must first generate
1619debugging information when you compile it.
7a292a7a
SS
1620
1621You may start @value{GDBN} with its arguments, if any, in an environment
1622of your choice. If you are doing native debugging, you may redirect
1623your program's input and output, debug an already running process, or
1624kill a child process.
c906108c
SS
1625
1626@menu
1627* Compilation:: Compiling for debugging
1628* Starting:: Starting your program
c906108c
SS
1629* Arguments:: Your program's arguments
1630* Environment:: Your program's environment
c906108c
SS
1631
1632* Working Directory:: Your program's working directory
1633* Input/Output:: Your program's input and output
1634* Attach:: Debugging an already-running process
1635* Kill Process:: Killing the child process
c906108c
SS
1636
1637* Threads:: Debugging programs with multiple threads
1638* Processes:: Debugging programs with multiple processes
1639@end menu
1640
6d2ebf8b 1641@node Compilation
c906108c
SS
1642@section Compiling for debugging
1643
1644In order to debug a program effectively, you need to generate
1645debugging information when you compile it. This debugging information
1646is stored in the object file; it describes the data type of each
1647variable or function and the correspondence between source line numbers
1648and addresses in the executable code.
1649
1650To request debugging information, specify the @samp{-g} option when you run
1651the compiler.
1652
e2e0bcd1
JB
1653Most compilers do not include information about preprocessor macros in
1654the debugging information if you specify the @option{-g} flag alone,
1655because this information is rather large. Version 3.1 of @value{NGCC},
1656the @sc{gnu} C compiler, provides macro information if you specify the
1657options @option{-gdwarf-2} and @option{-g3}; the former option requests
1658debugging information in the Dwarf 2 format, and the latter requests
1659``extra information''. In the future, we hope to find more compact ways
1660to represent macro information, so that it can be included with
1661@option{-g} alone.
1662
c906108c
SS
1663Many C compilers are unable to handle the @samp{-g} and @samp{-O}
1664options together. Using those compilers, you cannot generate optimized
1665executables containing debugging information.
1666
53a5351d
JM
1667@value{NGCC}, the @sc{gnu} C compiler, supports @samp{-g} with or
1668without @samp{-O}, making it possible to debug optimized code. We
1669recommend that you @emph{always} use @samp{-g} whenever you compile a
1670program. You may think your program is correct, but there is no sense
1671in pushing your luck.
c906108c
SS
1672
1673@cindex optimized code, debugging
1674@cindex debugging optimized code
1675When you debug a program compiled with @samp{-g -O}, remember that the
1676optimizer is rearranging your code; the debugger shows you what is
1677really there. Do not be too surprised when the execution path does not
1678exactly match your source file! An extreme example: if you define a
1679variable, but never use it, @value{GDBN} never sees that
1680variable---because the compiler optimizes it out of existence.
1681
1682Some things do not work as well with @samp{-g -O} as with just
1683@samp{-g}, particularly on machines with instruction scheduling. If in
1684doubt, recompile with @samp{-g} alone, and if this fixes the problem,
1685please report it to us as a bug (including a test case!).
1686
1687Older versions of the @sc{gnu} C compiler permitted a variant option
1688@w{@samp{-gg}} for debugging information. @value{GDBN} no longer supports this
1689format; if your @sc{gnu} C compiler has this option, do not use it.
1690
1691@need 2000
6d2ebf8b 1692@node Starting
c906108c
SS
1693@section Starting your program
1694@cindex starting
1695@cindex running
1696
1697@table @code
1698@kindex run
41afff9a 1699@kindex r @r{(@code{run})}
c906108c
SS
1700@item run
1701@itemx r
7a292a7a
SS
1702Use the @code{run} command to start your program under @value{GDBN}.
1703You must first specify the program name (except on VxWorks) with an
1704argument to @value{GDBN} (@pxref{Invocation, ,Getting In and Out of
1705@value{GDBN}}), or by using the @code{file} or @code{exec-file} command
1706(@pxref{Files, ,Commands to specify files}).
c906108c
SS
1707
1708@end table
1709
c906108c
SS
1710If you are running your program in an execution environment that
1711supports processes, @code{run} creates an inferior process and makes
1712that process run your program. (In environments without processes,
1713@code{run} jumps to the start of your program.)
1714
1715The execution of a program is affected by certain information it
1716receives from its superior. @value{GDBN} provides ways to specify this
1717information, which you must do @emph{before} starting your program. (You
1718can change it after starting your program, but such changes only affect
1719your program the next time you start it.) This information may be
1720divided into four categories:
1721
1722@table @asis
1723@item The @emph{arguments.}
1724Specify the arguments to give your program as the arguments of the
1725@code{run} command. If a shell is available on your target, the shell
1726is used to pass the arguments, so that you may use normal conventions
1727(such as wildcard expansion or variable substitution) in describing
1728the arguments.
1729In Unix systems, you can control which shell is used with the
1730@code{SHELL} environment variable.
1731@xref{Arguments, ,Your program's arguments}.
1732
1733@item The @emph{environment.}
1734Your program normally inherits its environment from @value{GDBN}, but you can
1735use the @value{GDBN} commands @code{set environment} and @code{unset
1736environment} to change parts of the environment that affect
1737your program. @xref{Environment, ,Your program's environment}.
1738
1739@item The @emph{working directory.}
1740Your program inherits its working directory from @value{GDBN}. You can set
1741the @value{GDBN} working directory with the @code{cd} command in @value{GDBN}.
1742@xref{Working Directory, ,Your program's working directory}.
1743
1744@item The @emph{standard input and output.}
1745Your program normally uses the same device for standard input and
1746standard output as @value{GDBN} is using. You can redirect input and output
1747in the @code{run} command line, or you can use the @code{tty} command to
1748set a different device for your program.
1749@xref{Input/Output, ,Your program's input and output}.
1750
1751@cindex pipes
1752@emph{Warning:} While input and output redirection work, you cannot use
1753pipes to pass the output of the program you are debugging to another
1754program; if you attempt this, @value{GDBN} is likely to wind up debugging the
1755wrong program.
1756@end table
c906108c
SS
1757
1758When you issue the @code{run} command, your program begins to execute
1759immediately. @xref{Stopping, ,Stopping and continuing}, for discussion
1760of how to arrange for your program to stop. Once your program has
1761stopped, you may call functions in your program, using the @code{print}
1762or @code{call} commands. @xref{Data, ,Examining Data}.
1763
1764If the modification time of your symbol file has changed since the last
1765time @value{GDBN} read its symbols, @value{GDBN} discards its symbol
1766table, and reads it again. When it does this, @value{GDBN} tries to retain
1767your current breakpoints.
1768
6d2ebf8b 1769@node Arguments
c906108c
SS
1770@section Your program's arguments
1771
1772@cindex arguments (to your program)
1773The arguments to your program can be specified by the arguments of the
5d161b24 1774@code{run} command.
c906108c
SS
1775They are passed to a shell, which expands wildcard characters and
1776performs redirection of I/O, and thence to your program. Your
1777@code{SHELL} environment variable (if it exists) specifies what shell
1778@value{GDBN} uses. If you do not define @code{SHELL}, @value{GDBN} uses
d4f3574e
SS
1779the default shell (@file{/bin/sh} on Unix).
1780
1781On non-Unix systems, the program is usually invoked directly by
1782@value{GDBN}, which emulates I/O redirection via the appropriate system
1783calls, and the wildcard characters are expanded by the startup code of
1784the program, not by the shell.
c906108c
SS
1785
1786@code{run} with no arguments uses the same arguments used by the previous
1787@code{run}, or those set by the @code{set args} command.
1788
c906108c 1789@table @code
41afff9a 1790@kindex set args
c906108c
SS
1791@item set args
1792Specify the arguments to be used the next time your program is run. If
1793@code{set args} has no arguments, @code{run} executes your program
1794with no arguments. Once you have run your program with arguments,
1795using @code{set args} before the next @code{run} is the only way to run
1796it again without arguments.
1797
1798@kindex show args
1799@item show args
1800Show the arguments to give your program when it is started.
1801@end table
1802
6d2ebf8b 1803@node Environment
c906108c
SS
1804@section Your program's environment
1805
1806@cindex environment (of your program)
1807The @dfn{environment} consists of a set of environment variables and
1808their values. Environment variables conventionally record such things as
1809your user name, your home directory, your terminal type, and your search
1810path for programs to run. Usually you set up environment variables with
1811the shell and they are inherited by all the other programs you run. When
1812debugging, it can be useful to try running your program with a modified
1813environment without having to start @value{GDBN} over again.
1814
1815@table @code
1816@kindex path
1817@item path @var{directory}
1818Add @var{directory} to the front of the @code{PATH} environment variable
17cc6a06
EZ
1819(the search path for executables) that will be passed to your program.
1820The value of @code{PATH} used by @value{GDBN} does not change.
d4f3574e
SS
1821You may specify several directory names, separated by whitespace or by a
1822system-dependent separator character (@samp{:} on Unix, @samp{;} on
1823MS-DOS and MS-Windows). If @var{directory} is already in the path, it
1824is moved to the front, so it is searched sooner.
c906108c
SS
1825
1826You can use the string @samp{$cwd} to refer to whatever is the current
1827working directory at the time @value{GDBN} searches the path. If you
1828use @samp{.} instead, it refers to the directory where you executed the
1829@code{path} command. @value{GDBN} replaces @samp{.} in the
1830@var{directory} argument (with the current path) before adding
1831@var{directory} to the search path.
1832@c 'path' is explicitly nonrepeatable, but RMS points out it is silly to
1833@c document that, since repeating it would be a no-op.
1834
1835@kindex show paths
1836@item show paths
1837Display the list of search paths for executables (the @code{PATH}
1838environment variable).
1839
1840@kindex show environment
1841@item show environment @r{[}@var{varname}@r{]}
1842Print the value of environment variable @var{varname} to be given to
1843your program when it starts. If you do not supply @var{varname},
1844print the names and values of all environment variables to be given to
1845your program. You can abbreviate @code{environment} as @code{env}.
1846
1847@kindex set environment
53a5351d 1848@item set environment @var{varname} @r{[}=@var{value}@r{]}
c906108c
SS
1849Set environment variable @var{varname} to @var{value}. The value
1850changes for your program only, not for @value{GDBN} itself. @var{value} may
1851be any string; the values of environment variables are just strings, and
1852any interpretation is supplied by your program itself. The @var{value}
1853parameter is optional; if it is eliminated, the variable is set to a
1854null value.
1855@c "any string" here does not include leading, trailing
1856@c blanks. Gnu asks: does anyone care?
1857
1858For example, this command:
1859
474c8240 1860@smallexample
c906108c 1861set env USER = foo
474c8240 1862@end smallexample
c906108c
SS
1863
1864@noindent
d4f3574e 1865tells the debugged program, when subsequently run, that its user is named
c906108c
SS
1866@samp{foo}. (The spaces around @samp{=} are used for clarity here; they
1867are not actually required.)
1868
1869@kindex unset environment
1870@item unset environment @var{varname}
1871Remove variable @var{varname} from the environment to be passed to your
1872program. This is different from @samp{set env @var{varname} =};
1873@code{unset environment} removes the variable from the environment,
1874rather than assigning it an empty value.
1875@end table
1876
d4f3574e
SS
1877@emph{Warning:} On Unix systems, @value{GDBN} runs your program using
1878the shell indicated
c906108c
SS
1879by your @code{SHELL} environment variable if it exists (or
1880@code{/bin/sh} if not). If your @code{SHELL} variable names a shell
1881that runs an initialization file---such as @file{.cshrc} for C-shell, or
1882@file{.bashrc} for BASH---any variables you set in that file affect
1883your program. You may wish to move setting of environment variables to
1884files that are only run when you sign on, such as @file{.login} or
1885@file{.profile}.
1886
6d2ebf8b 1887@node Working Directory
c906108c
SS
1888@section Your program's working directory
1889
1890@cindex working directory (of your program)
1891Each time you start your program with @code{run}, it inherits its
1892working directory from the current working directory of @value{GDBN}.
1893The @value{GDBN} working directory is initially whatever it inherited
1894from its parent process (typically the shell), but you can specify a new
1895working directory in @value{GDBN} with the @code{cd} command.
1896
1897The @value{GDBN} working directory also serves as a default for the commands
1898that specify files for @value{GDBN} to operate on. @xref{Files, ,Commands to
1899specify files}.
1900
1901@table @code
1902@kindex cd
1903@item cd @var{directory}
1904Set the @value{GDBN} working directory to @var{directory}.
1905
1906@kindex pwd
1907@item pwd
1908Print the @value{GDBN} working directory.
1909@end table
1910
6d2ebf8b 1911@node Input/Output
c906108c
SS
1912@section Your program's input and output
1913
1914@cindex redirection
1915@cindex i/o
1916@cindex terminal
1917By default, the program you run under @value{GDBN} does input and output to
5d161b24 1918the same terminal that @value{GDBN} uses. @value{GDBN} switches the terminal
c906108c
SS
1919to its own terminal modes to interact with you, but it records the terminal
1920modes your program was using and switches back to them when you continue
1921running your program.
1922
1923@table @code
1924@kindex info terminal
1925@item info terminal
1926Displays information recorded by @value{GDBN} about the terminal modes your
1927program is using.
1928@end table
1929
1930You can redirect your program's input and/or output using shell
1931redirection with the @code{run} command. For example,
1932
474c8240 1933@smallexample
c906108c 1934run > outfile
474c8240 1935@end smallexample
c906108c
SS
1936
1937@noindent
1938starts your program, diverting its output to the file @file{outfile}.
1939
1940@kindex tty
1941@cindex controlling terminal
1942Another way to specify where your program should do input and output is
1943with the @code{tty} command. This command accepts a file name as
1944argument, and causes this file to be the default for future @code{run}
1945commands. It also resets the controlling terminal for the child
1946process, for future @code{run} commands. For example,
1947
474c8240 1948@smallexample
c906108c 1949tty /dev/ttyb
474c8240 1950@end smallexample
c906108c
SS
1951
1952@noindent
1953directs that processes started with subsequent @code{run} commands
1954default to do input and output on the terminal @file{/dev/ttyb} and have
1955that as their controlling terminal.
1956
1957An explicit redirection in @code{run} overrides the @code{tty} command's
1958effect on the input/output device, but not its effect on the controlling
1959terminal.
1960
1961When you use the @code{tty} command or redirect input in the @code{run}
1962command, only the input @emph{for your program} is affected. The input
1963for @value{GDBN} still comes from your terminal.
1964
6d2ebf8b 1965@node Attach
c906108c
SS
1966@section Debugging an already-running process
1967@kindex attach
1968@cindex attach
1969
1970@table @code
1971@item attach @var{process-id}
1972This command attaches to a running process---one that was started
1973outside @value{GDBN}. (@code{info files} shows your active
1974targets.) The command takes as argument a process ID. The usual way to
1975find out the process-id of a Unix process is with the @code{ps} utility,
1976or with the @samp{jobs -l} shell command.
1977
1978@code{attach} does not repeat if you press @key{RET} a second time after
1979executing the command.
1980@end table
1981
1982To use @code{attach}, your program must be running in an environment
1983which supports processes; for example, @code{attach} does not work for
1984programs on bare-board targets that lack an operating system. You must
1985also have permission to send the process a signal.
1986
1987When you use @code{attach}, the debugger finds the program running in
1988the process first by looking in the current working directory, then (if
1989the program is not found) by using the source file search path
1990(@pxref{Source Path, ,Specifying source directories}). You can also use
1991the @code{file} command to load the program. @xref{Files, ,Commands to
1992Specify Files}.
1993
1994The first thing @value{GDBN} does after arranging to debug the specified
1995process is to stop it. You can examine and modify an attached process
53a5351d
JM
1996with all the @value{GDBN} commands that are ordinarily available when
1997you start processes with @code{run}. You can insert breakpoints; you
1998can step and continue; you can modify storage. If you would rather the
1999process continue running, you may use the @code{continue} command after
c906108c
SS
2000attaching @value{GDBN} to the process.
2001
2002@table @code
2003@kindex detach
2004@item detach
2005When you have finished debugging the attached process, you can use the
2006@code{detach} command to release it from @value{GDBN} control. Detaching
2007the process continues its execution. After the @code{detach} command,
2008that process and @value{GDBN} become completely independent once more, and you
2009are ready to @code{attach} another process or start one with @code{run}.
2010@code{detach} does not repeat if you press @key{RET} again after
2011executing the command.
2012@end table
2013
2014If you exit @value{GDBN} or use the @code{run} command while you have an
2015attached process, you kill that process. By default, @value{GDBN} asks
2016for confirmation if you try to do either of these things; you can
2017control whether or not you need to confirm by using the @code{set
2018confirm} command (@pxref{Messages/Warnings, ,Optional warnings and
2019messages}).
2020
6d2ebf8b 2021@node Kill Process
c906108c 2022@section Killing the child process
c906108c
SS
2023
2024@table @code
2025@kindex kill
2026@item kill
2027Kill the child process in which your program is running under @value{GDBN}.
2028@end table
2029
2030This command is useful if you wish to debug a core dump instead of a
2031running process. @value{GDBN} ignores any core dump file while your program
2032is running.
2033
2034On some operating systems, a program cannot be executed outside @value{GDBN}
2035while you have breakpoints set on it inside @value{GDBN}. You can use the
2036@code{kill} command in this situation to permit running your program
2037outside the debugger.
2038
2039The @code{kill} command is also useful if you wish to recompile and
2040relink your program, since on many systems it is impossible to modify an
2041executable file while it is running in a process. In this case, when you
2042next type @code{run}, @value{GDBN} notices that the file has changed, and
2043reads the symbol table again (while trying to preserve your current
2044breakpoint settings).
2045
6d2ebf8b 2046@node Threads
c906108c 2047@section Debugging programs with multiple threads
c906108c
SS
2048
2049@cindex threads of execution
2050@cindex multiple threads
2051@cindex switching threads
2052In some operating systems, such as HP-UX and Solaris, a single program
2053may have more than one @dfn{thread} of execution. The precise semantics
2054of threads differ from one operating system to another, but in general
2055the threads of a single program are akin to multiple processes---except
2056that they share one address space (that is, they can all examine and
2057modify the same variables). On the other hand, each thread has its own
2058registers and execution stack, and perhaps private memory.
2059
2060@value{GDBN} provides these facilities for debugging multi-thread
2061programs:
2062
2063@itemize @bullet
2064@item automatic notification of new threads
2065@item @samp{thread @var{threadno}}, a command to switch among threads
2066@item @samp{info threads}, a command to inquire about existing threads
5d161b24 2067@item @samp{thread apply [@var{threadno}] [@var{all}] @var{args}},
c906108c
SS
2068a command to apply a command to a list of threads
2069@item thread-specific breakpoints
2070@end itemize
2071
c906108c
SS
2072@quotation
2073@emph{Warning:} These facilities are not yet available on every
2074@value{GDBN} configuration where the operating system supports threads.
2075If your @value{GDBN} does not support threads, these commands have no
2076effect. For example, a system without thread support shows no output
2077from @samp{info threads}, and always rejects the @code{thread} command,
2078like this:
2079
2080@smallexample
2081(@value{GDBP}) info threads
2082(@value{GDBP}) thread 1
2083Thread ID 1 not known. Use the "info threads" command to
2084see the IDs of currently known threads.
2085@end smallexample
2086@c FIXME to implementors: how hard would it be to say "sorry, this GDB
2087@c doesn't support threads"?
2088@end quotation
c906108c
SS
2089
2090@cindex focus of debugging
2091@cindex current thread
2092The @value{GDBN} thread debugging facility allows you to observe all
2093threads while your program runs---but whenever @value{GDBN} takes
2094control, one thread in particular is always the focus of debugging.
2095This thread is called the @dfn{current thread}. Debugging commands show
2096program information from the perspective of the current thread.
2097
41afff9a 2098@cindex @code{New} @var{systag} message
c906108c
SS
2099@cindex thread identifier (system)
2100@c FIXME-implementors!! It would be more helpful if the [New...] message
2101@c included GDB's numeric thread handle, so you could just go to that
2102@c thread without first checking `info threads'.
2103Whenever @value{GDBN} detects a new thread in your program, it displays
2104the target system's identification for the thread with a message in the
2105form @samp{[New @var{systag}]}. @var{systag} is a thread identifier
2106whose form varies depending on the particular system. For example, on
2107LynxOS, you might see
2108
474c8240 2109@smallexample
c906108c 2110[New process 35 thread 27]
474c8240 2111@end smallexample
c906108c
SS
2112
2113@noindent
2114when @value{GDBN} notices a new thread. In contrast, on an SGI system,
2115the @var{systag} is simply something like @samp{process 368}, with no
2116further qualifier.
2117
2118@c FIXME!! (1) Does the [New...] message appear even for the very first
2119@c thread of a program, or does it only appear for the
6ca652b0 2120@c second---i.e.@: when it becomes obvious we have a multithread
c906108c
SS
2121@c program?
2122@c (2) *Is* there necessarily a first thread always? Or do some
2123@c multithread systems permit starting a program with multiple
5d161b24 2124@c threads ab initio?
c906108c
SS
2125
2126@cindex thread number
2127@cindex thread identifier (GDB)
2128For debugging purposes, @value{GDBN} associates its own thread
2129number---always a single integer---with each thread in your program.
2130
2131@table @code
2132@kindex info threads
2133@item info threads
2134Display a summary of all threads currently in your
2135program. @value{GDBN} displays for each thread (in this order):
2136
2137@enumerate
2138@item the thread number assigned by @value{GDBN}
2139
2140@item the target system's thread identifier (@var{systag})
2141
2142@item the current stack frame summary for that thread
2143@end enumerate
2144
2145@noindent
2146An asterisk @samp{*} to the left of the @value{GDBN} thread number
2147indicates the current thread.
2148
5d161b24 2149For example,
c906108c
SS
2150@end table
2151@c end table here to get a little more width for example
2152
2153@smallexample
2154(@value{GDBP}) info threads
2155 3 process 35 thread 27 0x34e5 in sigpause ()
2156 2 process 35 thread 23 0x34e5 in sigpause ()
2157* 1 process 35 thread 13 main (argc=1, argv=0x7ffffff8)
2158 at threadtest.c:68
2159@end smallexample
53a5351d
JM
2160
2161On HP-UX systems:
c906108c
SS
2162
2163@cindex thread number
2164@cindex thread identifier (GDB)
2165For debugging purposes, @value{GDBN} associates its own thread
2166number---a small integer assigned in thread-creation order---with each
2167thread in your program.
2168
41afff9a
EZ
2169@cindex @code{New} @var{systag} message, on HP-UX
2170@cindex thread identifier (system), on HP-UX
c906108c
SS
2171@c FIXME-implementors!! It would be more helpful if the [New...] message
2172@c included GDB's numeric thread handle, so you could just go to that
2173@c thread without first checking `info threads'.
2174Whenever @value{GDBN} detects a new thread in your program, it displays
2175both @value{GDBN}'s thread number and the target system's identification for the thread with a message in the
2176form @samp{[New @var{systag}]}. @var{systag} is a thread identifier
2177whose form varies depending on the particular system. For example, on
2178HP-UX, you see
2179
474c8240 2180@smallexample
c906108c 2181[New thread 2 (system thread 26594)]
474c8240 2182@end smallexample
c906108c
SS
2183
2184@noindent
5d161b24 2185when @value{GDBN} notices a new thread.
c906108c
SS
2186
2187@table @code
2188@kindex info threads
2189@item info threads
2190Display a summary of all threads currently in your
2191program. @value{GDBN} displays for each thread (in this order):
2192
2193@enumerate
2194@item the thread number assigned by @value{GDBN}
2195
2196@item the target system's thread identifier (@var{systag})
2197
2198@item the current stack frame summary for that thread
2199@end enumerate
2200
2201@noindent
2202An asterisk @samp{*} to the left of the @value{GDBN} thread number
2203indicates the current thread.
2204
5d161b24 2205For example,
c906108c
SS
2206@end table
2207@c end table here to get a little more width for example
2208
474c8240 2209@smallexample
c906108c 2210(@value{GDBP}) info threads
6d2ebf8b
SS
2211 * 3 system thread 26607 worker (wptr=0x7b09c318 "@@") \@*
2212 at quicksort.c:137
2213 2 system thread 26606 0x7b0030d8 in __ksleep () \@*
2214 from /usr/lib/libc.2
2215 1 system thread 27905 0x7b003498 in _brk () \@*
2216 from /usr/lib/libc.2
474c8240 2217@end smallexample
c906108c
SS
2218
2219@table @code
2220@kindex thread @var{threadno}
2221@item thread @var{threadno}
2222Make thread number @var{threadno} the current thread. The command
2223argument @var{threadno} is the internal @value{GDBN} thread number, as
2224shown in the first field of the @samp{info threads} display.
2225@value{GDBN} responds by displaying the system identifier of the thread
2226you selected, and its current stack frame summary:
2227
2228@smallexample
2229@c FIXME!! This example made up; find a @value{GDBN} w/threads and get real one
2230(@value{GDBP}) thread 2
c906108c 2231[Switching to process 35 thread 23]
c906108c
SS
22320x34e5 in sigpause ()
2233@end smallexample
2234
2235@noindent
2236As with the @samp{[New @dots{}]} message, the form of the text after
2237@samp{Switching to} depends on your system's conventions for identifying
5d161b24 2238threads.
c906108c
SS
2239
2240@kindex thread apply
2241@item thread apply [@var{threadno}] [@var{all}] @var{args}
2242The @code{thread apply} command allows you to apply a command to one or
2243more threads. Specify the numbers of the threads that you want affected
2244with the command argument @var{threadno}. @var{threadno} is the internal
2245@value{GDBN} thread number, as shown in the first field of the @samp{info
5d161b24
DB
2246threads} display. To apply a command to all threads, use
2247@code{thread apply all} @var{args}.
c906108c
SS
2248@end table
2249
2250@cindex automatic thread selection
2251@cindex switching threads automatically
2252@cindex threads, automatic switching
2253Whenever @value{GDBN} stops your program, due to a breakpoint or a
2254signal, it automatically selects the thread where that breakpoint or
2255signal happened. @value{GDBN} alerts you to the context switch with a
2256message of the form @samp{[Switching to @var{systag}]} to identify the
2257thread.
2258
2259@xref{Thread Stops,,Stopping and starting multi-thread programs}, for
2260more information about how @value{GDBN} behaves when you stop and start
2261programs with multiple threads.
2262
2263@xref{Set Watchpoints,,Setting watchpoints}, for information about
2264watchpoints in programs with multiple threads.
c906108c 2265
6d2ebf8b 2266@node Processes
c906108c
SS
2267@section Debugging programs with multiple processes
2268
2269@cindex fork, debugging programs which call
2270@cindex multiple processes
2271@cindex processes, multiple
53a5351d
JM
2272On most systems, @value{GDBN} has no special support for debugging
2273programs which create additional processes using the @code{fork}
2274function. When a program forks, @value{GDBN} will continue to debug the
2275parent process and the child process will run unimpeded. If you have
2276set a breakpoint in any code which the child then executes, the child
2277will get a @code{SIGTRAP} signal which (unless it catches the signal)
2278will cause it to terminate.
c906108c
SS
2279
2280However, if you want to debug the child process there is a workaround
2281which isn't too painful. Put a call to @code{sleep} in the code which
2282the child process executes after the fork. It may be useful to sleep
2283only if a certain environment variable is set, or a certain file exists,
2284so that the delay need not occur when you don't want to run @value{GDBN}
2285on the child. While the child is sleeping, use the @code{ps} program to
2286get its process ID. Then tell @value{GDBN} (a new invocation of
2287@value{GDBN} if you are also debugging the parent process) to attach to
d4f3574e 2288the child process (@pxref{Attach}). From that point on you can debug
c906108c 2289the child process just like any other process which you attached to.
c906108c 2290
53a5351d
JM
2291On HP-UX (11.x and later only?), @value{GDBN} provides support for
2292debugging programs that create additional processes using the
2293@code{fork} or @code{vfork} function.
c906108c
SS
2294
2295By default, when a program forks, @value{GDBN} will continue to debug
2296the parent process and the child process will run unimpeded.
2297
2298If you want to follow the child process instead of the parent process,
2299use the command @w{@code{set follow-fork-mode}}.
2300
2301@table @code
2302@kindex set follow-fork-mode
2303@item set follow-fork-mode @var{mode}
2304Set the debugger response to a program call of @code{fork} or
2305@code{vfork}. A call to @code{fork} or @code{vfork} creates a new
2306process. The @var{mode} can be:
2307
2308@table @code
2309@item parent
2310The original process is debugged after a fork. The child process runs
2df3850c 2311unimpeded. This is the default.
c906108c
SS
2312
2313@item child
2314The new process is debugged after a fork. The parent process runs
2315unimpeded.
2316
2317@item ask
2318The debugger will ask for one of the above choices.
2319@end table
2320
2321@item show follow-fork-mode
2df3850c 2322Display the current debugger response to a @code{fork} or @code{vfork} call.
c906108c
SS
2323@end table
2324
2325If you ask to debug a child process and a @code{vfork} is followed by an
2326@code{exec}, @value{GDBN} executes the new target up to the first
2327breakpoint in the new target. If you have a breakpoint set on
2328@code{main} in your original program, the breakpoint will also be set on
2329the child process's @code{main}.
2330
2331When a child process is spawned by @code{vfork}, you cannot debug the
2332child or parent until an @code{exec} call completes.
2333
2334If you issue a @code{run} command to @value{GDBN} after an @code{exec}
2335call executes, the new target restarts. To restart the parent process,
2336use the @code{file} command with the parent executable name as its
2337argument.
2338
2339You can use the @code{catch} command to make @value{GDBN} stop whenever
2340a @code{fork}, @code{vfork}, or @code{exec} call is made. @xref{Set
2341Catchpoints, ,Setting catchpoints}.
c906108c 2342
6d2ebf8b 2343@node Stopping
c906108c
SS
2344@chapter Stopping and Continuing
2345
2346The principal purposes of using a debugger are so that you can stop your
2347program before it terminates; or so that, if your program runs into
2348trouble, you can investigate and find out why.
2349
7a292a7a
SS
2350Inside @value{GDBN}, your program may stop for any of several reasons,
2351such as a signal, a breakpoint, or reaching a new line after a
2352@value{GDBN} command such as @code{step}. You may then examine and
2353change variables, set new breakpoints or remove old ones, and then
2354continue execution. Usually, the messages shown by @value{GDBN} provide
2355ample explanation of the status of your program---but you can also
2356explicitly request this information at any time.
c906108c
SS
2357
2358@table @code
2359@kindex info program
2360@item info program
2361Display information about the status of your program: whether it is
7a292a7a 2362running or not, what process it is, and why it stopped.
c906108c
SS
2363@end table
2364
2365@menu
2366* Breakpoints:: Breakpoints, watchpoints, and catchpoints
2367* Continuing and Stepping:: Resuming execution
c906108c 2368* Signals:: Signals
c906108c 2369* Thread Stops:: Stopping and starting multi-thread programs
c906108c
SS
2370@end menu
2371
6d2ebf8b 2372@node Breakpoints
c906108c
SS
2373@section Breakpoints, watchpoints, and catchpoints
2374
2375@cindex breakpoints
2376A @dfn{breakpoint} makes your program stop whenever a certain point in
2377the program is reached. For each breakpoint, you can add conditions to
2378control in finer detail whether your program stops. You can set
2379breakpoints with the @code{break} command and its variants (@pxref{Set
2380Breaks, ,Setting breakpoints}), to specify the place where your program
2381should stop by line number, function name or exact address in the
2382program.
2383
2384In HP-UX, SunOS 4.x, SVR4, and Alpha OSF/1 configurations, you can set
2385breakpoints in shared libraries before the executable is run. There is
2386a minor limitation on HP-UX systems: you must wait until the executable
2387is run in order to set breakpoints in shared library routines that are
2388not called directly by the program (for example, routines that are
2389arguments in a @code{pthread_create} call).
2390
2391@cindex watchpoints
2392@cindex memory tracing
2393@cindex breakpoint on memory address
2394@cindex breakpoint on variable modification
2395A @dfn{watchpoint} is a special breakpoint that stops your program
2396when the value of an expression changes. You must use a different
2397command to set watchpoints (@pxref{Set Watchpoints, ,Setting
2398watchpoints}), but aside from that, you can manage a watchpoint like
2399any other breakpoint: you enable, disable, and delete both breakpoints
2400and watchpoints using the same commands.
2401
2402You can arrange to have values from your program displayed automatically
2403whenever @value{GDBN} stops at a breakpoint. @xref{Auto Display,,
2404Automatic display}.
2405
2406@cindex catchpoints
2407@cindex breakpoint on events
2408A @dfn{catchpoint} is another special breakpoint that stops your program
b37052ae 2409when a certain kind of event occurs, such as the throwing of a C@t{++}
c906108c
SS
2410exception or the loading of a library. As with watchpoints, you use a
2411different command to set a catchpoint (@pxref{Set Catchpoints, ,Setting
2412catchpoints}), but aside from that, you can manage a catchpoint like any
2413other breakpoint. (To stop when your program receives a signal, use the
d4f3574e 2414@code{handle} command; see @ref{Signals, ,Signals}.)
c906108c
SS
2415
2416@cindex breakpoint numbers
2417@cindex numbers for breakpoints
2418@value{GDBN} assigns a number to each breakpoint, watchpoint, or
2419catchpoint when you create it; these numbers are successive integers
2420starting with one. In many of the commands for controlling various
2421features of breakpoints you use the breakpoint number to say which
2422breakpoint you want to change. Each breakpoint may be @dfn{enabled} or
2423@dfn{disabled}; if disabled, it has no effect on your program until you
2424enable it again.
2425
c5394b80
JM
2426@cindex breakpoint ranges
2427@cindex ranges of breakpoints
2428Some @value{GDBN} commands accept a range of breakpoints on which to
2429operate. A breakpoint range is either a single breakpoint number, like
2430@samp{5}, or two such numbers, in increasing order, separated by a
2431hyphen, like @samp{5-7}. When a breakpoint range is given to a command,
2432all breakpoint in that range are operated on.
2433
c906108c
SS
2434@menu
2435* Set Breaks:: Setting breakpoints
2436* Set Watchpoints:: Setting watchpoints
2437* Set Catchpoints:: Setting catchpoints
2438* Delete Breaks:: Deleting breakpoints
2439* Disabling:: Disabling breakpoints
2440* Conditions:: Break conditions
2441* Break Commands:: Breakpoint command lists
c906108c 2442* Breakpoint Menus:: Breakpoint menus
d4f3574e 2443* Error in Breakpoints:: ``Cannot insert breakpoints''
e4d5f7e1 2444* Breakpoint related warnings:: ``Breakpoint address adjusted...''
c906108c
SS
2445@end menu
2446
6d2ebf8b 2447@node Set Breaks
c906108c
SS
2448@subsection Setting breakpoints
2449
5d161b24 2450@c FIXME LMB what does GDB do if no code on line of breakpt?
c906108c
SS
2451@c consider in particular declaration with/without initialization.
2452@c
2453@c FIXME 2 is there stuff on this already? break at fun start, already init?
2454
2455@kindex break
41afff9a
EZ
2456@kindex b @r{(@code{break})}
2457@vindex $bpnum@r{, convenience variable}
c906108c
SS
2458@cindex latest breakpoint
2459Breakpoints are set with the @code{break} command (abbreviated
5d161b24 2460@code{b}). The debugger convenience variable @samp{$bpnum} records the
f3b28801 2461number of the breakpoint you've set most recently; see @ref{Convenience
c906108c
SS
2462Vars,, Convenience variables}, for a discussion of what you can do with
2463convenience variables.
2464
2465You have several ways to say where the breakpoint should go.
2466
2467@table @code
2468@item break @var{function}
5d161b24 2469Set a breakpoint at entry to function @var{function}.
c906108c 2470When using source languages that permit overloading of symbols, such as
b37052ae 2471C@t{++}, @var{function} may refer to more than one possible place to break.
c906108c 2472@xref{Breakpoint Menus,,Breakpoint menus}, for a discussion of that situation.
c906108c
SS
2473
2474@item break +@var{offset}
2475@itemx break -@var{offset}
2476Set a breakpoint some number of lines forward or back from the position
d4f3574e 2477at which execution stopped in the currently selected @dfn{stack frame}.
2df3850c 2478(@xref{Frames, ,Frames}, for a description of stack frames.)
c906108c
SS
2479
2480@item break @var{linenum}
2481Set a breakpoint at line @var{linenum} in the current source file.
d4f3574e
SS
2482The current source file is the last file whose source text was printed.
2483The breakpoint will stop your program just before it executes any of the
c906108c
SS
2484code on that line.
2485
2486@item break @var{filename}:@var{linenum}
2487Set a breakpoint at line @var{linenum} in source file @var{filename}.
2488
2489@item break @var{filename}:@var{function}
2490Set a breakpoint at entry to function @var{function} found in file
2491@var{filename}. Specifying a file name as well as a function name is
2492superfluous except when multiple files contain similarly named
2493functions.
2494
2495@item break *@var{address}
2496Set a breakpoint at address @var{address}. You can use this to set
2497breakpoints in parts of your program which do not have debugging
2498information or source files.
2499
2500@item break
2501When called without any arguments, @code{break} sets a breakpoint at
2502the next instruction to be executed in the selected stack frame
2503(@pxref{Stack, ,Examining the Stack}). In any selected frame but the
2504innermost, this makes your program stop as soon as control
2505returns to that frame. This is similar to the effect of a
2506@code{finish} command in the frame inside the selected frame---except
2507that @code{finish} does not leave an active breakpoint. If you use
2508@code{break} without an argument in the innermost frame, @value{GDBN} stops
2509the next time it reaches the current location; this may be useful
2510inside loops.
2511
2512@value{GDBN} normally ignores breakpoints when it resumes execution, until at
2513least one instruction has been executed. If it did not do this, you
2514would be unable to proceed past a breakpoint without first disabling the
2515breakpoint. This rule applies whether or not the breakpoint already
2516existed when your program stopped.
2517
2518@item break @dots{} if @var{cond}
2519Set a breakpoint with condition @var{cond}; evaluate the expression
2520@var{cond} each time the breakpoint is reached, and stop only if the
2521value is nonzero---that is, if @var{cond} evaluates as true.
2522@samp{@dots{}} stands for one of the possible arguments described
2523above (or no argument) specifying where to break. @xref{Conditions,
2524,Break conditions}, for more information on breakpoint conditions.
2525
2526@kindex tbreak
2527@item tbreak @var{args}
2528Set a breakpoint enabled only for one stop. @var{args} are the
2529same as for the @code{break} command, and the breakpoint is set in the same
2530way, but the breakpoint is automatically deleted after the first time your
2531program stops there. @xref{Disabling, ,Disabling breakpoints}.
2532
c906108c
SS
2533@kindex hbreak
2534@item hbreak @var{args}
d4f3574e
SS
2535Set a hardware-assisted breakpoint. @var{args} are the same as for the
2536@code{break} command and the breakpoint is set in the same way, but the
c906108c
SS
2537breakpoint requires hardware support and some target hardware may not
2538have this support. The main purpose of this is EPROM/ROM code
d4f3574e
SS
2539debugging, so you can set a breakpoint at an instruction without
2540changing the instruction. This can be used with the new trap-generation
2541provided by SPARClite DSU and some x86-based targets. These targets
2542will generate traps when a program accesses some data or instruction
2543address that is assigned to the debug registers. However the hardware
2544breakpoint registers can take a limited number of breakpoints. For
2545example, on the DSU, only two data breakpoints can be set at a time, and
2546@value{GDBN} will reject this command if more than two are used. Delete
2547or disable unused hardware breakpoints before setting new ones
2548(@pxref{Disabling, ,Disabling}). @xref{Conditions, ,Break conditions}.
501eef12
AC
2549@xref{set remote hardware-breakpoint-limit}.
2550
c906108c
SS
2551
2552@kindex thbreak
2553@item thbreak @var{args}
2554Set a hardware-assisted breakpoint enabled only for one stop. @var{args}
2555are the same as for the @code{hbreak} command and the breakpoint is set in
5d161b24 2556the same way. However, like the @code{tbreak} command,
c906108c
SS
2557the breakpoint is automatically deleted after the
2558first time your program stops there. Also, like the @code{hbreak}
5d161b24
DB
2559command, the breakpoint requires hardware support and some target hardware
2560may not have this support. @xref{Disabling, ,Disabling breakpoints}.
d4f3574e 2561See also @ref{Conditions, ,Break conditions}.
c906108c
SS
2562
2563@kindex rbreak
2564@cindex regular expression
2565@item rbreak @var{regex}
c906108c 2566Set breakpoints on all functions matching the regular expression
11cf8741
JM
2567@var{regex}. This command sets an unconditional breakpoint on all
2568matches, printing a list of all breakpoints it set. Once these
2569breakpoints are set, they are treated just like the breakpoints set with
2570the @code{break} command. You can delete them, disable them, or make
2571them conditional the same way as any other breakpoint.
2572
2573The syntax of the regular expression is the standard one used with tools
2574like @file{grep}. Note that this is different from the syntax used by
2575shells, so for instance @code{foo*} matches all functions that include
2576an @code{fo} followed by zero or more @code{o}s. There is an implicit
2577@code{.*} leading and trailing the regular expression you supply, so to
2578match only functions that begin with @code{foo}, use @code{^foo}.
c906108c 2579
b37052ae 2580When debugging C@t{++} programs, @code{rbreak} is useful for setting
c906108c
SS
2581breakpoints on overloaded functions that are not members of any special
2582classes.
c906108c
SS
2583
2584@kindex info breakpoints
2585@cindex @code{$_} and @code{info breakpoints}
2586@item info breakpoints @r{[}@var{n}@r{]}
2587@itemx info break @r{[}@var{n}@r{]}
2588@itemx info watchpoints @r{[}@var{n}@r{]}
2589Print a table of all breakpoints, watchpoints, and catchpoints set and
2590not deleted, with the following columns for each breakpoint:
2591
2592@table @emph
2593@item Breakpoint Numbers
2594@item Type
2595Breakpoint, watchpoint, or catchpoint.
2596@item Disposition
2597Whether the breakpoint is marked to be disabled or deleted when hit.
2598@item Enabled or Disabled
2599Enabled breakpoints are marked with @samp{y}. @samp{n} marks breakpoints
2600that are not enabled.
2601@item Address
2df3850c 2602Where the breakpoint is in your program, as a memory address.
c906108c
SS
2603@item What
2604Where the breakpoint is in the source for your program, as a file and
2605line number.
2606@end table
2607
2608@noindent
2609If a breakpoint is conditional, @code{info break} shows the condition on
2610the line following the affected breakpoint; breakpoint commands, if any,
2611are listed after that.
2612
2613@noindent
2614@code{info break} with a breakpoint
2615number @var{n} as argument lists only that breakpoint. The
2616convenience variable @code{$_} and the default examining-address for
2617the @code{x} command are set to the address of the last breakpoint
5d161b24 2618listed (@pxref{Memory, ,Examining memory}).
c906108c
SS
2619
2620@noindent
2621@code{info break} displays a count of the number of times the breakpoint
2622has been hit. This is especially useful in conjunction with the
2623@code{ignore} command. You can ignore a large number of breakpoint
2624hits, look at the breakpoint info to see how many times the breakpoint
2625was hit, and then run again, ignoring one less than that number. This
2626will get you quickly to the last hit of that breakpoint.
2627@end table
2628
2629@value{GDBN} allows you to set any number of breakpoints at the same place in
2630your program. There is nothing silly or meaningless about this. When
2631the breakpoints are conditional, this is even useful
2632(@pxref{Conditions, ,Break conditions}).
2633
2634@cindex negative breakpoint numbers
2635@cindex internal @value{GDBN} breakpoints
eb12ee30
AC
2636@value{GDBN} itself sometimes sets breakpoints in your program for
2637special purposes, such as proper handling of @code{longjmp} (in C
2638programs). These internal breakpoints are assigned negative numbers,
2639starting with @code{-1}; @samp{info breakpoints} does not display them.
c906108c 2640You can see these breakpoints with the @value{GDBN} maintenance command
eb12ee30 2641@samp{maint info breakpoints} (@pxref{maint info breakpoints}).
c906108c
SS
2642
2643
6d2ebf8b 2644@node Set Watchpoints
c906108c
SS
2645@subsection Setting watchpoints
2646
2647@cindex setting watchpoints
2648@cindex software watchpoints
2649@cindex hardware watchpoints
2650You can use a watchpoint to stop execution whenever the value of an
2651expression changes, without having to predict a particular place where
2652this may happen.
2653
2654Depending on your system, watchpoints may be implemented in software or
2df3850c 2655hardware. @value{GDBN} does software watchpointing by single-stepping your
c906108c
SS
2656program and testing the variable's value each time, which is hundreds of
2657times slower than normal execution. (But this may still be worth it, to
2658catch errors where you have no clue what part of your program is the
2659culprit.)
2660
1104b9e7 2661On some systems, such as HP-UX, @sc{gnu}/Linux and some other x86-based targets,
2df3850c 2662@value{GDBN} includes support for
c906108c
SS
2663hardware watchpoints, which do not slow down the running of your
2664program.
2665
2666@table @code
2667@kindex watch
2668@item watch @var{expr}
2669Set a watchpoint for an expression. @value{GDBN} will break when @var{expr}
2670is written into by the program and its value changes.
2671
2672@kindex rwatch
2673@item rwatch @var{expr}
2674Set a watchpoint that will break when watch @var{expr} is read by the program.
c906108c
SS
2675
2676@kindex awatch
2677@item awatch @var{expr}
2df3850c 2678Set a watchpoint that will break when @var{expr} is either read or written into
7be570e7 2679by the program.
c906108c
SS
2680
2681@kindex info watchpoints
2682@item info watchpoints
2683This command prints a list of watchpoints, breakpoints, and catchpoints;
2684it is the same as @code{info break}.
2685@end table
2686
2687@value{GDBN} sets a @dfn{hardware watchpoint} if possible. Hardware
2688watchpoints execute very quickly, and the debugger reports a change in
2689value at the exact instruction where the change occurs. If @value{GDBN}
2690cannot set a hardware watchpoint, it sets a software watchpoint, which
2691executes more slowly and reports the change in value at the next
2692statement, not the instruction, after the change occurs.
2693
2694When you issue the @code{watch} command, @value{GDBN} reports
2695
474c8240 2696@smallexample
c906108c 2697Hardware watchpoint @var{num}: @var{expr}
474c8240 2698@end smallexample
c906108c
SS
2699
2700@noindent
2701if it was able to set a hardware watchpoint.
2702
7be570e7
JM
2703Currently, the @code{awatch} and @code{rwatch} commands can only set
2704hardware watchpoints, because accesses to data that don't change the
2705value of the watched expression cannot be detected without examining
2706every instruction as it is being executed, and @value{GDBN} does not do
2707that currently. If @value{GDBN} finds that it is unable to set a
2708hardware breakpoint with the @code{awatch} or @code{rwatch} command, it
2709will print a message like this:
2710
2711@smallexample
2712Expression cannot be implemented with read/access watchpoint.
2713@end smallexample
2714
2715Sometimes, @value{GDBN} cannot set a hardware watchpoint because the
2716data type of the watched expression is wider than what a hardware
2717watchpoint on the target machine can handle. For example, some systems
2718can only watch regions that are up to 4 bytes wide; on such systems you
2719cannot set hardware watchpoints for an expression that yields a
2720double-precision floating-point number (which is typically 8 bytes
2721wide). As a work-around, it might be possible to break the large region
2722into a series of smaller ones and watch them with separate watchpoints.
2723
2724If you set too many hardware watchpoints, @value{GDBN} might be unable
2725to insert all of them when you resume the execution of your program.
2726Since the precise number of active watchpoints is unknown until such
2727time as the program is about to be resumed, @value{GDBN} might not be
2728able to warn you about this when you set the watchpoints, and the
2729warning will be printed only when the program is resumed:
2730
2731@smallexample
2732Hardware watchpoint @var{num}: Could not insert watchpoint
2733@end smallexample
2734
2735@noindent
2736If this happens, delete or disable some of the watchpoints.
2737
2738The SPARClite DSU will generate traps when a program accesses some data
2739or instruction address that is assigned to the debug registers. For the
2740data addresses, DSU facilitates the @code{watch} command. However the
2741hardware breakpoint registers can only take two data watchpoints, and
2742both watchpoints must be the same kind. For example, you can set two
2743watchpoints with @code{watch} commands, two with @code{rwatch} commands,
2744@strong{or} two with @code{awatch} commands, but you cannot set one
2745watchpoint with one command and the other with a different command.
c906108c
SS
2746@value{GDBN} will reject the command if you try to mix watchpoints.
2747Delete or disable unused watchpoint commands before setting new ones.
2748
2749If you call a function interactively using @code{print} or @code{call},
2df3850c 2750any watchpoints you have set will be inactive until @value{GDBN} reaches another
c906108c
SS
2751kind of breakpoint or the call completes.
2752
7be570e7
JM
2753@value{GDBN} automatically deletes watchpoints that watch local
2754(automatic) variables, or expressions that involve such variables, when
2755they go out of scope, that is, when the execution leaves the block in
2756which these variables were defined. In particular, when the program
2757being debugged terminates, @emph{all} local variables go out of scope,
2758and so only watchpoints that watch global variables remain set. If you
2759rerun the program, you will need to set all such watchpoints again. One
2760way of doing that would be to set a code breakpoint at the entry to the
2761@code{main} function and when it breaks, set all the watchpoints.
2762
c906108c
SS
2763@quotation
2764@cindex watchpoints and threads
2765@cindex threads and watchpoints
c906108c
SS
2766@emph{Warning:} In multi-thread programs, watchpoints have only limited
2767usefulness. With the current watchpoint implementation, @value{GDBN}
2768can only watch the value of an expression @emph{in a single thread}. If
2769you are confident that the expression can only change due to the current
2770thread's activity (and if you are also confident that no other thread
2771can become current), then you can use watchpoints as usual. However,
2772@value{GDBN} may not notice when a non-current thread's activity changes
2773the expression.
53a5351d 2774
d4f3574e 2775@c FIXME: this is almost identical to the previous paragraph.
53a5351d
JM
2776@emph{HP-UX Warning:} In multi-thread programs, software watchpoints
2777have only limited usefulness. If @value{GDBN} creates a software
2778watchpoint, it can only watch the value of an expression @emph{in a
2779single thread}. If you are confident that the expression can only
2780change due to the current thread's activity (and if you are also
2781confident that no other thread can become current), then you can use
2782software watchpoints as usual. However, @value{GDBN} may not notice
2783when a non-current thread's activity changes the expression. (Hardware
2784watchpoints, in contrast, watch an expression in all threads.)
c906108c 2785@end quotation
c906108c 2786
501eef12
AC
2787@xref{set remote hardware-watchpoint-limit}.
2788
6d2ebf8b 2789@node Set Catchpoints
c906108c 2790@subsection Setting catchpoints
d4f3574e 2791@cindex catchpoints, setting
c906108c
SS
2792@cindex exception handlers
2793@cindex event handling
2794
2795You can use @dfn{catchpoints} to cause the debugger to stop for certain
b37052ae 2796kinds of program events, such as C@t{++} exceptions or the loading of a
c906108c
SS
2797shared library. Use the @code{catch} command to set a catchpoint.
2798
2799@table @code
2800@kindex catch
2801@item catch @var{event}
2802Stop when @var{event} occurs. @var{event} can be any of the following:
2803@table @code
2804@item throw
2805@kindex catch throw
b37052ae 2806The throwing of a C@t{++} exception.
c906108c
SS
2807
2808@item catch
2809@kindex catch catch
b37052ae 2810The catching of a C@t{++} exception.
c906108c
SS
2811
2812@item exec
2813@kindex catch exec
2814A call to @code{exec}. This is currently only available for HP-UX.
2815
2816@item fork
2817@kindex catch fork
2818A call to @code{fork}. This is currently only available for HP-UX.
2819
2820@item vfork
2821@kindex catch vfork
2822A call to @code{vfork}. This is currently only available for HP-UX.
2823
2824@item load
2825@itemx load @var{libname}
2826@kindex catch load
2827The dynamic loading of any shared library, or the loading of the library
2828@var{libname}. This is currently only available for HP-UX.
2829
2830@item unload
2831@itemx unload @var{libname}
2832@kindex catch unload
2833The unloading of any dynamically loaded shared library, or the unloading
2834of the library @var{libname}. This is currently only available for HP-UX.
2835@end table
2836
2837@item tcatch @var{event}
2838Set a catchpoint that is enabled only for one stop. The catchpoint is
2839automatically deleted after the first time the event is caught.
2840
2841@end table
2842
2843Use the @code{info break} command to list the current catchpoints.
2844
b37052ae 2845There are currently some limitations to C@t{++} exception handling
c906108c
SS
2846(@code{catch throw} and @code{catch catch}) in @value{GDBN}:
2847
2848@itemize @bullet
2849@item
2850If you call a function interactively, @value{GDBN} normally returns
2851control to you when the function has finished executing. If the call
2852raises an exception, however, the call may bypass the mechanism that
2853returns control to you and cause your program either to abort or to
2854simply continue running until it hits a breakpoint, catches a signal
2855that @value{GDBN} is listening for, or exits. This is the case even if
2856you set a catchpoint for the exception; catchpoints on exceptions are
2857disabled within interactive calls.
2858
2859@item
2860You cannot raise an exception interactively.
2861
2862@item
2863You cannot install an exception handler interactively.
2864@end itemize
2865
2866@cindex raise exceptions
2867Sometimes @code{catch} is not the best way to debug exception handling:
2868if you need to know exactly where an exception is raised, it is better to
2869stop @emph{before} the exception handler is called, since that way you
2870can see the stack before any unwinding takes place. If you set a
2871breakpoint in an exception handler instead, it may not be easy to find
2872out where the exception was raised.
2873
2874To stop just before an exception handler is called, you need some
b37052ae 2875knowledge of the implementation. In the case of @sc{gnu} C@t{++}, exceptions are
c906108c
SS
2876raised by calling a library function named @code{__raise_exception}
2877which has the following ANSI C interface:
2878
474c8240 2879@smallexample
c906108c 2880 /* @var{addr} is where the exception identifier is stored.
d4f3574e
SS
2881 @var{id} is the exception identifier. */
2882 void __raise_exception (void **addr, void *id);
474c8240 2883@end smallexample
c906108c
SS
2884
2885@noindent
2886To make the debugger catch all exceptions before any stack
2887unwinding takes place, set a breakpoint on @code{__raise_exception}
2888(@pxref{Breakpoints, ,Breakpoints; watchpoints; and exceptions}).
2889
2890With a conditional breakpoint (@pxref{Conditions, ,Break conditions})
2891that depends on the value of @var{id}, you can stop your program when
2892a specific exception is raised. You can use multiple conditional
2893breakpoints to stop your program when any of a number of exceptions are
2894raised.
2895
2896
6d2ebf8b 2897@node Delete Breaks
c906108c
SS
2898@subsection Deleting breakpoints
2899
2900@cindex clearing breakpoints, watchpoints, catchpoints
2901@cindex deleting breakpoints, watchpoints, catchpoints
2902It is often necessary to eliminate a breakpoint, watchpoint, or
2903catchpoint once it has done its job and you no longer want your program
2904to stop there. This is called @dfn{deleting} the breakpoint. A
2905breakpoint that has been deleted no longer exists; it is forgotten.
2906
2907With the @code{clear} command you can delete breakpoints according to
2908where they are in your program. With the @code{delete} command you can
2909delete individual breakpoints, watchpoints, or catchpoints by specifying
2910their breakpoint numbers.
2911
2912It is not necessary to delete a breakpoint to proceed past it. @value{GDBN}
2913automatically ignores breakpoints on the first instruction to be executed
2914when you continue execution without changing the execution address.
2915
2916@table @code
2917@kindex clear
2918@item clear
2919Delete any breakpoints at the next instruction to be executed in the
2920selected stack frame (@pxref{Selection, ,Selecting a frame}). When
2921the innermost frame is selected, this is a good way to delete a
2922breakpoint where your program just stopped.
2923
2924@item clear @var{function}
2925@itemx clear @var{filename}:@var{function}
2926Delete any breakpoints set at entry to the function @var{function}.
2927
2928@item clear @var{linenum}
2929@itemx clear @var{filename}:@var{linenum}
2930Delete any breakpoints set at or within the code of the specified line.
2931
2932@cindex delete breakpoints
2933@kindex delete
41afff9a 2934@kindex d @r{(@code{delete})}
c5394b80
JM
2935@item delete @r{[}breakpoints@r{]} @r{[}@var{range}@dots{}@r{]}
2936Delete the breakpoints, watchpoints, or catchpoints of the breakpoint
2937ranges specified as arguments. If no argument is specified, delete all
c906108c
SS
2938breakpoints (@value{GDBN} asks confirmation, unless you have @code{set
2939confirm off}). You can abbreviate this command as @code{d}.
2940@end table
2941
6d2ebf8b 2942@node Disabling
c906108c
SS
2943@subsection Disabling breakpoints
2944
2945@kindex disable breakpoints
2946@kindex enable breakpoints
2947Rather than deleting a breakpoint, watchpoint, or catchpoint, you might
2948prefer to @dfn{disable} it. This makes the breakpoint inoperative as if
2949it had been deleted, but remembers the information on the breakpoint so
2950that you can @dfn{enable} it again later.
2951
2952You disable and enable breakpoints, watchpoints, and catchpoints with
2953the @code{enable} and @code{disable} commands, optionally specifying one
2954or more breakpoint numbers as arguments. Use @code{info break} or
2955@code{info watch} to print a list of breakpoints, watchpoints, and
2956catchpoints if you do not know which numbers to use.
2957
2958A breakpoint, watchpoint, or catchpoint can have any of four different
2959states of enablement:
2960
2961@itemize @bullet
2962@item
2963Enabled. The breakpoint stops your program. A breakpoint set
2964with the @code{break} command starts out in this state.
2965@item
2966Disabled. The breakpoint has no effect on your program.
2967@item
2968Enabled once. The breakpoint stops your program, but then becomes
d4f3574e 2969disabled.
c906108c
SS
2970@item
2971Enabled for deletion. The breakpoint stops your program, but
d4f3574e
SS
2972immediately after it does so it is deleted permanently. A breakpoint
2973set with the @code{tbreak} command starts out in this state.
c906108c
SS
2974@end itemize
2975
2976You can use the following commands to enable or disable breakpoints,
2977watchpoints, and catchpoints:
2978
2979@table @code
2980@kindex disable breakpoints
2981@kindex disable
41afff9a 2982@kindex dis @r{(@code{disable})}
c5394b80 2983@item disable @r{[}breakpoints@r{]} @r{[}@var{range}@dots{}@r{]}
c906108c
SS
2984Disable the specified breakpoints---or all breakpoints, if none are
2985listed. A disabled breakpoint has no effect but is not forgotten. All
2986options such as ignore-counts, conditions and commands are remembered in
2987case the breakpoint is enabled again later. You may abbreviate
2988@code{disable} as @code{dis}.
2989
2990@kindex enable breakpoints
2991@kindex enable
c5394b80 2992@item enable @r{[}breakpoints@r{]} @r{[}@var{range}@dots{}@r{]}
c906108c
SS
2993Enable the specified breakpoints (or all defined breakpoints). They
2994become effective once again in stopping your program.
2995
c5394b80 2996@item enable @r{[}breakpoints@r{]} once @var{range}@dots{}
c906108c
SS
2997Enable the specified breakpoints temporarily. @value{GDBN} disables any
2998of these breakpoints immediately after stopping your program.
2999
c5394b80 3000@item enable @r{[}breakpoints@r{]} delete @var{range}@dots{}
c906108c
SS
3001Enable the specified breakpoints to work once, then die. @value{GDBN}
3002deletes any of these breakpoints as soon as your program stops there.
3003@end table
3004
d4f3574e
SS
3005@c FIXME: I think the following ``Except for [...] @code{tbreak}'' is
3006@c confusing: tbreak is also initially enabled.
c906108c
SS
3007Except for a breakpoint set with @code{tbreak} (@pxref{Set Breaks,
3008,Setting breakpoints}), breakpoints that you set are initially enabled;
3009subsequently, they become disabled or enabled only when you use one of
3010the commands above. (The command @code{until} can set and delete a
3011breakpoint of its own, but it does not change the state of your other
3012breakpoints; see @ref{Continuing and Stepping, ,Continuing and
3013stepping}.)
3014
6d2ebf8b 3015@node Conditions
c906108c
SS
3016@subsection Break conditions
3017@cindex conditional breakpoints
3018@cindex breakpoint conditions
3019
3020@c FIXME what is scope of break condition expr? Context where wanted?
5d161b24 3021@c in particular for a watchpoint?
c906108c
SS
3022The simplest sort of breakpoint breaks every time your program reaches a
3023specified place. You can also specify a @dfn{condition} for a
3024breakpoint. A condition is just a Boolean expression in your
3025programming language (@pxref{Expressions, ,Expressions}). A breakpoint with
3026a condition evaluates the expression each time your program reaches it,
3027and your program stops only if the condition is @emph{true}.
3028
3029This is the converse of using assertions for program validation; in that
3030situation, you want to stop when the assertion is violated---that is,
3031when the condition is false. In C, if you want to test an assertion expressed
3032by the condition @var{assert}, you should set the condition
3033@samp{! @var{assert}} on the appropriate breakpoint.
3034
3035Conditions are also accepted for watchpoints; you may not need them,
3036since a watchpoint is inspecting the value of an expression anyhow---but
3037it might be simpler, say, to just set a watchpoint on a variable name,
3038and specify a condition that tests whether the new value is an interesting
3039one.
3040
3041Break conditions can have side effects, and may even call functions in
3042your program. This can be useful, for example, to activate functions
3043that log program progress, or to use your own print functions to
3044format special data structures. The effects are completely predictable
3045unless there is another enabled breakpoint at the same address. (In
3046that case, @value{GDBN} might see the other breakpoint first and stop your
3047program without checking the condition of this one.) Note that
d4f3574e
SS
3048breakpoint commands are usually more convenient and flexible than break
3049conditions for the
c906108c
SS
3050purpose of performing side effects when a breakpoint is reached
3051(@pxref{Break Commands, ,Breakpoint command lists}).
3052
3053Break conditions can be specified when a breakpoint is set, by using
3054@samp{if} in the arguments to the @code{break} command. @xref{Set
3055Breaks, ,Setting breakpoints}. They can also be changed at any time
3056with the @code{condition} command.
53a5351d 3057
c906108c
SS
3058You can also use the @code{if} keyword with the @code{watch} command.
3059The @code{catch} command does not recognize the @code{if} keyword;
3060@code{condition} is the only way to impose a further condition on a
3061catchpoint.
c906108c
SS
3062
3063@table @code
3064@kindex condition
3065@item condition @var{bnum} @var{expression}
3066Specify @var{expression} as the break condition for breakpoint,
3067watchpoint, or catchpoint number @var{bnum}. After you set a condition,
3068breakpoint @var{bnum} stops your program only if the value of
3069@var{expression} is true (nonzero, in C). When you use
3070@code{condition}, @value{GDBN} checks @var{expression} immediately for
3071syntactic correctness, and to determine whether symbols in it have
d4f3574e
SS
3072referents in the context of your breakpoint. If @var{expression} uses
3073symbols not referenced in the context of the breakpoint, @value{GDBN}
3074prints an error message:
3075
474c8240 3076@smallexample
d4f3574e 3077No symbol "foo" in current context.
474c8240 3078@end smallexample
d4f3574e
SS
3079
3080@noindent
c906108c
SS
3081@value{GDBN} does
3082not actually evaluate @var{expression} at the time the @code{condition}
d4f3574e
SS
3083command (or a command that sets a breakpoint with a condition, like
3084@code{break if @dots{}}) is given, however. @xref{Expressions, ,Expressions}.
c906108c
SS
3085
3086@item condition @var{bnum}
3087Remove the condition from breakpoint number @var{bnum}. It becomes
3088an ordinary unconditional breakpoint.
3089@end table
3090
3091@cindex ignore count (of breakpoint)
3092A special case of a breakpoint condition is to stop only when the
3093breakpoint has been reached a certain number of times. This is so
3094useful that there is a special way to do it, using the @dfn{ignore
3095count} of the breakpoint. Every breakpoint has an ignore count, which
3096is an integer. Most of the time, the ignore count is zero, and
3097therefore has no effect. But if your program reaches a breakpoint whose
3098ignore count is positive, then instead of stopping, it just decrements
3099the ignore count by one and continues. As a result, if the ignore count
3100value is @var{n}, the breakpoint does not stop the next @var{n} times
3101your program reaches it.
3102
3103@table @code
3104@kindex ignore
3105@item ignore @var{bnum} @var{count}
3106Set the ignore count of breakpoint number @var{bnum} to @var{count}.
3107The next @var{count} times the breakpoint is reached, your program's
3108execution does not stop; other than to decrement the ignore count, @value{GDBN}
3109takes no action.
3110
3111To make the breakpoint stop the next time it is reached, specify
3112a count of zero.
3113
3114When you use @code{continue} to resume execution of your program from a
3115breakpoint, you can specify an ignore count directly as an argument to
3116@code{continue}, rather than using @code{ignore}. @xref{Continuing and
3117Stepping,,Continuing and stepping}.
3118
3119If a breakpoint has a positive ignore count and a condition, the
3120condition is not checked. Once the ignore count reaches zero,
3121@value{GDBN} resumes checking the condition.
3122
3123You could achieve the effect of the ignore count with a condition such
3124as @w{@samp{$foo-- <= 0}} using a debugger convenience variable that
3125is decremented each time. @xref{Convenience Vars, ,Convenience
3126variables}.
3127@end table
3128
3129Ignore counts apply to breakpoints, watchpoints, and catchpoints.
3130
3131
6d2ebf8b 3132@node Break Commands
c906108c
SS
3133@subsection Breakpoint command lists
3134
3135@cindex breakpoint commands
3136You can give any breakpoint (or watchpoint or catchpoint) a series of
3137commands to execute when your program stops due to that breakpoint. For
3138example, you might want to print the values of certain expressions, or
3139enable other breakpoints.
3140
3141@table @code
3142@kindex commands
3143@kindex end
3144@item commands @r{[}@var{bnum}@r{]}
3145@itemx @dots{} @var{command-list} @dots{}
3146@itemx end
3147Specify a list of commands for breakpoint number @var{bnum}. The commands
3148themselves appear on the following lines. Type a line containing just
3149@code{end} to terminate the commands.
3150
3151To remove all commands from a breakpoint, type @code{commands} and
3152follow it immediately with @code{end}; that is, give no commands.
3153
3154With no @var{bnum} argument, @code{commands} refers to the last
3155breakpoint, watchpoint, or catchpoint set (not to the breakpoint most
3156recently encountered).
3157@end table
3158
3159Pressing @key{RET} as a means of repeating the last @value{GDBN} command is
3160disabled within a @var{command-list}.
3161
3162You can use breakpoint commands to start your program up again. Simply
3163use the @code{continue} command, or @code{step}, or any other command
3164that resumes execution.
3165
3166Any other commands in the command list, after a command that resumes
3167execution, are ignored. This is because any time you resume execution
3168(even with a simple @code{next} or @code{step}), you may encounter
3169another breakpoint---which could have its own command list, leading to
3170ambiguities about which list to execute.
3171
3172@kindex silent
3173If the first command you specify in a command list is @code{silent}, the
3174usual message about stopping at a breakpoint is not printed. This may
3175be desirable for breakpoints that are to print a specific message and
3176then continue. If none of the remaining commands print anything, you
3177see no sign that the breakpoint was reached. @code{silent} is
3178meaningful only at the beginning of a breakpoint command list.
3179
3180The commands @code{echo}, @code{output}, and @code{printf} allow you to
3181print precisely controlled output, and are often useful in silent
3182breakpoints. @xref{Output, ,Commands for controlled output}.
3183
3184For example, here is how you could use breakpoint commands to print the
3185value of @code{x} at entry to @code{foo} whenever @code{x} is positive.
3186
474c8240 3187@smallexample
c906108c
SS
3188break foo if x>0
3189commands
3190silent
3191printf "x is %d\n",x
3192cont
3193end
474c8240 3194@end smallexample
c906108c
SS
3195
3196One application for breakpoint commands is to compensate for one bug so
3197you can test for another. Put a breakpoint just after the erroneous line
3198of code, give it a condition to detect the case in which something
3199erroneous has been done, and give it commands to assign correct values
3200to any variables that need them. End with the @code{continue} command
3201so that your program does not stop, and start with the @code{silent}
3202command so that no output is produced. Here is an example:
3203
474c8240 3204@smallexample
c906108c
SS
3205break 403
3206commands
3207silent
3208set x = y + 4
3209cont
3210end
474c8240 3211@end smallexample
c906108c 3212
6d2ebf8b 3213@node Breakpoint Menus
c906108c
SS
3214@subsection Breakpoint menus
3215@cindex overloading
3216@cindex symbol overloading
3217
b37303ee
AF
3218Some programming languages (notably C@t{++} and Objective-C) permit a
3219single function name
c906108c
SS
3220to be defined several times, for application in different contexts.
3221This is called @dfn{overloading}. When a function name is overloaded,
3222@samp{break @var{function}} is not enough to tell @value{GDBN} where you want
3223a breakpoint. If you realize this is a problem, you can use
3224something like @samp{break @var{function}(@var{types})} to specify which
3225particular version of the function you want. Otherwise, @value{GDBN} offers
3226you a menu of numbered choices for different possible breakpoints, and
3227waits for your selection with the prompt @samp{>}. The first two
3228options are always @samp{[0] cancel} and @samp{[1] all}. Typing @kbd{1}
3229sets a breakpoint at each definition of @var{function}, and typing
3230@kbd{0} aborts the @code{break} command without setting any new
3231breakpoints.
3232
3233For example, the following session excerpt shows an attempt to set a
3234breakpoint at the overloaded symbol @code{String::after}.
3235We choose three particular definitions of that function name:
3236
3237@c FIXME! This is likely to change to show arg type lists, at least
3238@smallexample
3239@group
3240(@value{GDBP}) b String::after
3241[0] cancel
3242[1] all
3243[2] file:String.cc; line number:867
3244[3] file:String.cc; line number:860
3245[4] file:String.cc; line number:875
3246[5] file:String.cc; line number:853
3247[6] file:String.cc; line number:846
3248[7] file:String.cc; line number:735
3249> 2 4 6
3250Breakpoint 1 at 0xb26c: file String.cc, line 867.
3251Breakpoint 2 at 0xb344: file String.cc, line 875.
3252Breakpoint 3 at 0xafcc: file String.cc, line 846.
3253Multiple breakpoints were set.
3254Use the "delete" command to delete unwanted
3255 breakpoints.
3256(@value{GDBP})
3257@end group
3258@end smallexample
c906108c
SS
3259
3260@c @ifclear BARETARGET
6d2ebf8b 3261@node Error in Breakpoints
d4f3574e 3262@subsection ``Cannot insert breakpoints''
c906108c
SS
3263@c
3264@c FIXME!! 14/6/95 Is there a real example of this? Let's use it.
3265@c
d4f3574e
SS
3266Under some operating systems, breakpoints cannot be used in a program if
3267any other process is running that program. In this situation,
5d161b24 3268attempting to run or continue a program with a breakpoint causes
d4f3574e
SS
3269@value{GDBN} to print an error message:
3270
474c8240 3271@smallexample
d4f3574e
SS
3272Cannot insert breakpoints.
3273The same program may be running in another process.
474c8240 3274@end smallexample
d4f3574e
SS
3275
3276When this happens, you have three ways to proceed:
3277
3278@enumerate
3279@item
3280Remove or disable the breakpoints, then continue.
3281
3282@item
5d161b24 3283Suspend @value{GDBN}, and copy the file containing your program to a new
d4f3574e 3284name. Resume @value{GDBN} and use the @code{exec-file} command to specify
5d161b24 3285that @value{GDBN} should run your program under that name.
d4f3574e
SS
3286Then start your program again.
3287
3288@item
3289Relink your program so that the text segment is nonsharable, using the
3290linker option @samp{-N}. The operating system limitation may not apply
3291to nonsharable executables.
3292@end enumerate
c906108c
SS
3293@c @end ifclear
3294
d4f3574e
SS
3295A similar message can be printed if you request too many active
3296hardware-assisted breakpoints and watchpoints:
3297
3298@c FIXME: the precise wording of this message may change; the relevant
3299@c source change is not committed yet (Sep 3, 1999).
3300@smallexample
3301Stopped; cannot insert breakpoints.
3302You may have requested too many hardware breakpoints and watchpoints.
3303@end smallexample
3304
3305@noindent
3306This message is printed when you attempt to resume the program, since
3307only then @value{GDBN} knows exactly how many hardware breakpoints and
3308watchpoints it needs to insert.
3309
3310When this message is printed, you need to disable or remove some of the
3311hardware-assisted breakpoints and watchpoints, and then continue.
3312
1485d690
KB
3313@node Breakpoint related warnings
3314@subsection ``Breakpoint address adjusted...''
3315@cindex breakpoint address adjusted
3316
3317Some processor architectures place constraints on the addresses at
3318which breakpoints may be placed. For architectures thus constrained,
3319@value{GDBN} will attempt to adjust the breakpoint's address to comply
3320with the constraints dictated by the architecture.
3321
3322One example of such an architecture is the Fujitsu FR-V. The FR-V is
3323a VLIW architecture in which a number of RISC-like instructions may be
3324bundled together for parallel execution. The FR-V architecture
3325constrains the location of a breakpoint instruction within such a
3326bundle to the instruction with the lowest address. @value{GDBN}
3327honors this constraint by adjusting a breakpoint's address to the
3328first in the bundle.
3329
3330It is not uncommon for optimized code to have bundles which contain
3331instructions from different source statements, thus it may happen that
3332a breakpoint's address will be adjusted from one source statement to
3333another. Since this adjustment may significantly alter @value{GDBN}'s
3334breakpoint related behavior from what the user expects, a warning is
3335printed when the breakpoint is first set and also when the breakpoint
3336is hit.
3337
3338A warning like the one below is printed when setting a breakpoint
3339that's been subject to address adjustment:
3340
3341@smallexample
3342warning: Breakpoint address adjusted from 0x00010414 to 0x00010410.
3343@end smallexample
3344
3345Such warnings are printed both for user settable and @value{GDBN}'s
3346internal breakpoints. If you see one of these warnings, you should
3347verify that a breakpoint set at the adjusted address will have the
3348desired affect. If not, the breakpoint in question may be removed and
3349other breakpoints may be set which will have the desired behavior.
3350E.g., it may be sufficient to place the breakpoint at a later
3351instruction. A conditional breakpoint may also be useful in some
3352cases to prevent the breakpoint from triggering too often.
3353
3354@value{GDBN} will also issue a warning when stopping at one of these
3355adjusted breakpoints:
3356
3357@smallexample
3358warning: Breakpoint 1 address previously adjusted from 0x00010414
3359to 0x00010410.
3360@end smallexample
3361
3362When this warning is encountered, it may be too late to take remedial
3363action except in cases where the breakpoint is hit earlier or more
3364frequently than expected.
d4f3574e 3365
6d2ebf8b 3366@node Continuing and Stepping
c906108c
SS
3367@section Continuing and stepping
3368
3369@cindex stepping
3370@cindex continuing
3371@cindex resuming execution
3372@dfn{Continuing} means resuming program execution until your program
3373completes normally. In contrast, @dfn{stepping} means executing just
3374one more ``step'' of your program, where ``step'' may mean either one
3375line of source code, or one machine instruction (depending on what
7a292a7a
SS
3376particular command you use). Either when continuing or when stepping,
3377your program may stop even sooner, due to a breakpoint or a signal. (If
d4f3574e
SS
3378it stops due to a signal, you may want to use @code{handle}, or use
3379@samp{signal 0} to resume execution. @xref{Signals, ,Signals}.)
c906108c
SS
3380
3381@table @code
3382@kindex continue
41afff9a
EZ
3383@kindex c @r{(@code{continue})}
3384@kindex fg @r{(resume foreground execution)}
c906108c
SS
3385@item continue @r{[}@var{ignore-count}@r{]}
3386@itemx c @r{[}@var{ignore-count}@r{]}
3387@itemx fg @r{[}@var{ignore-count}@r{]}
3388Resume program execution, at the address where your program last stopped;
3389any breakpoints set at that address are bypassed. The optional argument
3390@var{ignore-count} allows you to specify a further number of times to
3391ignore a breakpoint at this location; its effect is like that of
3392@code{ignore} (@pxref{Conditions, ,Break conditions}).
3393
3394The argument @var{ignore-count} is meaningful only when your program
3395stopped due to a breakpoint. At other times, the argument to
3396@code{continue} is ignored.
3397
d4f3574e
SS
3398The synonyms @code{c} and @code{fg} (for @dfn{foreground}, as the
3399debugged program is deemed to be the foreground program) are provided
3400purely for convenience, and have exactly the same behavior as
3401@code{continue}.
c906108c
SS
3402@end table
3403
3404To resume execution at a different place, you can use @code{return}
3405(@pxref{Returning, ,Returning from a function}) to go back to the
3406calling function; or @code{jump} (@pxref{Jumping, ,Continuing at a
3407different address}) to go to an arbitrary location in your program.
3408
3409A typical technique for using stepping is to set a breakpoint
3410(@pxref{Breakpoints, ,Breakpoints; watchpoints; and catchpoints}) at the
3411beginning of the function or the section of your program where a problem
3412is believed to lie, run your program until it stops at that breakpoint,
3413and then step through the suspect area, examining the variables that are
3414interesting, until you see the problem happen.
3415
3416@table @code
3417@kindex step
41afff9a 3418@kindex s @r{(@code{step})}
c906108c
SS
3419@item step
3420Continue running your program until control reaches a different source
3421line, then stop it and return control to @value{GDBN}. This command is
3422abbreviated @code{s}.
3423
3424@quotation
3425@c "without debugging information" is imprecise; actually "without line
3426@c numbers in the debugging information". (gcc -g1 has debugging info but
3427@c not line numbers). But it seems complex to try to make that
3428@c distinction here.
3429@emph{Warning:} If you use the @code{step} command while control is
3430within a function that was compiled without debugging information,
3431execution proceeds until control reaches a function that does have
3432debugging information. Likewise, it will not step into a function which
3433is compiled without debugging information. To step through functions
3434without debugging information, use the @code{stepi} command, described
3435below.
3436@end quotation
3437
4a92d011
EZ
3438The @code{step} command only stops at the first instruction of a source
3439line. This prevents the multiple stops that could otherwise occur in
3440@code{switch} statements, @code{for} loops, etc. @code{step} continues
3441to stop if a function that has debugging information is called within
3442the line. In other words, @code{step} @emph{steps inside} any functions
3443called within the line.
c906108c 3444
d4f3574e
SS
3445Also, the @code{step} command only enters a function if there is line
3446number information for the function. Otherwise it acts like the
5d161b24 3447@code{next} command. This avoids problems when using @code{cc -gl}
c906108c 3448on MIPS machines. Previously, @code{step} entered subroutines if there
5d161b24 3449was any debugging information about the routine.
c906108c
SS
3450
3451@item step @var{count}
3452Continue running as in @code{step}, but do so @var{count} times. If a
7a292a7a
SS
3453breakpoint is reached, or a signal not related to stepping occurs before
3454@var{count} steps, stepping stops right away.
c906108c
SS
3455
3456@kindex next
41afff9a 3457@kindex n @r{(@code{next})}
c906108c
SS
3458@item next @r{[}@var{count}@r{]}
3459Continue to the next source line in the current (innermost) stack frame.
7a292a7a
SS
3460This is similar to @code{step}, but function calls that appear within
3461the line of code are executed without stopping. Execution stops when
3462control reaches a different line of code at the original stack level
3463that was executing when you gave the @code{next} command. This command
3464is abbreviated @code{n}.
c906108c
SS
3465
3466An argument @var{count} is a repeat count, as for @code{step}.
3467
3468
3469@c FIX ME!! Do we delete this, or is there a way it fits in with
3470@c the following paragraph? --- Vctoria
3471@c
3472@c @code{next} within a function that lacks debugging information acts like
3473@c @code{step}, but any function calls appearing within the code of the
3474@c function are executed without stopping.
3475
d4f3574e
SS
3476The @code{next} command only stops at the first instruction of a
3477source line. This prevents multiple stops that could otherwise occur in
4a92d011 3478@code{switch} statements, @code{for} loops, etc.
c906108c 3479
b90a5f51
CF
3480@kindex set step-mode
3481@item set step-mode
3482@cindex functions without line info, and stepping
3483@cindex stepping into functions with no line info
3484@itemx set step-mode on
4a92d011 3485The @code{set step-mode on} command causes the @code{step} command to
b90a5f51
CF
3486stop at the first instruction of a function which contains no debug line
3487information rather than stepping over it.
3488
4a92d011
EZ
3489This is useful in cases where you may be interested in inspecting the
3490machine instructions of a function which has no symbolic info and do not
3491want @value{GDBN} to automatically skip over this function.
b90a5f51
CF
3492
3493@item set step-mode off
4a92d011 3494Causes the @code{step} command to step over any functions which contains no
b90a5f51
CF
3495debug information. This is the default.
3496
c906108c
SS
3497@kindex finish
3498@item finish
3499Continue running until just after function in the selected stack frame
3500returns. Print the returned value (if any).
3501
3502Contrast this with the @code{return} command (@pxref{Returning,
3503,Returning from a function}).
3504
3505@kindex until
41afff9a 3506@kindex u @r{(@code{until})}
c906108c
SS
3507@item until
3508@itemx u
3509Continue running until a source line past the current line, in the
3510current stack frame, is reached. This command is used to avoid single
3511stepping through a loop more than once. It is like the @code{next}
3512command, except that when @code{until} encounters a jump, it
3513automatically continues execution until the program counter is greater
3514than the address of the jump.
3515
3516This means that when you reach the end of a loop after single stepping
3517though it, @code{until} makes your program continue execution until it
3518exits the loop. In contrast, a @code{next} command at the end of a loop
3519simply steps back to the beginning of the loop, which forces you to step
3520through the next iteration.
3521
3522@code{until} always stops your program if it attempts to exit the current
3523stack frame.
3524
3525@code{until} may produce somewhat counterintuitive results if the order
3526of machine code does not match the order of the source lines. For
3527example, in the following excerpt from a debugging session, the @code{f}
3528(@code{frame}) command shows that execution is stopped at line
3529@code{206}; yet when we use @code{until}, we get to line @code{195}:
3530
474c8240 3531@smallexample
c906108c
SS
3532(@value{GDBP}) f
3533#0 main (argc=4, argv=0xf7fffae8) at m4.c:206
3534206 expand_input();
3535(@value{GDBP}) until
3536195 for ( ; argc > 0; NEXTARG) @{
474c8240 3537@end smallexample
c906108c
SS
3538
3539This happened because, for execution efficiency, the compiler had
3540generated code for the loop closure test at the end, rather than the
3541start, of the loop---even though the test in a C @code{for}-loop is
3542written before the body of the loop. The @code{until} command appeared
3543to step back to the beginning of the loop when it advanced to this
3544expression; however, it has not really gone to an earlier
3545statement---not in terms of the actual machine code.
3546
3547@code{until} with no argument works by means of single
3548instruction stepping, and hence is slower than @code{until} with an
3549argument.
3550
3551@item until @var{location}
3552@itemx u @var{location}
3553Continue running your program until either the specified location is
3554reached, or the current stack frame returns. @var{location} is any of
3555the forms of argument acceptable to @code{break} (@pxref{Set Breaks,
c60eb6f1
EZ
3556,Setting breakpoints}). This form of the command uses breakpoints, and
3557hence is quicker than @code{until} without an argument. The specified
3558location is actually reached only if it is in the current frame. This
3559implies that @code{until} can be used to skip over recursive function
3560invocations. For instance in the code below, if the current location is
3561line @code{96}, issuing @code{until 99} will execute the program up to
3562line @code{99} in the same invocation of factorial, i.e. after the inner
3563invocations have returned.
3564
3565@smallexample
356694 int factorial (int value)
356795 @{
356896 if (value > 1) @{
356997 value *= factorial (value - 1);
357098 @}
357199 return (value);
3572100 @}
3573@end smallexample
3574
3575
3576@kindex advance @var{location}
3577@itemx advance @var{location}
3578Continue running the program up to the given location. An argument is
3579required, anything of the same form as arguments for the @code{break}
3580command. Execution will also stop upon exit from the current stack
3581frame. This command is similar to @code{until}, but @code{advance} will
3582not skip over recursive function calls, and the target location doesn't
3583have to be in the same frame as the current one.
3584
c906108c
SS
3585
3586@kindex stepi
41afff9a 3587@kindex si @r{(@code{stepi})}
c906108c 3588@item stepi
96a2c332 3589@itemx stepi @var{arg}
c906108c
SS
3590@itemx si
3591Execute one machine instruction, then stop and return to the debugger.
3592
3593It is often useful to do @samp{display/i $pc} when stepping by machine
3594instructions. This makes @value{GDBN} automatically display the next
3595instruction to be executed, each time your program stops. @xref{Auto
3596Display,, Automatic display}.
3597
3598An argument is a repeat count, as in @code{step}.
3599
3600@need 750
3601@kindex nexti
41afff9a 3602@kindex ni @r{(@code{nexti})}
c906108c 3603@item nexti
96a2c332 3604@itemx nexti @var{arg}
c906108c
SS
3605@itemx ni
3606Execute one machine instruction, but if it is a function call,
3607proceed until the function returns.
3608
3609An argument is a repeat count, as in @code{next}.
3610@end table
3611
6d2ebf8b 3612@node Signals
c906108c
SS
3613@section Signals
3614@cindex signals
3615
3616A signal is an asynchronous event that can happen in a program. The
3617operating system defines the possible kinds of signals, and gives each
3618kind a name and a number. For example, in Unix @code{SIGINT} is the
d4f3574e 3619signal a program gets when you type an interrupt character (often @kbd{C-c});
c906108c
SS
3620@code{SIGSEGV} is the signal a program gets from referencing a place in
3621memory far away from all the areas in use; @code{SIGALRM} occurs when
3622the alarm clock timer goes off (which happens only if your program has
3623requested an alarm).
3624
3625@cindex fatal signals
3626Some signals, including @code{SIGALRM}, are a normal part of the
3627functioning of your program. Others, such as @code{SIGSEGV}, indicate
d4f3574e 3628errors; these signals are @dfn{fatal} (they kill your program immediately) if the
c906108c
SS
3629program has not specified in advance some other way to handle the signal.
3630@code{SIGINT} does not indicate an error in your program, but it is normally
3631fatal so it can carry out the purpose of the interrupt: to kill the program.
3632
3633@value{GDBN} has the ability to detect any occurrence of a signal in your
3634program. You can tell @value{GDBN} in advance what to do for each kind of
3635signal.
3636
3637@cindex handling signals
24f93129
EZ
3638Normally, @value{GDBN} is set up to let the non-erroneous signals like
3639@code{SIGALRM} be silently passed to your program
3640(so as not to interfere with their role in the program's functioning)
c906108c
SS
3641but to stop your program immediately whenever an error signal happens.
3642You can change these settings with the @code{handle} command.
3643
3644@table @code
3645@kindex info signals
3646@item info signals
96a2c332 3647@itemx info handle
c906108c
SS
3648Print a table of all the kinds of signals and how @value{GDBN} has been told to
3649handle each one. You can use this to see the signal numbers of all
3650the defined types of signals.
3651
d4f3574e 3652@code{info handle} is an alias for @code{info signals}.
c906108c
SS
3653
3654@kindex handle
3655@item handle @var{signal} @var{keywords}@dots{}
5ece1a18
EZ
3656Change the way @value{GDBN} handles signal @var{signal}. @var{signal}
3657can be the number of a signal or its name (with or without the
24f93129 3658@samp{SIG} at the beginning); a list of signal numbers of the form
5ece1a18
EZ
3659@samp{@var{low}-@var{high}}; or the word @samp{all}, meaning all the
3660known signals. The @var{keywords} say what change to make.
c906108c
SS
3661@end table
3662
3663@c @group
3664The keywords allowed by the @code{handle} command can be abbreviated.
3665Their full names are:
3666
3667@table @code
3668@item nostop
3669@value{GDBN} should not stop your program when this signal happens. It may
3670still print a message telling you that the signal has come in.
3671
3672@item stop
3673@value{GDBN} should stop your program when this signal happens. This implies
3674the @code{print} keyword as well.
3675
3676@item print
3677@value{GDBN} should print a message when this signal happens.
3678
3679@item noprint
3680@value{GDBN} should not mention the occurrence of the signal at all. This
3681implies the @code{nostop} keyword as well.
3682
3683@item pass
5ece1a18 3684@itemx noignore
c906108c
SS
3685@value{GDBN} should allow your program to see this signal; your program
3686can handle the signal, or else it may terminate if the signal is fatal
5ece1a18 3687and not handled. @code{pass} and @code{noignore} are synonyms.
c906108c
SS
3688
3689@item nopass
5ece1a18 3690@itemx ignore
c906108c 3691@value{GDBN} should not allow your program to see this signal.
5ece1a18 3692@code{nopass} and @code{ignore} are synonyms.
c906108c
SS
3693@end table
3694@c @end group
3695
d4f3574e
SS
3696When a signal stops your program, the signal is not visible to the
3697program until you
c906108c
SS
3698continue. Your program sees the signal then, if @code{pass} is in
3699effect for the signal in question @emph{at that time}. In other words,
3700after @value{GDBN} reports a signal, you can use the @code{handle}
3701command with @code{pass} or @code{nopass} to control whether your
3702program sees that signal when you continue.
3703
24f93129
EZ
3704The default is set to @code{nostop}, @code{noprint}, @code{pass} for
3705non-erroneous signals such as @code{SIGALRM}, @code{SIGWINCH} and
3706@code{SIGCHLD}, and to @code{stop}, @code{print}, @code{pass} for the
3707erroneous signals.
3708
c906108c
SS
3709You can also use the @code{signal} command to prevent your program from
3710seeing a signal, or cause it to see a signal it normally would not see,
3711or to give it any signal at any time. For example, if your program stopped
3712due to some sort of memory reference error, you might store correct
3713values into the erroneous variables and continue, hoping to see more
3714execution; but your program would probably terminate immediately as
3715a result of the fatal signal once it saw the signal. To prevent this,
3716you can continue with @samp{signal 0}. @xref{Signaling, ,Giving your
5d161b24 3717program a signal}.
c906108c 3718
6d2ebf8b 3719@node Thread Stops
c906108c
SS
3720@section Stopping and starting multi-thread programs
3721
3722When your program has multiple threads (@pxref{Threads,, Debugging
3723programs with multiple threads}), you can choose whether to set
3724breakpoints on all threads, or on a particular thread.
3725
3726@table @code
3727@cindex breakpoints and threads
3728@cindex thread breakpoints
3729@kindex break @dots{} thread @var{threadno}
3730@item break @var{linespec} thread @var{threadno}
3731@itemx break @var{linespec} thread @var{threadno} if @dots{}
3732@var{linespec} specifies source lines; there are several ways of
3733writing them, but the effect is always to specify some source line.
3734
3735Use the qualifier @samp{thread @var{threadno}} with a breakpoint command
3736to specify that you only want @value{GDBN} to stop the program when a
3737particular thread reaches this breakpoint. @var{threadno} is one of the
3738numeric thread identifiers assigned by @value{GDBN}, shown in the first
3739column of the @samp{info threads} display.
3740
3741If you do not specify @samp{thread @var{threadno}} when you set a
3742breakpoint, the breakpoint applies to @emph{all} threads of your
3743program.
3744
3745You can use the @code{thread} qualifier on conditional breakpoints as
3746well; in this case, place @samp{thread @var{threadno}} before the
3747breakpoint condition, like this:
3748
3749@smallexample
2df3850c 3750(@value{GDBP}) break frik.c:13 thread 28 if bartab > lim
c906108c
SS
3751@end smallexample
3752
3753@end table
3754
3755@cindex stopped threads
3756@cindex threads, stopped
3757Whenever your program stops under @value{GDBN} for any reason,
3758@emph{all} threads of execution stop, not just the current thread. This
3759allows you to examine the overall state of the program, including
3760switching between threads, without worrying that things may change
3761underfoot.
3762
3763@cindex continuing threads
3764@cindex threads, continuing
3765Conversely, whenever you restart the program, @emph{all} threads start
3766executing. @emph{This is true even when single-stepping} with commands
5d161b24 3767like @code{step} or @code{next}.
c906108c
SS
3768
3769In particular, @value{GDBN} cannot single-step all threads in lockstep.
3770Since thread scheduling is up to your debugging target's operating
3771system (not controlled by @value{GDBN}), other threads may
3772execute more than one statement while the current thread completes a
3773single step. Moreover, in general other threads stop in the middle of a
3774statement, rather than at a clean statement boundary, when the program
3775stops.
3776
3777You might even find your program stopped in another thread after
3778continuing or even single-stepping. This happens whenever some other
3779thread runs into a breakpoint, a signal, or an exception before the
3780first thread completes whatever you requested.
3781
3782On some OSes, you can lock the OS scheduler and thus allow only a single
3783thread to run.
3784
3785@table @code
3786@item set scheduler-locking @var{mode}
3787Set the scheduler locking mode. If it is @code{off}, then there is no
3788locking and any thread may run at any time. If @code{on}, then only the
3789current thread may run when the inferior is resumed. The @code{step}
3790mode optimizes for single-stepping. It stops other threads from
3791``seizing the prompt'' by preempting the current thread while you are
3792stepping. Other threads will only rarely (or never) get a chance to run
d4f3574e 3793when you step. They are more likely to run when you @samp{next} over a
c906108c 3794function call, and they are completely free to run when you use commands
d4f3574e 3795like @samp{continue}, @samp{until}, or @samp{finish}. However, unless another
c906108c 3796thread hits a breakpoint during its timeslice, they will never steal the
2df3850c 3797@value{GDBN} prompt away from the thread that you are debugging.
c906108c
SS
3798
3799@item show scheduler-locking
3800Display the current scheduler locking mode.
3801@end table
3802
c906108c 3803
6d2ebf8b 3804@node Stack
c906108c
SS
3805@chapter Examining the Stack
3806
3807When your program has stopped, the first thing you need to know is where it
3808stopped and how it got there.
3809
3810@cindex call stack
5d161b24
DB
3811Each time your program performs a function call, information about the call
3812is generated.
3813That information includes the location of the call in your program,
3814the arguments of the call,
c906108c 3815and the local variables of the function being called.
5d161b24 3816The information is saved in a block of data called a @dfn{stack frame}.
c906108c
SS
3817The stack frames are allocated in a region of memory called the @dfn{call
3818stack}.
3819
3820When your program stops, the @value{GDBN} commands for examining the
3821stack allow you to see all of this information.
3822
3823@cindex selected frame
3824One of the stack frames is @dfn{selected} by @value{GDBN} and many
3825@value{GDBN} commands refer implicitly to the selected frame. In
3826particular, whenever you ask @value{GDBN} for the value of a variable in
3827your program, the value is found in the selected frame. There are
3828special @value{GDBN} commands to select whichever frame you are
3829interested in. @xref{Selection, ,Selecting a frame}.
3830
3831When your program stops, @value{GDBN} automatically selects the
5d161b24 3832currently executing frame and describes it briefly, similar to the
c906108c
SS
3833@code{frame} command (@pxref{Frame Info, ,Information about a frame}).
3834
3835@menu
3836* Frames:: Stack frames
3837* Backtrace:: Backtraces
3838* Selection:: Selecting a frame
3839* Frame Info:: Information on a frame
c906108c
SS
3840
3841@end menu
3842
6d2ebf8b 3843@node Frames
c906108c
SS
3844@section Stack frames
3845
d4f3574e 3846@cindex frame, definition
c906108c
SS
3847@cindex stack frame
3848The call stack is divided up into contiguous pieces called @dfn{stack
3849frames}, or @dfn{frames} for short; each frame is the data associated
3850with one call to one function. The frame contains the arguments given
3851to the function, the function's local variables, and the address at
3852which the function is executing.
3853
3854@cindex initial frame
3855@cindex outermost frame
3856@cindex innermost frame
3857When your program is started, the stack has only one frame, that of the
3858function @code{main}. This is called the @dfn{initial} frame or the
3859@dfn{outermost} frame. Each time a function is called, a new frame is
3860made. Each time a function returns, the frame for that function invocation
3861is eliminated. If a function is recursive, there can be many frames for
3862the same function. The frame for the function in which execution is
3863actually occurring is called the @dfn{innermost} frame. This is the most
3864recently created of all the stack frames that still exist.
3865
3866@cindex frame pointer
3867Inside your program, stack frames are identified by their addresses. A
3868stack frame consists of many bytes, each of which has its own address; each
3869kind of computer has a convention for choosing one byte whose
3870address serves as the address of the frame. Usually this address is kept
3871in a register called the @dfn{frame pointer register} while execution is
3872going on in that frame.
3873
3874@cindex frame number
3875@value{GDBN} assigns numbers to all existing stack frames, starting with
3876zero for the innermost frame, one for the frame that called it,
3877and so on upward. These numbers do not really exist in your program;
3878they are assigned by @value{GDBN} to give you a way of designating stack
3879frames in @value{GDBN} commands.
3880
6d2ebf8b
SS
3881@c The -fomit-frame-pointer below perennially causes hbox overflow
3882@c underflow problems.
c906108c
SS
3883@cindex frameless execution
3884Some compilers provide a way to compile functions so that they operate
6d2ebf8b 3885without stack frames. (For example, the @value{GCC} option
474c8240 3886@smallexample
6d2ebf8b 3887@samp{-fomit-frame-pointer}
474c8240 3888@end smallexample
6d2ebf8b 3889generates functions without a frame.)
c906108c
SS
3890This is occasionally done with heavily used library functions to save
3891the frame setup time. @value{GDBN} has limited facilities for dealing
3892with these function invocations. If the innermost function invocation
3893has no stack frame, @value{GDBN} nevertheless regards it as though
3894it had a separate frame, which is numbered zero as usual, allowing
3895correct tracing of the function call chain. However, @value{GDBN} has
3896no provision for frameless functions elsewhere in the stack.
3897
3898@table @code
d4f3574e 3899@kindex frame@r{, command}
41afff9a 3900@cindex current stack frame
c906108c 3901@item frame @var{args}
5d161b24 3902The @code{frame} command allows you to move from one stack frame to another,
c906108c 3903and to print the stack frame you select. @var{args} may be either the
5d161b24
DB
3904address of the frame or the stack frame number. Without an argument,
3905@code{frame} prints the current stack frame.
c906108c
SS
3906
3907@kindex select-frame
41afff9a 3908@cindex selecting frame silently
c906108c
SS
3909@item select-frame
3910The @code{select-frame} command allows you to move from one stack frame
3911to another without printing the frame. This is the silent version of
3912@code{frame}.
3913@end table
3914
6d2ebf8b 3915@node Backtrace
c906108c
SS
3916@section Backtraces
3917
3918@cindex backtraces
3919@cindex tracebacks
3920@cindex stack traces
3921A backtrace is a summary of how your program got where it is. It shows one
3922line per frame, for many frames, starting with the currently executing
3923frame (frame zero), followed by its caller (frame one), and on up the
3924stack.
3925
3926@table @code
3927@kindex backtrace
41afff9a 3928@kindex bt @r{(@code{backtrace})}
c906108c
SS
3929@item backtrace
3930@itemx bt
3931Print a backtrace of the entire stack: one line per frame for all
3932frames in the stack.
3933
3934You can stop the backtrace at any time by typing the system interrupt
3935character, normally @kbd{C-c}.
3936
3937@item backtrace @var{n}
3938@itemx bt @var{n}
3939Similar, but print only the innermost @var{n} frames.
3940
3941@item backtrace -@var{n}
3942@itemx bt -@var{n}
3943Similar, but print only the outermost @var{n} frames.
3944@end table
3945
3946@kindex where
3947@kindex info stack
41afff9a 3948@kindex info s @r{(@code{info stack})}
c906108c
SS
3949The names @code{where} and @code{info stack} (abbreviated @code{info s})
3950are additional aliases for @code{backtrace}.
3951
3952Each line in the backtrace shows the frame number and the function name.
3953The program counter value is also shown---unless you use @code{set
3954print address off}. The backtrace also shows the source file name and
3955line number, as well as the arguments to the function. The program
3956counter value is omitted if it is at the beginning of the code for that
3957line number.
3958
3959Here is an example of a backtrace. It was made with the command
3960@samp{bt 3}, so it shows the innermost three frames.
3961
3962@smallexample
3963@group
5d161b24 3964#0 m4_traceon (obs=0x24eb0, argc=1, argv=0x2b8c8)
c906108c
SS
3965 at builtin.c:993
3966#1 0x6e38 in expand_macro (sym=0x2b600) at macro.c:242
3967#2 0x6840 in expand_token (obs=0x0, t=177664, td=0xf7fffb08)
3968 at macro.c:71
3969(More stack frames follow...)
3970@end group
3971@end smallexample
3972
3973@noindent
3974The display for frame zero does not begin with a program counter
3975value, indicating that your program has stopped at the beginning of the
3976code for line @code{993} of @code{builtin.c}.
3977
25d29d70
AC
3978@kindex set backtrace past-main
3979@kindex show backtrace past-main
3980@kindex set backtrace limit
3981@kindex show backtrace limit
b4e9345d 3982
25d29d70
AC
3983Most programs have a standard user entry point---a place where system
3984libraries and startup code transition into user code. For C this is
3985@code{main}. When @value{GDBN} finds the entry function in a backtrace
3986it will terminate the backtrace, to avoid tracing into highly
3987system-specific (and generally uninteresting) code.
3988
3989If you need to examine the startup code, or limit the number of levels
3990in a backtrace, you can change this behavior:
95f90d25
DJ
3991
3992@table @code
25d29d70
AC
3993@item set backtrace past-main
3994@itemx set backtrace past-main on
3995Backtraces will continue past the user entry point.
3996
3997@item set backtrace past-main off
95f90d25
DJ
3998Backtraces will stop when they encounter the user entry point. This is the
3999default.
4000
25d29d70
AC
4001@item show backtrace past-main
4002Display the current user entry point backtrace policy.
4003
4004@item set backtrace limit @var{n}
4005@itemx set backtrace limit 0
4006@cindex backtrace limit
4007Limit the backtrace to @var{n} levels. A value of zero means
4008unlimited.
95f90d25 4009
25d29d70
AC
4010@item show backtrace limit
4011Display the current limit on backtrace levels.
95f90d25
DJ
4012@end table
4013
6d2ebf8b 4014@node Selection
c906108c
SS
4015@section Selecting a frame
4016
4017Most commands for examining the stack and other data in your program work on
4018whichever stack frame is selected at the moment. Here are the commands for
4019selecting a stack frame; all of them finish by printing a brief description
4020of the stack frame just selected.
4021
4022@table @code
d4f3574e 4023@kindex frame@r{, selecting}
41afff9a 4024@kindex f @r{(@code{frame})}
c906108c
SS
4025@item frame @var{n}
4026@itemx f @var{n}
4027Select frame number @var{n}. Recall that frame zero is the innermost
4028(currently executing) frame, frame one is the frame that called the
4029innermost one, and so on. The highest-numbered frame is the one for
4030@code{main}.
4031
4032@item frame @var{addr}
4033@itemx f @var{addr}
4034Select the frame at address @var{addr}. This is useful mainly if the
4035chaining of stack frames has been damaged by a bug, making it
4036impossible for @value{GDBN} to assign numbers properly to all frames. In
4037addition, this can be useful when your program has multiple stacks and
4038switches between them.
4039
c906108c
SS
4040On the SPARC architecture, @code{frame} needs two addresses to
4041select an arbitrary frame: a frame pointer and a stack pointer.
4042
4043On the MIPS and Alpha architecture, it needs two addresses: a stack
4044pointer and a program counter.
4045
4046On the 29k architecture, it needs three addresses: a register stack
4047pointer, a program counter, and a memory stack pointer.
4048@c note to future updaters: this is conditioned on a flag
4049@c SETUP_ARBITRARY_FRAME in the tm-*.h files. The above is up to date
4050@c as of 27 Jan 1994.
c906108c
SS
4051
4052@kindex up
4053@item up @var{n}
4054Move @var{n} frames up the stack. For positive numbers @var{n}, this
4055advances toward the outermost frame, to higher frame numbers, to frames
4056that have existed longer. @var{n} defaults to one.
4057
4058@kindex down
41afff9a 4059@kindex do @r{(@code{down})}
c906108c
SS
4060@item down @var{n}
4061Move @var{n} frames down the stack. For positive numbers @var{n}, this
4062advances toward the innermost frame, to lower frame numbers, to frames
4063that were created more recently. @var{n} defaults to one. You may
4064abbreviate @code{down} as @code{do}.
4065@end table
4066
4067All of these commands end by printing two lines of output describing the
4068frame. The first line shows the frame number, the function name, the
4069arguments, and the source file and line number of execution in that
5d161b24 4070frame. The second line shows the text of that source line.
c906108c
SS
4071
4072@need 1000
4073For example:
4074
4075@smallexample
4076@group
4077(@value{GDBP}) up
4078#1 0x22f0 in main (argc=1, argv=0xf7fffbf4, env=0xf7fffbfc)
4079 at env.c:10
408010 read_input_file (argv[i]);
4081@end group
4082@end smallexample
4083
4084After such a printout, the @code{list} command with no arguments
4085prints ten lines centered on the point of execution in the frame.
87885426
FN
4086You can also edit the program at the point of execution with your favorite
4087editing program by typing @code{edit}.
4088@xref{List, ,Printing source lines},
4089for details.
c906108c
SS
4090
4091@table @code
4092@kindex down-silently
4093@kindex up-silently
4094@item up-silently @var{n}
4095@itemx down-silently @var{n}
4096These two commands are variants of @code{up} and @code{down},
4097respectively; they differ in that they do their work silently, without
4098causing display of the new frame. They are intended primarily for use
4099in @value{GDBN} command scripts, where the output might be unnecessary and
4100distracting.
4101@end table
4102
6d2ebf8b 4103@node Frame Info
c906108c
SS
4104@section Information about a frame
4105
4106There are several other commands to print information about the selected
4107stack frame.
4108
4109@table @code
4110@item frame
4111@itemx f
4112When used without any argument, this command does not change which
4113frame is selected, but prints a brief description of the currently
4114selected stack frame. It can be abbreviated @code{f}. With an
4115argument, this command is used to select a stack frame.
4116@xref{Selection, ,Selecting a frame}.
4117
4118@kindex info frame
41afff9a 4119@kindex info f @r{(@code{info frame})}
c906108c
SS
4120@item info frame
4121@itemx info f
4122This command prints a verbose description of the selected stack frame,
4123including:
4124
4125@itemize @bullet
5d161b24
DB
4126@item
4127the address of the frame
c906108c
SS
4128@item
4129the address of the next frame down (called by this frame)
4130@item
4131the address of the next frame up (caller of this frame)
4132@item
4133the language in which the source code corresponding to this frame is written
4134@item
4135the address of the frame's arguments
4136@item
d4f3574e
SS
4137the address of the frame's local variables
4138@item
c906108c
SS
4139the program counter saved in it (the address of execution in the caller frame)
4140@item
4141which registers were saved in the frame
4142@end itemize
4143
4144@noindent The verbose description is useful when
4145something has gone wrong that has made the stack format fail to fit
4146the usual conventions.
4147
4148@item info frame @var{addr}
4149@itemx info f @var{addr}
4150Print a verbose description of the frame at address @var{addr}, without
4151selecting that frame. The selected frame remains unchanged by this
4152command. This requires the same kind of address (more than one for some
4153architectures) that you specify in the @code{frame} command.
4154@xref{Selection, ,Selecting a frame}.
4155
4156@kindex info args
4157@item info args
4158Print the arguments of the selected frame, each on a separate line.
4159
4160@item info locals
4161@kindex info locals
4162Print the local variables of the selected frame, each on a separate
4163line. These are all variables (declared either static or automatic)
4164accessible at the point of execution of the selected frame.
4165
c906108c 4166@kindex info catch
d4f3574e
SS
4167@cindex catch exceptions, list active handlers
4168@cindex exception handlers, how to list
c906108c
SS
4169@item info catch
4170Print a list of all the exception handlers that are active in the
4171current stack frame at the current point of execution. To see other
4172exception handlers, visit the associated frame (using the @code{up},
4173@code{down}, or @code{frame} commands); then type @code{info catch}.
4174@xref{Set Catchpoints, , Setting catchpoints}.
53a5351d 4175
c906108c
SS
4176@end table
4177
c906108c 4178
6d2ebf8b 4179@node Source
c906108c
SS
4180@chapter Examining Source Files
4181
4182@value{GDBN} can print parts of your program's source, since the debugging
4183information recorded in the program tells @value{GDBN} what source files were
4184used to build it. When your program stops, @value{GDBN} spontaneously prints
4185the line where it stopped. Likewise, when you select a stack frame
4186(@pxref{Selection, ,Selecting a frame}), @value{GDBN} prints the line where
4187execution in that frame has stopped. You can print other portions of
4188source files by explicit command.
4189
7a292a7a 4190If you use @value{GDBN} through its @sc{gnu} Emacs interface, you may
d4f3574e 4191prefer to use Emacs facilities to view source; see @ref{Emacs, ,Using
7a292a7a 4192@value{GDBN} under @sc{gnu} Emacs}.
c906108c
SS
4193
4194@menu
4195* List:: Printing source lines
87885426 4196* Edit:: Editing source files
c906108c 4197* Search:: Searching source files
c906108c
SS
4198* Source Path:: Specifying source directories
4199* Machine Code:: Source and machine code
4200@end menu
4201
6d2ebf8b 4202@node List
c906108c
SS
4203@section Printing source lines
4204
4205@kindex list
41afff9a 4206@kindex l @r{(@code{list})}
c906108c 4207To print lines from a source file, use the @code{list} command
5d161b24 4208(abbreviated @code{l}). By default, ten lines are printed.
c906108c
SS
4209There are several ways to specify what part of the file you want to print.
4210
4211Here are the forms of the @code{list} command most commonly used:
4212
4213@table @code
4214@item list @var{linenum}
4215Print lines centered around line number @var{linenum} in the
4216current source file.
4217
4218@item list @var{function}
4219Print lines centered around the beginning of function
4220@var{function}.
4221
4222@item list
4223Print more lines. If the last lines printed were printed with a
4224@code{list} command, this prints lines following the last lines
4225printed; however, if the last line printed was a solitary line printed
4226as part of displaying a stack frame (@pxref{Stack, ,Examining the
4227Stack}), this prints lines centered around that line.
4228
4229@item list -
4230Print lines just before the lines last printed.
4231@end table
4232
4233By default, @value{GDBN} prints ten source lines with any of these forms of
4234the @code{list} command. You can change this using @code{set listsize}:
4235
4236@table @code
4237@kindex set listsize
4238@item set listsize @var{count}
4239Make the @code{list} command display @var{count} source lines (unless
4240the @code{list} argument explicitly specifies some other number).
4241
4242@kindex show listsize
4243@item show listsize
4244Display the number of lines that @code{list} prints.
4245@end table
4246
4247Repeating a @code{list} command with @key{RET} discards the argument,
4248so it is equivalent to typing just @code{list}. This is more useful
4249than listing the same lines again. An exception is made for an
4250argument of @samp{-}; that argument is preserved in repetition so that
4251each repetition moves up in the source file.
4252
4253@cindex linespec
4254In general, the @code{list} command expects you to supply zero, one or two
4255@dfn{linespecs}. Linespecs specify source lines; there are several ways
d4f3574e 4256of writing them, but the effect is always to specify some source line.
c906108c
SS
4257Here is a complete description of the possible arguments for @code{list}:
4258
4259@table @code
4260@item list @var{linespec}
4261Print lines centered around the line specified by @var{linespec}.
4262
4263@item list @var{first},@var{last}
4264Print lines from @var{first} to @var{last}. Both arguments are
4265linespecs.
4266
4267@item list ,@var{last}
4268Print lines ending with @var{last}.
4269
4270@item list @var{first},
4271Print lines starting with @var{first}.
4272
4273@item list +
4274Print lines just after the lines last printed.
4275
4276@item list -
4277Print lines just before the lines last printed.
4278
4279@item list
4280As described in the preceding table.
4281@end table
4282
4283Here are the ways of specifying a single source line---all the
4284kinds of linespec.
4285
4286@table @code
4287@item @var{number}
4288Specifies line @var{number} of the current source file.
4289When a @code{list} command has two linespecs, this refers to
4290the same source file as the first linespec.
4291
4292@item +@var{offset}
4293Specifies the line @var{offset} lines after the last line printed.
4294When used as the second linespec in a @code{list} command that has
4295two, this specifies the line @var{offset} lines down from the
4296first linespec.
4297
4298@item -@var{offset}
4299Specifies the line @var{offset} lines before the last line printed.
4300
4301@item @var{filename}:@var{number}
4302Specifies line @var{number} in the source file @var{filename}.
4303
4304@item @var{function}
4305Specifies the line that begins the body of the function @var{function}.
4306For example: in C, this is the line with the open brace.
4307
4308@item @var{filename}:@var{function}
4309Specifies the line of the open-brace that begins the body of the
4310function @var{function} in the file @var{filename}. You only need the
4311file name with a function name to avoid ambiguity when there are
4312identically named functions in different source files.
4313
4314@item *@var{address}
4315Specifies the line containing the program address @var{address}.
4316@var{address} may be any expression.
4317@end table
4318
87885426
FN
4319@node Edit
4320@section Editing source files
4321@cindex editing source files
4322
4323@kindex edit
4324@kindex e @r{(@code{edit})}
4325To edit the lines in a source file, use the @code{edit} command.
4326The editing program of your choice
4327is invoked with the current line set to
4328the active line in the program.
4329Alternatively, there are several ways to specify what part of the file you
4330want to print if you want to see other parts of the program.
4331
4332Here are the forms of the @code{edit} command most commonly used:
4333
4334@table @code
4335@item edit
4336Edit the current source file at the active line number in the program.
4337
4338@item edit @var{number}
4339Edit the current source file with @var{number} as the active line number.
4340
4341@item edit @var{function}
4342Edit the file containing @var{function} at the beginning of its definition.
4343
4344@item edit @var{filename}:@var{number}
4345Specifies line @var{number} in the source file @var{filename}.
4346
4347@item edit @var{filename}:@var{function}
4348Specifies the line that begins the body of the
4349function @var{function} in the file @var{filename}. You only need the
4350file name with a function name to avoid ambiguity when there are
4351identically named functions in different source files.
4352
4353@item edit *@var{address}
4354Specifies the line containing the program address @var{address}.
4355@var{address} may be any expression.
4356@end table
4357
4358@subsection Choosing your editor
4359You can customize @value{GDBN} to use any editor you want
4360@footnote{
4361The only restriction is that your editor (say @code{ex}), recognizes the
4362following command-line syntax:
10998722 4363@smallexample
87885426 4364ex +@var{number} file
10998722
AC
4365@end smallexample
4366The optional numeric value +@var{number} designates the active line in
4367the file.}. By default, it is @value{EDITOR}, but you can change this
4368by setting the environment variable @code{EDITOR} before using
4369@value{GDBN}. For example, to configure @value{GDBN} to use the
4370@code{vi} editor, you could use these commands with the @code{sh} shell:
4371@smallexample
87885426
FN
4372EDITOR=/usr/bin/vi
4373export EDITOR
4374gdb ...
10998722 4375@end smallexample
87885426 4376or in the @code{csh} shell,
10998722 4377@smallexample
87885426
FN
4378setenv EDITOR /usr/bin/vi
4379gdb ...
10998722 4380@end smallexample
87885426 4381
6d2ebf8b 4382@node Search
c906108c
SS
4383@section Searching source files
4384@cindex searching
4385@kindex reverse-search
4386
4387There are two commands for searching through the current source file for a
4388regular expression.
4389
4390@table @code
4391@kindex search
4392@kindex forward-search
4393@item forward-search @var{regexp}
4394@itemx search @var{regexp}
4395The command @samp{forward-search @var{regexp}} checks each line,
4396starting with the one following the last line listed, for a match for
5d161b24 4397@var{regexp}. It lists the line that is found. You can use the
c906108c
SS
4398synonym @samp{search @var{regexp}} or abbreviate the command name as
4399@code{fo}.
4400
4401@item reverse-search @var{regexp}
4402The command @samp{reverse-search @var{regexp}} checks each line, starting
4403with the one before the last line listed and going backward, for a match
4404for @var{regexp}. It lists the line that is found. You can abbreviate
4405this command as @code{rev}.
4406@end table
c906108c 4407
6d2ebf8b 4408@node Source Path
c906108c
SS
4409@section Specifying source directories
4410
4411@cindex source path
4412@cindex directories for source files
4413Executable programs sometimes do not record the directories of the source
4414files from which they were compiled, just the names. Even when they do,
4415the directories could be moved between the compilation and your debugging
4416session. @value{GDBN} has a list of directories to search for source files;
4417this is called the @dfn{source path}. Each time @value{GDBN} wants a source file,
4418it tries all the directories in the list, in the order they are present
4419in the list, until it finds a file with the desired name. Note that
4420the executable search path is @emph{not} used for this purpose. Neither is
4421the current working directory, unless it happens to be in the source
4422path.
4423
4424If @value{GDBN} cannot find a source file in the source path, and the
4425object program records a directory, @value{GDBN} tries that directory
4426too. If the source path is empty, and there is no record of the
4427compilation directory, @value{GDBN} looks in the current directory as a
4428last resort.
4429
4430Whenever you reset or rearrange the source path, @value{GDBN} clears out
4431any information it has cached about where source files are found and where
4432each line is in the file.
4433
4434@kindex directory
4435@kindex dir
d4f3574e
SS
4436When you start @value{GDBN}, its source path includes only @samp{cdir}
4437and @samp{cwd}, in that order.
c906108c
SS
4438To add other directories, use the @code{directory} command.
4439
4440@table @code
4441@item directory @var{dirname} @dots{}
4442@item dir @var{dirname} @dots{}
4443Add directory @var{dirname} to the front of the source path. Several
d4f3574e
SS
4444directory names may be given to this command, separated by @samp{:}
4445(@samp{;} on MS-DOS and MS-Windows, where @samp{:} usually appears as
4446part of absolute file names) or
c906108c
SS
4447whitespace. You may specify a directory that is already in the source
4448path; this moves it forward, so @value{GDBN} searches it sooner.
4449
4450@kindex cdir
4451@kindex cwd
41afff9a
EZ
4452@vindex $cdir@r{, convenience variable}
4453@vindex $cwdr@r{, convenience variable}
c906108c
SS
4454@cindex compilation directory
4455@cindex current directory
4456@cindex working directory
4457@cindex directory, current
4458@cindex directory, compilation
4459You can use the string @samp{$cdir} to refer to the compilation
4460directory (if one is recorded), and @samp{$cwd} to refer to the current
4461working directory. @samp{$cwd} is not the same as @samp{.}---the former
4462tracks the current working directory as it changes during your @value{GDBN}
4463session, while the latter is immediately expanded to the current
4464directory at the time you add an entry to the source path.
4465
4466@item directory
4467Reset the source path to empty again. This requires confirmation.
4468
4469@c RET-repeat for @code{directory} is explicitly disabled, but since
4470@c repeating it would be a no-op we do not say that. (thanks to RMS)
4471
4472@item show directories
4473@kindex show directories
4474Print the source path: show which directories it contains.
4475@end table
4476
4477If your source path is cluttered with directories that are no longer of
4478interest, @value{GDBN} may sometimes cause confusion by finding the wrong
4479versions of source. You can correct the situation as follows:
4480
4481@enumerate
4482@item
4483Use @code{directory} with no argument to reset the source path to empty.
4484
4485@item
4486Use @code{directory} with suitable arguments to reinstall the
4487directories you want in the source path. You can add all the
4488directories in one command.
4489@end enumerate
4490
6d2ebf8b 4491@node Machine Code
c906108c
SS
4492@section Source and machine code
4493
4494You can use the command @code{info line} to map source lines to program
4495addresses (and vice versa), and the command @code{disassemble} to display
4496a range of addresses as machine instructions. When run under @sc{gnu} Emacs
d4f3574e 4497mode, the @code{info line} command causes the arrow to point to the
5d161b24 4498line specified. Also, @code{info line} prints addresses in symbolic form as
c906108c
SS
4499well as hex.
4500
4501@table @code
4502@kindex info line
4503@item info line @var{linespec}
4504Print the starting and ending addresses of the compiled code for
4505source line @var{linespec}. You can specify source lines in any of
4506the ways understood by the @code{list} command (@pxref{List, ,Printing
4507source lines}).
4508@end table
4509
4510For example, we can use @code{info line} to discover the location of
4511the object code for the first line of function
4512@code{m4_changequote}:
4513
d4f3574e
SS
4514@c FIXME: I think this example should also show the addresses in
4515@c symbolic form, as they usually would be displayed.
c906108c 4516@smallexample
96a2c332 4517(@value{GDBP}) info line m4_changequote
c906108c
SS
4518Line 895 of "builtin.c" starts at pc 0x634c and ends at 0x6350.
4519@end smallexample
4520
4521@noindent
4522We can also inquire (using @code{*@var{addr}} as the form for
4523@var{linespec}) what source line covers a particular address:
4524@smallexample
4525(@value{GDBP}) info line *0x63ff
4526Line 926 of "builtin.c" starts at pc 0x63e4 and ends at 0x6404.
4527@end smallexample
4528
4529@cindex @code{$_} and @code{info line}
41afff9a 4530@kindex x@r{(examine), and} info line
c906108c
SS
4531After @code{info line}, the default address for the @code{x} command
4532is changed to the starting address of the line, so that @samp{x/i} is
4533sufficient to begin examining the machine code (@pxref{Memory,
4534,Examining memory}). Also, this address is saved as the value of the
4535convenience variable @code{$_} (@pxref{Convenience Vars, ,Convenience
4536variables}).
4537
4538@table @code
4539@kindex disassemble
4540@cindex assembly instructions
4541@cindex instructions, assembly
4542@cindex machine instructions
4543@cindex listing machine instructions
4544@item disassemble
4545This specialized command dumps a range of memory as machine
4546instructions. The default memory range is the function surrounding the
4547program counter of the selected frame. A single argument to this
4548command is a program counter value; @value{GDBN} dumps the function
4549surrounding this value. Two arguments specify a range of addresses
4550(first inclusive, second exclusive) to dump.
4551@end table
4552
c906108c
SS
4553The following example shows the disassembly of a range of addresses of
4554HP PA-RISC 2.0 code:
4555
4556@smallexample
4557(@value{GDBP}) disas 0x32c4 0x32e4
4558Dump of assembler code from 0x32c4 to 0x32e4:
45590x32c4 <main+204>: addil 0,dp
45600x32c8 <main+208>: ldw 0x22c(sr0,r1),r26
45610x32cc <main+212>: ldil 0x3000,r31
45620x32d0 <main+216>: ble 0x3f8(sr4,r31)
45630x32d4 <main+220>: ldo 0(r31),rp
45640x32d8 <main+224>: addil -0x800,dp
45650x32dc <main+228>: ldo 0x588(r1),r26
45660x32e0 <main+232>: ldil 0x3000,r31
4567End of assembler dump.
4568@end smallexample
c906108c
SS
4569
4570Some architectures have more than one commonly-used set of instruction
4571mnemonics or other syntax.
4572
4573@table @code
d4f3574e 4574@kindex set disassembly-flavor
c906108c
SS
4575@cindex assembly instructions
4576@cindex instructions, assembly
4577@cindex machine instructions
4578@cindex listing machine instructions
d4f3574e
SS
4579@cindex Intel disassembly flavor
4580@cindex AT&T disassembly flavor
4581@item set disassembly-flavor @var{instruction-set}
c906108c
SS
4582Select the instruction set to use when disassembling the
4583program via the @code{disassemble} or @code{x/i} commands.
4584
4585Currently this command is only defined for the Intel x86 family. You
d4f3574e
SS
4586can set @var{instruction-set} to either @code{intel} or @code{att}.
4587The default is @code{att}, the AT&T flavor used by default by Unix
4588assemblers for x86-based targets.
c906108c
SS
4589@end table
4590
4591
6d2ebf8b 4592@node Data
c906108c
SS
4593@chapter Examining Data
4594
4595@cindex printing data
4596@cindex examining data
4597@kindex print
4598@kindex inspect
4599@c "inspect" is not quite a synonym if you are using Epoch, which we do not
4600@c document because it is nonstandard... Under Epoch it displays in a
4601@c different window or something like that.
4602The usual way to examine data in your program is with the @code{print}
7a292a7a
SS
4603command (abbreviated @code{p}), or its synonym @code{inspect}. It
4604evaluates and prints the value of an expression of the language your
4605program is written in (@pxref{Languages, ,Using @value{GDBN} with
4606Different Languages}).
c906108c
SS
4607
4608@table @code
d4f3574e
SS
4609@item print @var{expr}
4610@itemx print /@var{f} @var{expr}
4611@var{expr} is an expression (in the source language). By default the
4612value of @var{expr} is printed in a format appropriate to its data type;
c906108c 4613you can choose a different format by specifying @samp{/@var{f}}, where
d4f3574e 4614@var{f} is a letter specifying the format; see @ref{Output Formats,,Output
c906108c
SS
4615formats}.
4616
4617@item print
4618@itemx print /@var{f}
d4f3574e 4619If you omit @var{expr}, @value{GDBN} displays the last value again (from the
c906108c
SS
4620@dfn{value history}; @pxref{Value History, ,Value history}). This allows you to
4621conveniently inspect the same value in an alternative format.
4622@end table
4623
4624A more low-level way of examining data is with the @code{x} command.
4625It examines data in memory at a specified address and prints it in a
4626specified format. @xref{Memory, ,Examining memory}.
4627
7a292a7a 4628If you are interested in information about types, or about how the
d4f3574e
SS
4629fields of a struct or a class are declared, use the @code{ptype @var{exp}}
4630command rather than @code{print}. @xref{Symbols, ,Examining the Symbol
7a292a7a 4631Table}.
c906108c
SS
4632
4633@menu
4634* Expressions:: Expressions
4635* Variables:: Program variables
4636* Arrays:: Artificial arrays
4637* Output Formats:: Output formats
4638* Memory:: Examining memory
4639* Auto Display:: Automatic display
4640* Print Settings:: Print settings
4641* Value History:: Value history
4642* Convenience Vars:: Convenience variables
4643* Registers:: Registers
c906108c 4644* Floating Point Hardware:: Floating point hardware
53c69bd7 4645* Vector Unit:: Vector Unit
29e57380 4646* Memory Region Attributes:: Memory region attributes
16d9dec6 4647* Dump/Restore Files:: Copy between memory and a file
a0eb71c5
KB
4648* Character Sets:: Debugging programs that use a different
4649 character set than GDB does
c906108c
SS
4650@end menu
4651
6d2ebf8b 4652@node Expressions
c906108c
SS
4653@section Expressions
4654
4655@cindex expressions
4656@code{print} and many other @value{GDBN} commands accept an expression and
4657compute its value. Any kind of constant, variable or operator defined
4658by the programming language you are using is valid in an expression in
e2e0bcd1
JB
4659@value{GDBN}. This includes conditional expressions, function calls,
4660casts, and string constants. It also includes preprocessor macros, if
4661you compiled your program to include this information; see
4662@ref{Compilation}.
c906108c 4663
d4f3574e
SS
4664@value{GDBN} supports array constants in expressions input by
4665the user. The syntax is @{@var{element}, @var{element}@dots{}@}. For example,
5d161b24 4666you can use the command @code{print @{1, 2, 3@}} to build up an array in
d4f3574e 4667memory that is @code{malloc}ed in the target program.
c906108c 4668
c906108c
SS
4669Because C is so widespread, most of the expressions shown in examples in
4670this manual are in C. @xref{Languages, , Using @value{GDBN} with Different
4671Languages}, for information on how to use expressions in other
4672languages.
4673
4674In this section, we discuss operators that you can use in @value{GDBN}
4675expressions regardless of your programming language.
4676
4677Casts are supported in all languages, not just in C, because it is so
4678useful to cast a number into a pointer in order to examine a structure
4679at that address in memory.
4680@c FIXME: casts supported---Mod2 true?
c906108c
SS
4681
4682@value{GDBN} supports these operators, in addition to those common
4683to programming languages:
4684
4685@table @code
4686@item @@
4687@samp{@@} is a binary operator for treating parts of memory as arrays.
4688@xref{Arrays, ,Artificial arrays}, for more information.
4689
4690@item ::
4691@samp{::} allows you to specify a variable in terms of the file or
4692function where it is defined. @xref{Variables, ,Program variables}.
4693
4694@cindex @{@var{type}@}
4695@cindex type casting memory
4696@cindex memory, viewing as typed object
4697@cindex casts, to view memory
4698@item @{@var{type}@} @var{addr}
4699Refers to an object of type @var{type} stored at address @var{addr} in
4700memory. @var{addr} may be any expression whose value is an integer or
4701pointer (but parentheses are required around binary operators, just as in
4702a cast). This construct is allowed regardless of what kind of data is
4703normally supposed to reside at @var{addr}.
4704@end table
4705
6d2ebf8b 4706@node Variables
c906108c
SS
4707@section Program variables
4708
4709The most common kind of expression to use is the name of a variable
4710in your program.
4711
4712Variables in expressions are understood in the selected stack frame
4713(@pxref{Selection, ,Selecting a frame}); they must be either:
4714
4715@itemize @bullet
4716@item
4717global (or file-static)
4718@end itemize
4719
5d161b24 4720@noindent or
c906108c
SS
4721
4722@itemize @bullet
4723@item
4724visible according to the scope rules of the
4725programming language from the point of execution in that frame
5d161b24 4726@end itemize
c906108c
SS
4727
4728@noindent This means that in the function
4729
474c8240 4730@smallexample
c906108c
SS
4731foo (a)
4732 int a;
4733@{
4734 bar (a);
4735 @{
4736 int b = test ();
4737 bar (b);
4738 @}
4739@}
474c8240 4740@end smallexample
c906108c
SS
4741
4742@noindent
4743you can examine and use the variable @code{a} whenever your program is
4744executing within the function @code{foo}, but you can only use or
4745examine the variable @code{b} while your program is executing inside
4746the block where @code{b} is declared.
4747
4748@cindex variable name conflict
4749There is an exception: you can refer to a variable or function whose
4750scope is a single source file even if the current execution point is not
4751in this file. But it is possible to have more than one such variable or
4752function with the same name (in different source files). If that
4753happens, referring to that name has unpredictable effects. If you wish,
4754you can specify a static variable in a particular function or file,
4755using the colon-colon notation:
4756
d4f3574e 4757@cindex colon-colon, context for variables/functions
c906108c
SS
4758@iftex
4759@c info cannot cope with a :: index entry, but why deprive hard copy readers?
41afff9a 4760@cindex @code{::}, context for variables/functions
c906108c 4761@end iftex
474c8240 4762@smallexample
c906108c
SS
4763@var{file}::@var{variable}
4764@var{function}::@var{variable}
474c8240 4765@end smallexample
c906108c
SS
4766
4767@noindent
4768Here @var{file} or @var{function} is the name of the context for the
4769static @var{variable}. In the case of file names, you can use quotes to
4770make sure @value{GDBN} parses the file name as a single word---for example,
4771to print a global value of @code{x} defined in @file{f2.c}:
4772
474c8240 4773@smallexample
c906108c 4774(@value{GDBP}) p 'f2.c'::x
474c8240 4775@end smallexample
c906108c 4776
b37052ae 4777@cindex C@t{++} scope resolution
c906108c 4778This use of @samp{::} is very rarely in conflict with the very similar
b37052ae 4779use of the same notation in C@t{++}. @value{GDBN} also supports use of the C@t{++}
c906108c
SS
4780scope resolution operator in @value{GDBN} expressions.
4781@c FIXME: Um, so what happens in one of those rare cases where it's in
4782@c conflict?? --mew
c906108c
SS
4783
4784@cindex wrong values
4785@cindex variable values, wrong
4786@quotation
4787@emph{Warning:} Occasionally, a local variable may appear to have the
4788wrong value at certain points in a function---just after entry to a new
4789scope, and just before exit.
4790@end quotation
4791You may see this problem when you are stepping by machine instructions.
4792This is because, on most machines, it takes more than one instruction to
4793set up a stack frame (including local variable definitions); if you are
4794stepping by machine instructions, variables may appear to have the wrong
4795values until the stack frame is completely built. On exit, it usually
4796also takes more than one machine instruction to destroy a stack frame;
4797after you begin stepping through that group of instructions, local
4798variable definitions may be gone.
4799
4800This may also happen when the compiler does significant optimizations.
4801To be sure of always seeing accurate values, turn off all optimization
4802when compiling.
4803
d4f3574e
SS
4804@cindex ``No symbol "foo" in current context''
4805Another possible effect of compiler optimizations is to optimize
4806unused variables out of existence, or assign variables to registers (as
4807opposed to memory addresses). Depending on the support for such cases
4808offered by the debug info format used by the compiler, @value{GDBN}
4809might not be able to display values for such local variables. If that
4810happens, @value{GDBN} will print a message like this:
4811
474c8240 4812@smallexample
d4f3574e 4813No symbol "foo" in current context.
474c8240 4814@end smallexample
d4f3574e
SS
4815
4816To solve such problems, either recompile without optimizations, or use a
4817different debug info format, if the compiler supports several such
0179ffac
DC
4818formats. For example, @value{NGCC}, the @sc{gnu} C/C@t{++} compiler
4819usually supports the @option{-gstabs+} option. @option{-gstabs+}
4820produces debug info in a format that is superior to formats such as
4821COFF. You may be able to use DWARF 2 (@option{-gdwarf-2}), which is also
4822an effective form for debug info. @xref{Debugging Options,,Options
4823for Debugging Your Program or @sc{gnu} CC, gcc.info, Using @sc{gnu} CC}.
d4f3574e
SS
4824
4825
6d2ebf8b 4826@node Arrays
c906108c
SS
4827@section Artificial arrays
4828
4829@cindex artificial array
41afff9a 4830@kindex @@@r{, referencing memory as an array}
c906108c
SS
4831It is often useful to print out several successive objects of the
4832same type in memory; a section of an array, or an array of
4833dynamically determined size for which only a pointer exists in the
4834program.
4835
4836You can do this by referring to a contiguous span of memory as an
4837@dfn{artificial array}, using the binary operator @samp{@@}. The left
4838operand of @samp{@@} should be the first element of the desired array
4839and be an individual object. The right operand should be the desired length
4840of the array. The result is an array value whose elements are all of
4841the type of the left argument. The first element is actually the left
4842argument; the second element comes from bytes of memory immediately
4843following those that hold the first element, and so on. Here is an
4844example. If a program says
4845
474c8240 4846@smallexample
c906108c 4847int *array = (int *) malloc (len * sizeof (int));
474c8240 4848@end smallexample
c906108c
SS
4849
4850@noindent
4851you can print the contents of @code{array} with
4852
474c8240 4853@smallexample
c906108c 4854p *array@@len
474c8240 4855@end smallexample
c906108c
SS
4856
4857The left operand of @samp{@@} must reside in memory. Array values made
4858with @samp{@@} in this way behave just like other arrays in terms of
4859subscripting, and are coerced to pointers when used in expressions.
4860Artificial arrays most often appear in expressions via the value history
4861(@pxref{Value History, ,Value history}), after printing one out.
4862
4863Another way to create an artificial array is to use a cast.
4864This re-interprets a value as if it were an array.
4865The value need not be in memory:
474c8240 4866@smallexample
c906108c
SS
4867(@value{GDBP}) p/x (short[2])0x12345678
4868$1 = @{0x1234, 0x5678@}
474c8240 4869@end smallexample
c906108c
SS
4870
4871As a convenience, if you leave the array length out (as in
c3f6f71d 4872@samp{(@var{type}[])@var{value}}) @value{GDBN} calculates the size to fill
c906108c 4873the value (as @samp{sizeof(@var{value})/sizeof(@var{type})}:
474c8240 4874@smallexample
c906108c
SS
4875(@value{GDBP}) p/x (short[])0x12345678
4876$2 = @{0x1234, 0x5678@}
474c8240 4877@end smallexample
c906108c
SS
4878
4879Sometimes the artificial array mechanism is not quite enough; in
4880moderately complex data structures, the elements of interest may not
4881actually be adjacent---for example, if you are interested in the values
4882of pointers in an array. One useful work-around in this situation is
4883to use a convenience variable (@pxref{Convenience Vars, ,Convenience
4884variables}) as a counter in an expression that prints the first
4885interesting value, and then repeat that expression via @key{RET}. For
4886instance, suppose you have an array @code{dtab} of pointers to
4887structures, and you are interested in the values of a field @code{fv}
4888in each structure. Here is an example of what you might type:
4889
474c8240 4890@smallexample
c906108c
SS
4891set $i = 0
4892p dtab[$i++]->fv
4893@key{RET}
4894@key{RET}
4895@dots{}
474c8240 4896@end smallexample
c906108c 4897
6d2ebf8b 4898@node Output Formats
c906108c
SS
4899@section Output formats
4900
4901@cindex formatted output
4902@cindex output formats
4903By default, @value{GDBN} prints a value according to its data type. Sometimes
4904this is not what you want. For example, you might want to print a number
4905in hex, or a pointer in decimal. Or you might want to view data in memory
4906at a certain address as a character string or as an instruction. To do
4907these things, specify an @dfn{output format} when you print a value.
4908
4909The simplest use of output formats is to say how to print a value
4910already computed. This is done by starting the arguments of the
4911@code{print} command with a slash and a format letter. The format
4912letters supported are:
4913
4914@table @code
4915@item x
4916Regard the bits of the value as an integer, and print the integer in
4917hexadecimal.
4918
4919@item d
4920Print as integer in signed decimal.
4921
4922@item u
4923Print as integer in unsigned decimal.
4924
4925@item o
4926Print as integer in octal.
4927
4928@item t
4929Print as integer in binary. The letter @samp{t} stands for ``two''.
4930@footnote{@samp{b} cannot be used because these format letters are also
4931used with the @code{x} command, where @samp{b} stands for ``byte'';
d4f3574e 4932see @ref{Memory,,Examining memory}.}
c906108c
SS
4933
4934@item a
4935@cindex unknown address, locating
3d67e040 4936@cindex locate address
c906108c
SS
4937Print as an address, both absolute in hexadecimal and as an offset from
4938the nearest preceding symbol. You can use this format used to discover
4939where (in what function) an unknown address is located:
4940
474c8240 4941@smallexample
c906108c
SS
4942(@value{GDBP}) p/a 0x54320
4943$3 = 0x54320 <_initialize_vx+396>
474c8240 4944@end smallexample
c906108c 4945
3d67e040
EZ
4946@noindent
4947The command @code{info symbol 0x54320} yields similar results.
4948@xref{Symbols, info symbol}.
4949
c906108c
SS
4950@item c
4951Regard as an integer and print it as a character constant.
4952
4953@item f
4954Regard the bits of the value as a floating point number and print
4955using typical floating point syntax.
4956@end table
4957
4958For example, to print the program counter in hex (@pxref{Registers}), type
4959
474c8240 4960@smallexample
c906108c 4961p/x $pc
474c8240 4962@end smallexample
c906108c
SS
4963
4964@noindent
4965Note that no space is required before the slash; this is because command
4966names in @value{GDBN} cannot contain a slash.
4967
4968To reprint the last value in the value history with a different format,
4969you can use the @code{print} command with just a format and no
4970expression. For example, @samp{p/x} reprints the last value in hex.
4971
6d2ebf8b 4972@node Memory
c906108c
SS
4973@section Examining memory
4974
4975You can use the command @code{x} (for ``examine'') to examine memory in
4976any of several formats, independently of your program's data types.
4977
4978@cindex examining memory
4979@table @code
41afff9a 4980@kindex x @r{(examine memory)}
c906108c
SS
4981@item x/@var{nfu} @var{addr}
4982@itemx x @var{addr}
4983@itemx x
4984Use the @code{x} command to examine memory.
4985@end table
4986
4987@var{n}, @var{f}, and @var{u} are all optional parameters that specify how
4988much memory to display and how to format it; @var{addr} is an
4989expression giving the address where you want to start displaying memory.
4990If you use defaults for @var{nfu}, you need not type the slash @samp{/}.
4991Several commands set convenient defaults for @var{addr}.
4992
4993@table @r
4994@item @var{n}, the repeat count
4995The repeat count is a decimal integer; the default is 1. It specifies
4996how much memory (counting by units @var{u}) to display.
4997@c This really is **decimal**; unaffected by 'set radix' as of GDB
4998@c 4.1.2.
4999
5000@item @var{f}, the display format
5001The display format is one of the formats used by @code{print},
5002@samp{s} (null-terminated string), or @samp{i} (machine instruction).
5003The default is @samp{x} (hexadecimal) initially.
5004The default changes each time you use either @code{x} or @code{print}.
5005
5006@item @var{u}, the unit size
5007The unit size is any of
5008
5009@table @code
5010@item b
5011Bytes.
5012@item h
5013Halfwords (two bytes).
5014@item w
5015Words (four bytes). This is the initial default.
5016@item g
5017Giant words (eight bytes).
5018@end table
5019
5020Each time you specify a unit size with @code{x}, that size becomes the
5021default unit the next time you use @code{x}. (For the @samp{s} and
5022@samp{i} formats, the unit size is ignored and is normally not written.)
5023
5024@item @var{addr}, starting display address
5025@var{addr} is the address where you want @value{GDBN} to begin displaying
5026memory. The expression need not have a pointer value (though it may);
5027it is always interpreted as an integer address of a byte of memory.
5028@xref{Expressions, ,Expressions}, for more information on expressions. The default for
5029@var{addr} is usually just after the last address examined---but several
5030other commands also set the default address: @code{info breakpoints} (to
5031the address of the last breakpoint listed), @code{info line} (to the
5032starting address of a line), and @code{print} (if you use it to display
5033a value from memory).
5034@end table
5035
5036For example, @samp{x/3uh 0x54320} is a request to display three halfwords
5037(@code{h}) of memory, formatted as unsigned decimal integers (@samp{u}),
5038starting at address @code{0x54320}. @samp{x/4xw $sp} prints the four
5039words (@samp{w}) of memory above the stack pointer (here, @samp{$sp};
d4f3574e 5040@pxref{Registers, ,Registers}) in hexadecimal (@samp{x}).
c906108c
SS
5041
5042Since the letters indicating unit sizes are all distinct from the
5043letters specifying output formats, you do not have to remember whether
5044unit size or format comes first; either order works. The output
5045specifications @samp{4xw} and @samp{4wx} mean exactly the same thing.
5046(However, the count @var{n} must come first; @samp{wx4} does not work.)
5047
5048Even though the unit size @var{u} is ignored for the formats @samp{s}
5049and @samp{i}, you might still want to use a count @var{n}; for example,
5050@samp{3i} specifies that you want to see three machine instructions,
5051including any operands. The command @code{disassemble} gives an
d4f3574e 5052alternative way of inspecting machine instructions; see @ref{Machine
c906108c
SS
5053Code,,Source and machine code}.
5054
5055All the defaults for the arguments to @code{x} are designed to make it
5056easy to continue scanning memory with minimal specifications each time
5057you use @code{x}. For example, after you have inspected three machine
5058instructions with @samp{x/3i @var{addr}}, you can inspect the next seven
5059with just @samp{x/7}. If you use @key{RET} to repeat the @code{x} command,
5060the repeat count @var{n} is used again; the other arguments default as
5061for successive uses of @code{x}.
5062
5063@cindex @code{$_}, @code{$__}, and value history
5064The addresses and contents printed by the @code{x} command are not saved
5065in the value history because there is often too much of them and they
5066would get in the way. Instead, @value{GDBN} makes these values available for
5067subsequent use in expressions as values of the convenience variables
5068@code{$_} and @code{$__}. After an @code{x} command, the last address
5069examined is available for use in expressions in the convenience variable
5070@code{$_}. The contents of that address, as examined, are available in
5071the convenience variable @code{$__}.
5072
5073If the @code{x} command has a repeat count, the address and contents saved
5074are from the last memory unit printed; this is not the same as the last
5075address printed if several units were printed on the last line of output.
5076
6d2ebf8b 5077@node Auto Display
c906108c
SS
5078@section Automatic display
5079@cindex automatic display
5080@cindex display of expressions
5081
5082If you find that you want to print the value of an expression frequently
5083(to see how it changes), you might want to add it to the @dfn{automatic
5084display list} so that @value{GDBN} prints its value each time your program stops.
5085Each expression added to the list is given a number to identify it;
5086to remove an expression from the list, you specify that number.
5087The automatic display looks like this:
5088
474c8240 5089@smallexample
c906108c
SS
50902: foo = 38
50913: bar[5] = (struct hack *) 0x3804
474c8240 5092@end smallexample
c906108c
SS
5093
5094@noindent
5095This display shows item numbers, expressions and their current values. As with
5096displays you request manually using @code{x} or @code{print}, you can
5097specify the output format you prefer; in fact, @code{display} decides
5098whether to use @code{print} or @code{x} depending on how elaborate your
5099format specification is---it uses @code{x} if you specify a unit size,
5100or one of the two formats (@samp{i} and @samp{s}) that are only
5101supported by @code{x}; otherwise it uses @code{print}.
5102
5103@table @code
5104@kindex display
d4f3574e
SS
5105@item display @var{expr}
5106Add the expression @var{expr} to the list of expressions to display
c906108c
SS
5107each time your program stops. @xref{Expressions, ,Expressions}.
5108
5109@code{display} does not repeat if you press @key{RET} again after using it.
5110
d4f3574e 5111@item display/@var{fmt} @var{expr}
c906108c 5112For @var{fmt} specifying only a display format and not a size or
d4f3574e 5113count, add the expression @var{expr} to the auto-display list but
c906108c
SS
5114arrange to display it each time in the specified format @var{fmt}.
5115@xref{Output Formats,,Output formats}.
5116
5117@item display/@var{fmt} @var{addr}
5118For @var{fmt} @samp{i} or @samp{s}, or including a unit-size or a
5119number of units, add the expression @var{addr} as a memory address to
5120be examined each time your program stops. Examining means in effect
5121doing @samp{x/@var{fmt} @var{addr}}. @xref{Memory, ,Examining memory}.
5122@end table
5123
5124For example, @samp{display/i $pc} can be helpful, to see the machine
5125instruction about to be executed each time execution stops (@samp{$pc}
d4f3574e 5126is a common name for the program counter; @pxref{Registers, ,Registers}).
c906108c
SS
5127
5128@table @code
5129@kindex delete display
5130@kindex undisplay
5131@item undisplay @var{dnums}@dots{}
5132@itemx delete display @var{dnums}@dots{}
5133Remove item numbers @var{dnums} from the list of expressions to display.
5134
5135@code{undisplay} does not repeat if you press @key{RET} after using it.
5136(Otherwise you would just get the error @samp{No display number @dots{}}.)
5137
5138@kindex disable display
5139@item disable display @var{dnums}@dots{}
5140Disable the display of item numbers @var{dnums}. A disabled display
5141item is not printed automatically, but is not forgotten. It may be
5142enabled again later.
5143
5144@kindex enable display
5145@item enable display @var{dnums}@dots{}
5146Enable display of item numbers @var{dnums}. It becomes effective once
5147again in auto display of its expression, until you specify otherwise.
5148
5149@item display
5150Display the current values of the expressions on the list, just as is
5151done when your program stops.
5152
5153@kindex info display
5154@item info display
5155Print the list of expressions previously set up to display
5156automatically, each one with its item number, but without showing the
5157values. This includes disabled expressions, which are marked as such.
5158It also includes expressions which would not be displayed right now
5159because they refer to automatic variables not currently available.
5160@end table
5161
5162If a display expression refers to local variables, then it does not make
5163sense outside the lexical context for which it was set up. Such an
5164expression is disabled when execution enters a context where one of its
5165variables is not defined. For example, if you give the command
5166@code{display last_char} while inside a function with an argument
5167@code{last_char}, @value{GDBN} displays this argument while your program
5168continues to stop inside that function. When it stops elsewhere---where
5169there is no variable @code{last_char}---the display is disabled
5170automatically. The next time your program stops where @code{last_char}
5171is meaningful, you can enable the display expression once again.
5172
6d2ebf8b 5173@node Print Settings
c906108c
SS
5174@section Print settings
5175
5176@cindex format options
5177@cindex print settings
5178@value{GDBN} provides the following ways to control how arrays, structures,
5179and symbols are printed.
5180
5181@noindent
5182These settings are useful for debugging programs in any language:
5183
5184@table @code
5185@kindex set print address
5186@item set print address
5187@itemx set print address on
5188@value{GDBN} prints memory addresses showing the location of stack
5189traces, structure values, pointer values, breakpoints, and so forth,
5190even when it also displays the contents of those addresses. The default
5191is @code{on}. For example, this is what a stack frame display looks like with
5192@code{set print address on}:
5193
5194@smallexample
5195@group
5196(@value{GDBP}) f
5197#0 set_quotes (lq=0x34c78 "<<", rq=0x34c88 ">>")
5198 at input.c:530
5199530 if (lquote != def_lquote)
5200@end group
5201@end smallexample
5202
5203@item set print address off
5204Do not print addresses when displaying their contents. For example,
5205this is the same stack frame displayed with @code{set print address off}:
5206
5207@smallexample
5208@group
5209(@value{GDBP}) set print addr off
5210(@value{GDBP}) f
5211#0 set_quotes (lq="<<", rq=">>") at input.c:530
5212530 if (lquote != def_lquote)
5213@end group
5214@end smallexample
5215
5216You can use @samp{set print address off} to eliminate all machine
5217dependent displays from the @value{GDBN} interface. For example, with
5218@code{print address off}, you should get the same text for backtraces on
5219all machines---whether or not they involve pointer arguments.
5220
5221@kindex show print address
5222@item show print address
5223Show whether or not addresses are to be printed.
5224@end table
5225
5226When @value{GDBN} prints a symbolic address, it normally prints the
5227closest earlier symbol plus an offset. If that symbol does not uniquely
5228identify the address (for example, it is a name whose scope is a single
5229source file), you may need to clarify. One way to do this is with
5230@code{info line}, for example @samp{info line *0x4537}. Alternately,
5231you can set @value{GDBN} to print the source file and line number when
5232it prints a symbolic address:
5233
5234@table @code
5235@kindex set print symbol-filename
5236@item set print symbol-filename on
5237Tell @value{GDBN} to print the source file name and line number of a
5238symbol in the symbolic form of an address.
5239
5240@item set print symbol-filename off
5241Do not print source file name and line number of a symbol. This is the
5242default.
5243
5244@kindex show print symbol-filename
5245@item show print symbol-filename
5246Show whether or not @value{GDBN} will print the source file name and
5247line number of a symbol in the symbolic form of an address.
5248@end table
5249
5250Another situation where it is helpful to show symbol filenames and line
5251numbers is when disassembling code; @value{GDBN} shows you the line
5252number and source file that corresponds to each instruction.
5253
5254Also, you may wish to see the symbolic form only if the address being
5255printed is reasonably close to the closest earlier symbol:
5256
5257@table @code
5258@kindex set print max-symbolic-offset
5259@item set print max-symbolic-offset @var{max-offset}
5260Tell @value{GDBN} to only display the symbolic form of an address if the
5261offset between the closest earlier symbol and the address is less than
5d161b24 5262@var{max-offset}. The default is 0, which tells @value{GDBN}
c906108c
SS
5263to always print the symbolic form of an address if any symbol precedes it.
5264
5265@kindex show print max-symbolic-offset
5266@item show print max-symbolic-offset
5267Ask how large the maximum offset is that @value{GDBN} prints in a
5268symbolic address.
5269@end table
5270
5271@cindex wild pointer, interpreting
5272@cindex pointer, finding referent
5273If you have a pointer and you are not sure where it points, try
5274@samp{set print symbol-filename on}. Then you can determine the name
5275and source file location of the variable where it points, using
5276@samp{p/a @var{pointer}}. This interprets the address in symbolic form.
5277For example, here @value{GDBN} shows that a variable @code{ptt} points
5278at another variable @code{t}, defined in @file{hi2.c}:
5279
474c8240 5280@smallexample
c906108c
SS
5281(@value{GDBP}) set print symbol-filename on
5282(@value{GDBP}) p/a ptt
5283$4 = 0xe008 <t in hi2.c>
474c8240 5284@end smallexample
c906108c
SS
5285
5286@quotation
5287@emph{Warning:} For pointers that point to a local variable, @samp{p/a}
5288does not show the symbol name and filename of the referent, even with
5289the appropriate @code{set print} options turned on.
5290@end quotation
5291
5292Other settings control how different kinds of objects are printed:
5293
5294@table @code
5295@kindex set print array
5296@item set print array
5297@itemx set print array on
5298Pretty print arrays. This format is more convenient to read,
5299but uses more space. The default is off.
5300
5301@item set print array off
5302Return to compressed format for arrays.
5303
5304@kindex show print array
5305@item show print array
5306Show whether compressed or pretty format is selected for displaying
5307arrays.
5308
5309@kindex set print elements
5310@item set print elements @var{number-of-elements}
5311Set a limit on how many elements of an array @value{GDBN} will print.
5312If @value{GDBN} is printing a large array, it stops printing after it has
5313printed the number of elements set by the @code{set print elements} command.
5314This limit also applies to the display of strings.
d4f3574e 5315When @value{GDBN} starts, this limit is set to 200.
c906108c
SS
5316Setting @var{number-of-elements} to zero means that the printing is unlimited.
5317
5318@kindex show print elements
5319@item show print elements
5320Display the number of elements of a large array that @value{GDBN} will print.
5321If the number is 0, then the printing is unlimited.
5322
5323@kindex set print null-stop
5324@item set print null-stop
5325Cause @value{GDBN} to stop printing the characters of an array when the first
d4f3574e 5326@sc{null} is encountered. This is useful when large arrays actually
c906108c 5327contain only short strings.
d4f3574e 5328The default is off.
c906108c
SS
5329
5330@kindex set print pretty
5331@item set print pretty on
5d161b24 5332Cause @value{GDBN} to print structures in an indented format with one member
c906108c
SS
5333per line, like this:
5334
5335@smallexample
5336@group
5337$1 = @{
5338 next = 0x0,
5339 flags = @{
5340 sweet = 1,
5341 sour = 1
5342 @},
5343 meat = 0x54 "Pork"
5344@}
5345@end group
5346@end smallexample
5347
5348@item set print pretty off
5349Cause @value{GDBN} to print structures in a compact format, like this:
5350
5351@smallexample
5352@group
5353$1 = @{next = 0x0, flags = @{sweet = 1, sour = 1@}, \
5354meat = 0x54 "Pork"@}
5355@end group
5356@end smallexample
5357
5358@noindent
5359This is the default format.
5360
5361@kindex show print pretty
5362@item show print pretty
5363Show which format @value{GDBN} is using to print structures.
5364
5365@kindex set print sevenbit-strings
5366@item set print sevenbit-strings on
5367Print using only seven-bit characters; if this option is set,
5368@value{GDBN} displays any eight-bit characters (in strings or
5369character values) using the notation @code{\}@var{nnn}. This setting is
5370best if you are working in English (@sc{ascii}) and you use the
5371high-order bit of characters as a marker or ``meta'' bit.
5372
5373@item set print sevenbit-strings off
5374Print full eight-bit characters. This allows the use of more
5375international character sets, and is the default.
5376
5377@kindex show print sevenbit-strings
5378@item show print sevenbit-strings
5379Show whether or not @value{GDBN} is printing only seven-bit characters.
5380
5381@kindex set print union
5382@item set print union on
5d161b24 5383Tell @value{GDBN} to print unions which are contained in structures. This
c906108c
SS
5384is the default setting.
5385
5386@item set print union off
5387Tell @value{GDBN} not to print unions which are contained in structures.
5388
5389@kindex show print union
5390@item show print union
5391Ask @value{GDBN} whether or not it will print unions which are contained in
5392structures.
5393
5394For example, given the declarations
5395
5396@smallexample
5397typedef enum @{Tree, Bug@} Species;
5398typedef enum @{Big_tree, Acorn, Seedling@} Tree_forms;
5d161b24 5399typedef enum @{Caterpillar, Cocoon, Butterfly@}
c906108c
SS
5400 Bug_forms;
5401
5402struct thing @{
5403 Species it;
5404 union @{
5405 Tree_forms tree;
5406 Bug_forms bug;
5407 @} form;
5408@};
5409
5410struct thing foo = @{Tree, @{Acorn@}@};
5411@end smallexample
5412
5413@noindent
5414with @code{set print union on} in effect @samp{p foo} would print
5415
5416@smallexample
5417$1 = @{it = Tree, form = @{tree = Acorn, bug = Cocoon@}@}
5418@end smallexample
5419
5420@noindent
5421and with @code{set print union off} in effect it would print
5422
5423@smallexample
5424$1 = @{it = Tree, form = @{...@}@}
5425@end smallexample
5426@end table
5427
c906108c
SS
5428@need 1000
5429@noindent
b37052ae 5430These settings are of interest when debugging C@t{++} programs:
c906108c
SS
5431
5432@table @code
5433@cindex demangling
5434@kindex set print demangle
5435@item set print demangle
5436@itemx set print demangle on
b37052ae 5437Print C@t{++} names in their source form rather than in the encoded
c906108c 5438(``mangled'') form passed to the assembler and linker for type-safe
d4f3574e 5439linkage. The default is on.
c906108c
SS
5440
5441@kindex show print demangle
5442@item show print demangle
b37052ae 5443Show whether C@t{++} names are printed in mangled or demangled form.
c906108c
SS
5444
5445@kindex set print asm-demangle
5446@item set print asm-demangle
5447@itemx set print asm-demangle on
b37052ae 5448Print C@t{++} names in their source form rather than their mangled form, even
c906108c
SS
5449in assembler code printouts such as instruction disassemblies.
5450The default is off.
5451
5452@kindex show print asm-demangle
5453@item show print asm-demangle
b37052ae 5454Show whether C@t{++} names in assembly listings are printed in mangled
c906108c
SS
5455or demangled form.
5456
5457@kindex set demangle-style
b37052ae
EZ
5458@cindex C@t{++} symbol decoding style
5459@cindex symbol decoding style, C@t{++}
c906108c
SS
5460@item set demangle-style @var{style}
5461Choose among several encoding schemes used by different compilers to
b37052ae 5462represent C@t{++} names. The choices for @var{style} are currently:
c906108c
SS
5463
5464@table @code
5465@item auto
5466Allow @value{GDBN} to choose a decoding style by inspecting your program.
5467
5468@item gnu
b37052ae 5469Decode based on the @sc{gnu} C@t{++} compiler (@code{g++}) encoding algorithm.
c906108c 5470This is the default.
c906108c
SS
5471
5472@item hp
b37052ae 5473Decode based on the HP ANSI C@t{++} (@code{aCC}) encoding algorithm.
c906108c
SS
5474
5475@item lucid
b37052ae 5476Decode based on the Lucid C@t{++} compiler (@code{lcc}) encoding algorithm.
c906108c
SS
5477
5478@item arm
b37052ae 5479Decode using the algorithm in the @cite{C@t{++} Annotated Reference Manual}.
c906108c
SS
5480@strong{Warning:} this setting alone is not sufficient to allow
5481debugging @code{cfront}-generated executables. @value{GDBN} would
5482require further enhancement to permit that.
5483
5484@end table
5485If you omit @var{style}, you will see a list of possible formats.
5486
5487@kindex show demangle-style
5488@item show demangle-style
b37052ae 5489Display the encoding style currently in use for decoding C@t{++} symbols.
c906108c
SS
5490
5491@kindex set print object
5492@item set print object
5493@itemx set print object on
5494When displaying a pointer to an object, identify the @emph{actual}
5495(derived) type of the object rather than the @emph{declared} type, using
5496the virtual function table.
5497
5498@item set print object off
5499Display only the declared type of objects, without reference to the
5500virtual function table. This is the default setting.
5501
5502@kindex show print object
5503@item show print object
5504Show whether actual, or declared, object types are displayed.
5505
5506@kindex set print static-members
5507@item set print static-members
5508@itemx set print static-members on
b37052ae 5509Print static members when displaying a C@t{++} object. The default is on.
c906108c
SS
5510
5511@item set print static-members off
b37052ae 5512Do not print static members when displaying a C@t{++} object.
c906108c
SS
5513
5514@kindex show print static-members
5515@item show print static-members
b37052ae 5516Show whether C@t{++} static members are printed, or not.
c906108c
SS
5517
5518@c These don't work with HP ANSI C++ yet.
5519@kindex set print vtbl
5520@item set print vtbl
5521@itemx set print vtbl on
b37052ae 5522Pretty print C@t{++} virtual function tables. The default is off.
c906108c 5523(The @code{vtbl} commands do not work on programs compiled with the HP
b37052ae 5524ANSI C@t{++} compiler (@code{aCC}).)
c906108c
SS
5525
5526@item set print vtbl off
b37052ae 5527Do not pretty print C@t{++} virtual function tables.
c906108c
SS
5528
5529@kindex show print vtbl
5530@item show print vtbl
b37052ae 5531Show whether C@t{++} virtual function tables are pretty printed, or not.
c906108c 5532@end table
c906108c 5533
6d2ebf8b 5534@node Value History
c906108c
SS
5535@section Value history
5536
5537@cindex value history
5d161b24
DB
5538Values printed by the @code{print} command are saved in the @value{GDBN}
5539@dfn{value history}. This allows you to refer to them in other expressions.
5540Values are kept until the symbol table is re-read or discarded
5541(for example with the @code{file} or @code{symbol-file} commands).
5542When the symbol table changes, the value history is discarded,
5543since the values may contain pointers back to the types defined in the
c906108c
SS
5544symbol table.
5545
5546@cindex @code{$}
5547@cindex @code{$$}
5548@cindex history number
5549The values printed are given @dfn{history numbers} by which you can
5550refer to them. These are successive integers starting with one.
5551@code{print} shows you the history number assigned to a value by
5552printing @samp{$@var{num} = } before the value; here @var{num} is the
5553history number.
5554
5555To refer to any previous value, use @samp{$} followed by the value's
5556history number. The way @code{print} labels its output is designed to
5557remind you of this. Just @code{$} refers to the most recent value in
5558the history, and @code{$$} refers to the value before that.
5559@code{$$@var{n}} refers to the @var{n}th value from the end; @code{$$2}
5560is the value just prior to @code{$$}, @code{$$1} is equivalent to
5561@code{$$}, and @code{$$0} is equivalent to @code{$}.
5562
5563For example, suppose you have just printed a pointer to a structure and
5564want to see the contents of the structure. It suffices to type
5565
474c8240 5566@smallexample
c906108c 5567p *$
474c8240 5568@end smallexample
c906108c
SS
5569
5570If you have a chain of structures where the component @code{next} points
5571to the next one, you can print the contents of the next one with this:
5572
474c8240 5573@smallexample
c906108c 5574p *$.next
474c8240 5575@end smallexample
c906108c
SS
5576
5577@noindent
5578You can print successive links in the chain by repeating this
5579command---which you can do by just typing @key{RET}.
5580
5581Note that the history records values, not expressions. If the value of
5582@code{x} is 4 and you type these commands:
5583
474c8240 5584@smallexample
c906108c
SS
5585print x
5586set x=5
474c8240 5587@end smallexample
c906108c
SS
5588
5589@noindent
5590then the value recorded in the value history by the @code{print} command
5591remains 4 even though the value of @code{x} has changed.
5592
5593@table @code
5594@kindex show values
5595@item show values
5596Print the last ten values in the value history, with their item numbers.
5597This is like @samp{p@ $$9} repeated ten times, except that @code{show
5598values} does not change the history.
5599
5600@item show values @var{n}
5601Print ten history values centered on history item number @var{n}.
5602
5603@item show values +
5604Print ten history values just after the values last printed. If no more
5605values are available, @code{show values +} produces no display.
5606@end table
5607
5608Pressing @key{RET} to repeat @code{show values @var{n}} has exactly the
5609same effect as @samp{show values +}.
5610
6d2ebf8b 5611@node Convenience Vars
c906108c
SS
5612@section Convenience variables
5613
5614@cindex convenience variables
5615@value{GDBN} provides @dfn{convenience variables} that you can use within
5616@value{GDBN} to hold on to a value and refer to it later. These variables
5617exist entirely within @value{GDBN}; they are not part of your program, and
5618setting a convenience variable has no direct effect on further execution
5619of your program. That is why you can use them freely.
5620
5621Convenience variables are prefixed with @samp{$}. Any name preceded by
5622@samp{$} can be used for a convenience variable, unless it is one of
d4f3574e 5623the predefined machine-specific register names (@pxref{Registers, ,Registers}).
c906108c
SS
5624(Value history references, in contrast, are @emph{numbers} preceded
5625by @samp{$}. @xref{Value History, ,Value history}.)
5626
5627You can save a value in a convenience variable with an assignment
5628expression, just as you would set a variable in your program.
5629For example:
5630
474c8240 5631@smallexample
c906108c 5632set $foo = *object_ptr
474c8240 5633@end smallexample
c906108c
SS
5634
5635@noindent
5636would save in @code{$foo} the value contained in the object pointed to by
5637@code{object_ptr}.
5638
5639Using a convenience variable for the first time creates it, but its
5640value is @code{void} until you assign a new value. You can alter the
5641value with another assignment at any time.
5642
5643Convenience variables have no fixed types. You can assign a convenience
5644variable any type of value, including structures and arrays, even if
5645that variable already has a value of a different type. The convenience
5646variable, when used as an expression, has the type of its current value.
5647
5648@table @code
5649@kindex show convenience
5650@item show convenience
5651Print a list of convenience variables used so far, and their values.
d4f3574e 5652Abbreviated @code{show conv}.
c906108c
SS
5653@end table
5654
5655One of the ways to use a convenience variable is as a counter to be
5656incremented or a pointer to be advanced. For example, to print
5657a field from successive elements of an array of structures:
5658
474c8240 5659@smallexample
c906108c
SS
5660set $i = 0
5661print bar[$i++]->contents
474c8240 5662@end smallexample
c906108c 5663
d4f3574e
SS
5664@noindent
5665Repeat that command by typing @key{RET}.
c906108c
SS
5666
5667Some convenience variables are created automatically by @value{GDBN} and given
5668values likely to be useful.
5669
5670@table @code
41afff9a 5671@vindex $_@r{, convenience variable}
c906108c
SS
5672@item $_
5673The variable @code{$_} is automatically set by the @code{x} command to
5674the last address examined (@pxref{Memory, ,Examining memory}). Other
5675commands which provide a default address for @code{x} to examine also
5676set @code{$_} to that address; these commands include @code{info line}
5677and @code{info breakpoint}. The type of @code{$_} is @code{void *}
5678except when set by the @code{x} command, in which case it is a pointer
5679to the type of @code{$__}.
5680
41afff9a 5681@vindex $__@r{, convenience variable}
c906108c
SS
5682@item $__
5683The variable @code{$__} is automatically set by the @code{x} command
5684to the value found in the last address examined. Its type is chosen
5685to match the format in which the data was printed.
5686
5687@item $_exitcode
41afff9a 5688@vindex $_exitcode@r{, convenience variable}
c906108c
SS
5689The variable @code{$_exitcode} is automatically set to the exit code when
5690the program being debugged terminates.
5691@end table
5692
53a5351d
JM
5693On HP-UX systems, if you refer to a function or variable name that
5694begins with a dollar sign, @value{GDBN} searches for a user or system
5695name first, before it searches for a convenience variable.
c906108c 5696
6d2ebf8b 5697@node Registers
c906108c
SS
5698@section Registers
5699
5700@cindex registers
5701You can refer to machine register contents, in expressions, as variables
5702with names starting with @samp{$}. The names of registers are different
5703for each machine; use @code{info registers} to see the names used on
5704your machine.
5705
5706@table @code
5707@kindex info registers
5708@item info registers
5709Print the names and values of all registers except floating-point
c85508ee 5710and vector registers (in the selected stack frame).
c906108c
SS
5711
5712@kindex info all-registers
5713@cindex floating point registers
5714@item info all-registers
5715Print the names and values of all registers, including floating-point
c85508ee 5716and vector registers (in the selected stack frame).
c906108c
SS
5717
5718@item info registers @var{regname} @dots{}
5719Print the @dfn{relativized} value of each specified register @var{regname}.
5d161b24
DB
5720As discussed in detail below, register values are normally relative to
5721the selected stack frame. @var{regname} may be any register name valid on
c906108c
SS
5722the machine you are using, with or without the initial @samp{$}.
5723@end table
5724
5725@value{GDBN} has four ``standard'' register names that are available (in
5726expressions) on most machines---whenever they do not conflict with an
5727architecture's canonical mnemonics for registers. The register names
5728@code{$pc} and @code{$sp} are used for the program counter register and
5729the stack pointer. @code{$fp} is used for a register that contains a
5730pointer to the current stack frame, and @code{$ps} is used for a
5731register that contains the processor status. For example,
5732you could print the program counter in hex with
5733
474c8240 5734@smallexample
c906108c 5735p/x $pc
474c8240 5736@end smallexample
c906108c
SS
5737
5738@noindent
5739or print the instruction to be executed next with
5740
474c8240 5741@smallexample
c906108c 5742x/i $pc
474c8240 5743@end smallexample
c906108c
SS
5744
5745@noindent
5746or add four to the stack pointer@footnote{This is a way of removing
5747one word from the stack, on machines where stacks grow downward in
5748memory (most machines, nowadays). This assumes that the innermost
5749stack frame is selected; setting @code{$sp} is not allowed when other
5750stack frames are selected. To pop entire frames off the stack,
5751regardless of machine architecture, use @code{return};
d4f3574e 5752see @ref{Returning, ,Returning from a function}.} with
c906108c 5753
474c8240 5754@smallexample
c906108c 5755set $sp += 4
474c8240 5756@end smallexample
c906108c
SS
5757
5758Whenever possible, these four standard register names are available on
5759your machine even though the machine has different canonical mnemonics,
5760so long as there is no conflict. The @code{info registers} command
5761shows the canonical names. For example, on the SPARC, @code{info
5762registers} displays the processor status register as @code{$psr} but you
d4f3574e
SS
5763can also refer to it as @code{$ps}; and on x86-based machines @code{$ps}
5764is an alias for the @sc{eflags} register.
c906108c
SS
5765
5766@value{GDBN} always considers the contents of an ordinary register as an
5767integer when the register is examined in this way. Some machines have
5768special registers which can hold nothing but floating point; these
5769registers are considered to have floating point values. There is no way
5770to refer to the contents of an ordinary register as floating point value
5771(although you can @emph{print} it as a floating point value with
5772@samp{print/f $@var{regname}}).
5773
5774Some registers have distinct ``raw'' and ``virtual'' data formats. This
5775means that the data format in which the register contents are saved by
5776the operating system is not the same one that your program normally
5777sees. For example, the registers of the 68881 floating point
5778coprocessor are always saved in ``extended'' (raw) format, but all C
5779programs expect to work with ``double'' (virtual) format. In such
5d161b24 5780cases, @value{GDBN} normally works with the virtual format only (the format
c906108c
SS
5781that makes sense for your program), but the @code{info registers} command
5782prints the data in both formats.
5783
5784Normally, register values are relative to the selected stack frame
5785(@pxref{Selection, ,Selecting a frame}). This means that you get the
5786value that the register would contain if all stack frames farther in
5787were exited and their saved registers restored. In order to see the
5788true contents of hardware registers, you must select the innermost
5789frame (with @samp{frame 0}).
5790
5791However, @value{GDBN} must deduce where registers are saved, from the machine
5792code generated by your compiler. If some registers are not saved, or if
5793@value{GDBN} is unable to locate the saved registers, the selected stack
5794frame makes no difference.
5795
6d2ebf8b 5796@node Floating Point Hardware
c906108c
SS
5797@section Floating point hardware
5798@cindex floating point
5799
5800Depending on the configuration, @value{GDBN} may be able to give
5801you more information about the status of the floating point hardware.
5802
5803@table @code
5804@kindex info float
5805@item info float
5806Display hardware-dependent information about the floating
5807point unit. The exact contents and layout vary depending on the
5808floating point chip. Currently, @samp{info float} is supported on
5809the ARM and x86 machines.
5810@end table
c906108c 5811
e76f1f2e
AC
5812@node Vector Unit
5813@section Vector Unit
5814@cindex vector unit
5815
5816Depending on the configuration, @value{GDBN} may be able to give you
5817more information about the status of the vector unit.
5818
5819@table @code
5820@kindex info vector
5821@item info vector
5822Display information about the vector unit. The exact contents and
5823layout vary depending on the hardware.
5824@end table
5825
29e57380 5826@node Memory Region Attributes
16d9dec6 5827@section Memory region attributes
29e57380
C
5828@cindex memory region attributes
5829
5830@dfn{Memory region attributes} allow you to describe special handling
5831required by regions of your target's memory. @value{GDBN} uses attributes
5832to determine whether to allow certain types of memory accesses; whether to
5833use specific width accesses; and whether to cache target memory.
5834
5835Defined memory regions can be individually enabled and disabled. When a
5836memory region is disabled, @value{GDBN} uses the default attributes when
5837accessing memory in that region. Similarly, if no memory regions have
5838been defined, @value{GDBN} uses the default attributes when accessing
5839all memory.
5840
5841When a memory region is defined, it is given a number to identify it;
5842to enable, disable, or remove a memory region, you specify that number.
5843
5844@table @code
5845@kindex mem
bfac230e
DH
5846@item mem @var{lower} @var{upper} @var{attributes}@dots{}
5847Define memory region bounded by @var{lower} and @var{upper} with
5848attributes @var{attributes}@dots{}. Note that @var{upper} == 0 is a
5849special case: it is treated as the the target's maximum memory address.
5850(0xffff on 16 bit targets, 0xffffffff on 32 bit targets, etc.)
29e57380
C
5851
5852@kindex delete mem
5853@item delete mem @var{nums}@dots{}
59649f2e 5854Remove memory regions @var{nums}@dots{}.
29e57380
C
5855
5856@kindex disable mem
5857@item disable mem @var{nums}@dots{}
59649f2e 5858Disable memory regions @var{nums}@dots{}.
29e57380
C
5859A disabled memory region is not forgotten.
5860It may be enabled again later.
5861
5862@kindex enable mem
5863@item enable mem @var{nums}@dots{}
59649f2e 5864Enable memory regions @var{nums}@dots{}.
29e57380
C
5865
5866@kindex info mem
5867@item info mem
5868Print a table of all defined memory regions, with the following columns
5869for each region.
5870
5871@table @emph
5872@item Memory Region Number
5873@item Enabled or Disabled.
5874Enabled memory regions are marked with @samp{y}.
5875Disabled memory regions are marked with @samp{n}.
5876
5877@item Lo Address
5878The address defining the inclusive lower bound of the memory region.
5879
5880@item Hi Address
5881The address defining the exclusive upper bound of the memory region.
5882
5883@item Attributes
5884The list of attributes set for this memory region.
5885@end table
5886@end table
5887
5888
5889@subsection Attributes
5890
5891@subsubsection Memory Access Mode
5892The access mode attributes set whether @value{GDBN} may make read or
5893write accesses to a memory region.
5894
5895While these attributes prevent @value{GDBN} from performing invalid
5896memory accesses, they do nothing to prevent the target system, I/O DMA,
5897etc. from accessing memory.
5898
5899@table @code
5900@item ro
5901Memory is read only.
5902@item wo
5903Memory is write only.
5904@item rw
6ca652b0 5905Memory is read/write. This is the default.
29e57380
C
5906@end table
5907
5908@subsubsection Memory Access Size
5909The acccess size attributes tells @value{GDBN} to use specific sized
5910accesses in the memory region. Often memory mapped device registers
5911require specific sized accesses. If no access size attribute is
5912specified, @value{GDBN} may use accesses of any size.
5913
5914@table @code
5915@item 8
5916Use 8 bit memory accesses.
5917@item 16
5918Use 16 bit memory accesses.
5919@item 32
5920Use 32 bit memory accesses.
5921@item 64
5922Use 64 bit memory accesses.
5923@end table
5924
5925@c @subsubsection Hardware/Software Breakpoints
5926@c The hardware/software breakpoint attributes set whether @value{GDBN}
5927@c will use hardware or software breakpoints for the internal breakpoints
5928@c used by the step, next, finish, until, etc. commands.
5929@c
5930@c @table @code
5931@c @item hwbreak
5932@c Always use hardware breakpoints
5933@c @item swbreak (default)
5934@c @end table
5935
5936@subsubsection Data Cache
5937The data cache attributes set whether @value{GDBN} will cache target
5938memory. While this generally improves performance by reducing debug
5939protocol overhead, it can lead to incorrect results because @value{GDBN}
5940does not know about volatile variables or memory mapped device
5941registers.
5942
5943@table @code
5944@item cache
5945Enable @value{GDBN} to cache target memory.
6ca652b0
EZ
5946@item nocache
5947Disable @value{GDBN} from caching target memory. This is the default.
29e57380
C
5948@end table
5949
5950@c @subsubsection Memory Write Verification
5951@c The memory write verification attributes set whether @value{GDBN}
5952@c will re-reads data after each write to verify the write was successful.
5953@c
5954@c @table @code
5955@c @item verify
5956@c @item noverify (default)
5957@c @end table
5958
16d9dec6
MS
5959@node Dump/Restore Files
5960@section Copy between memory and a file
5961@cindex dump/restore files
5962@cindex append data to a file
5963@cindex dump data to a file
5964@cindex restore data from a file
16d9dec6 5965
df5215a6
JB
5966You can use the commands @code{dump}, @code{append}, and
5967@code{restore} to copy data between target memory and a file. The
5968@code{dump} and @code{append} commands write data to a file, and the
5969@code{restore} command reads data from a file back into the inferior's
5970memory. Files may be in binary, Motorola S-record, Intel hex, or
5971Tektronix Hex format; however, @value{GDBN} can only append to binary
5972files.
5973
5974@table @code
5975
5976@kindex dump
5977@item dump @r{[}@var{format}@r{]} memory @var{filename} @var{start_addr} @var{end_addr}
5978@itemx dump @r{[}@var{format}@r{]} value @var{filename} @var{expr}
5979Dump the contents of memory from @var{start_addr} to @var{end_addr},
5980or the value of @var{expr}, to @var{filename} in the given format.
16d9dec6 5981
df5215a6 5982The @var{format} parameter may be any one of:
16d9dec6 5983@table @code
df5215a6
JB
5984@item binary
5985Raw binary form.
5986@item ihex
5987Intel hex format.
5988@item srec
5989Motorola S-record format.
5990@item tekhex
5991Tektronix Hex format.
5992@end table
5993
5994@value{GDBN} uses the same definitions of these formats as the
5995@sc{gnu} binary utilities, like @samp{objdump} and @samp{objcopy}. If
5996@var{format} is omitted, @value{GDBN} dumps the data in raw binary
5997form.
5998
5999@kindex append
6000@item append @r{[}binary@r{]} memory @var{filename} @var{start_addr} @var{end_addr}
6001@itemx append @r{[}binary@r{]} value @var{filename} @var{expr}
6002Append the contents of memory from @var{start_addr} to @var{end_addr},
6003or the value of @var{expr}, to @var{filename}, in raw binary form.
6004(@value{GDBN} can only append data to files in raw binary form.)
6005
6006@kindex restore
6007@item restore @var{filename} @r{[}binary@r{]} @var{bias} @var{start} @var{end}
6008Restore the contents of file @var{filename} into memory. The
6009@code{restore} command can automatically recognize any known @sc{bfd}
6010file format, except for raw binary. To restore a raw binary file you
6011must specify the optional keyword @code{binary} after the filename.
16d9dec6
MS
6012
6013If @var{bias} is non-zero, its value will be added to the addresses
6014contained in the file. Binary files always start at address zero, so
6015they will be restored at address @var{bias}. Other bfd files have
6016a built-in location; they will be restored at offset @var{bias}
6017from that location.
6018
6019If @var{start} and/or @var{end} are non-zero, then only data between
6020file offset @var{start} and file offset @var{end} will be restored.
6021These offsets are relative to the addresses in the file, before
6022the @var{bias} argument is applied.
6023
6024@end table
6025
a0eb71c5
KB
6026@node Character Sets
6027@section Character Sets
6028@cindex character sets
6029@cindex charset
6030@cindex translating between character sets
6031@cindex host character set
6032@cindex target character set
6033
6034If the program you are debugging uses a different character set to
6035represent characters and strings than the one @value{GDBN} uses itself,
6036@value{GDBN} can automatically translate between the character sets for
6037you. The character set @value{GDBN} uses we call the @dfn{host
6038character set}; the one the inferior program uses we call the
6039@dfn{target character set}.
6040
6041For example, if you are running @value{GDBN} on a @sc{gnu}/Linux system, which
6042uses the ISO Latin 1 character set, but you are using @value{GDBN}'s
6043remote protocol (@pxref{Remote,Remote Debugging}) to debug a program
6044running on an IBM mainframe, which uses the @sc{ebcdic} character set,
6045then the host character set is Latin-1, and the target character set is
6046@sc{ebcdic}. If you give @value{GDBN} the command @code{set
e33d66ec 6047target-charset EBCDIC-US}, then @value{GDBN} translates between
a0eb71c5
KB
6048@sc{ebcdic} and Latin 1 as you print character or string values, or use
6049character and string literals in expressions.
6050
6051@value{GDBN} has no way to automatically recognize which character set
6052the inferior program uses; you must tell it, using the @code{set
6053target-charset} command, described below.
6054
6055Here are the commands for controlling @value{GDBN}'s character set
6056support:
6057
6058@table @code
6059@item set target-charset @var{charset}
6060@kindex set target-charset
6061Set the current target character set to @var{charset}. We list the
e33d66ec
EZ
6062character set names @value{GDBN} recognizes below, but if you type
6063@code{set target-charset} followed by @key{TAB}@key{TAB}, @value{GDBN} will
6064list the target character sets it supports.
a0eb71c5
KB
6065@end table
6066
6067@table @code
6068@item set host-charset @var{charset}
6069@kindex set host-charset
6070Set the current host character set to @var{charset}.
6071
6072By default, @value{GDBN} uses a host character set appropriate to the
6073system it is running on; you can override that default using the
6074@code{set host-charset} command.
6075
6076@value{GDBN} can only use certain character sets as its host character
6077set. We list the character set names @value{GDBN} recognizes below, and
e33d66ec
EZ
6078indicate which can be host character sets, but if you type
6079@code{set target-charset} followed by @key{TAB}@key{TAB}, @value{GDBN} will
6080list the host character sets it supports.
a0eb71c5
KB
6081
6082@item set charset @var{charset}
6083@kindex set charset
e33d66ec
EZ
6084Set the current host and target character sets to @var{charset}. As
6085above, if you type @code{set charset} followed by @key{TAB}@key{TAB},
6086@value{GDBN} will list the name of the character sets that can be used
6087for both host and target.
6088
a0eb71c5
KB
6089
6090@item show charset
a0eb71c5 6091@kindex show charset
e33d66ec
EZ
6092Show the names of the current host and target charsets.
6093
6094@itemx show host-charset
a0eb71c5 6095@kindex show host-charset
e33d66ec
EZ
6096Show the name of the current host charset.
6097
6098@itemx show target-charset
a0eb71c5 6099@kindex show target-charset
e33d66ec 6100Show the name of the current target charset.
a0eb71c5
KB
6101
6102@end table
6103
6104@value{GDBN} currently includes support for the following character
6105sets:
6106
6107@table @code
6108
6109@item ASCII
6110@cindex ASCII character set
6111Seven-bit U.S. @sc{ascii}. @value{GDBN} can use this as its host
6112character set.
6113
6114@item ISO-8859-1
6115@cindex ISO 8859-1 character set
6116@cindex ISO Latin 1 character set
e33d66ec 6117The ISO Latin 1 character set. This extends @sc{ascii} with accented
a0eb71c5
KB
6118characters needed for French, German, and Spanish. @value{GDBN} can use
6119this as its host character set.
6120
6121@item EBCDIC-US
6122@itemx IBM1047
6123@cindex EBCDIC character set
6124@cindex IBM1047 character set
6125Variants of the @sc{ebcdic} character set, used on some of IBM's
6126mainframe operating systems. (@sc{gnu}/Linux on the S/390 uses U.S. @sc{ascii}.)
6127@value{GDBN} cannot use these as its host character set.
6128
6129@end table
6130
6131Note that these are all single-byte character sets. More work inside
6132GDB is needed to support multi-byte or variable-width character
6133encodings, like the UTF-8 and UCS-2 encodings of Unicode.
6134
6135Here is an example of @value{GDBN}'s character set support in action.
6136Assume that the following source code has been placed in the file
6137@file{charset-test.c}:
6138
6139@smallexample
6140#include <stdio.h>
6141
6142char ascii_hello[]
6143 = @{72, 101, 108, 108, 111, 44, 32, 119,
6144 111, 114, 108, 100, 33, 10, 0@};
6145char ibm1047_hello[]
6146 = @{200, 133, 147, 147, 150, 107, 64, 166,
6147 150, 153, 147, 132, 90, 37, 0@};
6148
6149main ()
6150@{
6151 printf ("Hello, world!\n");
6152@}
10998722 6153@end smallexample
a0eb71c5
KB
6154
6155In this program, @code{ascii_hello} and @code{ibm1047_hello} are arrays
6156containing the string @samp{Hello, world!} followed by a newline,
6157encoded in the @sc{ascii} and @sc{ibm1047} character sets.
6158
6159We compile the program, and invoke the debugger on it:
6160
6161@smallexample
6162$ gcc -g charset-test.c -o charset-test
6163$ gdb -nw charset-test
6164GNU gdb 2001-12-19-cvs
6165Copyright 2001 Free Software Foundation, Inc.
6166@dots{}
6167(gdb)
10998722 6168@end smallexample
a0eb71c5
KB
6169
6170We can use the @code{show charset} command to see what character sets
6171@value{GDBN} is currently using to interpret and display characters and
6172strings:
6173
6174@smallexample
6175(gdb) show charset
e33d66ec 6176The current host and target character set is `ISO-8859-1'.
a0eb71c5 6177(gdb)
10998722 6178@end smallexample
a0eb71c5
KB
6179
6180For the sake of printing this manual, let's use @sc{ascii} as our
6181initial character set:
6182@smallexample
e33d66ec 6183(gdb) set charset ASCII
a0eb71c5 6184(gdb) show charset
e33d66ec 6185The current host and target character set is `ASCII'.
a0eb71c5 6186(gdb)
10998722 6187@end smallexample
a0eb71c5
KB
6188
6189Let's assume that @sc{ascii} is indeed the correct character set for our
6190host system --- in other words, let's assume that if @value{GDBN} prints
6191characters using the @sc{ascii} character set, our terminal will display
6192them properly. Since our current target character set is also
6193@sc{ascii}, the contents of @code{ascii_hello} print legibly:
6194
6195@smallexample
6196(gdb) print ascii_hello
6197$1 = 0x401698 "Hello, world!\n"
6198(gdb) print ascii_hello[0]
6199$2 = 72 'H'
6200(gdb)
10998722 6201@end smallexample
a0eb71c5
KB
6202
6203@value{GDBN} uses the target character set for character and string
6204literals you use in expressions:
6205
6206@smallexample
6207(gdb) print '+'
6208$3 = 43 '+'
6209(gdb)
10998722 6210@end smallexample
a0eb71c5
KB
6211
6212The @sc{ascii} character set uses the number 43 to encode the @samp{+}
6213character.
6214
6215@value{GDBN} relies on the user to tell it which character set the
6216target program uses. If we print @code{ibm1047_hello} while our target
6217character set is still @sc{ascii}, we get jibberish:
6218
6219@smallexample
6220(gdb) print ibm1047_hello
6221$4 = 0x4016a8 "\310\205\223\223\226k@@\246\226\231\223\204Z%"
6222(gdb) print ibm1047_hello[0]
6223$5 = 200 '\310'
6224(gdb)
10998722 6225@end smallexample
a0eb71c5 6226
e33d66ec 6227If we invoke the @code{set target-charset} followed by @key{TAB}@key{TAB},
a0eb71c5
KB
6228@value{GDBN} tells us the character sets it supports:
6229
6230@smallexample
6231(gdb) set target-charset
e33d66ec
EZ
6232ASCII EBCDIC-US IBM1047 ISO-8859-1
6233(gdb) set target-charset
10998722 6234@end smallexample
a0eb71c5
KB
6235
6236We can select @sc{ibm1047} as our target character set, and examine the
6237program's strings again. Now the @sc{ascii} string is wrong, but
6238@value{GDBN} translates the contents of @code{ibm1047_hello} from the
6239target character set, @sc{ibm1047}, to the host character set,
6240@sc{ascii}, and they display correctly:
6241
6242@smallexample
e33d66ec 6243(gdb) set target-charset IBM1047
a0eb71c5 6244(gdb) show charset
e33d66ec
EZ
6245The current host character set is `ASCII'.
6246The current target character set is `IBM1047'.
a0eb71c5
KB
6247(gdb) print ascii_hello
6248$6 = 0x401698 "\110\145%%?\054\040\167?\162%\144\041\012"
6249(gdb) print ascii_hello[0]
6250$7 = 72 '\110'
6251(gdb) print ibm1047_hello
6252$8 = 0x4016a8 "Hello, world!\n"
6253(gdb) print ibm1047_hello[0]
6254$9 = 200 'H'
6255(gdb)
10998722 6256@end smallexample
a0eb71c5
KB
6257
6258As above, @value{GDBN} uses the target character set for character and
6259string literals you use in expressions:
6260
6261@smallexample
6262(gdb) print '+'
6263$10 = 78 '+'
6264(gdb)
10998722 6265@end smallexample
a0eb71c5 6266
e33d66ec 6267The @sc{ibm1047} character set uses the number 78 to encode the @samp{+}
a0eb71c5
KB
6268character.
6269
6270
e2e0bcd1
JB
6271@node Macros
6272@chapter C Preprocessor Macros
6273
6274Some languages, such as C and C++, provide a way to define and invoke
6275``preprocessor macros'' which expand into strings of tokens.
6276@value{GDBN} can evaluate expressions containing macro invocations, show
6277the result of macro expansion, and show a macro's definition, including
6278where it was defined.
6279
6280You may need to compile your program specially to provide @value{GDBN}
6281with information about preprocessor macros. Most compilers do not
6282include macros in their debugging information, even when you compile
6283with the @option{-g} flag. @xref{Compilation}.
6284
6285A program may define a macro at one point, remove that definition later,
6286and then provide a different definition after that. Thus, at different
6287points in the program, a macro may have different definitions, or have
6288no definition at all. If there is a current stack frame, @value{GDBN}
6289uses the macros in scope at that frame's source code line. Otherwise,
6290@value{GDBN} uses the macros in scope at the current listing location;
6291see @ref{List}.
6292
6293At the moment, @value{GDBN} does not support the @code{##}
6294token-splicing operator, the @code{#} stringification operator, or
6295variable-arity macros.
6296
6297Whenever @value{GDBN} evaluates an expression, it always expands any
6298macro invocations present in the expression. @value{GDBN} also provides
6299the following commands for working with macros explicitly.
6300
6301@table @code
6302
6303@kindex macro expand
6304@cindex macro expansion, showing the results of preprocessor
6305@cindex preprocessor macro expansion, showing the results of
6306@cindex expanding preprocessor macros
6307@item macro expand @var{expression}
6308@itemx macro exp @var{expression}
6309Show the results of expanding all preprocessor macro invocations in
6310@var{expression}. Since @value{GDBN} simply expands macros, but does
6311not parse the result, @var{expression} need not be a valid expression;
6312it can be any string of tokens.
6313
6314@kindex macro expand-once
6315@item macro expand-once @var{expression}
6316@itemx macro exp1 @var{expression}
6317@i{(This command is not yet implemented.)} Show the results of
6318expanding those preprocessor macro invocations that appear explicitly in
6319@var{expression}. Macro invocations appearing in that expansion are
6320left unchanged. This command allows you to see the effect of a
6321particular macro more clearly, without being confused by further
6322expansions. Since @value{GDBN} simply expands macros, but does not
6323parse the result, @var{expression} need not be a valid expression; it
6324can be any string of tokens.
6325
475b0867 6326@kindex info macro
e2e0bcd1
JB
6327@cindex macro definition, showing
6328@cindex definition, showing a macro's
475b0867 6329@item info macro @var{macro}
e2e0bcd1
JB
6330Show the definition of the macro named @var{macro}, and describe the
6331source location where that definition was established.
6332
6333@kindex macro define
6334@cindex user-defined macros
6335@cindex defining macros interactively
6336@cindex macros, user-defined
6337@item macro define @var{macro} @var{replacement-list}
6338@itemx macro define @var{macro}(@var{arglist}) @var{replacement-list}
6339@i{(This command is not yet implemented.)} Introduce a definition for a
6340preprocessor macro named @var{macro}, invocations of which are replaced
6341by the tokens given in @var{replacement-list}. The first form of this
6342command defines an ``object-like'' macro, which takes no arguments; the
6343second form defines a ``function-like'' macro, which takes the arguments
6344given in @var{arglist}.
6345
6346A definition introduced by this command is in scope in every expression
6347evaluated in @value{GDBN}, until it is removed with the @command{macro
6348undef} command, described below. The definition overrides all
6349definitions for @var{macro} present in the program being debugged, as
6350well as any previous user-supplied definition.
6351
6352@kindex macro undef
6353@item macro undef @var{macro}
6354@i{(This command is not yet implemented.)} Remove any user-supplied
6355definition for the macro named @var{macro}. This command only affects
6356definitions provided with the @command{macro define} command, described
6357above; it cannot remove definitions present in the program being
6358debugged.
6359
6360@end table
6361
6362@cindex macros, example of debugging with
6363Here is a transcript showing the above commands in action. First, we
6364show our source files:
6365
6366@smallexample
6367$ cat sample.c
6368#include <stdio.h>
6369#include "sample.h"
6370
6371#define M 42
6372#define ADD(x) (M + x)
6373
6374main ()
6375@{
6376#define N 28
6377 printf ("Hello, world!\n");
6378#undef N
6379 printf ("We're so creative.\n");
6380#define N 1729
6381 printf ("Goodbye, world!\n");
6382@}
6383$ cat sample.h
6384#define Q <
6385$
6386@end smallexample
6387
6388Now, we compile the program using the @sc{gnu} C compiler, @value{NGCC}.
6389We pass the @option{-gdwarf-2} and @option{-g3} flags to ensure the
6390compiler includes information about preprocessor macros in the debugging
6391information.
6392
6393@smallexample
6394$ gcc -gdwarf-2 -g3 sample.c -o sample
6395$
6396@end smallexample
6397
6398Now, we start @value{GDBN} on our sample program:
6399
6400@smallexample
6401$ gdb -nw sample
6402GNU gdb 2002-05-06-cvs
6403Copyright 2002 Free Software Foundation, Inc.
6404GDB is free software, @dots{}
6405(gdb)
6406@end smallexample
6407
6408We can expand macros and examine their definitions, even when the
6409program is not running. @value{GDBN} uses the current listing position
6410to decide which macro definitions are in scope:
6411
6412@smallexample
6413(gdb) list main
64143
64154 #define M 42
64165 #define ADD(x) (M + x)
64176
64187 main ()
64198 @{
64209 #define N 28
642110 printf ("Hello, world!\n");
642211 #undef N
642312 printf ("We're so creative.\n");
475b0867 6424(gdb) info macro ADD
e2e0bcd1
JB
6425Defined at /home/jimb/gdb/macros/play/sample.c:5
6426#define ADD(x) (M + x)
475b0867 6427(gdb) info macro Q
e2e0bcd1
JB
6428Defined at /home/jimb/gdb/macros/play/sample.h:1
6429 included at /home/jimb/gdb/macros/play/sample.c:2
6430#define Q <
6431(gdb) macro expand ADD(1)
6432expands to: (42 + 1)
6433(gdb) macro expand-once ADD(1)
6434expands to: once (M + 1)
6435(gdb)
6436@end smallexample
6437
6438In the example above, note that @command{macro expand-once} expands only
6439the macro invocation explicit in the original text --- the invocation of
6440@code{ADD} --- but does not expand the invocation of the macro @code{M},
6441which was introduced by @code{ADD}.
6442
6443Once the program is running, GDB uses the macro definitions in force at
6444the source line of the current stack frame:
6445
6446@smallexample
6447(gdb) break main
6448Breakpoint 1 at 0x8048370: file sample.c, line 10.
6449(gdb) run
6450Starting program: /home/jimb/gdb/macros/play/sample
6451
6452Breakpoint 1, main () at sample.c:10
645310 printf ("Hello, world!\n");
6454(gdb)
6455@end smallexample
6456
6457At line 10, the definition of the macro @code{N} at line 9 is in force:
6458
6459@smallexample
475b0867 6460(gdb) info macro N
e2e0bcd1
JB
6461Defined at /home/jimb/gdb/macros/play/sample.c:9
6462#define N 28
6463(gdb) macro expand N Q M
6464expands to: 28 < 42
6465(gdb) print N Q M
6466$1 = 1
6467(gdb)
6468@end smallexample
6469
6470As we step over directives that remove @code{N}'s definition, and then
6471give it a new definition, @value{GDBN} finds the definition (or lack
6472thereof) in force at each point:
6473
6474@smallexample
6475(gdb) next
6476Hello, world!
647712 printf ("We're so creative.\n");
475b0867 6478(gdb) info macro N
e2e0bcd1
JB
6479The symbol `N' has no definition as a C/C++ preprocessor macro
6480at /home/jimb/gdb/macros/play/sample.c:12
6481(gdb) next
6482We're so creative.
648314 printf ("Goodbye, world!\n");
475b0867 6484(gdb) info macro N
e2e0bcd1
JB
6485Defined at /home/jimb/gdb/macros/play/sample.c:13
6486#define N 1729
6487(gdb) macro expand N Q M
6488expands to: 1729 < 42
6489(gdb) print N Q M
6490$2 = 0
6491(gdb)
6492@end smallexample
6493
6494
b37052ae
EZ
6495@node Tracepoints
6496@chapter Tracepoints
6497@c This chapter is based on the documentation written by Michael
6498@c Snyder, David Taylor, Jim Blandy, and Elena Zannoni.
6499
6500@cindex tracepoints
6501In some applications, it is not feasible for the debugger to interrupt
6502the program's execution long enough for the developer to learn
6503anything helpful about its behavior. If the program's correctness
6504depends on its real-time behavior, delays introduced by a debugger
6505might cause the program to change its behavior drastically, or perhaps
6506fail, even when the code itself is correct. It is useful to be able
6507to observe the program's behavior without interrupting it.
6508
6509Using @value{GDBN}'s @code{trace} and @code{collect} commands, you can
6510specify locations in the program, called @dfn{tracepoints}, and
6511arbitrary expressions to evaluate when those tracepoints are reached.
6512Later, using the @code{tfind} command, you can examine the values
6513those expressions had when the program hit the tracepoints. The
6514expressions may also denote objects in memory---structures or arrays,
6515for example---whose values @value{GDBN} should record; while visiting
6516a particular tracepoint, you may inspect those objects as if they were
6517in memory at that moment. However, because @value{GDBN} records these
6518values without interacting with you, it can do so quickly and
6519unobtrusively, hopefully not disturbing the program's behavior.
6520
6521The tracepoint facility is currently available only for remote
2c0069bb
EZ
6522targets. @xref{Targets}. In addition, your remote target must know how
6523to collect trace data. This functionality is implemented in the remote
6524stub; however, none of the stubs distributed with @value{GDBN} support
6525tracepoints as of this writing.
b37052ae
EZ
6526
6527This chapter describes the tracepoint commands and features.
6528
6529@menu
6530* Set Tracepoints::
6531* Analyze Collected Data::
6532* Tracepoint Variables::
6533@end menu
6534
6535@node Set Tracepoints
6536@section Commands to Set Tracepoints
6537
6538Before running such a @dfn{trace experiment}, an arbitrary number of
6539tracepoints can be set. Like a breakpoint (@pxref{Set Breaks}), a
6540tracepoint has a number assigned to it by @value{GDBN}. Like with
6541breakpoints, tracepoint numbers are successive integers starting from
6542one. Many of the commands associated with tracepoints take the
6543tracepoint number as their argument, to identify which tracepoint to
6544work on.
6545
6546For each tracepoint, you can specify, in advance, some arbitrary set
6547of data that you want the target to collect in the trace buffer when
6548it hits that tracepoint. The collected data can include registers,
6549local variables, or global data. Later, you can use @value{GDBN}
6550commands to examine the values these data had at the time the
6551tracepoint was hit.
6552
6553This section describes commands to set tracepoints and associated
6554conditions and actions.
6555
6556@menu
6557* Create and Delete Tracepoints::
6558* Enable and Disable Tracepoints::
6559* Tracepoint Passcounts::
6560* Tracepoint Actions::
6561* Listing Tracepoints::
6562* Starting and Stopping Trace Experiment::
6563@end menu
6564
6565@node Create and Delete Tracepoints
6566@subsection Create and Delete Tracepoints
6567
6568@table @code
6569@cindex set tracepoint
6570@kindex trace
6571@item trace
6572The @code{trace} command is very similar to the @code{break} command.
6573Its argument can be a source line, a function name, or an address in
6574the target program. @xref{Set Breaks}. The @code{trace} command
6575defines a tracepoint, which is a point in the target program where the
6576debugger will briefly stop, collect some data, and then allow the
6577program to continue. Setting a tracepoint or changing its commands
6578doesn't take effect until the next @code{tstart} command; thus, you
6579cannot change the tracepoint attributes once a trace experiment is
6580running.
6581
6582Here are some examples of using the @code{trace} command:
6583
6584@smallexample
6585(@value{GDBP}) @b{trace foo.c:121} // a source file and line number
6586
6587(@value{GDBP}) @b{trace +2} // 2 lines forward
6588
6589(@value{GDBP}) @b{trace my_function} // first source line of function
6590
6591(@value{GDBP}) @b{trace *my_function} // EXACT start address of function
6592
6593(@value{GDBP}) @b{trace *0x2117c4} // an address
6594@end smallexample
6595
6596@noindent
6597You can abbreviate @code{trace} as @code{tr}.
6598
6599@vindex $tpnum
6600@cindex last tracepoint number
6601@cindex recent tracepoint number
6602@cindex tracepoint number
6603The convenience variable @code{$tpnum} records the tracepoint number
6604of the most recently set tracepoint.
6605
6606@kindex delete tracepoint
6607@cindex tracepoint deletion
6608@item delete tracepoint @r{[}@var{num}@r{]}
6609Permanently delete one or more tracepoints. With no argument, the
6610default is to delete all tracepoints.
6611
6612Examples:
6613
6614@smallexample
6615(@value{GDBP}) @b{delete trace 1 2 3} // remove three tracepoints
6616
6617(@value{GDBP}) @b{delete trace} // remove all tracepoints
6618@end smallexample
6619
6620@noindent
6621You can abbreviate this command as @code{del tr}.
6622@end table
6623
6624@node Enable and Disable Tracepoints
6625@subsection Enable and Disable Tracepoints
6626
6627@table @code
6628@kindex disable tracepoint
6629@item disable tracepoint @r{[}@var{num}@r{]}
6630Disable tracepoint @var{num}, or all tracepoints if no argument
6631@var{num} is given. A disabled tracepoint will have no effect during
6632the next trace experiment, but it is not forgotten. You can re-enable
6633a disabled tracepoint using the @code{enable tracepoint} command.
6634
6635@kindex enable tracepoint
6636@item enable tracepoint @r{[}@var{num}@r{]}
6637Enable tracepoint @var{num}, or all tracepoints. The enabled
6638tracepoints will become effective the next time a trace experiment is
6639run.
6640@end table
6641
6642@node Tracepoint Passcounts
6643@subsection Tracepoint Passcounts
6644
6645@table @code
6646@kindex passcount
6647@cindex tracepoint pass count
6648@item passcount @r{[}@var{n} @r{[}@var{num}@r{]]}
6649Set the @dfn{passcount} of a tracepoint. The passcount is a way to
6650automatically stop a trace experiment. If a tracepoint's passcount is
6651@var{n}, then the trace experiment will be automatically stopped on
6652the @var{n}'th time that tracepoint is hit. If the tracepoint number
6653@var{num} is not specified, the @code{passcount} command sets the
6654passcount of the most recently defined tracepoint. If no passcount is
6655given, the trace experiment will run until stopped explicitly by the
6656user.
6657
6658Examples:
6659
6660@smallexample
6826cf00
EZ
6661(@value{GDBP}) @b{passcount 5 2} // Stop on the 5th execution of
6662@exdent @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @code{// tracepoint 2}
b37052ae
EZ
6663
6664(@value{GDBP}) @b{passcount 12} // Stop on the 12th execution of the
6826cf00 6665@exdent @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @code{// most recently defined tracepoint.}
b37052ae
EZ
6666(@value{GDBP}) @b{trace foo}
6667(@value{GDBP}) @b{pass 3}
6668(@value{GDBP}) @b{trace bar}
6669(@value{GDBP}) @b{pass 2}
6670(@value{GDBP}) @b{trace baz}
6671(@value{GDBP}) @b{pass 1} // Stop tracing when foo has been
6826cf00
EZ
6672@exdent @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @code{// executed 3 times OR when bar has}
6673@exdent @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @code{// been executed 2 times}
6674@exdent @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @code{// OR when baz has been executed 1 time.}
b37052ae
EZ
6675@end smallexample
6676@end table
6677
6678@node Tracepoint Actions
6679@subsection Tracepoint Action Lists
6680
6681@table @code
6682@kindex actions
6683@cindex tracepoint actions
6684@item actions @r{[}@var{num}@r{]}
6685This command will prompt for a list of actions to be taken when the
6686tracepoint is hit. If the tracepoint number @var{num} is not
6687specified, this command sets the actions for the one that was most
6688recently defined (so that you can define a tracepoint and then say
6689@code{actions} without bothering about its number). You specify the
6690actions themselves on the following lines, one action at a time, and
6691terminate the actions list with a line containing just @code{end}. So
6692far, the only defined actions are @code{collect} and
6693@code{while-stepping}.
6694
6695@cindex remove actions from a tracepoint
6696To remove all actions from a tracepoint, type @samp{actions @var{num}}
6697and follow it immediately with @samp{end}.
6698
6699@smallexample
6700(@value{GDBP}) @b{collect @var{data}} // collect some data
6701
6826cf00 6702(@value{GDBP}) @b{while-stepping 5} // single-step 5 times, collect data
b37052ae 6703
6826cf00 6704(@value{GDBP}) @b{end} // signals the end of actions.
b37052ae
EZ
6705@end smallexample
6706
6707In the following example, the action list begins with @code{collect}
6708commands indicating the things to be collected when the tracepoint is
6709hit. Then, in order to single-step and collect additional data
6710following the tracepoint, a @code{while-stepping} command is used,
6711followed by the list of things to be collected while stepping. The
6712@code{while-stepping} command is terminated by its own separate
6713@code{end} command. Lastly, the action list is terminated by an
6714@code{end} command.
6715
6716@smallexample
6717(@value{GDBP}) @b{trace foo}
6718(@value{GDBP}) @b{actions}
6719Enter actions for tracepoint 1, one per line:
6720> collect bar,baz
6721> collect $regs
6722> while-stepping 12
6723 > collect $fp, $sp
6724 > end
6725end
6726@end smallexample
6727
6728@kindex collect @r{(tracepoints)}
6729@item collect @var{expr1}, @var{expr2}, @dots{}
6730Collect values of the given expressions when the tracepoint is hit.
6731This command accepts a comma-separated list of any valid expressions.
6732In addition to global, static, or local variables, the following
6733special arguments are supported:
6734
6735@table @code
6736@item $regs
6737collect all registers
6738
6739@item $args
6740collect all function arguments
6741
6742@item $locals
6743collect all local variables.
6744@end table
6745
6746You can give several consecutive @code{collect} commands, each one
6747with a single argument, or one @code{collect} command with several
6748arguments separated by commas: the effect is the same.
6749
f5c37c66
EZ
6750The command @code{info scope} (@pxref{Symbols, info scope}) is
6751particularly useful for figuring out what data to collect.
6752
b37052ae
EZ
6753@kindex while-stepping @r{(tracepoints)}
6754@item while-stepping @var{n}
6755Perform @var{n} single-step traces after the tracepoint, collecting
6756new data at each step. The @code{while-stepping} command is
6757followed by the list of what to collect while stepping (followed by
6758its own @code{end} command):
6759
6760@smallexample
6761> while-stepping 12
6762 > collect $regs, myglobal
6763 > end
6764>
6765@end smallexample
6766
6767@noindent
6768You may abbreviate @code{while-stepping} as @code{ws} or
6769@code{stepping}.
6770@end table
6771
6772@node Listing Tracepoints
6773@subsection Listing Tracepoints
6774
6775@table @code
6776@kindex info tracepoints
6777@cindex information about tracepoints
6778@item info tracepoints @r{[}@var{num}@r{]}
8a037dd7 6779Display information about the tracepoint @var{num}. If you don't specify
798c8bc6 6780a tracepoint number, displays information about all the tracepoints
b37052ae
EZ
6781defined so far. For each tracepoint, the following information is
6782shown:
6783
6784@itemize @bullet
6785@item
6786its number
6787@item
6788whether it is enabled or disabled
6789@item
6790its address
6791@item
6792its passcount as given by the @code{passcount @var{n}} command
6793@item
6794its step count as given by the @code{while-stepping @var{n}} command
6795@item
6796where in the source files is the tracepoint set
6797@item
6798its action list as given by the @code{actions} command
6799@end itemize
6800
6801@smallexample
6802(@value{GDBP}) @b{info trace}
6803Num Enb Address PassC StepC What
68041 y 0x002117c4 0 0 <gdb_asm>
6826cf00
EZ
68052 y 0x0020dc64 0 0 in g_test at g_test.c:1375
68063 y 0x0020b1f4 0 0 in get_data at ../foo.c:41
b37052ae
EZ
6807(@value{GDBP})
6808@end smallexample
6809
6810@noindent
6811This command can be abbreviated @code{info tp}.
6812@end table
6813
6814@node Starting and Stopping Trace Experiment
6815@subsection Starting and Stopping Trace Experiment
6816
6817@table @code
6818@kindex tstart
6819@cindex start a new trace experiment
6820@cindex collected data discarded
6821@item tstart
6822This command takes no arguments. It starts the trace experiment, and
6823begins collecting data. This has the side effect of discarding all
6824the data collected in the trace buffer during the previous trace
6825experiment.
6826
6827@kindex tstop
6828@cindex stop a running trace experiment
6829@item tstop
6830This command takes no arguments. It ends the trace experiment, and
6831stops collecting data.
6832
6833@strong{Note:} a trace experiment and data collection may stop
6834automatically if any tracepoint's passcount is reached
6835(@pxref{Tracepoint Passcounts}), or if the trace buffer becomes full.
6836
6837@kindex tstatus
6838@cindex status of trace data collection
6839@cindex trace experiment, status of
6840@item tstatus
6841This command displays the status of the current trace data
6842collection.
6843@end table
6844
6845Here is an example of the commands we described so far:
6846
6847@smallexample
6848(@value{GDBP}) @b{trace gdb_c_test}
6849(@value{GDBP}) @b{actions}
6850Enter actions for tracepoint #1, one per line.
6851> collect $regs,$locals,$args
6852> while-stepping 11
6853 > collect $regs
6854 > end
6855> end
6856(@value{GDBP}) @b{tstart}
6857 [time passes @dots{}]
6858(@value{GDBP}) @b{tstop}
6859@end smallexample
6860
6861
6862@node Analyze Collected Data
6863@section Using the collected data
6864
6865After the tracepoint experiment ends, you use @value{GDBN} commands
6866for examining the trace data. The basic idea is that each tracepoint
6867collects a trace @dfn{snapshot} every time it is hit and another
6868snapshot every time it single-steps. All these snapshots are
6869consecutively numbered from zero and go into a buffer, and you can
6870examine them later. The way you examine them is to @dfn{focus} on a
6871specific trace snapshot. When the remote stub is focused on a trace
6872snapshot, it will respond to all @value{GDBN} requests for memory and
6873registers by reading from the buffer which belongs to that snapshot,
6874rather than from @emph{real} memory or registers of the program being
6875debugged. This means that @strong{all} @value{GDBN} commands
6876(@code{print}, @code{info registers}, @code{backtrace}, etc.) will
6877behave as if we were currently debugging the program state as it was
6878when the tracepoint occurred. Any requests for data that are not in
6879the buffer will fail.
6880
6881@menu
6882* tfind:: How to select a trace snapshot
6883* tdump:: How to display all data for a snapshot
6884* save-tracepoints:: How to save tracepoints for a future run
6885@end menu
6886
6887@node tfind
6888@subsection @code{tfind @var{n}}
6889
6890@kindex tfind
6891@cindex select trace snapshot
6892@cindex find trace snapshot
6893The basic command for selecting a trace snapshot from the buffer is
6894@code{tfind @var{n}}, which finds trace snapshot number @var{n},
6895counting from zero. If no argument @var{n} is given, the next
6896snapshot is selected.
6897
6898Here are the various forms of using the @code{tfind} command.
6899
6900@table @code
6901@item tfind start
6902Find the first snapshot in the buffer. This is a synonym for
6903@code{tfind 0} (since 0 is the number of the first snapshot).
6904
6905@item tfind none
6906Stop debugging trace snapshots, resume @emph{live} debugging.
6907
6908@item tfind end
6909Same as @samp{tfind none}.
6910
6911@item tfind
6912No argument means find the next trace snapshot.
6913
6914@item tfind -
6915Find the previous trace snapshot before the current one. This permits
6916retracing earlier steps.
6917
6918@item tfind tracepoint @var{num}
6919Find the next snapshot associated with tracepoint @var{num}. Search
6920proceeds forward from the last examined trace snapshot. If no
6921argument @var{num} is given, it means find the next snapshot collected
6922for the same tracepoint as the current snapshot.
6923
6924@item tfind pc @var{addr}
6925Find the next snapshot associated with the value @var{addr} of the
6926program counter. Search proceeds forward from the last examined trace
6927snapshot. If no argument @var{addr} is given, it means find the next
6928snapshot with the same value of PC as the current snapshot.
6929
6930@item tfind outside @var{addr1}, @var{addr2}
6931Find the next snapshot whose PC is outside the given range of
6932addresses.
6933
6934@item tfind range @var{addr1}, @var{addr2}
6935Find the next snapshot whose PC is between @var{addr1} and
6936@var{addr2}. @c FIXME: Is the range inclusive or exclusive?
6937
6938@item tfind line @r{[}@var{file}:@r{]}@var{n}
6939Find the next snapshot associated with the source line @var{n}. If
6940the optional argument @var{file} is given, refer to line @var{n} in
6941that source file. Search proceeds forward from the last examined
6942trace snapshot. If no argument @var{n} is given, it means find the
6943next line other than the one currently being examined; thus saying
6944@code{tfind line} repeatedly can appear to have the same effect as
6945stepping from line to line in a @emph{live} debugging session.
6946@end table
6947
6948The default arguments for the @code{tfind} commands are specifically
6949designed to make it easy to scan through the trace buffer. For
6950instance, @code{tfind} with no argument selects the next trace
6951snapshot, and @code{tfind -} with no argument selects the previous
6952trace snapshot. So, by giving one @code{tfind} command, and then
6953simply hitting @key{RET} repeatedly you can examine all the trace
6954snapshots in order. Or, by saying @code{tfind -} and then hitting
6955@key{RET} repeatedly you can examine the snapshots in reverse order.
6956The @code{tfind line} command with no argument selects the snapshot
6957for the next source line executed. The @code{tfind pc} command with
6958no argument selects the next snapshot with the same program counter
6959(PC) as the current frame. The @code{tfind tracepoint} command with
6960no argument selects the next trace snapshot collected by the same
6961tracepoint as the current one.
6962
6963In addition to letting you scan through the trace buffer manually,
6964these commands make it easy to construct @value{GDBN} scripts that
6965scan through the trace buffer and print out whatever collected data
6966you are interested in. Thus, if we want to examine the PC, FP, and SP
6967registers from each trace frame in the buffer, we can say this:
6968
6969@smallexample
6970(@value{GDBP}) @b{tfind start}
6971(@value{GDBP}) @b{while ($trace_frame != -1)}
6972> printf "Frame %d, PC = %08X, SP = %08X, FP = %08X\n", \
6973 $trace_frame, $pc, $sp, $fp
6974> tfind
6975> end
6976
6977Frame 0, PC = 0020DC64, SP = 0030BF3C, FP = 0030BF44
6978Frame 1, PC = 0020DC6C, SP = 0030BF38, FP = 0030BF44
6979Frame 2, PC = 0020DC70, SP = 0030BF34, FP = 0030BF44
6980Frame 3, PC = 0020DC74, SP = 0030BF30, FP = 0030BF44
6981Frame 4, PC = 0020DC78, SP = 0030BF2C, FP = 0030BF44
6982Frame 5, PC = 0020DC7C, SP = 0030BF28, FP = 0030BF44
6983Frame 6, PC = 0020DC80, SP = 0030BF24, FP = 0030BF44
6984Frame 7, PC = 0020DC84, SP = 0030BF20, FP = 0030BF44
6985Frame 8, PC = 0020DC88, SP = 0030BF1C, FP = 0030BF44
6986Frame 9, PC = 0020DC8E, SP = 0030BF18, FP = 0030BF44
6987Frame 10, PC = 00203F6C, SP = 0030BE3C, FP = 0030BF14
6988@end smallexample
6989
6990Or, if we want to examine the variable @code{X} at each source line in
6991the buffer:
6992
6993@smallexample
6994(@value{GDBP}) @b{tfind start}
6995(@value{GDBP}) @b{while ($trace_frame != -1)}
6996> printf "Frame %d, X == %d\n", $trace_frame, X
6997> tfind line
6998> end
6999
7000Frame 0, X = 1
7001Frame 7, X = 2
7002Frame 13, X = 255
7003@end smallexample
7004
7005@node tdump
7006@subsection @code{tdump}
7007@kindex tdump
7008@cindex dump all data collected at tracepoint
7009@cindex tracepoint data, display
7010
7011This command takes no arguments. It prints all the data collected at
7012the current trace snapshot.
7013
7014@smallexample
7015(@value{GDBP}) @b{trace 444}
7016(@value{GDBP}) @b{actions}
7017Enter actions for tracepoint #2, one per line:
7018> collect $regs, $locals, $args, gdb_long_test
7019> end
7020
7021(@value{GDBP}) @b{tstart}
7022
7023(@value{GDBP}) @b{tfind line 444}
7024#0 gdb_test (p1=0x11, p2=0x22, p3=0x33, p4=0x44, p5=0x55, p6=0x66)
7025at gdb_test.c:444
7026444 printp( "%s: arguments = 0x%X 0x%X 0x%X 0x%X 0x%X 0x%X\n", )
7027
7028(@value{GDBP}) @b{tdump}
7029Data collected at tracepoint 2, trace frame 1:
7030d0 0xc4aa0085 -995491707
7031d1 0x18 24
7032d2 0x80 128
7033d3 0x33 51
7034d4 0x71aea3d 119204413
7035d5 0x22 34
7036d6 0xe0 224
7037d7 0x380035 3670069
7038a0 0x19e24a 1696330
7039a1 0x3000668 50333288
7040a2 0x100 256
7041a3 0x322000 3284992
7042a4 0x3000698 50333336
7043a5 0x1ad3cc 1758156
7044fp 0x30bf3c 0x30bf3c
7045sp 0x30bf34 0x30bf34
7046ps 0x0 0
7047pc 0x20b2c8 0x20b2c8
7048fpcontrol 0x0 0
7049fpstatus 0x0 0
7050fpiaddr 0x0 0
7051p = 0x20e5b4 "gdb-test"
7052p1 = (void *) 0x11
7053p2 = (void *) 0x22
7054p3 = (void *) 0x33
7055p4 = (void *) 0x44
7056p5 = (void *) 0x55
7057p6 = (void *) 0x66
7058gdb_long_test = 17 '\021'
7059
7060(@value{GDBP})
7061@end smallexample
7062
7063@node save-tracepoints
7064@subsection @code{save-tracepoints @var{filename}}
7065@kindex save-tracepoints
7066@cindex save tracepoints for future sessions
7067
7068This command saves all current tracepoint definitions together with
7069their actions and passcounts, into a file @file{@var{filename}}
7070suitable for use in a later debugging session. To read the saved
7071tracepoint definitions, use the @code{source} command (@pxref{Command
7072Files}).
7073
7074@node Tracepoint Variables
7075@section Convenience Variables for Tracepoints
7076@cindex tracepoint variables
7077@cindex convenience variables for tracepoints
7078
7079@table @code
7080@vindex $trace_frame
7081@item (int) $trace_frame
7082The current trace snapshot (a.k.a.@: @dfn{frame}) number, or -1 if no
7083snapshot is selected.
7084
7085@vindex $tracepoint
7086@item (int) $tracepoint
7087The tracepoint for the current trace snapshot.
7088
7089@vindex $trace_line
7090@item (int) $trace_line
7091The line number for the current trace snapshot.
7092
7093@vindex $trace_file
7094@item (char []) $trace_file
7095The source file for the current trace snapshot.
7096
7097@vindex $trace_func
7098@item (char []) $trace_func
7099The name of the function containing @code{$tracepoint}.
7100@end table
7101
7102Note: @code{$trace_file} is not suitable for use in @code{printf},
7103use @code{output} instead.
7104
7105Here's a simple example of using these convenience variables for
7106stepping through all the trace snapshots and printing some of their
7107data.
7108
7109@smallexample
7110(@value{GDBP}) @b{tfind start}
7111
7112(@value{GDBP}) @b{while $trace_frame != -1}
7113> output $trace_file
7114> printf ", line %d (tracepoint #%d)\n", $trace_line, $tracepoint
7115> tfind
7116> end
7117@end smallexample
7118
df0cd8c5
JB
7119@node Overlays
7120@chapter Debugging Programs That Use Overlays
7121@cindex overlays
7122
7123If your program is too large to fit completely in your target system's
7124memory, you can sometimes use @dfn{overlays} to work around this
7125problem. @value{GDBN} provides some support for debugging programs that
7126use overlays.
7127
7128@menu
7129* How Overlays Work:: A general explanation of overlays.
7130* Overlay Commands:: Managing overlays in @value{GDBN}.
7131* Automatic Overlay Debugging:: @value{GDBN} can find out which overlays are
7132 mapped by asking the inferior.
7133* Overlay Sample Program:: A sample program using overlays.
7134@end menu
7135
7136@node How Overlays Work
7137@section How Overlays Work
7138@cindex mapped overlays
7139@cindex unmapped overlays
7140@cindex load address, overlay's
7141@cindex mapped address
7142@cindex overlay area
7143
7144Suppose you have a computer whose instruction address space is only 64
7145kilobytes long, but which has much more memory which can be accessed by
7146other means: special instructions, segment registers, or memory
7147management hardware, for example. Suppose further that you want to
7148adapt a program which is larger than 64 kilobytes to run on this system.
7149
7150One solution is to identify modules of your program which are relatively
7151independent, and need not call each other directly; call these modules
7152@dfn{overlays}. Separate the overlays from the main program, and place
7153their machine code in the larger memory. Place your main program in
7154instruction memory, but leave at least enough space there to hold the
7155largest overlay as well.
7156
7157Now, to call a function located in an overlay, you must first copy that
7158overlay's machine code from the large memory into the space set aside
7159for it in the instruction memory, and then jump to its entry point
7160there.
7161
c928edc0
AC
7162@c NB: In the below the mapped area's size is greater or equal to the
7163@c size of all overlays. This is intentional to remind the developer
7164@c that overlays don't necessarily need to be the same size.
7165
474c8240 7166@smallexample
df0cd8c5 7167@group
c928edc0
AC
7168 Data Instruction Larger
7169Address Space Address Space Address Space
7170+-----------+ +-----------+ +-----------+
7171| | | | | |
7172+-----------+ +-----------+ +-----------+<-- overlay 1
7173| program | | main | .----| overlay 1 | load address
7174| variables | | program | | +-----------+
7175| and heap | | | | | |
7176+-----------+ | | | +-----------+<-- overlay 2
7177| | +-----------+ | | | load address
7178+-----------+ | | | .-| overlay 2 |
7179 | | | | | |
7180 mapped --->+-----------+ | | +-----------+
7181 address | | | | | |
7182 | overlay | <-' | | |
7183 | area | <---' +-----------+<-- overlay 3
7184 | | <---. | | load address
7185 +-----------+ `--| overlay 3 |
7186 | | | |
7187 +-----------+ | |
7188 +-----------+
7189 | |
7190 +-----------+
7191
7192 @anchor{A code overlay}A code overlay
df0cd8c5 7193@end group
474c8240 7194@end smallexample
df0cd8c5 7195
c928edc0
AC
7196The diagram (@pxref{A code overlay}) shows a system with separate data
7197and instruction address spaces. To map an overlay, the program copies
7198its code from the larger address space to the instruction address space.
7199Since the overlays shown here all use the same mapped address, only one
7200may be mapped at a time. For a system with a single address space for
7201data and instructions, the diagram would be similar, except that the
7202program variables and heap would share an address space with the main
7203program and the overlay area.
df0cd8c5
JB
7204
7205An overlay loaded into instruction memory and ready for use is called a
7206@dfn{mapped} overlay; its @dfn{mapped address} is its address in the
7207instruction memory. An overlay not present (or only partially present)
7208in instruction memory is called @dfn{unmapped}; its @dfn{load address}
7209is its address in the larger memory. The mapped address is also called
7210the @dfn{virtual memory address}, or @dfn{VMA}; the load address is also
7211called the @dfn{load memory address}, or @dfn{LMA}.
7212
7213Unfortunately, overlays are not a completely transparent way to adapt a
7214program to limited instruction memory. They introduce a new set of
7215global constraints you must keep in mind as you design your program:
7216
7217@itemize @bullet
7218
7219@item
7220Before calling or returning to a function in an overlay, your program
7221must make sure that overlay is actually mapped. Otherwise, the call or
7222return will transfer control to the right address, but in the wrong
7223overlay, and your program will probably crash.
7224
7225@item
7226If the process of mapping an overlay is expensive on your system, you
7227will need to choose your overlays carefully to minimize their effect on
7228your program's performance.
7229
7230@item
7231The executable file you load onto your system must contain each
7232overlay's instructions, appearing at the overlay's load address, not its
7233mapped address. However, each overlay's instructions must be relocated
7234and its symbols defined as if the overlay were at its mapped address.
7235You can use GNU linker scripts to specify different load and relocation
7236addresses for pieces of your program; see @ref{Overlay Description,,,
7237ld.info, Using ld: the GNU linker}.
7238
7239@item
7240The procedure for loading executable files onto your system must be able
7241to load their contents into the larger address space as well as the
7242instruction and data spaces.
7243
7244@end itemize
7245
7246The overlay system described above is rather simple, and could be
7247improved in many ways:
7248
7249@itemize @bullet
7250
7251@item
7252If your system has suitable bank switch registers or memory management
7253hardware, you could use those facilities to make an overlay's load area
7254contents simply appear at their mapped address in instruction space.
7255This would probably be faster than copying the overlay to its mapped
7256area in the usual way.
7257
7258@item
7259If your overlays are small enough, you could set aside more than one
7260overlay area, and have more than one overlay mapped at a time.
7261
7262@item
7263You can use overlays to manage data, as well as instructions. In
7264general, data overlays are even less transparent to your design than
7265code overlays: whereas code overlays only require care when you call or
7266return to functions, data overlays require care every time you access
7267the data. Also, if you change the contents of a data overlay, you
7268must copy its contents back out to its load address before you can copy a
7269different data overlay into the same mapped area.
7270
7271@end itemize
7272
7273
7274@node Overlay Commands
7275@section Overlay Commands
7276
7277To use @value{GDBN}'s overlay support, each overlay in your program must
7278correspond to a separate section of the executable file. The section's
7279virtual memory address and load memory address must be the overlay's
7280mapped and load addresses. Identifying overlays with sections allows
7281@value{GDBN} to determine the appropriate address of a function or
7282variable, depending on whether the overlay is mapped or not.
7283
7284@value{GDBN}'s overlay commands all start with the word @code{overlay};
7285you can abbreviate this as @code{ov} or @code{ovly}. The commands are:
7286
7287@table @code
7288@item overlay off
7289@kindex overlay off
7290Disable @value{GDBN}'s overlay support. When overlay support is
7291disabled, @value{GDBN} assumes that all functions and variables are
7292always present at their mapped addresses. By default, @value{GDBN}'s
7293overlay support is disabled.
7294
7295@item overlay manual
7296@kindex overlay manual
7297@cindex manual overlay debugging
7298Enable @dfn{manual} overlay debugging. In this mode, @value{GDBN}
7299relies on you to tell it which overlays are mapped, and which are not,
7300using the @code{overlay map-overlay} and @code{overlay unmap-overlay}
7301commands described below.
7302
7303@item overlay map-overlay @var{overlay}
7304@itemx overlay map @var{overlay}
7305@kindex overlay map-overlay
7306@cindex map an overlay
7307Tell @value{GDBN} that @var{overlay} is now mapped; @var{overlay} must
7308be the name of the object file section containing the overlay. When an
7309overlay is mapped, @value{GDBN} assumes it can find the overlay's
7310functions and variables at their mapped addresses. @value{GDBN} assumes
7311that any other overlays whose mapped ranges overlap that of
7312@var{overlay} are now unmapped.
7313
7314@item overlay unmap-overlay @var{overlay}
7315@itemx overlay unmap @var{overlay}
7316@kindex overlay unmap-overlay
7317@cindex unmap an overlay
7318Tell @value{GDBN} that @var{overlay} is no longer mapped; @var{overlay}
7319must be the name of the object file section containing the overlay.
7320When an overlay is unmapped, @value{GDBN} assumes it can find the
7321overlay's functions and variables at their load addresses.
7322
7323@item overlay auto
7324@kindex overlay auto
7325Enable @dfn{automatic} overlay debugging. In this mode, @value{GDBN}
7326consults a data structure the overlay manager maintains in the inferior
7327to see which overlays are mapped. For details, see @ref{Automatic
7328Overlay Debugging}.
7329
7330@item overlay load-target
7331@itemx overlay load
7332@kindex overlay load-target
7333@cindex reloading the overlay table
7334Re-read the overlay table from the inferior. Normally, @value{GDBN}
7335re-reads the table @value{GDBN} automatically each time the inferior
7336stops, so this command should only be necessary if you have changed the
7337overlay mapping yourself using @value{GDBN}. This command is only
7338useful when using automatic overlay debugging.
7339
7340@item overlay list-overlays
7341@itemx overlay list
7342@cindex listing mapped overlays
7343Display a list of the overlays currently mapped, along with their mapped
7344addresses, load addresses, and sizes.
7345
7346@end table
7347
7348Normally, when @value{GDBN} prints a code address, it includes the name
7349of the function the address falls in:
7350
474c8240 7351@smallexample
df0cd8c5
JB
7352(gdb) print main
7353$3 = @{int ()@} 0x11a0 <main>
474c8240 7354@end smallexample
df0cd8c5
JB
7355@noindent
7356When overlay debugging is enabled, @value{GDBN} recognizes code in
7357unmapped overlays, and prints the names of unmapped functions with
7358asterisks around them. For example, if @code{foo} is a function in an
7359unmapped overlay, @value{GDBN} prints it this way:
7360
474c8240 7361@smallexample
df0cd8c5
JB
7362(gdb) overlay list
7363No sections are mapped.
7364(gdb) print foo
7365$5 = @{int (int)@} 0x100000 <*foo*>
474c8240 7366@end smallexample
df0cd8c5
JB
7367@noindent
7368When @code{foo}'s overlay is mapped, @value{GDBN} prints the function's
7369name normally:
7370
474c8240 7371@smallexample
df0cd8c5
JB
7372(gdb) overlay list
7373Section .ov.foo.text, loaded at 0x100000 - 0x100034,
7374 mapped at 0x1016 - 0x104a
7375(gdb) print foo
7376$6 = @{int (int)@} 0x1016 <foo>
474c8240 7377@end smallexample
df0cd8c5
JB
7378
7379When overlay debugging is enabled, @value{GDBN} can find the correct
7380address for functions and variables in an overlay, whether or not the
7381overlay is mapped. This allows most @value{GDBN} commands, like
7382@code{break} and @code{disassemble}, to work normally, even on unmapped
7383code. However, @value{GDBN}'s breakpoint support has some limitations:
7384
7385@itemize @bullet
7386@item
7387@cindex breakpoints in overlays
7388@cindex overlays, setting breakpoints in
7389You can set breakpoints in functions in unmapped overlays, as long as
7390@value{GDBN} can write to the overlay at its load address.
7391@item
7392@value{GDBN} can not set hardware or simulator-based breakpoints in
7393unmapped overlays. However, if you set a breakpoint at the end of your
7394overlay manager (and tell @value{GDBN} which overlays are now mapped, if
7395you are using manual overlay management), @value{GDBN} will re-set its
7396breakpoints properly.
7397@end itemize
7398
7399
7400@node Automatic Overlay Debugging
7401@section Automatic Overlay Debugging
7402@cindex automatic overlay debugging
7403
7404@value{GDBN} can automatically track which overlays are mapped and which
7405are not, given some simple co-operation from the overlay manager in the
7406inferior. If you enable automatic overlay debugging with the
7407@code{overlay auto} command (@pxref{Overlay Commands}), @value{GDBN}
7408looks in the inferior's memory for certain variables describing the
7409current state of the overlays.
7410
7411Here are the variables your overlay manager must define to support
7412@value{GDBN}'s automatic overlay debugging:
7413
7414@table @asis
7415
7416@item @code{_ovly_table}:
7417This variable must be an array of the following structures:
7418
474c8240 7419@smallexample
df0cd8c5
JB
7420struct
7421@{
7422 /* The overlay's mapped address. */
7423 unsigned long vma;
7424
7425 /* The size of the overlay, in bytes. */
7426 unsigned long size;
7427
7428 /* The overlay's load address. */
7429 unsigned long lma;
7430
7431 /* Non-zero if the overlay is currently mapped;
7432 zero otherwise. */
7433 unsigned long mapped;
7434@}
474c8240 7435@end smallexample
df0cd8c5
JB
7436
7437@item @code{_novlys}:
7438This variable must be a four-byte signed integer, holding the total
7439number of elements in @code{_ovly_table}.
7440
7441@end table
7442
7443To decide whether a particular overlay is mapped or not, @value{GDBN}
7444looks for an entry in @w{@code{_ovly_table}} whose @code{vma} and
7445@code{lma} members equal the VMA and LMA of the overlay's section in the
7446executable file. When @value{GDBN} finds a matching entry, it consults
7447the entry's @code{mapped} member to determine whether the overlay is
7448currently mapped.
7449
81d46470 7450In addition, your overlay manager may define a function called
def71bfa 7451@code{_ovly_debug_event}. If this function is defined, @value{GDBN}
81d46470
MS
7452will silently set a breakpoint there. If the overlay manager then
7453calls this function whenever it has changed the overlay table, this
7454will enable @value{GDBN} to accurately keep track of which overlays
7455are in program memory, and update any breakpoints that may be set
7456in overlays. This will allow breakpoints to work even if the
7457overlays are kept in ROM or other non-writable memory while they
7458are not being executed.
df0cd8c5
JB
7459
7460@node Overlay Sample Program
7461@section Overlay Sample Program
7462@cindex overlay example program
7463
7464When linking a program which uses overlays, you must place the overlays
7465at their load addresses, while relocating them to run at their mapped
7466addresses. To do this, you must write a linker script (@pxref{Overlay
7467Description,,, ld.info, Using ld: the GNU linker}). Unfortunately,
7468since linker scripts are specific to a particular host system, target
7469architecture, and target memory layout, this manual cannot provide
7470portable sample code demonstrating @value{GDBN}'s overlay support.
7471
7472However, the @value{GDBN} source distribution does contain an overlaid
7473program, with linker scripts for a few systems, as part of its test
7474suite. The program consists of the following files from
7475@file{gdb/testsuite/gdb.base}:
7476
7477@table @file
7478@item overlays.c
7479The main program file.
7480@item ovlymgr.c
7481A simple overlay manager, used by @file{overlays.c}.
7482@item foo.c
7483@itemx bar.c
7484@itemx baz.c
7485@itemx grbx.c
7486Overlay modules, loaded and used by @file{overlays.c}.
7487@item d10v.ld
7488@itemx m32r.ld
7489Linker scripts for linking the test program on the @code{d10v-elf}
7490and @code{m32r-elf} targets.
7491@end table
7492
7493You can build the test program using the @code{d10v-elf} GCC
7494cross-compiler like this:
7495
474c8240 7496@smallexample
df0cd8c5
JB
7497$ d10v-elf-gcc -g -c overlays.c
7498$ d10v-elf-gcc -g -c ovlymgr.c
7499$ d10v-elf-gcc -g -c foo.c
7500$ d10v-elf-gcc -g -c bar.c
7501$ d10v-elf-gcc -g -c baz.c
7502$ d10v-elf-gcc -g -c grbx.c
7503$ d10v-elf-gcc -g overlays.o ovlymgr.o foo.o bar.o \
7504 baz.o grbx.o -Wl,-Td10v.ld -o overlays
474c8240 7505@end smallexample
df0cd8c5
JB
7506
7507The build process is identical for any other architecture, except that
7508you must substitute the appropriate compiler and linker script for the
7509target system for @code{d10v-elf-gcc} and @code{d10v.ld}.
7510
7511
6d2ebf8b 7512@node Languages
c906108c
SS
7513@chapter Using @value{GDBN} with Different Languages
7514@cindex languages
7515
c906108c
SS
7516Although programming languages generally have common aspects, they are
7517rarely expressed in the same manner. For instance, in ANSI C,
7518dereferencing a pointer @code{p} is accomplished by @code{*p}, but in
7519Modula-2, it is accomplished by @code{p^}. Values can also be
5d161b24 7520represented (and displayed) differently. Hex numbers in C appear as
c906108c 7521@samp{0x1ae}, while in Modula-2 they appear as @samp{1AEH}.
c906108c
SS
7522
7523@cindex working language
7524Language-specific information is built into @value{GDBN} for some languages,
7525allowing you to express operations like the above in your program's
7526native language, and allowing @value{GDBN} to output values in a manner
7527consistent with the syntax of your program's native language. The
7528language you use to build expressions is called the @dfn{working
7529language}.
7530
7531@menu
7532* Setting:: Switching between source languages
7533* Show:: Displaying the language
c906108c 7534* Checks:: Type and range checks
c906108c 7535* Support:: Supported languages
4e562065 7536* Unsupported languages:: Unsupported languages
c906108c
SS
7537@end menu
7538
6d2ebf8b 7539@node Setting
c906108c
SS
7540@section Switching between source languages
7541
7542There are two ways to control the working language---either have @value{GDBN}
7543set it automatically, or select it manually yourself. You can use the
7544@code{set language} command for either purpose. On startup, @value{GDBN}
7545defaults to setting the language automatically. The working language is
7546used to determine how expressions you type are interpreted, how values
7547are printed, etc.
7548
7549In addition to the working language, every source file that
7550@value{GDBN} knows about has its own working language. For some object
7551file formats, the compiler might indicate which language a particular
7552source file is in. However, most of the time @value{GDBN} infers the
7553language from the name of the file. The language of a source file
b37052ae 7554controls whether C@t{++} names are demangled---this way @code{backtrace} can
c906108c 7555show each frame appropriately for its own language. There is no way to
d4f3574e
SS
7556set the language of a source file from within @value{GDBN}, but you can
7557set the language associated with a filename extension. @xref{Show, ,
7558Displaying the language}.
c906108c
SS
7559
7560This is most commonly a problem when you use a program, such
5d161b24 7561as @code{cfront} or @code{f2c}, that generates C but is written in
c906108c
SS
7562another language. In that case, make the
7563program use @code{#line} directives in its C output; that way
7564@value{GDBN} will know the correct language of the source code of the original
7565program, and will display that source code, not the generated C code.
7566
7567@menu
7568* Filenames:: Filename extensions and languages.
7569* Manually:: Setting the working language manually
7570* Automatically:: Having @value{GDBN} infer the source language
7571@end menu
7572
6d2ebf8b 7573@node Filenames
c906108c
SS
7574@subsection List of filename extensions and languages
7575
7576If a source file name ends in one of the following extensions, then
7577@value{GDBN} infers that its language is the one indicated.
7578
7579@table @file
7580
7581@item .c
7582C source file
7583
7584@item .C
7585@itemx .cc
7586@itemx .cp
7587@itemx .cpp
7588@itemx .cxx
7589@itemx .c++
b37052ae 7590C@t{++} source file
c906108c 7591
b37303ee
AF
7592@item .m
7593Objective-C source file
7594
c906108c
SS
7595@item .f
7596@itemx .F
7597Fortran source file
7598
c906108c
SS
7599@item .mod
7600Modula-2 source file
c906108c
SS
7601
7602@item .s
7603@itemx .S
7604Assembler source file. This actually behaves almost like C, but
7605@value{GDBN} does not skip over function prologues when stepping.
7606@end table
7607
7608In addition, you may set the language associated with a filename
7609extension. @xref{Show, , Displaying the language}.
7610
6d2ebf8b 7611@node Manually
c906108c
SS
7612@subsection Setting the working language
7613
7614If you allow @value{GDBN} to set the language automatically,
7615expressions are interpreted the same way in your debugging session and
7616your program.
7617
7618@kindex set language
7619If you wish, you may set the language manually. To do this, issue the
7620command @samp{set language @var{lang}}, where @var{lang} is the name of
5d161b24 7621a language, such as
c906108c 7622@code{c} or @code{modula-2}.
c906108c
SS
7623For a list of the supported languages, type @samp{set language}.
7624
c906108c
SS
7625Setting the language manually prevents @value{GDBN} from updating the working
7626language automatically. This can lead to confusion if you try
7627to debug a program when the working language is not the same as the
7628source language, when an expression is acceptable to both
7629languages---but means different things. For instance, if the current
7630source file were written in C, and @value{GDBN} was parsing Modula-2, a
7631command such as:
7632
474c8240 7633@smallexample
c906108c 7634print a = b + c
474c8240 7635@end smallexample
c906108c
SS
7636
7637@noindent
7638might not have the effect you intended. In C, this means to add
7639@code{b} and @code{c} and place the result in @code{a}. The result
7640printed would be the value of @code{a}. In Modula-2, this means to compare
7641@code{a} to the result of @code{b+c}, yielding a @code{BOOLEAN} value.
c906108c 7642
6d2ebf8b 7643@node Automatically
c906108c
SS
7644@subsection Having @value{GDBN} infer the source language
7645
7646To have @value{GDBN} set the working language automatically, use
7647@samp{set language local} or @samp{set language auto}. @value{GDBN}
7648then infers the working language. That is, when your program stops in a
7649frame (usually by encountering a breakpoint), @value{GDBN} sets the
7650working language to the language recorded for the function in that
7651frame. If the language for a frame is unknown (that is, if the function
7652or block corresponding to the frame was defined in a source file that
7653does not have a recognized extension), the current working language is
7654not changed, and @value{GDBN} issues a warning.
7655
7656This may not seem necessary for most programs, which are written
7657entirely in one source language. However, program modules and libraries
7658written in one source language can be used by a main program written in
7659a different source language. Using @samp{set language auto} in this
7660case frees you from having to set the working language manually.
7661
6d2ebf8b 7662@node Show
c906108c 7663@section Displaying the language
c906108c
SS
7664
7665The following commands help you find out which language is the
7666working language, and also what language source files were written in.
7667
7668@kindex show language
d4f3574e
SS
7669@kindex info frame@r{, show the source language}
7670@kindex info source@r{, show the source language}
c906108c
SS
7671@table @code
7672@item show language
7673Display the current working language. This is the
7674language you can use with commands such as @code{print} to
7675build and compute expressions that may involve variables in your program.
7676
7677@item info frame
5d161b24 7678Display the source language for this frame. This language becomes the
c906108c 7679working language if you use an identifier from this frame.
5d161b24 7680@xref{Frame Info, ,Information about a frame}, to identify the other
c906108c
SS
7681information listed here.
7682
7683@item info source
7684Display the source language of this source file.
5d161b24 7685@xref{Symbols, ,Examining the Symbol Table}, to identify the other
c906108c
SS
7686information listed here.
7687@end table
7688
7689In unusual circumstances, you may have source files with extensions
7690not in the standard list. You can then set the extension associated
7691with a language explicitly:
7692
7693@kindex set extension-language
7694@kindex info extensions
7695@table @code
7696@item set extension-language @var{.ext} @var{language}
7697Set source files with extension @var{.ext} to be assumed to be in
7698the source language @var{language}.
7699
7700@item info extensions
7701List all the filename extensions and the associated languages.
7702@end table
7703
6d2ebf8b 7704@node Checks
c906108c
SS
7705@section Type and range checking
7706
7707@quotation
7708@emph{Warning:} In this release, the @value{GDBN} commands for type and range
7709checking are included, but they do not yet have any effect. This
7710section documents the intended facilities.
7711@end quotation
7712@c FIXME remove warning when type/range code added
7713
7714Some languages are designed to guard you against making seemingly common
7715errors through a series of compile- and run-time checks. These include
7716checking the type of arguments to functions and operators, and making
7717sure mathematical overflows are caught at run time. Checks such as
7718these help to ensure a program's correctness once it has been compiled
7719by eliminating type mismatches, and providing active checks for range
7720errors when your program is running.
7721
7722@value{GDBN} can check for conditions like the above if you wish.
7723Although @value{GDBN} does not check the statements in your program, it
7724can check expressions entered directly into @value{GDBN} for evaluation via
7725the @code{print} command, for example. As with the working language,
7726@value{GDBN} can also decide whether or not to check automatically based on
7727your program's source language. @xref{Support, ,Supported languages},
7728for the default settings of supported languages.
7729
7730@menu
7731* Type Checking:: An overview of type checking
7732* Range Checking:: An overview of range checking
7733@end menu
7734
7735@cindex type checking
7736@cindex checks, type
6d2ebf8b 7737@node Type Checking
c906108c
SS
7738@subsection An overview of type checking
7739
7740Some languages, such as Modula-2, are strongly typed, meaning that the
7741arguments to operators and functions have to be of the correct type,
7742otherwise an error occurs. These checks prevent type mismatch
7743errors from ever causing any run-time problems. For example,
7744
7745@smallexample
77461 + 2 @result{} 3
7747@exdent but
7748@error{} 1 + 2.3
7749@end smallexample
7750
7751The second example fails because the @code{CARDINAL} 1 is not
7752type-compatible with the @code{REAL} 2.3.
7753
5d161b24
DB
7754For the expressions you use in @value{GDBN} commands, you can tell the
7755@value{GDBN} type checker to skip checking;
7756to treat any mismatches as errors and abandon the expression;
7757or to only issue warnings when type mismatches occur,
c906108c
SS
7758but evaluate the expression anyway. When you choose the last of
7759these, @value{GDBN} evaluates expressions like the second example above, but
7760also issues a warning.
7761
5d161b24
DB
7762Even if you turn type checking off, there may be other reasons
7763related to type that prevent @value{GDBN} from evaluating an expression.
7764For instance, @value{GDBN} does not know how to add an @code{int} and
7765a @code{struct foo}. These particular type errors have nothing to do
7766with the language in use, and usually arise from expressions, such as
c906108c
SS
7767the one described above, which make little sense to evaluate anyway.
7768
7769Each language defines to what degree it is strict about type. For
7770instance, both Modula-2 and C require the arguments to arithmetical
7771operators to be numbers. In C, enumerated types and pointers can be
7772represented as numbers, so that they are valid arguments to mathematical
7773operators. @xref{Support, ,Supported languages}, for further
7774details on specific languages.
7775
7776@value{GDBN} provides some additional commands for controlling the type checker:
7777
d4f3574e 7778@kindex set check@r{, type}
c906108c
SS
7779@kindex set check type
7780@kindex show check type
7781@table @code
7782@item set check type auto
7783Set type checking on or off based on the current working language.
7784@xref{Support, ,Supported languages}, for the default settings for
7785each language.
7786
7787@item set check type on
7788@itemx set check type off
7789Set type checking on or off, overriding the default setting for the
7790current working language. Issue a warning if the setting does not
7791match the language default. If any type mismatches occur in
d4f3574e 7792evaluating an expression while type checking is on, @value{GDBN} prints a
c906108c
SS
7793message and aborts evaluation of the expression.
7794
7795@item set check type warn
7796Cause the type checker to issue warnings, but to always attempt to
7797evaluate the expression. Evaluating the expression may still
7798be impossible for other reasons. For example, @value{GDBN} cannot add
7799numbers and structures.
7800
7801@item show type
5d161b24 7802Show the current setting of the type checker, and whether or not @value{GDBN}
c906108c
SS
7803is setting it automatically.
7804@end table
7805
7806@cindex range checking
7807@cindex checks, range
6d2ebf8b 7808@node Range Checking
c906108c
SS
7809@subsection An overview of range checking
7810
7811In some languages (such as Modula-2), it is an error to exceed the
7812bounds of a type; this is enforced with run-time checks. Such range
7813checking is meant to ensure program correctness by making sure
7814computations do not overflow, or indices on an array element access do
7815not exceed the bounds of the array.
7816
7817For expressions you use in @value{GDBN} commands, you can tell
7818@value{GDBN} to treat range errors in one of three ways: ignore them,
7819always treat them as errors and abandon the expression, or issue
7820warnings but evaluate the expression anyway.
7821
7822A range error can result from numerical overflow, from exceeding an
7823array index bound, or when you type a constant that is not a member
7824of any type. Some languages, however, do not treat overflows as an
7825error. In many implementations of C, mathematical overflow causes the
7826result to ``wrap around'' to lower values---for example, if @var{m} is
7827the largest integer value, and @var{s} is the smallest, then
7828
474c8240 7829@smallexample
c906108c 7830@var{m} + 1 @result{} @var{s}
474c8240 7831@end smallexample
c906108c
SS
7832
7833This, too, is specific to individual languages, and in some cases
7834specific to individual compilers or machines. @xref{Support, ,
7835Supported languages}, for further details on specific languages.
7836
7837@value{GDBN} provides some additional commands for controlling the range checker:
7838
d4f3574e 7839@kindex set check@r{, range}
c906108c
SS
7840@kindex set check range
7841@kindex show check range
7842@table @code
7843@item set check range auto
7844Set range checking on or off based on the current working language.
7845@xref{Support, ,Supported languages}, for the default settings for
7846each language.
7847
7848@item set check range on
7849@itemx set check range off
7850Set range checking on or off, overriding the default setting for the
7851current working language. A warning is issued if the setting does not
c3f6f71d
JM
7852match the language default. If a range error occurs and range checking is on,
7853then a message is printed and evaluation of the expression is aborted.
c906108c
SS
7854
7855@item set check range warn
7856Output messages when the @value{GDBN} range checker detects a range error,
7857but attempt to evaluate the expression anyway. Evaluating the
7858expression may still be impossible for other reasons, such as accessing
7859memory that the process does not own (a typical example from many Unix
7860systems).
7861
7862@item show range
7863Show the current setting of the range checker, and whether or not it is
7864being set automatically by @value{GDBN}.
7865@end table
c906108c 7866
6d2ebf8b 7867@node Support
c906108c 7868@section Supported languages
c906108c 7869
b37303ee 7870@value{GDBN} supports C, C@t{++}, Objective-C, Fortran, Java, assembly, and Modula-2.
cce74817 7871@c This is false ...
c906108c
SS
7872Some @value{GDBN} features may be used in expressions regardless of the
7873language you use: the @value{GDBN} @code{@@} and @code{::} operators,
7874and the @samp{@{type@}addr} construct (@pxref{Expressions,
7875,Expressions}) can be used with the constructs of any supported
7876language.
7877
7878The following sections detail to what degree each source language is
7879supported by @value{GDBN}. These sections are not meant to be language
7880tutorials or references, but serve only as a reference guide to what the
7881@value{GDBN} expression parser accepts, and what input and output
7882formats should look like for different languages. There are many good
7883books written on each of these languages; please look to these for a
7884language reference or tutorial.
7885
c906108c 7886@menu
b37303ee
AF
7887* C:: C and C@t{++}
7888* Objective-C:: Objective-C
7889* Modula-2:: Modula-2
c906108c
SS
7890@end menu
7891
6d2ebf8b 7892@node C
b37052ae 7893@subsection C and C@t{++}
7a292a7a 7894
b37052ae
EZ
7895@cindex C and C@t{++}
7896@cindex expressions in C or C@t{++}
c906108c 7897
b37052ae 7898Since C and C@t{++} are so closely related, many features of @value{GDBN} apply
c906108c
SS
7899to both languages. Whenever this is the case, we discuss those languages
7900together.
7901
41afff9a
EZ
7902@cindex C@t{++}
7903@cindex @code{g++}, @sc{gnu} C@t{++} compiler
b37052ae
EZ
7904@cindex @sc{gnu} C@t{++}
7905The C@t{++} debugging facilities are jointly implemented by the C@t{++}
7906compiler and @value{GDBN}. Therefore, to debug your C@t{++} code
7907effectively, you must compile your C@t{++} programs with a supported
7908C@t{++} compiler, such as @sc{gnu} @code{g++}, or the HP ANSI C@t{++}
c906108c
SS
7909compiler (@code{aCC}).
7910
0179ffac
DC
7911For best results when using @sc{gnu} C@t{++}, use the DWARF 2 debugging
7912format; if it doesn't work on your system, try the stabs+ debugging
7913format. You can select those formats explicitly with the @code{g++}
7914command-line options @option{-gdwarf-2} and @option{-gstabs+}.
7915@xref{Debugging Options,,Options for Debugging Your Program or @sc{gnu}
7916CC, gcc.info, Using @sc{gnu} CC}.
c906108c 7917
c906108c 7918@menu
b37052ae
EZ
7919* C Operators:: C and C@t{++} operators
7920* C Constants:: C and C@t{++} constants
7921* C plus plus expressions:: C@t{++} expressions
7922* C Defaults:: Default settings for C and C@t{++}
7923* C Checks:: C and C@t{++} type and range checks
c906108c 7924* Debugging C:: @value{GDBN} and C
b37052ae 7925* Debugging C plus plus:: @value{GDBN} features for C@t{++}
c906108c 7926@end menu
c906108c 7927
6d2ebf8b 7928@node C Operators
b37052ae 7929@subsubsection C and C@t{++} operators
7a292a7a 7930
b37052ae 7931@cindex C and C@t{++} operators
c906108c
SS
7932
7933Operators must be defined on values of specific types. For instance,
7934@code{+} is defined on numbers, but not on structures. Operators are
5d161b24 7935often defined on groups of types.
c906108c 7936
b37052ae 7937For the purposes of C and C@t{++}, the following definitions hold:
c906108c
SS
7938
7939@itemize @bullet
53a5351d 7940
c906108c 7941@item
c906108c 7942@emph{Integral types} include @code{int} with any of its storage-class
b37052ae 7943specifiers; @code{char}; @code{enum}; and, for C@t{++}, @code{bool}.
c906108c
SS
7944
7945@item
d4f3574e
SS
7946@emph{Floating-point types} include @code{float}, @code{double}, and
7947@code{long double} (if supported by the target platform).
c906108c
SS
7948
7949@item
53a5351d 7950@emph{Pointer types} include all types defined as @code{(@var{type} *)}.
c906108c
SS
7951
7952@item
7953@emph{Scalar types} include all of the above.
53a5351d 7954
c906108c
SS
7955@end itemize
7956
7957@noindent
7958The following operators are supported. They are listed here
7959in order of increasing precedence:
7960
7961@table @code
7962@item ,
7963The comma or sequencing operator. Expressions in a comma-separated list
7964are evaluated from left to right, with the result of the entire
7965expression being the last expression evaluated.
7966
7967@item =
7968Assignment. The value of an assignment expression is the value
7969assigned. Defined on scalar types.
7970
7971@item @var{op}=
7972Used in an expression of the form @w{@code{@var{a} @var{op}= @var{b}}},
7973and translated to @w{@code{@var{a} = @var{a op b}}}.
d4f3574e 7974@w{@code{@var{op}=}} and @code{=} have the same precedence.
c906108c
SS
7975@var{op} is any one of the operators @code{|}, @code{^}, @code{&},
7976@code{<<}, @code{>>}, @code{+}, @code{-}, @code{*}, @code{/}, @code{%}.
7977
7978@item ?:
7979The ternary operator. @code{@var{a} ? @var{b} : @var{c}} can be thought
7980of as: if @var{a} then @var{b} else @var{c}. @var{a} should be of an
7981integral type.
7982
7983@item ||
7984Logical @sc{or}. Defined on integral types.
7985
7986@item &&
7987Logical @sc{and}. Defined on integral types.
7988
7989@item |
7990Bitwise @sc{or}. Defined on integral types.
7991
7992@item ^
7993Bitwise exclusive-@sc{or}. Defined on integral types.
7994
7995@item &
7996Bitwise @sc{and}. Defined on integral types.
7997
7998@item ==@r{, }!=
7999Equality and inequality. Defined on scalar types. The value of these
8000expressions is 0 for false and non-zero for true.
8001
8002@item <@r{, }>@r{, }<=@r{, }>=
8003Less than, greater than, less than or equal, greater than or equal.
8004Defined on scalar types. The value of these expressions is 0 for false
8005and non-zero for true.
8006
8007@item <<@r{, }>>
8008left shift, and right shift. Defined on integral types.
8009
8010@item @@
8011The @value{GDBN} ``artificial array'' operator (@pxref{Expressions, ,Expressions}).
8012
8013@item +@r{, }-
8014Addition and subtraction. Defined on integral types, floating-point types and
8015pointer types.
8016
8017@item *@r{, }/@r{, }%
8018Multiplication, division, and modulus. Multiplication and division are
8019defined on integral and floating-point types. Modulus is defined on
8020integral types.
8021
8022@item ++@r{, }--
8023Increment and decrement. When appearing before a variable, the
8024operation is performed before the variable is used in an expression;
8025when appearing after it, the variable's value is used before the
8026operation takes place.
8027
8028@item *
8029Pointer dereferencing. Defined on pointer types. Same precedence as
8030@code{++}.
8031
8032@item &
8033Address operator. Defined on variables. Same precedence as @code{++}.
8034
b37052ae
EZ
8035For debugging C@t{++}, @value{GDBN} implements a use of @samp{&} beyond what is
8036allowed in the C@t{++} language itself: you can use @samp{&(&@var{ref})}
c906108c 8037(or, if you prefer, simply @samp{&&@var{ref}}) to examine the address
b37052ae 8038where a C@t{++} reference variable (declared with @samp{&@var{ref}}) is
c906108c 8039stored.
c906108c
SS
8040
8041@item -
8042Negative. Defined on integral and floating-point types. Same
8043precedence as @code{++}.
8044
8045@item !
8046Logical negation. Defined on integral types. Same precedence as
8047@code{++}.
8048
8049@item ~
8050Bitwise complement operator. Defined on integral types. Same precedence as
8051@code{++}.
8052
8053
8054@item .@r{, }->
8055Structure member, and pointer-to-structure member. For convenience,
8056@value{GDBN} regards the two as equivalent, choosing whether to dereference a
8057pointer based on the stored type information.
8058Defined on @code{struct} and @code{union} data.
8059
c906108c
SS
8060@item .*@r{, }->*
8061Dereferences of pointers to members.
c906108c
SS
8062
8063@item []
8064Array indexing. @code{@var{a}[@var{i}]} is defined as
8065@code{*(@var{a}+@var{i})}. Same precedence as @code{->}.
8066
8067@item ()
8068Function parameter list. Same precedence as @code{->}.
8069
c906108c 8070@item ::
b37052ae 8071C@t{++} scope resolution operator. Defined on @code{struct}, @code{union},
7a292a7a 8072and @code{class} types.
c906108c
SS
8073
8074@item ::
7a292a7a
SS
8075Doubled colons also represent the @value{GDBN} scope operator
8076(@pxref{Expressions, ,Expressions}). Same precedence as @code{::},
8077above.
c906108c
SS
8078@end table
8079
c906108c
SS
8080If an operator is redefined in the user code, @value{GDBN} usually
8081attempts to invoke the redefined version instead of using the operator's
8082predefined meaning.
c906108c 8083
c906108c 8084@menu
5d161b24 8085* C Constants::
c906108c
SS
8086@end menu
8087
6d2ebf8b 8088@node C Constants
b37052ae 8089@subsubsection C and C@t{++} constants
c906108c 8090
b37052ae 8091@cindex C and C@t{++} constants
c906108c 8092
b37052ae 8093@value{GDBN} allows you to express the constants of C and C@t{++} in the
c906108c 8094following ways:
c906108c
SS
8095
8096@itemize @bullet
8097@item
8098Integer constants are a sequence of digits. Octal constants are
6ca652b0
EZ
8099specified by a leading @samp{0} (i.e.@: zero), and hexadecimal constants
8100by a leading @samp{0x} or @samp{0X}. Constants may also end with a letter
c906108c
SS
8101@samp{l}, specifying that the constant should be treated as a
8102@code{long} value.
8103
8104@item
8105Floating point constants are a sequence of digits, followed by a decimal
8106point, followed by a sequence of digits, and optionally followed by an
8107exponent. An exponent is of the form:
8108@samp{@w{e@r{[[}+@r{]|}-@r{]}@var{nnn}}}, where @var{nnn} is another
8109sequence of digits. The @samp{+} is optional for positive exponents.
d4f3574e
SS
8110A floating-point constant may also end with a letter @samp{f} or
8111@samp{F}, specifying that the constant should be treated as being of
8112the @code{float} (as opposed to the default @code{double}) type; or with
8113a letter @samp{l} or @samp{L}, which specifies a @code{long double}
8114constant.
c906108c
SS
8115
8116@item
8117Enumerated constants consist of enumerated identifiers, or their
8118integral equivalents.
8119
8120@item
8121Character constants are a single character surrounded by single quotes
8122(@code{'}), or a number---the ordinal value of the corresponding character
d4f3574e 8123(usually its @sc{ascii} value). Within quotes, the single character may
c906108c
SS
8124be represented by a letter or by @dfn{escape sequences}, which are of
8125the form @samp{\@var{nnn}}, where @var{nnn} is the octal representation
8126of the character's ordinal value; or of the form @samp{\@var{x}}, where
8127@samp{@var{x}} is a predefined special character---for example,
8128@samp{\n} for newline.
8129
8130@item
96a2c332
SS
8131String constants are a sequence of character constants surrounded by
8132double quotes (@code{"}). Any valid character constant (as described
8133above) may appear. Double quotes within the string must be preceded by
8134a backslash, so for instance @samp{"a\"b'c"} is a string of five
8135characters.
c906108c
SS
8136
8137@item
8138Pointer constants are an integral value. You can also write pointers
8139to constants using the C operator @samp{&}.
8140
8141@item
8142Array constants are comma-separated lists surrounded by braces @samp{@{}
8143and @samp{@}}; for example, @samp{@{1,2,3@}} is a three-element array of
8144integers, @samp{@{@{1,2@}, @{3,4@}, @{5,6@}@}} is a three-by-two array,
8145and @samp{@{&"hi", &"there", &"fred"@}} is a three-element array of pointers.
8146@end itemize
8147
c906108c 8148@menu
5d161b24
DB
8149* C plus plus expressions::
8150* C Defaults::
8151* C Checks::
c906108c 8152
5d161b24 8153* Debugging C::
c906108c
SS
8154@end menu
8155
6d2ebf8b 8156@node C plus plus expressions
b37052ae
EZ
8157@subsubsection C@t{++} expressions
8158
8159@cindex expressions in C@t{++}
8160@value{GDBN} expression handling can interpret most C@t{++} expressions.
8161
0179ffac
DC
8162@cindex debugging C@t{++} programs
8163@cindex C@t{++} compilers
8164@cindex debug formats and C@t{++}
8165@cindex @value{NGCC} and C@t{++}
c906108c 8166@quotation
b37052ae 8167@emph{Warning:} @value{GDBN} can only debug C@t{++} code if you use the
0179ffac
DC
8168proper compiler and the proper debug format. Currently, @value{GDBN}
8169works best when debugging C@t{++} code that is compiled with
8170@value{NGCC} 2.95.3 or with @value{NGCC} 3.1 or newer, using the options
8171@option{-gdwarf-2} or @option{-gstabs+}. DWARF 2 is preferred over
8172stabs+. Most configurations of @value{NGCC} emit either DWARF 2 or
8173stabs+ as their default debug format, so you usually don't need to
8174specify a debug format explicitly. Other compilers and/or debug formats
8175are likely to work badly or not at all when using @value{GDBN} to debug
8176C@t{++} code.
c906108c 8177@end quotation
c906108c
SS
8178
8179@enumerate
8180
8181@cindex member functions
8182@item
8183Member function calls are allowed; you can use expressions like
8184
474c8240 8185@smallexample
c906108c 8186count = aml->GetOriginal(x, y)
474c8240 8187@end smallexample
c906108c 8188
41afff9a 8189@vindex this@r{, inside C@t{++} member functions}
b37052ae 8190@cindex namespace in C@t{++}
c906108c
SS
8191@item
8192While a member function is active (in the selected stack frame), your
8193expressions have the same namespace available as the member function;
8194that is, @value{GDBN} allows implicit references to the class instance
b37052ae 8195pointer @code{this} following the same rules as C@t{++}.
c906108c 8196
c906108c 8197@cindex call overloaded functions
d4f3574e 8198@cindex overloaded functions, calling
b37052ae 8199@cindex type conversions in C@t{++}
c906108c
SS
8200@item
8201You can call overloaded functions; @value{GDBN} resolves the function
d4f3574e 8202call to the right definition, with some restrictions. @value{GDBN} does not
c906108c
SS
8203perform overload resolution involving user-defined type conversions,
8204calls to constructors, or instantiations of templates that do not exist
8205in the program. It also cannot handle ellipsis argument lists or
8206default arguments.
8207
8208It does perform integral conversions and promotions, floating-point
8209promotions, arithmetic conversions, pointer conversions, conversions of
8210class objects to base classes, and standard conversions such as those of
8211functions or arrays to pointers; it requires an exact match on the
8212number of function arguments.
8213
8214Overload resolution is always performed, unless you have specified
8215@code{set overload-resolution off}. @xref{Debugging C plus plus,
b37052ae 8216,@value{GDBN} features for C@t{++}}.
c906108c 8217
d4f3574e 8218You must specify @code{set overload-resolution off} in order to use an
c906108c
SS
8219explicit function signature to call an overloaded function, as in
8220@smallexample
8221p 'foo(char,int)'('x', 13)
8222@end smallexample
d4f3574e 8223
c906108c 8224The @value{GDBN} command-completion facility can simplify this;
d4f3574e 8225see @ref{Completion, ,Command completion}.
c906108c 8226
c906108c
SS
8227@cindex reference declarations
8228@item
b37052ae
EZ
8229@value{GDBN} understands variables declared as C@t{++} references; you can use
8230them in expressions just as you do in C@t{++} source---they are automatically
c906108c
SS
8231dereferenced.
8232
8233In the parameter list shown when @value{GDBN} displays a frame, the values of
8234reference variables are not displayed (unlike other variables); this
8235avoids clutter, since references are often used for large structures.
8236The @emph{address} of a reference variable is always shown, unless
8237you have specified @samp{set print address off}.
8238
8239@item
b37052ae 8240@value{GDBN} supports the C@t{++} name resolution operator @code{::}---your
c906108c
SS
8241expressions can use it just as expressions in your program do. Since
8242one scope may be defined in another, you can use @code{::} repeatedly if
8243necessary, for example in an expression like
8244@samp{@var{scope1}::@var{scope2}::@var{name}}. @value{GDBN} also allows
b37052ae 8245resolving name scope by reference to source files, in both C and C@t{++}
c906108c
SS
8246debugging (@pxref{Variables, ,Program variables}).
8247@end enumerate
8248
b37052ae 8249In addition, when used with HP's C@t{++} compiler, @value{GDBN} supports
53a5351d
JM
8250calling virtual functions correctly, printing out virtual bases of
8251objects, calling functions in a base subobject, casting objects, and
8252invoking user-defined operators.
c906108c 8253
6d2ebf8b 8254@node C Defaults
b37052ae 8255@subsubsection C and C@t{++} defaults
7a292a7a 8256
b37052ae 8257@cindex C and C@t{++} defaults
c906108c 8258
c906108c
SS
8259If you allow @value{GDBN} to set type and range checking automatically, they
8260both default to @code{off} whenever the working language changes to
b37052ae 8261C or C@t{++}. This happens regardless of whether you or @value{GDBN}
c906108c 8262selects the working language.
c906108c
SS
8263
8264If you allow @value{GDBN} to set the language automatically, it
8265recognizes source files whose names end with @file{.c}, @file{.C}, or
8266@file{.cc}, etc, and when @value{GDBN} enters code compiled from one of
b37052ae 8267these files, it sets the working language to C or C@t{++}.
c906108c
SS
8268@xref{Automatically, ,Having @value{GDBN} infer the source language},
8269for further details.
8270
c906108c
SS
8271@c Type checking is (a) primarily motivated by Modula-2, and (b)
8272@c unimplemented. If (b) changes, it might make sense to let this node
8273@c appear even if Mod-2 does not, but meanwhile ignore it. roland 16jul93.
7a292a7a 8274
6d2ebf8b 8275@node C Checks
b37052ae 8276@subsubsection C and C@t{++} type and range checks
7a292a7a 8277
b37052ae 8278@cindex C and C@t{++} checks
c906108c 8279
b37052ae 8280By default, when @value{GDBN} parses C or C@t{++} expressions, type checking
c906108c
SS
8281is not used. However, if you turn type checking on, @value{GDBN}
8282considers two variables type equivalent if:
8283
8284@itemize @bullet
8285@item
8286The two variables are structured and have the same structure, union, or
8287enumerated tag.
8288
8289@item
8290The two variables have the same type name, or types that have been
8291declared equivalent through @code{typedef}.
8292
8293@ignore
8294@c leaving this out because neither J Gilmore nor R Pesch understand it.
8295@c FIXME--beers?
8296@item
8297The two @code{struct}, @code{union}, or @code{enum} variables are
8298declared in the same declaration. (Note: this may not be true for all C
8299compilers.)
8300@end ignore
8301@end itemize
8302
8303Range checking, if turned on, is done on mathematical operations. Array
8304indices are not checked, since they are often used to index a pointer
8305that is not itself an array.
c906108c 8306
6d2ebf8b 8307@node Debugging C
c906108c 8308@subsubsection @value{GDBN} and C
c906108c
SS
8309
8310The @code{set print union} and @code{show print union} commands apply to
8311the @code{union} type. When set to @samp{on}, any @code{union} that is
7a292a7a
SS
8312inside a @code{struct} or @code{class} is also printed. Otherwise, it
8313appears as @samp{@{...@}}.
c906108c
SS
8314
8315The @code{@@} operator aids in the debugging of dynamic arrays, formed
8316with pointers and a memory allocation function. @xref{Expressions,
8317,Expressions}.
8318
c906108c 8319@menu
5d161b24 8320* Debugging C plus plus::
c906108c
SS
8321@end menu
8322
6d2ebf8b 8323@node Debugging C plus plus
b37052ae 8324@subsubsection @value{GDBN} features for C@t{++}
c906108c 8325
b37052ae 8326@cindex commands for C@t{++}
7a292a7a 8327
b37052ae
EZ
8328Some @value{GDBN} commands are particularly useful with C@t{++}, and some are
8329designed specifically for use with C@t{++}. Here is a summary:
c906108c
SS
8330
8331@table @code
8332@cindex break in overloaded functions
8333@item @r{breakpoint menus}
8334When you want a breakpoint in a function whose name is overloaded,
8335@value{GDBN} breakpoint menus help you specify which function definition
8336you want. @xref{Breakpoint Menus,,Breakpoint menus}.
8337
b37052ae 8338@cindex overloading in C@t{++}
c906108c
SS
8339@item rbreak @var{regex}
8340Setting breakpoints using regular expressions is helpful for setting
8341breakpoints on overloaded functions that are not members of any special
8342classes.
8343@xref{Set Breaks, ,Setting breakpoints}.
8344
b37052ae 8345@cindex C@t{++} exception handling
c906108c
SS
8346@item catch throw
8347@itemx catch catch
b37052ae 8348Debug C@t{++} exception handling using these commands. @xref{Set
c906108c
SS
8349Catchpoints, , Setting catchpoints}.
8350
8351@cindex inheritance
8352@item ptype @var{typename}
8353Print inheritance relationships as well as other information for type
8354@var{typename}.
8355@xref{Symbols, ,Examining the Symbol Table}.
8356
b37052ae 8357@cindex C@t{++} symbol display
c906108c
SS
8358@item set print demangle
8359@itemx show print demangle
8360@itemx set print asm-demangle
8361@itemx show print asm-demangle
b37052ae
EZ
8362Control whether C@t{++} symbols display in their source form, both when
8363displaying code as C@t{++} source and when displaying disassemblies.
c906108c
SS
8364@xref{Print Settings, ,Print settings}.
8365
8366@item set print object
8367@itemx show print object
8368Choose whether to print derived (actual) or declared types of objects.
8369@xref{Print Settings, ,Print settings}.
8370
8371@item set print vtbl
8372@itemx show print vtbl
8373Control the format for printing virtual function tables.
8374@xref{Print Settings, ,Print settings}.
c906108c 8375(The @code{vtbl} commands do not work on programs compiled with the HP
b37052ae 8376ANSI C@t{++} compiler (@code{aCC}).)
c906108c
SS
8377
8378@kindex set overload-resolution
d4f3574e 8379@cindex overloaded functions, overload resolution
c906108c 8380@item set overload-resolution on
b37052ae 8381Enable overload resolution for C@t{++} expression evaluation. The default
c906108c
SS
8382is on. For overloaded functions, @value{GDBN} evaluates the arguments
8383and searches for a function whose signature matches the argument types,
b37052ae 8384using the standard C@t{++} conversion rules (see @ref{C plus plus expressions, ,C@t{++}
d4f3574e 8385expressions}, for details). If it cannot find a match, it emits a
c906108c
SS
8386message.
8387
8388@item set overload-resolution off
b37052ae 8389Disable overload resolution for C@t{++} expression evaluation. For
c906108c
SS
8390overloaded functions that are not class member functions, @value{GDBN}
8391chooses the first function of the specified name that it finds in the
8392symbol table, whether or not its arguments are of the correct type. For
8393overloaded functions that are class member functions, @value{GDBN}
8394searches for a function whose signature @emph{exactly} matches the
8395argument types.
c906108c
SS
8396
8397@item @r{Overloaded symbol names}
8398You can specify a particular definition of an overloaded symbol, using
b37052ae 8399the same notation that is used to declare such symbols in C@t{++}: type
c906108c
SS
8400@code{@var{symbol}(@var{types})} rather than just @var{symbol}. You can
8401also use the @value{GDBN} command-line word completion facilities to list the
8402available choices, or to finish the type list for you.
8403@xref{Completion,, Command completion}, for details on how to do this.
8404@end table
c906108c 8405
b37303ee
AF
8406@node Objective-C
8407@subsection Objective-C
8408
8409@cindex Objective-C
8410This section provides information about some commands and command
8411options that are useful for debugging Objective-C code.
8412
8413@menu
8414* Method Names in Commands::
8415* The Print Command with Objective-C::
8416@end menu
8417
8418@node Method Names in Commands, The Print Command with Objective-C, Objective-C, Objective-C
8419@subsubsection Method Names in Commands
8420
8421The following commands have been extended to accept Objective-C method
8422names as line specifications:
8423
8424@kindex clear@r{, and Objective-C}
8425@kindex break@r{, and Objective-C}
8426@kindex info line@r{, and Objective-C}
8427@kindex jump@r{, and Objective-C}
8428@kindex list@r{, and Objective-C}
8429@itemize
8430@item @code{clear}
8431@item @code{break}
8432@item @code{info line}
8433@item @code{jump}
8434@item @code{list}
8435@end itemize
8436
8437A fully qualified Objective-C method name is specified as
8438
8439@smallexample
8440-[@var{Class} @var{methodName}]
8441@end smallexample
8442
8443where the minus sign is used to indicate an instance method and a plus
8444sign (not shown) is used to indicate a class method. The
8445class name @var{Class} and method name @var{methoName} are enclosed in
8446brackets, similar to the way messages are specified in Objective-C source
8447code. For example, to set a breakpoint at the @code{create} instance method of
8448class @code{Fruit} in the program currently being debugged, enter:
8449
8450@smallexample
8451break -[Fruit create]
8452@end smallexample
8453
8454To list ten program lines around the @code{initialize} class method,
8455enter:
8456
8457@smallexample
8458list +[NSText initialize]
8459@end smallexample
8460
8461In the current version of GDB, the plus or minus sign is required. In
8462future versions of GDB, the plus or minus sign will be optional, but you
8463can use it to narrow the search. It is also possible to specify just a
8464method name:
8465
8466@smallexample
8467break create
8468@end smallexample
8469
8470You must specify the complete method name, including any colons. If
8471your program's source files contain more than one @code{create} method,
8472you'll be presented with a numbered list of classes that implement that
8473method. Indicate your choice by number, or type @samp{0} to exit if
8474none apply.
8475
8476As another example, to clear a breakpoint established at the
8477@code{makeKeyAndOrderFront:} method of the @code{NSWindow} class, enter:
8478
8479@smallexample
8480clear -[NSWindow makeKeyAndOrderFront:]
8481@end smallexample
8482
8483@node The Print Command with Objective-C
8484@subsubsection The Print Command With Objective-C
8485
8486The print command has also been extended to accept methods. For example:
8487
8488@smallexample
8489print -[object hash]
8490@end smallexample
8491
8492@cindex print an Objective-C object description
8493will tell gdb to send the -hash message to object and print the
8494result. Also an additional command has been added, @code{print-object}
8495or @code{po} for short, which is meant to print the description of an
8496object. However, this command may only work with certain Objective-C
8497libraries that have a particular hook function, called
8498@code{_NSPrintForDebugger} defined.
8499
8500@node Modula-2, , Objective-C, Support
c906108c 8501@subsection Modula-2
7a292a7a 8502
d4f3574e 8503@cindex Modula-2, @value{GDBN} support
c906108c
SS
8504
8505The extensions made to @value{GDBN} to support Modula-2 only support
8506output from the @sc{gnu} Modula-2 compiler (which is currently being
8507developed). Other Modula-2 compilers are not currently supported, and
8508attempting to debug executables produced by them is most likely
8509to give an error as @value{GDBN} reads in the executable's symbol
8510table.
8511
8512@cindex expressions in Modula-2
8513@menu
8514* M2 Operators:: Built-in operators
8515* Built-In Func/Proc:: Built-in functions and procedures
8516* M2 Constants:: Modula-2 constants
8517* M2 Defaults:: Default settings for Modula-2
8518* Deviations:: Deviations from standard Modula-2
8519* M2 Checks:: Modula-2 type and range checks
8520* M2 Scope:: The scope operators @code{::} and @code{.}
8521* GDB/M2:: @value{GDBN} and Modula-2
8522@end menu
8523
6d2ebf8b 8524@node M2 Operators
c906108c
SS
8525@subsubsection Operators
8526@cindex Modula-2 operators
8527
8528Operators must be defined on values of specific types. For instance,
8529@code{+} is defined on numbers, but not on structures. Operators are
8530often defined on groups of types. For the purposes of Modula-2, the
8531following definitions hold:
8532
8533@itemize @bullet
8534
8535@item
8536@emph{Integral types} consist of @code{INTEGER}, @code{CARDINAL}, and
8537their subranges.
8538
8539@item
8540@emph{Character types} consist of @code{CHAR} and its subranges.
8541
8542@item
8543@emph{Floating-point types} consist of @code{REAL}.
8544
8545@item
8546@emph{Pointer types} consist of anything declared as @code{POINTER TO
8547@var{type}}.
8548
8549@item
8550@emph{Scalar types} consist of all of the above.
8551
8552@item
8553@emph{Set types} consist of @code{SET} and @code{BITSET} types.
8554
8555@item
8556@emph{Boolean types} consist of @code{BOOLEAN}.
8557@end itemize
8558
8559@noindent
8560The following operators are supported, and appear in order of
8561increasing precedence:
8562
8563@table @code
8564@item ,
8565Function argument or array index separator.
8566
8567@item :=
8568Assignment. The value of @var{var} @code{:=} @var{value} is
8569@var{value}.
8570
8571@item <@r{, }>
8572Less than, greater than on integral, floating-point, or enumerated
8573types.
8574
8575@item <=@r{, }>=
96a2c332 8576Less than or equal to, greater than or equal to
c906108c
SS
8577on integral, floating-point and enumerated types, or set inclusion on
8578set types. Same precedence as @code{<}.
8579
8580@item =@r{, }<>@r{, }#
8581Equality and two ways of expressing inequality, valid on scalar types.
8582Same precedence as @code{<}. In @value{GDBN} scripts, only @code{<>} is
8583available for inequality, since @code{#} conflicts with the script
8584comment character.
8585
8586@item IN
8587Set membership. Defined on set types and the types of their members.
8588Same precedence as @code{<}.
8589
8590@item OR
8591Boolean disjunction. Defined on boolean types.
8592
8593@item AND@r{, }&
d4f3574e 8594Boolean conjunction. Defined on boolean types.
c906108c
SS
8595
8596@item @@
8597The @value{GDBN} ``artificial array'' operator (@pxref{Expressions, ,Expressions}).
8598
8599@item +@r{, }-
8600Addition and subtraction on integral and floating-point types, or union
8601and difference on set types.
8602
8603@item *
8604Multiplication on integral and floating-point types, or set intersection
8605on set types.
8606
8607@item /
8608Division on floating-point types, or symmetric set difference on set
8609types. Same precedence as @code{*}.
8610
8611@item DIV@r{, }MOD
8612Integer division and remainder. Defined on integral types. Same
8613precedence as @code{*}.
8614
8615@item -
8616Negative. Defined on @code{INTEGER} and @code{REAL} data.
8617
8618@item ^
8619Pointer dereferencing. Defined on pointer types.
8620
8621@item NOT
8622Boolean negation. Defined on boolean types. Same precedence as
8623@code{^}.
8624
8625@item .
8626@code{RECORD} field selector. Defined on @code{RECORD} data. Same
8627precedence as @code{^}.
8628
8629@item []
8630Array indexing. Defined on @code{ARRAY} data. Same precedence as @code{^}.
8631
8632@item ()
8633Procedure argument list. Defined on @code{PROCEDURE} objects. Same precedence
8634as @code{^}.
8635
8636@item ::@r{, }.
8637@value{GDBN} and Modula-2 scope operators.
8638@end table
8639
8640@quotation
8641@emph{Warning:} Sets and their operations are not yet supported, so @value{GDBN}
8642treats the use of the operator @code{IN}, or the use of operators
8643@code{+}, @code{-}, @code{*}, @code{/}, @code{=}, , @code{<>}, @code{#},
8644@code{<=}, and @code{>=} on sets as an error.
8645@end quotation
8646
cb51c4e0 8647
6d2ebf8b 8648@node Built-In Func/Proc
c906108c 8649@subsubsection Built-in functions and procedures
cb51c4e0 8650@cindex Modula-2 built-ins
c906108c
SS
8651
8652Modula-2 also makes available several built-in procedures and functions.
8653In describing these, the following metavariables are used:
8654
8655@table @var
8656
8657@item a
8658represents an @code{ARRAY} variable.
8659
8660@item c
8661represents a @code{CHAR} constant or variable.
8662
8663@item i
8664represents a variable or constant of integral type.
8665
8666@item m
8667represents an identifier that belongs to a set. Generally used in the
8668same function with the metavariable @var{s}. The type of @var{s} should
8669be @code{SET OF @var{mtype}} (where @var{mtype} is the type of @var{m}).
8670
8671@item n
8672represents a variable or constant of integral or floating-point type.
8673
8674@item r
8675represents a variable or constant of floating-point type.
8676
8677@item t
8678represents a type.
8679
8680@item v
8681represents a variable.
8682
8683@item x
8684represents a variable or constant of one of many types. See the
8685explanation of the function for details.
8686@end table
8687
8688All Modula-2 built-in procedures also return a result, described below.
8689
8690@table @code
8691@item ABS(@var{n})
8692Returns the absolute value of @var{n}.
8693
8694@item CAP(@var{c})
8695If @var{c} is a lower case letter, it returns its upper case
c3f6f71d 8696equivalent, otherwise it returns its argument.
c906108c
SS
8697
8698@item CHR(@var{i})
8699Returns the character whose ordinal value is @var{i}.
8700
8701@item DEC(@var{v})
c3f6f71d 8702Decrements the value in the variable @var{v} by one. Returns the new value.
c906108c
SS
8703
8704@item DEC(@var{v},@var{i})
8705Decrements the value in the variable @var{v} by @var{i}. Returns the
8706new value.
8707
8708@item EXCL(@var{m},@var{s})
8709Removes the element @var{m} from the set @var{s}. Returns the new
8710set.
8711
8712@item FLOAT(@var{i})
8713Returns the floating point equivalent of the integer @var{i}.
8714
8715@item HIGH(@var{a})
8716Returns the index of the last member of @var{a}.
8717
8718@item INC(@var{v})
c3f6f71d 8719Increments the value in the variable @var{v} by one. Returns the new value.
c906108c
SS
8720
8721@item INC(@var{v},@var{i})
8722Increments the value in the variable @var{v} by @var{i}. Returns the
8723new value.
8724
8725@item INCL(@var{m},@var{s})
8726Adds the element @var{m} to the set @var{s} if it is not already
8727there. Returns the new set.
8728
8729@item MAX(@var{t})
8730Returns the maximum value of the type @var{t}.
8731
8732@item MIN(@var{t})
8733Returns the minimum value of the type @var{t}.
8734
8735@item ODD(@var{i})
8736Returns boolean TRUE if @var{i} is an odd number.
8737
8738@item ORD(@var{x})
8739Returns the ordinal value of its argument. For example, the ordinal
c3f6f71d
JM
8740value of a character is its @sc{ascii} value (on machines supporting the
8741@sc{ascii} character set). @var{x} must be of an ordered type, which include
c906108c
SS
8742integral, character and enumerated types.
8743
8744@item SIZE(@var{x})
8745Returns the size of its argument. @var{x} can be a variable or a type.
8746
8747@item TRUNC(@var{r})
8748Returns the integral part of @var{r}.
8749
8750@item VAL(@var{t},@var{i})
8751Returns the member of the type @var{t} whose ordinal value is @var{i}.
8752@end table
8753
8754@quotation
8755@emph{Warning:} Sets and their operations are not yet supported, so
8756@value{GDBN} treats the use of procedures @code{INCL} and @code{EXCL} as
8757an error.
8758@end quotation
8759
8760@cindex Modula-2 constants
6d2ebf8b 8761@node M2 Constants
c906108c
SS
8762@subsubsection Constants
8763
8764@value{GDBN} allows you to express the constants of Modula-2 in the following
8765ways:
8766
8767@itemize @bullet
8768
8769@item
8770Integer constants are simply a sequence of digits. When used in an
8771expression, a constant is interpreted to be type-compatible with the
8772rest of the expression. Hexadecimal integers are specified by a
8773trailing @samp{H}, and octal integers by a trailing @samp{B}.
8774
8775@item
8776Floating point constants appear as a sequence of digits, followed by a
8777decimal point and another sequence of digits. An optional exponent can
8778then be specified, in the form @samp{E@r{[}+@r{|}-@r{]}@var{nnn}}, where
8779@samp{@r{[}+@r{|}-@r{]}@var{nnn}} is the desired exponent. All of the
8780digits of the floating point constant must be valid decimal (base 10)
8781digits.
8782
8783@item
8784Character constants consist of a single character enclosed by a pair of
8785like quotes, either single (@code{'}) or double (@code{"}). They may
c3f6f71d 8786also be expressed by their ordinal value (their @sc{ascii} value, usually)
c906108c
SS
8787followed by a @samp{C}.
8788
8789@item
8790String constants consist of a sequence of characters enclosed by a
8791pair of like quotes, either single (@code{'}) or double (@code{"}).
8792Escape sequences in the style of C are also allowed. @xref{C
b37052ae 8793Constants, ,C and C@t{++} constants}, for a brief explanation of escape
c906108c
SS
8794sequences.
8795
8796@item
8797Enumerated constants consist of an enumerated identifier.
8798
8799@item
8800Boolean constants consist of the identifiers @code{TRUE} and
8801@code{FALSE}.
8802
8803@item
8804Pointer constants consist of integral values only.
8805
8806@item
8807Set constants are not yet supported.
8808@end itemize
8809
6d2ebf8b 8810@node M2 Defaults
c906108c
SS
8811@subsubsection Modula-2 defaults
8812@cindex Modula-2 defaults
8813
8814If type and range checking are set automatically by @value{GDBN}, they
8815both default to @code{on} whenever the working language changes to
d4f3574e 8816Modula-2. This happens regardless of whether you or @value{GDBN}
c906108c
SS
8817selected the working language.
8818
8819If you allow @value{GDBN} to set the language automatically, then entering
8820code compiled from a file whose name ends with @file{.mod} sets the
d4f3574e 8821working language to Modula-2. @xref{Automatically, ,Having @value{GDBN} set
c906108c
SS
8822the language automatically}, for further details.
8823
6d2ebf8b 8824@node Deviations
c906108c
SS
8825@subsubsection Deviations from standard Modula-2
8826@cindex Modula-2, deviations from
8827
8828A few changes have been made to make Modula-2 programs easier to debug.
8829This is done primarily via loosening its type strictness:
8830
8831@itemize @bullet
8832@item
8833Unlike in standard Modula-2, pointer constants can be formed by
8834integers. This allows you to modify pointer variables during
8835debugging. (In standard Modula-2, the actual address contained in a
8836pointer variable is hidden from you; it can only be modified
8837through direct assignment to another pointer variable or expression that
8838returned a pointer.)
8839
8840@item
8841C escape sequences can be used in strings and characters to represent
8842non-printable characters. @value{GDBN} prints out strings with these
8843escape sequences embedded. Single non-printable characters are
8844printed using the @samp{CHR(@var{nnn})} format.
8845
8846@item
8847The assignment operator (@code{:=}) returns the value of its right-hand
8848argument.
8849
8850@item
8851All built-in procedures both modify @emph{and} return their argument.
8852@end itemize
8853
6d2ebf8b 8854@node M2 Checks
c906108c
SS
8855@subsubsection Modula-2 type and range checks
8856@cindex Modula-2 checks
8857
8858@quotation
8859@emph{Warning:} in this release, @value{GDBN} does not yet perform type or
8860range checking.
8861@end quotation
8862@c FIXME remove warning when type/range checks added
8863
8864@value{GDBN} considers two Modula-2 variables type equivalent if:
8865
8866@itemize @bullet
8867@item
8868They are of types that have been declared equivalent via a @code{TYPE
8869@var{t1} = @var{t2}} statement
8870
8871@item
8872They have been declared on the same line. (Note: This is true of the
8873@sc{gnu} Modula-2 compiler, but it may not be true of other compilers.)
8874@end itemize
8875
8876As long as type checking is enabled, any attempt to combine variables
8877whose types are not equivalent is an error.
8878
8879Range checking is done on all mathematical operations, assignment, array
8880index bounds, and all built-in functions and procedures.
8881
6d2ebf8b 8882@node M2 Scope
c906108c
SS
8883@subsubsection The scope operators @code{::} and @code{.}
8884@cindex scope
41afff9a 8885@cindex @code{.}, Modula-2 scope operator
c906108c
SS
8886@cindex colon, doubled as scope operator
8887@ifinfo
41afff9a 8888@vindex colon-colon@r{, in Modula-2}
c906108c
SS
8889@c Info cannot handle :: but TeX can.
8890@end ifinfo
8891@iftex
41afff9a 8892@vindex ::@r{, in Modula-2}
c906108c
SS
8893@end iftex
8894
8895There are a few subtle differences between the Modula-2 scope operator
8896(@code{.}) and the @value{GDBN} scope operator (@code{::}). The two have
8897similar syntax:
8898
474c8240 8899@smallexample
c906108c
SS
8900
8901@var{module} . @var{id}
8902@var{scope} :: @var{id}
474c8240 8903@end smallexample
c906108c
SS
8904
8905@noindent
8906where @var{scope} is the name of a module or a procedure,
8907@var{module} the name of a module, and @var{id} is any declared
8908identifier within your program, except another module.
8909
8910Using the @code{::} operator makes @value{GDBN} search the scope
8911specified by @var{scope} for the identifier @var{id}. If it is not
8912found in the specified scope, then @value{GDBN} searches all scopes
8913enclosing the one specified by @var{scope}.
8914
8915Using the @code{.} operator makes @value{GDBN} search the current scope for
8916the identifier specified by @var{id} that was imported from the
8917definition module specified by @var{module}. With this operator, it is
8918an error if the identifier @var{id} was not imported from definition
8919module @var{module}, or if @var{id} is not an identifier in
8920@var{module}.
8921
6d2ebf8b 8922@node GDB/M2
c906108c
SS
8923@subsubsection @value{GDBN} and Modula-2
8924
8925Some @value{GDBN} commands have little use when debugging Modula-2 programs.
8926Five subcommands of @code{set print} and @code{show print} apply
b37052ae 8927specifically to C and C@t{++}: @samp{vtbl}, @samp{demangle},
c906108c 8928@samp{asm-demangle}, @samp{object}, and @samp{union}. The first four
b37052ae 8929apply to C@t{++}, and the last to the C @code{union} type, which has no direct
c906108c
SS
8930analogue in Modula-2.
8931
8932The @code{@@} operator (@pxref{Expressions, ,Expressions}), while available
d4f3574e 8933with any language, is not useful with Modula-2. Its
c906108c 8934intent is to aid the debugging of @dfn{dynamic arrays}, which cannot be
b37052ae 8935created in Modula-2 as they can in C or C@t{++}. However, because an
c906108c 8936address can be specified by an integral constant, the construct
d4f3574e 8937@samp{@{@var{type}@}@var{adrexp}} is still useful.
c906108c
SS
8938
8939@cindex @code{#} in Modula-2
8940In @value{GDBN} scripts, the Modula-2 inequality operator @code{#} is
8941interpreted as the beginning of a comment. Use @code{<>} instead.
c906108c 8942
4e562065
JB
8943@node Unsupported languages
8944@section Unsupported languages
8945
8946@cindex unsupported languages
8947@cindex minimal language
8948In addition to the other fully-supported programming languages,
8949@value{GDBN} also provides a pseudo-language, called @code{minimal}.
8950It does not represent a real programming language, but provides a set
8951of capabilities close to what the C or assembly languages provide.
8952This should allow most simple operations to be performed while debugging
8953an application that uses a language currently not supported by @value{GDBN}.
8954
8955If the language is set to @code{auto}, @value{GDBN} will automatically
8956select this language if the current frame corresponds to an unsupported
8957language.
8958
6d2ebf8b 8959@node Symbols
c906108c
SS
8960@chapter Examining the Symbol Table
8961
d4f3574e 8962The commands described in this chapter allow you to inquire about the
c906108c
SS
8963symbols (names of variables, functions and types) defined in your
8964program. This information is inherent in the text of your program and
8965does not change as your program executes. @value{GDBN} finds it in your
8966program's symbol table, in the file indicated when you started @value{GDBN}
8967(@pxref{File Options, ,Choosing files}), or by one of the
8968file-management commands (@pxref{Files, ,Commands to specify files}).
8969
8970@cindex symbol names
8971@cindex names of symbols
8972@cindex quoting names
8973Occasionally, you may need to refer to symbols that contain unusual
8974characters, which @value{GDBN} ordinarily treats as word delimiters. The
8975most frequent case is in referring to static variables in other
8976source files (@pxref{Variables,,Program variables}). File names
8977are recorded in object files as debugging symbols, but @value{GDBN} would
8978ordinarily parse a typical file name, like @file{foo.c}, as the three words
8979@samp{foo} @samp{.} @samp{c}. To allow @value{GDBN} to recognize
8980@samp{foo.c} as a single symbol, enclose it in single quotes; for example,
8981
474c8240 8982@smallexample
c906108c 8983p 'foo.c'::x
474c8240 8984@end smallexample
c906108c
SS
8985
8986@noindent
8987looks up the value of @code{x} in the scope of the file @file{foo.c}.
8988
8989@table @code
8990@kindex info address
b37052ae 8991@cindex address of a symbol
c906108c
SS
8992@item info address @var{symbol}
8993Describe where the data for @var{symbol} is stored. For a register
8994variable, this says which register it is kept in. For a non-register
8995local variable, this prints the stack-frame offset at which the variable
8996is always stored.
8997
8998Note the contrast with @samp{print &@var{symbol}}, which does not work
8999at all for a register variable, and for a stack local variable prints
9000the exact address of the current instantiation of the variable.
9001
3d67e040 9002@kindex info symbol
b37052ae 9003@cindex symbol from address
3d67e040
EZ
9004@item info symbol @var{addr}
9005Print the name of a symbol which is stored at the address @var{addr}.
9006If no symbol is stored exactly at @var{addr}, @value{GDBN} prints the
9007nearest symbol and an offset from it:
9008
474c8240 9009@smallexample
3d67e040
EZ
9010(@value{GDBP}) info symbol 0x54320
9011_initialize_vx + 396 in section .text
474c8240 9012@end smallexample
3d67e040
EZ
9013
9014@noindent
9015This is the opposite of the @code{info address} command. You can use
9016it to find out the name of a variable or a function given its address.
9017
c906108c 9018@kindex whatis
d4f3574e
SS
9019@item whatis @var{expr}
9020Print the data type of expression @var{expr}. @var{expr} is not
c906108c
SS
9021actually evaluated, and any side-effecting operations (such as
9022assignments or function calls) inside it do not take place.
9023@xref{Expressions, ,Expressions}.
9024
9025@item whatis
9026Print the data type of @code{$}, the last value in the value history.
9027
9028@kindex ptype
9029@item ptype @var{typename}
9030Print a description of data type @var{typename}. @var{typename} may be
7a292a7a
SS
9031the name of a type, or for C code it may have the form @samp{class
9032@var{class-name}}, @samp{struct @var{struct-tag}}, @samp{union
9033@var{union-tag}} or @samp{enum @var{enum-tag}}.
c906108c 9034
d4f3574e 9035@item ptype @var{expr}
c906108c 9036@itemx ptype
d4f3574e 9037Print a description of the type of expression @var{expr}. @code{ptype}
c906108c
SS
9038differs from @code{whatis} by printing a detailed description, instead
9039of just the name of the type.
9040
9041For example, for this variable declaration:
9042
474c8240 9043@smallexample
c906108c 9044struct complex @{double real; double imag;@} v;
474c8240 9045@end smallexample
c906108c
SS
9046
9047@noindent
9048the two commands give this output:
9049
474c8240 9050@smallexample
c906108c
SS
9051@group
9052(@value{GDBP}) whatis v
9053type = struct complex
9054(@value{GDBP}) ptype v
9055type = struct complex @{
9056 double real;
9057 double imag;
9058@}
9059@end group
474c8240 9060@end smallexample
c906108c
SS
9061
9062@noindent
9063As with @code{whatis}, using @code{ptype} without an argument refers to
9064the type of @code{$}, the last value in the value history.
9065
9066@kindex info types
9067@item info types @var{regexp}
9068@itemx info types
d4f3574e 9069Print a brief description of all types whose names match @var{regexp}
c906108c
SS
9070(or all types in your program, if you supply no argument). Each
9071complete typename is matched as though it were a complete line; thus,
9072@samp{i type value} gives information on all types in your program whose
d4f3574e 9073names include the string @code{value}, but @samp{i type ^value$} gives
c906108c
SS
9074information only on types whose complete name is @code{value}.
9075
9076This command differs from @code{ptype} in two ways: first, like
9077@code{whatis}, it does not print a detailed description; second, it
9078lists all source files where a type is defined.
9079
b37052ae
EZ
9080@kindex info scope
9081@cindex local variables
9082@item info scope @var{addr}
9083List all the variables local to a particular scope. This command
9084accepts a location---a function name, a source line, or an address
9085preceded by a @samp{*}, and prints all the variables local to the
9086scope defined by that location. For example:
9087
9088@smallexample
9089(@value{GDBP}) @b{info scope command_line_handler}
9090Scope for command_line_handler:
9091Symbol rl is an argument at stack/frame offset 8, length 4.
9092Symbol linebuffer is in static storage at address 0x150a18, length 4.
9093Symbol linelength is in static storage at address 0x150a1c, length 4.
9094Symbol p is a local variable in register $esi, length 4.
9095Symbol p1 is a local variable in register $ebx, length 4.
9096Symbol nline is a local variable in register $edx, length 4.
9097Symbol repeat is a local variable at frame offset -8, length 4.
9098@end smallexample
9099
f5c37c66
EZ
9100@noindent
9101This command is especially useful for determining what data to collect
9102during a @dfn{trace experiment}, see @ref{Tracepoint Actions,
9103collect}.
9104
c906108c
SS
9105@kindex info source
9106@item info source
919d772c
JB
9107Show information about the current source file---that is, the source file for
9108the function containing the current point of execution:
9109@itemize @bullet
9110@item
9111the name of the source file, and the directory containing it,
9112@item
9113the directory it was compiled in,
9114@item
9115its length, in lines,
9116@item
9117which programming language it is written in,
9118@item
9119whether the executable includes debugging information for that file, and
9120if so, what format the information is in (e.g., STABS, Dwarf 2, etc.), and
9121@item
9122whether the debugging information includes information about
9123preprocessor macros.
9124@end itemize
9125
c906108c
SS
9126
9127@kindex info sources
9128@item info sources
9129Print the names of all source files in your program for which there is
9130debugging information, organized into two lists: files whose symbols
9131have already been read, and files whose symbols will be read when needed.
9132
9133@kindex info functions
9134@item info functions
9135Print the names and data types of all defined functions.
9136
9137@item info functions @var{regexp}
9138Print the names and data types of all defined functions
9139whose names contain a match for regular expression @var{regexp}.
9140Thus, @samp{info fun step} finds all functions whose names
9141include @code{step}; @samp{info fun ^step} finds those whose names
1c5dfdad
MS
9142start with @code{step}. If a function name contains characters
9143that conflict with the regular expression language (eg.
9144@samp{operator*()}), they may be quoted with a backslash.
c906108c
SS
9145
9146@kindex info variables
9147@item info variables
9148Print the names and data types of all variables that are declared
6ca652b0 9149outside of functions (i.e.@: excluding local variables).
c906108c
SS
9150
9151@item info variables @var{regexp}
9152Print the names and data types of all variables (except for local
9153variables) whose names contain a match for regular expression
9154@var{regexp}.
9155
b37303ee
AF
9156@kindex info classes
9157@item info classes
9158@itemx info classes @var{regexp}
9159Display all Objective-C classes in your program, or
9160(with the @var{regexp} argument) all those matching a particular regular
9161expression.
9162
9163@kindex info selectors
9164@item info selectors
9165@itemx info selectors @var{regexp}
9166Display all Objective-C selectors in your program, or
9167(with the @var{regexp} argument) all those matching a particular regular
9168expression.
9169
c906108c
SS
9170@ignore
9171This was never implemented.
9172@kindex info methods
9173@item info methods
9174@itemx info methods @var{regexp}
9175The @code{info methods} command permits the user to examine all defined
b37052ae
EZ
9176methods within C@t{++} program, or (with the @var{regexp} argument) a
9177specific set of methods found in the various C@t{++} classes. Many
9178C@t{++} classes provide a large number of methods. Thus, the output
c906108c
SS
9179from the @code{ptype} command can be overwhelming and hard to use. The
9180@code{info-methods} command filters the methods, printing only those
9181which match the regular-expression @var{regexp}.
9182@end ignore
9183
c906108c
SS
9184@cindex reloading symbols
9185Some systems allow individual object files that make up your program to
7a292a7a
SS
9186be replaced without stopping and restarting your program. For example,
9187in VxWorks you can simply recompile a defective object file and keep on
9188running. If you are running on one of these systems, you can allow
9189@value{GDBN} to reload the symbols for automatically relinked modules:
c906108c
SS
9190
9191@table @code
9192@kindex set symbol-reloading
9193@item set symbol-reloading on
9194Replace symbol definitions for the corresponding source file when an
9195object file with a particular name is seen again.
9196
9197@item set symbol-reloading off
6d2ebf8b
SS
9198Do not replace symbol definitions when encountering object files of the
9199same name more than once. This is the default state; if you are not
9200running on a system that permits automatic relinking of modules, you
9201should leave @code{symbol-reloading} off, since otherwise @value{GDBN}
9202may discard symbols when linking large programs, that may contain
9203several modules (from different directories or libraries) with the same
9204name.
c906108c
SS
9205
9206@kindex show symbol-reloading
9207@item show symbol-reloading
9208Show the current @code{on} or @code{off} setting.
9209@end table
c906108c 9210
c906108c
SS
9211@kindex set opaque-type-resolution
9212@item set opaque-type-resolution on
9213Tell @value{GDBN} to resolve opaque types. An opaque type is a type
9214declared as a pointer to a @code{struct}, @code{class}, or
9215@code{union}---for example, @code{struct MyType *}---that is used in one
9216source file although the full declaration of @code{struct MyType} is in
9217another source file. The default is on.
9218
9219A change in the setting of this subcommand will not take effect until
9220the next time symbols for a file are loaded.
9221
9222@item set opaque-type-resolution off
9223Tell @value{GDBN} not to resolve opaque types. In this case, the type
9224is printed as follows:
9225@smallexample
9226@{<no data fields>@}
9227@end smallexample
9228
9229@kindex show opaque-type-resolution
9230@item show opaque-type-resolution
9231Show whether opaque types are resolved or not.
c906108c
SS
9232
9233@kindex maint print symbols
9234@cindex symbol dump
9235@kindex maint print psymbols
9236@cindex partial symbol dump
9237@item maint print symbols @var{filename}
9238@itemx maint print psymbols @var{filename}
9239@itemx maint print msymbols @var{filename}
9240Write a dump of debugging symbol data into the file @var{filename}.
9241These commands are used to debug the @value{GDBN} symbol-reading code. Only
9242symbols with debugging data are included. If you use @samp{maint print
9243symbols}, @value{GDBN} includes all the symbols for which it has already
9244collected full details: that is, @var{filename} reflects symbols for
9245only those files whose symbols @value{GDBN} has read. You can use the
9246command @code{info sources} to find out which files these are. If you
9247use @samp{maint print psymbols} instead, the dump shows information about
9248symbols that @value{GDBN} only knows partially---that is, symbols defined in
9249files that @value{GDBN} has skimmed, but not yet read completely. Finally,
9250@samp{maint print msymbols} dumps just the minimal symbol information
9251required for each object file from which @value{GDBN} has read some symbols.
9252@xref{Files, ,Commands to specify files}, for a discussion of how
9253@value{GDBN} reads symbols (in the description of @code{symbol-file}).
44ea7b70 9254
5e7b2f39
JB
9255@kindex maint info symtabs
9256@kindex maint info psymtabs
44ea7b70
JB
9257@cindex listing @value{GDBN}'s internal symbol tables
9258@cindex symbol tables, listing @value{GDBN}'s internal
9259@cindex full symbol tables, listing @value{GDBN}'s internal
9260@cindex partial symbol tables, listing @value{GDBN}'s internal
5e7b2f39
JB
9261@item maint info symtabs @r{[} @var{regexp} @r{]}
9262@itemx maint info psymtabs @r{[} @var{regexp} @r{]}
44ea7b70
JB
9263
9264List the @code{struct symtab} or @code{struct partial_symtab}
9265structures whose names match @var{regexp}. If @var{regexp} is not
9266given, list them all. The output includes expressions which you can
9267copy into a @value{GDBN} debugging this one to examine a particular
9268structure in more detail. For example:
9269
9270@smallexample
5e7b2f39 9271(@value{GDBP}) maint info psymtabs dwarf2read
44ea7b70
JB
9272@{ objfile /home/gnu/build/gdb/gdb
9273 ((struct objfile *) 0x82e69d0)
9274 @{ psymtab /home/gnu/src/gdb/dwarf2read.c
9275 ((struct partial_symtab *) 0x8474b10)
9276 readin no
9277 fullname (null)
9278 text addresses 0x814d3c8 -- 0x8158074
9279 globals (* (struct partial_symbol **) 0x8507a08 @@ 9)
9280 statics (* (struct partial_symbol **) 0x40e95b78 @@ 2882)
9281 dependencies (none)
9282 @}
9283@}
5e7b2f39 9284(@value{GDBP}) maint info symtabs
44ea7b70
JB
9285(@value{GDBP})
9286@end smallexample
9287@noindent
9288We see that there is one partial symbol table whose filename contains
9289the string @samp{dwarf2read}, belonging to the @samp{gdb} executable;
9290and we see that @value{GDBN} has not read in any symtabs yet at all.
9291If we set a breakpoint on a function, that will cause @value{GDBN} to
9292read the symtab for the compilation unit containing that function:
9293
9294@smallexample
9295(@value{GDBP}) break dwarf2_psymtab_to_symtab
9296Breakpoint 1 at 0x814e5da: file /home/gnu/src/gdb/dwarf2read.c,
9297line 1574.
5e7b2f39 9298(@value{GDBP}) maint info symtabs
44ea7b70
JB
9299@{ objfile /home/gnu/build/gdb/gdb
9300 ((struct objfile *) 0x82e69d0)
9301 @{ symtab /home/gnu/src/gdb/dwarf2read.c
9302 ((struct symtab *) 0x86c1f38)
9303 dirname (null)
9304 fullname (null)
9305 blockvector ((struct blockvector *) 0x86c1bd0) (primary)
9306 debugformat DWARF 2
9307 @}
9308@}
9309(@value{GDBP})
9310@end smallexample
c906108c
SS
9311@end table
9312
44ea7b70 9313
6d2ebf8b 9314@node Altering
c906108c
SS
9315@chapter Altering Execution
9316
9317Once you think you have found an error in your program, you might want to
9318find out for certain whether correcting the apparent error would lead to
9319correct results in the rest of the run. You can find the answer by
9320experiment, using the @value{GDBN} features for altering execution of the
9321program.
9322
9323For example, you can store new values into variables or memory
7a292a7a
SS
9324locations, give your program a signal, restart it at a different
9325address, or even return prematurely from a function.
c906108c
SS
9326
9327@menu
9328* Assignment:: Assignment to variables
9329* Jumping:: Continuing at a different address
c906108c 9330* Signaling:: Giving your program a signal
c906108c
SS
9331* Returning:: Returning from a function
9332* Calling:: Calling your program's functions
9333* Patching:: Patching your program
9334@end menu
9335
6d2ebf8b 9336@node Assignment
c906108c
SS
9337@section Assignment to variables
9338
9339@cindex assignment
9340@cindex setting variables
9341To alter the value of a variable, evaluate an assignment expression.
9342@xref{Expressions, ,Expressions}. For example,
9343
474c8240 9344@smallexample
c906108c 9345print x=4
474c8240 9346@end smallexample
c906108c
SS
9347
9348@noindent
9349stores the value 4 into the variable @code{x}, and then prints the
5d161b24 9350value of the assignment expression (which is 4).
c906108c
SS
9351@xref{Languages, ,Using @value{GDBN} with Different Languages}, for more
9352information on operators in supported languages.
c906108c
SS
9353
9354@kindex set variable
9355@cindex variables, setting
9356If you are not interested in seeing the value of the assignment, use the
9357@code{set} command instead of the @code{print} command. @code{set} is
9358really the same as @code{print} except that the expression's value is
9359not printed and is not put in the value history (@pxref{Value History,
9360,Value history}). The expression is evaluated only for its effects.
9361
c906108c
SS
9362If the beginning of the argument string of the @code{set} command
9363appears identical to a @code{set} subcommand, use the @code{set
9364variable} command instead of just @code{set}. This command is identical
9365to @code{set} except for its lack of subcommands. For example, if your
9366program has a variable @code{width}, you get an error if you try to set
9367a new value with just @samp{set width=13}, because @value{GDBN} has the
9368command @code{set width}:
9369
474c8240 9370@smallexample
c906108c
SS
9371(@value{GDBP}) whatis width
9372type = double
9373(@value{GDBP}) p width
9374$4 = 13
9375(@value{GDBP}) set width=47
9376Invalid syntax in expression.
474c8240 9377@end smallexample
c906108c
SS
9378
9379@noindent
9380The invalid expression, of course, is @samp{=47}. In
9381order to actually set the program's variable @code{width}, use
9382
474c8240 9383@smallexample
c906108c 9384(@value{GDBP}) set var width=47
474c8240 9385@end smallexample
53a5351d 9386
c906108c
SS
9387Because the @code{set} command has many subcommands that can conflict
9388with the names of program variables, it is a good idea to use the
9389@code{set variable} command instead of just @code{set}. For example, if
9390your program has a variable @code{g}, you run into problems if you try
9391to set a new value with just @samp{set g=4}, because @value{GDBN} has
9392the command @code{set gnutarget}, abbreviated @code{set g}:
9393
474c8240 9394@smallexample
c906108c
SS
9395@group
9396(@value{GDBP}) whatis g
9397type = double
9398(@value{GDBP}) p g
9399$1 = 1
9400(@value{GDBP}) set g=4
2df3850c 9401(@value{GDBP}) p g
c906108c
SS
9402$2 = 1
9403(@value{GDBP}) r
9404The program being debugged has been started already.
9405Start it from the beginning? (y or n) y
9406Starting program: /home/smith/cc_progs/a.out
6d2ebf8b
SS
9407"/home/smith/cc_progs/a.out": can't open to read symbols:
9408 Invalid bfd target.
c906108c
SS
9409(@value{GDBP}) show g
9410The current BFD target is "=4".
9411@end group
474c8240 9412@end smallexample
c906108c
SS
9413
9414@noindent
9415The program variable @code{g} did not change, and you silently set the
9416@code{gnutarget} to an invalid value. In order to set the variable
9417@code{g}, use
9418
474c8240 9419@smallexample
c906108c 9420(@value{GDBP}) set var g=4
474c8240 9421@end smallexample
c906108c
SS
9422
9423@value{GDBN} allows more implicit conversions in assignments than C; you can
9424freely store an integer value into a pointer variable or vice versa,
9425and you can convert any structure to any other structure that is the
9426same length or shorter.
9427@comment FIXME: how do structs align/pad in these conversions?
9428@comment /doc@cygnus.com 18dec1990
9429
9430To store values into arbitrary places in memory, use the @samp{@{@dots{}@}}
9431construct to generate a value of specified type at a specified address
9432(@pxref{Expressions, ,Expressions}). For example, @code{@{int@}0x83040} refers
9433to memory location @code{0x83040} as an integer (which implies a certain size
9434and representation in memory), and
9435
474c8240 9436@smallexample
c906108c 9437set @{int@}0x83040 = 4
474c8240 9438@end smallexample
c906108c
SS
9439
9440@noindent
9441stores the value 4 into that memory location.
9442
6d2ebf8b 9443@node Jumping
c906108c
SS
9444@section Continuing at a different address
9445
9446Ordinarily, when you continue your program, you do so at the place where
9447it stopped, with the @code{continue} command. You can instead continue at
9448an address of your own choosing, with the following commands:
9449
9450@table @code
9451@kindex jump
9452@item jump @var{linespec}
9453Resume execution at line @var{linespec}. Execution stops again
9454immediately if there is a breakpoint there. @xref{List, ,Printing
9455source lines}, for a description of the different forms of
9456@var{linespec}. It is common practice to use the @code{tbreak} command
9457in conjunction with @code{jump}. @xref{Set Breaks, ,Setting
9458breakpoints}.
9459
9460The @code{jump} command does not change the current stack frame, or
9461the stack pointer, or the contents of any memory location or any
9462register other than the program counter. If line @var{linespec} is in
9463a different function from the one currently executing, the results may
9464be bizarre if the two functions expect different patterns of arguments or
9465of local variables. For this reason, the @code{jump} command requests
9466confirmation if the specified line is not in the function currently
9467executing. However, even bizarre results are predictable if you are
9468well acquainted with the machine-language code of your program.
9469
9470@item jump *@var{address}
9471Resume execution at the instruction at address @var{address}.
9472@end table
9473
c906108c 9474@c Doesn't work on HP-UX; have to set $pcoqh and $pcoqt.
53a5351d
JM
9475On many systems, you can get much the same effect as the @code{jump}
9476command by storing a new value into the register @code{$pc}. The
9477difference is that this does not start your program running; it only
9478changes the address of where it @emph{will} run when you continue. For
9479example,
c906108c 9480
474c8240 9481@smallexample
c906108c 9482set $pc = 0x485
474c8240 9483@end smallexample
c906108c
SS
9484
9485@noindent
9486makes the next @code{continue} command or stepping command execute at
9487address @code{0x485}, rather than at the address where your program stopped.
9488@xref{Continuing and Stepping, ,Continuing and stepping}.
c906108c
SS
9489
9490The most common occasion to use the @code{jump} command is to back
9491up---perhaps with more breakpoints set---over a portion of a program
9492that has already executed, in order to examine its execution in more
9493detail.
9494
c906108c 9495@c @group
6d2ebf8b 9496@node Signaling
c906108c
SS
9497@section Giving your program a signal
9498
9499@table @code
9500@kindex signal
9501@item signal @var{signal}
9502Resume execution where your program stopped, but immediately give it the
9503signal @var{signal}. @var{signal} can be the name or the number of a
9504signal. For example, on many systems @code{signal 2} and @code{signal
9505SIGINT} are both ways of sending an interrupt signal.
9506
9507Alternatively, if @var{signal} is zero, continue execution without
9508giving a signal. This is useful when your program stopped on account of
9509a signal and would ordinary see the signal when resumed with the
9510@code{continue} command; @samp{signal 0} causes it to resume without a
9511signal.
9512
9513@code{signal} does not repeat when you press @key{RET} a second time
9514after executing the command.
9515@end table
9516@c @end group
9517
9518Invoking the @code{signal} command is not the same as invoking the
9519@code{kill} utility from the shell. Sending a signal with @code{kill}
9520causes @value{GDBN} to decide what to do with the signal depending on
9521the signal handling tables (@pxref{Signals}). The @code{signal} command
9522passes the signal directly to your program.
9523
c906108c 9524
6d2ebf8b 9525@node Returning
c906108c
SS
9526@section Returning from a function
9527
9528@table @code
9529@cindex returning from a function
9530@kindex return
9531@item return
9532@itemx return @var{expression}
9533You can cancel execution of a function call with the @code{return}
9534command. If you give an
9535@var{expression} argument, its value is used as the function's return
9536value.
9537@end table
9538
9539When you use @code{return}, @value{GDBN} discards the selected stack frame
9540(and all frames within it). You can think of this as making the
9541discarded frame return prematurely. If you wish to specify a value to
9542be returned, give that value as the argument to @code{return}.
9543
9544This pops the selected stack frame (@pxref{Selection, ,Selecting a
9545frame}), and any other frames inside of it, leaving its caller as the
9546innermost remaining frame. That frame becomes selected. The
9547specified value is stored in the registers used for returning values
9548of functions.
9549
9550The @code{return} command does not resume execution; it leaves the
9551program stopped in the state that would exist if the function had just
9552returned. In contrast, the @code{finish} command (@pxref{Continuing
9553and Stepping, ,Continuing and stepping}) resumes execution until the
9554selected stack frame returns naturally.
9555
6d2ebf8b 9556@node Calling
c906108c
SS
9557@section Calling program functions
9558
9559@cindex calling functions
9560@kindex call
9561@table @code
9562@item call @var{expr}
9563Evaluate the expression @var{expr} without displaying @code{void}
9564returned values.
9565@end table
9566
9567You can use this variant of the @code{print} command if you want to
9568execute a function from your program, but without cluttering the output
5d161b24
DB
9569with @code{void} returned values. If the result is not void, it
9570is printed and saved in the value history.
c906108c 9571
6d2ebf8b 9572@node Patching
c906108c 9573@section Patching programs
7a292a7a 9574
c906108c
SS
9575@cindex patching binaries
9576@cindex writing into executables
c906108c 9577@cindex writing into corefiles
c906108c 9578
7a292a7a
SS
9579By default, @value{GDBN} opens the file containing your program's
9580executable code (or the corefile) read-only. This prevents accidental
9581alterations to machine code; but it also prevents you from intentionally
9582patching your program's binary.
c906108c
SS
9583
9584If you'd like to be able to patch the binary, you can specify that
9585explicitly with the @code{set write} command. For example, you might
9586want to turn on internal debugging flags, or even to make emergency
9587repairs.
9588
9589@table @code
9590@kindex set write
9591@item set write on
9592@itemx set write off
7a292a7a
SS
9593If you specify @samp{set write on}, @value{GDBN} opens executable and
9594core files for both reading and writing; if you specify @samp{set write
c906108c
SS
9595off} (the default), @value{GDBN} opens them read-only.
9596
9597If you have already loaded a file, you must load it again (using the
7a292a7a
SS
9598@code{exec-file} or @code{core-file} command) after changing @code{set
9599write}, for your new setting to take effect.
c906108c
SS
9600
9601@item show write
9602@kindex show write
7a292a7a
SS
9603Display whether executable files and core files are opened for writing
9604as well as reading.
c906108c
SS
9605@end table
9606
6d2ebf8b 9607@node GDB Files
c906108c
SS
9608@chapter @value{GDBN} Files
9609
7a292a7a
SS
9610@value{GDBN} needs to know the file name of the program to be debugged,
9611both in order to read its symbol table and in order to start your
9612program. To debug a core dump of a previous run, you must also tell
9613@value{GDBN} the name of the core dump file.
c906108c
SS
9614
9615@menu
9616* Files:: Commands to specify files
5b5d99cf 9617* Separate Debug Files:: Debugging information in separate files
c906108c
SS
9618* Symbol Errors:: Errors reading symbol files
9619@end menu
9620
6d2ebf8b 9621@node Files
c906108c 9622@section Commands to specify files
c906108c 9623
7a292a7a 9624@cindex symbol table
c906108c 9625@cindex core dump file
7a292a7a
SS
9626
9627You may want to specify executable and core dump file names. The usual
9628way to do this is at start-up time, using the arguments to
9629@value{GDBN}'s start-up commands (@pxref{Invocation, , Getting In and
9630Out of @value{GDBN}}).
c906108c
SS
9631
9632Occasionally it is necessary to change to a different file during a
9633@value{GDBN} session. Or you may run @value{GDBN} and forget to specify
9634a file you want to use. In these situations the @value{GDBN} commands
9635to specify new files are useful.
9636
9637@table @code
9638@cindex executable file
9639@kindex file
9640@item file @var{filename}
9641Use @var{filename} as the program to be debugged. It is read for its
9642symbols and for the contents of pure memory. It is also the program
9643executed when you use the @code{run} command. If you do not specify a
5d161b24
DB
9644directory and the file is not found in the @value{GDBN} working directory,
9645@value{GDBN} uses the environment variable @code{PATH} as a list of
9646directories to search, just as the shell does when looking for a program
9647to run. You can change the value of this variable, for both @value{GDBN}
c906108c
SS
9648and your program, using the @code{path} command.
9649
6d2ebf8b 9650On systems with memory-mapped files, an auxiliary file named
c906108c
SS
9651@file{@var{filename}.syms} may hold symbol table information for
9652@var{filename}. If so, @value{GDBN} maps in the symbol table from
9653@file{@var{filename}.syms}, starting up more quickly. See the
9654descriptions of the file options @samp{-mapped} and @samp{-readnow}
9655(available on the command line, and with the commands @code{file},
5d161b24 9656@code{symbol-file}, or @code{add-symbol-file}, described below),
c906108c 9657for more information.
c906108c
SS
9658
9659@item file
9660@code{file} with no argument makes @value{GDBN} discard any information it
9661has on both executable file and the symbol table.
9662
9663@kindex exec-file
9664@item exec-file @r{[} @var{filename} @r{]}
9665Specify that the program to be run (but not the symbol table) is found
9666in @var{filename}. @value{GDBN} searches the environment variable @code{PATH}
9667if necessary to locate your program. Omitting @var{filename} means to
9668discard information on the executable file.
9669
9670@kindex symbol-file
9671@item symbol-file @r{[} @var{filename} @r{]}
9672Read symbol table information from file @var{filename}. @code{PATH} is
9673searched when necessary. Use the @code{file} command to get both symbol
9674table and program to run from the same file.
9675
9676@code{symbol-file} with no argument clears out @value{GDBN} information on your
9677program's symbol table.
9678
5d161b24 9679The @code{symbol-file} command causes @value{GDBN} to forget the contents
c906108c
SS
9680of its convenience variables, the value history, and all breakpoints and
9681auto-display expressions. This is because they may contain pointers to
9682the internal data recording symbols and data types, which are part of
9683the old symbol table data being discarded inside @value{GDBN}.
9684
9685@code{symbol-file} does not repeat if you press @key{RET} again after
9686executing it once.
9687
9688When @value{GDBN} is configured for a particular environment, it
9689understands debugging information in whatever format is the standard
9690generated for that environment; you may use either a @sc{gnu} compiler, or
9691other compilers that adhere to the local conventions.
c906108c
SS
9692Best results are usually obtained from @sc{gnu} compilers; for example,
9693using @code{@value{GCC}} you can generate debugging information for
9694optimized code.
c906108c
SS
9695
9696For most kinds of object files, with the exception of old SVR3 systems
9697using COFF, the @code{symbol-file} command does not normally read the
9698symbol table in full right away. Instead, it scans the symbol table
9699quickly to find which source files and which symbols are present. The
9700details are read later, one source file at a time, as they are needed.
9701
9702The purpose of this two-stage reading strategy is to make @value{GDBN}
9703start up faster. For the most part, it is invisible except for
9704occasional pauses while the symbol table details for a particular source
9705file are being read. (The @code{set verbose} command can turn these
9706pauses into messages if desired. @xref{Messages/Warnings, ,Optional
9707warnings and messages}.)
9708
c906108c
SS
9709We have not implemented the two-stage strategy for COFF yet. When the
9710symbol table is stored in COFF format, @code{symbol-file} reads the
9711symbol table data in full right away. Note that ``stabs-in-COFF''
9712still does the two-stage strategy, since the debug info is actually
9713in stabs format.
9714
9715@kindex readnow
9716@cindex reading symbols immediately
9717@cindex symbols, reading immediately
9718@kindex mapped
9719@cindex memory-mapped symbol file
9720@cindex saving symbol table
9721@item symbol-file @var{filename} @r{[} -readnow @r{]} @r{[} -mapped @r{]}
9722@itemx file @var{filename} @r{[} -readnow @r{]} @r{[} -mapped @r{]}
9723You can override the @value{GDBN} two-stage strategy for reading symbol
9724tables by using the @samp{-readnow} option with any of the commands that
9725load symbol table information, if you want to be sure @value{GDBN} has the
5d161b24 9726entire symbol table available.
c906108c 9727
c906108c
SS
9728If memory-mapped files are available on your system through the
9729@code{mmap} system call, you can use another option, @samp{-mapped}, to
9730cause @value{GDBN} to write the symbols for your program into a reusable
9731file. Future @value{GDBN} debugging sessions map in symbol information
9732from this auxiliary symbol file (if the program has not changed), rather
9733than spending time reading the symbol table from the executable
9734program. Using the @samp{-mapped} option has the same effect as
9735starting @value{GDBN} with the @samp{-mapped} command-line option.
9736
9737You can use both options together, to make sure the auxiliary symbol
9738file has all the symbol information for your program.
9739
9740The auxiliary symbol file for a program called @var{myprog} is called
9741@samp{@var{myprog}.syms}. Once this file exists (so long as it is newer
9742than the corresponding executable), @value{GDBN} always attempts to use
9743it when you debug @var{myprog}; no special options or commands are
9744needed.
9745
9746The @file{.syms} file is specific to the host machine where you run
9747@value{GDBN}. It holds an exact image of the internal @value{GDBN}
9748symbol table. It cannot be shared across multiple host platforms.
c906108c
SS
9749
9750@c FIXME: for now no mention of directories, since this seems to be in
9751@c flux. 13mar1992 status is that in theory GDB would look either in
9752@c current dir or in same dir as myprog; but issues like competing
9753@c GDB's, or clutter in system dirs, mean that in practice right now
9754@c only current dir is used. FFish says maybe a special GDB hierarchy
9755@c (eg rooted in val of env var GDBSYMS) could exist for mappable symbol
9756@c files.
9757
9758@kindex core
9759@kindex core-file
9760@item core-file @r{[} @var{filename} @r{]}
9761Specify the whereabouts of a core dump file to be used as the ``contents
9762of memory''. Traditionally, core files contain only some parts of the
9763address space of the process that generated them; @value{GDBN} can access the
9764executable file itself for other parts.
9765
9766@code{core-file} with no argument specifies that no core file is
9767to be used.
9768
9769Note that the core file is ignored when your program is actually running
7a292a7a
SS
9770under @value{GDBN}. So, if you have been running your program and you
9771wish to debug a core file instead, you must kill the subprocess in which
9772the program is running. To do this, use the @code{kill} command
c906108c 9773(@pxref{Kill Process, ,Killing the child process}).
c906108c 9774
c906108c
SS
9775@kindex add-symbol-file
9776@cindex dynamic linking
9777@item add-symbol-file @var{filename} @var{address}
9778@itemx add-symbol-file @var{filename} @var{address} @r{[} -readnow @r{]} @r{[} -mapped @r{]}
17d9d558 9779@itemx add-symbol-file @var{filename} @r{-s}@var{section} @var{address} @dots{}
96a2c332
SS
9780The @code{add-symbol-file} command reads additional symbol table
9781information from the file @var{filename}. You would use this command
9782when @var{filename} has been dynamically loaded (by some other means)
9783into the program that is running. @var{address} should be the memory
9784address at which the file has been loaded; @value{GDBN} cannot figure
d167840f
EZ
9785this out for itself. You can additionally specify an arbitrary number
9786of @samp{@r{-s}@var{section} @var{address}} pairs, to give an explicit
9787section name and base address for that section. You can specify any
9788@var{address} as an expression.
c906108c
SS
9789
9790The symbol table of the file @var{filename} is added to the symbol table
9791originally read with the @code{symbol-file} command. You can use the
96a2c332
SS
9792@code{add-symbol-file} command any number of times; the new symbol data
9793thus read keeps adding to the old. To discard all old symbol data
9794instead, use the @code{symbol-file} command without any arguments.
c906108c 9795
17d9d558
JB
9796@cindex relocatable object files, reading symbols from
9797@cindex object files, relocatable, reading symbols from
9798@cindex reading symbols from relocatable object files
9799@cindex symbols, reading from relocatable object files
9800@cindex @file{.o} files, reading symbols from
9801Although @var{filename} is typically a shared library file, an
9802executable file, or some other object file which has been fully
9803relocated for loading into a process, you can also load symbolic
9804information from relocatable @file{.o} files, as long as:
9805
9806@itemize @bullet
9807@item
9808the file's symbolic information refers only to linker symbols defined in
9809that file, not to symbols defined by other object files,
9810@item
9811every section the file's symbolic information refers to has actually
9812been loaded into the inferior, as it appears in the file, and
9813@item
9814you can determine the address at which every section was loaded, and
9815provide these to the @code{add-symbol-file} command.
9816@end itemize
9817
9818@noindent
9819Some embedded operating systems, like Sun Chorus and VxWorks, can load
9820relocatable files into an already running program; such systems
9821typically make the requirements above easy to meet. However, it's
9822important to recognize that many native systems use complex link
9823procedures (@code{.linkonce} section factoring and C++ constructor table
9824assembly, for example) that make the requirements difficult to meet. In
9825general, one cannot assume that using @code{add-symbol-file} to read a
9826relocatable object file's symbolic information will have the same effect
9827as linking the relocatable object file into the program in the normal
9828way.
9829
c906108c
SS
9830@code{add-symbol-file} does not repeat if you press @key{RET} after using it.
9831
9832You can use the @samp{-mapped} and @samp{-readnow} options just as with
9833the @code{symbol-file} command, to change how @value{GDBN} manages the symbol
9834table information for @var{filename}.
9835
9836@kindex add-shared-symbol-file
9837@item add-shared-symbol-file
9838The @code{add-shared-symbol-file} command can be used only under Harris' CXUX
5d161b24
DB
9839operating system for the Motorola 88k. @value{GDBN} automatically looks for
9840shared libraries, however if @value{GDBN} does not find yours, you can run
c906108c 9841@code{add-shared-symbol-file}. It takes no arguments.
c906108c 9842
c906108c
SS
9843@kindex section
9844@item section
5d161b24
DB
9845The @code{section} command changes the base address of section SECTION of
9846the exec file to ADDR. This can be used if the exec file does not contain
9847section addresses, (such as in the a.out format), or when the addresses
9848specified in the file itself are wrong. Each section must be changed
d4f3574e
SS
9849separately. The @code{info files} command, described below, lists all
9850the sections and their addresses.
c906108c
SS
9851
9852@kindex info files
9853@kindex info target
9854@item info files
9855@itemx info target
7a292a7a
SS
9856@code{info files} and @code{info target} are synonymous; both print the
9857current target (@pxref{Targets, ,Specifying a Debugging Target}),
9858including the names of the executable and core dump files currently in
9859use by @value{GDBN}, and the files from which symbols were loaded. The
9860command @code{help target} lists all possible targets rather than
9861current ones.
9862
fe95c787
MS
9863@kindex maint info sections
9864@item maint info sections
9865Another command that can give you extra information about program sections
9866is @code{maint info sections}. In addition to the section information
9867displayed by @code{info files}, this command displays the flags and file
9868offset of each section in the executable and core dump files. In addition,
9869@code{maint info sections} provides the following command options (which
9870may be arbitrarily combined):
9871
9872@table @code
9873@item ALLOBJ
9874Display sections for all loaded object files, including shared libraries.
9875@item @var{sections}
6600abed 9876Display info only for named @var{sections}.
fe95c787
MS
9877@item @var{section-flags}
9878Display info only for sections for which @var{section-flags} are true.
9879The section flags that @value{GDBN} currently knows about are:
9880@table @code
9881@item ALLOC
9882Section will have space allocated in the process when loaded.
9883Set for all sections except those containing debug information.
9884@item LOAD
9885Section will be loaded from the file into the child process memory.
9886Set for pre-initialized code and data, clear for @code{.bss} sections.
9887@item RELOC
9888Section needs to be relocated before loading.
9889@item READONLY
9890Section cannot be modified by the child process.
9891@item CODE
9892Section contains executable code only.
6600abed 9893@item DATA
fe95c787
MS
9894Section contains data only (no executable code).
9895@item ROM
9896Section will reside in ROM.
9897@item CONSTRUCTOR
9898Section contains data for constructor/destructor lists.
9899@item HAS_CONTENTS
9900Section is not empty.
9901@item NEVER_LOAD
9902An instruction to the linker to not output the section.
9903@item COFF_SHARED_LIBRARY
9904A notification to the linker that the section contains
9905COFF shared library information.
9906@item IS_COMMON
9907Section contains common symbols.
9908@end table
9909@end table
6763aef9
MS
9910@kindex set trust-readonly-sections
9911@item set trust-readonly-sections on
9912Tell @value{GDBN} that readonly sections in your object file
6ca652b0 9913really are read-only (i.e.@: that their contents will not change).
6763aef9
MS
9914In that case, @value{GDBN} can fetch values from these sections
9915out of the object file, rather than from the target program.
9916For some targets (notably embedded ones), this can be a significant
9917enhancement to debugging performance.
9918
9919The default is off.
9920
9921@item set trust-readonly-sections off
15110bc3 9922Tell @value{GDBN} not to trust readonly sections. This means that
6763aef9
MS
9923the contents of the section might change while the program is running,
9924and must therefore be fetched from the target when needed.
c906108c
SS
9925@end table
9926
9927All file-specifying commands allow both absolute and relative file names
9928as arguments. @value{GDBN} always converts the file name to an absolute file
9929name and remembers it that way.
9930
c906108c 9931@cindex shared libraries
c906108c
SS
9932@value{GDBN} supports HP-UX, SunOS, SVr4, Irix 5, and IBM RS/6000 shared
9933libraries.
53a5351d 9934
c906108c
SS
9935@value{GDBN} automatically loads symbol definitions from shared libraries
9936when you use the @code{run} command, or when you examine a core file.
9937(Before you issue the @code{run} command, @value{GDBN} does not understand
9938references to a function in a shared library, however---unless you are
9939debugging a core file).
53a5351d
JM
9940
9941On HP-UX, if the program loads a library explicitly, @value{GDBN}
9942automatically loads the symbols at the time of the @code{shl_load} call.
9943
c906108c
SS
9944@c FIXME: some @value{GDBN} release may permit some refs to undef
9945@c FIXME...symbols---eg in a break cmd---assuming they are from a shared
9946@c FIXME...lib; check this from time to time when updating manual
9947
b7209cb4
FF
9948There are times, however, when you may wish to not automatically load
9949symbol definitions from shared libraries, such as when they are
9950particularly large or there are many of them.
9951
9952To control the automatic loading of shared library symbols, use the
9953commands:
9954
9955@table @code
9956@kindex set auto-solib-add
9957@item set auto-solib-add @var{mode}
9958If @var{mode} is @code{on}, symbols from all shared object libraries
9959will be loaded automatically when the inferior begins execution, you
9960attach to an independently started inferior, or when the dynamic linker
9961informs @value{GDBN} that a new library has been loaded. If @var{mode}
9962is @code{off}, symbols must be loaded manually, using the
9963@code{sharedlibrary} command. The default value is @code{on}.
9964
9965@kindex show auto-solib-add
9966@item show auto-solib-add
9967Display the current autoloading mode.
9968@end table
9969
9970To explicitly load shared library symbols, use the @code{sharedlibrary}
9971command:
9972
c906108c
SS
9973@table @code
9974@kindex info sharedlibrary
9975@kindex info share
9976@item info share
9977@itemx info sharedlibrary
9978Print the names of the shared libraries which are currently loaded.
9979
9980@kindex sharedlibrary
9981@kindex share
9982@item sharedlibrary @var{regex}
9983@itemx share @var{regex}
c906108c
SS
9984Load shared object library symbols for files matching a
9985Unix regular expression.
9986As with files loaded automatically, it only loads shared libraries
9987required by your program for a core file or after typing @code{run}. If
9988@var{regex} is omitted all shared libraries required by your program are
9989loaded.
9990@end table
9991
b7209cb4
FF
9992On some systems, such as HP-UX systems, @value{GDBN} supports
9993autoloading shared library symbols until a limiting threshold size is
9994reached. This provides the benefit of allowing autoloading to remain on
9995by default, but avoids autoloading excessively large shared libraries,
9996up to a threshold that is initially set, but which you can modify if you
9997wish.
c906108c
SS
9998
9999Beyond that threshold, symbols from shared libraries must be explicitly
d4f3574e
SS
10000loaded. To load these symbols, use the command @code{sharedlibrary
10001@var{filename}}. The base address of the shared library is determined
c906108c
SS
10002automatically by @value{GDBN} and need not be specified.
10003
10004To display or set the threshold, use the commands:
10005
10006@table @code
b7209cb4
FF
10007@kindex set auto-solib-limit
10008@item set auto-solib-limit @var{threshold}
10009Set the autoloading size threshold, in an integral number of megabytes.
10010If @var{threshold} is nonzero and shared library autoloading is enabled,
10011symbols from all shared object libraries will be loaded until the total
10012size of the loaded shared library symbols exceeds this threshold.
c906108c 10013Otherwise, symbols must be loaded manually, using the
6ca652b0 10014@code{sharedlibrary} command. The default threshold is 100 (i.e.@: 100
b7209cb4 10015Mb).
c906108c 10016
b7209cb4
FF
10017@kindex show auto-solib-limit
10018@item show auto-solib-limit
c906108c
SS
10019Display the current autoloading size threshold, in megabytes.
10020@end table
c906108c 10021
f5ebfba0
DJ
10022Shared libraries are also supported in many cross or remote debugging
10023configurations. A copy of the target's libraries need to be present on the
10024host system; they need to be the same as the target libraries, although the
10025copies on the target can be stripped as long as the copies on the host are
10026not.
10027
10028You need to tell @value{GDBN} where the target libraries are, so that it can
10029load the correct copies---otherwise, it may try to load the host's libraries.
10030@value{GDBN} has two variables to specify the search directories for target
10031libraries.
10032
10033@table @code
10034@kindex set solib-absolute-prefix
10035@item set solib-absolute-prefix @var{path}
10036If this variable is set, @var{path} will be used as a prefix for any
10037absolute shared library paths; many runtime loaders store the absolute
10038paths to the shared library in the target program's memory. If you use
10039@samp{solib-absolute-prefix} to find shared libraries, they need to be laid
10040out in the same way that they are on the target, with e.g.@: a
10041@file{/usr/lib} hierarchy under @var{path}.
10042
10043You can set the default value of @samp{solib-absolute-prefix} by using the
10044configure-time @samp{--with-sysroot} option.
10045
10046@kindex show solib-absolute-prefix
10047@item show solib-absolute-prefix
10048Display the current shared library prefix.
10049
10050@kindex set solib-search-path
10051@item set solib-search-path @var{path}
10052If this variable is set, @var{path} is a colon-separated list of directories
10053to search for shared libraries. @samp{solib-search-path} is used after
10054@samp{solib-absolute-prefix} fails to locate the library, or if the path to
10055the library is relative instead of absolute. If you want to use
10056@samp{solib-search-path} instead of @samp{solib-absolute-prefix}, be sure to
10057set @samp{solib-absolute-prefix} to a nonexistant directory to prevent
10058@value{GDBN} from finding your host's libraries.
10059
10060@kindex show solib-search-path
10061@item show solib-search-path
10062Display the current shared library search path.
10063@end table
10064
5b5d99cf
JB
10065
10066@node Separate Debug Files
10067@section Debugging Information in Separate Files
10068@cindex separate debugging information files
10069@cindex debugging information in separate files
10070@cindex @file{.debug} subdirectories
10071@cindex debugging information directory, global
10072@cindex global debugging information directory
10073
10074@value{GDBN} allows you to put a program's debugging information in a
10075file separate from the executable itself, in a way that allows
10076@value{GDBN} to find and load the debugging information automatically.
10077Since debugging information can be very large --- sometimes larger
10078than the executable code itself --- some systems distribute debugging
10079information for their executables in separate files, which users can
10080install only when they need to debug a problem.
10081
10082If an executable's debugging information has been extracted to a
10083separate file, the executable should contain a @dfn{debug link} giving
10084the name of the debugging information file (with no directory
10085components), and a checksum of its contents. (The exact form of a
10086debug link is described below.) If the full name of the directory
10087containing the executable is @var{execdir}, and the executable has a
10088debug link that specifies the name @var{debugfile}, then @value{GDBN}
10089will automatically search for the debugging information file in three
10090places:
10091
10092@itemize @bullet
10093@item
10094the directory containing the executable file (that is, it will look
10095for a file named @file{@var{execdir}/@var{debugfile}},
10096@item
10097a subdirectory of that directory named @file{.debug} (that is, the
10098file @file{@var{execdir}/.debug/@var{debugfile}}, and
10099@item
10100a subdirectory of the global debug file directory that includes the
10101executable's full path, and the name from the link (that is, the file
10102@file{@var{globaldebugdir}/@var{execdir}/@var{debugfile}}, where
10103@var{globaldebugdir} is the global debug file directory, and
10104@var{execdir} has been turned into a relative path).
10105@end itemize
10106@noindent
10107@value{GDBN} checks under each of these names for a debugging
10108information file whose checksum matches that given in the link, and
10109reads the debugging information from the first one it finds.
10110
10111So, for example, if you ask @value{GDBN} to debug @file{/usr/bin/ls},
10112which has a link containing the name @file{ls.debug}, and the global
10113debug directory is @file{/usr/lib/debug}, then @value{GDBN} will look
10114for debug information in @file{/usr/bin/ls.debug},
10115@file{/usr/bin/.debug/ls.debug}, and
10116@file{/usr/lib/debug/usr/bin/ls.debug}.
10117
10118You can set the global debugging info directory's name, and view the
10119name @value{GDBN} is currently using.
10120
10121@table @code
10122
10123@kindex set debug-file-directory
10124@item set debug-file-directory @var{directory}
10125Set the directory which @value{GDBN} searches for separate debugging
10126information files to @var{directory}.
10127
10128@kindex show debug-file-directory
10129@item show debug-file-directory
10130Show the directory @value{GDBN} searches for separate debugging
10131information files.
10132
10133@end table
10134
10135@cindex @code{.gnu_debuglink} sections
10136@cindex debug links
10137A debug link is a special section of the executable file named
10138@code{.gnu_debuglink}. The section must contain:
10139
10140@itemize
10141@item
10142A filename, with any leading directory components removed, followed by
10143a zero byte,
10144@item
10145zero to three bytes of padding, as needed to reach the next four-byte
10146boundary within the section, and
10147@item
10148a four-byte CRC checksum, stored in the same endianness used for the
10149executable file itself. The checksum is computed on the debugging
10150information file's full contents by the function given below, passing
10151zero as the @var{crc} argument.
10152@end itemize
10153
10154Any executable file format can carry a debug link, as long as it can
10155contain a section named @code{.gnu_debuglink} with the contents
10156described above.
10157
10158The debugging information file itself should be an ordinary
10159executable, containing a full set of linker symbols, sections, and
10160debugging information. The sections of the debugging information file
10161should have the same names, addresses and sizes as the original file,
10162but they need not contain any data --- much like a @code{.bss} section
10163in an ordinary executable.
10164
10165As of December 2002, there is no standard GNU utility to produce
10166separated executable / debugging information file pairs. Ulrich
10167Drepper's @file{elfutils} package, starting with version 0.53,
10168contains a version of the @code{strip} command such that the command
10169@kbd{strip foo -f foo.debug} removes the debugging information from
10170the executable file @file{foo}, places it in the file
10171@file{foo.debug}, and leaves behind a debug link in @file{foo}.
10172
10173Since there are many different ways to compute CRC's (different
10174polynomials, reversals, byte ordering, etc.), the simplest way to
10175describe the CRC used in @code{.gnu_debuglink} sections is to give the
10176complete code for a function that computes it:
10177
10178@kindex @code{gnu_debuglink_crc32}
10179@smallexample
10180unsigned long
10181gnu_debuglink_crc32 (unsigned long crc,
10182 unsigned char *buf, size_t len)
10183@{
10184 static const unsigned long crc32_table[256] =
10185 @{
10186 0x00000000, 0x77073096, 0xee0e612c, 0x990951ba, 0x076dc419,
10187 0x706af48f, 0xe963a535, 0x9e6495a3, 0x0edb8832, 0x79dcb8a4,
10188 0xe0d5e91e, 0x97d2d988, 0x09b64c2b, 0x7eb17cbd, 0xe7b82d07,
10189 0x90bf1d91, 0x1db71064, 0x6ab020f2, 0xf3b97148, 0x84be41de,
10190 0x1adad47d, 0x6ddde4eb, 0xf4d4b551, 0x83d385c7, 0x136c9856,
10191 0x646ba8c0, 0xfd62f97a, 0x8a65c9ec, 0x14015c4f, 0x63066cd9,
10192 0xfa0f3d63, 0x8d080df5, 0x3b6e20c8, 0x4c69105e, 0xd56041e4,
10193 0xa2677172, 0x3c03e4d1, 0x4b04d447, 0xd20d85fd, 0xa50ab56b,
10194 0x35b5a8fa, 0x42b2986c, 0xdbbbc9d6, 0xacbcf940, 0x32d86ce3,
10195 0x45df5c75, 0xdcd60dcf, 0xabd13d59, 0x26d930ac, 0x51de003a,
10196 0xc8d75180, 0xbfd06116, 0x21b4f4b5, 0x56b3c423, 0xcfba9599,
10197 0xb8bda50f, 0x2802b89e, 0x5f058808, 0xc60cd9b2, 0xb10be924,
10198 0x2f6f7c87, 0x58684c11, 0xc1611dab, 0xb6662d3d, 0x76dc4190,
10199 0x01db7106, 0x98d220bc, 0xefd5102a, 0x71b18589, 0x06b6b51f,
10200 0x9fbfe4a5, 0xe8b8d433, 0x7807c9a2, 0x0f00f934, 0x9609a88e,
10201 0xe10e9818, 0x7f6a0dbb, 0x086d3d2d, 0x91646c97, 0xe6635c01,
10202 0x6b6b51f4, 0x1c6c6162, 0x856530d8, 0xf262004e, 0x6c0695ed,
10203 0x1b01a57b, 0x8208f4c1, 0xf50fc457, 0x65b0d9c6, 0x12b7e950,
10204 0x8bbeb8ea, 0xfcb9887c, 0x62dd1ddf, 0x15da2d49, 0x8cd37cf3,
10205 0xfbd44c65, 0x4db26158, 0x3ab551ce, 0xa3bc0074, 0xd4bb30e2,
10206 0x4adfa541, 0x3dd895d7, 0xa4d1c46d, 0xd3d6f4fb, 0x4369e96a,
10207 0x346ed9fc, 0xad678846, 0xda60b8d0, 0x44042d73, 0x33031de5,
10208 0xaa0a4c5f, 0xdd0d7cc9, 0x5005713c, 0x270241aa, 0xbe0b1010,
10209 0xc90c2086, 0x5768b525, 0x206f85b3, 0xb966d409, 0xce61e49f,
10210 0x5edef90e, 0x29d9c998, 0xb0d09822, 0xc7d7a8b4, 0x59b33d17,
10211 0x2eb40d81, 0xb7bd5c3b, 0xc0ba6cad, 0xedb88320, 0x9abfb3b6,
10212 0x03b6e20c, 0x74b1d29a, 0xead54739, 0x9dd277af, 0x04db2615,
10213 0x73dc1683, 0xe3630b12, 0x94643b84, 0x0d6d6a3e, 0x7a6a5aa8,
10214 0xe40ecf0b, 0x9309ff9d, 0x0a00ae27, 0x7d079eb1, 0xf00f9344,
10215 0x8708a3d2, 0x1e01f268, 0x6906c2fe, 0xf762575d, 0x806567cb,
10216 0x196c3671, 0x6e6b06e7, 0xfed41b76, 0x89d32be0, 0x10da7a5a,
10217 0x67dd4acc, 0xf9b9df6f, 0x8ebeeff9, 0x17b7be43, 0x60b08ed5,
10218 0xd6d6a3e8, 0xa1d1937e, 0x38d8c2c4, 0x4fdff252, 0xd1bb67f1,
10219 0xa6bc5767, 0x3fb506dd, 0x48b2364b, 0xd80d2bda, 0xaf0a1b4c,
10220 0x36034af6, 0x41047a60, 0xdf60efc3, 0xa867df55, 0x316e8eef,
10221 0x4669be79, 0xcb61b38c, 0xbc66831a, 0x256fd2a0, 0x5268e236,
10222 0xcc0c7795, 0xbb0b4703, 0x220216b9, 0x5505262f, 0xc5ba3bbe,
10223 0xb2bd0b28, 0x2bb45a92, 0x5cb36a04, 0xc2d7ffa7, 0xb5d0cf31,
10224 0x2cd99e8b, 0x5bdeae1d, 0x9b64c2b0, 0xec63f226, 0x756aa39c,
10225 0x026d930a, 0x9c0906a9, 0xeb0e363f, 0x72076785, 0x05005713,
10226 0x95bf4a82, 0xe2b87a14, 0x7bb12bae, 0x0cb61b38, 0x92d28e9b,
10227 0xe5d5be0d, 0x7cdcefb7, 0x0bdbdf21, 0x86d3d2d4, 0xf1d4e242,
10228 0x68ddb3f8, 0x1fda836e, 0x81be16cd, 0xf6b9265b, 0x6fb077e1,
10229 0x18b74777, 0x88085ae6, 0xff0f6a70, 0x66063bca, 0x11010b5c,
10230 0x8f659eff, 0xf862ae69, 0x616bffd3, 0x166ccf45, 0xa00ae278,
10231 0xd70dd2ee, 0x4e048354, 0x3903b3c2, 0xa7672661, 0xd06016f7,
10232 0x4969474d, 0x3e6e77db, 0xaed16a4a, 0xd9d65adc, 0x40df0b66,
10233 0x37d83bf0, 0xa9bcae53, 0xdebb9ec5, 0x47b2cf7f, 0x30b5ffe9,
10234 0xbdbdf21c, 0xcabac28a, 0x53b39330, 0x24b4a3a6, 0xbad03605,
10235 0xcdd70693, 0x54de5729, 0x23d967bf, 0xb3667a2e, 0xc4614ab8,
10236 0x5d681b02, 0x2a6f2b94, 0xb40bbe37, 0xc30c8ea1, 0x5a05df1b,
10237 0x2d02ef8d
10238 @};
10239 unsigned char *end;
10240
10241 crc = ~crc & 0xffffffff;
10242 for (end = buf + len; buf < end; ++buf)
10243 crc = crc32_table[(crc ^ *buf) & 0xff] ^ (crc >> 8);
e7a3abfc 10244 return ~crc & 0xffffffff;
5b5d99cf
JB
10245@}
10246@end smallexample
10247
10248
6d2ebf8b 10249@node Symbol Errors
c906108c
SS
10250@section Errors reading symbol files
10251
10252While reading a symbol file, @value{GDBN} occasionally encounters problems,
10253such as symbol types it does not recognize, or known bugs in compiler
10254output. By default, @value{GDBN} does not notify you of such problems, since
10255they are relatively common and primarily of interest to people
10256debugging compilers. If you are interested in seeing information
10257about ill-constructed symbol tables, you can either ask @value{GDBN} to print
10258only one message about each such type of problem, no matter how many
10259times the problem occurs; or you can ask @value{GDBN} to print more messages,
10260to see how many times the problems occur, with the @code{set
10261complaints} command (@pxref{Messages/Warnings, ,Optional warnings and
10262messages}).
10263
10264The messages currently printed, and their meanings, include:
10265
10266@table @code
10267@item inner block not inside outer block in @var{symbol}
10268
10269The symbol information shows where symbol scopes begin and end
10270(such as at the start of a function or a block of statements). This
10271error indicates that an inner scope block is not fully contained
10272in its outer scope blocks.
10273
10274@value{GDBN} circumvents the problem by treating the inner block as if it had
10275the same scope as the outer block. In the error message, @var{symbol}
10276may be shown as ``@code{(don't know)}'' if the outer block is not a
10277function.
10278
10279@item block at @var{address} out of order
10280
10281The symbol information for symbol scope blocks should occur in
10282order of increasing addresses. This error indicates that it does not
10283do so.
10284
10285@value{GDBN} does not circumvent this problem, and has trouble
10286locating symbols in the source file whose symbols it is reading. (You
10287can often determine what source file is affected by specifying
10288@code{set verbose on}. @xref{Messages/Warnings, ,Optional warnings and
10289messages}.)
10290
10291@item bad block start address patched
10292
10293The symbol information for a symbol scope block has a start address
10294smaller than the address of the preceding source line. This is known
10295to occur in the SunOS 4.1.1 (and earlier) C compiler.
10296
10297@value{GDBN} circumvents the problem by treating the symbol scope block as
10298starting on the previous source line.
10299
10300@item bad string table offset in symbol @var{n}
10301
10302@cindex foo
10303Symbol number @var{n} contains a pointer into the string table which is
10304larger than the size of the string table.
10305
10306@value{GDBN} circumvents the problem by considering the symbol to have the
10307name @code{foo}, which may cause other problems if many symbols end up
10308with this name.
10309
10310@item unknown symbol type @code{0x@var{nn}}
10311
7a292a7a
SS
10312The symbol information contains new data types that @value{GDBN} does
10313not yet know how to read. @code{0x@var{nn}} is the symbol type of the
d4f3574e 10314uncomprehended information, in hexadecimal.
c906108c 10315
7a292a7a
SS
10316@value{GDBN} circumvents the error by ignoring this symbol information.
10317This usually allows you to debug your program, though certain symbols
c906108c 10318are not accessible. If you encounter such a problem and feel like
7a292a7a
SS
10319debugging it, you can debug @code{@value{GDBP}} with itself, breakpoint
10320on @code{complain}, then go up to the function @code{read_dbx_symtab}
10321and examine @code{*bufp} to see the symbol.
c906108c
SS
10322
10323@item stub type has NULL name
c906108c 10324
7a292a7a 10325@value{GDBN} could not find the full definition for a struct or class.
c906108c 10326
7a292a7a 10327@item const/volatile indicator missing (ok if using g++ v1.x), got@dots{}
b37052ae 10328The symbol information for a C@t{++} member function is missing some
7a292a7a
SS
10329information that recent versions of the compiler should have output for
10330it.
c906108c
SS
10331
10332@item info mismatch between compiler and debugger
10333
10334@value{GDBN} could not parse a type specification output by the compiler.
7a292a7a 10335
c906108c
SS
10336@end table
10337
6d2ebf8b 10338@node Targets
c906108c 10339@chapter Specifying a Debugging Target
7a292a7a 10340
c906108c
SS
10341@cindex debugging target
10342@kindex target
10343
10344A @dfn{target} is the execution environment occupied by your program.
53a5351d
JM
10345
10346Often, @value{GDBN} runs in the same host environment as your program;
10347in that case, the debugging target is specified as a side effect when
10348you use the @code{file} or @code{core} commands. When you need more
c906108c
SS
10349flexibility---for example, running @value{GDBN} on a physically separate
10350host, or controlling a standalone system over a serial port or a
53a5351d
JM
10351realtime system over a TCP/IP connection---you can use the @code{target}
10352command to specify one of the target types configured for @value{GDBN}
10353(@pxref{Target Commands, ,Commands for managing targets}).
c906108c
SS
10354
10355@menu
10356* Active Targets:: Active targets
10357* Target Commands:: Commands for managing targets
c906108c
SS
10358* Byte Order:: Choosing target byte order
10359* Remote:: Remote debugging
96baa820 10360* KOD:: Kernel Object Display
c906108c
SS
10361
10362@end menu
10363
6d2ebf8b 10364@node Active Targets
c906108c 10365@section Active targets
7a292a7a 10366
c906108c
SS
10367@cindex stacking targets
10368@cindex active targets
10369@cindex multiple targets
10370
c906108c 10371There are three classes of targets: processes, core files, and
7a292a7a
SS
10372executable files. @value{GDBN} can work concurrently on up to three
10373active targets, one in each class. This allows you to (for example)
10374start a process and inspect its activity without abandoning your work on
10375a core file.
c906108c
SS
10376
10377For example, if you execute @samp{gdb a.out}, then the executable file
10378@code{a.out} is the only active target. If you designate a core file as
10379well---presumably from a prior run that crashed and coredumped---then
10380@value{GDBN} has two active targets and uses them in tandem, looking
10381first in the corefile target, then in the executable file, to satisfy
10382requests for memory addresses. (Typically, these two classes of target
10383are complementary, since core files contain only a program's
10384read-write memory---variables and so on---plus machine status, while
10385executable files contain only the program text and initialized data.)
c906108c
SS
10386
10387When you type @code{run}, your executable file becomes an active process
7a292a7a
SS
10388target as well. When a process target is active, all @value{GDBN}
10389commands requesting memory addresses refer to that target; addresses in
10390an active core file or executable file target are obscured while the
10391process target is active.
c906108c 10392
7a292a7a
SS
10393Use the @code{core-file} and @code{exec-file} commands to select a new
10394core file or executable target (@pxref{Files, ,Commands to specify
c906108c 10395files}). To specify as a target a process that is already running, use
7a292a7a
SS
10396the @code{attach} command (@pxref{Attach, ,Debugging an already-running
10397process}).
c906108c 10398
6d2ebf8b 10399@node Target Commands
c906108c
SS
10400@section Commands for managing targets
10401
10402@table @code
10403@item target @var{type} @var{parameters}
7a292a7a
SS
10404Connects the @value{GDBN} host environment to a target machine or
10405process. A target is typically a protocol for talking to debugging
10406facilities. You use the argument @var{type} to specify the type or
10407protocol of the target machine.
c906108c
SS
10408
10409Further @var{parameters} are interpreted by the target protocol, but
10410typically include things like device names or host names to connect
10411with, process numbers, and baud rates.
c906108c
SS
10412
10413The @code{target} command does not repeat if you press @key{RET} again
10414after executing the command.
10415
10416@kindex help target
10417@item help target
10418Displays the names of all targets available. To display targets
10419currently selected, use either @code{info target} or @code{info files}
10420(@pxref{Files, ,Commands to specify files}).
10421
10422@item help target @var{name}
10423Describe a particular target, including any parameters necessary to
10424select it.
10425
10426@kindex set gnutarget
10427@item set gnutarget @var{args}
5d161b24 10428@value{GDBN} uses its own library BFD to read your files. @value{GDBN}
c906108c 10429knows whether it is reading an @dfn{executable},
5d161b24
DB
10430a @dfn{core}, or a @dfn{.o} file; however, you can specify the file format
10431with the @code{set gnutarget} command. Unlike most @code{target} commands,
c906108c
SS
10432with @code{gnutarget} the @code{target} refers to a program, not a machine.
10433
d4f3574e 10434@quotation
c906108c
SS
10435@emph{Warning:} To specify a file format with @code{set gnutarget},
10436you must know the actual BFD name.
d4f3574e 10437@end quotation
c906108c 10438
d4f3574e
SS
10439@noindent
10440@xref{Files, , Commands to specify files}.
c906108c 10441
5d161b24 10442@kindex show gnutarget
c906108c
SS
10443@item show gnutarget
10444Use the @code{show gnutarget} command to display what file format
10445@code{gnutarget} is set to read. If you have not set @code{gnutarget},
10446@value{GDBN} will determine the file format for each file automatically,
10447and @code{show gnutarget} displays @samp{The current BDF target is "auto"}.
10448@end table
10449
c906108c
SS
10450Here are some common targets (available, or not, depending on the GDB
10451configuration):
c906108c
SS
10452
10453@table @code
10454@kindex target exec
10455@item target exec @var{program}
10456An executable file. @samp{target exec @var{program}} is the same as
10457@samp{exec-file @var{program}}.
10458
c906108c
SS
10459@kindex target core
10460@item target core @var{filename}
10461A core dump file. @samp{target core @var{filename}} is the same as
10462@samp{core-file @var{filename}}.
c906108c
SS
10463
10464@kindex target remote
10465@item target remote @var{dev}
10466Remote serial target in GDB-specific protocol. The argument @var{dev}
10467specifies what serial device to use for the connection (e.g.
10468@file{/dev/ttya}). @xref{Remote, ,Remote debugging}. @code{target remote}
d4f3574e 10469supports the @code{load} command. This is only useful if you have
c906108c
SS
10470some other way of getting the stub to the target system, and you can put
10471it somewhere in memory where it won't get clobbered by the download.
10472
c906108c
SS
10473@kindex target sim
10474@item target sim
2df3850c 10475Builtin CPU simulator. @value{GDBN} includes simulators for most architectures.
104c1213 10476In general,
474c8240 10477@smallexample
104c1213
JM
10478 target sim
10479 load
10480 run
474c8240 10481@end smallexample
d4f3574e 10482@noindent
104c1213 10483works; however, you cannot assume that a specific memory map, device
d4f3574e 10484drivers, or even basic I/O is available, although some simulators do
104c1213
JM
10485provide these. For info about any processor-specific simulator details,
10486see the appropriate section in @ref{Embedded Processors, ,Embedded
10487Processors}.
10488
c906108c
SS
10489@end table
10490
104c1213 10491Some configurations may include these targets as well:
c906108c
SS
10492
10493@table @code
10494
c906108c
SS
10495@kindex target nrom
10496@item target nrom @var{dev}
10497NetROM ROM emulator. This target only supports downloading.
10498
c906108c
SS
10499@end table
10500
5d161b24 10501Different targets are available on different configurations of @value{GDBN};
c906108c 10502your configuration may have more or fewer targets.
c906108c
SS
10503
10504Many remote targets require you to download the executable's code
10505once you've successfully established a connection.
10506
10507@table @code
10508
10509@kindex load @var{filename}
10510@item load @var{filename}
c906108c
SS
10511Depending on what remote debugging facilities are configured into
10512@value{GDBN}, the @code{load} command may be available. Where it exists, it
10513is meant to make @var{filename} (an executable) available for debugging
10514on the remote system---by downloading, or dynamic linking, for example.
10515@code{load} also records the @var{filename} symbol table in @value{GDBN}, like
10516the @code{add-symbol-file} command.
10517
10518If your @value{GDBN} does not have a @code{load} command, attempting to
10519execute it gets the error message ``@code{You can't do that when your
10520target is @dots{}}''
c906108c
SS
10521
10522The file is loaded at whatever address is specified in the executable.
10523For some object file formats, you can specify the load address when you
10524link the program; for other formats, like a.out, the object file format
10525specifies a fixed address.
10526@c FIXME! This would be a good place for an xref to the GNU linker doc.
10527
c906108c
SS
10528@code{load} does not repeat if you press @key{RET} again after using it.
10529@end table
10530
6d2ebf8b 10531@node Byte Order
c906108c 10532@section Choosing target byte order
7a292a7a 10533
c906108c
SS
10534@cindex choosing target byte order
10535@cindex target byte order
c906108c 10536
172c2a43 10537Some types of processors, such as the MIPS, PowerPC, and Renesas SH,
c906108c
SS
10538offer the ability to run either big-endian or little-endian byte
10539orders. Usually the executable or symbol will include a bit to
10540designate the endian-ness, and you will not need to worry about
10541which to use. However, you may still find it useful to adjust
d4f3574e 10542@value{GDBN}'s idea of processor endian-ness manually.
c906108c
SS
10543
10544@table @code
10545@kindex set endian big
10546@item set endian big
10547Instruct @value{GDBN} to assume the target is big-endian.
10548
10549@kindex set endian little
10550@item set endian little
10551Instruct @value{GDBN} to assume the target is little-endian.
10552
10553@kindex set endian auto
10554@item set endian auto
10555Instruct @value{GDBN} to use the byte order associated with the
10556executable.
10557
10558@item show endian
10559Display @value{GDBN}'s current idea of the target byte order.
10560
10561@end table
10562
10563Note that these commands merely adjust interpretation of symbolic
10564data on the host, and that they have absolutely no effect on the
10565target system.
10566
6d2ebf8b 10567@node Remote
c906108c
SS
10568@section Remote debugging
10569@cindex remote debugging
10570
10571If you are trying to debug a program running on a machine that cannot run
5d161b24
DB
10572@value{GDBN} in the usual way, it is often useful to use remote debugging.
10573For example, you might use remote debugging on an operating system kernel,
c906108c
SS
10574or on a small system which does not have a general purpose operating system
10575powerful enough to run a full-featured debugger.
10576
10577Some configurations of @value{GDBN} have special serial or TCP/IP interfaces
10578to make this work with particular debugging targets. In addition,
5d161b24 10579@value{GDBN} comes with a generic serial protocol (specific to @value{GDBN},
c906108c
SS
10580but not specific to any particular target system) which you can use if you
10581write the remote stubs---the code that runs on the remote system to
10582communicate with @value{GDBN}.
10583
10584Other remote targets may be available in your
10585configuration of @value{GDBN}; use @code{help target} to list them.
c906108c 10586
6f05cf9f
AC
10587@node KOD
10588@section Kernel Object Display
10589
10590@cindex kernel object display
10591@cindex kernel object
10592@cindex KOD
10593
10594Some targets support kernel object display. Using this facility,
10595@value{GDBN} communicates specially with the underlying operating system
10596and can display information about operating system-level objects such as
10597mutexes and other synchronization objects. Exactly which objects can be
10598displayed is determined on a per-OS basis.
10599
10600Use the @code{set os} command to set the operating system. This tells
10601@value{GDBN} which kernel object display module to initialize:
10602
474c8240 10603@smallexample
6f05cf9f 10604(@value{GDBP}) set os cisco
474c8240 10605@end smallexample
6f05cf9f
AC
10606
10607If @code{set os} succeeds, @value{GDBN} will display some information
10608about the operating system, and will create a new @code{info} command
10609which can be used to query the target. The @code{info} command is named
10610after the operating system:
c906108c 10611
474c8240 10612@smallexample
6f05cf9f
AC
10613(@value{GDBP}) info cisco
10614List of Cisco Kernel Objects
10615Object Description
10616any Any and all objects
474c8240 10617@end smallexample
6f05cf9f
AC
10618
10619Further subcommands can be used to query about particular objects known
10620by the kernel.
10621
10622There is currently no way to determine whether a given operating system
10623is supported other than to try it.
10624
10625
10626@node Remote Debugging
10627@chapter Debugging remote programs
10628
6b2f586d 10629@menu
07f31aa6 10630* Connecting:: Connecting to a remote target
6b2f586d
AC
10631* Server:: Using the gdbserver program
10632* NetWare:: Using the gdbserve.nlm program
501eef12 10633* Remote configuration:: Remote configuration
6b2f586d 10634* remote stub:: Implementing a remote stub
6b2f586d
AC
10635@end menu
10636
07f31aa6
DJ
10637@node Connecting
10638@section Connecting to a remote target
10639
10640On the @value{GDBN} host machine, you will need an unstripped copy of
10641your program, since @value{GDBN} needs symobl and debugging information.
10642Start up @value{GDBN} as usual, using the name of the local copy of your
10643program as the first argument.
10644
10645@cindex serial line, @code{target remote}
10646If you're using a serial line, you may want to give @value{GDBN} the
10647@w{@samp{--baud}} option, or use the @code{set remotebaud} command
10648before the @code{target} command.
10649
10650After that, use @code{target remote} to establish communications with
10651the target machine. Its argument specifies how to communicate---either
10652via a devicename attached to a direct serial line, or a TCP or UDP port
10653(possibly to a terminal server which in turn has a serial line to the
10654target). For example, to use a serial line connected to the device
10655named @file{/dev/ttyb}:
10656
10657@smallexample
10658target remote /dev/ttyb
10659@end smallexample
10660
10661@cindex TCP port, @code{target remote}
10662To use a TCP connection, use an argument of the form
10663@code{@var{host}:@var{port}} or @code{tcp:@var{host}:@var{port}}.
10664For example, to connect to port 2828 on a
10665terminal server named @code{manyfarms}:
10666
10667@smallexample
10668target remote manyfarms:2828
10669@end smallexample
10670
10671If your remote target is actually running on the same machine as
10672your debugger session (e.g.@: a simulator of your target running on
10673the same host), you can omit the hostname. For example, to connect
10674to port 1234 on your local machine:
10675
10676@smallexample
10677target remote :1234
10678@end smallexample
10679@noindent
10680
10681Note that the colon is still required here.
10682
10683@cindex UDP port, @code{target remote}
10684To use a UDP connection, use an argument of the form
10685@code{udp:@var{host}:@var{port}}. For example, to connect to UDP port 2828
10686on a terminal server named @code{manyfarms}:
10687
10688@smallexample
10689target remote udp:manyfarms:2828
10690@end smallexample
10691
10692When using a UDP connection for remote debugging, you should keep in mind
10693that the `U' stands for ``Unreliable''. UDP can silently drop packets on
10694busy or unreliable networks, which will cause havoc with your debugging
10695session.
10696
10697Now you can use all the usual commands to examine and change data and to
10698step and continue the remote program.
10699
10700@cindex interrupting remote programs
10701@cindex remote programs, interrupting
10702Whenever @value{GDBN} is waiting for the remote program, if you type the
10703interrupt character (often @key{C-C}), @value{GDBN} attempts to stop the
10704program. This may or may not succeed, depending in part on the hardware
10705and the serial drivers the remote system uses. If you type the
10706interrupt character once again, @value{GDBN} displays this prompt:
10707
10708@smallexample
10709Interrupted while waiting for the program.
10710Give up (and stop debugging it)? (y or n)
10711@end smallexample
10712
10713If you type @kbd{y}, @value{GDBN} abandons the remote debugging session.
10714(If you decide you want to try again later, you can use @samp{target
10715remote} again to connect once more.) If you type @kbd{n}, @value{GDBN}
10716goes back to waiting.
10717
10718@table @code
10719@kindex detach (remote)
10720@item detach
10721When you have finished debugging the remote program, you can use the
10722@code{detach} command to release it from @value{GDBN} control.
10723Detaching from the target normally resumes its execution, but the results
10724will depend on your particular remote stub. After the @code{detach}
10725command, @value{GDBN} is free to connect to another target.
10726
10727@kindex disconnect
10728@item disconnect
10729The @code{disconnect} command behaves like @code{detach}, except that
10730the target is generally not resumed. It will wait for @value{GDBN}
10731(this instance or another one) to connect and continue debugging. After
10732the @code{disconnect} command, @value{GDBN} is again free to connect to
10733another target.
10734@end table
10735
6f05cf9f
AC
10736@node Server
10737@section Using the @code{gdbserver} program
10738
10739@kindex gdbserver
10740@cindex remote connection without stubs
10741@code{gdbserver} is a control program for Unix-like systems, which
10742allows you to connect your program with a remote @value{GDBN} via
10743@code{target remote}---but without linking in the usual debugging stub.
10744
10745@code{gdbserver} is not a complete replacement for the debugging stubs,
10746because it requires essentially the same operating-system facilities
10747that @value{GDBN} itself does. In fact, a system that can run
10748@code{gdbserver} to connect to a remote @value{GDBN} could also run
10749@value{GDBN} locally! @code{gdbserver} is sometimes useful nevertheless,
10750because it is a much smaller program than @value{GDBN} itself. It is
10751also easier to port than all of @value{GDBN}, so you may be able to get
10752started more quickly on a new system by using @code{gdbserver}.
10753Finally, if you develop code for real-time systems, you may find that
10754the tradeoffs involved in real-time operation make it more convenient to
10755do as much development work as possible on another system, for example
10756by cross-compiling. You can use @code{gdbserver} to make a similar
10757choice for debugging.
10758
10759@value{GDBN} and @code{gdbserver} communicate via either a serial line
10760or a TCP connection, using the standard @value{GDBN} remote serial
10761protocol.
10762
10763@table @emph
10764@item On the target machine,
10765you need to have a copy of the program you want to debug.
10766@code{gdbserver} does not need your program's symbol table, so you can
10767strip the program if necessary to save space. @value{GDBN} on the host
10768system does all the symbol handling.
10769
10770To use the server, you must tell it how to communicate with @value{GDBN};
56460a61 10771the name of your program; and the arguments for your program. The usual
6f05cf9f
AC
10772syntax is:
10773
10774@smallexample
10775target> gdbserver @var{comm} @var{program} [ @var{args} @dots{} ]
10776@end smallexample
10777
10778@var{comm} is either a device name (to use a serial line) or a TCP
10779hostname and portnumber. For example, to debug Emacs with the argument
10780@samp{foo.txt} and communicate with @value{GDBN} over the serial port
10781@file{/dev/com1}:
10782
10783@smallexample
10784target> gdbserver /dev/com1 emacs foo.txt
10785@end smallexample
10786
10787@code{gdbserver} waits passively for the host @value{GDBN} to communicate
10788with it.
10789
10790To use a TCP connection instead of a serial line:
10791
10792@smallexample
10793target> gdbserver host:2345 emacs foo.txt
10794@end smallexample
10795
10796The only difference from the previous example is the first argument,
10797specifying that you are communicating with the host @value{GDBN} via
10798TCP. The @samp{host:2345} argument means that @code{gdbserver} is to
10799expect a TCP connection from machine @samp{host} to local TCP port 2345.
10800(Currently, the @samp{host} part is ignored.) You can choose any number
10801you want for the port number as long as it does not conflict with any
10802TCP ports already in use on the target system (for example, @code{23} is
10803reserved for @code{telnet}).@footnote{If you choose a port number that
10804conflicts with another service, @code{gdbserver} prints an error message
10805and exits.} You must use the same port number with the host @value{GDBN}
10806@code{target remote} command.
10807
56460a61
DJ
10808On some targets, @code{gdbserver} can also attach to running programs.
10809This is accomplished via the @code{--attach} argument. The syntax is:
10810
10811@smallexample
10812target> gdbserver @var{comm} --attach @var{pid}
10813@end smallexample
10814
10815@var{pid} is the process ID of a currently running process. It isn't necessary
10816to point @code{gdbserver} at a binary for the running process.
10817
b1fe9455
DJ
10818@pindex pidof
10819@cindex attach to a program by name
10820You can debug processes by name instead of process ID if your target has the
10821@code{pidof} utility:
10822
10823@smallexample
10824target> gdbserver @var{comm} --attach `pidof @var{PROGRAM}`
10825@end smallexample
10826
10827In case more than one copy of @var{PROGRAM} is running, or @var{PROGRAM}
10828has multiple threads, most versions of @code{pidof} support the
10829@code{-s} option to only return the first process ID.
10830
07f31aa6
DJ
10831@item On the host machine,
10832connect to your target (@pxref{Connecting,,Connecting to a remote target}).
6f05cf9f
AC
10833For TCP connections, you must start up @code{gdbserver} prior to using
10834the @code{target remote} command. Otherwise you may get an error whose
10835text depends on the host system, but which usually looks something like
07f31aa6
DJ
10836@samp{Connection refused}. You don't need to use the @code{load}
10837command in @value{GDBN} when using gdbserver, since the program is
10838already on the target.
10839
6f05cf9f
AC
10840@end table
10841
10842@node NetWare
10843@section Using the @code{gdbserve.nlm} program
10844
10845@kindex gdbserve.nlm
10846@code{gdbserve.nlm} is a control program for NetWare systems, which
10847allows you to connect your program with a remote @value{GDBN} via
10848@code{target remote}.
10849
10850@value{GDBN} and @code{gdbserve.nlm} communicate via a serial line,
10851using the standard @value{GDBN} remote serial protocol.
10852
10853@table @emph
10854@item On the target machine,
10855you need to have a copy of the program you want to debug.
10856@code{gdbserve.nlm} does not need your program's symbol table, so you
10857can strip the program if necessary to save space. @value{GDBN} on the
10858host system does all the symbol handling.
10859
10860To use the server, you must tell it how to communicate with
10861@value{GDBN}; the name of your program; and the arguments for your
10862program. The syntax is:
10863
10864@smallexample
10865load gdbserve [ BOARD=@var{board} ] [ PORT=@var{port} ]
10866 [ BAUD=@var{baud} ] @var{program} [ @var{args} @dots{} ]
10867@end smallexample
10868
10869@var{board} and @var{port} specify the serial line; @var{baud} specifies
10870the baud rate used by the connection. @var{port} and @var{node} default
10871to 0, @var{baud} defaults to 9600@dmn{bps}.
10872
10873For example, to debug Emacs with the argument @samp{foo.txt}and
10874communicate with @value{GDBN} over serial port number 2 or board 1
10875using a 19200@dmn{bps} connection:
10876
10877@smallexample
10878load gdbserve BOARD=1 PORT=2 BAUD=19200 emacs foo.txt
10879@end smallexample
10880
07f31aa6
DJ
10881@item
10882On the @value{GDBN} host machine, connect to your target (@pxref{Connecting,,
10883Connecting to a remote target}).
6f05cf9f 10884
6f05cf9f
AC
10885@end table
10886
501eef12
AC
10887@node Remote configuration
10888@section Remote configuration
10889
10890The following configuration options are available when debugging remote
10891programs:
10892
10893@table @code
10894@kindex set remote hardware-watchpoint-limit
10895@kindex set remote hardware-breakpoint-limit
10896@anchor{set remote hardware-watchpoint-limit}
10897@anchor{set remote hardware-breakpoint-limit}
10898@item set remote hardware-watchpoint-limit @var{limit}
10899@itemx set remote hardware-breakpoint-limit @var{limit}
10900Restrict @value{GDBN} to using @var{limit} remote hardware breakpoint or
10901watchpoints. A limit of -1, the default, is treated as unlimited.
10902@end table
10903
6f05cf9f
AC
10904@node remote stub
10905@section Implementing a remote stub
7a292a7a 10906
8e04817f
AC
10907@cindex debugging stub, example
10908@cindex remote stub, example
10909@cindex stub example, remote debugging
10910The stub files provided with @value{GDBN} implement the target side of the
10911communication protocol, and the @value{GDBN} side is implemented in the
10912@value{GDBN} source file @file{remote.c}. Normally, you can simply allow
10913these subroutines to communicate, and ignore the details. (If you're
10914implementing your own stub file, you can still ignore the details: start
10915with one of the existing stub files. @file{sparc-stub.c} is the best
10916organized, and therefore the easiest to read.)
10917
104c1213
JM
10918@cindex remote serial debugging, overview
10919To debug a program running on another machine (the debugging
10920@dfn{target} machine), you must first arrange for all the usual
10921prerequisites for the program to run by itself. For example, for a C
10922program, you need:
c906108c 10923
104c1213
JM
10924@enumerate
10925@item
10926A startup routine to set up the C runtime environment; these usually
10927have a name like @file{crt0}. The startup routine may be supplied by
10928your hardware supplier, or you may have to write your own.
96baa820 10929
5d161b24 10930@item
d4f3574e 10931A C subroutine library to support your program's
104c1213 10932subroutine calls, notably managing input and output.
96baa820 10933
104c1213
JM
10934@item
10935A way of getting your program to the other machine---for example, a
10936download program. These are often supplied by the hardware
10937manufacturer, but you may have to write your own from hardware
10938documentation.
10939@end enumerate
96baa820 10940
104c1213
JM
10941The next step is to arrange for your program to use a serial port to
10942communicate with the machine where @value{GDBN} is running (the @dfn{host}
10943machine). In general terms, the scheme looks like this:
96baa820 10944
104c1213
JM
10945@table @emph
10946@item On the host,
10947@value{GDBN} already understands how to use this protocol; when everything
10948else is set up, you can simply use the @samp{target remote} command
10949(@pxref{Targets,,Specifying a Debugging Target}).
10950
10951@item On the target,
10952you must link with your program a few special-purpose subroutines that
10953implement the @value{GDBN} remote serial protocol. The file containing these
10954subroutines is called a @dfn{debugging stub}.
10955
10956On certain remote targets, you can use an auxiliary program
10957@code{gdbserver} instead of linking a stub into your program.
10958@xref{Server,,Using the @code{gdbserver} program}, for details.
10959@end table
96baa820 10960
104c1213
JM
10961The debugging stub is specific to the architecture of the remote
10962machine; for example, use @file{sparc-stub.c} to debug programs on
10963@sc{sparc} boards.
96baa820 10964
104c1213
JM
10965@cindex remote serial stub list
10966These working remote stubs are distributed with @value{GDBN}:
96baa820 10967
104c1213
JM
10968@table @code
10969
10970@item i386-stub.c
41afff9a 10971@cindex @file{i386-stub.c}
104c1213
JM
10972@cindex Intel
10973@cindex i386
10974For Intel 386 and compatible architectures.
10975
10976@item m68k-stub.c
41afff9a 10977@cindex @file{m68k-stub.c}
104c1213
JM
10978@cindex Motorola 680x0
10979@cindex m680x0
10980For Motorola 680x0 architectures.
10981
10982@item sh-stub.c
41afff9a 10983@cindex @file{sh-stub.c}
172c2a43 10984@cindex Renesas
104c1213 10985@cindex SH
172c2a43 10986For Renesas SH architectures.
104c1213
JM
10987
10988@item sparc-stub.c
41afff9a 10989@cindex @file{sparc-stub.c}
104c1213
JM
10990@cindex Sparc
10991For @sc{sparc} architectures.
10992
10993@item sparcl-stub.c
41afff9a 10994@cindex @file{sparcl-stub.c}
104c1213
JM
10995@cindex Fujitsu
10996@cindex SparcLite
10997For Fujitsu @sc{sparclite} architectures.
10998
10999@end table
11000
11001The @file{README} file in the @value{GDBN} distribution may list other
11002recently added stubs.
11003
11004@menu
11005* Stub Contents:: What the stub can do for you
11006* Bootstrapping:: What you must do for the stub
11007* Debug Session:: Putting it all together
104c1213
JM
11008@end menu
11009
6d2ebf8b 11010@node Stub Contents
6f05cf9f 11011@subsection What the stub can do for you
104c1213
JM
11012
11013@cindex remote serial stub
11014The debugging stub for your architecture supplies these three
11015subroutines:
11016
11017@table @code
11018@item set_debug_traps
11019@kindex set_debug_traps
11020@cindex remote serial stub, initialization
11021This routine arranges for @code{handle_exception} to run when your
11022program stops. You must call this subroutine explicitly near the
11023beginning of your program.
11024
11025@item handle_exception
11026@kindex handle_exception
11027@cindex remote serial stub, main routine
11028This is the central workhorse, but your program never calls it
11029explicitly---the setup code arranges for @code{handle_exception} to
11030run when a trap is triggered.
11031
11032@code{handle_exception} takes control when your program stops during
11033execution (for example, on a breakpoint), and mediates communications
11034with @value{GDBN} on the host machine. This is where the communications
11035protocol is implemented; @code{handle_exception} acts as the @value{GDBN}
d4f3574e 11036representative on the target machine. It begins by sending summary
104c1213
JM
11037information on the state of your program, then continues to execute,
11038retrieving and transmitting any information @value{GDBN} needs, until you
11039execute a @value{GDBN} command that makes your program resume; at that point,
11040@code{handle_exception} returns control to your own code on the target
5d161b24 11041machine.
104c1213
JM
11042
11043@item breakpoint
11044@cindex @code{breakpoint} subroutine, remote
11045Use this auxiliary subroutine to make your program contain a
11046breakpoint. Depending on the particular situation, this may be the only
11047way for @value{GDBN} to get control. For instance, if your target
11048machine has some sort of interrupt button, you won't need to call this;
11049pressing the interrupt button transfers control to
11050@code{handle_exception}---in effect, to @value{GDBN}. On some machines,
11051simply receiving characters on the serial port may also trigger a trap;
11052again, in that situation, you don't need to call @code{breakpoint} from
11053your own program---simply running @samp{target remote} from the host
5d161b24 11054@value{GDBN} session gets control.
104c1213
JM
11055
11056Call @code{breakpoint} if none of these is true, or if you simply want
11057to make certain your program stops at a predetermined point for the
11058start of your debugging session.
11059@end table
11060
6d2ebf8b 11061@node Bootstrapping
6f05cf9f 11062@subsection What you must do for the stub
104c1213
JM
11063
11064@cindex remote stub, support routines
11065The debugging stubs that come with @value{GDBN} are set up for a particular
11066chip architecture, but they have no information about the rest of your
11067debugging target machine.
11068
11069First of all you need to tell the stub how to communicate with the
11070serial port.
11071
11072@table @code
11073@item int getDebugChar()
11074@kindex getDebugChar
11075Write this subroutine to read a single character from the serial port.
11076It may be identical to @code{getchar} for your target system; a
11077different name is used to allow you to distinguish the two if you wish.
11078
11079@item void putDebugChar(int)
11080@kindex putDebugChar
11081Write this subroutine to write a single character to the serial port.
5d161b24 11082It may be identical to @code{putchar} for your target system; a
104c1213
JM
11083different name is used to allow you to distinguish the two if you wish.
11084@end table
11085
11086@cindex control C, and remote debugging
11087@cindex interrupting remote targets
11088If you want @value{GDBN} to be able to stop your program while it is
11089running, you need to use an interrupt-driven serial driver, and arrange
11090for it to stop when it receives a @code{^C} (@samp{\003}, the control-C
11091character). That is the character which @value{GDBN} uses to tell the
11092remote system to stop.
11093
11094Getting the debugging target to return the proper status to @value{GDBN}
11095probably requires changes to the standard stub; one quick and dirty way
11096is to just execute a breakpoint instruction (the ``dirty'' part is that
11097@value{GDBN} reports a @code{SIGTRAP} instead of a @code{SIGINT}).
11098
11099Other routines you need to supply are:
11100
11101@table @code
11102@item void exceptionHandler (int @var{exception_number}, void *@var{exception_address})
11103@kindex exceptionHandler
11104Write this function to install @var{exception_address} in the exception
11105handling tables. You need to do this because the stub does not have any
11106way of knowing what the exception handling tables on your target system
11107are like (for example, the processor's table might be in @sc{rom},
11108containing entries which point to a table in @sc{ram}).
11109@var{exception_number} is the exception number which should be changed;
11110its meaning is architecture-dependent (for example, different numbers
11111might represent divide by zero, misaligned access, etc). When this
11112exception occurs, control should be transferred directly to
11113@var{exception_address}, and the processor state (stack, registers,
11114and so on) should be just as it is when a processor exception occurs. So if
11115you want to use a jump instruction to reach @var{exception_address}, it
11116should be a simple jump, not a jump to subroutine.
11117
11118For the 386, @var{exception_address} should be installed as an interrupt
11119gate so that interrupts are masked while the handler runs. The gate
11120should be at privilege level 0 (the most privileged level). The
11121@sc{sparc} and 68k stubs are able to mask interrupts themselves without
11122help from @code{exceptionHandler}.
11123
11124@item void flush_i_cache()
11125@kindex flush_i_cache
d4f3574e 11126On @sc{sparc} and @sc{sparclite} only, write this subroutine to flush the
104c1213
JM
11127instruction cache, if any, on your target machine. If there is no
11128instruction cache, this subroutine may be a no-op.
11129
11130On target machines that have instruction caches, @value{GDBN} requires this
11131function to make certain that the state of your program is stable.
11132@end table
11133
11134@noindent
11135You must also make sure this library routine is available:
11136
11137@table @code
11138@item void *memset(void *, int, int)
11139@kindex memset
11140This is the standard library function @code{memset} that sets an area of
11141memory to a known value. If you have one of the free versions of
11142@code{libc.a}, @code{memset} can be found there; otherwise, you must
11143either obtain it from your hardware manufacturer, or write your own.
11144@end table
11145
11146If you do not use the GNU C compiler, you may need other standard
11147library subroutines as well; this varies from one stub to another,
11148but in general the stubs are likely to use any of the common library
d4f3574e 11149subroutines which @code{@value{GCC}} generates as inline code.
104c1213
JM
11150
11151
6d2ebf8b 11152@node Debug Session
6f05cf9f 11153@subsection Putting it all together
104c1213
JM
11154
11155@cindex remote serial debugging summary
11156In summary, when your program is ready to debug, you must follow these
11157steps.
11158
11159@enumerate
11160@item
6d2ebf8b 11161Make sure you have defined the supporting low-level routines
104c1213
JM
11162(@pxref{Bootstrapping,,What you must do for the stub}):
11163@display
11164@code{getDebugChar}, @code{putDebugChar},
11165@code{flush_i_cache}, @code{memset}, @code{exceptionHandler}.
11166@end display
11167
11168@item
11169Insert these lines near the top of your program:
11170
474c8240 11171@smallexample
104c1213
JM
11172set_debug_traps();
11173breakpoint();
474c8240 11174@end smallexample
104c1213
JM
11175
11176@item
11177For the 680x0 stub only, you need to provide a variable called
11178@code{exceptionHook}. Normally you just use:
11179
474c8240 11180@smallexample
104c1213 11181void (*exceptionHook)() = 0;
474c8240 11182@end smallexample
104c1213 11183
d4f3574e 11184@noindent
104c1213 11185but if before calling @code{set_debug_traps}, you set it to point to a
598ca718 11186function in your program, that function is called when
104c1213
JM
11187@code{@value{GDBN}} continues after stopping on a trap (for example, bus
11188error). The function indicated by @code{exceptionHook} is called with
11189one parameter: an @code{int} which is the exception number.
11190
11191@item
11192Compile and link together: your program, the @value{GDBN} debugging stub for
11193your target architecture, and the supporting subroutines.
11194
11195@item
11196Make sure you have a serial connection between your target machine and
11197the @value{GDBN} host, and identify the serial port on the host.
11198
11199@item
11200@c The "remote" target now provides a `load' command, so we should
11201@c document that. FIXME.
11202Download your program to your target machine (or get it there by
11203whatever means the manufacturer provides), and start it.
11204
11205@item
07f31aa6
DJ
11206Start @value{GDBN} on the host, and connect to the target
11207(@pxref{Connecting,,Connecting to a remote target}).
9db8d71f 11208
104c1213
JM
11209@end enumerate
11210
8e04817f
AC
11211@node Configurations
11212@chapter Configuration-Specific Information
104c1213 11213
8e04817f
AC
11214While nearly all @value{GDBN} commands are available for all native and
11215cross versions of the debugger, there are some exceptions. This chapter
11216describes things that are only available in certain configurations.
104c1213 11217
8e04817f
AC
11218There are three major categories of configurations: native
11219configurations, where the host and target are the same, embedded
11220operating system configurations, which are usually the same for several
11221different processor architectures, and bare embedded processors, which
11222are quite different from each other.
104c1213 11223
8e04817f
AC
11224@menu
11225* Native::
11226* Embedded OS::
11227* Embedded Processors::
11228* Architectures::
11229@end menu
104c1213 11230
8e04817f
AC
11231@node Native
11232@section Native
104c1213 11233
8e04817f
AC
11234This section describes details specific to particular native
11235configurations.
6cf7e474 11236
8e04817f
AC
11237@menu
11238* HP-UX:: HP-UX
11239* SVR4 Process Information:: SVR4 process information
11240* DJGPP Native:: Features specific to the DJGPP port
78c47bea 11241* Cygwin Native:: Features specific to the Cygwin port
8e04817f 11242@end menu
6cf7e474 11243
8e04817f
AC
11244@node HP-UX
11245@subsection HP-UX
104c1213 11246
8e04817f
AC
11247On HP-UX systems, if you refer to a function or variable name that
11248begins with a dollar sign, @value{GDBN} searches for a user or system
11249name first, before it searches for a convenience variable.
104c1213 11250
8e04817f
AC
11251@node SVR4 Process Information
11252@subsection SVR4 process information
104c1213 11253
8e04817f
AC
11254@kindex /proc
11255@cindex process image
104c1213 11256
8e04817f
AC
11257Many versions of SVR4 provide a facility called @samp{/proc} that can be
11258used to examine the image of a running process using file-system
11259subroutines. If @value{GDBN} is configured for an operating system with
11260this facility, the command @code{info proc} is available to report on
11261several kinds of information about the process running your program.
11262@code{info proc} works only on SVR4 systems that include the
11263@code{procfs} code. This includes OSF/1 (Digital Unix), Solaris, Irix,
1104b9e7 11264and Unixware, but not HP-UX or @sc{gnu}/Linux, for example.
104c1213 11265
8e04817f
AC
11266@table @code
11267@kindex info proc
11268@item info proc
11269Summarize available information about the process.
6cf7e474 11270
8e04817f
AC
11271@kindex info proc mappings
11272@item info proc mappings
11273Report on the address ranges accessible in the program, with information
11274on whether your program may read, write, or execute each range.
11275@ignore
11276@comment These sub-options of 'info proc' were not included when
11277@comment procfs.c was re-written. Keep their descriptions around
11278@comment against the day when someone finds the time to put them back in.
11279@kindex info proc times
11280@item info proc times
11281Starting time, user CPU time, and system CPU time for your program and
11282its children.
6cf7e474 11283
8e04817f
AC
11284@kindex info proc id
11285@item info proc id
11286Report on the process IDs related to your program: its own process ID,
11287the ID of its parent, the process group ID, and the session ID.
104c1213 11288
8e04817f
AC
11289@kindex info proc status
11290@item info proc status
11291General information on the state of the process. If the process is
11292stopped, this report includes the reason for stopping, and any signal
11293received.
d4f3574e 11294
8e04817f
AC
11295@item info proc all
11296Show all the above information about the process.
11297@end ignore
11298@end table
104c1213 11299
8e04817f
AC
11300@node DJGPP Native
11301@subsection Features for Debugging @sc{djgpp} Programs
11302@cindex @sc{djgpp} debugging
11303@cindex native @sc{djgpp} debugging
11304@cindex MS-DOS-specific commands
104c1213 11305
8e04817f
AC
11306@sc{djgpp} is the port of @sc{gnu} development tools to MS-DOS and
11307MS-Windows. @sc{djgpp} programs are 32-bit protected-mode programs
11308that use the @dfn{DPMI} (DOS Protected-Mode Interface) API to run on
11309top of real-mode DOS systems and their emulations.
104c1213 11310
8e04817f
AC
11311@value{GDBN} supports native debugging of @sc{djgpp} programs, and
11312defines a few commands specific to the @sc{djgpp} port. This
11313subsection describes those commands.
104c1213 11314
8e04817f
AC
11315@table @code
11316@kindex info dos
11317@item info dos
11318This is a prefix of @sc{djgpp}-specific commands which print
11319information about the target system and important OS structures.
f1251bdd 11320
8e04817f
AC
11321@kindex sysinfo
11322@cindex MS-DOS system info
11323@cindex free memory information (MS-DOS)
11324@item info dos sysinfo
11325This command displays assorted information about the underlying
11326platform: the CPU type and features, the OS version and flavor, the
11327DPMI version, and the available conventional and DPMI memory.
104c1213 11328
8e04817f
AC
11329@cindex GDT
11330@cindex LDT
11331@cindex IDT
11332@cindex segment descriptor tables
11333@cindex descriptor tables display
11334@item info dos gdt
11335@itemx info dos ldt
11336@itemx info dos idt
11337These 3 commands display entries from, respectively, Global, Local,
11338and Interrupt Descriptor Tables (GDT, LDT, and IDT). The descriptor
11339tables are data structures which store a descriptor for each segment
11340that is currently in use. The segment's selector is an index into a
11341descriptor table; the table entry for that index holds the
11342descriptor's base address and limit, and its attributes and access
11343rights.
104c1213 11344
8e04817f
AC
11345A typical @sc{djgpp} program uses 3 segments: a code segment, a data
11346segment (used for both data and the stack), and a DOS segment (which
11347allows access to DOS/BIOS data structures and absolute addresses in
11348conventional memory). However, the DPMI host will usually define
11349additional segments in order to support the DPMI environment.
d4f3574e 11350
8e04817f
AC
11351@cindex garbled pointers
11352These commands allow to display entries from the descriptor tables.
11353Without an argument, all entries from the specified table are
11354displayed. An argument, which should be an integer expression, means
11355display a single entry whose index is given by the argument. For
11356example, here's a convenient way to display information about the
11357debugged program's data segment:
104c1213 11358
8e04817f
AC
11359@smallexample
11360@exdent @code{(@value{GDBP}) info dos ldt $ds}
11361@exdent @code{0x13f: base=0x11970000 limit=0x0009ffff 32-Bit Data (Read/Write, Exp-up)}
11362@end smallexample
104c1213 11363
8e04817f
AC
11364@noindent
11365This comes in handy when you want to see whether a pointer is outside
11366the data segment's limit (i.e.@: @dfn{garbled}).
104c1213 11367
8e04817f
AC
11368@cindex page tables display (MS-DOS)
11369@item info dos pde
11370@itemx info dos pte
11371These two commands display entries from, respectively, the Page
11372Directory and the Page Tables. Page Directories and Page Tables are
11373data structures which control how virtual memory addresses are mapped
11374into physical addresses. A Page Table includes an entry for every
11375page of memory that is mapped into the program's address space; there
11376may be several Page Tables, each one holding up to 4096 entries. A
11377Page Directory has up to 4096 entries, one each for every Page Table
11378that is currently in use.
104c1213 11379
8e04817f
AC
11380Without an argument, @kbd{info dos pde} displays the entire Page
11381Directory, and @kbd{info dos pte} displays all the entries in all of
11382the Page Tables. An argument, an integer expression, given to the
11383@kbd{info dos pde} command means display only that entry from the Page
11384Directory table. An argument given to the @kbd{info dos pte} command
11385means display entries from a single Page Table, the one pointed to by
11386the specified entry in the Page Directory.
104c1213 11387
8e04817f
AC
11388@cindex direct memory access (DMA) on MS-DOS
11389These commands are useful when your program uses @dfn{DMA} (Direct
11390Memory Access), which needs physical addresses to program the DMA
11391controller.
104c1213 11392
8e04817f 11393These commands are supported only with some DPMI servers.
104c1213 11394
8e04817f
AC
11395@cindex physical address from linear address
11396@item info dos address-pte @var{addr}
11397This command displays the Page Table entry for a specified linear
11398address. The argument linear address @var{addr} should already have the
11399appropriate segment's base address added to it, because this command
11400accepts addresses which may belong to @emph{any} segment. For
11401example, here's how to display the Page Table entry for the page where
11402the variable @code{i} is stored:
104c1213 11403
8e04817f
AC
11404@smallexample
11405@exdent @code{(@value{GDBP}) info dos address-pte __djgpp_base_address + (char *)&i}
11406@exdent @code{Page Table entry for address 0x11a00d30:}
11407@exdent @code{Base=0x02698000 Dirty Acc. Not-Cached Write-Back Usr Read-Write +0xd30}
11408@end smallexample
104c1213 11409
8e04817f
AC
11410@noindent
11411This says that @code{i} is stored at offset @code{0xd30} from the page
11412whose physical base address is @code{0x02698000}, and prints all the
11413attributes of that page.
104c1213 11414
8e04817f
AC
11415Note that you must cast the addresses of variables to a @code{char *},
11416since otherwise the value of @code{__djgpp_base_address}, the base
11417address of all variables and functions in a @sc{djgpp} program, will
11418be added using the rules of C pointer arithmetics: if @code{i} is
11419declared an @code{int}, @value{GDBN} will add 4 times the value of
11420@code{__djgpp_base_address} to the address of @code{i}.
104c1213 11421
8e04817f
AC
11422Here's another example, it displays the Page Table entry for the
11423transfer buffer:
104c1213 11424
8e04817f
AC
11425@smallexample
11426@exdent @code{(@value{GDBP}) info dos address-pte *((unsigned *)&_go32_info_block + 3)}
11427@exdent @code{Page Table entry for address 0x29110:}
11428@exdent @code{Base=0x00029000 Dirty Acc. Not-Cached Write-Back Usr Read-Write +0x110}
11429@end smallexample
104c1213 11430
8e04817f
AC
11431@noindent
11432(The @code{+ 3} offset is because the transfer buffer's address is the
114333rd member of the @code{_go32_info_block} structure.) The output of
11434this command clearly shows that addresses in conventional memory are
11435mapped 1:1, i.e.@: the physical and linear addresses are identical.
104c1213 11436
8e04817f
AC
11437This command is supported only with some DPMI servers.
11438@end table
104c1213 11439
78c47bea
PM
11440@node Cygwin Native
11441@subsection Features for Debugging MS Windows PE executables
11442@cindex MS Windows debugging
11443@cindex native Cygwin debugging
11444@cindex Cygwin-specific commands
11445
be448670
CF
11446@value{GDBN} supports native debugging of MS Windows programs, including
11447DLLs with and without symbolic debugging information. There are various
11448additional Cygwin-specific commands, described in this subsection. The
11449subsubsection @pxref{Non-debug DLL symbols} describes working with DLLs
11450that have no debugging symbols.
11451
78c47bea
PM
11452
11453@table @code
11454@kindex info w32
11455@item info w32
11456This is a prefix of MS Windows specific commands which print
11457information about the target system and important OS structures.
11458
11459@item info w32 selector
11460This command displays information returned by
11461the Win32 API @code{GetThreadSelectorEntry} function.
11462It takes an optional argument that is evaluated to
11463a long value to give the information about this given selector.
11464Without argument, this command displays information
11465about the the six segment registers.
11466
11467@kindex info dll
11468@item info dll
11469This is a Cygwin specific alias of info shared.
11470
11471@kindex dll-symbols
11472@item dll-symbols
11473This command loads symbols from a dll similarly to
11474add-sym command but without the need to specify a base address.
11475
11476@kindex set new-console
11477@item set new-console @var{mode}
11478If @var{mode} is @code{on} the debuggee will
11479be started in a new console on next start.
11480If @var{mode} is @code{off}i, the debuggee will
11481be started in the same console as the debugger.
11482
11483@kindex show new-console
11484@item show new-console
11485Displays whether a new console is used
11486when the debuggee is started.
11487
11488@kindex set new-group
11489@item set new-group @var{mode}
11490This boolean value controls whether the debuggee should
11491start a new group or stay in the same group as the debugger.
11492This affects the way the Windows OS handles
11493Ctrl-C.
11494
11495@kindex show new-group
11496@item show new-group
11497Displays current value of new-group boolean.
11498
11499@kindex set debugevents
11500@item set debugevents
11501This boolean value adds debug output concerning events seen by the debugger.
11502
11503@kindex set debugexec
11504@item set debugexec
11505This boolean value adds debug output concerning execute events
11506seen by the debugger.
11507
11508@kindex set debugexceptions
11509@item set debugexceptions
11510This boolean value adds debug ouptut concerning exception events
11511seen by the debugger.
11512
11513@kindex set debugmemory
11514@item set debugmemory
11515This boolean value adds debug ouptut concerning memory events
11516seen by the debugger.
11517
11518@kindex set shell
11519@item set shell
11520This boolean values specifies whether the debuggee is called
11521via a shell or directly (default value is on).
11522
11523@kindex show shell
11524@item show shell
11525Displays if the debuggee will be started with a shell.
11526
11527@end table
11528
be448670
CF
11529@menu
11530* Non-debug DLL symbols:: Support for DLLs without debugging symbols
11531@end menu
11532
11533@node Non-debug DLL symbols
11534@subsubsection Support for DLLs without debugging symbols
11535@cindex DLLs with no debugging symbols
11536@cindex Minimal symbols and DLLs
11537
11538Very often on windows, some of the DLLs that your program relies on do
11539not include symbolic debugging information (for example,
11540@file{kernel32.dll}). When @value{GDBN} doesn't recognize any debugging
11541symbols in a DLL, it relies on the minimal amount of symbolic
11542information contained in the DLL's export table. This subsubsection
11543describes working with such symbols, known internally to @value{GDBN} as
11544``minimal symbols''.
11545
11546Note that before the debugged program has started execution, no DLLs
11547will have been loaded. The easiest way around this problem is simply to
11548start the program --- either by setting a breakpoint or letting the
11549program run once to completion. It is also possible to force
11550@value{GDBN} to load a particular DLL before starting the executable ---
11551see the shared library information in @pxref{Files} or the
11552@code{dll-symbols} command in @pxref{Cygwin Native}. Currently,
11553explicitly loading symbols from a DLL with no debugging information will
11554cause the symbol names to be duplicated in @value{GDBN}'s lookup table,
11555which may adversely affect symbol lookup performance.
11556
11557@subsubsection DLL name prefixes
11558
11559In keeping with the naming conventions used by the Microsoft debugging
11560tools, DLL export symbols are made available with a prefix based on the
11561DLL name, for instance @code{KERNEL32!CreateFileA}. The plain name is
11562also entered into the symbol table, so @code{CreateFileA} is often
11563sufficient. In some cases there will be name clashes within a program
11564(particularly if the executable itself includes full debugging symbols)
11565necessitating the use of the fully qualified name when referring to the
11566contents of the DLL. Use single-quotes around the name to avoid the
11567exclamation mark (``!'') being interpreted as a language operator.
11568
11569Note that the internal name of the DLL may be all upper-case, even
11570though the file name of the DLL is lower-case, or vice-versa. Since
11571symbols within @value{GDBN} are @emph{case-sensitive} this may cause
11572some confusion. If in doubt, try the @code{info functions} and
11573@code{info variables} commands or even @code{maint print msymbols} (see
11574@pxref{Symbols}). Here's an example:
11575
11576@smallexample
11577(gdb) info function CreateFileA
11578All functions matching regular expression "CreateFileA":
11579
11580Non-debugging symbols:
115810x77e885f4 CreateFileA
115820x77e885f4 KERNEL32!CreateFileA
11583@end smallexample
11584
11585@smallexample
11586(gdb) info function !
11587All functions matching regular expression "!":
11588
11589Non-debugging symbols:
115900x6100114c cygwin1!__assert
115910x61004034 cygwin1!_dll_crt0@@0
115920x61004240 cygwin1!dll_crt0(per_process *)
11593[etc...]
11594@end smallexample
11595
11596@subsubsection Working with minimal symbols
11597
11598Symbols extracted from a DLL's export table do not contain very much
11599type information. All that @value{GDBN} can do is guess whether a symbol
11600refers to a function or variable depending on the linker section that
11601contains the symbol. Also note that the actual contents of the memory
11602contained in a DLL are not available unless the program is running. This
11603means that you cannot examine the contents of a variable or disassemble
11604a function within a DLL without a running program.
11605
11606Variables are generally treated as pointers and dereferenced
11607automatically. For this reason, it is often necessary to prefix a
11608variable name with the address-of operator (``&'') and provide explicit
11609type information in the command. Here's an example of the type of
11610problem:
11611
11612@smallexample
11613(gdb) print 'cygwin1!__argv'
11614$1 = 268572168
11615@end smallexample
11616
11617@smallexample
11618(gdb) x 'cygwin1!__argv'
116190x10021610: "\230y\""
11620@end smallexample
11621
11622And two possible solutions:
11623
11624@smallexample
11625(gdb) print ((char **)'cygwin1!__argv')[0]
11626$2 = 0x22fd98 "/cygdrive/c/mydirectory/myprogram"
11627@end smallexample
11628
11629@smallexample
11630(gdb) x/2x &'cygwin1!__argv'
116310x610c0aa8 <cygwin1!__argv>: 0x10021608 0x00000000
11632(gdb) x/x 0x10021608
116330x10021608: 0x0022fd98
11634(gdb) x/s 0x0022fd98
116350x22fd98: "/cygdrive/c/mydirectory/myprogram"
11636@end smallexample
11637
11638Setting a break point within a DLL is possible even before the program
11639starts execution. However, under these circumstances, @value{GDBN} can't
11640examine the initial instructions of the function in order to skip the
11641function's frame set-up code. You can work around this by using ``*&''
11642to set the breakpoint at a raw memory address:
11643
11644@smallexample
11645(gdb) break *&'python22!PyOS_Readline'
11646Breakpoint 1 at 0x1e04eff0
11647@end smallexample
11648
11649The author of these extensions is not entirely convinced that setting a
11650break point within a shared DLL like @file{kernel32.dll} is completely
11651safe.
11652
8e04817f
AC
11653@node Embedded OS
11654@section Embedded Operating Systems
104c1213 11655
8e04817f
AC
11656This section describes configurations involving the debugging of
11657embedded operating systems that are available for several different
11658architectures.
d4f3574e 11659
8e04817f
AC
11660@menu
11661* VxWorks:: Using @value{GDBN} with VxWorks
11662@end menu
104c1213 11663
8e04817f
AC
11664@value{GDBN} includes the ability to debug programs running on
11665various real-time operating systems.
104c1213 11666
8e04817f
AC
11667@node VxWorks
11668@subsection Using @value{GDBN} with VxWorks
104c1213 11669
8e04817f 11670@cindex VxWorks
104c1213 11671
8e04817f 11672@table @code
104c1213 11673
8e04817f
AC
11674@kindex target vxworks
11675@item target vxworks @var{machinename}
11676A VxWorks system, attached via TCP/IP. The argument @var{machinename}
11677is the target system's machine name or IP address.
104c1213 11678
8e04817f 11679@end table
104c1213 11680
8e04817f
AC
11681On VxWorks, @code{load} links @var{filename} dynamically on the
11682current target system as well as adding its symbols in @value{GDBN}.
104c1213 11683
8e04817f
AC
11684@value{GDBN} enables developers to spawn and debug tasks running on networked
11685VxWorks targets from a Unix host. Already-running tasks spawned from
11686the VxWorks shell can also be debugged. @value{GDBN} uses code that runs on
11687both the Unix host and on the VxWorks target. The program
11688@code{@value{GDBP}} is installed and executed on the Unix host. (It may be
11689installed with the name @code{vxgdb}, to distinguish it from a
11690@value{GDBN} for debugging programs on the host itself.)
104c1213 11691
8e04817f
AC
11692@table @code
11693@item VxWorks-timeout @var{args}
11694@kindex vxworks-timeout
11695All VxWorks-based targets now support the option @code{vxworks-timeout}.
11696This option is set by the user, and @var{args} represents the number of
11697seconds @value{GDBN} waits for responses to rpc's. You might use this if
11698your VxWorks target is a slow software simulator or is on the far side
11699of a thin network line.
11700@end table
104c1213 11701
8e04817f
AC
11702The following information on connecting to VxWorks was current when
11703this manual was produced; newer releases of VxWorks may use revised
11704procedures.
104c1213 11705
8e04817f
AC
11706@kindex INCLUDE_RDB
11707To use @value{GDBN} with VxWorks, you must rebuild your VxWorks kernel
11708to include the remote debugging interface routines in the VxWorks
11709library @file{rdb.a}. To do this, define @code{INCLUDE_RDB} in the
11710VxWorks configuration file @file{configAll.h} and rebuild your VxWorks
11711kernel. The resulting kernel contains @file{rdb.a}, and spawns the
11712source debugging task @code{tRdbTask} when VxWorks is booted. For more
11713information on configuring and remaking VxWorks, see the manufacturer's
11714manual.
11715@c VxWorks, see the @cite{VxWorks Programmer's Guide}.
104c1213 11716
8e04817f
AC
11717Once you have included @file{rdb.a} in your VxWorks system image and set
11718your Unix execution search path to find @value{GDBN}, you are ready to
11719run @value{GDBN}. From your Unix host, run @code{@value{GDBP}} (or
11720@code{vxgdb}, depending on your installation).
104c1213 11721
8e04817f 11722@value{GDBN} comes up showing the prompt:
104c1213 11723
474c8240 11724@smallexample
8e04817f 11725(vxgdb)
474c8240 11726@end smallexample
104c1213 11727
8e04817f
AC
11728@menu
11729* VxWorks Connection:: Connecting to VxWorks
11730* VxWorks Download:: VxWorks download
11731* VxWorks Attach:: Running tasks
11732@end menu
104c1213 11733
8e04817f
AC
11734@node VxWorks Connection
11735@subsubsection Connecting to VxWorks
104c1213 11736
8e04817f
AC
11737The @value{GDBN} command @code{target} lets you connect to a VxWorks target on the
11738network. To connect to a target whose host name is ``@code{tt}'', type:
104c1213 11739
474c8240 11740@smallexample
8e04817f 11741(vxgdb) target vxworks tt
474c8240 11742@end smallexample
104c1213 11743
8e04817f
AC
11744@need 750
11745@value{GDBN} displays messages like these:
104c1213 11746
8e04817f
AC
11747@smallexample
11748Attaching remote machine across net...
11749Connected to tt.
11750@end smallexample
104c1213 11751
8e04817f
AC
11752@need 1000
11753@value{GDBN} then attempts to read the symbol tables of any object modules
11754loaded into the VxWorks target since it was last booted. @value{GDBN} locates
11755these files by searching the directories listed in the command search
11756path (@pxref{Environment, ,Your program's environment}); if it fails
11757to find an object file, it displays a message such as:
5d161b24 11758
474c8240 11759@smallexample
8e04817f 11760prog.o: No such file or directory.
474c8240 11761@end smallexample
104c1213 11762
8e04817f
AC
11763When this happens, add the appropriate directory to the search path with
11764the @value{GDBN} command @code{path}, and execute the @code{target}
11765command again.
104c1213 11766
8e04817f
AC
11767@node VxWorks Download
11768@subsubsection VxWorks download
104c1213 11769
8e04817f
AC
11770@cindex download to VxWorks
11771If you have connected to the VxWorks target and you want to debug an
11772object that has not yet been loaded, you can use the @value{GDBN}
11773@code{load} command to download a file from Unix to VxWorks
11774incrementally. The object file given as an argument to the @code{load}
11775command is actually opened twice: first by the VxWorks target in order
11776to download the code, then by @value{GDBN} in order to read the symbol
11777table. This can lead to problems if the current working directories on
11778the two systems differ. If both systems have NFS mounted the same
11779filesystems, you can avoid these problems by using absolute paths.
11780Otherwise, it is simplest to set the working directory on both systems
11781to the directory in which the object file resides, and then to reference
11782the file by its name, without any path. For instance, a program
11783@file{prog.o} may reside in @file{@var{vxpath}/vw/demo/rdb} in VxWorks
11784and in @file{@var{hostpath}/vw/demo/rdb} on the host. To load this
11785program, type this on VxWorks:
104c1213 11786
474c8240 11787@smallexample
8e04817f 11788-> cd "@var{vxpath}/vw/demo/rdb"
474c8240 11789@end smallexample
104c1213 11790
8e04817f
AC
11791@noindent
11792Then, in @value{GDBN}, type:
104c1213 11793
474c8240 11794@smallexample
8e04817f
AC
11795(vxgdb) cd @var{hostpath}/vw/demo/rdb
11796(vxgdb) load prog.o
474c8240 11797@end smallexample
104c1213 11798
8e04817f 11799@value{GDBN} displays a response similar to this:
104c1213 11800
8e04817f
AC
11801@smallexample
11802Reading symbol data from wherever/vw/demo/rdb/prog.o... done.
11803@end smallexample
104c1213 11804
8e04817f
AC
11805You can also use the @code{load} command to reload an object module
11806after editing and recompiling the corresponding source file. Note that
11807this makes @value{GDBN} delete all currently-defined breakpoints,
11808auto-displays, and convenience variables, and to clear the value
11809history. (This is necessary in order to preserve the integrity of
11810debugger's data structures that reference the target system's symbol
11811table.)
104c1213 11812
8e04817f
AC
11813@node VxWorks Attach
11814@subsubsection Running tasks
104c1213
JM
11815
11816@cindex running VxWorks tasks
11817You can also attach to an existing task using the @code{attach} command as
11818follows:
11819
474c8240 11820@smallexample
104c1213 11821(vxgdb) attach @var{task}
474c8240 11822@end smallexample
104c1213
JM
11823
11824@noindent
11825where @var{task} is the VxWorks hexadecimal task ID. The task can be running
11826or suspended when you attach to it. Running tasks are suspended at
11827the time of attachment.
11828
6d2ebf8b 11829@node Embedded Processors
104c1213
JM
11830@section Embedded Processors
11831
11832This section goes into details specific to particular embedded
11833configurations.
11834
7d86b5d5 11835
104c1213 11836@menu
104c1213 11837* ARM:: ARM
172c2a43
KI
11838* H8/300:: Renesas H8/300
11839* H8/500:: Renesas H8/500
11840* M32R/D:: Renesas M32R/D
104c1213 11841* M68K:: Motorola M68K
104c1213 11842* MIPS Embedded:: MIPS Embedded
a37295f9 11843* OpenRISC 1000:: OpenRisc 1000
104c1213
JM
11844* PA:: HP PA Embedded
11845* PowerPC: PowerPC
172c2a43 11846* SH:: Renesas SH
104c1213
JM
11847* Sparclet:: Tsqware Sparclet
11848* Sparclite:: Fujitsu Sparclite
11849* ST2000:: Tandem ST2000
11850* Z8000:: Zilog Z8000
11851@end menu
11852
6d2ebf8b 11853@node ARM
104c1213
JM
11854@subsection ARM
11855
11856@table @code
11857
8e04817f
AC
11858@kindex target rdi
11859@item target rdi @var{dev}
11860ARM Angel monitor, via RDI library interface to ADP protocol. You may
11861use this target to communicate with both boards running the Angel
11862monitor, or with the EmbeddedICE JTAG debug device.
11863
11864@kindex target rdp
11865@item target rdp @var{dev}
11866ARM Demon monitor.
11867
11868@end table
11869
11870@node H8/300
172c2a43 11871@subsection Renesas H8/300
8e04817f
AC
11872
11873@table @code
11874
11875@kindex target hms@r{, with H8/300}
11876@item target hms @var{dev}
172c2a43 11877A Renesas SH, H8/300, or H8/500 board, attached via serial line to your host.
8e04817f
AC
11878Use special commands @code{device} and @code{speed} to control the serial
11879line and the communications speed used.
11880
11881@kindex target e7000@r{, with H8/300}
11882@item target e7000 @var{dev}
172c2a43 11883E7000 emulator for Renesas H8 and SH.
8e04817f
AC
11884
11885@kindex target sh3@r{, with H8/300}
11886@kindex target sh3e@r{, with H8/300}
11887@item target sh3 @var{dev}
11888@itemx target sh3e @var{dev}
172c2a43 11889Renesas SH-3 and SH-3E target systems.
8e04817f
AC
11890
11891@end table
11892
11893@cindex download to H8/300 or H8/500
11894@cindex H8/300 or H8/500 download
172c2a43
KI
11895@cindex download to Renesas SH
11896@cindex Renesas SH download
11897When you select remote debugging to a Renesas SH, H8/300, or H8/500
11898board, the @code{load} command downloads your program to the Renesas
8e04817f
AC
11899board and also opens it as the current executable target for
11900@value{GDBN} on your host (like the @code{file} command).
11901
11902@value{GDBN} needs to know these things to talk to your
172c2a43 11903Renesas SH, H8/300, or H8/500:
8e04817f
AC
11904
11905@enumerate
11906@item
11907that you want to use @samp{target hms}, the remote debugging interface
172c2a43
KI
11908for Renesas microprocessors, or @samp{target e7000}, the in-circuit
11909emulator for the Renesas SH and the Renesas 300H. (@samp{target hms} is
11910the default when @value{GDBN} is configured specifically for the Renesas SH,
8e04817f
AC
11911H8/300, or H8/500.)
11912
11913@item
172c2a43 11914what serial device connects your host to your Renesas board (the first
8e04817f
AC
11915serial device available on your host is the default).
11916
11917@item
11918what speed to use over the serial device.
11919@end enumerate
11920
11921@menu
172c2a43
KI
11922* Renesas Boards:: Connecting to Renesas boards.
11923* Renesas ICE:: Using the E7000 In-Circuit Emulator.
11924* Renesas Special:: Special @value{GDBN} commands for Renesas micros.
8e04817f
AC
11925@end menu
11926
172c2a43
KI
11927@node Renesas Boards
11928@subsubsection Connecting to Renesas boards
8e04817f
AC
11929
11930@c only for Unix hosts
11931@kindex device
172c2a43 11932@cindex serial device, Renesas micros
8e04817f
AC
11933Use the special @code{@value{GDBN}} command @samp{device @var{port}} if you
11934need to explicitly set the serial device. The default @var{port} is the
11935first available port on your host. This is only necessary on Unix
11936hosts, where it is typically something like @file{/dev/ttya}.
11937
11938@kindex speed
172c2a43 11939@cindex serial line speed, Renesas micros
8e04817f
AC
11940@code{@value{GDBN}} has another special command to set the communications
11941speed: @samp{speed @var{bps}}. This command also is only used from Unix
11942hosts; on DOS hosts, set the line speed as usual from outside @value{GDBN} with
11943the DOS @code{mode} command (for instance,
11944@w{@kbd{mode com2:9600,n,8,1,p}} for a 9600@dmn{bps} connection).
11945
11946The @samp{device} and @samp{speed} commands are available only when you
172c2a43 11947use a Unix host to debug your Renesas microprocessor programs. If you
8e04817f
AC
11948use a DOS host,
11949@value{GDBN} depends on an auxiliary terminate-and-stay-resident program
11950called @code{asynctsr} to communicate with the development board
11951through a PC serial port. You must also use the DOS @code{mode} command
11952to set up the serial port on the DOS side.
11953
11954The following sample session illustrates the steps needed to start a
11955program under @value{GDBN} control on an H8/300. The example uses a
11956sample H8/300 program called @file{t.x}. The procedure is the same for
172c2a43 11957the Renesas SH and the H8/500.
8e04817f
AC
11958
11959First hook up your development board. In this example, we use a
11960board attached to serial port @code{COM2}; if you use a different serial
11961port, substitute its name in the argument of the @code{mode} command.
11962When you call @code{asynctsr}, the auxiliary comms program used by the
11963debugger, you give it just the numeric part of the serial port's name;
11964for example, @samp{asyncstr 2} below runs @code{asyncstr} on
11965@code{COM2}.
11966
474c8240 11967@smallexample
8e04817f
AC
11968C:\H8300\TEST> asynctsr 2
11969C:\H8300\TEST> mode com2:9600,n,8,1,p
11970
11971Resident portion of MODE loaded
11972
11973COM2: 9600, n, 8, 1, p
11974
474c8240 11975@end smallexample
8e04817f
AC
11976
11977@quotation
11978@emph{Warning:} We have noticed a bug in PC-NFS that conflicts with
11979@code{asynctsr}. If you also run PC-NFS on your DOS host, you may need to
11980disable it, or even boot without it, to use @code{asynctsr} to control
11981your development board.
11982@end quotation
11983
11984@kindex target hms@r{, and serial protocol}
11985Now that serial communications are set up, and the development board is
11986connected, you can start up @value{GDBN}. Call @code{@value{GDBP}} with
11987the name of your program as the argument. @code{@value{GDBN}} prompts
11988you, as usual, with the prompt @samp{(@value{GDBP})}. Use two special
11989commands to begin your debugging session: @samp{target hms} to specify
172c2a43 11990cross-debugging to the Renesas board, and the @code{load} command to
8e04817f
AC
11991download your program to the board. @code{load} displays the names of
11992the program's sections, and a @samp{*} for each 2K of data downloaded.
11993(If you want to refresh @value{GDBN} data on symbols or on the
11994executable file without downloading, use the @value{GDBN} commands
11995@code{file} or @code{symbol-file}. These commands, and @code{load}
11996itself, are described in @ref{Files,,Commands to specify files}.)
11997
11998@smallexample
11999(eg-C:\H8300\TEST) @value{GDBP} t.x
12000@value{GDBN} is free software and you are welcome to distribute copies
12001 of it under certain conditions; type "show copying" to see
12002 the conditions.
12003There is absolutely no warranty for @value{GDBN}; type "show warranty"
12004for details.
12005@value{GDBN} @value{GDBVN}, Copyright 1992 Free Software Foundation, Inc...
12006(@value{GDBP}) target hms
12007Connected to remote H8/300 HMS system.
12008(@value{GDBP}) load t.x
12009.text : 0x8000 .. 0xabde ***********
12010.data : 0xabde .. 0xad30 *
12011.stack : 0xf000 .. 0xf014 *
12012@end smallexample
12013
12014At this point, you're ready to run or debug your program. From here on,
12015you can use all the usual @value{GDBN} commands. The @code{break} command
12016sets breakpoints; the @code{run} command starts your program;
12017@code{print} or @code{x} display data; the @code{continue} command
12018resumes execution after stopping at a breakpoint. You can use the
12019@code{help} command at any time to find out more about @value{GDBN} commands.
12020
12021Remember, however, that @emph{operating system} facilities aren't
12022available on your development board; for example, if your program hangs,
12023you can't send an interrupt---but you can press the @sc{reset} switch!
12024
12025Use the @sc{reset} button on the development board
12026@itemize @bullet
12027@item
12028to interrupt your program (don't use @kbd{ctl-C} on the DOS host---it has
12029no way to pass an interrupt signal to the development board); and
12030
12031@item
12032to return to the @value{GDBN} command prompt after your program finishes
12033normally. The communications protocol provides no other way for @value{GDBN}
12034to detect program completion.
12035@end itemize
12036
12037In either case, @value{GDBN} sees the effect of a @sc{reset} on the
12038development board as a ``normal exit'' of your program.
12039
172c2a43 12040@node Renesas ICE
8e04817f
AC
12041@subsubsection Using the E7000 in-circuit emulator
12042
172c2a43 12043@kindex target e7000@r{, with Renesas ICE}
8e04817f 12044You can use the E7000 in-circuit emulator to develop code for either the
172c2a43 12045Renesas SH or the H8/300H. Use one of these forms of the @samp{target
8e04817f
AC
12046e7000} command to connect @value{GDBN} to your E7000:
12047
12048@table @code
12049@item target e7000 @var{port} @var{speed}
12050Use this form if your E7000 is connected to a serial port. The
12051@var{port} argument identifies what serial port to use (for example,
12052@samp{com2}). The third argument is the line speed in bits per second
12053(for example, @samp{9600}).
12054
12055@item target e7000 @var{hostname}
12056If your E7000 is installed as a host on a TCP/IP network, you can just
12057specify its hostname; @value{GDBN} uses @code{telnet} to connect.
12058@end table
12059
172c2a43
KI
12060@node Renesas Special
12061@subsubsection Special @value{GDBN} commands for Renesas micros
8e04817f
AC
12062
12063Some @value{GDBN} commands are available only for the H8/300:
12064
12065@table @code
12066
12067@kindex set machine
12068@kindex show machine
12069@item set machine h8300
12070@itemx set machine h8300h
12071Condition @value{GDBN} for one of the two variants of the H8/300
12072architecture with @samp{set machine}. You can use @samp{show machine}
12073to check which variant is currently in effect.
104c1213
JM
12074
12075@end table
12076
8e04817f
AC
12077@node H8/500
12078@subsection H8/500
104c1213
JM
12079
12080@table @code
12081
8e04817f
AC
12082@kindex set memory @var{mod}
12083@cindex memory models, H8/500
12084@item set memory @var{mod}
12085@itemx show memory
12086Specify which H8/500 memory model (@var{mod}) you are using with
12087@samp{set memory}; check which memory model is in effect with @samp{show
12088memory}. The accepted values for @var{mod} are @code{small},
12089@code{big}, @code{medium}, and @code{compact}.
104c1213 12090
8e04817f 12091@end table
104c1213 12092
8e04817f 12093@node M32R/D
172c2a43 12094@subsection Renesas M32R/D
8e04817f
AC
12095
12096@table @code
12097
12098@kindex target m32r
12099@item target m32r @var{dev}
172c2a43 12100Renesas M32R/D ROM monitor.
8e04817f 12101
fb3e19c0
KI
12102@kindex target m32rsdi
12103@item target m32rsdi @var{dev}
12104Renesas M32R SDI server, connected via parallel port to the board.
12105
8e04817f
AC
12106@end table
12107
12108@node M68K
12109@subsection M68k
12110
12111The Motorola m68k configuration includes ColdFire support, and
12112target command for the following ROM monitors.
12113
12114@table @code
12115
12116@kindex target abug
12117@item target abug @var{dev}
12118ABug ROM monitor for M68K.
12119
12120@kindex target cpu32bug
12121@item target cpu32bug @var{dev}
12122CPU32BUG monitor, running on a CPU32 (M68K) board.
12123
12124@kindex target dbug
12125@item target dbug @var{dev}
12126dBUG ROM monitor for Motorola ColdFire.
12127
12128@kindex target est
12129@item target est @var{dev}
12130EST-300 ICE monitor, running on a CPU32 (M68K) board.
12131
12132@kindex target rom68k
12133@item target rom68k @var{dev}
12134ROM 68K monitor, running on an M68K IDP board.
12135
12136@end table
12137
8e04817f
AC
12138@table @code
12139
12140@kindex target rombug
12141@item target rombug @var{dev}
12142ROMBUG ROM monitor for OS/9000.
12143
12144@end table
12145
8e04817f
AC
12146@node MIPS Embedded
12147@subsection MIPS Embedded
12148
12149@cindex MIPS boards
12150@value{GDBN} can use the MIPS remote debugging protocol to talk to a
12151MIPS board attached to a serial line. This is available when
12152you configure @value{GDBN} with @samp{--target=mips-idt-ecoff}.
104c1213 12153
8e04817f
AC
12154@need 1000
12155Use these @value{GDBN} commands to specify the connection to your target board:
104c1213 12156
8e04817f
AC
12157@table @code
12158@item target mips @var{port}
12159@kindex target mips @var{port}
12160To run a program on the board, start up @code{@value{GDBP}} with the
12161name of your program as the argument. To connect to the board, use the
12162command @samp{target mips @var{port}}, where @var{port} is the name of
12163the serial port connected to the board. If the program has not already
12164been downloaded to the board, you may use the @code{load} command to
12165download it. You can then use all the usual @value{GDBN} commands.
104c1213 12166
8e04817f
AC
12167For example, this sequence connects to the target board through a serial
12168port, and loads and runs a program called @var{prog} through the
12169debugger:
104c1213 12170
474c8240 12171@smallexample
8e04817f
AC
12172host$ @value{GDBP} @var{prog}
12173@value{GDBN} is free software and @dots{}
12174(@value{GDBP}) target mips /dev/ttyb
12175(@value{GDBP}) load @var{prog}
12176(@value{GDBP}) run
474c8240 12177@end smallexample
104c1213 12178
8e04817f
AC
12179@item target mips @var{hostname}:@var{portnumber}
12180On some @value{GDBN} host configurations, you can specify a TCP
12181connection (for instance, to a serial line managed by a terminal
12182concentrator) instead of a serial port, using the syntax
12183@samp{@var{hostname}:@var{portnumber}}.
104c1213 12184
8e04817f
AC
12185@item target pmon @var{port}
12186@kindex target pmon @var{port}
12187PMON ROM monitor.
104c1213 12188
8e04817f
AC
12189@item target ddb @var{port}
12190@kindex target ddb @var{port}
12191NEC's DDB variant of PMON for Vr4300.
104c1213 12192
8e04817f
AC
12193@item target lsi @var{port}
12194@kindex target lsi @var{port}
12195LSI variant of PMON.
104c1213 12196
8e04817f
AC
12197@kindex target r3900
12198@item target r3900 @var{dev}
12199Densan DVE-R3900 ROM monitor for Toshiba R3900 Mips.
104c1213 12200
8e04817f
AC
12201@kindex target array
12202@item target array @var{dev}
12203Array Tech LSI33K RAID controller board.
104c1213 12204
8e04817f 12205@end table
104c1213 12206
104c1213 12207
8e04817f
AC
12208@noindent
12209@value{GDBN} also supports these special commands for MIPS targets:
104c1213 12210
8e04817f
AC
12211@table @code
12212@item set processor @var{args}
12213@itemx show processor
12214@kindex set processor @var{args}
12215@kindex show processor
12216Use the @code{set processor} command to set the type of MIPS
12217processor when you want to access processor-type-specific registers.
12218For example, @code{set processor @var{r3041}} tells @value{GDBN}
12219to use the CPU registers appropriate for the 3041 chip.
12220Use the @code{show processor} command to see what MIPS processor @value{GDBN}
12221is using. Use the @code{info reg} command to see what registers
12222@value{GDBN} is using.
104c1213 12223
8e04817f
AC
12224@item set mipsfpu double
12225@itemx set mipsfpu single
12226@itemx set mipsfpu none
12227@itemx show mipsfpu
12228@kindex set mipsfpu
12229@kindex show mipsfpu
12230@cindex MIPS remote floating point
12231@cindex floating point, MIPS remote
12232If your target board does not support the MIPS floating point
12233coprocessor, you should use the command @samp{set mipsfpu none} (if you
12234need this, you may wish to put the command in your @value{GDBN} init
12235file). This tells @value{GDBN} how to find the return value of
12236functions which return floating point values. It also allows
12237@value{GDBN} to avoid saving the floating point registers when calling
12238functions on the board. If you are using a floating point coprocessor
12239with only single precision floating point support, as on the @sc{r4650}
12240processor, use the command @samp{set mipsfpu single}. The default
12241double precision floating point coprocessor may be selected using
12242@samp{set mipsfpu double}.
104c1213 12243
8e04817f
AC
12244In previous versions the only choices were double precision or no
12245floating point, so @samp{set mipsfpu on} will select double precision
12246and @samp{set mipsfpu off} will select no floating point.
104c1213 12247
8e04817f
AC
12248As usual, you can inquire about the @code{mipsfpu} variable with
12249@samp{show mipsfpu}.
104c1213 12250
8e04817f
AC
12251@item set remotedebug @var{n}
12252@itemx show remotedebug
12253@kindex set remotedebug@r{, MIPS protocol}
12254@kindex show remotedebug@r{, MIPS protocol}
12255@cindex @code{remotedebug}, MIPS protocol
12256@cindex MIPS @code{remotedebug} protocol
12257@c FIXME! For this to be useful, you must know something about the MIPS
12258@c FIXME...protocol. Where is it described?
12259You can see some debugging information about communications with the board
12260by setting the @code{remotedebug} variable. If you set it to @code{1} using
12261@samp{set remotedebug 1}, every packet is displayed. If you set it
12262to @code{2}, every character is displayed. You can check the current value
12263at any time with the command @samp{show remotedebug}.
104c1213 12264
8e04817f
AC
12265@item set timeout @var{seconds}
12266@itemx set retransmit-timeout @var{seconds}
12267@itemx show timeout
12268@itemx show retransmit-timeout
12269@cindex @code{timeout}, MIPS protocol
12270@cindex @code{retransmit-timeout}, MIPS protocol
12271@kindex set timeout
12272@kindex show timeout
12273@kindex set retransmit-timeout
12274@kindex show retransmit-timeout
12275You can control the timeout used while waiting for a packet, in the MIPS
12276remote protocol, with the @code{set timeout @var{seconds}} command. The
12277default is 5 seconds. Similarly, you can control the timeout used while
12278waiting for an acknowledgement of a packet with the @code{set
12279retransmit-timeout @var{seconds}} command. The default is 3 seconds.
12280You can inspect both values with @code{show timeout} and @code{show
12281retransmit-timeout}. (These commands are @emph{only} available when
12282@value{GDBN} is configured for @samp{--target=mips-idt-ecoff}.)
104c1213 12283
8e04817f
AC
12284The timeout set by @code{set timeout} does not apply when @value{GDBN}
12285is waiting for your program to stop. In that case, @value{GDBN} waits
12286forever because it has no way of knowing how long the program is going
12287to run before stopping.
12288@end table
104c1213 12289
a37295f9
MM
12290@node OpenRISC 1000
12291@subsection OpenRISC 1000
12292@cindex OpenRISC 1000
12293
12294@cindex or1k boards
12295See OR1k Architecture document (@uref{www.opencores.org}) for more information
12296about platform and commands.
12297
12298@table @code
12299
12300@kindex target jtag
12301@item target jtag jtag://@var{host}:@var{port}
12302
12303Connects to remote JTAG server.
12304JTAG remote server can be either an or1ksim or JTAG server,
12305connected via parallel port to the board.
12306
12307Example: @code{target jtag jtag://localhost:9999}
12308
12309@kindex or1ksim
12310@item or1ksim @var{command}
12311If connected to @code{or1ksim} OpenRISC 1000 Architectural
12312Simulator, proprietary commands can be executed.
12313
12314@kindex info or1k spr
12315@item info or1k spr
12316Displays spr groups.
12317
12318@item info or1k spr @var{group}
12319@itemx info or1k spr @var{groupno}
12320Displays register names in selected group.
12321
12322@item info or1k spr @var{group} @var{register}
12323@itemx info or1k spr @var{register}
12324@itemx info or1k spr @var{groupno} @var{registerno}
12325@itemx info or1k spr @var{registerno}
12326Shows information about specified spr register.
12327
12328@kindex spr
12329@item spr @var{group} @var{register} @var{value}
12330@itemx spr @var{register @var{value}}
12331@itemx spr @var{groupno} @var{registerno @var{value}}
12332@itemx spr @var{registerno @var{value}}
12333Writes @var{value} to specified spr register.
12334@end table
12335
12336Some implementations of OpenRISC 1000 Architecture also have hardware trace.
12337It is very similar to @value{GDBN} trace, except it does not interfere with normal
12338program execution and is thus much faster. Hardware breakpoints/watchpoint
12339triggers can be set using:
12340@table @code
12341@item $LEA/$LDATA
12342Load effective address/data
12343@item $SEA/$SDATA
12344Store effective address/data
12345@item $AEA/$ADATA
12346Access effective address ($SEA or $LEA) or data ($SDATA/$LDATA)
12347@item $FETCH
12348Fetch data
12349@end table
12350
12351When triggered, it can capture low level data, like: @code{PC}, @code{LSEA},
12352@code{LDATA}, @code{SDATA}, @code{READSPR}, @code{WRITESPR}, @code{INSTR}.
12353
12354@code{htrace} commands:
12355@cindex OpenRISC 1000 htrace
12356@table @code
12357@kindex hwatch
12358@item hwatch @var{conditional}
12359Set hardware watchpoint on combination of Load/Store Effecive Address(es)
12360or Data. For example:
12361
12362@code{hwatch ($LEA == my_var) && ($LDATA < 50) || ($SEA == my_var) && ($SDATA >= 50)}
12363
12364@code{hwatch ($LEA == my_var) && ($LDATA < 50) || ($SEA == my_var) && ($SDATA >= 50)}
12365
12366@kindex htrace info
12367@item htrace info
12368Display information about current HW trace configuration.
12369
12370@kindex htrace trigger
12371@item htrace trigger @var{conditional}
12372Set starting criteria for HW trace.
12373
12374@kindex htrace qualifier
12375@item htrace qualifier @var{conditional}
12376Set acquisition qualifier for HW trace.
12377
12378@kindex htrace stop
12379@item htrace stop @var{conditional}
12380Set HW trace stopping criteria.
12381
12382@kindex htrace record
f153cc92 12383@item htrace record [@var{data}]*
a37295f9
MM
12384Selects the data to be recorded, when qualifier is met and HW trace was
12385triggered.
12386
12387@kindex htrace enable
12388@item htrace enable
12389@kindex htrace disable
12390@itemx htrace disable
12391Enables/disables the HW trace.
12392
12393@kindex htrace rewind
f153cc92 12394@item htrace rewind [@var{filename}]
a37295f9
MM
12395Clears currently recorded trace data.
12396
12397If filename is specified, new trace file is made and any newly collected data
12398will be written there.
12399
12400@kindex htrace print
f153cc92 12401@item htrace print [@var{start} [@var{len}]]
a37295f9
MM
12402Prints trace buffer, using current record configuration.
12403
12404@kindex htrace mode continuous
12405@item htrace mode continuous
12406Set continuous trace mode.
12407
12408@kindex htrace mode suspend
12409@item htrace mode suspend
12410Set suspend trace mode.
12411
12412@end table
12413
8e04817f
AC
12414@node PowerPC
12415@subsection PowerPC
104c1213
JM
12416
12417@table @code
104c1213 12418
8e04817f
AC
12419@kindex target dink32
12420@item target dink32 @var{dev}
12421DINK32 ROM monitor.
104c1213 12422
8e04817f
AC
12423@kindex target ppcbug
12424@item target ppcbug @var{dev}
12425@kindex target ppcbug1
12426@item target ppcbug1 @var{dev}
12427PPCBUG ROM monitor for PowerPC.
104c1213 12428
8e04817f
AC
12429@kindex target sds
12430@item target sds @var{dev}
12431SDS monitor, running on a PowerPC board (such as Motorola's ADS).
12432
12433@end table
12434
12435@node PA
12436@subsection HP PA Embedded
104c1213
JM
12437
12438@table @code
12439
8e04817f
AC
12440@kindex target op50n
12441@item target op50n @var{dev}
12442OP50N monitor, running on an OKI HPPA board.
12443
12444@kindex target w89k
12445@item target w89k @var{dev}
12446W89K monitor, running on a Winbond HPPA board.
104c1213
JM
12447
12448@end table
12449
8e04817f 12450@node SH
172c2a43 12451@subsection Renesas SH
104c1213
JM
12452
12453@table @code
12454
172c2a43 12455@kindex target hms@r{, with Renesas SH}
8e04817f 12456@item target hms @var{dev}
172c2a43 12457A Renesas SH board attached via serial line to your host. Use special
8e04817f
AC
12458commands @code{device} and @code{speed} to control the serial line and
12459the communications speed used.
104c1213 12460
172c2a43 12461@kindex target e7000@r{, with Renesas SH}
8e04817f 12462@item target e7000 @var{dev}
172c2a43 12463E7000 emulator for Renesas SH.
104c1213 12464
8e04817f
AC
12465@kindex target sh3@r{, with SH}
12466@kindex target sh3e@r{, with SH}
12467@item target sh3 @var{dev}
12468@item target sh3e @var{dev}
172c2a43 12469Renesas SH-3 and SH-3E target systems.
104c1213 12470
8e04817f 12471@end table
104c1213 12472
8e04817f
AC
12473@node Sparclet
12474@subsection Tsqware Sparclet
104c1213 12475
8e04817f
AC
12476@cindex Sparclet
12477
12478@value{GDBN} enables developers to debug tasks running on
12479Sparclet targets from a Unix host.
12480@value{GDBN} uses code that runs on
12481both the Unix host and on the Sparclet target. The program
12482@code{@value{GDBP}} is installed and executed on the Unix host.
104c1213 12483
8e04817f
AC
12484@table @code
12485@item remotetimeout @var{args}
12486@kindex remotetimeout
12487@value{GDBN} supports the option @code{remotetimeout}.
12488This option is set by the user, and @var{args} represents the number of
12489seconds @value{GDBN} waits for responses.
104c1213
JM
12490@end table
12491
8e04817f
AC
12492@cindex compiling, on Sparclet
12493When compiling for debugging, include the options @samp{-g} to get debug
12494information and @samp{-Ttext} to relocate the program to where you wish to
12495load it on the target. You may also want to add the options @samp{-n} or
12496@samp{-N} in order to reduce the size of the sections. Example:
104c1213 12497
474c8240 12498@smallexample
8e04817f 12499sparclet-aout-gcc prog.c -Ttext 0x12010000 -g -o prog -N
474c8240 12500@end smallexample
104c1213 12501
8e04817f 12502You can use @code{objdump} to verify that the addresses are what you intended:
104c1213 12503
474c8240 12504@smallexample
8e04817f 12505sparclet-aout-objdump --headers --syms prog
474c8240 12506@end smallexample
104c1213 12507
8e04817f
AC
12508@cindex running, on Sparclet
12509Once you have set
12510your Unix execution search path to find @value{GDBN}, you are ready to
12511run @value{GDBN}. From your Unix host, run @code{@value{GDBP}}
12512(or @code{sparclet-aout-gdb}, depending on your installation).
104c1213 12513
8e04817f
AC
12514@value{GDBN} comes up showing the prompt:
12515
474c8240 12516@smallexample
8e04817f 12517(gdbslet)
474c8240 12518@end smallexample
104c1213
JM
12519
12520@menu
8e04817f
AC
12521* Sparclet File:: Setting the file to debug
12522* Sparclet Connection:: Connecting to Sparclet
12523* Sparclet Download:: Sparclet download
12524* Sparclet Execution:: Running and debugging
104c1213
JM
12525@end menu
12526
8e04817f
AC
12527@node Sparclet File
12528@subsubsection Setting file to debug
104c1213 12529
8e04817f 12530The @value{GDBN} command @code{file} lets you choose with program to debug.
104c1213 12531
474c8240 12532@smallexample
8e04817f 12533(gdbslet) file prog
474c8240 12534@end smallexample
104c1213 12535
8e04817f
AC
12536@need 1000
12537@value{GDBN} then attempts to read the symbol table of @file{prog}.
12538@value{GDBN} locates
12539the file by searching the directories listed in the command search
12540path.
12541If the file was compiled with debug information (option "-g"), source
12542files will be searched as well.
12543@value{GDBN} locates
12544the source files by searching the directories listed in the directory search
12545path (@pxref{Environment, ,Your program's environment}).
12546If it fails
12547to find a file, it displays a message such as:
104c1213 12548
474c8240 12549@smallexample
8e04817f 12550prog: No such file or directory.
474c8240 12551@end smallexample
104c1213 12552
8e04817f
AC
12553When this happens, add the appropriate directories to the search paths with
12554the @value{GDBN} commands @code{path} and @code{dir}, and execute the
12555@code{target} command again.
104c1213 12556
8e04817f
AC
12557@node Sparclet Connection
12558@subsubsection Connecting to Sparclet
104c1213 12559
8e04817f
AC
12560The @value{GDBN} command @code{target} lets you connect to a Sparclet target.
12561To connect to a target on serial port ``@code{ttya}'', type:
104c1213 12562
474c8240 12563@smallexample
8e04817f
AC
12564(gdbslet) target sparclet /dev/ttya
12565Remote target sparclet connected to /dev/ttya
12566main () at ../prog.c:3
474c8240 12567@end smallexample
104c1213 12568
8e04817f
AC
12569@need 750
12570@value{GDBN} displays messages like these:
104c1213 12571
474c8240 12572@smallexample
8e04817f 12573Connected to ttya.
474c8240 12574@end smallexample
104c1213 12575
8e04817f
AC
12576@node Sparclet Download
12577@subsubsection Sparclet download
104c1213 12578
8e04817f
AC
12579@cindex download to Sparclet
12580Once connected to the Sparclet target,
12581you can use the @value{GDBN}
12582@code{load} command to download the file from the host to the target.
12583The file name and load offset should be given as arguments to the @code{load}
12584command.
12585Since the file format is aout, the program must be loaded to the starting
12586address. You can use @code{objdump} to find out what this value is. The load
12587offset is an offset which is added to the VMA (virtual memory address)
12588of each of the file's sections.
12589For instance, if the program
12590@file{prog} was linked to text address 0x1201000, with data at 0x12010160
12591and bss at 0x12010170, in @value{GDBN}, type:
104c1213 12592
474c8240 12593@smallexample
8e04817f
AC
12594(gdbslet) load prog 0x12010000
12595Loading section .text, size 0xdb0 vma 0x12010000
474c8240 12596@end smallexample
104c1213 12597
8e04817f
AC
12598If the code is loaded at a different address then what the program was linked
12599to, you may need to use the @code{section} and @code{add-symbol-file} commands
12600to tell @value{GDBN} where to map the symbol table.
12601
12602@node Sparclet Execution
12603@subsubsection Running and debugging
12604
12605@cindex running and debugging Sparclet programs
12606You can now begin debugging the task using @value{GDBN}'s execution control
12607commands, @code{b}, @code{step}, @code{run}, etc. See the @value{GDBN}
12608manual for the list of commands.
12609
474c8240 12610@smallexample
8e04817f
AC
12611(gdbslet) b main
12612Breakpoint 1 at 0x12010000: file prog.c, line 3.
12613(gdbslet) run
12614Starting program: prog
12615Breakpoint 1, main (argc=1, argv=0xeffff21c) at prog.c:3
126163 char *symarg = 0;
12617(gdbslet) step
126184 char *execarg = "hello!";
12619(gdbslet)
474c8240 12620@end smallexample
8e04817f
AC
12621
12622@node Sparclite
12623@subsection Fujitsu Sparclite
104c1213
JM
12624
12625@table @code
12626
8e04817f
AC
12627@kindex target sparclite
12628@item target sparclite @var{dev}
12629Fujitsu sparclite boards, used only for the purpose of loading.
12630You must use an additional command to debug the program.
12631For example: target remote @var{dev} using @value{GDBN} standard
12632remote protocol.
104c1213
JM
12633
12634@end table
12635
8e04817f
AC
12636@node ST2000
12637@subsection Tandem ST2000
104c1213 12638
8e04817f
AC
12639@value{GDBN} may be used with a Tandem ST2000 phone switch, running Tandem's
12640STDBUG protocol.
104c1213 12641
8e04817f
AC
12642To connect your ST2000 to the host system, see the manufacturer's
12643manual. Once the ST2000 is physically attached, you can run:
104c1213 12644
474c8240 12645@smallexample
8e04817f 12646target st2000 @var{dev} @var{speed}
474c8240 12647@end smallexample
104c1213 12648
8e04817f
AC
12649@noindent
12650to establish it as your debugging environment. @var{dev} is normally
12651the name of a serial device, such as @file{/dev/ttya}, connected to the
12652ST2000 via a serial line. You can instead specify @var{dev} as a TCP
12653connection (for example, to a serial line attached via a terminal
12654concentrator) using the syntax @code{@var{hostname}:@var{portnumber}}.
104c1213 12655
8e04817f
AC
12656The @code{load} and @code{attach} commands are @emph{not} defined for
12657this target; you must load your program into the ST2000 as you normally
12658would for standalone operation. @value{GDBN} reads debugging information
12659(such as symbols) from a separate, debugging version of the program
12660available on your host computer.
12661@c FIXME!! This is terribly vague; what little content is here is
12662@c basically hearsay.
104c1213 12663
8e04817f
AC
12664@cindex ST2000 auxiliary commands
12665These auxiliary @value{GDBN} commands are available to help you with the ST2000
12666environment:
104c1213 12667
8e04817f
AC
12668@table @code
12669@item st2000 @var{command}
12670@kindex st2000 @var{cmd}
12671@cindex STDBUG commands (ST2000)
12672@cindex commands to STDBUG (ST2000)
12673Send a @var{command} to the STDBUG monitor. See the manufacturer's
12674manual for available commands.
104c1213 12675
8e04817f
AC
12676@item connect
12677@cindex connect (to STDBUG)
12678Connect the controlling terminal to the STDBUG command monitor. When
12679you are done interacting with STDBUG, typing either of two character
12680sequences gets you back to the @value{GDBN} command prompt:
12681@kbd{@key{RET}~.} (Return, followed by tilde and period) or
12682@kbd{@key{RET}~@key{C-d}} (Return, followed by tilde and control-D).
104c1213
JM
12683@end table
12684
8e04817f
AC
12685@node Z8000
12686@subsection Zilog Z8000
104c1213 12687
8e04817f
AC
12688@cindex Z8000
12689@cindex simulator, Z8000
12690@cindex Zilog Z8000 simulator
104c1213 12691
8e04817f
AC
12692When configured for debugging Zilog Z8000 targets, @value{GDBN} includes
12693a Z8000 simulator.
12694
12695For the Z8000 family, @samp{target sim} simulates either the Z8002 (the
12696unsegmented variant of the Z8000 architecture) or the Z8001 (the
12697segmented variant). The simulator recognizes which architecture is
12698appropriate by inspecting the object code.
104c1213 12699
8e04817f
AC
12700@table @code
12701@item target sim @var{args}
12702@kindex sim
12703@kindex target sim@r{, with Z8000}
12704Debug programs on a simulated CPU. If the simulator supports setup
12705options, specify them via @var{args}.
104c1213
JM
12706@end table
12707
8e04817f
AC
12708@noindent
12709After specifying this target, you can debug programs for the simulated
12710CPU in the same style as programs for your host computer; use the
12711@code{file} command to load a new program image, the @code{run} command
12712to run your program, and so on.
12713
12714As well as making available all the usual machine registers
12715(@pxref{Registers, ,Registers}), the Z8000 simulator provides three
12716additional items of information as specially named registers:
104c1213
JM
12717
12718@table @code
12719
8e04817f
AC
12720@item cycles
12721Counts clock-ticks in the simulator.
104c1213 12722
8e04817f
AC
12723@item insts
12724Counts instructions run in the simulator.
104c1213 12725
8e04817f
AC
12726@item time
12727Execution time in 60ths of a second.
104c1213 12728
8e04817f 12729@end table
104c1213 12730
8e04817f
AC
12731You can refer to these values in @value{GDBN} expressions with the usual
12732conventions; for example, @w{@samp{b fputc if $cycles>5000}} sets a
12733conditional breakpoint that suspends only after at least 5000
12734simulated clock ticks.
104c1213 12735
8e04817f
AC
12736@node Architectures
12737@section Architectures
104c1213 12738
8e04817f
AC
12739This section describes characteristics of architectures that affect
12740all uses of @value{GDBN} with the architecture, both native and cross.
104c1213 12741
8e04817f
AC
12742@menu
12743* A29K::
12744* Alpha::
12745* MIPS::
12746@end menu
104c1213 12747
8e04817f
AC
12748@node A29K
12749@subsection A29K
104c1213
JM
12750
12751@table @code
104c1213 12752
8e04817f
AC
12753@kindex set rstack_high_address
12754@cindex AMD 29K register stack
12755@cindex register stack, AMD29K
12756@item set rstack_high_address @var{address}
12757On AMD 29000 family processors, registers are saved in a separate
12758@dfn{register stack}. There is no way for @value{GDBN} to determine the
12759extent of this stack. Normally, @value{GDBN} just assumes that the
12760stack is ``large enough''. This may result in @value{GDBN} referencing
12761memory locations that do not exist. If necessary, you can get around
12762this problem by specifying the ending address of the register stack with
12763the @code{set rstack_high_address} command. The argument should be an
12764address, which you probably want to precede with @samp{0x} to specify in
12765hexadecimal.
104c1213 12766
8e04817f
AC
12767@kindex show rstack_high_address
12768@item show rstack_high_address
12769Display the current limit of the register stack, on AMD 29000 family
12770processors.
104c1213 12771
8e04817f 12772@end table
104c1213 12773
8e04817f
AC
12774@node Alpha
12775@subsection Alpha
104c1213 12776
8e04817f 12777See the following section.
104c1213 12778
8e04817f
AC
12779@node MIPS
12780@subsection MIPS
104c1213 12781
8e04817f
AC
12782@cindex stack on Alpha
12783@cindex stack on MIPS
12784@cindex Alpha stack
12785@cindex MIPS stack
12786Alpha- and MIPS-based computers use an unusual stack frame, which
12787sometimes requires @value{GDBN} to search backward in the object code to
12788find the beginning of a function.
104c1213 12789
8e04817f
AC
12790@cindex response time, MIPS debugging
12791To improve response time (especially for embedded applications, where
12792@value{GDBN} may be restricted to a slow serial line for this search)
12793you may want to limit the size of this search, using one of these
12794commands:
104c1213 12795
8e04817f
AC
12796@table @code
12797@cindex @code{heuristic-fence-post} (Alpha, MIPS)
12798@item set heuristic-fence-post @var{limit}
12799Restrict @value{GDBN} to examining at most @var{limit} bytes in its
12800search for the beginning of a function. A value of @var{0} (the
12801default) means there is no limit. However, except for @var{0}, the
12802larger the limit the more bytes @code{heuristic-fence-post} must search
12803and therefore the longer it takes to run.
104c1213 12804
8e04817f
AC
12805@item show heuristic-fence-post
12806Display the current limit.
12807@end table
104c1213
JM
12808
12809@noindent
8e04817f
AC
12810These commands are available @emph{only} when @value{GDBN} is configured
12811for debugging programs on Alpha or MIPS processors.
104c1213 12812
104c1213 12813
8e04817f
AC
12814@node Controlling GDB
12815@chapter Controlling @value{GDBN}
12816
12817You can alter the way @value{GDBN} interacts with you by using the
12818@code{set} command. For commands controlling how @value{GDBN} displays
12819data, see @ref{Print Settings, ,Print settings}. Other settings are
12820described here.
12821
12822@menu
12823* Prompt:: Prompt
12824* Editing:: Command editing
12825* History:: Command history
12826* Screen Size:: Screen size
12827* Numbers:: Numbers
1e698235 12828* ABI:: Configuring the current ABI
8e04817f
AC
12829* Messages/Warnings:: Optional warnings and messages
12830* Debugging Output:: Optional messages about internal happenings
12831@end menu
12832
12833@node Prompt
12834@section Prompt
104c1213 12835
8e04817f 12836@cindex prompt
104c1213 12837
8e04817f
AC
12838@value{GDBN} indicates its readiness to read a command by printing a string
12839called the @dfn{prompt}. This string is normally @samp{(@value{GDBP})}. You
12840can change the prompt string with the @code{set prompt} command. For
12841instance, when debugging @value{GDBN} with @value{GDBN}, it is useful to change
12842the prompt in one of the @value{GDBN} sessions so that you can always tell
12843which one you are talking to.
104c1213 12844
8e04817f
AC
12845@emph{Note:} @code{set prompt} does not add a space for you after the
12846prompt you set. This allows you to set a prompt which ends in a space
12847or a prompt that does not.
104c1213 12848
8e04817f
AC
12849@table @code
12850@kindex set prompt
12851@item set prompt @var{newprompt}
12852Directs @value{GDBN} to use @var{newprompt} as its prompt string henceforth.
104c1213 12853
8e04817f
AC
12854@kindex show prompt
12855@item show prompt
12856Prints a line of the form: @samp{Gdb's prompt is: @var{your-prompt}}
104c1213
JM
12857@end table
12858
8e04817f
AC
12859@node Editing
12860@section Command editing
12861@cindex readline
12862@cindex command line editing
104c1213 12863
8e04817f
AC
12864@value{GDBN} reads its input commands via the @dfn{readline} interface. This
12865@sc{gnu} library provides consistent behavior for programs which provide a
12866command line interface to the user. Advantages are @sc{gnu} Emacs-style
12867or @dfn{vi}-style inline editing of commands, @code{csh}-like history
12868substitution, and a storage and recall of command history across
12869debugging sessions.
104c1213 12870
8e04817f
AC
12871You may control the behavior of command line editing in @value{GDBN} with the
12872command @code{set}.
104c1213 12873
8e04817f
AC
12874@table @code
12875@kindex set editing
12876@cindex editing
12877@item set editing
12878@itemx set editing on
12879Enable command line editing (enabled by default).
104c1213 12880
8e04817f
AC
12881@item set editing off
12882Disable command line editing.
104c1213 12883
8e04817f
AC
12884@kindex show editing
12885@item show editing
12886Show whether command line editing is enabled.
104c1213
JM
12887@end table
12888
8e04817f
AC
12889@node History
12890@section Command history
12891
12892@value{GDBN} can keep track of the commands you type during your
12893debugging sessions, so that you can be certain of precisely what
12894happened. Use these commands to manage the @value{GDBN} command
12895history facility.
104c1213
JM
12896
12897@table @code
8e04817f
AC
12898@cindex history substitution
12899@cindex history file
12900@kindex set history filename
12901@kindex GDBHISTFILE
12902@item set history filename @var{fname}
12903Set the name of the @value{GDBN} command history file to @var{fname}.
12904This is the file where @value{GDBN} reads an initial command history
12905list, and where it writes the command history from this session when it
12906exits. You can access this list through history expansion or through
12907the history command editing characters listed below. This file defaults
12908to the value of the environment variable @code{GDBHISTFILE}, or to
12909@file{./.gdb_history} (@file{./_gdb_history} on MS-DOS) if this variable
12910is not set.
104c1213 12911
8e04817f
AC
12912@cindex history save
12913@kindex set history save
12914@item set history save
12915@itemx set history save on
12916Record command history in a file, whose name may be specified with the
12917@code{set history filename} command. By default, this option is disabled.
104c1213 12918
8e04817f
AC
12919@item set history save off
12920Stop recording command history in a file.
104c1213 12921
8e04817f
AC
12922@cindex history size
12923@kindex set history size
12924@item set history size @var{size}
12925Set the number of commands which @value{GDBN} keeps in its history list.
12926This defaults to the value of the environment variable
12927@code{HISTSIZE}, or to 256 if this variable is not set.
104c1213
JM
12928@end table
12929
8e04817f
AC
12930@cindex history expansion
12931History expansion assigns special meaning to the character @kbd{!}.
12932@ifset have-readline-appendices
12933@xref{Event Designators}.
12934@end ifset
12935
12936Since @kbd{!} is also the logical not operator in C, history expansion
12937is off by default. If you decide to enable history expansion with the
12938@code{set history expansion on} command, you may sometimes need to
12939follow @kbd{!} (when it is used as logical not, in an expression) with
12940a space or a tab to prevent it from being expanded. The readline
12941history facilities do not attempt substitution on the strings
12942@kbd{!=} and @kbd{!(}, even when history expansion is enabled.
12943
12944The commands to control history expansion are:
104c1213
JM
12945
12946@table @code
8e04817f
AC
12947@kindex set history expansion
12948@item set history expansion on
12949@itemx set history expansion
12950Enable history expansion. History expansion is off by default.
104c1213 12951
8e04817f
AC
12952@item set history expansion off
12953Disable history expansion.
104c1213 12954
8e04817f
AC
12955The readline code comes with more complete documentation of
12956editing and history expansion features. Users unfamiliar with @sc{gnu} Emacs
12957or @code{vi} may wish to read it.
12958@ifset have-readline-appendices
12959@xref{Command Line Editing}.
12960@end ifset
104c1213 12961
8e04817f
AC
12962@c @group
12963@kindex show history
12964@item show history
12965@itemx show history filename
12966@itemx show history save
12967@itemx show history size
12968@itemx show history expansion
12969These commands display the state of the @value{GDBN} history parameters.
12970@code{show history} by itself displays all four states.
12971@c @end group
12972@end table
12973
12974@table @code
12975@kindex shows
12976@item show commands
12977Display the last ten commands in the command history.
104c1213 12978
8e04817f
AC
12979@item show commands @var{n}
12980Print ten commands centered on command number @var{n}.
12981
12982@item show commands +
12983Print ten commands just after the commands last printed.
104c1213
JM
12984@end table
12985
8e04817f
AC
12986@node Screen Size
12987@section Screen size
12988@cindex size of screen
12989@cindex pauses in output
104c1213 12990
8e04817f
AC
12991Certain commands to @value{GDBN} may produce large amounts of
12992information output to the screen. To help you read all of it,
12993@value{GDBN} pauses and asks you for input at the end of each page of
12994output. Type @key{RET} when you want to continue the output, or @kbd{q}
12995to discard the remaining output. Also, the screen width setting
12996determines when to wrap lines of output. Depending on what is being
12997printed, @value{GDBN} tries to break the line at a readable place,
12998rather than simply letting it overflow onto the following line.
12999
13000Normally @value{GDBN} knows the size of the screen from the terminal
13001driver software. For example, on Unix @value{GDBN} uses the termcap data base
13002together with the value of the @code{TERM} environment variable and the
13003@code{stty rows} and @code{stty cols} settings. If this is not correct,
13004you can override it with the @code{set height} and @code{set
13005width} commands:
13006
13007@table @code
13008@kindex set height
13009@kindex set width
13010@kindex show width
13011@kindex show height
13012@item set height @var{lpp}
13013@itemx show height
13014@itemx set width @var{cpl}
13015@itemx show width
13016These @code{set} commands specify a screen height of @var{lpp} lines and
13017a screen width of @var{cpl} characters. The associated @code{show}
13018commands display the current settings.
104c1213 13019
8e04817f
AC
13020If you specify a height of zero lines, @value{GDBN} does not pause during
13021output no matter how long the output is. This is useful if output is to a
13022file or to an editor buffer.
104c1213 13023
8e04817f
AC
13024Likewise, you can specify @samp{set width 0} to prevent @value{GDBN}
13025from wrapping its output.
104c1213
JM
13026@end table
13027
8e04817f
AC
13028@node Numbers
13029@section Numbers
13030@cindex number representation
13031@cindex entering numbers
104c1213 13032
8e04817f
AC
13033You can always enter numbers in octal, decimal, or hexadecimal in
13034@value{GDBN} by the usual conventions: octal numbers begin with
13035@samp{0}, decimal numbers end with @samp{.}, and hexadecimal numbers
13036begin with @samp{0x}. Numbers that begin with none of these are, by
13037default, entered in base 10; likewise, the default display for
13038numbers---when no particular format is specified---is base 10. You can
13039change the default base for both input and output with the @code{set
13040radix} command.
104c1213 13041
8e04817f
AC
13042@table @code
13043@kindex set input-radix
13044@item set input-radix @var{base}
13045Set the default base for numeric input. Supported choices
13046for @var{base} are decimal 8, 10, or 16. @var{base} must itself be
13047specified either unambiguously or using the current default radix; for
13048example, any of
104c1213 13049
8e04817f
AC
13050@smallexample
13051set radix 012
13052set radix 10.
13053set radix 0xa
13054@end smallexample
104c1213 13055
8e04817f
AC
13056@noindent
13057sets the base to decimal. On the other hand, @samp{set radix 10}
13058leaves the radix unchanged no matter what it was.
104c1213 13059
8e04817f
AC
13060@kindex set output-radix
13061@item set output-radix @var{base}
13062Set the default base for numeric display. Supported choices
13063for @var{base} are decimal 8, 10, or 16. @var{base} must itself be
13064specified either unambiguously or using the current default radix.
104c1213 13065
8e04817f
AC
13066@kindex show input-radix
13067@item show input-radix
13068Display the current default base for numeric input.
104c1213 13069
8e04817f
AC
13070@kindex show output-radix
13071@item show output-radix
13072Display the current default base for numeric display.
13073@end table
104c1213 13074
1e698235
DJ
13075@node ABI
13076@section Configuring the current ABI
13077
13078@value{GDBN} can determine the @dfn{ABI} (Application Binary Interface) of your
13079application automatically. However, sometimes you need to override its
13080conclusions. Use these commands to manage @value{GDBN}'s view of the
13081current ABI.
13082
98b45e30
DJ
13083@cindex OS ABI
13084@kindex set osabi
b4e9345d 13085@kindex show osabi
98b45e30
DJ
13086
13087One @value{GDBN} configuration can debug binaries for multiple operating
13088system targets, either via remote debugging or native emulation.
13089@value{GDBN} will autodetect the @dfn{OS ABI} (Operating System ABI) in use,
13090but you can override its conclusion using the @code{set osabi} command.
13091One example where this is useful is in debugging of binaries which use
13092an alternate C library (e.g.@: @sc{uClibc} for @sc{gnu}/Linux) which does
13093not have the same identifying marks that the standard C library for your
13094platform provides.
13095
13096@table @code
13097@item show osabi
13098Show the OS ABI currently in use.
13099
13100@item set osabi
13101With no argument, show the list of registered available OS ABI's.
13102
13103@item set osabi @var{abi}
13104Set the current OS ABI to @var{abi}.
13105@end table
13106
1e698235
DJ
13107@cindex float promotion
13108@kindex set coerce-float-to-double
13109
13110Generally, the way that an argument of type @code{float} is passed to a
13111function depends on whether the function is prototyped. For a prototyped
13112(i.e.@: ANSI/ISO style) function, @code{float} arguments are passed unchanged,
13113according to the architecture's convention for @code{float}. For unprototyped
13114(i.e.@: K&R style) functions, @code{float} arguments are first promoted to type
13115@code{double} and then passed.
13116
13117Unfortunately, some forms of debug information do not reliably indicate whether
13118a function is prototyped. If @value{GDBN} calls a function that is not marked
13119as prototyped, it consults @kbd{set coerce-float-to-double}.
13120
13121@table @code
13122@item set coerce-float-to-double
13123@itemx set coerce-float-to-double on
13124Arguments of type @code{float} will be promoted to @code{double} when passed
13125to an unprototyped function. This is the default setting.
13126
13127@item set coerce-float-to-double off
13128Arguments of type @code{float} will be passed directly to unprototyped
13129functions.
13130@end table
13131
f1212245
DJ
13132@kindex set cp-abi
13133@kindex show cp-abi
13134@value{GDBN} needs to know the ABI used for your program's C@t{++}
13135objects. The correct C@t{++} ABI depends on which C@t{++} compiler was
13136used to build your application. @value{GDBN} only fully supports
13137programs with a single C@t{++} ABI; if your program contains code using
13138multiple C@t{++} ABI's or if @value{GDBN} can not identify your
13139program's ABI correctly, you can tell @value{GDBN} which ABI to use.
13140Currently supported ABI's include ``gnu-v2'', for @code{g++} versions
13141before 3.0, ``gnu-v3'', for @code{g++} versions 3.0 and later, and
13142``hpaCC'' for the HP ANSI C@t{++} compiler. Other C@t{++} compilers may
13143use the ``gnu-v2'' or ``gnu-v3'' ABI's as well. The default setting is
13144``auto''.
13145
13146@table @code
13147@item show cp-abi
13148Show the C@t{++} ABI currently in use.
13149
13150@item set cp-abi
13151With no argument, show the list of supported C@t{++} ABI's.
13152
13153@item set cp-abi @var{abi}
13154@itemx set cp-abi auto
13155Set the current C@t{++} ABI to @var{abi}, or return to automatic detection.
13156@end table
13157
8e04817f
AC
13158@node Messages/Warnings
13159@section Optional warnings and messages
104c1213 13160
8e04817f
AC
13161By default, @value{GDBN} is silent about its inner workings. If you are
13162running on a slow machine, you may want to use the @code{set verbose}
13163command. This makes @value{GDBN} tell you when it does a lengthy
13164internal operation, so you will not think it has crashed.
104c1213 13165
8e04817f
AC
13166Currently, the messages controlled by @code{set verbose} are those
13167which announce that the symbol table for a source file is being read;
13168see @code{symbol-file} in @ref{Files, ,Commands to specify files}.
104c1213 13169
8e04817f
AC
13170@table @code
13171@kindex set verbose
13172@item set verbose on
13173Enables @value{GDBN} output of certain informational messages.
104c1213 13174
8e04817f
AC
13175@item set verbose off
13176Disables @value{GDBN} output of certain informational messages.
104c1213 13177
8e04817f
AC
13178@kindex show verbose
13179@item show verbose
13180Displays whether @code{set verbose} is on or off.
13181@end table
104c1213 13182
8e04817f
AC
13183By default, if @value{GDBN} encounters bugs in the symbol table of an
13184object file, it is silent; but if you are debugging a compiler, you may
13185find this information useful (@pxref{Symbol Errors, ,Errors reading
13186symbol files}).
104c1213 13187
8e04817f 13188@table @code
104c1213 13189
8e04817f
AC
13190@kindex set complaints
13191@item set complaints @var{limit}
13192Permits @value{GDBN} to output @var{limit} complaints about each type of
13193unusual symbols before becoming silent about the problem. Set
13194@var{limit} to zero to suppress all complaints; set it to a large number
13195to prevent complaints from being suppressed.
104c1213 13196
8e04817f
AC
13197@kindex show complaints
13198@item show complaints
13199Displays how many symbol complaints @value{GDBN} is permitted to produce.
104c1213 13200
8e04817f 13201@end table
104c1213 13202
8e04817f
AC
13203By default, @value{GDBN} is cautious, and asks what sometimes seems to be a
13204lot of stupid questions to confirm certain commands. For example, if
13205you try to run a program which is already running:
104c1213 13206
474c8240 13207@smallexample
8e04817f
AC
13208(@value{GDBP}) run
13209The program being debugged has been started already.
13210Start it from the beginning? (y or n)
474c8240 13211@end smallexample
104c1213 13212
8e04817f
AC
13213If you are willing to unflinchingly face the consequences of your own
13214commands, you can disable this ``feature'':
104c1213 13215
8e04817f 13216@table @code
104c1213 13217
8e04817f
AC
13218@kindex set confirm
13219@cindex flinching
13220@cindex confirmation
13221@cindex stupid questions
13222@item set confirm off
13223Disables confirmation requests.
104c1213 13224
8e04817f
AC
13225@item set confirm on
13226Enables confirmation requests (the default).
104c1213 13227
8e04817f
AC
13228@kindex show confirm
13229@item show confirm
13230Displays state of confirmation requests.
13231
13232@end table
104c1213 13233
8e04817f
AC
13234@node Debugging Output
13235@section Optional messages about internal happenings
104c1213 13236@table @code
8e04817f
AC
13237@kindex set debug arch
13238@item set debug arch
13239Turns on or off display of gdbarch debugging info. The default is off
13240@kindex show debug arch
13241@item show debug arch
13242Displays the current state of displaying gdbarch debugging info.
13243@kindex set debug event
13244@item set debug event
13245Turns on or off display of @value{GDBN} event debugging info. The
13246default is off.
13247@kindex show debug event
13248@item show debug event
13249Displays the current state of displaying @value{GDBN} event debugging
13250info.
13251@kindex set debug expression
13252@item set debug expression
13253Turns on or off display of @value{GDBN} expression debugging info. The
13254default is off.
13255@kindex show debug expression
13256@item show debug expression
13257Displays the current state of displaying @value{GDBN} expression
13258debugging info.
7453dc06
AC
13259@kindex set debug frame
13260@item set debug frame
13261Turns on or off display of @value{GDBN} frame debugging info. The
13262default is off.
13263@kindex show debug frame
13264@item show debug frame
13265Displays the current state of displaying @value{GDBN} frame debugging
13266info.
8e04817f
AC
13267@kindex set debug overload
13268@item set debug overload
13269Turns on or off display of @value{GDBN} C@t{++} overload debugging
13270info. This includes info such as ranking of functions, etc. The default
13271is off.
13272@kindex show debug overload
13273@item show debug overload
13274Displays the current state of displaying @value{GDBN} C@t{++} overload
13275debugging info.
13276@kindex set debug remote
13277@cindex packets, reporting on stdout
13278@cindex serial connections, debugging
13279@item set debug remote
13280Turns on or off display of reports on all packets sent back and forth across
13281the serial line to the remote machine. The info is printed on the
13282@value{GDBN} standard output stream. The default is off.
13283@kindex show debug remote
13284@item show debug remote
13285Displays the state of display of remote packets.
13286@kindex set debug serial
13287@item set debug serial
13288Turns on or off display of @value{GDBN} serial debugging info. The
13289default is off.
13290@kindex show debug serial
13291@item show debug serial
13292Displays the current state of displaying @value{GDBN} serial debugging
13293info.
13294@kindex set debug target
13295@item set debug target
13296Turns on or off display of @value{GDBN} target debugging info. This info
13297includes what is going on at the target level of GDB, as it happens. The
13298default is off.
13299@kindex show debug target
13300@item show debug target
13301Displays the current state of displaying @value{GDBN} target debugging
13302info.
13303@kindex set debug varobj
13304@item set debug varobj
13305Turns on or off display of @value{GDBN} variable object debugging
13306info. The default is off.
13307@kindex show debug varobj
13308@item show debug varobj
13309Displays the current state of displaying @value{GDBN} variable object
13310debugging info.
13311@end table
104c1213 13312
8e04817f
AC
13313@node Sequences
13314@chapter Canned Sequences of Commands
104c1213 13315
8e04817f
AC
13316Aside from breakpoint commands (@pxref{Break Commands, ,Breakpoint
13317command lists}), @value{GDBN} provides two ways to store sequences of
13318commands for execution as a unit: user-defined commands and command
13319files.
104c1213 13320
8e04817f
AC
13321@menu
13322* Define:: User-defined commands
13323* Hooks:: User-defined command hooks
13324* Command Files:: Command files
13325* Output:: Commands for controlled output
13326@end menu
104c1213 13327
8e04817f
AC
13328@node Define
13329@section User-defined commands
104c1213 13330
8e04817f
AC
13331@cindex user-defined command
13332A @dfn{user-defined command} is a sequence of @value{GDBN} commands to
13333which you assign a new name as a command. This is done with the
13334@code{define} command. User commands may accept up to 10 arguments
13335separated by whitespace. Arguments are accessed within the user command
13336via @var{$arg0@dots{}$arg9}. A trivial example:
104c1213 13337
8e04817f
AC
13338@smallexample
13339define adder
13340 print $arg0 + $arg1 + $arg2
13341@end smallexample
104c1213
JM
13342
13343@noindent
8e04817f 13344To execute the command use:
104c1213 13345
8e04817f
AC
13346@smallexample
13347adder 1 2 3
13348@end smallexample
104c1213 13349
8e04817f
AC
13350@noindent
13351This defines the command @code{adder}, which prints the sum of
13352its three arguments. Note the arguments are text substitutions, so they may
13353reference variables, use complex expressions, or even perform inferior
13354functions calls.
104c1213
JM
13355
13356@table @code
104c1213 13357
8e04817f
AC
13358@kindex define
13359@item define @var{commandname}
13360Define a command named @var{commandname}. If there is already a command
13361by that name, you are asked to confirm that you want to redefine it.
104c1213 13362
8e04817f
AC
13363The definition of the command is made up of other @value{GDBN} command lines,
13364which are given following the @code{define} command. The end of these
13365commands is marked by a line containing @code{end}.
104c1213 13366
8e04817f
AC
13367@kindex if
13368@kindex else
13369@item if
13370Takes a single argument, which is an expression to evaluate.
13371It is followed by a series of commands that are executed
13372only if the expression is true (nonzero).
13373There can then optionally be a line @code{else}, followed
13374by a series of commands that are only executed if the expression
13375was false. The end of the list is marked by a line containing @code{end}.
104c1213 13376
8e04817f
AC
13377@kindex while
13378@item while
13379The syntax is similar to @code{if}: the command takes a single argument,
13380which is an expression to evaluate, and must be followed by the commands to
13381execute, one per line, terminated by an @code{end}.
13382The commands are executed repeatedly as long as the expression
13383evaluates to true.
104c1213 13384
8e04817f
AC
13385@kindex document
13386@item document @var{commandname}
13387Document the user-defined command @var{commandname}, so that it can be
13388accessed by @code{help}. The command @var{commandname} must already be
13389defined. This command reads lines of documentation just as @code{define}
13390reads the lines of the command definition, ending with @code{end}.
13391After the @code{document} command is finished, @code{help} on command
13392@var{commandname} displays the documentation you have written.
104c1213 13393
8e04817f
AC
13394You may use the @code{document} command again to change the
13395documentation of a command. Redefining the command with @code{define}
13396does not change the documentation.
104c1213 13397
8e04817f
AC
13398@kindex help user-defined
13399@item help user-defined
13400List all user-defined commands, with the first line of the documentation
13401(if any) for each.
104c1213 13402
8e04817f
AC
13403@kindex show user
13404@item show user
13405@itemx show user @var{commandname}
13406Display the @value{GDBN} commands used to define @var{commandname} (but
13407not its documentation). If no @var{commandname} is given, display the
13408definitions for all user-defined commands.
104c1213 13409
20f01a46
DH
13410@kindex show max-user-call-depth
13411@kindex set max-user-call-depth
13412@item show max-user-call-depth
5ca0cb28
DH
13413@itemx set max-user-call-depth
13414The value of @code{max-user-call-depth} controls how many recursion
13415levels are allowed in user-defined commands before GDB suspects an
13416infinite recursion and aborts the command.
20f01a46 13417
104c1213
JM
13418@end table
13419
8e04817f
AC
13420When user-defined commands are executed, the
13421commands of the definition are not printed. An error in any command
13422stops execution of the user-defined command.
104c1213 13423
8e04817f
AC
13424If used interactively, commands that would ask for confirmation proceed
13425without asking when used inside a user-defined command. Many @value{GDBN}
13426commands that normally print messages to say what they are doing omit the
13427messages when used in a user-defined command.
104c1213 13428
8e04817f
AC
13429@node Hooks
13430@section User-defined command hooks
13431@cindex command hooks
13432@cindex hooks, for commands
13433@cindex hooks, pre-command
104c1213 13434
8e04817f
AC
13435@kindex hook
13436@kindex hook-
13437You may define @dfn{hooks}, which are a special kind of user-defined
13438command. Whenever you run the command @samp{foo}, if the user-defined
13439command @samp{hook-foo} exists, it is executed (with no arguments)
13440before that command.
104c1213 13441
8e04817f
AC
13442@cindex hooks, post-command
13443@kindex hookpost
13444@kindex hookpost-
13445A hook may also be defined which is run after the command you executed.
13446Whenever you run the command @samp{foo}, if the user-defined command
13447@samp{hookpost-foo} exists, it is executed (with no arguments) after
13448that command. Post-execution hooks may exist simultaneously with
13449pre-execution hooks, for the same command.
104c1213 13450
8e04817f
AC
13451It is valid for a hook to call the command which it hooks. If this
13452occurs, the hook is not re-executed, thereby avoiding infinte recursion.
104c1213 13453
8e04817f
AC
13454@c It would be nice if hookpost could be passed a parameter indicating
13455@c if the command it hooks executed properly or not. FIXME!
104c1213 13456
8e04817f
AC
13457@kindex stop@r{, a pseudo-command}
13458In addition, a pseudo-command, @samp{stop} exists. Defining
13459(@samp{hook-stop}) makes the associated commands execute every time
13460execution stops in your program: before breakpoint commands are run,
13461displays are printed, or the stack frame is printed.
104c1213 13462
8e04817f
AC
13463For example, to ignore @code{SIGALRM} signals while
13464single-stepping, but treat them normally during normal execution,
13465you could define:
104c1213 13466
474c8240 13467@smallexample
8e04817f
AC
13468define hook-stop
13469handle SIGALRM nopass
13470end
104c1213 13471
8e04817f
AC
13472define hook-run
13473handle SIGALRM pass
13474end
104c1213 13475
8e04817f
AC
13476define hook-continue
13477handle SIGLARM pass
13478end
474c8240 13479@end smallexample
104c1213 13480
8e04817f
AC
13481As a further example, to hook at the begining and end of the @code{echo}
13482command, and to add extra text to the beginning and end of the message,
13483you could define:
104c1213 13484
474c8240 13485@smallexample
8e04817f
AC
13486define hook-echo
13487echo <<<---
13488end
104c1213 13489
8e04817f
AC
13490define hookpost-echo
13491echo --->>>\n
13492end
104c1213 13493
8e04817f
AC
13494(@value{GDBP}) echo Hello World
13495<<<---Hello World--->>>
13496(@value{GDBP})
104c1213 13497
474c8240 13498@end smallexample
104c1213 13499
8e04817f
AC
13500You can define a hook for any single-word command in @value{GDBN}, but
13501not for command aliases; you should define a hook for the basic command
13502name, e.g. @code{backtrace} rather than @code{bt}.
13503@c FIXME! So how does Joe User discover whether a command is an alias
13504@c or not?
13505If an error occurs during the execution of your hook, execution of
13506@value{GDBN} commands stops and @value{GDBN} issues a prompt
13507(before the command that you actually typed had a chance to run).
104c1213 13508
8e04817f
AC
13509If you try to define a hook which does not match any known command, you
13510get a warning from the @code{define} command.
c906108c 13511
8e04817f
AC
13512@node Command Files
13513@section Command files
c906108c 13514
8e04817f
AC
13515@cindex command files
13516A command file for @value{GDBN} is a file of lines that are @value{GDBN}
13517commands. Comments (lines starting with @kbd{#}) may also be included.
13518An empty line in a command file does nothing; it does not mean to repeat
13519the last command, as it would from the terminal.
c906108c 13520
8e04817f
AC
13521@cindex init file
13522@cindex @file{.gdbinit}
13523@cindex @file{gdb.ini}
13524When you start @value{GDBN}, it automatically executes commands from its
13525@dfn{init files}, normally called @file{.gdbinit}@footnote{The DJGPP
13526port of @value{GDBN} uses the name @file{gdb.ini} instead, due to the
13527limitations of file names imposed by DOS filesystems.}.
13528During startup, @value{GDBN} does the following:
c906108c 13529
8e04817f
AC
13530@enumerate
13531@item
13532Reads the init file (if any) in your home directory@footnote{On
13533DOS/Windows systems, the home directory is the one pointed to by the
13534@code{HOME} environment variable.}.
c906108c 13535
8e04817f
AC
13536@item
13537Processes command line options and operands.
c906108c 13538
8e04817f
AC
13539@item
13540Reads the init file (if any) in the current working directory.
c906108c 13541
8e04817f
AC
13542@item
13543Reads command files specified by the @samp{-x} option.
13544@end enumerate
c906108c 13545
8e04817f
AC
13546The init file in your home directory can set options (such as @samp{set
13547complaints}) that affect subsequent processing of command line options
13548and operands. Init files are not executed if you use the @samp{-nx}
13549option (@pxref{Mode Options, ,Choosing modes}).
c906108c 13550
8e04817f
AC
13551@cindex init file name
13552On some configurations of @value{GDBN}, the init file is known by a
13553different name (these are typically environments where a specialized
13554form of @value{GDBN} may need to coexist with other forms, hence a
13555different name for the specialized version's init file). These are the
13556environments with special init file names:
c906108c 13557
8e04817f
AC
13558@cindex @file{.vxgdbinit}
13559@itemize @bullet
13560@item
13561VxWorks (Wind River Systems real-time OS): @file{.vxgdbinit}
c906108c 13562
8e04817f
AC
13563@cindex @file{.os68gdbinit}
13564@item
13565OS68K (Enea Data Systems real-time OS): @file{.os68gdbinit}
c906108c 13566
8e04817f
AC
13567@cindex @file{.esgdbinit}
13568@item
13569ES-1800 (Ericsson Telecom AB M68000 emulator): @file{.esgdbinit}
13570@end itemize
c906108c 13571
8e04817f
AC
13572You can also request the execution of a command file with the
13573@code{source} command:
c906108c 13574
8e04817f
AC
13575@table @code
13576@kindex source
13577@item source @var{filename}
13578Execute the command file @var{filename}.
c906108c
SS
13579@end table
13580
8e04817f 13581The lines in a command file are executed sequentially. They are not
a71ec265
DH
13582printed as they are executed. An error in any command terminates
13583execution of the command file and control is returned to the console.
c906108c 13584
8e04817f
AC
13585Commands that would ask for confirmation if used interactively proceed
13586without asking when used in a command file. Many @value{GDBN} commands that
13587normally print messages to say what they are doing omit the messages
13588when called from command files.
c906108c 13589
8e04817f
AC
13590@value{GDBN} also accepts command input from standard input. In this
13591mode, normal output goes to standard output and error output goes to
13592standard error. Errors in a command file supplied on standard input do
13593not terminate execution of the command file --- execution continues with
13594the next command.
c906108c 13595
474c8240 13596@smallexample
8e04817f 13597gdb < cmds > log 2>&1
474c8240 13598@end smallexample
c906108c 13599
8e04817f
AC
13600(The syntax above will vary depending on the shell used.) This example
13601will execute commands from the file @file{cmds}. All output and errors
13602would be directed to @file{log}.
c906108c 13603
8e04817f
AC
13604@node Output
13605@section Commands for controlled output
c906108c 13606
8e04817f
AC
13607During the execution of a command file or a user-defined command, normal
13608@value{GDBN} output is suppressed; the only output that appears is what is
13609explicitly printed by the commands in the definition. This section
13610describes three commands useful for generating exactly the output you
13611want.
c906108c
SS
13612
13613@table @code
8e04817f
AC
13614@kindex echo
13615@item echo @var{text}
13616@c I do not consider backslash-space a standard C escape sequence
13617@c because it is not in ANSI.
13618Print @var{text}. Nonprinting characters can be included in
13619@var{text} using C escape sequences, such as @samp{\n} to print a
13620newline. @strong{No newline is printed unless you specify one.}
13621In addition to the standard C escape sequences, a backslash followed
13622by a space stands for a space. This is useful for displaying a
13623string with spaces at the beginning or the end, since leading and
13624trailing spaces are otherwise trimmed from all arguments.
13625To print @samp{@w{ }and foo =@w{ }}, use the command
13626@samp{echo \@w{ }and foo = \@w{ }}.
c906108c 13627
8e04817f
AC
13628A backslash at the end of @var{text} can be used, as in C, to continue
13629the command onto subsequent lines. For example,
c906108c 13630
474c8240 13631@smallexample
8e04817f
AC
13632echo This is some text\n\
13633which is continued\n\
13634onto several lines.\n
474c8240 13635@end smallexample
c906108c 13636
8e04817f 13637produces the same output as
c906108c 13638
474c8240 13639@smallexample
8e04817f
AC
13640echo This is some text\n
13641echo which is continued\n
13642echo onto several lines.\n
474c8240 13643@end smallexample
c906108c 13644
8e04817f
AC
13645@kindex output
13646@item output @var{expression}
13647Print the value of @var{expression} and nothing but that value: no
13648newlines, no @samp{$@var{nn} = }. The value is not entered in the
13649value history either. @xref{Expressions, ,Expressions}, for more information
13650on expressions.
c906108c 13651
8e04817f
AC
13652@item output/@var{fmt} @var{expression}
13653Print the value of @var{expression} in format @var{fmt}. You can use
13654the same formats as for @code{print}. @xref{Output Formats,,Output
13655formats}, for more information.
c906108c 13656
8e04817f
AC
13657@kindex printf
13658@item printf @var{string}, @var{expressions}@dots{}
13659Print the values of the @var{expressions} under the control of
13660@var{string}. The @var{expressions} are separated by commas and may be
13661either numbers or pointers. Their values are printed as specified by
13662@var{string}, exactly as if your program were to execute the C
13663subroutine
13664@c FIXME: the above implies that at least all ANSI C formats are
13665@c supported, but it isn't true: %E and %G don't work (or so it seems).
13666@c Either this is a bug, or the manual should document what formats are
13667@c supported.
c906108c 13668
474c8240 13669@smallexample
8e04817f 13670printf (@var{string}, @var{expressions}@dots{});
474c8240 13671@end smallexample
c906108c 13672
8e04817f 13673For example, you can print two values in hex like this:
c906108c 13674
8e04817f
AC
13675@smallexample
13676printf "foo, bar-foo = 0x%x, 0x%x\n", foo, bar-foo
13677@end smallexample
c906108c 13678
8e04817f
AC
13679The only backslash-escape sequences that you can use in the format
13680string are the simple ones that consist of backslash followed by a
13681letter.
c906108c
SS
13682@end table
13683
21c294e6
AC
13684@node Interpreters
13685@chapter Command Interpreters
13686@cindex command interpreters
13687
13688@value{GDBN} supports multiple command interpreters, and some command
13689infrastructure to allow users or user interface writers to switch
13690between interpreters or run commands in other interpreters.
13691
13692@value{GDBN} currently supports two command interpreters, the console
13693interpreter (sometimes called the command-line interpreter or @sc{cli})
13694and the machine interface interpreter (or @sc{gdb/mi}). This manual
13695describes both of these interfaces in great detail.
13696
13697By default, @value{GDBN} will start with the console interpreter.
13698However, the user may choose to start @value{GDBN} with another
13699interpreter by specifying the @option{-i} or @option{--interpreter}
13700startup options. Defined interpreters include:
13701
13702@table @code
13703@item console
13704@cindex console interpreter
13705The traditional console or command-line interpreter. This is the most often
13706used interpreter with @value{GDBN}. With no interpreter specified at runtime,
13707@value{GDBN} will use this interpreter.
13708
13709@item mi
13710@cindex mi interpreter
13711The newest @sc{gdb/mi} interface (currently @code{mi2}). Used primarily
13712by programs wishing to use @value{GDBN} as a backend for a debugger GUI
13713or an IDE. For more information, see @ref{GDB/MI, ,The @sc{gdb/mi}
13714Interface}.
13715
13716@item mi2
13717@cindex mi2 interpreter
13718The current @sc{gdb/mi} interface.
13719
13720@item mi1
13721@cindex mi1 interpreter
13722The @sc{gdb/mi} interface included in @value{GDBN} 5.1, 5.2, and 5.3.
13723
13724@end table
13725
13726@cindex invoke another interpreter
13727The interpreter being used by @value{GDBN} may not be dynamically
13728switched at runtime. Although possible, this could lead to a very
13729precarious situation. Consider an IDE using @sc{gdb/mi}. If a user
13730enters the command "interpreter-set console" in a console view,
13731@value{GDBN} would switch to using the console interpreter, rendering
13732the IDE inoperable!
13733
13734@kindex interpreter-exec
13735Although you may only choose a single interpreter at startup, you may execute
13736commands in any interpreter from the current interpreter using the appropriate
13737command. If you are running the console interpreter, simply use the
13738@code{interpreter-exec} command:
13739
13740@smallexample
13741interpreter-exec mi "-data-list-register-names"
13742@end smallexample
13743
13744@sc{gdb/mi} has a similar command, although it is only available in versions of
13745@value{GDBN} which support @sc{gdb/mi} version 2 (or greater).
13746
8e04817f
AC
13747@node TUI
13748@chapter @value{GDBN} Text User Interface
13749@cindex TUI
c906108c 13750
8e04817f
AC
13751@menu
13752* TUI Overview:: TUI overview
13753* TUI Keys:: TUI key bindings
7cf36c78 13754* TUI Single Key Mode:: TUI single key mode
8e04817f
AC
13755* TUI Commands:: TUI specific commands
13756* TUI Configuration:: TUI configuration variables
13757@end menu
c906108c 13758
8e04817f
AC
13759The @value{GDBN} Text User Interface, TUI in short,
13760is a terminal interface which uses the @code{curses} library
13761to show the source file, the assembly output, the program registers
13762and @value{GDBN} commands in separate text windows.
13763The TUI is available only when @value{GDBN} is configured
13764with the @code{--enable-tui} configure option (@pxref{Configure Options}).
c906108c 13765
8e04817f
AC
13766@node TUI Overview
13767@section TUI overview
c906108c 13768
8e04817f
AC
13769The TUI has two display modes that can be switched while
13770@value{GDBN} runs:
c906108c 13771
8e04817f
AC
13772@itemize @bullet
13773@item
13774A curses (or TUI) mode in which it displays several text
13775windows on the terminal.
c906108c 13776
8e04817f
AC
13777@item
13778A standard mode which corresponds to the @value{GDBN} configured without
13779the TUI.
13780@end itemize
c906108c 13781
8e04817f
AC
13782In the TUI mode, @value{GDBN} can display several text window
13783on the terminal:
c906108c 13784
8e04817f
AC
13785@table @emph
13786@item command
13787This window is the @value{GDBN} command window with the @value{GDBN}
13788prompt and the @value{GDBN} outputs. The @value{GDBN} input is still
13789managed using readline but through the TUI. The @emph{command}
13790window is always visible.
c906108c 13791
8e04817f
AC
13792@item source
13793The source window shows the source file of the program. The current
13794line as well as active breakpoints are displayed in this window.
c906108c 13795
8e04817f
AC
13796@item assembly
13797The assembly window shows the disassembly output of the program.
c906108c 13798
8e04817f
AC
13799@item register
13800This window shows the processor registers. It detects when
13801a register is changed and when this is the case, registers that have
13802changed are highlighted.
c906108c 13803
c906108c
SS
13804@end table
13805
269c21fe
SC
13806The source and assembly windows show the current program position
13807by highlighting the current line and marking them with the @samp{>} marker.
13808Breakpoints are also indicated with two markers. A first one
13809indicates the breakpoint type:
13810
13811@table @code
13812@item B
13813Breakpoint which was hit at least once.
13814
13815@item b
13816Breakpoint which was never hit.
13817
13818@item H
13819Hardware breakpoint which was hit at least once.
13820
13821@item h
13822Hardware breakpoint which was never hit.
13823
13824@end table
13825
13826The second marker indicates whether the breakpoint is enabled or not:
13827
13828@table @code
13829@item +
13830Breakpoint is enabled.
13831
13832@item -
13833Breakpoint is disabled.
13834
13835@end table
13836
8e04817f
AC
13837The source, assembly and register windows are attached to the thread
13838and the frame position. They are updated when the current thread
13839changes, when the frame changes or when the program counter changes.
13840These three windows are arranged by the TUI according to several
13841layouts. The layout defines which of these three windows are visible.
13842The following layouts are available:
c906108c 13843
8e04817f
AC
13844@itemize @bullet
13845@item
13846source
2df3850c 13847
8e04817f
AC
13848@item
13849assembly
13850
13851@item
13852source and assembly
13853
13854@item
13855source and registers
c906108c 13856
8e04817f
AC
13857@item
13858assembly and registers
2df3850c 13859
8e04817f 13860@end itemize
c906108c 13861
b7bb15bc
SC
13862On top of the command window a status line gives various information
13863concerning the current process begin debugged. The status line is
13864updated when the information it shows changes. The following fields
13865are displayed:
13866
13867@table @emph
13868@item target
13869Indicates the current gdb target
13870(@pxref{Targets, ,Specifying a Debugging Target}).
13871
13872@item process
13873Gives information about the current process or thread number.
13874When no process is being debugged, this field is set to @code{No process}.
13875
13876@item function
13877Gives the current function name for the selected frame.
13878The name is demangled if demangling is turned on (@pxref{Print Settings}).
13879When there is no symbol corresponding to the current program counter
13880the string @code{??} is displayed.
13881
13882@item line
13883Indicates the current line number for the selected frame.
13884When the current line number is not known the string @code{??} is displayed.
13885
13886@item pc
13887Indicates the current program counter address.
13888
13889@end table
13890
8e04817f
AC
13891@node TUI Keys
13892@section TUI Key Bindings
13893@cindex TUI key bindings
c906108c 13894
8e04817f
AC
13895The TUI installs several key bindings in the readline keymaps
13896(@pxref{Command Line Editing}).
13897They allow to leave or enter in the TUI mode or they operate
7cf36c78
SC
13898directly on the TUI layout and windows. The TUI also provides
13899a @emph{SingleKey} keymap which binds several keys directly to
13900@value{GDBN} commands. The following key bindings
8e04817f 13901are installed for both TUI mode and the @value{GDBN} standard mode.
c906108c 13902
8e04817f
AC
13903@table @kbd
13904@kindex C-x C-a
13905@item C-x C-a
13906@kindex C-x a
13907@itemx C-x a
13908@kindex C-x A
13909@itemx C-x A
13910Enter or leave the TUI mode. When the TUI mode is left,
13911the curses window management is left and @value{GDBN} operates using
13912its standard mode writing on the terminal directly. When the TUI
13913mode is entered, the control is given back to the curses windows.
13914The screen is then refreshed.
c906108c 13915
8e04817f
AC
13916@kindex C-x 1
13917@item C-x 1
13918Use a TUI layout with only one window. The layout will
13919either be @samp{source} or @samp{assembly}. When the TUI mode
13920is not active, it will switch to the TUI mode.
2df3850c 13921
8e04817f 13922Think of this key binding as the Emacs @kbd{C-x 1} binding.
c906108c 13923
8e04817f
AC
13924@kindex C-x 2
13925@item C-x 2
13926Use a TUI layout with at least two windows. When the current
13927layout shows already two windows, a next layout with two windows is used.
13928When a new layout is chosen, one window will always be common to the
13929previous layout and the new one.
c906108c 13930
8e04817f 13931Think of it as the Emacs @kbd{C-x 2} binding.
2df3850c 13932
72ffddc9
SC
13933@kindex C-x o
13934@item C-x o
13935Change the active window. The TUI associates several key bindings
13936(like scrolling and arrow keys) to the active window. This command
13937gives the focus to the next TUI window.
13938
13939Think of it as the Emacs @kbd{C-x o} binding.
13940
7cf36c78
SC
13941@kindex C-x s
13942@item C-x s
13943Use the TUI @emph{SingleKey} keymap that binds single key to gdb commands
13944(@pxref{TUI Single Key Mode}).
13945
c906108c
SS
13946@end table
13947
8e04817f 13948The following key bindings are handled only by the TUI mode:
5d161b24 13949
8e04817f
AC
13950@table @key
13951@kindex PgUp
13952@item PgUp
13953Scroll the active window one page up.
c906108c 13954
8e04817f
AC
13955@kindex PgDn
13956@item PgDn
13957Scroll the active window one page down.
c906108c 13958
8e04817f
AC
13959@kindex Up
13960@item Up
13961Scroll the active window one line up.
c906108c 13962
8e04817f
AC
13963@kindex Down
13964@item Down
13965Scroll the active window one line down.
c906108c 13966
8e04817f
AC
13967@kindex Left
13968@item Left
13969Scroll the active window one column left.
c906108c 13970
8e04817f
AC
13971@kindex Right
13972@item Right
13973Scroll the active window one column right.
c906108c 13974
8e04817f
AC
13975@kindex C-L
13976@item C-L
13977Refresh the screen.
c906108c 13978
8e04817f 13979@end table
c906108c 13980
8e04817f 13981In the TUI mode, the arrow keys are used by the active window
72ffddc9
SC
13982for scrolling. This means they are available for readline when the
13983active window is the command window. When the command window
13984does not have the focus, it is necessary to use other readline
13985key bindings such as @key{C-p}, @key{C-n}, @key{C-b} and @key{C-f}.
8e04817f 13986
7cf36c78
SC
13987@node TUI Single Key Mode
13988@section TUI Single Key Mode
13989@cindex TUI single key mode
13990
13991The TUI provides a @emph{SingleKey} mode in which it installs a particular
13992key binding in the readline keymaps to connect single keys to
13993some gdb commands.
13994
13995@table @kbd
13996@kindex c @r{(SingleKey TUI key)}
13997@item c
13998continue
13999
14000@kindex d @r{(SingleKey TUI key)}
14001@item d
14002down
14003
14004@kindex f @r{(SingleKey TUI key)}
14005@item f
14006finish
14007
14008@kindex n @r{(SingleKey TUI key)}
14009@item n
14010next
14011
14012@kindex q @r{(SingleKey TUI key)}
14013@item q
14014exit the @emph{SingleKey} mode.
14015
14016@kindex r @r{(SingleKey TUI key)}
14017@item r
14018run
14019
14020@kindex s @r{(SingleKey TUI key)}
14021@item s
14022step
14023
14024@kindex u @r{(SingleKey TUI key)}
14025@item u
14026up
14027
14028@kindex v @r{(SingleKey TUI key)}
14029@item v
14030info locals
14031
14032@kindex w @r{(SingleKey TUI key)}
14033@item w
14034where
14035
14036@end table
14037
14038Other keys temporarily switch to the @value{GDBN} command prompt.
14039The key that was pressed is inserted in the editing buffer so that
14040it is possible to type most @value{GDBN} commands without interaction
14041with the TUI @emph{SingleKey} mode. Once the command is entered the TUI
14042@emph{SingleKey} mode is restored. The only way to permanently leave
14043this mode is by hitting @key{q} or @samp{@key{C-x} @key{s}}.
14044
14045
8e04817f
AC
14046@node TUI Commands
14047@section TUI specific commands
14048@cindex TUI commands
14049
14050The TUI has specific commands to control the text windows.
14051These commands are always available, that is they do not depend on
14052the current terminal mode in which @value{GDBN} runs. When @value{GDBN}
14053is in the standard mode, using these commands will automatically switch
14054in the TUI mode.
c906108c
SS
14055
14056@table @code
3d757584
SC
14057@item info win
14058@kindex info win
14059List and give the size of all displayed windows.
14060
8e04817f
AC
14061@item layout next
14062@kindex layout next
14063Display the next layout.
2df3850c 14064
8e04817f
AC
14065@item layout prev
14066@kindex layout prev
14067Display the previous layout.
c906108c 14068
8e04817f
AC
14069@item layout src
14070@kindex layout src
14071Display the source window only.
c906108c 14072
8e04817f
AC
14073@item layout asm
14074@kindex layout asm
14075Display the assembly window only.
c906108c 14076
8e04817f
AC
14077@item layout split
14078@kindex layout split
14079Display the source and assembly window.
c906108c 14080
8e04817f
AC
14081@item layout regs
14082@kindex layout regs
14083Display the register window together with the source or assembly window.
14084
14085@item focus next | prev | src | asm | regs | split
14086@kindex focus
14087Set the focus to the named window.
14088This command allows to change the active window so that scrolling keys
14089can be affected to another window.
c906108c 14090
8e04817f
AC
14091@item refresh
14092@kindex refresh
14093Refresh the screen. This is similar to using @key{C-L} key.
c906108c 14094
8e04817f
AC
14095@item update
14096@kindex update
14097Update the source window and the current execution point.
c906108c 14098
8e04817f
AC
14099@item winheight @var{name} +@var{count}
14100@itemx winheight @var{name} -@var{count}
14101@kindex winheight
14102Change the height of the window @var{name} by @var{count}
14103lines. Positive counts increase the height, while negative counts
14104decrease it.
2df3850c 14105
c906108c
SS
14106@end table
14107
8e04817f
AC
14108@node TUI Configuration
14109@section TUI configuration variables
14110@cindex TUI configuration variables
c906108c 14111
8e04817f
AC
14112The TUI has several configuration variables that control the
14113appearance of windows on the terminal.
c906108c 14114
8e04817f
AC
14115@table @code
14116@item set tui border-kind @var{kind}
14117@kindex set tui border-kind
14118Select the border appearance for the source, assembly and register windows.
14119The possible values are the following:
14120@table @code
14121@item space
14122Use a space character to draw the border.
c906108c 14123
8e04817f
AC
14124@item ascii
14125Use ascii characters + - and | to draw the border.
c906108c 14126
8e04817f
AC
14127@item acs
14128Use the Alternate Character Set to draw the border. The border is
14129drawn using character line graphics if the terminal supports them.
c78b4128 14130
8e04817f 14131@end table
c78b4128 14132
8e04817f
AC
14133@item set tui active-border-mode @var{mode}
14134@kindex set tui active-border-mode
14135Select the attributes to display the border of the active window.
14136The possible values are @code{normal}, @code{standout}, @code{reverse},
14137@code{half}, @code{half-standout}, @code{bold} and @code{bold-standout}.
c78b4128 14138
8e04817f
AC
14139@item set tui border-mode @var{mode}
14140@kindex set tui border-mode
14141Select the attributes to display the border of other windows.
14142The @var{mode} can be one of the following:
14143@table @code
14144@item normal
14145Use normal attributes to display the border.
c906108c 14146
8e04817f
AC
14147@item standout
14148Use standout mode.
c906108c 14149
8e04817f
AC
14150@item reverse
14151Use reverse video mode.
c906108c 14152
8e04817f
AC
14153@item half
14154Use half bright mode.
c906108c 14155
8e04817f
AC
14156@item half-standout
14157Use half bright and standout mode.
c906108c 14158
8e04817f
AC
14159@item bold
14160Use extra bright or bold mode.
c78b4128 14161
8e04817f
AC
14162@item bold-standout
14163Use extra bright or bold and standout mode.
c78b4128 14164
8e04817f 14165@end table
c78b4128 14166
8e04817f 14167@end table
c78b4128 14168
8e04817f
AC
14169@node Emacs
14170@chapter Using @value{GDBN} under @sc{gnu} Emacs
c78b4128 14171
8e04817f
AC
14172@cindex Emacs
14173@cindex @sc{gnu} Emacs
14174A special interface allows you to use @sc{gnu} Emacs to view (and
14175edit) the source files for the program you are debugging with
14176@value{GDBN}.
c906108c 14177
8e04817f
AC
14178To use this interface, use the command @kbd{M-x gdb} in Emacs. Give the
14179executable file you want to debug as an argument. This command starts
14180@value{GDBN} as a subprocess of Emacs, with input and output through a newly
14181created Emacs buffer.
14182@c (Do not use the @code{-tui} option to run @value{GDBN} from Emacs.)
c906108c 14183
8e04817f
AC
14184Using @value{GDBN} under Emacs is just like using @value{GDBN} normally except for two
14185things:
c906108c 14186
8e04817f
AC
14187@itemize @bullet
14188@item
14189All ``terminal'' input and output goes through the Emacs buffer.
14190@end itemize
c906108c 14191
8e04817f
AC
14192This applies both to @value{GDBN} commands and their output, and to the input
14193and output done by the program you are debugging.
bf0184be 14194
8e04817f
AC
14195This is useful because it means that you can copy the text of previous
14196commands and input them again; you can even use parts of the output
14197in this way.
bf0184be 14198
8e04817f
AC
14199All the facilities of Emacs' Shell mode are available for interacting
14200with your program. In particular, you can send signals the usual
14201way---for example, @kbd{C-c C-c} for an interrupt, @kbd{C-c C-z} for a
14202stop.
bf0184be 14203
8e04817f 14204@itemize @bullet
bf0184be 14205@item
8e04817f
AC
14206@value{GDBN} displays source code through Emacs.
14207@end itemize
bf0184be 14208
8e04817f
AC
14209Each time @value{GDBN} displays a stack frame, Emacs automatically finds the
14210source file for that frame and puts an arrow (@samp{=>}) at the
14211left margin of the current line. Emacs uses a separate buffer for
14212source display, and splits the screen to show both your @value{GDBN} session
14213and the source.
bf0184be 14214
8e04817f
AC
14215Explicit @value{GDBN} @code{list} or search commands still produce output as
14216usual, but you probably have no reason to use them from Emacs.
c906108c 14217
64fabec2
AC
14218If you specify an absolute file name when prompted for the @kbd{M-x
14219gdb} argument, then Emacs sets your current working directory to where
14220your program resides. If you only specify the file name, then Emacs
14221sets your current working directory to to the directory associated
14222with the previous buffer. In this case, @value{GDBN} may find your
14223program by searching your environment's @code{PATH} variable, but on
14224some operating systems it might not find the source. So, although the
14225@value{GDBN} input and output session proceeds normally, the auxiliary
14226buffer does not display the current source and line of execution.
14227
14228The initial working directory of @value{GDBN} is printed on the top
14229line of the @value{GDBN} I/O buffer and this serves as a default for
14230the commands that specify files for @value{GDBN} to operate
14231on. @xref{Files, ,Commands to specify files}.
14232
14233By default, @kbd{M-x gdb} calls the program called @file{gdb}. If you
14234need to call @value{GDBN} by a different name (for example, if you
14235keep several configurations around, with different names) you can
14236customize the Emacs variable @code{gud-gdb-command-name} to run the
14237one you want.
8e04817f
AC
14238
14239In the @value{GDBN} I/O buffer, you can use these special Emacs commands in
14240addition to the standard Shell mode commands:
c906108c 14241
8e04817f
AC
14242@table @kbd
14243@item C-h m
14244Describe the features of Emacs' @value{GDBN} Mode.
c906108c 14245
64fabec2 14246@item C-c C-s
8e04817f
AC
14247Execute to another source line, like the @value{GDBN} @code{step} command; also
14248update the display window to show the current file and location.
c906108c 14249
64fabec2 14250@item C-c C-n
8e04817f
AC
14251Execute to next source line in this function, skipping all function
14252calls, like the @value{GDBN} @code{next} command. Then update the display window
14253to show the current file and location.
c906108c 14254
64fabec2 14255@item C-c C-i
8e04817f
AC
14256Execute one instruction, like the @value{GDBN} @code{stepi} command; update
14257display window accordingly.
c906108c 14258
8e04817f
AC
14259@item C-c C-f
14260Execute until exit from the selected stack frame, like the @value{GDBN}
14261@code{finish} command.
c906108c 14262
64fabec2 14263@item C-c C-r
8e04817f
AC
14264Continue execution of your program, like the @value{GDBN} @code{continue}
14265command.
b433d00b 14266
64fabec2 14267@item C-c <
8e04817f
AC
14268Go up the number of frames indicated by the numeric argument
14269(@pxref{Arguments, , Numeric Arguments, Emacs, The @sc{gnu} Emacs Manual}),
14270like the @value{GDBN} @code{up} command.
b433d00b 14271
64fabec2 14272@item C-c >
8e04817f
AC
14273Go down the number of frames indicated by the numeric argument, like the
14274@value{GDBN} @code{down} command.
8e04817f 14275@end table
c906108c 14276
64fabec2 14277In any source file, the Emacs command @kbd{C-x SPC} (@code{gud-break})
8e04817f 14278tells @value{GDBN} to set a breakpoint on the source line point is on.
c906108c 14279
64fabec2
AC
14280If you type @kbd{M-x speedbar}, then Emacs displays a separate frame which
14281shows a backtrace when the @value{GDBN} I/O buffer is current. Move
14282point to any frame in the stack and type @key{RET} to make it become the
14283current frame and display the associated source in the source buffer.
14284Alternatively, click @kbd{Mouse-2} to make the selected frame become the
14285current one.
14286
8e04817f
AC
14287If you accidentally delete the source-display buffer, an easy way to get
14288it back is to type the command @code{f} in the @value{GDBN} buffer, to
14289request a frame display; when you run under Emacs, this recreates
14290the source buffer if necessary to show you the context of the current
14291frame.
c906108c 14292
8e04817f
AC
14293The source files displayed in Emacs are in ordinary Emacs buffers
14294which are visiting the source files in the usual way. You can edit
14295the files with these buffers if you wish; but keep in mind that @value{GDBN}
14296communicates with Emacs in terms of line numbers. If you add or
14297delete lines from the text, the line numbers that @value{GDBN} knows cease
14298to correspond properly with the code.
64fabec2
AC
14299
14300The description given here is for GNU Emacs version 21.3 and a more
14301detailed description of its interaction with @value{GDBN} is given in
14302the Emacs manual (@pxref{Debuggers,,, Emacs, The @sc{gnu} Emacs Manual}).
c906108c 14303
8e04817f
AC
14304@c The following dropped because Epoch is nonstandard. Reactivate
14305@c if/when v19 does something similar. ---doc@cygnus.com 19dec1990
14306@ignore
14307@kindex Emacs Epoch environment
14308@kindex Epoch
14309@kindex inspect
c906108c 14310
8e04817f
AC
14311Version 18 of @sc{gnu} Emacs has a built-in window system
14312called the @code{epoch}
14313environment. Users of this environment can use a new command,
14314@code{inspect} which performs identically to @code{print} except that
14315each value is printed in its own window.
14316@end ignore
c906108c 14317
922fbb7b
AC
14318
14319@node GDB/MI
14320@chapter The @sc{gdb/mi} Interface
14321
14322@unnumberedsec Function and Purpose
14323
14324@cindex @sc{gdb/mi}, its purpose
14325@sc{gdb/mi} is a line based machine oriented text interface to @value{GDBN}. It is
14326specifically intended to support the development of systems which use
14327the debugger as just one small component of a larger system.
14328
14329This chapter is a specification of the @sc{gdb/mi} interface. It is written
14330in the form of a reference manual.
14331
14332Note that @sc{gdb/mi} is still under construction, so some of the
14333features described below are incomplete and subject to change.
14334
14335@unnumberedsec Notation and Terminology
14336
14337@cindex notational conventions, for @sc{gdb/mi}
14338This chapter uses the following notation:
14339
14340@itemize @bullet
14341@item
14342@code{|} separates two alternatives.
14343
14344@item
14345@code{[ @var{something} ]} indicates that @var{something} is optional:
14346it may or may not be given.
14347
14348@item
14349@code{( @var{group} )*} means that @var{group} inside the parentheses
14350may repeat zero or more times.
14351
14352@item
14353@code{( @var{group} )+} means that @var{group} inside the parentheses
14354may repeat one or more times.
14355
14356@item
14357@code{"@var{string}"} means a literal @var{string}.
14358@end itemize
14359
14360@ignore
14361@heading Dependencies
14362@end ignore
14363
14364@heading Acknowledgments
14365
14366In alphabetic order: Andrew Cagney, Fernando Nasser, Stan Shebs and
14367Elena Zannoni.
14368
14369@menu
14370* GDB/MI Command Syntax::
14371* GDB/MI Compatibility with CLI::
14372* GDB/MI Output Records::
14373* GDB/MI Command Description Format::
14374* GDB/MI Breakpoint Table Commands::
14375* GDB/MI Data Manipulation::
14376* GDB/MI Program Control::
14377* GDB/MI Miscellaneous Commands::
14378@ignore
14379* GDB/MI Kod Commands::
14380* GDB/MI Memory Overlay Commands::
14381* GDB/MI Signal Handling Commands::
14382@end ignore
14383* GDB/MI Stack Manipulation::
14384* GDB/MI Symbol Query::
14385* GDB/MI Target Manipulation::
14386* GDB/MI Thread Commands::
14387* GDB/MI Tracepoint Commands::
14388* GDB/MI Variable Objects::
14389@end menu
14390
14391@c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
14392@node GDB/MI Command Syntax
14393@section @sc{gdb/mi} Command Syntax
14394
14395@menu
14396* GDB/MI Input Syntax::
14397* GDB/MI Output Syntax::
14398* GDB/MI Simple Examples::
14399@end menu
14400
14401@node GDB/MI Input Syntax
14402@subsection @sc{gdb/mi} Input Syntax
14403
14404@cindex input syntax for @sc{gdb/mi}
14405@cindex @sc{gdb/mi}, input syntax
14406@table @code
14407@item @var{command} @expansion{}
14408@code{@var{cli-command} | @var{mi-command}}
14409
14410@item @var{cli-command} @expansion{}
14411@code{[ @var{token} ] @var{cli-command} @var{nl}}, where
14412@var{cli-command} is any existing @value{GDBN} CLI command.
14413
14414@item @var{mi-command} @expansion{}
14415@code{[ @var{token} ] "-" @var{operation} ( " " @var{option} )*
14416@code{[} " --" @code{]} ( " " @var{parameter} )* @var{nl}}
14417
14418@item @var{token} @expansion{}
14419"any sequence of digits"
14420
14421@item @var{option} @expansion{}
14422@code{"-" @var{parameter} [ " " @var{parameter} ]}
14423
14424@item @var{parameter} @expansion{}
14425@code{@var{non-blank-sequence} | @var{c-string}}
14426
14427@item @var{operation} @expansion{}
14428@emph{any of the operations described in this chapter}
14429
14430@item @var{non-blank-sequence} @expansion{}
14431@emph{anything, provided it doesn't contain special characters such as
14432"-", @var{nl}, """ and of course " "}
14433
14434@item @var{c-string} @expansion{}
14435@code{""" @var{seven-bit-iso-c-string-content} """}
14436
14437@item @var{nl} @expansion{}
14438@code{CR | CR-LF}
14439@end table
14440
14441@noindent
14442Notes:
14443
14444@itemize @bullet
14445@item
14446The CLI commands are still handled by the @sc{mi} interpreter; their
14447output is described below.
14448
14449@item
14450The @code{@var{token}}, when present, is passed back when the command
14451finishes.
14452
14453@item
14454Some @sc{mi} commands accept optional arguments as part of the parameter
14455list. Each option is identified by a leading @samp{-} (dash) and may be
14456followed by an optional argument parameter. Options occur first in the
14457parameter list and can be delimited from normal parameters using
14458@samp{--} (this is useful when some parameters begin with a dash).
14459@end itemize
14460
14461Pragmatics:
14462
14463@itemize @bullet
14464@item
14465We want easy access to the existing CLI syntax (for debugging).
14466
14467@item
14468We want it to be easy to spot a @sc{mi} operation.
14469@end itemize
14470
14471@node GDB/MI Output Syntax
14472@subsection @sc{gdb/mi} Output Syntax
14473
14474@cindex output syntax of @sc{gdb/mi}
14475@cindex @sc{gdb/mi}, output syntax
14476The output from @sc{gdb/mi} consists of zero or more out-of-band records
14477followed, optionally, by a single result record. This result record
14478is for the most recent command. The sequence of output records is
14479terminated by @samp{(@value{GDBP})}.
14480
14481If an input command was prefixed with a @code{@var{token}} then the
14482corresponding output for that command will also be prefixed by that same
14483@var{token}.
14484
14485@table @code
14486@item @var{output} @expansion{}
14487@code{( @var{out-of-band-record} )* [ @var{result-record} ] "(gdb)" @var{nl}}
14488
14489@item @var{result-record} @expansion{}
14490@code{ [ @var{token} ] "^" @var{result-class} ( "," @var{result} )* @var{nl}}
14491
14492@item @var{out-of-band-record} @expansion{}
14493@code{@var{async-record} | @var{stream-record}}
14494
14495@item @var{async-record} @expansion{}
14496@code{@var{exec-async-output} | @var{status-async-output} | @var{notify-async-output}}
14497
14498@item @var{exec-async-output} @expansion{}
14499@code{[ @var{token} ] "*" @var{async-output}}
14500
14501@item @var{status-async-output} @expansion{}
14502@code{[ @var{token} ] "+" @var{async-output}}
14503
14504@item @var{notify-async-output} @expansion{}
14505@code{[ @var{token} ] "=" @var{async-output}}
14506
14507@item @var{async-output} @expansion{}
14508@code{@var{async-class} ( "," @var{result} )* @var{nl}}
14509
14510@item @var{result-class} @expansion{}
14511@code{"done" | "running" | "connected" | "error" | "exit"}
14512
14513@item @var{async-class} @expansion{}
14514@code{"stopped" | @var{others}} (where @var{others} will be added
14515depending on the needs---this is still in development).
14516
14517@item @var{result} @expansion{}
14518@code{ @var{variable} "=" @var{value}}
14519
14520@item @var{variable} @expansion{}
14521@code{ @var{string} }
14522
14523@item @var{value} @expansion{}
14524@code{ @var{const} | @var{tuple} | @var{list} }
14525
14526@item @var{const} @expansion{}
14527@code{@var{c-string}}
14528
14529@item @var{tuple} @expansion{}
14530@code{ "@{@}" | "@{" @var{result} ( "," @var{result} )* "@}" }
14531
14532@item @var{list} @expansion{}
14533@code{ "[]" | "[" @var{value} ( "," @var{value} )* "]" | "["
14534@var{result} ( "," @var{result} )* "]" }
14535
14536@item @var{stream-record} @expansion{}
14537@code{@var{console-stream-output} | @var{target-stream-output} | @var{log-stream-output}}
14538
14539@item @var{console-stream-output} @expansion{}
14540@code{"~" @var{c-string}}
14541
14542@item @var{target-stream-output} @expansion{}
14543@code{"@@" @var{c-string}}
14544
14545@item @var{log-stream-output} @expansion{}
14546@code{"&" @var{c-string}}
14547
14548@item @var{nl} @expansion{}
14549@code{CR | CR-LF}
14550
14551@item @var{token} @expansion{}
14552@emph{any sequence of digits}.
14553@end table
14554
14555@noindent
14556Notes:
14557
14558@itemize @bullet
14559@item
14560All output sequences end in a single line containing a period.
14561
14562@item
14563The @code{@var{token}} is from the corresponding request. If an execution
14564command is interrupted by the @samp{-exec-interrupt} command, the
14565@var{token} associated with the @samp{*stopped} message is the one of the
14566original execution command, not the one of the interrupt command.
14567
14568@item
14569@cindex status output in @sc{gdb/mi}
14570@var{status-async-output} contains on-going status information about the
14571progress of a slow operation. It can be discarded. All status output is
14572prefixed by @samp{+}.
14573
14574@item
14575@cindex async output in @sc{gdb/mi}
14576@var{exec-async-output} contains asynchronous state change on the target
14577(stopped, started, disappeared). All async output is prefixed by
14578@samp{*}.
14579
14580@item
14581@cindex notify output in @sc{gdb/mi}
14582@var{notify-async-output} contains supplementary information that the
14583client should handle (e.g., a new breakpoint information). All notify
14584output is prefixed by @samp{=}.
14585
14586@item
14587@cindex console output in @sc{gdb/mi}
14588@var{console-stream-output} is output that should be displayed as is in the
14589console. It is the textual response to a CLI command. All the console
14590output is prefixed by @samp{~}.
14591
14592@item
14593@cindex target output in @sc{gdb/mi}
14594@var{target-stream-output} is the output produced by the target program.
14595All the target output is prefixed by @samp{@@}.
14596
14597@item
14598@cindex log output in @sc{gdb/mi}
14599@var{log-stream-output} is output text coming from @value{GDBN}'s internals, for
14600instance messages that should be displayed as part of an error log. All
14601the log output is prefixed by @samp{&}.
14602
14603@item
14604@cindex list output in @sc{gdb/mi}
14605New @sc{gdb/mi} commands should only output @var{lists} containing
14606@var{values}.
14607
14608
14609@end itemize
14610
14611@xref{GDB/MI Stream Records, , @sc{gdb/mi} Stream Records}, for more
14612details about the various output records.
14613
14614@node GDB/MI Simple Examples
14615@subsection Simple Examples of @sc{gdb/mi} Interaction
14616@cindex @sc{gdb/mi}, simple examples
14617
14618This subsection presents several simple examples of interaction using
14619the @sc{gdb/mi} interface. In these examples, @samp{->} means that the
14620following line is passed to @sc{gdb/mi} as input, while @samp{<-} means
14621the output received from @sc{gdb/mi}.
14622
14623@subsubheading Target Stop
14624@c Ummm... There is no "-stop" command. This assumes async, no?
14625Here's an example of stopping the inferior process:
14626
14627@smallexample
14628-> -stop
14629<- (@value{GDBP})
14630@end smallexample
14631
14632@noindent
14633and later:
14634
14635@smallexample
14636<- *stop,reason="stop",address="0x123",source="a.c:123"
14637<- (@value{GDBP})
14638@end smallexample
14639
14640@subsubheading Simple CLI Command
14641
14642Here's an example of a simple CLI command being passed through
14643@sc{gdb/mi} and on to the CLI.
14644
14645@smallexample
14646-> print 1+2
14647<- &"print 1+2\n"
14648<- ~"$1 = 3\n"
14649<- ^done
14650<- (@value{GDBP})
14651@end smallexample
14652
14653@subsubheading Command With Side Effects
14654
14655@smallexample
14656-> -symbol-file xyz.exe
14657<- *breakpoint,nr="3",address="0x123",source="a.c:123"
14658<- (@value{GDBP})
14659@end smallexample
14660
14661@subsubheading A Bad Command
14662
14663Here's what happens if you pass a non-existent command:
14664
14665@smallexample
14666-> -rubbish
14667<- ^error,msg="Undefined MI command: rubbish"
14668<- (@value{GDBP})
14669@end smallexample
14670
14671@c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
14672@node GDB/MI Compatibility with CLI
14673@section @sc{gdb/mi} Compatibility with CLI
14674
14675@cindex compatibility, @sc{gdb/mi} and CLI
14676@cindex @sc{gdb/mi}, compatibility with CLI
14677To help users familiar with @value{GDBN}'s existing CLI interface, @sc{gdb/mi}
14678accepts existing CLI commands. As specified by the syntax, such
14679commands can be directly entered into the @sc{gdb/mi} interface and @value{GDBN} will
14680respond.
14681
14682This mechanism is provided as an aid to developers of @sc{gdb/mi}
14683clients and not as a reliable interface into the CLI. Since the command
14684is being interpreteted in an environment that assumes @sc{gdb/mi}
14685behaviour, the exact output of such commands is likely to end up being
14686an un-supported hybrid of @sc{gdb/mi} and CLI output.
14687
14688@c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
14689@node GDB/MI Output Records
14690@section @sc{gdb/mi} Output Records
14691
14692@menu
14693* GDB/MI Result Records::
14694* GDB/MI Stream Records::
14695* GDB/MI Out-of-band Records::
14696@end menu
14697
14698@node GDB/MI Result Records
14699@subsection @sc{gdb/mi} Result Records
14700
14701@cindex result records in @sc{gdb/mi}
14702@cindex @sc{gdb/mi}, result records
14703In addition to a number of out-of-band notifications, the response to a
14704@sc{gdb/mi} command includes one of the following result indications:
14705
14706@table @code
14707@findex ^done
14708@item "^done" [ "," @var{results} ]
14709The synchronous operation was successful, @code{@var{results}} are the return
14710values.
14711
14712@item "^running"
14713@findex ^running
14714@c Is this one correct? Should it be an out-of-band notification?
14715The asynchronous operation was successfully started. The target is
14716running.
14717
14718@item "^error" "," @var{c-string}
14719@findex ^error
14720The operation failed. The @code{@var{c-string}} contains the corresponding
14721error message.
14722@end table
14723
14724@node GDB/MI Stream Records
14725@subsection @sc{gdb/mi} Stream Records
14726
14727@cindex @sc{gdb/mi}, stream records
14728@cindex stream records in @sc{gdb/mi}
14729@value{GDBN} internally maintains a number of output streams: the console, the
14730target, and the log. The output intended for each of these streams is
14731funneled through the @sc{gdb/mi} interface using @dfn{stream records}.
14732
14733Each stream record begins with a unique @dfn{prefix character} which
14734identifies its stream (@pxref{GDB/MI Output Syntax, , @sc{gdb/mi} Output
14735Syntax}). In addition to the prefix, each stream record contains a
14736@code{@var{string-output}}. This is either raw text (with an implicit new
14737line) or a quoted C string (which does not contain an implicit newline).
14738
14739@table @code
14740@item "~" @var{string-output}
14741The console output stream contains text that should be displayed in the
14742CLI console window. It contains the textual responses to CLI commands.
14743
14744@item "@@" @var{string-output}
14745The target output stream contains any textual output from the running
14746target.
14747
14748@item "&" @var{string-output}
14749The log stream contains debugging messages being produced by @value{GDBN}'s
14750internals.
14751@end table
14752
14753@node GDB/MI Out-of-band Records
14754@subsection @sc{gdb/mi} Out-of-band Records
14755
14756@cindex out-of-band records in @sc{gdb/mi}
14757@cindex @sc{gdb/mi}, out-of-band records
14758@dfn{Out-of-band} records are used to notify the @sc{gdb/mi} client of
14759additional changes that have occurred. Those changes can either be a
14760consequence of @sc{gdb/mi} (e.g., a breakpoint modified) or a result of
14761target activity (e.g., target stopped).
14762
14763The following is a preliminary list of possible out-of-band records.
14764
14765@table @code
14766@item "*" "stop"
14767@end table
14768
14769
14770@c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
14771@node GDB/MI Command Description Format
14772@section @sc{gdb/mi} Command Description Format
14773
14774The remaining sections describe blocks of commands. Each block of
14775commands is laid out in a fashion similar to this section.
14776
14777Note the the line breaks shown in the examples are here only for
14778readability. They don't appear in the real output.
14779Also note that the commands with a non-available example (N.A.@:) are
14780not yet implemented.
14781
14782@subheading Motivation
14783
14784The motivation for this collection of commands.
14785
14786@subheading Introduction
14787
14788A brief introduction to this collection of commands as a whole.
14789
14790@subheading Commands
14791
14792For each command in the block, the following is described:
14793
14794@subsubheading Synopsis
14795
14796@smallexample
14797 -command @var{args}@dots{}
14798@end smallexample
14799
14800@subsubheading @value{GDBN} Command
14801
14802The corresponding @value{GDBN} CLI command.
14803
14804@subsubheading Result
14805
14806@subsubheading Out-of-band
14807
14808@subsubheading Notes
14809
14810@subsubheading Example
14811
14812
14813@c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
14814@node GDB/MI Breakpoint Table Commands
14815@section @sc{gdb/mi} Breakpoint table commands
14816
14817@cindex breakpoint commands for @sc{gdb/mi}
14818@cindex @sc{gdb/mi}, breakpoint commands
14819This section documents @sc{gdb/mi} commands for manipulating
14820breakpoints.
14821
14822@subheading The @code{-break-after} Command
14823@findex -break-after
14824
14825@subsubheading Synopsis
14826
14827@smallexample
14828 -break-after @var{number} @var{count}
14829@end smallexample
14830
14831The breakpoint number @var{number} is not in effect until it has been
14832hit @var{count} times. To see how this is reflected in the output of
14833the @samp{-break-list} command, see the description of the
14834@samp{-break-list} command below.
14835
14836@subsubheading @value{GDBN} Command
14837
14838The corresponding @value{GDBN} command is @samp{ignore}.
14839
14840@subsubheading Example
14841
14842@smallexample
14843(@value{GDBP})
14844-break-insert main
14845^done,bkpt=@{number="1",addr="0x000100d0",file="hello.c",line="5"@}
14846(@value{GDBP})
14847-break-after 1 3
14848~
14849^done
14850(@value{GDBP})
14851-break-list
14852^done,BreakpointTable=@{nr_rows="1",nr_cols="6",
14853hdr=[@{width="3",alignment="-1",col_name="number",colhdr="Num"@},
14854@{width="14",alignment="-1",col_name="type",colhdr="Type"@},
14855@{width="4",alignment="-1",col_name="disp",colhdr="Disp"@},
14856@{width="3",alignment="-1",col_name="enabled",colhdr="Enb"@},
14857@{width="10",alignment="-1",col_name="addr",colhdr="Address"@},
14858@{width="40",alignment="2",col_name="what",colhdr="What"@}],
14859body=[bkpt=@{number="1",type="breakpoint",disp="keep",enabled="y",
14860addr="0x000100d0",func="main",file="hello.c",line="5",times="0",
14861ignore="3"@}]@}
14862(@value{GDBP})
14863@end smallexample
14864
14865@ignore
14866@subheading The @code{-break-catch} Command
14867@findex -break-catch
14868
14869@subheading The @code{-break-commands} Command
14870@findex -break-commands
14871@end ignore
14872
14873
14874@subheading The @code{-break-condition} Command
14875@findex -break-condition
14876
14877@subsubheading Synopsis
14878
14879@smallexample
14880 -break-condition @var{number} @var{expr}
14881@end smallexample
14882
14883Breakpoint @var{number} will stop the program only if the condition in
14884@var{expr} is true. The condition becomes part of the
14885@samp{-break-list} output (see the description of the @samp{-break-list}
14886command below).
14887
14888@subsubheading @value{GDBN} Command
14889
14890The corresponding @value{GDBN} command is @samp{condition}.
14891
14892@subsubheading Example
14893
14894@smallexample
14895(@value{GDBP})
14896-break-condition 1 1
14897^done
14898(@value{GDBP})
14899-break-list
14900^done,BreakpointTable=@{nr_rows="1",nr_cols="6",
14901hdr=[@{width="3",alignment="-1",col_name="number",colhdr="Num"@},
14902@{width="14",alignment="-1",col_name="type",colhdr="Type"@},
14903@{width="4",alignment="-1",col_name="disp",colhdr="Disp"@},
14904@{width="3",alignment="-1",col_name="enabled",colhdr="Enb"@},
14905@{width="10",alignment="-1",col_name="addr",colhdr="Address"@},
14906@{width="40",alignment="2",col_name="what",colhdr="What"@}],
14907body=[bkpt=@{number="1",type="breakpoint",disp="keep",enabled="y",
14908addr="0x000100d0",func="main",file="hello.c",line="5",cond="1",
14909times="0",ignore="3"@}]@}
14910(@value{GDBP})
14911@end smallexample
14912
14913@subheading The @code{-break-delete} Command
14914@findex -break-delete
14915
14916@subsubheading Synopsis
14917
14918@smallexample
14919 -break-delete ( @var{breakpoint} )+
14920@end smallexample
14921
14922Delete the breakpoint(s) whose number(s) are specified in the argument
14923list. This is obviously reflected in the breakpoint list.
14924
14925@subsubheading @value{GDBN} command
14926
14927The corresponding @value{GDBN} command is @samp{delete}.
14928
14929@subsubheading Example
14930
14931@smallexample
14932(@value{GDBP})
14933-break-delete 1
14934^done
14935(@value{GDBP})
14936-break-list
14937^done,BreakpointTable=@{nr_rows="0",nr_cols="6",
14938hdr=[@{width="3",alignment="-1",col_name="number",colhdr="Num"@},
14939@{width="14",alignment="-1",col_name="type",colhdr="Type"@},
14940@{width="4",alignment="-1",col_name="disp",colhdr="Disp"@},
14941@{width="3",alignment="-1",col_name="enabled",colhdr="Enb"@},
14942@{width="10",alignment="-1",col_name="addr",colhdr="Address"@},
14943@{width="40",alignment="2",col_name="what",colhdr="What"@}],
14944body=[]@}
14945(@value{GDBP})
14946@end smallexample
14947
14948@subheading The @code{-break-disable} Command
14949@findex -break-disable
14950
14951@subsubheading Synopsis
14952
14953@smallexample
14954 -break-disable ( @var{breakpoint} )+
14955@end smallexample
14956
14957Disable the named @var{breakpoint}(s). The field @samp{enabled} in the
14958break list is now set to @samp{n} for the named @var{breakpoint}(s).
14959
14960@subsubheading @value{GDBN} Command
14961
14962The corresponding @value{GDBN} command is @samp{disable}.
14963
14964@subsubheading Example
14965
14966@smallexample
14967(@value{GDBP})
14968-break-disable 2
14969^done
14970(@value{GDBP})
14971-break-list
14972^done,BreakpointTable=@{nr_rows="1",nr_cols="6",
14973hdr=[@{width="3",alignment="-1",col_name="number",colhdr="Num"@},
14974@{width="14",alignment="-1",col_name="type",colhdr="Type"@},
14975@{width="4",alignment="-1",col_name="disp",colhdr="Disp"@},
14976@{width="3",alignment="-1",col_name="enabled",colhdr="Enb"@},
14977@{width="10",alignment="-1",col_name="addr",colhdr="Address"@},
14978@{width="40",alignment="2",col_name="what",colhdr="What"@}],
14979body=[bkpt=@{number="2",type="breakpoint",disp="keep",enabled="n",
14980addr="0x000100d0",func="main",file="hello.c",line="5",times="0"@}]@}
14981(@value{GDBP})
14982@end smallexample
14983
14984@subheading The @code{-break-enable} Command
14985@findex -break-enable
14986
14987@subsubheading Synopsis
14988
14989@smallexample
14990 -break-enable ( @var{breakpoint} )+
14991@end smallexample
14992
14993Enable (previously disabled) @var{breakpoint}(s).
14994
14995@subsubheading @value{GDBN} Command
14996
14997The corresponding @value{GDBN} command is @samp{enable}.
14998
14999@subsubheading Example
15000
15001@smallexample
15002(@value{GDBP})
15003-break-enable 2
15004^done
15005(@value{GDBP})
15006-break-list
15007^done,BreakpointTable=@{nr_rows="1",nr_cols="6",
15008hdr=[@{width="3",alignment="-1",col_name="number",colhdr="Num"@},
15009@{width="14",alignment="-1",col_name="type",colhdr="Type"@},
15010@{width="4",alignment="-1",col_name="disp",colhdr="Disp"@},
15011@{width="3",alignment="-1",col_name="enabled",colhdr="Enb"@},
15012@{width="10",alignment="-1",col_name="addr",colhdr="Address"@},
15013@{width="40",alignment="2",col_name="what",colhdr="What"@}],
15014body=[bkpt=@{number="2",type="breakpoint",disp="keep",enabled="y",
15015addr="0x000100d0",func="main",file="hello.c",line="5",times="0"@}]@}
15016(@value{GDBP})
15017@end smallexample
15018
15019@subheading The @code{-break-info} Command
15020@findex -break-info
15021
15022@subsubheading Synopsis
15023
15024@smallexample
15025 -break-info @var{breakpoint}
15026@end smallexample
15027
15028@c REDUNDANT???
15029Get information about a single breakpoint.
15030
15031@subsubheading @value{GDBN} command
15032
15033The corresponding @value{GDBN} command is @samp{info break @var{breakpoint}}.
15034
15035@subsubheading Example
15036N.A.
15037
15038@subheading The @code{-break-insert} Command
15039@findex -break-insert
15040
15041@subsubheading Synopsis
15042
15043@smallexample
15044 -break-insert [ -t ] [ -h ] [ -r ]
15045 [ -c @var{condition} ] [ -i @var{ignore-count} ]
15046 [ -p @var{thread} ] [ @var{line} | @var{addr} ]
15047@end smallexample
15048
15049@noindent
15050If specified, @var{line}, can be one of:
15051
15052@itemize @bullet
15053@item function
15054@c @item +offset
15055@c @item -offset
15056@c @item linenum
15057@item filename:linenum
15058@item filename:function
15059@item *address
15060@end itemize
15061
15062The possible optional parameters of this command are:
15063
15064@table @samp
15065@item -t
15066Insert a tempoary breakpoint.
15067@item -h
15068Insert a hardware breakpoint.
15069@item -c @var{condition}
15070Make the breakpoint conditional on @var{condition}.
15071@item -i @var{ignore-count}
15072Initialize the @var{ignore-count}.
15073@item -r
15074Insert a regular breakpoint in all the functions whose names match the
15075given regular expression. Other flags are not applicable to regular
15076expresson.
15077@end table
15078
15079@subsubheading Result
15080
15081The result is in the form:
15082
15083@smallexample
15084 ^done,bkptno="@var{number}",func="@var{funcname}",
15085 file="@var{filename}",line="@var{lineno}"
15086@end smallexample
15087
15088@noindent
15089where @var{number} is the @value{GDBN} number for this breakpoint, @var{funcname}
15090is the name of the function where the breakpoint was inserted,
15091@var{filename} is the name of the source file which contains this
15092function, and @var{lineno} is the source line number within that file.
15093
15094Note: this format is open to change.
15095@c An out-of-band breakpoint instead of part of the result?
15096
15097@subsubheading @value{GDBN} Command
15098
15099The corresponding @value{GDBN} commands are @samp{break}, @samp{tbreak},
15100@samp{hbreak}, @samp{thbreak}, and @samp{rbreak}.
15101
15102@subsubheading Example
15103
15104@smallexample
15105(@value{GDBP})
15106-break-insert main
15107^done,bkpt=@{number="1",addr="0x0001072c",file="recursive2.c",line="4"@}
15108(@value{GDBP})
15109-break-insert -t foo
15110^done,bkpt=@{number="2",addr="0x00010774",file="recursive2.c",line="11"@}
15111(@value{GDBP})
15112-break-list
15113^done,BreakpointTable=@{nr_rows="2",nr_cols="6",
15114hdr=[@{width="3",alignment="-1",col_name="number",colhdr="Num"@},
15115@{width="14",alignment="-1",col_name="type",colhdr="Type"@},
15116@{width="4",alignment="-1",col_name="disp",colhdr="Disp"@},
15117@{width="3",alignment="-1",col_name="enabled",colhdr="Enb"@},
15118@{width="10",alignment="-1",col_name="addr",colhdr="Address"@},
15119@{width="40",alignment="2",col_name="what",colhdr="What"@}],
15120body=[bkpt=@{number="1",type="breakpoint",disp="keep",enabled="y",
15121addr="0x0001072c", func="main",file="recursive2.c",line="4",times="0"@},
15122bkpt=@{number="2",type="breakpoint",disp="del",enabled="y",
15123addr="0x00010774",func="foo",file="recursive2.c",line="11",times="0"@}]@}
15124(@value{GDBP})
15125-break-insert -r foo.*
15126~int foo(int, int);
15127^done,bkpt=@{number="3",addr="0x00010774",file="recursive2.c",line="11"@}
15128(@value{GDBP})
15129@end smallexample
15130
15131@subheading The @code{-break-list} Command
15132@findex -break-list
15133
15134@subsubheading Synopsis
15135
15136@smallexample
15137 -break-list
15138@end smallexample
15139
15140Displays the list of inserted breakpoints, showing the following fields:
15141
15142@table @samp
15143@item Number
15144number of the breakpoint
15145@item Type
15146type of the breakpoint: @samp{breakpoint} or @samp{watchpoint}
15147@item Disposition
15148should the breakpoint be deleted or disabled when it is hit: @samp{keep}
15149or @samp{nokeep}
15150@item Enabled
15151is the breakpoint enabled or no: @samp{y} or @samp{n}
15152@item Address
15153memory location at which the breakpoint is set
15154@item What
15155logical location of the breakpoint, expressed by function name, file
15156name, line number
15157@item Times
15158number of times the breakpoint has been hit
15159@end table
15160
15161If there are no breakpoints or watchpoints, the @code{BreakpointTable}
15162@code{body} field is an empty list.
15163
15164@subsubheading @value{GDBN} Command
15165
15166The corresponding @value{GDBN} command is @samp{info break}.
15167
15168@subsubheading Example
15169
15170@smallexample
15171(@value{GDBP})
15172-break-list
15173^done,BreakpointTable=@{nr_rows="2",nr_cols="6",
15174hdr=[@{width="3",alignment="-1",col_name="number",colhdr="Num"@},
15175@{width="14",alignment="-1",col_name="type",colhdr="Type"@},
15176@{width="4",alignment="-1",col_name="disp",colhdr="Disp"@},
15177@{width="3",alignment="-1",col_name="enabled",colhdr="Enb"@},
15178@{width="10",alignment="-1",col_name="addr",colhdr="Address"@},
15179@{width="40",alignment="2",col_name="what",colhdr="What"@}],
15180body=[bkpt=@{number="1",type="breakpoint",disp="keep",enabled="y",
15181addr="0x000100d0",func="main",file="hello.c",line="5",times="0"@},
15182bkpt=@{number="2",type="breakpoint",disp="keep",enabled="y",
15183addr="0x00010114",func="foo",file="hello.c",line="13",times="0"@}]@}
15184(@value{GDBP})
15185@end smallexample
15186
15187Here's an example of the result when there are no breakpoints:
15188
15189@smallexample
15190(@value{GDBP})
15191-break-list
15192^done,BreakpointTable=@{nr_rows="0",nr_cols="6",
15193hdr=[@{width="3",alignment="-1",col_name="number",colhdr="Num"@},
15194@{width="14",alignment="-1",col_name="type",colhdr="Type"@},
15195@{width="4",alignment="-1",col_name="disp",colhdr="Disp"@},
15196@{width="3",alignment="-1",col_name="enabled",colhdr="Enb"@},
15197@{width="10",alignment="-1",col_name="addr",colhdr="Address"@},
15198@{width="40",alignment="2",col_name="what",colhdr="What"@}],
15199body=[]@}
15200(@value{GDBP})
15201@end smallexample
15202
15203@subheading The @code{-break-watch} Command
15204@findex -break-watch
15205
15206@subsubheading Synopsis
15207
15208@smallexample
15209 -break-watch [ -a | -r ]
15210@end smallexample
15211
15212Create a watchpoint. With the @samp{-a} option it will create an
15213@dfn{access} watchpoint, i.e. a watchpoint that triggers either on a
15214read from or on a write to the memory location. With the @samp{-r}
15215option, the watchpoint created is a @dfn{read} watchpoint, i.e. it will
15216trigger only when the memory location is accessed for reading. Without
15217either of the options, the watchpoint created is a regular watchpoint,
15218i.e. it will trigger when the memory location is accessed for writing.
15219@xref{Set Watchpoints, , Setting watchpoints}.
15220
15221Note that @samp{-break-list} will report a single list of watchpoints and
15222breakpoints inserted.
15223
15224@subsubheading @value{GDBN} Command
15225
15226The corresponding @value{GDBN} commands are @samp{watch}, @samp{awatch}, and
15227@samp{rwatch}.
15228
15229@subsubheading Example
15230
15231Setting a watchpoint on a variable in the @code{main} function:
15232
15233@smallexample
15234(@value{GDBP})
15235-break-watch x
15236^done,wpt=@{number="2",exp="x"@}
15237(@value{GDBP})
15238-exec-continue
15239^running
15240^done,reason="watchpoint-trigger",wpt=@{number="2",exp="x"@},
15241value=@{old="-268439212",new="55"@},
15242frame=@{func="main",args=[],file="recursive2.c",line="5"@}
15243(@value{GDBP})
15244@end smallexample
15245
15246Setting a watchpoint on a variable local to a function. @value{GDBN} will stop
15247the program execution twice: first for the variable changing value, then
15248for the watchpoint going out of scope.
15249
15250@smallexample
15251(@value{GDBP})
15252-break-watch C
15253^done,wpt=@{number="5",exp="C"@}
15254(@value{GDBP})
15255-exec-continue
15256^running
15257^done,reason="watchpoint-trigger",
15258wpt=@{number="5",exp="C"@},value=@{old="-276895068",new="3"@},
15259frame=@{func="callee4",args=[],
15260file="../../../devo/gdb/testsuite/gdb.mi/basics.c",line="13"@}
15261(@value{GDBP})
15262-exec-continue
15263^running
15264^done,reason="watchpoint-scope",wpnum="5",
15265frame=@{func="callee3",args=[@{name="strarg",
15266value="0x11940 \"A string argument.\""@}],
15267file="../../../devo/gdb/testsuite/gdb.mi/basics.c",line="18"@}
15268(@value{GDBP})
15269@end smallexample
15270
15271Listing breakpoints and watchpoints, at different points in the program
15272execution. Note that once the watchpoint goes out of scope, it is
15273deleted.
15274
15275@smallexample
15276(@value{GDBP})
15277-break-watch C
15278^done,wpt=@{number="2",exp="C"@}
15279(@value{GDBP})
15280-break-list
15281^done,BreakpointTable=@{nr_rows="2",nr_cols="6",
15282hdr=[@{width="3",alignment="-1",col_name="number",colhdr="Num"@},
15283@{width="14",alignment="-1",col_name="type",colhdr="Type"@},
15284@{width="4",alignment="-1",col_name="disp",colhdr="Disp"@},
15285@{width="3",alignment="-1",col_name="enabled",colhdr="Enb"@},
15286@{width="10",alignment="-1",col_name="addr",colhdr="Address"@},
15287@{width="40",alignment="2",col_name="what",colhdr="What"@}],
15288body=[bkpt=@{number="1",type="breakpoint",disp="keep",enabled="y",
15289addr="0x00010734",func="callee4",
15290file="../../../devo/gdb/testsuite/gdb.mi/basics.c",line="8",times="1"@},
15291bkpt=@{number="2",type="watchpoint",disp="keep",
15292enabled="y",addr="",what="C",times="0"@}]@}
15293(@value{GDBP})
15294-exec-continue
15295^running
15296^done,reason="watchpoint-trigger",wpt=@{number="2",exp="C"@},
15297value=@{old="-276895068",new="3"@},
15298frame=@{func="callee4",args=[],
15299file="../../../devo/gdb/testsuite/gdb.mi/basics.c",line="13"@}
15300(@value{GDBP})
15301-break-list
15302^done,BreakpointTable=@{nr_rows="2",nr_cols="6",
15303hdr=[@{width="3",alignment="-1",col_name="number",colhdr="Num"@},
15304@{width="14",alignment="-1",col_name="type",colhdr="Type"@},
15305@{width="4",alignment="-1",col_name="disp",colhdr="Disp"@},
15306@{width="3",alignment="-1",col_name="enabled",colhdr="Enb"@},
15307@{width="10",alignment="-1",col_name="addr",colhdr="Address"@},
15308@{width="40",alignment="2",col_name="what",colhdr="What"@}],
15309body=[bkpt=@{number="1",type="breakpoint",disp="keep",enabled="y",
15310addr="0x00010734",func="callee4",
15311file="../../../devo/gdb/testsuite/gdb.mi/basics.c",line="8",times="1"@},
15312bkpt=@{number="2",type="watchpoint",disp="keep",
15313enabled="y",addr="",what="C",times="-5"@}]@}
15314(@value{GDBP})
15315-exec-continue
15316^running
15317^done,reason="watchpoint-scope",wpnum="2",
15318frame=@{func="callee3",args=[@{name="strarg",
15319value="0x11940 \"A string argument.\""@}],
15320file="../../../devo/gdb/testsuite/gdb.mi/basics.c",line="18"@}
15321(@value{GDBP})
15322-break-list
15323^done,BreakpointTable=@{nr_rows="1",nr_cols="6",
15324hdr=[@{width="3",alignment="-1",col_name="number",colhdr="Num"@},
15325@{width="14",alignment="-1",col_name="type",colhdr="Type"@},
15326@{width="4",alignment="-1",col_name="disp",colhdr="Disp"@},
15327@{width="3",alignment="-1",col_name="enabled",colhdr="Enb"@},
15328@{width="10",alignment="-1",col_name="addr",colhdr="Address"@},
15329@{width="40",alignment="2",col_name="what",colhdr="What"@}],
15330body=[bkpt=@{number="1",type="breakpoint",disp="keep",enabled="y",
15331addr="0x00010734",func="callee4",
15332file="../../../devo/gdb/testsuite/gdb.mi/basics.c",line="8",times="1"@}]@}
15333(@value{GDBP})
15334@end smallexample
15335
15336@c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
15337@node GDB/MI Data Manipulation
15338@section @sc{gdb/mi} Data Manipulation
15339
15340@cindex data manipulation, in @sc{gdb/mi}
15341@cindex @sc{gdb/mi}, data manipulation
15342This section describes the @sc{gdb/mi} commands that manipulate data:
15343examine memory and registers, evaluate expressions, etc.
15344
15345@c REMOVED FROM THE INTERFACE.
15346@c @subheading -data-assign
15347@c Change the value of a program variable. Plenty of side effects.
15348@c @subsubheading GDB command
15349@c set variable
15350@c @subsubheading Example
15351@c N.A.
15352
15353@subheading The @code{-data-disassemble} Command
15354@findex -data-disassemble
15355
15356@subsubheading Synopsis
15357
15358@smallexample
15359 -data-disassemble
15360 [ -s @var{start-addr} -e @var{end-addr} ]
15361 | [ -f @var{filename} -l @var{linenum} [ -n @var{lines} ] ]
15362 -- @var{mode}
15363@end smallexample
15364
15365@noindent
15366Where:
15367
15368@table @samp
15369@item @var{start-addr}
15370is the beginning address (or @code{$pc})
15371@item @var{end-addr}
15372is the end address
15373@item @var{filename}
15374is the name of the file to disassemble
15375@item @var{linenum}
15376is the line number to disassemble around
15377@item @var{lines}
15378is the the number of disassembly lines to be produced. If it is -1,
15379the whole function will be disassembled, in case no @var{end-addr} is
15380specified. If @var{end-addr} is specified as a non-zero value, and
15381@var{lines} is lower than the number of disassembly lines between
15382@var{start-addr} and @var{end-addr}, only @var{lines} lines are
15383displayed; if @var{lines} is higher than the number of lines between
15384@var{start-addr} and @var{end-addr}, only the lines up to @var{end-addr}
15385are displayed.
15386@item @var{mode}
15387is either 0 (meaning only disassembly) or 1 (meaning mixed source and
15388disassembly).
15389@end table
15390
15391@subsubheading Result
15392
15393The output for each instruction is composed of four fields:
15394
15395@itemize @bullet
15396@item Address
15397@item Func-name
15398@item Offset
15399@item Instruction
15400@end itemize
15401
15402Note that whatever included in the instruction field, is not manipulated
15403directely by @sc{gdb/mi}, i.e. it is not possible to adjust its format.
15404
15405@subsubheading @value{GDBN} Command
15406
15407There's no direct mapping from this command to the CLI.
15408
15409@subsubheading Example
15410
15411Disassemble from the current value of @code{$pc} to @code{$pc + 20}:
15412
15413@smallexample
15414(@value{GDBP})
15415-data-disassemble -s $pc -e "$pc + 20" -- 0
15416^done,
15417asm_insns=[
15418@{address="0x000107c0",func-name="main",offset="4",
15419inst="mov 2, %o0"@},
15420@{address="0x000107c4",func-name="main",offset="8",
15421inst="sethi %hi(0x11800), %o2"@},
15422@{address="0x000107c8",func-name="main",offset="12",
15423inst="or %o2, 0x140, %o1\t! 0x11940 <_lib_version+8>"@},
15424@{address="0x000107cc",func-name="main",offset="16",
15425inst="sethi %hi(0x11800), %o2"@},
15426@{address="0x000107d0",func-name="main",offset="20",
15427inst="or %o2, 0x168, %o4\t! 0x11968 <_lib_version+48>"@}]
15428(@value{GDBP})
15429@end smallexample
15430
15431Disassemble the whole @code{main} function. Line 32 is part of
15432@code{main}.
15433
15434@smallexample
15435-data-disassemble -f basics.c -l 32 -- 0
15436^done,asm_insns=[
15437@{address="0x000107bc",func-name="main",offset="0",
15438inst="save %sp, -112, %sp"@},
15439@{address="0x000107c0",func-name="main",offset="4",
15440inst="mov 2, %o0"@},
15441@{address="0x000107c4",func-name="main",offset="8",
15442inst="sethi %hi(0x11800), %o2"@},
15443[@dots{}]
15444@{address="0x0001081c",func-name="main",offset="96",inst="ret "@},
15445@{address="0x00010820",func-name="main",offset="100",inst="restore "@}]
15446(@value{GDBP})
15447@end smallexample
15448
15449Disassemble 3 instructions from the start of @code{main}:
15450
15451@smallexample
15452(@value{GDBP})
15453-data-disassemble -f basics.c -l 32 -n 3 -- 0
15454^done,asm_insns=[
15455@{address="0x000107bc",func-name="main",offset="0",
15456inst="save %sp, -112, %sp"@},
15457@{address="0x000107c0",func-name="main",offset="4",
15458inst="mov 2, %o0"@},
15459@{address="0x000107c4",func-name="main",offset="8",
15460inst="sethi %hi(0x11800), %o2"@}]
15461(@value{GDBP})
15462@end smallexample
15463
15464Disassemble 3 instructions from the start of @code{main} in mixed mode:
15465
15466@smallexample
15467(@value{GDBP})
15468-data-disassemble -f basics.c -l 32 -n 3 -- 1
15469^done,asm_insns=[
15470src_and_asm_line=@{line="31",
15471file="/kwikemart/marge/ezannoni/flathead-dev/devo/gdb/ \
15472 testsuite/gdb.mi/basics.c",line_asm_insn=[
15473@{address="0x000107bc",func-name="main",offset="0",
15474inst="save %sp, -112, %sp"@}]@},
15475src_and_asm_line=@{line="32",
15476file="/kwikemart/marge/ezannoni/flathead-dev/devo/gdb/ \
15477 testsuite/gdb.mi/basics.c",line_asm_insn=[
15478@{address="0x000107c0",func-name="main",offset="4",
15479inst="mov 2, %o0"@},
15480@{address="0x000107c4",func-name="main",offset="8",
15481inst="sethi %hi(0x11800), %o2"@}]@}]
15482(@value{GDBP})
15483@end smallexample
15484
15485
15486@subheading The @code{-data-evaluate-expression} Command
15487@findex -data-evaluate-expression
15488
15489@subsubheading Synopsis
15490
15491@smallexample
15492 -data-evaluate-expression @var{expr}
15493@end smallexample
15494
15495Evaluate @var{expr} as an expression. The expression could contain an
15496inferior function call. The function call will execute synchronously.
15497If the expression contains spaces, it must be enclosed in double quotes.
15498
15499@subsubheading @value{GDBN} Command
15500
15501The corresponding @value{GDBN} commands are @samp{print}, @samp{output}, and
15502@samp{call}. In @code{gdbtk} only, there's a corresponding
15503@samp{gdb_eval} command.
15504
15505@subsubheading Example
15506
15507In the following example, the numbers that precede the commands are the
15508@dfn{tokens} described in @ref{GDB/MI Command Syntax, ,@sc{gdb/mi}
15509Command Syntax}. Notice how @sc{gdb/mi} returns the same tokens in its
15510output.
15511
15512@smallexample
15513211-data-evaluate-expression A
15514211^done,value="1"
15515(@value{GDBP})
15516311-data-evaluate-expression &A
15517311^done,value="0xefffeb7c"
15518(@value{GDBP})
15519411-data-evaluate-expression A+3
15520411^done,value="4"
15521(@value{GDBP})
15522511-data-evaluate-expression "A + 3"
15523511^done,value="4"
15524(@value{GDBP})
15525@end smallexample
15526
15527
15528@subheading The @code{-data-list-changed-registers} Command
15529@findex -data-list-changed-registers
15530
15531@subsubheading Synopsis
15532
15533@smallexample
15534 -data-list-changed-registers
15535@end smallexample
15536
15537Display a list of the registers that have changed.
15538
15539@subsubheading @value{GDBN} Command
15540
15541@value{GDBN} doesn't have a direct analog for this command; @code{gdbtk}
15542has the corresponding command @samp{gdb_changed_register_list}.
15543
15544@subsubheading Example
15545
15546On a PPC MBX board:
15547
15548@smallexample
15549(@value{GDBP})
15550-exec-continue
15551^running
15552
15553(@value{GDBP})
15554*stopped,reason="breakpoint-hit",bkptno="1",frame=@{func="main",
15555args=[],file="try.c",line="5"@}
15556(@value{GDBP})
15557-data-list-changed-registers
15558^done,changed-registers=["0","1","2","4","5","6","7","8","9",
15559"10","11","13","14","15","16","17","18","19","20","21","22","23",
15560"24","25","26","27","28","30","31","64","65","66","67","69"]
15561(@value{GDBP})
15562@end smallexample
15563
15564
15565@subheading The @code{-data-list-register-names} Command
15566@findex -data-list-register-names
15567
15568@subsubheading Synopsis
15569
15570@smallexample
15571 -data-list-register-names [ ( @var{regno} )+ ]
15572@end smallexample
15573
15574Show a list of register names for the current target. If no arguments
15575are given, it shows a list of the names of all the registers. If
15576integer numbers are given as arguments, it will print a list of the
15577names of the registers corresponding to the arguments. To ensure
15578consistency between a register name and its number, the output list may
15579include empty register names.
15580
15581@subsubheading @value{GDBN} Command
15582
15583@value{GDBN} does not have a command which corresponds to
15584@samp{-data-list-register-names}. In @code{gdbtk} there is a
15585corresponding command @samp{gdb_regnames}.
15586
15587@subsubheading Example
15588
15589For the PPC MBX board:
15590@smallexample
15591(@value{GDBP})
15592-data-list-register-names
15593^done,register-names=["r0","r1","r2","r3","r4","r5","r6","r7",
15594"r8","r9","r10","r11","r12","r13","r14","r15","r16","r17","r18",
15595"r19","r20","r21","r22","r23","r24","r25","r26","r27","r28","r29",
15596"r30","r31","f0","f1","f2","f3","f4","f5","f6","f7","f8","f9",
15597"f10","f11","f12","f13","f14","f15","f16","f17","f18","f19","f20",
15598"f21","f22","f23","f24","f25","f26","f27","f28","f29","f30","f31",
15599"", "pc","ps","cr","lr","ctr","xer"]
15600(@value{GDBP})
15601-data-list-register-names 1 2 3
15602^done,register-names=["r1","r2","r3"]
15603(@value{GDBP})
15604@end smallexample
15605
15606@subheading The @code{-data-list-register-values} Command
15607@findex -data-list-register-values
15608
15609@subsubheading Synopsis
15610
15611@smallexample
15612 -data-list-register-values @var{fmt} [ ( @var{regno} )*]
15613@end smallexample
15614
15615Display the registers' contents. @var{fmt} is the format according to
15616which the registers' contents are to be returned, followed by an optional
15617list of numbers specifying the registers to display. A missing list of
15618numbers indicates that the contents of all the registers must be returned.
15619
15620Allowed formats for @var{fmt} are:
15621
15622@table @code
15623@item x
15624Hexadecimal
15625@item o
15626Octal
15627@item t
15628Binary
15629@item d
15630Decimal
15631@item r
15632Raw
15633@item N
15634Natural
15635@end table
15636
15637@subsubheading @value{GDBN} Command
15638
15639The corresponding @value{GDBN} commands are @samp{info reg}, @samp{info
15640all-reg}, and (in @code{gdbtk}) @samp{gdb_fetch_registers}.
15641
15642@subsubheading Example
15643
15644For a PPC MBX board (note: line breaks are for readability only, they
15645don't appear in the actual output):
15646
15647@smallexample
15648(@value{GDBP})
15649-data-list-register-values r 64 65
15650^done,register-values=[@{number="64",value="0xfe00a300"@},
15651@{number="65",value="0x00029002"@}]
15652(@value{GDBP})
15653-data-list-register-values x
15654^done,register-values=[@{number="0",value="0xfe0043c8"@},
15655@{number="1",value="0x3fff88"@},@{number="2",value="0xfffffffe"@},
15656@{number="3",value="0x0"@},@{number="4",value="0xa"@},
15657@{number="5",value="0x3fff68"@},@{number="6",value="0x3fff58"@},
15658@{number="7",value="0xfe011e98"@},@{number="8",value="0x2"@},
15659@{number="9",value="0xfa202820"@},@{number="10",value="0xfa202808"@},
15660@{number="11",value="0x1"@},@{number="12",value="0x0"@},
15661@{number="13",value="0x4544"@},@{number="14",value="0xffdfffff"@},
15662@{number="15",value="0xffffffff"@},@{number="16",value="0xfffffeff"@},
15663@{number="17",value="0xefffffed"@},@{number="18",value="0xfffffffe"@},
15664@{number="19",value="0xffffffff"@},@{number="20",value="0xffffffff"@},
15665@{number="21",value="0xffffffff"@},@{number="22",value="0xfffffff7"@},
15666@{number="23",value="0xffffffff"@},@{number="24",value="0xffffffff"@},
15667@{number="25",value="0xffffffff"@},@{number="26",value="0xfffffffb"@},
15668@{number="27",value="0xffffffff"@},@{number="28",value="0xf7bfffff"@},
15669@{number="29",value="0x0"@},@{number="30",value="0xfe010000"@},
15670@{number="31",value="0x0"@},@{number="32",value="0x0"@},
15671@{number="33",value="0x0"@},@{number="34",value="0x0"@},
15672@{number="35",value="0x0"@},@{number="36",value="0x0"@},
15673@{number="37",value="0x0"@},@{number="38",value="0x0"@},
15674@{number="39",value="0x0"@},@{number="40",value="0x0"@},
15675@{number="41",value="0x0"@},@{number="42",value="0x0"@},
15676@{number="43",value="0x0"@},@{number="44",value="0x0"@},
15677@{number="45",value="0x0"@},@{number="46",value="0x0"@},
15678@{number="47",value="0x0"@},@{number="48",value="0x0"@},
15679@{number="49",value="0x0"@},@{number="50",value="0x0"@},
15680@{number="51",value="0x0"@},@{number="52",value="0x0"@},
15681@{number="53",value="0x0"@},@{number="54",value="0x0"@},
15682@{number="55",value="0x0"@},@{number="56",value="0x0"@},
15683@{number="57",value="0x0"@},@{number="58",value="0x0"@},
15684@{number="59",value="0x0"@},@{number="60",value="0x0"@},
15685@{number="61",value="0x0"@},@{number="62",value="0x0"@},
15686@{number="63",value="0x0"@},@{number="64",value="0xfe00a300"@},
15687@{number="65",value="0x29002"@},@{number="66",value="0x202f04b5"@},
15688@{number="67",value="0xfe0043b0"@},@{number="68",value="0xfe00b3e4"@},
15689@{number="69",value="0x20002b03"@}]
15690(@value{GDBP})
15691@end smallexample
15692
15693
15694@subheading The @code{-data-read-memory} Command
15695@findex -data-read-memory
15696
15697@subsubheading Synopsis
15698
15699@smallexample
15700 -data-read-memory [ -o @var{byte-offset} ]
15701 @var{address} @var{word-format} @var{word-size}
15702 @var{nr-rows} @var{nr-cols} [ @var{aschar} ]
15703@end smallexample
15704
15705@noindent
15706where:
15707
15708@table @samp
15709@item @var{address}
15710An expression specifying the address of the first memory word to be
15711read. Complex expressions containing embedded white space should be
15712quoted using the C convention.
15713
15714@item @var{word-format}
15715The format to be used to print the memory words. The notation is the
15716same as for @value{GDBN}'s @code{print} command (@pxref{Output Formats,
15717,Output formats}).
15718
15719@item @var{word-size}
15720The size of each memory word in bytes.
15721
15722@item @var{nr-rows}
15723The number of rows in the output table.
15724
15725@item @var{nr-cols}
15726The number of columns in the output table.
15727
15728@item @var{aschar}
15729If present, indicates that each row should include an @sc{ascii} dump. The
15730value of @var{aschar} is used as a padding character when a byte is not a
15731member of the printable @sc{ascii} character set (printable @sc{ascii}
15732characters are those whose code is between 32 and 126, inclusively).
15733
15734@item @var{byte-offset}
15735An offset to add to the @var{address} before fetching memory.
15736@end table
15737
15738This command displays memory contents as a table of @var{nr-rows} by
15739@var{nr-cols} words, each word being @var{word-size} bytes. In total,
15740@code{@var{nr-rows} * @var{nr-cols} * @var{word-size}} bytes are read
15741(returned as @samp{total-bytes}). Should less than the requested number
15742of bytes be returned by the target, the missing words are identified
15743using @samp{N/A}. The number of bytes read from the target is returned
15744in @samp{nr-bytes} and the starting address used to read memory in
15745@samp{addr}.
15746
15747The address of the next/previous row or page is available in
15748@samp{next-row} and @samp{prev-row}, @samp{next-page} and
15749@samp{prev-page}.
15750
15751@subsubheading @value{GDBN} Command
15752
15753The corresponding @value{GDBN} command is @samp{x}. @code{gdbtk} has
15754@samp{gdb_get_mem} memory read command.
15755
15756@subsubheading Example
15757
15758Read six bytes of memory starting at @code{bytes+6} but then offset by
15759@code{-6} bytes. Format as three rows of two columns. One byte per
15760word. Display each word in hex.
15761
15762@smallexample
15763(@value{GDBP})
157649-data-read-memory -o -6 -- bytes+6 x 1 3 2
157659^done,addr="0x00001390",nr-bytes="6",total-bytes="6",
15766next-row="0x00001396",prev-row="0x0000138e",next-page="0x00001396",
15767prev-page="0x0000138a",memory=[
15768@{addr="0x00001390",data=["0x00","0x01"]@},
15769@{addr="0x00001392",data=["0x02","0x03"]@},
15770@{addr="0x00001394",data=["0x04","0x05"]@}]
15771(@value{GDBP})
15772@end smallexample
15773
15774Read two bytes of memory starting at address @code{shorts + 64} and
15775display as a single word formatted in decimal.
15776
15777@smallexample
15778(@value{GDBP})
157795-data-read-memory shorts+64 d 2 1 1
157805^done,addr="0x00001510",nr-bytes="2",total-bytes="2",
15781next-row="0x00001512",prev-row="0x0000150e",
15782next-page="0x00001512",prev-page="0x0000150e",memory=[
15783@{addr="0x00001510",data=["128"]@}]
15784(@value{GDBP})
15785@end smallexample
15786
15787Read thirty two bytes of memory starting at @code{bytes+16} and format
15788as eight rows of four columns. Include a string encoding with @samp{x}
15789used as the non-printable character.
15790
15791@smallexample
15792(@value{GDBP})
157934-data-read-memory bytes+16 x 1 8 4 x
157944^done,addr="0x000013a0",nr-bytes="32",total-bytes="32",
15795next-row="0x000013c0",prev-row="0x0000139c",
15796next-page="0x000013c0",prev-page="0x00001380",memory=[
15797@{addr="0x000013a0",data=["0x10","0x11","0x12","0x13"],ascii="xxxx"@},
15798@{addr="0x000013a4",data=["0x14","0x15","0x16","0x17"],ascii="xxxx"@},
15799@{addr="0x000013a8",data=["0x18","0x19","0x1a","0x1b"],ascii="xxxx"@},
15800@{addr="0x000013ac",data=["0x1c","0x1d","0x1e","0x1f"],ascii="xxxx"@},
15801@{addr="0x000013b0",data=["0x20","0x21","0x22","0x23"],ascii=" !\"#"@},
15802@{addr="0x000013b4",data=["0x24","0x25","0x26","0x27"],ascii="$%&'"@},
15803@{addr="0x000013b8",data=["0x28","0x29","0x2a","0x2b"],ascii="()*+"@},
15804@{addr="0x000013bc",data=["0x2c","0x2d","0x2e","0x2f"],ascii=",-./"@}]
15805(@value{GDBP})
15806@end smallexample
15807
15808@subheading The @code{-display-delete} Command
15809@findex -display-delete
15810
15811@subsubheading Synopsis
15812
15813@smallexample
15814 -display-delete @var{number}
15815@end smallexample
15816
15817Delete the display @var{number}.
15818
15819@subsubheading @value{GDBN} Command
15820
15821The corresponding @value{GDBN} command is @samp{delete display}.
15822
15823@subsubheading Example
15824N.A.
15825
15826
15827@subheading The @code{-display-disable} Command
15828@findex -display-disable
15829
15830@subsubheading Synopsis
15831
15832@smallexample
15833 -display-disable @var{number}
15834@end smallexample
15835
15836Disable display @var{number}.
15837
15838@subsubheading @value{GDBN} Command
15839
15840The corresponding @value{GDBN} command is @samp{disable display}.
15841
15842@subsubheading Example
15843N.A.
15844
15845
15846@subheading The @code{-display-enable} Command
15847@findex -display-enable
15848
15849@subsubheading Synopsis
15850
15851@smallexample
15852 -display-enable @var{number}
15853@end smallexample
15854
15855Enable display @var{number}.
15856
15857@subsubheading @value{GDBN} Command
15858
15859The corresponding @value{GDBN} command is @samp{enable display}.
15860
15861@subsubheading Example
15862N.A.
15863
15864
15865@subheading The @code{-display-insert} Command
15866@findex -display-insert
15867
15868@subsubheading Synopsis
15869
15870@smallexample
15871 -display-insert @var{expression}
15872@end smallexample
15873
15874Display @var{expression} every time the program stops.
15875
15876@subsubheading @value{GDBN} Command
15877
15878The corresponding @value{GDBN} command is @samp{display}.
15879
15880@subsubheading Example
15881N.A.
15882
15883
15884@subheading The @code{-display-list} Command
15885@findex -display-list
15886
15887@subsubheading Synopsis
15888
15889@smallexample
15890 -display-list
15891@end smallexample
15892
15893List the displays. Do not show the current values.
15894
15895@subsubheading @value{GDBN} Command
15896
15897The corresponding @value{GDBN} command is @samp{info display}.
15898
15899@subsubheading Example
15900N.A.
15901
15902
15903@subheading The @code{-environment-cd} Command
15904@findex -environment-cd
15905
15906@subsubheading Synopsis
15907
15908@smallexample
15909 -environment-cd @var{pathdir}
15910@end smallexample
15911
15912Set @value{GDBN}'s working directory.
15913
15914@subsubheading @value{GDBN} Command
15915
15916The corresponding @value{GDBN} command is @samp{cd}.
15917
15918@subsubheading Example
15919
15920@smallexample
15921(@value{GDBP})
15922-environment-cd /kwikemart/marge/ezannoni/flathead-dev/devo/gdb
15923^done
15924(@value{GDBP})
15925@end smallexample
15926
15927
15928@subheading The @code{-environment-directory} Command
15929@findex -environment-directory
15930
15931@subsubheading Synopsis
15932
15933@smallexample
15934 -environment-directory [ -r ] [ @var{pathdir} ]+
15935@end smallexample
15936
15937Add directories @var{pathdir} to beginning of search path for source files.
15938If the @samp{-r} option is used, the search path is reset to the default
15939search path. If directories @var{pathdir} are supplied in addition to the
15940@samp{-r} option, the search path is first reset and then addition
15941occurs as normal.
15942Multiple directories may be specified, separated by blanks. Specifying
15943multiple directories in a single command
15944results in the directories added to the beginning of the
15945search path in the same order they were presented in the command.
15946If blanks are needed as
15947part of a directory name, double-quotes should be used around
15948the name. In the command output, the path will show up separated
15949by the system directory-separator character. The directory-seperator
15950character must not be used
15951in any directory name.
15952If no directories are specified, the current search path is displayed.
15953
15954@subsubheading @value{GDBN} Command
15955
15956The corresponding @value{GDBN} command is @samp{dir}.
15957
15958@subsubheading Example
15959
15960@smallexample
15961(@value{GDBP})
15962-environment-directory /kwikemart/marge/ezannoni/flathead-dev/devo/gdb
15963^done,source-path="/kwikemart/marge/ezannoni/flathead-dev/devo/gdb:$cdir:$cwd"
15964(@value{GDBP})
15965-environment-directory ""
15966^done,source-path="/kwikemart/marge/ezannoni/flathead-dev/devo/gdb:$cdir:$cwd"
15967(@value{GDBP})
15968-environment-directory -r /home/jjohnstn/src/gdb /usr/src
15969^done,source-path="/home/jjohnstn/src/gdb:/usr/src:$cdir:$cwd"
15970(@value{GDBP})
15971-environment-directory -r
15972^done,source-path="$cdir:$cwd"
15973(@value{GDBP})
15974@end smallexample
15975
15976
15977@subheading The @code{-environment-path} Command
15978@findex -environment-path
15979
15980@subsubheading Synopsis
15981
15982@smallexample
15983 -environment-path [ -r ] [ @var{pathdir} ]+
15984@end smallexample
15985
15986Add directories @var{pathdir} to beginning of search path for object files.
15987If the @samp{-r} option is used, the search path is reset to the original
15988search path that existed at gdb start-up. If directories @var{pathdir} are
15989supplied in addition to the
15990@samp{-r} option, the search path is first reset and then addition
15991occurs as normal.
15992Multiple directories may be specified, separated by blanks. Specifying
15993multiple directories in a single command
15994results in the directories added to the beginning of the
15995search path in the same order they were presented in the command.
15996If blanks are needed as
15997part of a directory name, double-quotes should be used around
15998the name. In the command output, the path will show up separated
15999by the system directory-separator character. The directory-seperator
16000character must not be used
16001in any directory name.
16002If no directories are specified, the current path is displayed.
16003
16004
16005@subsubheading @value{GDBN} Command
16006
16007The corresponding @value{GDBN} command is @samp{path}.
16008
16009@subsubheading Example
16010
16011@smallexample
16012(@value{GDBP})
16013-environment-path
16014^done,path="/usr/bin"
16015(@value{GDBP})
16016-environment-path /kwikemart/marge/ezannoni/flathead-dev/ppc-eabi/gdb /bin
16017^done,path="/kwikemart/marge/ezannoni/flathead-dev/ppc-eabi/gdb:/bin:/usr/bin"
16018(@value{GDBP})
16019-environment-path -r /usr/local/bin
16020^done,path="/usr/local/bin:/usr/bin"
16021(@value{GDBP})
16022@end smallexample
16023
16024
16025@subheading The @code{-environment-pwd} Command
16026@findex -environment-pwd
16027
16028@subsubheading Synopsis
16029
16030@smallexample
16031 -environment-pwd
16032@end smallexample
16033
16034Show the current working directory.
16035
16036@subsubheading @value{GDBN} command
16037
16038The corresponding @value{GDBN} command is @samp{pwd}.
16039
16040@subsubheading Example
16041
16042@smallexample
16043(@value{GDBP})
16044-environment-pwd
16045^done,cwd="/kwikemart/marge/ezannoni/flathead-dev/devo/gdb"
16046(@value{GDBP})
16047@end smallexample
16048
16049@c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
16050@node GDB/MI Program Control
16051@section @sc{gdb/mi} Program control
16052
16053@subsubheading Program termination
16054
16055As a result of execution, the inferior program can run to completion, if
16056it doesn't encounter any breakpoints. In this case the output will
16057include an exit code, if the program has exited exceptionally.
16058
16059@subsubheading Examples
16060
16061@noindent
16062Program exited normally:
16063
16064@smallexample
16065(@value{GDBP})
16066-exec-run
16067^running
16068(@value{GDBP})
16069x = 55
16070*stopped,reason="exited-normally"
16071(@value{GDBP})
16072@end smallexample
16073
16074@noindent
16075Program exited exceptionally:
16076
16077@smallexample
16078(@value{GDBP})
16079-exec-run
16080^running
16081(@value{GDBP})
16082x = 55
16083*stopped,reason="exited",exit-code="01"
16084(@value{GDBP})
16085@end smallexample
16086
16087Another way the program can terminate is if it receives a signal such as
16088@code{SIGINT}. In this case, @sc{gdb/mi} displays this:
16089
16090@smallexample
16091(@value{GDBP})
16092*stopped,reason="exited-signalled",signal-name="SIGINT",
16093signal-meaning="Interrupt"
16094@end smallexample
16095
16096
16097@subheading The @code{-exec-abort} Command
16098@findex -exec-abort
16099
16100@subsubheading Synopsis
16101
16102@smallexample
16103 -exec-abort
16104@end smallexample
16105
16106Kill the inferior running program.
16107
16108@subsubheading @value{GDBN} Command
16109
16110The corresponding @value{GDBN} command is @samp{kill}.
16111
16112@subsubheading Example
16113N.A.
16114
16115
16116@subheading The @code{-exec-arguments} Command
16117@findex -exec-arguments
16118
16119@subsubheading Synopsis
16120
16121@smallexample
16122 -exec-arguments @var{args}
16123@end smallexample
16124
16125Set the inferior program arguments, to be used in the next
16126@samp{-exec-run}.
16127
16128@subsubheading @value{GDBN} Command
16129
16130The corresponding @value{GDBN} command is @samp{set args}.
16131
16132@subsubheading Example
16133
16134@c FIXME!
16135Don't have one around.
16136
16137
16138@subheading The @code{-exec-continue} Command
16139@findex -exec-continue
16140
16141@subsubheading Synopsis
16142
16143@smallexample
16144 -exec-continue
16145@end smallexample
16146
16147Asynchronous command. Resumes the execution of the inferior program
16148until a breakpoint is encountered, or until the inferior exits.
16149
16150@subsubheading @value{GDBN} Command
16151
16152The corresponding @value{GDBN} corresponding is @samp{continue}.
16153
16154@subsubheading Example
16155
16156@smallexample
16157-exec-continue
16158^running
16159(@value{GDBP})
16160@@Hello world
16161*stopped,reason="breakpoint-hit",bkptno="2",frame=@{func="foo",args=[],
16162file="hello.c",line="13"@}
16163(@value{GDBP})
16164@end smallexample
16165
16166
16167@subheading The @code{-exec-finish} Command
16168@findex -exec-finish
16169
16170@subsubheading Synopsis
16171
16172@smallexample
16173 -exec-finish
16174@end smallexample
16175
16176Asynchronous command. Resumes the execution of the inferior program
16177until the current function is exited. Displays the results returned by
16178the function.
16179
16180@subsubheading @value{GDBN} Command
16181
16182The corresponding @value{GDBN} command is @samp{finish}.
16183
16184@subsubheading Example
16185
16186Function returning @code{void}.
16187
16188@smallexample
16189-exec-finish
16190^running
16191(@value{GDBP})
16192@@hello from foo
16193*stopped,reason="function-finished",frame=@{func="main",args=[],
16194file="hello.c",line="7"@}
16195(@value{GDBP})
16196@end smallexample
16197
16198Function returning other than @code{void}. The name of the internal
16199@value{GDBN} variable storing the result is printed, together with the
16200value itself.
16201
16202@smallexample
16203-exec-finish
16204^running
16205(@value{GDBP})
16206*stopped,reason="function-finished",frame=@{addr="0x000107b0",func="foo",
16207args=[@{name="a",value="1"],@{name="b",value="9"@}@},
16208file="recursive2.c",line="14"@},
16209gdb-result-var="$1",return-value="0"
16210(@value{GDBP})
16211@end smallexample
16212
16213
16214@subheading The @code{-exec-interrupt} Command
16215@findex -exec-interrupt
16216
16217@subsubheading Synopsis
16218
16219@smallexample
16220 -exec-interrupt
16221@end smallexample
16222
16223Asynchronous command. Interrupts the background execution of the target.
16224Note how the token associated with the stop message is the one for the
16225execution command that has been interrupted. The token for the interrupt
16226itself only appears in the @samp{^done} output. If the user is trying to
16227interrupt a non-running program, an error message will be printed.
16228
16229@subsubheading @value{GDBN} Command
16230
16231The corresponding @value{GDBN} command is @samp{interrupt}.
16232
16233@subsubheading Example
16234
16235@smallexample
16236(@value{GDBP})
16237111-exec-continue
16238111^running
16239
16240(@value{GDBP})
16241222-exec-interrupt
16242222^done
16243(@value{GDBP})
16244111*stopped,signal-name="SIGINT",signal-meaning="Interrupt",
16245frame=@{addr="0x00010140",func="foo",args=[],file="try.c",line="13"@}
16246(@value{GDBP})
16247
16248(@value{GDBP})
16249-exec-interrupt
16250^error,msg="mi_cmd_exec_interrupt: Inferior not executing."
16251(@value{GDBP})
16252@end smallexample
16253
16254
16255@subheading The @code{-exec-next} Command
16256@findex -exec-next
16257
16258@subsubheading Synopsis
16259
16260@smallexample
16261 -exec-next
16262@end smallexample
16263
16264Asynchronous command. Resumes execution of the inferior program, stopping
16265when the beginning of the next source line is reached.
16266
16267@subsubheading @value{GDBN} Command
16268
16269The corresponding @value{GDBN} command is @samp{next}.
16270
16271@subsubheading Example
16272
16273@smallexample
16274-exec-next
16275^running
16276(@value{GDBP})
16277*stopped,reason="end-stepping-range",line="8",file="hello.c"
16278(@value{GDBP})
16279@end smallexample
16280
16281
16282@subheading The @code{-exec-next-instruction} Command
16283@findex -exec-next-instruction
16284
16285@subsubheading Synopsis
16286
16287@smallexample
16288 -exec-next-instruction
16289@end smallexample
16290
16291Asynchronous command. Executes one machine instruction. If the
16292instruction is a function call continues until the function returns. If
16293the program stops at an instruction in the middle of a source line, the
16294address will be printed as well.
16295
16296@subsubheading @value{GDBN} Command
16297
16298The corresponding @value{GDBN} command is @samp{nexti}.
16299
16300@subsubheading Example
16301
16302@smallexample
16303(@value{GDBP})
16304-exec-next-instruction
16305^running
16306
16307(@value{GDBP})
16308*stopped,reason="end-stepping-range",
16309addr="0x000100d4",line="5",file="hello.c"
16310(@value{GDBP})
16311@end smallexample
16312
16313
16314@subheading The @code{-exec-return} Command
16315@findex -exec-return
16316
16317@subsubheading Synopsis
16318
16319@smallexample
16320 -exec-return
16321@end smallexample
16322
16323Makes current function return immediately. Doesn't execute the inferior.
16324Displays the new current frame.
16325
16326@subsubheading @value{GDBN} Command
16327
16328The corresponding @value{GDBN} command is @samp{return}.
16329
16330@subsubheading Example
16331
16332@smallexample
16333(@value{GDBP})
16334200-break-insert callee4
16335200^done,bkpt=@{number="1",addr="0x00010734",
16336file="../../../devo/gdb/testsuite/gdb.mi/basics.c",line="8"@}
16337(@value{GDBP})
16338000-exec-run
16339000^running
16340(@value{GDBP})
16341000*stopped,reason="breakpoint-hit",bkptno="1",
16342frame=@{func="callee4",args=[],
16343file="../../../devo/gdb/testsuite/gdb.mi/basics.c",line="8"@}
16344(@value{GDBP})
16345205-break-delete
16346205^done
16347(@value{GDBP})
16348111-exec-return
16349111^done,frame=@{level="0",func="callee3",
16350args=[@{name="strarg",
16351value="0x11940 \"A string argument.\""@}],
16352file="../../../devo/gdb/testsuite/gdb.mi/basics.c",line="18"@}
16353(@value{GDBP})
16354@end smallexample
16355
16356
16357@subheading The @code{-exec-run} Command
16358@findex -exec-run
16359
16360@subsubheading Synopsis
16361
16362@smallexample
16363 -exec-run
16364@end smallexample
16365
16366Asynchronous command. Starts execution of the inferior from the
16367beginning. The inferior executes until either a breakpoint is
16368encountered or the program exits.
16369
16370@subsubheading @value{GDBN} Command
16371
16372The corresponding @value{GDBN} command is @samp{run}.
16373
16374@subsubheading Example
16375
16376@smallexample
16377(@value{GDBP})
16378-break-insert main
16379^done,bkpt=@{number="1",addr="0x0001072c",file="recursive2.c",line="4"@}
16380(@value{GDBP})
16381-exec-run
16382^running
16383(@value{GDBP})
16384*stopped,reason="breakpoint-hit",bkptno="1",
16385frame=@{func="main",args=[],file="recursive2.c",line="4"@}
16386(@value{GDBP})
16387@end smallexample
16388
16389
16390@subheading The @code{-exec-show-arguments} Command
16391@findex -exec-show-arguments
16392
16393@subsubheading Synopsis
16394
16395@smallexample
16396 -exec-show-arguments
16397@end smallexample
16398
16399Print the arguments of the program.
16400
16401@subsubheading @value{GDBN} Command
16402
16403The corresponding @value{GDBN} command is @samp{show args}.
16404
16405@subsubheading Example
16406N.A.
16407
16408@c @subheading -exec-signal
16409
16410@subheading The @code{-exec-step} Command
16411@findex -exec-step
16412
16413@subsubheading Synopsis
16414
16415@smallexample
16416 -exec-step
16417@end smallexample
16418
16419Asynchronous command. Resumes execution of the inferior program, stopping
16420when the beginning of the next source line is reached, if the next
16421source line is not a function call. If it is, stop at the first
16422instruction of the called function.
16423
16424@subsubheading @value{GDBN} Command
16425
16426The corresponding @value{GDBN} command is @samp{step}.
16427
16428@subsubheading Example
16429
16430Stepping into a function:
16431
16432@smallexample
16433-exec-step
16434^running
16435(@value{GDBP})
16436*stopped,reason="end-stepping-range",
16437frame=@{func="foo",args=[@{name="a",value="10"@},
16438@{name="b",value="0"@}],file="recursive2.c",line="11"@}
16439(@value{GDBP})
16440@end smallexample
16441
16442Regular stepping:
16443
16444@smallexample
16445-exec-step
16446^running
16447(@value{GDBP})
16448*stopped,reason="end-stepping-range",line="14",file="recursive2.c"
16449(@value{GDBP})
16450@end smallexample
16451
16452
16453@subheading The @code{-exec-step-instruction} Command
16454@findex -exec-step-instruction
16455
16456@subsubheading Synopsis
16457
16458@smallexample
16459 -exec-step-instruction
16460@end smallexample
16461
16462Asynchronous command. Resumes the inferior which executes one machine
16463instruction. The output, once @value{GDBN} has stopped, will vary depending on
16464whether we have stopped in the middle of a source line or not. In the
16465former case, the address at which the program stopped will be printed as
16466well.
16467
16468@subsubheading @value{GDBN} Command
16469
16470The corresponding @value{GDBN} command is @samp{stepi}.
16471
16472@subsubheading Example
16473
16474@smallexample
16475(@value{GDBP})
16476-exec-step-instruction
16477^running
16478
16479(@value{GDBP})
16480*stopped,reason="end-stepping-range",
16481frame=@{func="foo",args=[],file="try.c",line="10"@}
16482(@value{GDBP})
16483-exec-step-instruction
16484^running
16485
16486(@value{GDBP})
16487*stopped,reason="end-stepping-range",
16488frame=@{addr="0x000100f4",func="foo",args=[],file="try.c",line="10"@}
16489(@value{GDBP})
16490@end smallexample
16491
16492
16493@subheading The @code{-exec-until} Command
16494@findex -exec-until
16495
16496@subsubheading Synopsis
16497
16498@smallexample
16499 -exec-until [ @var{location} ]
16500@end smallexample
16501
16502Asynchronous command. Executes the inferior until the @var{location}
16503specified in the argument is reached. If there is no argument, the inferior
16504executes until a source line greater than the current one is reached.
16505The reason for stopping in this case will be @samp{location-reached}.
16506
16507@subsubheading @value{GDBN} Command
16508
16509The corresponding @value{GDBN} command is @samp{until}.
16510
16511@subsubheading Example
16512
16513@smallexample
16514(@value{GDBP})
16515-exec-until recursive2.c:6
16516^running
16517(@value{GDBP})
16518x = 55
16519*stopped,reason="location-reached",frame=@{func="main",args=[],
16520file="recursive2.c",line="6"@}
16521(@value{GDBP})
16522@end smallexample
16523
16524@ignore
16525@subheading -file-clear
16526Is this going away????
16527@end ignore
16528
16529
16530@subheading The @code{-file-exec-and-symbols} Command
16531@findex -file-exec-and-symbols
16532
16533@subsubheading Synopsis
16534
16535@smallexample
16536 -file-exec-and-symbols @var{file}
16537@end smallexample
16538
16539Specify the executable file to be debugged. This file is the one from
16540which the symbol table is also read. If no file is specified, the
16541command clears the executable and symbol information. If breakpoints
16542are set when using this command with no arguments, @value{GDBN} will produce
16543error messages. Otherwise, no output is produced, except a completion
16544notification.
16545
16546@subsubheading @value{GDBN} Command
16547
16548The corresponding @value{GDBN} command is @samp{file}.
16549
16550@subsubheading Example
16551
16552@smallexample
16553(@value{GDBP})
16554-file-exec-and-symbols /kwikemart/marge/ezannoni/TRUNK/mbx/hello.mbx
16555^done
16556(@value{GDBP})
16557@end smallexample
16558
16559
16560@subheading The @code{-file-exec-file} Command
16561@findex -file-exec-file
16562
16563@subsubheading Synopsis
16564
16565@smallexample
16566 -file-exec-file @var{file}
16567@end smallexample
16568
16569Specify the executable file to be debugged. Unlike
16570@samp{-file-exec-and-symbols}, the symbol table is @emph{not} read
16571from this file. If used without argument, @value{GDBN} clears the information
16572about the executable file. No output is produced, except a completion
16573notification.
16574
16575@subsubheading @value{GDBN} Command
16576
16577The corresponding @value{GDBN} command is @samp{exec-file}.
16578
16579@subsubheading Example
16580
16581@smallexample
16582(@value{GDBP})
16583-file-exec-file /kwikemart/marge/ezannoni/TRUNK/mbx/hello.mbx
16584^done
16585(@value{GDBP})
16586@end smallexample
16587
16588
16589@subheading The @code{-file-list-exec-sections} Command
16590@findex -file-list-exec-sections
16591
16592@subsubheading Synopsis
16593
16594@smallexample
16595 -file-list-exec-sections
16596@end smallexample
16597
16598List the sections of the current executable file.
16599
16600@subsubheading @value{GDBN} Command
16601
16602The @value{GDBN} command @samp{info file} shows, among the rest, the same
16603information as this command. @code{gdbtk} has a corresponding command
16604@samp{gdb_load_info}.
16605
16606@subsubheading Example
16607N.A.
16608
16609
1abaf70c
BR
16610@subheading The @code{-file-list-exec-source-file} Command
16611@findex -file-list-exec-source-file
16612
16613@subsubheading Synopsis
16614
16615@smallexample
16616 -file-list-exec-source-file
16617@end smallexample
16618
16619List the line number, the current source file, and the absolute path
16620to the current source file for the current executable.
16621
16622@subsubheading @value{GDBN} Command
16623
16624There's no @value{GDBN} command which directly corresponds to this one.
16625
16626@subsubheading Example
16627
16628@smallexample
16629(@value{GDBP})
16630123-file-list-exec-source-file
16631123^done,line="1",file="foo.c",fullname="/home/bar/foo.c"
16632(@value{GDBP})
16633@end smallexample
16634
16635
922fbb7b
AC
16636@subheading The @code{-file-list-exec-source-files} Command
16637@findex -file-list-exec-source-files
16638
16639@subsubheading Synopsis
16640
16641@smallexample
16642 -file-list-exec-source-files
16643@end smallexample
16644
16645List the source files for the current executable.
16646
16647@subsubheading @value{GDBN} Command
16648
16649There's no @value{GDBN} command which directly corresponds to this one.
16650@code{gdbtk} has an analogous command @samp{gdb_listfiles}.
16651
16652@subsubheading Example
16653N.A.
16654
16655
16656@subheading The @code{-file-list-shared-libraries} Command
16657@findex -file-list-shared-libraries
16658
16659@subsubheading Synopsis
16660
16661@smallexample
16662 -file-list-shared-libraries
16663@end smallexample
16664
16665List the shared libraries in the program.
16666
16667@subsubheading @value{GDBN} Command
16668
16669The corresponding @value{GDBN} command is @samp{info shared}.
16670
16671@subsubheading Example
16672N.A.
16673
16674
16675@subheading The @code{-file-list-symbol-files} Command
16676@findex -file-list-symbol-files
16677
16678@subsubheading Synopsis
16679
16680@smallexample
16681 -file-list-symbol-files
16682@end smallexample
16683
16684List symbol files.
16685
16686@subsubheading @value{GDBN} Command
16687
16688The corresponding @value{GDBN} command is @samp{info file} (part of it).
16689
16690@subsubheading Example
16691N.A.
16692
16693
16694@subheading The @code{-file-symbol-file} Command
16695@findex -file-symbol-file
16696
16697@subsubheading Synopsis
16698
16699@smallexample
16700 -file-symbol-file @var{file}
16701@end smallexample
16702
16703Read symbol table info from the specified @var{file} argument. When
16704used without arguments, clears @value{GDBN}'s symbol table info. No output is
16705produced, except for a completion notification.
16706
16707@subsubheading @value{GDBN} Command
16708
16709The corresponding @value{GDBN} command is @samp{symbol-file}.
16710
16711@subsubheading Example
16712
16713@smallexample
16714(@value{GDBP})
16715-file-symbol-file /kwikemart/marge/ezannoni/TRUNK/mbx/hello.mbx
16716^done
16717(@value{GDBP})
16718@end smallexample
16719
16720@c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
16721@node GDB/MI Miscellaneous Commands
16722@section Miscellaneous @value{GDBN} commands in @sc{gdb/mi}
16723
16724@c @subheading -gdb-complete
16725
16726@subheading The @code{-gdb-exit} Command
16727@findex -gdb-exit
16728
16729@subsubheading Synopsis
16730
16731@smallexample
16732 -gdb-exit
16733@end smallexample
16734
16735Exit @value{GDBN} immediately.
16736
16737@subsubheading @value{GDBN} Command
16738
16739Approximately corresponds to @samp{quit}.
16740
16741@subsubheading Example
16742
16743@smallexample
16744(@value{GDBP})
16745-gdb-exit
16746@end smallexample
16747
16748@subheading The @code{-gdb-set} Command
16749@findex -gdb-set
16750
16751@subsubheading Synopsis
16752
16753@smallexample
16754 -gdb-set
16755@end smallexample
16756
16757Set an internal @value{GDBN} variable.
16758@c IS THIS A DOLLAR VARIABLE? OR SOMETHING LIKE ANNOTATE ?????
16759
16760@subsubheading @value{GDBN} Command
16761
16762The corresponding @value{GDBN} command is @samp{set}.
16763
16764@subsubheading Example
16765
16766@smallexample
16767(@value{GDBP})
16768-gdb-set $foo=3
16769^done
16770(@value{GDBP})
16771@end smallexample
16772
16773
16774@subheading The @code{-gdb-show} Command
16775@findex -gdb-show
16776
16777@subsubheading Synopsis
16778
16779@smallexample
16780 -gdb-show
16781@end smallexample
16782
16783Show the current value of a @value{GDBN} variable.
16784
16785@subsubheading @value{GDBN} command
16786
16787The corresponding @value{GDBN} command is @samp{show}.
16788
16789@subsubheading Example
16790
16791@smallexample
16792(@value{GDBP})
16793-gdb-show annotate
16794^done,value="0"
16795(@value{GDBP})
16796@end smallexample
16797
16798@c @subheading -gdb-source
16799
16800
16801@subheading The @code{-gdb-version} Command
16802@findex -gdb-version
16803
16804@subsubheading Synopsis
16805
16806@smallexample
16807 -gdb-version
16808@end smallexample
16809
16810Show version information for @value{GDBN}. Used mostly in testing.
16811
16812@subsubheading @value{GDBN} Command
16813
16814There's no equivalent @value{GDBN} command. @value{GDBN} by default shows this
16815information when you start an interactive session.
16816
16817@subsubheading Example
16818
16819@c This example modifies the actual output from GDB to avoid overfull
16820@c box in TeX.
16821@smallexample
16822(@value{GDBP})
16823-gdb-version
16824~GNU gdb 5.2.1
16825~Copyright 2000 Free Software Foundation, Inc.
16826~GDB is free software, covered by the GNU General Public License, and
16827~you are welcome to change it and/or distribute copies of it under
16828~ certain conditions.
16829~Type "show copying" to see the conditions.
16830~There is absolutely no warranty for GDB. Type "show warranty" for
16831~ details.
16832~This GDB was configured as
16833 "--host=sparc-sun-solaris2.5.1 --target=ppc-eabi".
16834^done
16835(@value{GDBP})
16836@end smallexample
16837
16838@subheading The @code{-interpreter-exec} Command
16839@findex -interpreter-exec
16840
16841@subheading Synopsis
16842
16843@smallexample
16844-interpreter-exec @var{interpreter} @var{command}
16845@end smallexample
16846
16847Execute the specified @var{command} in the given @var{interpreter}.
16848
16849@subheading @value{GDBN} Command
16850
16851The corresponding @value{GDBN} command is @samp{interpreter-exec}.
16852
16853@subheading Example
16854
16855@smallexample
16856(@value{GDBP})
16857-interpreter-exec console "break main"
16858&"During symbol reading, couldn't parse type; debugger out of date?.\n"
16859&"During symbol reading, bad structure-type format.\n"
16860~"Breakpoint 1 at 0x8074fc6: file ../../src/gdb/main.c, line 743.\n"
16861^done
16862(@value{GDBP})
16863@end smallexample
16864
16865@ignore
16866@c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
16867@node GDB/MI Kod Commands
16868@section @sc{gdb/mi} Kod Commands
16869
16870The Kod commands are not implemented.
16871
16872@c @subheading -kod-info
16873
16874@c @subheading -kod-list
16875
16876@c @subheading -kod-list-object-types
16877
16878@c @subheading -kod-show
16879
16880@c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
16881@node GDB/MI Memory Overlay Commands
16882@section @sc{gdb/mi} Memory Overlay Commands
16883
16884The memory overlay commands are not implemented.
16885
16886@c @subheading -overlay-auto
16887
16888@c @subheading -overlay-list-mapping-state
16889
16890@c @subheading -overlay-list-overlays
16891
16892@c @subheading -overlay-map
16893
16894@c @subheading -overlay-off
16895
16896@c @subheading -overlay-on
16897
16898@c @subheading -overlay-unmap
16899
16900@c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
16901@node GDB/MI Signal Handling Commands
16902@section @sc{gdb/mi} Signal Handling Commands
16903
16904Signal handling commands are not implemented.
16905
16906@c @subheading -signal-handle
16907
16908@c @subheading -signal-list-handle-actions
16909
16910@c @subheading -signal-list-signal-types
16911@end ignore
16912
16913
16914@c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
16915@node GDB/MI Stack Manipulation
16916@section @sc{gdb/mi} Stack Manipulation Commands
16917
16918
16919@subheading The @code{-stack-info-frame} Command
16920@findex -stack-info-frame
16921
16922@subsubheading Synopsis
16923
16924@smallexample
16925 -stack-info-frame
16926@end smallexample
16927
16928Get info on the current frame.
16929
16930@subsubheading @value{GDBN} Command
16931
16932The corresponding @value{GDBN} command is @samp{info frame} or @samp{frame}
16933(without arguments).
16934
16935@subsubheading Example
16936N.A.
16937
16938@subheading The @code{-stack-info-depth} Command
16939@findex -stack-info-depth
16940
16941@subsubheading Synopsis
16942
16943@smallexample
16944 -stack-info-depth [ @var{max-depth} ]
16945@end smallexample
16946
16947Return the depth of the stack. If the integer argument @var{max-depth}
16948is specified, do not count beyond @var{max-depth} frames.
16949
16950@subsubheading @value{GDBN} Command
16951
16952There's no equivalent @value{GDBN} command.
16953
16954@subsubheading Example
16955
16956For a stack with frame levels 0 through 11:
16957
16958@smallexample
16959(@value{GDBP})
16960-stack-info-depth
16961^done,depth="12"
16962(@value{GDBP})
16963-stack-info-depth 4
16964^done,depth="4"
16965(@value{GDBP})
16966-stack-info-depth 12
16967^done,depth="12"
16968(@value{GDBP})
16969-stack-info-depth 11
16970^done,depth="11"
16971(@value{GDBP})
16972-stack-info-depth 13
16973^done,depth="12"
16974(@value{GDBP})
16975@end smallexample
16976
16977@subheading The @code{-stack-list-arguments} Command
16978@findex -stack-list-arguments
16979
16980@subsubheading Synopsis
16981
16982@smallexample
16983 -stack-list-arguments @var{show-values}
16984 [ @var{low-frame} @var{high-frame} ]
16985@end smallexample
16986
16987Display a list of the arguments for the frames between @var{low-frame}
16988and @var{high-frame} (inclusive). If @var{low-frame} and
16989@var{high-frame} are not provided, list the arguments for the whole call
16990stack.
16991
16992The @var{show-values} argument must have a value of 0 or 1. A value of
169930 means that only the names of the arguments are listed, a value of 1
16994means that both names and values of the arguments are printed.
16995
16996@subsubheading @value{GDBN} Command
16997
16998@value{GDBN} does not have an equivalent command. @code{gdbtk} has a
16999@samp{gdb_get_args} command which partially overlaps with the
17000functionality of @samp{-stack-list-arguments}.
17001
17002@subsubheading Example
17003
17004@smallexample
17005(@value{GDBP})
17006-stack-list-frames
17007^done,
17008stack=[
17009frame=@{level="0",addr="0x00010734",func="callee4",
17010file="../../../devo/gdb/testsuite/gdb.mi/basics.c",line="8"@},
17011frame=@{level="1",addr="0x0001076c",func="callee3",
17012file="../../../devo/gdb/testsuite/gdb.mi/basics.c",line="17"@},
17013frame=@{level="2",addr="0x0001078c",func="callee2",
17014file="../../../devo/gdb/testsuite/gdb.mi/basics.c",line="22"@},
17015frame=@{level="3",addr="0x000107b4",func="callee1",
17016file="../../../devo/gdb/testsuite/gdb.mi/basics.c",line="27"@},
17017frame=@{level="4",addr="0x000107e0",func="main",
17018file="../../../devo/gdb/testsuite/gdb.mi/basics.c",line="32"@}]
17019(@value{GDBP})
17020-stack-list-arguments 0
17021^done,
17022stack-args=[
17023frame=@{level="0",args=[]@},
17024frame=@{level="1",args=[name="strarg"]@},
17025frame=@{level="2",args=[name="intarg",name="strarg"]@},
17026frame=@{level="3",args=[name="intarg",name="strarg",name="fltarg"]@},
17027frame=@{level="4",args=[]@}]
17028(@value{GDBP})
17029-stack-list-arguments 1
17030^done,
17031stack-args=[
17032frame=@{level="0",args=[]@},
17033frame=@{level="1",
17034 args=[@{name="strarg",value="0x11940 \"A string argument.\""@}]@},
17035frame=@{level="2",args=[
17036@{name="intarg",value="2"@},
17037@{name="strarg",value="0x11940 \"A string argument.\""@}]@},
17038@{frame=@{level="3",args=[
17039@{name="intarg",value="2"@},
17040@{name="strarg",value="0x11940 \"A string argument.\""@},
17041@{name="fltarg",value="3.5"@}]@},
17042frame=@{level="4",args=[]@}]
17043(@value{GDBP})
17044-stack-list-arguments 0 2 2
17045^done,stack-args=[frame=@{level="2",args=[name="intarg",name="strarg"]@}]
17046(@value{GDBP})
17047-stack-list-arguments 1 2 2
17048^done,stack-args=[frame=@{level="2",
17049args=[@{name="intarg",value="2"@},
17050@{name="strarg",value="0x11940 \"A string argument.\""@}]@}]
17051(@value{GDBP})
17052@end smallexample
17053
17054@c @subheading -stack-list-exception-handlers
17055
17056
17057@subheading The @code{-stack-list-frames} Command
17058@findex -stack-list-frames
17059
17060@subsubheading Synopsis
17061
17062@smallexample
17063 -stack-list-frames [ @var{low-frame} @var{high-frame} ]
17064@end smallexample
17065
17066List the frames currently on the stack. For each frame it displays the
17067following info:
17068
17069@table @samp
17070@item @var{level}
17071The frame number, 0 being the topmost frame, i.e. the innermost function.
17072@item @var{addr}
17073The @code{$pc} value for that frame.
17074@item @var{func}
17075Function name.
17076@item @var{file}
17077File name of the source file where the function lives.
17078@item @var{line}
17079Line number corresponding to the @code{$pc}.
17080@end table
17081
17082If invoked without arguments, this command prints a backtrace for the
17083whole stack. If given two integer arguments, it shows the frames whose
17084levels are between the two arguments (inclusive). If the two arguments
17085are equal, it shows the single frame at the corresponding level.
17086
17087@subsubheading @value{GDBN} Command
17088
17089The corresponding @value{GDBN} commands are @samp{backtrace} and @samp{where}.
17090
17091@subsubheading Example
17092
17093Full stack backtrace:
17094
17095@smallexample
17096(@value{GDBP})
17097-stack-list-frames
17098^done,stack=
17099[frame=@{level="0",addr="0x0001076c",func="foo",
17100 file="recursive2.c",line="11"@},
17101frame=@{level="1",addr="0x000107a4",func="foo",
17102 file="recursive2.c",line="14"@},
17103frame=@{level="2",addr="0x000107a4",func="foo",
17104 file="recursive2.c",line="14"@},
17105frame=@{level="3",addr="0x000107a4",func="foo",
17106 file="recursive2.c",line="14"@},
17107frame=@{level="4",addr="0x000107a4",func="foo",
17108 file="recursive2.c",line="14"@},
17109frame=@{level="5",addr="0x000107a4",func="foo",
17110 file="recursive2.c",line="14"@},
17111frame=@{level="6",addr="0x000107a4",func="foo",
17112 file="recursive2.c",line="14"@},
17113frame=@{level="7",addr="0x000107a4",func="foo",
17114 file="recursive2.c",line="14"@},
17115frame=@{level="8",addr="0x000107a4",func="foo",
17116 file="recursive2.c",line="14"@},
17117frame=@{level="9",addr="0x000107a4",func="foo",
17118 file="recursive2.c",line="14"@},
17119frame=@{level="10",addr="0x000107a4",func="foo",
17120 file="recursive2.c",line="14"@},
17121frame=@{level="11",addr="0x00010738",func="main",
17122 file="recursive2.c",line="4"@}]
17123(@value{GDBP})
17124@end smallexample
17125
17126Show frames between @var{low_frame} and @var{high_frame}:
17127
17128@smallexample
17129(@value{GDBP})
17130-stack-list-frames 3 5
17131^done,stack=
17132[frame=@{level="3",addr="0x000107a4",func="foo",
17133 file="recursive2.c",line="14"@},
17134frame=@{level="4",addr="0x000107a4",func="foo",
17135 file="recursive2.c",line="14"@},
17136frame=@{level="5",addr="0x000107a4",func="foo",
17137 file="recursive2.c",line="14"@}]
17138(@value{GDBP})
17139@end smallexample
17140
17141Show a single frame:
17142
17143@smallexample
17144(@value{GDBP})
17145-stack-list-frames 3 3
17146^done,stack=
17147[frame=@{level="3",addr="0x000107a4",func="foo",
17148 file="recursive2.c",line="14"@}]
17149(@value{GDBP})
17150@end smallexample
17151
17152
17153@subheading The @code{-stack-list-locals} Command
17154@findex -stack-list-locals
17155
17156@subsubheading Synopsis
17157
17158@smallexample
17159 -stack-list-locals @var{print-values}
17160@end smallexample
17161
17162Display the local variable names for the current frame. With an
17163argument of 0 prints only the names of the variables, with argument of 1
17164prints also their values.
17165
17166@subsubheading @value{GDBN} Command
17167
17168@samp{info locals} in @value{GDBN}, @samp{gdb_get_locals} in @code{gdbtk}.
17169
17170@subsubheading Example
17171
17172@smallexample
17173(@value{GDBP})
17174-stack-list-locals 0
17175^done,locals=[name="A",name="B",name="C"]
17176(@value{GDBP})
17177-stack-list-locals 1
17178^done,locals=[@{name="A",value="1"@},@{name="B",value="2"@},
17179 @{name="C",value="3"@}]
17180(@value{GDBP})
17181@end smallexample
17182
17183
17184@subheading The @code{-stack-select-frame} Command
17185@findex -stack-select-frame
17186
17187@subsubheading Synopsis
17188
17189@smallexample
17190 -stack-select-frame @var{framenum}
17191@end smallexample
17192
17193Change the current frame. Select a different frame @var{framenum} on
17194the stack.
17195
17196@subsubheading @value{GDBN} Command
17197
17198The corresponding @value{GDBN} commands are @samp{frame}, @samp{up},
17199@samp{down}, @samp{select-frame}, @samp{up-silent}, and @samp{down-silent}.
17200
17201@subsubheading Example
17202
17203@smallexample
17204(@value{GDBP})
17205-stack-select-frame 2
17206^done
17207(@value{GDBP})
17208@end smallexample
17209
17210@c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
17211@node GDB/MI Symbol Query
17212@section @sc{gdb/mi} Symbol Query Commands
17213
17214
17215@subheading The @code{-symbol-info-address} Command
17216@findex -symbol-info-address
17217
17218@subsubheading Synopsis
17219
17220@smallexample
17221 -symbol-info-address @var{symbol}
17222@end smallexample
17223
17224Describe where @var{symbol} is stored.
17225
17226@subsubheading @value{GDBN} Command
17227
17228The corresponding @value{GDBN} command is @samp{info address}.
17229
17230@subsubheading Example
17231N.A.
17232
17233
17234@subheading The @code{-symbol-info-file} Command
17235@findex -symbol-info-file
17236
17237@subsubheading Synopsis
17238
17239@smallexample
17240 -symbol-info-file
17241@end smallexample
17242
17243Show the file for the symbol.
17244
17245@subsubheading @value{GDBN} Command
17246
17247There's no equivalent @value{GDBN} command. @code{gdbtk} has
17248@samp{gdb_find_file}.
17249
17250@subsubheading Example
17251N.A.
17252
17253
17254@subheading The @code{-symbol-info-function} Command
17255@findex -symbol-info-function
17256
17257@subsubheading Synopsis
17258
17259@smallexample
17260 -symbol-info-function
17261@end smallexample
17262
17263Show which function the symbol lives in.
17264
17265@subsubheading @value{GDBN} Command
17266
17267@samp{gdb_get_function} in @code{gdbtk}.
17268
17269@subsubheading Example
17270N.A.
17271
17272
17273@subheading The @code{-symbol-info-line} Command
17274@findex -symbol-info-line
17275
17276@subsubheading Synopsis
17277
17278@smallexample
17279 -symbol-info-line
17280@end smallexample
17281
17282Show the core addresses of the code for a source line.
17283
17284@subsubheading @value{GDBN} Command
17285
71952f4c 17286The corresponding @value{GDBN} command is @samp{info line}.
922fbb7b
AC
17287@code{gdbtk} has the @samp{gdb_get_line} and @samp{gdb_get_file} commands.
17288
17289@subsubheading Example
17290N.A.
17291
17292
17293@subheading The @code{-symbol-info-symbol} Command
17294@findex -symbol-info-symbol
17295
17296@subsubheading Synopsis
17297
17298@smallexample
17299 -symbol-info-symbol @var{addr}
17300@end smallexample
17301
17302Describe what symbol is at location @var{addr}.
17303
17304@subsubheading @value{GDBN} Command
17305
17306The corresponding @value{GDBN} command is @samp{info symbol}.
17307
17308@subsubheading Example
17309N.A.
17310
17311
17312@subheading The @code{-symbol-list-functions} Command
17313@findex -symbol-list-functions
17314
17315@subsubheading Synopsis
17316
17317@smallexample
17318 -symbol-list-functions
17319@end smallexample
17320
17321List the functions in the executable.
17322
17323@subsubheading @value{GDBN} Command
17324
17325@samp{info functions} in @value{GDBN}, @samp{gdb_listfunc} and
17326@samp{gdb_search} in @code{gdbtk}.
17327
17328@subsubheading Example
17329N.A.
17330
17331
32e7087d
JB
17332@subheading The @code{-symbol-list-lines} Command
17333@findex -symbol-list-lines
17334
17335@subsubheading Synopsis
17336
17337@smallexample
17338 -symbol-list-lines @var{filename}
17339@end smallexample
17340
17341Print the list of lines that contain code and their associated program
17342addresses for the given source filename. The entries are sorted in
17343ascending PC order.
17344
17345@subsubheading @value{GDBN} Command
17346
17347There is no corresponding @value{GDBN} command.
17348
17349@subsubheading Example
17350@smallexample
17351(@value{GDBP})
17352-symbol-list-lines basics.c
54ff5908 17353^done,lines=[@{pc="0x08048554",line="7"@},@{pc="0x0804855a",line="8"@}]
32e7087d
JB
17354(@value{GDBP})
17355@end smallexample
17356
17357
922fbb7b
AC
17358@subheading The @code{-symbol-list-types} Command
17359@findex -symbol-list-types
17360
17361@subsubheading Synopsis
17362
17363@smallexample
17364 -symbol-list-types
17365@end smallexample
17366
17367List all the type names.
17368
17369@subsubheading @value{GDBN} Command
17370
17371The corresponding commands are @samp{info types} in @value{GDBN},
17372@samp{gdb_search} in @code{gdbtk}.
17373
17374@subsubheading Example
17375N.A.
17376
17377
17378@subheading The @code{-symbol-list-variables} Command
17379@findex -symbol-list-variables
17380
17381@subsubheading Synopsis
17382
17383@smallexample
17384 -symbol-list-variables
17385@end smallexample
17386
17387List all the global and static variable names.
17388
17389@subsubheading @value{GDBN} Command
17390
17391@samp{info variables} in @value{GDBN}, @samp{gdb_search} in @code{gdbtk}.
17392
17393@subsubheading Example
17394N.A.
17395
17396
17397@subheading The @code{-symbol-locate} Command
17398@findex -symbol-locate
17399
17400@subsubheading Synopsis
17401
17402@smallexample
17403 -symbol-locate
17404@end smallexample
17405
17406@subsubheading @value{GDBN} Command
17407
17408@samp{gdb_loc} in @code{gdbtk}.
17409
17410@subsubheading Example
17411N.A.
17412
17413
17414@subheading The @code{-symbol-type} Command
17415@findex -symbol-type
17416
17417@subsubheading Synopsis
17418
17419@smallexample
17420 -symbol-type @var{variable}
17421@end smallexample
17422
17423Show type of @var{variable}.
17424
17425@subsubheading @value{GDBN} Command
17426
17427The corresponding @value{GDBN} command is @samp{ptype}, @code{gdbtk} has
17428@samp{gdb_obj_variable}.
17429
17430@subsubheading Example
17431N.A.
17432
17433
17434@c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
17435@node GDB/MI Target Manipulation
17436@section @sc{gdb/mi} Target Manipulation Commands
17437
17438
17439@subheading The @code{-target-attach} Command
17440@findex -target-attach
17441
17442@subsubheading Synopsis
17443
17444@smallexample
17445 -target-attach @var{pid} | @var{file}
17446@end smallexample
17447
17448Attach to a process @var{pid} or a file @var{file} outside of @value{GDBN}.
17449
17450@subsubheading @value{GDBN} command
17451
17452The corresponding @value{GDBN} command is @samp{attach}.
17453
17454@subsubheading Example
17455N.A.
17456
17457
17458@subheading The @code{-target-compare-sections} Command
17459@findex -target-compare-sections
17460
17461@subsubheading Synopsis
17462
17463@smallexample
17464 -target-compare-sections [ @var{section} ]
17465@end smallexample
17466
17467Compare data of section @var{section} on target to the exec file.
17468Without the argument, all sections are compared.
17469
17470@subsubheading @value{GDBN} Command
17471
17472The @value{GDBN} equivalent is @samp{compare-sections}.
17473
17474@subsubheading Example
17475N.A.
17476
17477
17478@subheading The @code{-target-detach} Command
17479@findex -target-detach
17480
17481@subsubheading Synopsis
17482
17483@smallexample
17484 -target-detach
17485@end smallexample
17486
17487Disconnect from the remote target. There's no output.
17488
17489@subsubheading @value{GDBN} command
17490
17491The corresponding @value{GDBN} command is @samp{detach}.
17492
17493@subsubheading Example
17494
17495@smallexample
17496(@value{GDBP})
17497-target-detach
17498^done
17499(@value{GDBP})
17500@end smallexample
17501
17502
07f31aa6
DJ
17503@subheading The @code{-target-disconnect} Command
17504@findex -target-disconnect
17505
17506@subsubheading Synopsis
17507
17508@example
17509 -target-disconnect
17510@end example
17511
17512Disconnect from the remote target. There's no output.
17513
17514@subsubheading @value{GDBN} command
17515
17516The corresponding @value{GDBN} command is @samp{disconnect}.
17517
17518@subsubheading Example
17519
17520@smallexample
17521(@value{GDBP})
17522-target-disconnect
17523^done
17524(@value{GDBP})
17525@end smallexample
17526
17527
922fbb7b
AC
17528@subheading The @code{-target-download} Command
17529@findex -target-download
17530
17531@subsubheading Synopsis
17532
17533@smallexample
17534 -target-download
17535@end smallexample
17536
17537Loads the executable onto the remote target.
17538It prints out an update message every half second, which includes the fields:
17539
17540@table @samp
17541@item section
17542The name of the section.
17543@item section-sent
17544The size of what has been sent so far for that section.
17545@item section-size
17546The size of the section.
17547@item total-sent
17548The total size of what was sent so far (the current and the previous sections).
17549@item total-size
17550The size of the overall executable to download.
17551@end table
17552
17553@noindent
17554Each message is sent as status record (@pxref{GDB/MI Output Syntax, ,
17555@sc{gdb/mi} Output Syntax}).
17556
17557In addition, it prints the name and size of the sections, as they are
17558downloaded. These messages include the following fields:
17559
17560@table @samp
17561@item section
17562The name of the section.
17563@item section-size
17564The size of the section.
17565@item total-size
17566The size of the overall executable to download.
17567@end table
17568
17569@noindent
17570At the end, a summary is printed.
17571
17572@subsubheading @value{GDBN} Command
17573
17574The corresponding @value{GDBN} command is @samp{load}.
17575
17576@subsubheading Example
17577
17578Note: each status message appears on a single line. Here the messages
17579have been broken down so that they can fit onto a page.
17580
17581@smallexample
17582(@value{GDBP})
17583-target-download
17584+download,@{section=".text",section-size="6668",total-size="9880"@}
17585+download,@{section=".text",section-sent="512",section-size="6668",
17586total-sent="512",total-size="9880"@}
17587+download,@{section=".text",section-sent="1024",section-size="6668",
17588total-sent="1024",total-size="9880"@}
17589+download,@{section=".text",section-sent="1536",section-size="6668",
17590total-sent="1536",total-size="9880"@}
17591+download,@{section=".text",section-sent="2048",section-size="6668",
17592total-sent="2048",total-size="9880"@}
17593+download,@{section=".text",section-sent="2560",section-size="6668",
17594total-sent="2560",total-size="9880"@}
17595+download,@{section=".text",section-sent="3072",section-size="6668",
17596total-sent="3072",total-size="9880"@}
17597+download,@{section=".text",section-sent="3584",section-size="6668",
17598total-sent="3584",total-size="9880"@}
17599+download,@{section=".text",section-sent="4096",section-size="6668",
17600total-sent="4096",total-size="9880"@}
17601+download,@{section=".text",section-sent="4608",section-size="6668",
17602total-sent="4608",total-size="9880"@}
17603+download,@{section=".text",section-sent="5120",section-size="6668",
17604total-sent="5120",total-size="9880"@}
17605+download,@{section=".text",section-sent="5632",section-size="6668",
17606total-sent="5632",total-size="9880"@}
17607+download,@{section=".text",section-sent="6144",section-size="6668",
17608total-sent="6144",total-size="9880"@}
17609+download,@{section=".text",section-sent="6656",section-size="6668",
17610total-sent="6656",total-size="9880"@}
17611+download,@{section=".init",section-size="28",total-size="9880"@}
17612+download,@{section=".fini",section-size="28",total-size="9880"@}
17613+download,@{section=".data",section-size="3156",total-size="9880"@}
17614+download,@{section=".data",section-sent="512",section-size="3156",
17615total-sent="7236",total-size="9880"@}
17616+download,@{section=".data",section-sent="1024",section-size="3156",
17617total-sent="7748",total-size="9880"@}
17618+download,@{section=".data",section-sent="1536",section-size="3156",
17619total-sent="8260",total-size="9880"@}
17620+download,@{section=".data",section-sent="2048",section-size="3156",
17621total-sent="8772",total-size="9880"@}
17622+download,@{section=".data",section-sent="2560",section-size="3156",
17623total-sent="9284",total-size="9880"@}
17624+download,@{section=".data",section-sent="3072",section-size="3156",
17625total-sent="9796",total-size="9880"@}
17626^done,address="0x10004",load-size="9880",transfer-rate="6586",
17627write-rate="429"
17628(@value{GDBP})
17629@end smallexample
17630
17631
17632@subheading The @code{-target-exec-status} Command
17633@findex -target-exec-status
17634
17635@subsubheading Synopsis
17636
17637@smallexample
17638 -target-exec-status
17639@end smallexample
17640
17641Provide information on the state of the target (whether it is running or
17642not, for instance).
17643
17644@subsubheading @value{GDBN} Command
17645
17646There's no equivalent @value{GDBN} command.
17647
17648@subsubheading Example
17649N.A.
17650
17651
17652@subheading The @code{-target-list-available-targets} Command
17653@findex -target-list-available-targets
17654
17655@subsubheading Synopsis
17656
17657@smallexample
17658 -target-list-available-targets
17659@end smallexample
17660
17661List the possible targets to connect to.
17662
17663@subsubheading @value{GDBN} Command
17664
17665The corresponding @value{GDBN} command is @samp{help target}.
17666
17667@subsubheading Example
17668N.A.
17669
17670
17671@subheading The @code{-target-list-current-targets} Command
17672@findex -target-list-current-targets
17673
17674@subsubheading Synopsis
17675
17676@smallexample
17677 -target-list-current-targets
17678@end smallexample
17679
17680Describe the current target.
17681
17682@subsubheading @value{GDBN} Command
17683
17684The corresponding information is printed by @samp{info file} (among
17685other things).
17686
17687@subsubheading Example
17688N.A.
17689
17690
17691@subheading The @code{-target-list-parameters} Command
17692@findex -target-list-parameters
17693
17694@subsubheading Synopsis
17695
17696@smallexample
17697 -target-list-parameters
17698@end smallexample
17699
17700@c ????
17701
17702@subsubheading @value{GDBN} Command
17703
17704No equivalent.
17705
17706@subsubheading Example
17707N.A.
17708
17709
17710@subheading The @code{-target-select} Command
17711@findex -target-select
17712
17713@subsubheading Synopsis
17714
17715@smallexample
17716 -target-select @var{type} @var{parameters @dots{}}
17717@end smallexample
17718
17719Connect @value{GDBN} to the remote target. This command takes two args:
17720
17721@table @samp
17722@item @var{type}
17723The type of target, for instance @samp{async}, @samp{remote}, etc.
17724@item @var{parameters}
17725Device names, host names and the like. @xref{Target Commands, ,
17726Commands for managing targets}, for more details.
17727@end table
17728
17729The output is a connection notification, followed by the address at
17730which the target program is, in the following form:
17731
17732@smallexample
17733^connected,addr="@var{address}",func="@var{function name}",
17734 args=[@var{arg list}]
17735@end smallexample
17736
17737@subsubheading @value{GDBN} Command
17738
17739The corresponding @value{GDBN} command is @samp{target}.
17740
17741@subsubheading Example
17742
17743@smallexample
17744(@value{GDBP})
17745-target-select async /dev/ttya
17746^connected,addr="0xfe00a300",func="??",args=[]
17747(@value{GDBP})
17748@end smallexample
17749
17750@c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
17751@node GDB/MI Thread Commands
17752@section @sc{gdb/mi} Thread Commands
17753
17754
17755@subheading The @code{-thread-info} Command
17756@findex -thread-info
17757
17758@subsubheading Synopsis
17759
17760@smallexample
17761 -thread-info
17762@end smallexample
17763
17764@subsubheading @value{GDBN} command
17765
17766No equivalent.
17767
17768@subsubheading Example
17769N.A.
17770
17771
17772@subheading The @code{-thread-list-all-threads} Command
17773@findex -thread-list-all-threads
17774
17775@subsubheading Synopsis
17776
17777@smallexample
17778 -thread-list-all-threads
17779@end smallexample
17780
17781@subsubheading @value{GDBN} Command
17782
17783The equivalent @value{GDBN} command is @samp{info threads}.
17784
17785@subsubheading Example
17786N.A.
17787
17788
17789@subheading The @code{-thread-list-ids} Command
17790@findex -thread-list-ids
17791
17792@subsubheading Synopsis
17793
17794@smallexample
17795 -thread-list-ids
17796@end smallexample
17797
17798Produces a list of the currently known @value{GDBN} thread ids. At the
17799end of the list it also prints the total number of such threads.
17800
17801@subsubheading @value{GDBN} Command
17802
17803Part of @samp{info threads} supplies the same information.
17804
17805@subsubheading Example
17806
17807No threads present, besides the main process:
17808
17809@smallexample
17810(@value{GDBP})
17811-thread-list-ids
17812^done,thread-ids=@{@},number-of-threads="0"
17813(@value{GDBP})
17814@end smallexample
17815
17816
17817Several threads:
17818
17819@smallexample
17820(@value{GDBP})
17821-thread-list-ids
17822^done,thread-ids=@{thread-id="3",thread-id="2",thread-id="1"@},
17823number-of-threads="3"
17824(@value{GDBP})
17825@end smallexample
17826
17827
17828@subheading The @code{-thread-select} Command
17829@findex -thread-select
17830
17831@subsubheading Synopsis
17832
17833@smallexample
17834 -thread-select @var{threadnum}
17835@end smallexample
17836
17837Make @var{threadnum} the current thread. It prints the number of the new
17838current thread, and the topmost frame for that thread.
17839
17840@subsubheading @value{GDBN} Command
17841
17842The corresponding @value{GDBN} command is @samp{thread}.
17843
17844@subsubheading Example
17845
17846@smallexample
17847(@value{GDBP})
17848-exec-next
17849^running
17850(@value{GDBP})
17851*stopped,reason="end-stepping-range",thread-id="2",line="187",
17852file="../../../devo/gdb/testsuite/gdb.threads/linux-dp.c"
17853(@value{GDBP})
17854-thread-list-ids
17855^done,
17856thread-ids=@{thread-id="3",thread-id="2",thread-id="1"@},
17857number-of-threads="3"
17858(@value{GDBP})
17859-thread-select 3
17860^done,new-thread-id="3",
17861frame=@{level="0",func="vprintf",
17862args=[@{name="format",value="0x8048e9c \"%*s%c %d %c\\n\""@},
17863@{name="arg",value="0x2"@}],file="vprintf.c",line="31"@}
17864(@value{GDBP})
17865@end smallexample
17866
17867@c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
17868@node GDB/MI Tracepoint Commands
17869@section @sc{gdb/mi} Tracepoint Commands
17870
17871The tracepoint commands are not yet implemented.
17872
17873@c @subheading -trace-actions
17874
17875@c @subheading -trace-delete
17876
17877@c @subheading -trace-disable
17878
17879@c @subheading -trace-dump
17880
17881@c @subheading -trace-enable
17882
17883@c @subheading -trace-exists
17884
17885@c @subheading -trace-find
17886
17887@c @subheading -trace-frame-number
17888
17889@c @subheading -trace-info
17890
17891@c @subheading -trace-insert
17892
17893@c @subheading -trace-list
17894
17895@c @subheading -trace-pass-count
17896
17897@c @subheading -trace-save
17898
17899@c @subheading -trace-start
17900
17901@c @subheading -trace-stop
17902
17903
17904@c %%%%%%%%%%%%%%%%%%%%%%%%%%%% SECTION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
17905@node GDB/MI Variable Objects
17906@section @sc{gdb/mi} Variable Objects
17907
17908
17909@subheading Motivation for Variable Objects in @sc{gdb/mi}
17910
17911For the implementation of a variable debugger window (locals, watched
17912expressions, etc.), we are proposing the adaptation of the existing code
17913used by @code{Insight}.
17914
17915The two main reasons for that are:
17916
17917@enumerate 1
17918@item
17919It has been proven in practice (it is already on its second generation).
17920
17921@item
17922It will shorten development time (needless to say how important it is
17923now).
17924@end enumerate
17925
17926The original interface was designed to be used by Tcl code, so it was
17927slightly changed so it could be used through @sc{gdb/mi}. This section
17928describes the @sc{gdb/mi} operations that will be available and gives some
17929hints about their use.
17930
17931@emph{Note}: In addition to the set of operations described here, we
17932expect the @sc{gui} implementation of a variable window to require, at
17933least, the following operations:
17934
17935@itemize @bullet
17936@item @code{-gdb-show} @code{output-radix}
17937@item @code{-stack-list-arguments}
17938@item @code{-stack-list-locals}
17939@item @code{-stack-select-frame}
17940@end itemize
17941
17942@subheading Introduction to Variable Objects in @sc{gdb/mi}
17943
17944@cindex variable objects in @sc{gdb/mi}
17945The basic idea behind variable objects is the creation of a named object
17946to represent a variable, an expression, a memory location or even a CPU
17947register. For each object created, a set of operations is available for
17948examining or changing its properties.
17949
17950Furthermore, complex data types, such as C structures, are represented
17951in a tree format. For instance, the @code{struct} type variable is the
17952root and the children will represent the struct members. If a child
17953is itself of a complex type, it will also have children of its own.
17954Appropriate language differences are handled for C, C@t{++} and Java.
17955
17956When returning the actual values of the objects, this facility allows
17957for the individual selection of the display format used in the result
17958creation. It can be chosen among: binary, decimal, hexadecimal, octal
17959and natural. Natural refers to a default format automatically
17960chosen based on the variable type (like decimal for an @code{int}, hex
17961for pointers, etc.).
17962
17963The following is the complete set of @sc{gdb/mi} operations defined to
17964access this functionality:
17965
17966@multitable @columnfractions .4 .6
17967@item @strong{Operation}
17968@tab @strong{Description}
17969
17970@item @code{-var-create}
17971@tab create a variable object
17972@item @code{-var-delete}
17973@tab delete the variable object and its children
17974@item @code{-var-set-format}
17975@tab set the display format of this variable
17976@item @code{-var-show-format}
17977@tab show the display format of this variable
17978@item @code{-var-info-num-children}
17979@tab tells how many children this object has
17980@item @code{-var-list-children}
17981@tab return a list of the object's children
17982@item @code{-var-info-type}
17983@tab show the type of this variable object
17984@item @code{-var-info-expression}
17985@tab print what this variable object represents
17986@item @code{-var-show-attributes}
17987@tab is this variable editable? does it exist here?
17988@item @code{-var-evaluate-expression}
17989@tab get the value of this variable
17990@item @code{-var-assign}
17991@tab set the value of this variable
17992@item @code{-var-update}
17993@tab update the variable and its children
17994@end multitable
17995
17996In the next subsection we describe each operation in detail and suggest
17997how it can be used.
17998
17999@subheading Description And Use of Operations on Variable Objects
18000
18001@subheading The @code{-var-create} Command
18002@findex -var-create
18003
18004@subsubheading Synopsis
18005
18006@smallexample
18007 -var-create @{@var{name} | "-"@}
18008 @{@var{frame-addr} | "*"@} @var{expression}
18009@end smallexample
18010
18011This operation creates a variable object, which allows the monitoring of
18012a variable, the result of an expression, a memory cell or a CPU
18013register.
18014
18015The @var{name} parameter is the string by which the object can be
18016referenced. It must be unique. If @samp{-} is specified, the varobj
18017system will generate a string ``varNNNNNN'' automatically. It will be
18018unique provided that one does not specify @var{name} on that format.
18019The command fails if a duplicate name is found.
18020
18021The frame under which the expression should be evaluated can be
18022specified by @var{frame-addr}. A @samp{*} indicates that the current
18023frame should be used.
18024
18025@var{expression} is any expression valid on the current language set (must not
18026begin with a @samp{*}), or one of the following:
18027
18028@itemize @bullet
18029@item
18030@samp{*@var{addr}}, where @var{addr} is the address of a memory cell
18031
18032@item
18033@samp{*@var{addr}-@var{addr}} --- a memory address range (TBD)
18034
18035@item
18036@samp{$@var{regname}} --- a CPU register name
18037@end itemize
18038
18039@subsubheading Result
18040
18041This operation returns the name, number of children and the type of the
18042object created. Type is returned as a string as the ones generated by
18043the @value{GDBN} CLI:
18044
18045@smallexample
18046 name="@var{name}",numchild="N",type="@var{type}"
18047@end smallexample
18048
18049
18050@subheading The @code{-var-delete} Command
18051@findex -var-delete
18052
18053@subsubheading Synopsis
18054
18055@smallexample
18056 -var-delete @var{name}
18057@end smallexample
18058
18059Deletes a previously created variable object and all of its children.
18060
18061Returns an error if the object @var{name} is not found.
18062
18063
18064@subheading The @code{-var-set-format} Command
18065@findex -var-set-format
18066
18067@subsubheading Synopsis
18068
18069@smallexample
18070 -var-set-format @var{name} @var{format-spec}
18071@end smallexample
18072
18073Sets the output format for the value of the object @var{name} to be
18074@var{format-spec}.
18075
18076The syntax for the @var{format-spec} is as follows:
18077
18078@smallexample
18079 @var{format-spec} @expansion{}
18080 @{binary | decimal | hexadecimal | octal | natural@}
18081@end smallexample
18082
18083
18084@subheading The @code{-var-show-format} Command
18085@findex -var-show-format
18086
18087@subsubheading Synopsis
18088
18089@smallexample
18090 -var-show-format @var{name}
18091@end smallexample
18092
18093Returns the format used to display the value of the object @var{name}.
18094
18095@smallexample
18096 @var{format} @expansion{}
18097 @var{format-spec}
18098@end smallexample
18099
18100
18101@subheading The @code{-var-info-num-children} Command
18102@findex -var-info-num-children
18103
18104@subsubheading Synopsis
18105
18106@smallexample
18107 -var-info-num-children @var{name}
18108@end smallexample
18109
18110Returns the number of children of a variable object @var{name}:
18111
18112@smallexample
18113 numchild=@var{n}
18114@end smallexample
18115
18116
18117@subheading The @code{-var-list-children} Command
18118@findex -var-list-children
18119
18120@subsubheading Synopsis
18121
18122@smallexample
18123 -var-list-children @var{name}
18124@end smallexample
18125
18126Returns a list of the children of the specified variable object:
18127
18128@smallexample
18129 numchild=@var{n},children=[@{name=@var{name},
18130 numchild=@var{n},type=@var{type}@},@r{(repeats N times)}]
18131@end smallexample
18132
18133
18134@subheading The @code{-var-info-type} Command
18135@findex -var-info-type
18136
18137@subsubheading Synopsis
18138
18139@smallexample
18140 -var-info-type @var{name}
18141@end smallexample
18142
18143Returns the type of the specified variable @var{name}. The type is
18144returned as a string in the same format as it is output by the
18145@value{GDBN} CLI:
18146
18147@smallexample
18148 type=@var{typename}
18149@end smallexample
18150
18151
18152@subheading The @code{-var-info-expression} Command
18153@findex -var-info-expression
18154
18155@subsubheading Synopsis
18156
18157@smallexample
18158 -var-info-expression @var{name}
18159@end smallexample
18160
18161Returns what is represented by the variable object @var{name}:
18162
18163@smallexample
18164 lang=@var{lang-spec},exp=@var{expression}
18165@end smallexample
18166
18167@noindent
18168where @var{lang-spec} is @code{@{"C" | "C++" | "Java"@}}.
18169
18170@subheading The @code{-var-show-attributes} Command
18171@findex -var-show-attributes
18172
18173@subsubheading Synopsis
18174
18175@smallexample
18176 -var-show-attributes @var{name}
18177@end smallexample
18178
18179List attributes of the specified variable object @var{name}:
18180
18181@smallexample
18182 status=@var{attr} [ ( ,@var{attr} )* ]
18183@end smallexample
18184
18185@noindent
18186where @var{attr} is @code{@{ @{ editable | noneditable @} | TBD @}}.
18187
18188@subheading The @code{-var-evaluate-expression} Command
18189@findex -var-evaluate-expression
18190
18191@subsubheading Synopsis
18192
18193@smallexample
18194 -var-evaluate-expression @var{name}
18195@end smallexample
18196
18197Evaluates the expression that is represented by the specified variable
18198object and returns its value as a string in the current format specified
18199for the object:
18200
18201@smallexample
18202 value=@var{value}
18203@end smallexample
18204
18205Note that one must invoke @code{-var-list-children} for a variable
18206before the value of a child variable can be evaluated.
18207
18208@subheading The @code{-var-assign} Command
18209@findex -var-assign
18210
18211@subsubheading Synopsis
18212
18213@smallexample
18214 -var-assign @var{name} @var{expression}
18215@end smallexample
18216
18217Assigns the value of @var{expression} to the variable object specified
18218by @var{name}. The object must be @samp{editable}. If the variable's
18219value is altered by the assign, the variable will show up in any
18220subsequent @code{-var-update} list.
18221
18222@subsubheading Example
18223
18224@smallexample
18225(@value{GDBP})
18226-var-assign var1 3
18227^done,value="3"
18228(@value{GDBP})
18229-var-update *
18230^done,changelist=[@{name="var1",in_scope="true",type_changed="false"@}]
18231(@value{GDBP})
18232@end smallexample
18233
18234@subheading The @code{-var-update} Command
18235@findex -var-update
18236
18237@subsubheading Synopsis
18238
18239@smallexample
18240 -var-update @{@var{name} | "*"@}
18241@end smallexample
18242
18243Update the value of the variable object @var{name} by evaluating its
18244expression after fetching all the new values from memory or registers.
18245A @samp{*} causes all existing variable objects to be updated.
18246
18247
18248@node Annotations
18249@chapter @value{GDBN} Annotations
18250
086432e2
AC
18251This chapter describes annotations in @value{GDBN}. Annotations were
18252designed to interface @value{GDBN} to graphical user interfaces or other
18253similar programs which want to interact with @value{GDBN} at a
922fbb7b
AC
18254relatively high level.
18255
086432e2
AC
18256The annotation mechanism has largely been superseeded by @sc{gdb/mi}
18257(@pxref{GDB/MI}).
18258
922fbb7b
AC
18259@ignore
18260This is Edition @value{EDITION}, @value{DATE}.
18261@end ignore
18262
18263@menu
18264* Annotations Overview:: What annotations are; the general syntax.
18265* Server Prefix:: Issuing a command without affecting user state.
922fbb7b
AC
18266* Prompting:: Annotations marking @value{GDBN}'s need for input.
18267* Errors:: Annotations for error messages.
922fbb7b
AC
18268* Invalidation:: Some annotations describe things now invalid.
18269* Annotations for Running::
18270 Whether the program is running, how it stopped, etc.
18271* Source Annotations:: Annotations describing source code.
922fbb7b
AC
18272@end menu
18273
18274@node Annotations Overview
18275@section What is an Annotation?
18276@cindex annotations
18277
922fbb7b
AC
18278Annotations start with a newline character, two @samp{control-z}
18279characters, and the name of the annotation. If there is no additional
18280information associated with this annotation, the name of the annotation
18281is followed immediately by a newline. If there is additional
18282information, the name of the annotation is followed by a space, the
18283additional information, and a newline. The additional information
18284cannot contain newline characters.
18285
18286Any output not beginning with a newline and two @samp{control-z}
18287characters denotes literal output from @value{GDBN}. Currently there is
18288no need for @value{GDBN} to output a newline followed by two
18289@samp{control-z} characters, but if there was such a need, the
18290annotations could be extended with an @samp{escape} annotation which
18291means those three characters as output.
18292
086432e2
AC
18293The annotation @var{level}, which is specified using the
18294@option{--annotate} command line option (@pxref{Mode Options}), controls
18295how much information @value{GDBN} prints together with its prompt,
18296values of expressions, source lines, and other types of output. Level 0
18297is for no anntations, level 1 is for use when @value{GDBN} is run as a
18298subprocess of @sc{gnu} Emacs, level 3 is the maximum annotation suitable
18299for programs that control @value{GDBN}, and level 2 annotations have
18300been made obsolete (@pxref{Limitations, , Limitations of the Annotation
18301Interface, annotate, GDB's Obsolete Annotations}). This chapter
18302describes level 3 annotations.
18303
922fbb7b
AC
18304A simple example of starting up @value{GDBN} with annotations is:
18305
18306@smallexample
086432e2
AC
18307$ @kbd{gdb --annotate=3}
18308GNU gdb 6.0
18309Copyright 2003 Free Software Foundation, Inc.
922fbb7b
AC
18310GDB is free software, covered by the GNU General Public License,
18311and you are welcome to change it and/or distribute copies of it
18312under certain conditions.
18313Type "show copying" to see the conditions.
18314There is absolutely no warranty for GDB. Type "show warranty"
18315for details.
086432e2 18316This GDB was configured as "i386-pc-linux-gnu"
922fbb7b
AC
18317
18318^Z^Zpre-prompt
18319(gdb)
18320^Z^Zprompt
086432e2 18321@kbd{quit}
922fbb7b
AC
18322
18323^Z^Zpost-prompt
18324$
18325@end smallexample
18326
18327Here @samp{quit} is input to @value{GDBN}; the rest is output from
18328@value{GDBN}. The three lines beginning @samp{^Z^Z} (where @samp{^Z}
18329denotes a @samp{control-z} character) are annotations; the rest is
18330output from @value{GDBN}.
18331
18332@node Server Prefix
18333@section The Server Prefix
18334@cindex server prefix for annotations
18335
18336To issue a command to @value{GDBN} without affecting certain aspects of
18337the state which is seen by users, prefix it with @samp{server }. This
18338means that this command will not affect the command history, nor will it
18339affect @value{GDBN}'s notion of which command to repeat if @key{RET} is
18340pressed on a line by itself.
18341
18342The server prefix does not affect the recording of values into the value
18343history; to print a value without recording it into the value history,
18344use the @code{output} command instead of the @code{print} command.
18345
922fbb7b
AC
18346@node Prompting
18347@section Annotation for @value{GDBN} Input
18348
18349@cindex annotations for prompts
18350When @value{GDBN} prompts for input, it annotates this fact so it is possible
18351to know when to send output, when the output from a given command is
18352over, etc.
18353
18354Different kinds of input each have a different @dfn{input type}. Each
18355input type has three annotations: a @code{pre-} annotation, which
18356denotes the beginning of any prompt which is being output, a plain
18357annotation, which denotes the end of the prompt, and then a @code{post-}
18358annotation which denotes the end of any echo which may (or may not) be
18359associated with the input. For example, the @code{prompt} input type
18360features the following annotations:
18361
18362@smallexample
18363^Z^Zpre-prompt
18364^Z^Zprompt
18365^Z^Zpost-prompt
18366@end smallexample
18367
18368The input types are
18369
18370@table @code
18371@findex pre-prompt
18372@findex prompt
18373@findex post-prompt
18374@item prompt
18375When @value{GDBN} is prompting for a command (the main @value{GDBN} prompt).
18376
18377@findex pre-commands
18378@findex commands
18379@findex post-commands
18380@item commands
18381When @value{GDBN} prompts for a set of commands, like in the @code{commands}
18382command. The annotations are repeated for each command which is input.
18383
18384@findex pre-overload-choice
18385@findex overload-choice
18386@findex post-overload-choice
18387@item overload-choice
18388When @value{GDBN} wants the user to select between various overloaded functions.
18389
18390@findex pre-query
18391@findex query
18392@findex post-query
18393@item query
18394When @value{GDBN} wants the user to confirm a potentially dangerous operation.
18395
18396@findex pre-prompt-for-continue
18397@findex prompt-for-continue
18398@findex post-prompt-for-continue
18399@item prompt-for-continue
18400When @value{GDBN} is asking the user to press return to continue. Note: Don't
18401expect this to work well; instead use @code{set height 0} to disable
18402prompting. This is because the counting of lines is buggy in the
18403presence of annotations.
18404@end table
18405
18406@node Errors
18407@section Errors
18408@cindex annotations for errors, warnings and interrupts
18409
18410@findex quit
18411@smallexample
18412^Z^Zquit
18413@end smallexample
18414
18415This annotation occurs right before @value{GDBN} responds to an interrupt.
18416
18417@findex error
18418@smallexample
18419^Z^Zerror
18420@end smallexample
18421
18422This annotation occurs right before @value{GDBN} responds to an error.
18423
18424Quit and error annotations indicate that any annotations which @value{GDBN} was
18425in the middle of may end abruptly. For example, if a
18426@code{value-history-begin} annotation is followed by a @code{error}, one
18427cannot expect to receive the matching @code{value-history-end}. One
18428cannot expect not to receive it either, however; an error annotation
18429does not necessarily mean that @value{GDBN} is immediately returning all the way
18430to the top level.
18431
18432@findex error-begin
18433A quit or error annotation may be preceded by
18434
18435@smallexample
18436^Z^Zerror-begin
18437@end smallexample
18438
18439Any output between that and the quit or error annotation is the error
18440message.
18441
18442Warning messages are not yet annotated.
18443@c If we want to change that, need to fix warning(), type_error(),
18444@c range_error(), and possibly other places.
18445
922fbb7b
AC
18446@node Invalidation
18447@section Invalidation Notices
18448
18449@cindex annotations for invalidation messages
18450The following annotations say that certain pieces of state may have
18451changed.
18452
18453@table @code
18454@findex frames-invalid
18455@item ^Z^Zframes-invalid
18456
18457The frames (for example, output from the @code{backtrace} command) may
18458have changed.
18459
18460@findex breakpoints-invalid
18461@item ^Z^Zbreakpoints-invalid
18462
18463The breakpoints may have changed. For example, the user just added or
18464deleted a breakpoint.
18465@end table
18466
18467@node Annotations for Running
18468@section Running the Program
18469@cindex annotations for running programs
18470
18471@findex starting
18472@findex stopping
18473When the program starts executing due to a @value{GDBN} command such as
18474@code{step} or @code{continue},
18475
18476@smallexample
18477^Z^Zstarting
18478@end smallexample
18479
18480is output. When the program stops,
18481
18482@smallexample
18483^Z^Zstopped
18484@end smallexample
18485
18486is output. Before the @code{stopped} annotation, a variety of
18487annotations describe how the program stopped.
18488
18489@table @code
18490@findex exited
18491@item ^Z^Zexited @var{exit-status}
18492The program exited, and @var{exit-status} is the exit status (zero for
18493successful exit, otherwise nonzero).
18494
18495@findex signalled
18496@findex signal-name
18497@findex signal-name-end
18498@findex signal-string
18499@findex signal-string-end
18500@item ^Z^Zsignalled
18501The program exited with a signal. After the @code{^Z^Zsignalled}, the
18502annotation continues:
18503
18504@smallexample
18505@var{intro-text}
18506^Z^Zsignal-name
18507@var{name}
18508^Z^Zsignal-name-end
18509@var{middle-text}
18510^Z^Zsignal-string
18511@var{string}
18512^Z^Zsignal-string-end
18513@var{end-text}
18514@end smallexample
18515
18516@noindent
18517where @var{name} is the name of the signal, such as @code{SIGILL} or
18518@code{SIGSEGV}, and @var{string} is the explanation of the signal, such
18519as @code{Illegal Instruction} or @code{Segmentation fault}.
18520@var{intro-text}, @var{middle-text}, and @var{end-text} are for the
18521user's benefit and have no particular format.
18522
18523@findex signal
18524@item ^Z^Zsignal
18525The syntax of this annotation is just like @code{signalled}, but @value{GDBN} is
18526just saying that the program received the signal, not that it was
18527terminated with it.
18528
18529@findex breakpoint
18530@item ^Z^Zbreakpoint @var{number}
18531The program hit breakpoint number @var{number}.
18532
18533@findex watchpoint
18534@item ^Z^Zwatchpoint @var{number}
18535The program hit watchpoint number @var{number}.
18536@end table
18537
18538@node Source Annotations
18539@section Displaying Source
18540@cindex annotations for source display
18541
18542@findex source
18543The following annotation is used instead of displaying source code:
18544
18545@smallexample
18546^Z^Zsource @var{filename}:@var{line}:@var{character}:@var{middle}:@var{addr}
18547@end smallexample
18548
18549where @var{filename} is an absolute file name indicating which source
18550file, @var{line} is the line number within that file (where 1 is the
18551first line in the file), @var{character} is the character position
18552within the file (where 0 is the first character in the file) (for most
18553debug formats this will necessarily point to the beginning of a line),
18554@var{middle} is @samp{middle} if @var{addr} is in the middle of the
18555line, or @samp{beg} if @var{addr} is at the beginning of the line, and
18556@var{addr} is the address in the target program associated with the
18557source which is being displayed. @var{addr} is in the form @samp{0x}
18558followed by one or more lowercase hex digits (note that this does not
18559depend on the language).
18560
8e04817f
AC
18561@node GDB Bugs
18562@chapter Reporting Bugs in @value{GDBN}
18563@cindex bugs in @value{GDBN}
18564@cindex reporting bugs in @value{GDBN}
c906108c 18565
8e04817f 18566Your bug reports play an essential role in making @value{GDBN} reliable.
c906108c 18567
8e04817f
AC
18568Reporting a bug may help you by bringing a solution to your problem, or it
18569may not. But in any case the principal function of a bug report is to help
18570the entire community by making the next version of @value{GDBN} work better. Bug
18571reports are your contribution to the maintenance of @value{GDBN}.
c906108c 18572
8e04817f
AC
18573In order for a bug report to serve its purpose, you must include the
18574information that enables us to fix the bug.
c4555f82
SC
18575
18576@menu
8e04817f
AC
18577* Bug Criteria:: Have you found a bug?
18578* Bug Reporting:: How to report bugs
c4555f82
SC
18579@end menu
18580
8e04817f
AC
18581@node Bug Criteria
18582@section Have you found a bug?
18583@cindex bug criteria
c4555f82 18584
8e04817f 18585If you are not sure whether you have found a bug, here are some guidelines:
c4555f82
SC
18586
18587@itemize @bullet
8e04817f
AC
18588@cindex fatal signal
18589@cindex debugger crash
18590@cindex crash of debugger
c4555f82 18591@item
8e04817f
AC
18592If the debugger gets a fatal signal, for any input whatever, that is a
18593@value{GDBN} bug. Reliable debuggers never crash.
18594
18595@cindex error on valid input
18596@item
18597If @value{GDBN} produces an error message for valid input, that is a
18598bug. (Note that if you're cross debugging, the problem may also be
18599somewhere in the connection to the target.)
c4555f82 18600
8e04817f 18601@cindex invalid input
c4555f82 18602@item
8e04817f
AC
18603If @value{GDBN} does not produce an error message for invalid input,
18604that is a bug. However, you should note that your idea of
18605``invalid input'' might be our idea of ``an extension'' or ``support
18606for traditional practice''.
18607
18608@item
18609If you are an experienced user of debugging tools, your suggestions
18610for improvement of @value{GDBN} are welcome in any case.
c4555f82
SC
18611@end itemize
18612
8e04817f
AC
18613@node Bug Reporting
18614@section How to report bugs
18615@cindex bug reports
18616@cindex @value{GDBN} bugs, reporting
18617
18618A number of companies and individuals offer support for @sc{gnu} products.
18619If you obtained @value{GDBN} from a support organization, we recommend you
18620contact that organization first.
18621
18622You can find contact information for many support companies and
18623individuals in the file @file{etc/SERVICE} in the @sc{gnu} Emacs
18624distribution.
18625@c should add a web page ref...
18626
129188f6
AC
18627In any event, we also recommend that you submit bug reports for
18628@value{GDBN}. The prefered method is to submit them directly using
18629@uref{http://www.gnu.org/software/gdb/bugs/, @value{GDBN}'s Bugs web
18630page}. Alternatively, the @email{bug-gdb@@gnu.org, e-mail gateway} can
18631be used.
8e04817f
AC
18632
18633@strong{Do not send bug reports to @samp{info-gdb}, or to
18634@samp{help-gdb}, or to any newsgroups.} Most users of @value{GDBN} do
18635not want to receive bug reports. Those that do have arranged to receive
18636@samp{bug-gdb}.
18637
18638The mailing list @samp{bug-gdb} has a newsgroup @samp{gnu.gdb.bug} which
18639serves as a repeater. The mailing list and the newsgroup carry exactly
18640the same messages. Often people think of posting bug reports to the
18641newsgroup instead of mailing them. This appears to work, but it has one
18642problem which can be crucial: a newsgroup posting often lacks a mail
18643path back to the sender. Thus, if we need to ask for more information,
18644we may be unable to reach you. For this reason, it is better to send
18645bug reports to the mailing list.
c4555f82 18646
8e04817f
AC
18647The fundamental principle of reporting bugs usefully is this:
18648@strong{report all the facts}. If you are not sure whether to state a
18649fact or leave it out, state it!
c4555f82 18650
8e04817f
AC
18651Often people omit facts because they think they know what causes the
18652problem and assume that some details do not matter. Thus, you might
18653assume that the name of the variable you use in an example does not matter.
18654Well, probably it does not, but one cannot be sure. Perhaps the bug is a
18655stray memory reference which happens to fetch from the location where that
18656name is stored in memory; perhaps, if the name were different, the contents
18657of that location would fool the debugger into doing the right thing despite
18658the bug. Play it safe and give a specific, complete example. That is the
18659easiest thing for you to do, and the most helpful.
c4555f82 18660
8e04817f
AC
18661Keep in mind that the purpose of a bug report is to enable us to fix the
18662bug. It may be that the bug has been reported previously, but neither
18663you nor we can know that unless your bug report is complete and
18664self-contained.
c4555f82 18665
8e04817f
AC
18666Sometimes people give a few sketchy facts and ask, ``Does this ring a
18667bell?'' Those bug reports are useless, and we urge everyone to
18668@emph{refuse to respond to them} except to chide the sender to report
18669bugs properly.
18670
18671To enable us to fix the bug, you should include all these things:
c4555f82
SC
18672
18673@itemize @bullet
18674@item
8e04817f
AC
18675The version of @value{GDBN}. @value{GDBN} announces it if you start
18676with no arguments; you can also print it at any time using @code{show
18677version}.
c4555f82 18678
8e04817f
AC
18679Without this, we will not know whether there is any point in looking for
18680the bug in the current version of @value{GDBN}.
c4555f82
SC
18681
18682@item
8e04817f
AC
18683The type of machine you are using, and the operating system name and
18684version number.
c4555f82
SC
18685
18686@item
8e04817f
AC
18687What compiler (and its version) was used to compile @value{GDBN}---e.g.
18688``@value{GCC}--2.8.1''.
c4555f82
SC
18689
18690@item
8e04817f
AC
18691What compiler (and its version) was used to compile the program you are
18692debugging---e.g. ``@value{GCC}--2.8.1'', or ``HP92453-01 A.10.32.03 HP
18693C Compiler''. For GCC, you can say @code{gcc --version} to get this
18694information; for other compilers, see the documentation for those
18695compilers.
c4555f82 18696
8e04817f
AC
18697@item
18698The command arguments you gave the compiler to compile your example and
18699observe the bug. For example, did you use @samp{-O}? To guarantee
18700you will not omit something important, list them all. A copy of the
18701Makefile (or the output from make) is sufficient.
c4555f82 18702
8e04817f
AC
18703If we were to try to guess the arguments, we would probably guess wrong
18704and then we might not encounter the bug.
c4555f82 18705
8e04817f
AC
18706@item
18707A complete input script, and all necessary source files, that will
18708reproduce the bug.
c4555f82 18709
8e04817f
AC
18710@item
18711A description of what behavior you observe that you believe is
18712incorrect. For example, ``It gets a fatal signal.''
c4555f82 18713
8e04817f
AC
18714Of course, if the bug is that @value{GDBN} gets a fatal signal, then we
18715will certainly notice it. But if the bug is incorrect output, we might
18716not notice unless it is glaringly wrong. You might as well not give us
18717a chance to make a mistake.
c4555f82 18718
8e04817f
AC
18719Even if the problem you experience is a fatal signal, you should still
18720say so explicitly. Suppose something strange is going on, such as, your
18721copy of @value{GDBN} is out of synch, or you have encountered a bug in
18722the C library on your system. (This has happened!) Your copy might
18723crash and ours would not. If you told us to expect a crash, then when
18724ours fails to crash, we would know that the bug was not happening for
18725us. If you had not told us to expect a crash, then we would not be able
18726to draw any conclusion from our observations.
c4555f82 18727
8e04817f
AC
18728@item
18729If you wish to suggest changes to the @value{GDBN} source, send us context
18730diffs. If you even discuss something in the @value{GDBN} source, refer to
18731it by context, not by line number.
c4555f82 18732
8e04817f
AC
18733The line numbers in our development sources will not match those in your
18734sources. Your line numbers would convey no useful information to us.
c4555f82 18735
8e04817f 18736@end itemize
c4555f82 18737
8e04817f 18738Here are some things that are not necessary:
c4555f82 18739
8e04817f
AC
18740@itemize @bullet
18741@item
18742A description of the envelope of the bug.
c4555f82 18743
8e04817f
AC
18744Often people who encounter a bug spend a lot of time investigating
18745which changes to the input file will make the bug go away and which
18746changes will not affect it.
c4555f82 18747
8e04817f
AC
18748This is often time consuming and not very useful, because the way we
18749will find the bug is by running a single example under the debugger
18750with breakpoints, not by pure deduction from a series of examples.
18751We recommend that you save your time for something else.
c4555f82 18752
8e04817f
AC
18753Of course, if you can find a simpler example to report @emph{instead}
18754of the original one, that is a convenience for us. Errors in the
18755output will be easier to spot, running under the debugger will take
18756less time, and so on.
c4555f82 18757
8e04817f
AC
18758However, simplification is not vital; if you do not want to do this,
18759report the bug anyway and send us the entire test case you used.
c4555f82 18760
8e04817f
AC
18761@item
18762A patch for the bug.
c4555f82 18763
8e04817f
AC
18764A patch for the bug does help us if it is a good one. But do not omit
18765the necessary information, such as the test case, on the assumption that
18766a patch is all we need. We might see problems with your patch and decide
18767to fix the problem another way, or we might not understand it at all.
c4555f82 18768
8e04817f
AC
18769Sometimes with a program as complicated as @value{GDBN} it is very hard to
18770construct an example that will make the program follow a certain path
18771through the code. If you do not send us the example, we will not be able
18772to construct one, so we will not be able to verify that the bug is fixed.
c4555f82 18773
8e04817f
AC
18774And if we cannot understand what bug you are trying to fix, or why your
18775patch should be an improvement, we will not install it. A test case will
18776help us to understand.
c4555f82 18777
8e04817f
AC
18778@item
18779A guess about what the bug is or what it depends on.
c4555f82 18780
8e04817f
AC
18781Such guesses are usually wrong. Even we cannot guess right about such
18782things without first using the debugger to find the facts.
18783@end itemize
c4555f82 18784
8e04817f
AC
18785@c The readline documentation is distributed with the readline code
18786@c and consists of the two following files:
18787@c rluser.texinfo
18788@c inc-hist.texinfo
18789@c Use -I with makeinfo to point to the appropriate directory,
18790@c environment var TEXINPUTS with TeX.
18791@include rluser.texinfo
18792@include inc-hist.texinfo
c4555f82 18793
c4555f82 18794
8e04817f
AC
18795@node Formatting Documentation
18796@appendix Formatting Documentation
c4555f82 18797
8e04817f
AC
18798@cindex @value{GDBN} reference card
18799@cindex reference card
18800The @value{GDBN} 4 release includes an already-formatted reference card, ready
18801for printing with PostScript or Ghostscript, in the @file{gdb}
18802subdirectory of the main source directory@footnote{In
18803@file{gdb-@value{GDBVN}/gdb/refcard.ps} of the version @value{GDBVN}
18804release.}. If you can use PostScript or Ghostscript with your printer,
18805you can print the reference card immediately with @file{refcard.ps}.
c4555f82 18806
8e04817f
AC
18807The release also includes the source for the reference card. You
18808can format it, using @TeX{}, by typing:
c4555f82 18809
474c8240 18810@smallexample
8e04817f 18811make refcard.dvi
474c8240 18812@end smallexample
c4555f82 18813
8e04817f
AC
18814The @value{GDBN} reference card is designed to print in @dfn{landscape}
18815mode on US ``letter'' size paper;
18816that is, on a sheet 11 inches wide by 8.5 inches
18817high. You will need to specify this form of printing as an option to
18818your @sc{dvi} output program.
c4555f82 18819
8e04817f 18820@cindex documentation
c4555f82 18821
8e04817f
AC
18822All the documentation for @value{GDBN} comes as part of the machine-readable
18823distribution. The documentation is written in Texinfo format, which is
18824a documentation system that uses a single source file to produce both
18825on-line information and a printed manual. You can use one of the Info
18826formatting commands to create the on-line version of the documentation
18827and @TeX{} (or @code{texi2roff}) to typeset the printed version.
c4555f82 18828
8e04817f
AC
18829@value{GDBN} includes an already formatted copy of the on-line Info
18830version of this manual in the @file{gdb} subdirectory. The main Info
18831file is @file{gdb-@value{GDBVN}/gdb/gdb.info}, and it refers to
18832subordinate files matching @samp{gdb.info*} in the same directory. If
18833necessary, you can print out these files, or read them with any editor;
18834but they are easier to read using the @code{info} subsystem in @sc{gnu}
18835Emacs or the standalone @code{info} program, available as part of the
18836@sc{gnu} Texinfo distribution.
c4555f82 18837
8e04817f
AC
18838If you want to format these Info files yourself, you need one of the
18839Info formatting programs, such as @code{texinfo-format-buffer} or
18840@code{makeinfo}.
c4555f82 18841
8e04817f
AC
18842If you have @code{makeinfo} installed, and are in the top level
18843@value{GDBN} source directory (@file{gdb-@value{GDBVN}}, in the case of
18844version @value{GDBVN}), you can make the Info file by typing:
c4555f82 18845
474c8240 18846@smallexample
8e04817f
AC
18847cd gdb
18848make gdb.info
474c8240 18849@end smallexample
c4555f82 18850
8e04817f
AC
18851If you want to typeset and print copies of this manual, you need @TeX{},
18852a program to print its @sc{dvi} output files, and @file{texinfo.tex}, the
18853Texinfo definitions file.
c4555f82 18854
8e04817f
AC
18855@TeX{} is a typesetting program; it does not print files directly, but
18856produces output files called @sc{dvi} files. To print a typeset
18857document, you need a program to print @sc{dvi} files. If your system
18858has @TeX{} installed, chances are it has such a program. The precise
18859command to use depends on your system; @kbd{lpr -d} is common; another
18860(for PostScript devices) is @kbd{dvips}. The @sc{dvi} print command may
18861require a file name without any extension or a @samp{.dvi} extension.
c4555f82 18862
8e04817f
AC
18863@TeX{} also requires a macro definitions file called
18864@file{texinfo.tex}. This file tells @TeX{} how to typeset a document
18865written in Texinfo format. On its own, @TeX{} cannot either read or
18866typeset a Texinfo file. @file{texinfo.tex} is distributed with GDB
18867and is located in the @file{gdb-@var{version-number}/texinfo}
18868directory.
c4555f82 18869
8e04817f
AC
18870If you have @TeX{} and a @sc{dvi} printer program installed, you can
18871typeset and print this manual. First switch to the the @file{gdb}
18872subdirectory of the main source directory (for example, to
18873@file{gdb-@value{GDBVN}/gdb}) and type:
c4555f82 18874
474c8240 18875@smallexample
8e04817f 18876make gdb.dvi
474c8240 18877@end smallexample
c4555f82 18878
8e04817f 18879Then give @file{gdb.dvi} to your @sc{dvi} printing program.
c4555f82 18880
8e04817f
AC
18881@node Installing GDB
18882@appendix Installing @value{GDBN}
18883@cindex configuring @value{GDBN}
18884@cindex installation
94e91d6d 18885@cindex configuring @value{GDBN}, and source tree subdirectories
c4555f82 18886
8e04817f
AC
18887@value{GDBN} comes with a @code{configure} script that automates the process
18888of preparing @value{GDBN} for installation; you can then use @code{make} to
18889build the @code{gdb} program.
18890@iftex
18891@c irrelevant in info file; it's as current as the code it lives with.
18892@footnote{If you have a more recent version of @value{GDBN} than @value{GDBVN},
18893look at the @file{README} file in the sources; we may have improved the
18894installation procedures since publishing this manual.}
18895@end iftex
c4555f82 18896
8e04817f
AC
18897The @value{GDBN} distribution includes all the source code you need for
18898@value{GDBN} in a single directory, whose name is usually composed by
18899appending the version number to @samp{gdb}.
c4555f82 18900
8e04817f
AC
18901For example, the @value{GDBN} version @value{GDBVN} distribution is in the
18902@file{gdb-@value{GDBVN}} directory. That directory contains:
c4555f82 18903
8e04817f
AC
18904@table @code
18905@item gdb-@value{GDBVN}/configure @r{(and supporting files)}
18906script for configuring @value{GDBN} and all its supporting libraries
c4555f82 18907
8e04817f
AC
18908@item gdb-@value{GDBVN}/gdb
18909the source specific to @value{GDBN} itself
c4555f82 18910
8e04817f
AC
18911@item gdb-@value{GDBVN}/bfd
18912source for the Binary File Descriptor library
c906108c 18913
8e04817f
AC
18914@item gdb-@value{GDBVN}/include
18915@sc{gnu} include files
c906108c 18916
8e04817f
AC
18917@item gdb-@value{GDBVN}/libiberty
18918source for the @samp{-liberty} free software library
c906108c 18919
8e04817f
AC
18920@item gdb-@value{GDBVN}/opcodes
18921source for the library of opcode tables and disassemblers
c906108c 18922
8e04817f
AC
18923@item gdb-@value{GDBVN}/readline
18924source for the @sc{gnu} command-line interface
c906108c 18925
8e04817f
AC
18926@item gdb-@value{GDBVN}/glob
18927source for the @sc{gnu} filename pattern-matching subroutine
c906108c 18928
8e04817f
AC
18929@item gdb-@value{GDBVN}/mmalloc
18930source for the @sc{gnu} memory-mapped malloc package
18931@end table
c906108c 18932
8e04817f
AC
18933The simplest way to configure and build @value{GDBN} is to run @code{configure}
18934from the @file{gdb-@var{version-number}} source directory, which in
18935this example is the @file{gdb-@value{GDBVN}} directory.
c906108c 18936
8e04817f
AC
18937First switch to the @file{gdb-@var{version-number}} source directory
18938if you are not already in it; then run @code{configure}. Pass the
18939identifier for the platform on which @value{GDBN} will run as an
18940argument.
c906108c 18941
8e04817f 18942For example:
c906108c 18943
474c8240 18944@smallexample
8e04817f
AC
18945cd gdb-@value{GDBVN}
18946./configure @var{host}
18947make
474c8240 18948@end smallexample
c906108c 18949
8e04817f
AC
18950@noindent
18951where @var{host} is an identifier such as @samp{sun4} or
18952@samp{decstation}, that identifies the platform where @value{GDBN} will run.
18953(You can often leave off @var{host}; @code{configure} tries to guess the
18954correct value by examining your system.)
c906108c 18955
8e04817f
AC
18956Running @samp{configure @var{host}} and then running @code{make} builds the
18957@file{bfd}, @file{readline}, @file{mmalloc}, and @file{libiberty}
18958libraries, then @code{gdb} itself. The configured source files, and the
18959binaries, are left in the corresponding source directories.
c906108c 18960
8e04817f
AC
18961@need 750
18962@code{configure} is a Bourne-shell (@code{/bin/sh}) script; if your
18963system does not recognize this automatically when you run a different
18964shell, you may need to run @code{sh} on it explicitly:
c906108c 18965
474c8240 18966@smallexample
8e04817f 18967sh configure @var{host}
474c8240 18968@end smallexample
c906108c 18969
8e04817f
AC
18970If you run @code{configure} from a directory that contains source
18971directories for multiple libraries or programs, such as the
18972@file{gdb-@value{GDBVN}} source directory for version @value{GDBVN}, @code{configure}
18973creates configuration files for every directory level underneath (unless
18974you tell it not to, with the @samp{--norecursion} option).
18975
94e91d6d
MC
18976You should run the @code{configure} script from the top directory in the
18977source tree, the @file{gdb-@var{version-number}} directory. If you run
18978@code{configure} from one of the subdirectories, you will configure only
18979that subdirectory. That is usually not what you want. In particular,
18980if you run the first @code{configure} from the @file{gdb} subdirectory
18981of the @file{gdb-@var{version-number}} directory, you will omit the
18982configuration of @file{bfd}, @file{readline}, and other sibling
18983directories of the @file{gdb} subdirectory. This leads to build errors
18984about missing include files such as @file{bfd/bfd.h}.
c906108c 18985
8e04817f
AC
18986You can install @code{@value{GDBP}} anywhere; it has no hardwired paths.
18987However, you should make sure that the shell on your path (named by
18988the @samp{SHELL} environment variable) is publicly readable. Remember
18989that @value{GDBN} uses the shell to start your program---some systems refuse to
18990let @value{GDBN} debug child processes whose programs are not readable.
c906108c 18991
8e04817f
AC
18992@menu
18993* Separate Objdir:: Compiling @value{GDBN} in another directory
18994* Config Names:: Specifying names for hosts and targets
18995* Configure Options:: Summary of options for configure
18996@end menu
c906108c 18997
8e04817f
AC
18998@node Separate Objdir
18999@section Compiling @value{GDBN} in another directory
c906108c 19000
8e04817f
AC
19001If you want to run @value{GDBN} versions for several host or target machines,
19002you need a different @code{gdb} compiled for each combination of
19003host and target. @code{configure} is designed to make this easy by
19004allowing you to generate each configuration in a separate subdirectory,
19005rather than in the source directory. If your @code{make} program
19006handles the @samp{VPATH} feature (@sc{gnu} @code{make} does), running
19007@code{make} in each of these directories builds the @code{gdb}
19008program specified there.
c906108c 19009
8e04817f
AC
19010To build @code{gdb} in a separate directory, run @code{configure}
19011with the @samp{--srcdir} option to specify where to find the source.
19012(You also need to specify a path to find @code{configure}
19013itself from your working directory. If the path to @code{configure}
19014would be the same as the argument to @samp{--srcdir}, you can leave out
19015the @samp{--srcdir} option; it is assumed.)
c906108c 19016
8e04817f
AC
19017For example, with version @value{GDBVN}, you can build @value{GDBN} in a
19018separate directory for a Sun 4 like this:
c906108c 19019
474c8240 19020@smallexample
8e04817f
AC
19021@group
19022cd gdb-@value{GDBVN}
19023mkdir ../gdb-sun4
19024cd ../gdb-sun4
19025../gdb-@value{GDBVN}/configure sun4
19026make
19027@end group
474c8240 19028@end smallexample
c906108c 19029
8e04817f
AC
19030When @code{configure} builds a configuration using a remote source
19031directory, it creates a tree for the binaries with the same structure
19032(and using the same names) as the tree under the source directory. In
19033the example, you'd find the Sun 4 library @file{libiberty.a} in the
19034directory @file{gdb-sun4/libiberty}, and @value{GDBN} itself in
19035@file{gdb-sun4/gdb}.
c906108c 19036
94e91d6d
MC
19037Make sure that your path to the @file{configure} script has just one
19038instance of @file{gdb} in it. If your path to @file{configure} looks
19039like @file{../gdb-@value{GDBVN}/gdb/configure}, you are configuring only
19040one subdirectory of @value{GDBN}, not the whole package. This leads to
19041build errors about missing include files such as @file{bfd/bfd.h}.
19042
8e04817f
AC
19043One popular reason to build several @value{GDBN} configurations in separate
19044directories is to configure @value{GDBN} for cross-compiling (where
19045@value{GDBN} runs on one machine---the @dfn{host}---while debugging
19046programs that run on another machine---the @dfn{target}).
19047You specify a cross-debugging target by
19048giving the @samp{--target=@var{target}} option to @code{configure}.
c906108c 19049
8e04817f
AC
19050When you run @code{make} to build a program or library, you must run
19051it in a configured directory---whatever directory you were in when you
19052called @code{configure} (or one of its subdirectories).
c906108c 19053
8e04817f
AC
19054The @code{Makefile} that @code{configure} generates in each source
19055directory also runs recursively. If you type @code{make} in a source
19056directory such as @file{gdb-@value{GDBVN}} (or in a separate configured
19057directory configured with @samp{--srcdir=@var{dirname}/gdb-@value{GDBVN}}), you
19058will build all the required libraries, and then build GDB.
c906108c 19059
8e04817f
AC
19060When you have multiple hosts or targets configured in separate
19061directories, you can run @code{make} on them in parallel (for example,
19062if they are NFS-mounted on each of the hosts); they will not interfere
19063with each other.
c906108c 19064
8e04817f
AC
19065@node Config Names
19066@section Specifying names for hosts and targets
c906108c 19067
8e04817f
AC
19068The specifications used for hosts and targets in the @code{configure}
19069script are based on a three-part naming scheme, but some short predefined
19070aliases are also supported. The full naming scheme encodes three pieces
19071of information in the following pattern:
c906108c 19072
474c8240 19073@smallexample
8e04817f 19074@var{architecture}-@var{vendor}-@var{os}
474c8240 19075@end smallexample
c906108c 19076
8e04817f
AC
19077For example, you can use the alias @code{sun4} as a @var{host} argument,
19078or as the value for @var{target} in a @code{--target=@var{target}}
19079option. The equivalent full name is @samp{sparc-sun-sunos4}.
c906108c 19080
8e04817f
AC
19081The @code{configure} script accompanying @value{GDBN} does not provide
19082any query facility to list all supported host and target names or
19083aliases. @code{configure} calls the Bourne shell script
19084@code{config.sub} to map abbreviations to full names; you can read the
19085script, if you wish, or you can use it to test your guesses on
19086abbreviations---for example:
c906108c 19087
8e04817f
AC
19088@smallexample
19089% sh config.sub i386-linux
19090i386-pc-linux-gnu
19091% sh config.sub alpha-linux
19092alpha-unknown-linux-gnu
19093% sh config.sub hp9k700
19094hppa1.1-hp-hpux
19095% sh config.sub sun4
19096sparc-sun-sunos4.1.1
19097% sh config.sub sun3
19098m68k-sun-sunos4.1.1
19099% sh config.sub i986v
19100Invalid configuration `i986v': machine `i986v' not recognized
19101@end smallexample
c906108c 19102
8e04817f
AC
19103@noindent
19104@code{config.sub} is also distributed in the @value{GDBN} source
19105directory (@file{gdb-@value{GDBVN}}, for version @value{GDBVN}).
d700128c 19106
8e04817f
AC
19107@node Configure Options
19108@section @code{configure} options
c906108c 19109
8e04817f
AC
19110Here is a summary of the @code{configure} options and arguments that
19111are most often useful for building @value{GDBN}. @code{configure} also has
19112several other options not listed here. @inforef{What Configure
19113Does,,configure.info}, for a full explanation of @code{configure}.
c906108c 19114
474c8240 19115@smallexample
8e04817f
AC
19116configure @r{[}--help@r{]}
19117 @r{[}--prefix=@var{dir}@r{]}
19118 @r{[}--exec-prefix=@var{dir}@r{]}
19119 @r{[}--srcdir=@var{dirname}@r{]}
19120 @r{[}--norecursion@r{]} @r{[}--rm@r{]}
19121 @r{[}--target=@var{target}@r{]}
19122 @var{host}
474c8240 19123@end smallexample
c906108c 19124
8e04817f
AC
19125@noindent
19126You may introduce options with a single @samp{-} rather than
19127@samp{--} if you prefer; but you may abbreviate option names if you use
19128@samp{--}.
c906108c 19129
8e04817f
AC
19130@table @code
19131@item --help
19132Display a quick summary of how to invoke @code{configure}.
c906108c 19133
8e04817f
AC
19134@item --prefix=@var{dir}
19135Configure the source to install programs and files under directory
19136@file{@var{dir}}.
c906108c 19137
8e04817f
AC
19138@item --exec-prefix=@var{dir}
19139Configure the source to install programs under directory
19140@file{@var{dir}}.
c906108c 19141
8e04817f
AC
19142@c avoid splitting the warning from the explanation:
19143@need 2000
19144@item --srcdir=@var{dirname}
19145@strong{Warning: using this option requires @sc{gnu} @code{make}, or another
19146@code{make} that implements the @code{VPATH} feature.}@*
19147Use this option to make configurations in directories separate from the
19148@value{GDBN} source directories. Among other things, you can use this to
19149build (or maintain) several configurations simultaneously, in separate
19150directories. @code{configure} writes configuration specific files in
19151the current directory, but arranges for them to use the source in the
19152directory @var{dirname}. @code{configure} creates directories under
19153the working directory in parallel to the source directories below
19154@var{dirname}.
c906108c 19155
8e04817f
AC
19156@item --norecursion
19157Configure only the directory level where @code{configure} is executed; do not
19158propagate configuration to subdirectories.
c906108c 19159
8e04817f
AC
19160@item --target=@var{target}
19161Configure @value{GDBN} for cross-debugging programs running on the specified
19162@var{target}. Without this option, @value{GDBN} is configured to debug
19163programs that run on the same machine (@var{host}) as @value{GDBN} itself.
c906108c 19164
8e04817f 19165There is no convenient way to generate a list of all available targets.
c906108c 19166
8e04817f
AC
19167@item @var{host} @dots{}
19168Configure @value{GDBN} to run on the specified @var{host}.
c906108c 19169
8e04817f
AC
19170There is no convenient way to generate a list of all available hosts.
19171@end table
c906108c 19172
8e04817f
AC
19173There are many other options available as well, but they are generally
19174needed for special purposes only.
c906108c 19175
8e04817f
AC
19176@node Maintenance Commands
19177@appendix Maintenance Commands
19178@cindex maintenance commands
19179@cindex internal commands
c906108c 19180
8e04817f
AC
19181In addition to commands intended for @value{GDBN} users, @value{GDBN}
19182includes a number of commands intended for @value{GDBN} developers.
19183These commands are provided here for reference.
c906108c 19184
8e04817f
AC
19185@table @code
19186@kindex maint info breakpoints
19187@item @anchor{maint info breakpoints}maint info breakpoints
19188Using the same format as @samp{info breakpoints}, display both the
19189breakpoints you've set explicitly, and those @value{GDBN} is using for
19190internal purposes. Internal breakpoints are shown with negative
19191breakpoint numbers. The type column identifies what kind of breakpoint
19192is shown:
c906108c 19193
8e04817f
AC
19194@table @code
19195@item breakpoint
19196Normal, explicitly set breakpoint.
c906108c 19197
8e04817f
AC
19198@item watchpoint
19199Normal, explicitly set watchpoint.
c906108c 19200
8e04817f
AC
19201@item longjmp
19202Internal breakpoint, used to handle correctly stepping through
19203@code{longjmp} calls.
c906108c 19204
8e04817f
AC
19205@item longjmp resume
19206Internal breakpoint at the target of a @code{longjmp}.
c906108c 19207
8e04817f
AC
19208@item until
19209Temporary internal breakpoint used by the @value{GDBN} @code{until} command.
c906108c 19210
8e04817f
AC
19211@item finish
19212Temporary internal breakpoint used by the @value{GDBN} @code{finish} command.
c906108c 19213
8e04817f
AC
19214@item shlib events
19215Shared library events.
c906108c 19216
8e04817f 19217@end table
c906108c 19218
8d30a00d
AC
19219@kindex maint internal-error
19220@kindex maint internal-warning
19221@item maint internal-error
19222@itemx maint internal-warning
19223Cause @value{GDBN} to call the internal function @code{internal_error}
19224or @code{internal_warning} and hence behave as though an internal error
19225or internal warning has been detected. In addition to reporting the
19226internal problem, these functions give the user the opportunity to
19227either quit @value{GDBN} or create a core file of the current
19228@value{GDBN} session.
19229
19230@smallexample
19231(gdb) @kbd{maint internal-error testing, 1, 2}
19232@dots{}/maint.c:121: internal-error: testing, 1, 2
19233A problem internal to GDB has been detected. Further
19234debugging may prove unreliable.
19235Quit this debugging session? (y or n) @kbd{n}
19236Create a core file? (y or n) @kbd{n}
19237(gdb)
19238@end smallexample
19239
19240Takes an optional parameter that is used as the text of the error or
19241warning message.
19242
00905d52
AC
19243@kindex maint print dummy-frames
19244@item maint print dummy-frames
19245
19246Prints the contents of @value{GDBN}'s internal dummy-frame stack.
19247
19248@smallexample
19249(gdb) @kbd{b add}
19250@dots{}
19251(gdb) @kbd{print add(2,3)}
19252Breakpoint 2, add (a=2, b=3) at @dots{}
1925358 return (a + b);
19254The program being debugged stopped while in a function called from GDB.
19255@dots{}
19256(gdb) @kbd{maint print dummy-frames}
192570x1a57c80: pc=0x01014068 fp=0x0200bddc sp=0x0200bdd6
19258 top=0x0200bdd4 id=@{stack=0x200bddc,code=0x101405c@}
19259 call_lo=0x01014000 call_hi=0x01014001
19260(gdb)
19261@end smallexample
19262
19263Takes an optional file parameter.
19264
0680b120
AC
19265@kindex maint print registers
19266@kindex maint print raw-registers
19267@kindex maint print cooked-registers
617073a9 19268@kindex maint print register-groups
0680b120
AC
19269@item maint print registers
19270@itemx maint print raw-registers
19271@itemx maint print cooked-registers
617073a9 19272@itemx maint print register-groups
0680b120
AC
19273Print @value{GDBN}'s internal register data structures.
19274
617073a9
AC
19275The command @code{maint print raw-registers} includes the contents of
19276the raw register cache; the command @code{maint print cooked-registers}
19277includes the (cooked) value of all registers; and the command
19278@code{maint print register-groups} includes the groups that each
19279register is a member of. @xref{Registers,, Registers, gdbint,
19280@value{GDBN} Internals}.
0680b120
AC
19281
19282Takes an optional file parameter.
19283
617073a9
AC
19284@kindex maint print reggroups
19285@item maint print reggroups
19286Print @value{GDBN}'s internal register group data structures.
19287
19288Takes an optional file parameter.
19289
19290@smallexample
19291(gdb) @kbd{maint print reggroups}
19292 Group Type
19293 general user
19294 float user
19295 all user
19296 vector user
19297 system user
19298 save internal
19299 restore internal
19300@end smallexample
19301
e7ba9c65
DJ
19302@kindex maint set profile
19303@kindex maint show profile
19304@cindex profiling GDB
19305@item maint set profile
19306@itemx maint show profile
19307Control profiling of @value{GDBN}.
19308
19309Profiling will be disabled until you use the @samp{maint set profile}
19310command to enable it. When you enable profiling, the system will begin
19311collecting timing and execution count data; when you disable profiling or
19312exit @value{GDBN}, the results will be written to a log file. Remember that
19313if you use profiling, @value{GDBN} will overwrite the profiling log file
19314(often called @file{gmon.out}). If you have a record of important profiling
19315data in a @file{gmon.out} file, be sure to move it to a safe location.
19316
19317Configuring with @samp{--enable-profiling} arranges for @value{GDBN} to be
19318compiled with the @samp{-pg} compiler option.
19319
8e04817f 19320@end table
c906108c 19321
c906108c 19322
e0ce93ac 19323@node Remote Protocol
8e04817f 19324@appendix @value{GDBN} Remote Serial Protocol
c906108c 19325
ee2d5c50
AC
19326@menu
19327* Overview::
19328* Packets::
19329* Stop Reply Packets::
19330* General Query Packets::
19331* Register Packet Format::
19332* Examples::
0ce1b118 19333* File-I/O remote protocol extension::
ee2d5c50
AC
19334@end menu
19335
19336@node Overview
19337@section Overview
19338
8e04817f
AC
19339There may be occasions when you need to know something about the
19340protocol---for example, if there is only one serial port to your target
19341machine, you might want your program to do something special if it
19342recognizes a packet meant for @value{GDBN}.
c906108c 19343
d2c6833e 19344In the examples below, @samp{->} and @samp{<-} are used to indicate
8e04817f 19345transmitted and received data respectfully.
c906108c 19346
8e04817f
AC
19347@cindex protocol, @value{GDBN} remote serial
19348@cindex serial protocol, @value{GDBN} remote
19349@cindex remote serial protocol
19350All @value{GDBN} commands and responses (other than acknowledgments) are
19351sent as a @var{packet}. A @var{packet} is introduced with the character
19352@samp{$}, the actual @var{packet-data}, and the terminating character
19353@samp{#} followed by a two-digit @var{checksum}:
c906108c 19354
474c8240 19355@smallexample
8e04817f 19356@code{$}@var{packet-data}@code{#}@var{checksum}
474c8240 19357@end smallexample
8e04817f 19358@noindent
c906108c 19359
8e04817f
AC
19360@cindex checksum, for @value{GDBN} remote
19361@noindent
19362The two-digit @var{checksum} is computed as the modulo 256 sum of all
19363characters between the leading @samp{$} and the trailing @samp{#} (an
19364eight bit unsigned checksum).
c906108c 19365
8e04817f
AC
19366Implementors should note that prior to @value{GDBN} 5.0 the protocol
19367specification also included an optional two-digit @var{sequence-id}:
c906108c 19368
474c8240 19369@smallexample
8e04817f 19370@code{$}@var{sequence-id}@code{:}@var{packet-data}@code{#}@var{checksum}
474c8240 19371@end smallexample
c906108c 19372
8e04817f
AC
19373@cindex sequence-id, for @value{GDBN} remote
19374@noindent
19375That @var{sequence-id} was appended to the acknowledgment. @value{GDBN}
19376has never output @var{sequence-id}s. Stubs that handle packets added
19377since @value{GDBN} 5.0 must not accept @var{sequence-id}.
c906108c 19378
8e04817f
AC
19379@cindex acknowledgment, for @value{GDBN} remote
19380When either the host or the target machine receives a packet, the first
19381response expected is an acknowledgment: either @samp{+} (to indicate
19382the package was received correctly) or @samp{-} (to request
19383retransmission):
c906108c 19384
474c8240 19385@smallexample
d2c6833e
AC
19386-> @code{$}@var{packet-data}@code{#}@var{checksum}
19387<- @code{+}
474c8240 19388@end smallexample
8e04817f 19389@noindent
53a5351d 19390
8e04817f
AC
19391The host (@value{GDBN}) sends @var{command}s, and the target (the
19392debugging stub incorporated in your program) sends a @var{response}. In
19393the case of step and continue @var{command}s, the response is only sent
19394when the operation has completed (the target has again stopped).
c906108c 19395
8e04817f
AC
19396@var{packet-data} consists of a sequence of characters with the
19397exception of @samp{#} and @samp{$} (see @samp{X} packet for additional
19398exceptions).
c906108c 19399
8e04817f 19400Fields within the packet should be separated using @samp{,} @samp{;} or
ee2d5c50 19401@cindex remote protocol, field separator
8e04817f 19402@samp{:}. Except where otherwise noted all numbers are represented in
ee2d5c50 19403@sc{hex} with leading zeros suppressed.
c906108c 19404
8e04817f
AC
19405Implementors should note that prior to @value{GDBN} 5.0, the character
19406@samp{:} could not appear as the third character in a packet (as it
19407would potentially conflict with the @var{sequence-id}).
c906108c 19408
8e04817f
AC
19409Response @var{data} can be run-length encoded to save space. A @samp{*}
19410means that the next character is an @sc{ascii} encoding giving a repeat count
19411which stands for that many repetitions of the character preceding the
19412@samp{*}. The encoding is @code{n+29}, yielding a printable character
19413where @code{n >=3} (which is where rle starts to win). The printable
19414characters @samp{$}, @samp{#}, @samp{+} and @samp{-} or with a numeric
19415value greater than 126 should not be used.
c906108c 19416
8e04817f
AC
19417Some remote systems have used a different run-length encoding mechanism
19418loosely refered to as the cisco encoding. Following the @samp{*}
19419character are two hex digits that indicate the size of the packet.
c906108c 19420
8e04817f 19421So:
474c8240 19422@smallexample
8e04817f 19423"@code{0* }"
474c8240 19424@end smallexample
8e04817f
AC
19425@noindent
19426means the same as "0000".
c906108c 19427
8e04817f
AC
19428The error response returned for some packets includes a two character
19429error number. That number is not well defined.
c906108c 19430
8e04817f
AC
19431For any @var{command} not supported by the stub, an empty response
19432(@samp{$#00}) should be returned. That way it is possible to extend the
19433protocol. A newer @value{GDBN} can tell if a packet is supported based
19434on that response.
c906108c 19435
8e04817f
AC
19436A stub is required to support the @samp{g}, @samp{G}, @samp{m}, @samp{M},
19437@samp{c}, and @samp{s} @var{command}s. All other @var{command}s are
19438optional.
c906108c 19439
ee2d5c50
AC
19440@node Packets
19441@section Packets
19442
19443The following table provides a complete list of all currently defined
19444@var{command}s and their corresponding response @var{data}.
19445
19446@table @r
19447
19448@item @code{!} --- extended mode
19449@cindex @code{!} packet
19450
8e04817f
AC
19451Enable extended mode. In extended mode, the remote server is made
19452persistent. The @samp{R} packet is used to restart the program being
19453debugged.
ee2d5c50
AC
19454
19455Reply:
19456@table @samp
19457@item OK
8e04817f 19458The remote target both supports and has enabled extended mode.
ee2d5c50 19459@end table
c906108c 19460
ee2d5c50
AC
19461@item @code{?} --- last signal
19462@cindex @code{?} packet
c906108c 19463
ee2d5c50
AC
19464Indicate the reason the target halted. The reply is the same as for
19465step and continue.
c906108c 19466
ee2d5c50
AC
19467Reply:
19468@xref{Stop Reply Packets}, for the reply specifications.
19469
19470@item @code{a} --- reserved
19471
19472Reserved for future use.
19473
19474@item @code{A}@var{arglen}@code{,}@var{argnum}@code{,}@var{arg}@code{,@dots{}} --- set program arguments @strong{(reserved)}
19475@cindex @code{A} packet
c906108c 19476
8e04817f
AC
19477Initialized @samp{argv[]} array passed into program. @var{arglen}
19478specifies the number of bytes in the hex encoded byte stream @var{arg}.
ee2d5c50
AC
19479See @code{gdbserver} for more details.
19480
19481Reply:
19482@table @samp
19483@item OK
19484@item E@var{NN}
19485@end table
19486
19487@item @code{b}@var{baud} --- set baud @strong{(deprecated)}
19488@cindex @code{b} packet
19489
19490Change the serial line speed to @var{baud}.
19491
19492JTC: @emph{When does the transport layer state change? When it's
19493received, or after the ACK is transmitted. In either case, there are
19494problems if the command or the acknowledgment packet is dropped.}
19495
19496Stan: @emph{If people really wanted to add something like this, and get
19497it working for the first time, they ought to modify ser-unix.c to send
19498some kind of out-of-band message to a specially-setup stub and have the
19499switch happen "in between" packets, so that from remote protocol's point
19500of view, nothing actually happened.}
19501
19502@item @code{B}@var{addr},@var{mode} --- set breakpoint @strong{(deprecated)}
19503@cindex @code{B} packet
19504
8e04817f 19505Set (@var{mode} is @samp{S}) or clear (@var{mode} is @samp{C}) a
2f870471
AC
19506breakpoint at @var{addr}.
19507
19508This packet has been replaced by the @samp{Z} and @samp{z} packets
19509(@pxref{insert breakpoint or watchpoint packet}).
c906108c 19510
ee2d5c50
AC
19511@item @code{c}@var{addr} --- continue
19512@cindex @code{c} packet
19513
19514@var{addr} is address to resume. If @var{addr} is omitted, resume at
8e04817f 19515current address.
c906108c 19516
ee2d5c50
AC
19517Reply:
19518@xref{Stop Reply Packets}, for the reply specifications.
19519
19520@item @code{C}@var{sig}@code{;}@var{addr} --- continue with signal
19521@cindex @code{C} packet
19522
8e04817f
AC
19523Continue with signal @var{sig} (hex signal number). If
19524@code{;}@var{addr} is omitted, resume at same address.
c906108c 19525
ee2d5c50
AC
19526Reply:
19527@xref{Stop Reply Packets}, for the reply specifications.
c906108c 19528
ee2d5c50
AC
19529@item @code{d} --- toggle debug @strong{(deprecated)}
19530@cindex @code{d} packet
19531
19532Toggle debug flag.
19533
19534@item @code{D} --- detach
19535@cindex @code{D} packet
19536
19537Detach @value{GDBN} from the remote system. Sent to the remote target
07f31aa6 19538before @value{GDBN} disconnects via the @code{detach} command.
ee2d5c50
AC
19539
19540Reply:
19541@table @samp
19542@item @emph{no response}
8e04817f 19543@value{GDBN} does not check for any response after sending this packet.
ee2d5c50 19544@end table
c906108c 19545
ee2d5c50 19546@item @code{e} --- reserved
c906108c 19547
ee2d5c50 19548Reserved for future use.
c906108c 19549
ee2d5c50 19550@item @code{E} --- reserved
c906108c 19551
ee2d5c50 19552Reserved for future use.
c906108c 19553
ee2d5c50
AC
19554@item @code{f} --- reserved
19555
19556Reserved for future use.
19557
0ce1b118
CV
19558@item @code{F}@var{RC}@code{,}@var{EE}@code{,}@var{CF}@code{;}@var{XX} --- Reply to target's F packet.
19559@cindex @code{F} packet
ee2d5c50 19560
0ce1b118
CV
19561This packet is send by @value{GDBN} as reply to a @code{F} request packet
19562sent by the target. This is part of the File-I/O protocol extension.
19563@xref{File-I/O remote protocol extension}, for the specification.
ee2d5c50
AC
19564
19565@item @code{g} --- read registers
19566@anchor{read registers packet}
19567@cindex @code{g} packet
19568
19569Read general registers.
19570
19571Reply:
19572@table @samp
19573@item @var{XX@dots{}}
8e04817f
AC
19574Each byte of register data is described by two hex digits. The bytes
19575with the register are transmitted in target byte order. The size of
19576each register and their position within the @samp{g} @var{packet} are
12c266ea
AC
19577determined by the @value{GDBN} internal macros
19578@var{DEPRECATED_REGISTER_RAW_SIZE} and @var{REGISTER_NAME} macros. The
19579specification of several standard @code{g} packets is specified below.
ee2d5c50
AC
19580@item E@var{NN}
19581for an error.
19582@end table
c906108c 19583
ee2d5c50
AC
19584@item @code{G}@var{XX@dots{}} --- write regs
19585@cindex @code{G} packet
c906108c 19586
ee2d5c50
AC
19587@xref{read registers packet}, for a description of the @var{XX@dots{}}
19588data.
19589
19590Reply:
19591@table @samp
19592@item OK
19593for success
19594@item E@var{NN}
19595for an error
19596@end table
19597
19598@item @code{h} --- reserved
19599
19600Reserved for future use.
19601
19602@item @code{H}@var{c}@var{t@dots{}} --- set thread
19603@cindex @code{H} packet
c906108c 19604
8e04817f 19605Set thread for subsequent operations (@samp{m}, @samp{M}, @samp{g},
ee2d5c50
AC
19606@samp{G}, et.al.). @var{c} depends on the operation to be performed: it
19607should be @samp{c} for step and continue operations, @samp{g} for other
19608operations. The thread designator @var{t@dots{}} may be -1, meaning all
19609the threads, a thread number, or zero which means pick any thread.
19610
19611Reply:
19612@table @samp
19613@item OK
19614for success
19615@item E@var{NN}
19616for an error
19617@end table
c906108c 19618
8e04817f
AC
19619@c FIXME: JTC:
19620@c 'H': How restrictive (or permissive) is the thread model. If a
19621@c thread is selected and stopped, are other threads allowed
19622@c to continue to execute? As I mentioned above, I think the
19623@c semantics of each command when a thread is selected must be
19624@c described. For example:
19625@c
19626@c 'g': If the stub supports threads and a specific thread is
19627@c selected, returns the register block from that thread;
19628@c otherwise returns current registers.
19629@c
19630@c 'G' If the stub supports threads and a specific thread is
19631@c selected, sets the registers of the register block of
19632@c that thread; otherwise sets current registers.
c906108c 19633
ee2d5c50
AC
19634@item @code{i}@var{addr}@code{,}@var{nnn} --- cycle step @strong{(draft)}
19635@anchor{cycle step packet}
19636@cindex @code{i} packet
19637
8e04817f
AC
19638Step the remote target by a single clock cycle. If @code{,}@var{nnn} is
19639present, cycle step @var{nnn} cycles. If @var{addr} is present, cycle
19640step starting at that address.
c906108c 19641
ee2d5c50
AC
19642@item @code{I} --- signal then cycle step @strong{(reserved)}
19643@cindex @code{I} packet
19644
19645@xref{step with signal packet}. @xref{cycle step packet}.
19646
19647@item @code{j} --- reserved
19648
19649Reserved for future use.
19650
19651@item @code{J} --- reserved
c906108c 19652
ee2d5c50 19653Reserved for future use.
c906108c 19654
ee2d5c50
AC
19655@item @code{k} --- kill request
19656@cindex @code{k} packet
c906108c 19657
ac282366 19658FIXME: @emph{There is no description of how to operate when a specific
ee2d5c50
AC
19659thread context has been selected (i.e.@: does 'k' kill only that
19660thread?)}.
c906108c 19661
ee2d5c50 19662@item @code{K} --- reserved
c906108c 19663
ee2d5c50
AC
19664Reserved for future use.
19665
19666@item @code{l} --- reserved
19667
19668Reserved for future use.
19669
19670@item @code{L} --- reserved
19671
19672Reserved for future use.
19673
19674@item @code{m}@var{addr}@code{,}@var{length} --- read memory
19675@cindex @code{m} packet
c906108c 19676
8e04817f 19677Read @var{length} bytes of memory starting at address @var{addr}.
ee2d5c50 19678Neither @value{GDBN} nor the stub assume that sized memory transfers are
2e834e49 19679assumed using word aligned accesses. FIXME: @emph{A word aligned memory
8e04817f 19680transfer mechanism is needed.}
c906108c 19681
ee2d5c50
AC
19682Reply:
19683@table @samp
19684@item @var{XX@dots{}}
19685@var{XX@dots{}} is mem contents. Can be fewer bytes than requested if able
19686to read only part of the data. Neither @value{GDBN} nor the stub assume
2e834e49 19687that sized memory transfers are assumed using word aligned
ee2d5c50
AC
19688accesses. FIXME: @emph{A word aligned memory transfer mechanism is
19689needed.}
19690@item E@var{NN}
19691@var{NN} is errno
19692@end table
19693
19694@item @code{M}@var{addr},@var{length}@code{:}@var{XX@dots{}} --- write mem
19695@cindex @code{M} packet
19696
8e04817f 19697Write @var{length} bytes of memory starting at address @var{addr}.
ee2d5c50
AC
19698@var{XX@dots{}} is the data.
19699
19700Reply:
19701@table @samp
19702@item OK
19703for success
19704@item E@var{NN}
8e04817f
AC
19705for an error (this includes the case where only part of the data was
19706written).
ee2d5c50 19707@end table
c906108c 19708
ee2d5c50 19709@item @code{n} --- reserved
c906108c 19710
ee2d5c50 19711Reserved for future use.
c906108c 19712
ee2d5c50 19713@item @code{N} --- reserved
c906108c 19714
ee2d5c50 19715Reserved for future use.
c906108c 19716
ee2d5c50
AC
19717@item @code{o} --- reserved
19718
19719Reserved for future use.
19720
19721@item @code{O} --- reserved
19722
19723Reserved for future use.
c906108c 19724
ee2d5c50
AC
19725@item @code{p}@var{n@dots{}} --- read reg @strong{(reserved)}
19726@cindex @code{p} packet
19727
19728@xref{write register packet}.
19729
19730Reply:
19731@table @samp
19732@item @var{r@dots{}.}
19733The hex encoded value of the register in target byte order.
19734@end table
19735
19736@item @code{P}@var{n@dots{}}@code{=}@var{r@dots{}} --- write register
19737@anchor{write register packet}
19738@cindex @code{P} packet
19739
19740Write register @var{n@dots{}} with value @var{r@dots{}}, which contains two hex
8e04817f 19741digits for each byte in the register (target byte order).
c906108c 19742
ee2d5c50
AC
19743Reply:
19744@table @samp
19745@item OK
19746for success
19747@item E@var{NN}
19748for an error
19749@end table
19750
19751@item @code{q}@var{query} --- general query
19752@anchor{general query packet}
19753@cindex @code{q} packet
19754
19755Request info about @var{query}. In general @value{GDBN} queries have a
19756leading upper case letter. Custom vendor queries should use a company
19757prefix (in lower case) ex: @samp{qfsf.var}. @var{query} may optionally
19758be followed by a @samp{,} or @samp{;} separated list. Stubs must ensure
19759that they match the full @var{query} name.
19760
19761Reply:
19762@table @samp
19763@item @var{XX@dots{}}
19764Hex encoded data from query. The reply can not be empty.
19765@item E@var{NN}
19766error reply
8e04817f 19767@item
ee2d5c50
AC
19768Indicating an unrecognized @var{query}.
19769@end table
19770
19771@item @code{Q}@var{var}@code{=}@var{val} --- general set
19772@cindex @code{Q} packet
19773
19774Set value of @var{var} to @var{val}.
19775
19776@xref{general query packet}, for a discussion of naming conventions.
c906108c 19777
ee2d5c50
AC
19778@item @code{r} --- reset @strong{(deprecated)}
19779@cindex @code{r} packet
c906108c 19780
8e04817f 19781Reset the entire system.
c906108c 19782
ee2d5c50
AC
19783@item @code{R}@var{XX} --- remote restart
19784@cindex @code{R} packet
19785
8e04817f
AC
19786Restart the program being debugged. @var{XX}, while needed, is ignored.
19787This packet is only available in extended mode.
ee2d5c50
AC
19788
19789Reply:
19790@table @samp
19791@item @emph{no reply}
8e04817f 19792The @samp{R} packet has no reply.
ee2d5c50
AC
19793@end table
19794
19795@item @code{s}@var{addr} --- step
19796@cindex @code{s} packet
c906108c 19797
8e04817f
AC
19798@var{addr} is address to resume. If @var{addr} is omitted, resume at
19799same address.
c906108c 19800
ee2d5c50
AC
19801Reply:
19802@xref{Stop Reply Packets}, for the reply specifications.
19803
19804@item @code{S}@var{sig}@code{;}@var{addr} --- step with signal
19805@anchor{step with signal packet}
19806@cindex @code{S} packet
19807
8e04817f 19808Like @samp{C} but step not continue.
c906108c 19809
ee2d5c50
AC
19810Reply:
19811@xref{Stop Reply Packets}, for the reply specifications.
19812
19813@item @code{t}@var{addr}@code{:}@var{PP}@code{,}@var{MM} --- search
19814@cindex @code{t} packet
19815
8e04817f 19816Search backwards starting at address @var{addr} for a match with pattern
ee2d5c50
AC
19817@var{PP} and mask @var{MM}. @var{PP} and @var{MM} are 4 bytes.
19818@var{addr} must be at least 3 digits.
c906108c 19819
ee2d5c50
AC
19820@item @code{T}@var{XX} --- thread alive
19821@cindex @code{T} packet
c906108c 19822
ee2d5c50 19823Find out if the thread XX is alive.
c906108c 19824
ee2d5c50
AC
19825Reply:
19826@table @samp
19827@item OK
19828thread is still alive
19829@item E@var{NN}
19830thread is dead
19831@end table
19832
19833@item @code{u} --- reserved
19834
19835Reserved for future use.
19836
19837@item @code{U} --- reserved
19838
19839Reserved for future use.
19840
86d30acc 19841@item @code{v} --- verbose packet prefix
ee2d5c50 19842
86d30acc
DJ
19843Packets starting with @code{v} are identified by a multi-letter name,
19844up to the first @code{;} or @code{?} (or the end of the packet).
19845
19846@item @code{vCont}[;@var{action}[@code{:}@var{tid}]]... --- extended resume
19847@cindex @code{vCont} packet
19848
19849Resume the inferior. Different actions may be specified for each thread.
19850If an action is specified with no @var{tid}, then it is applied to any
19851threads that don't have a specific action specified; if no default action is
19852specified then other threads should remain stopped. Specifying multiple
19853default actions is an error; specifying no actions is also an error.
19854Thread IDs are specified in hexadecimal. Currently supported actions are:
19855
19856@table @code
19857@item c
19858Continue.
19859@item C@var{sig}
19860Continue with signal @var{sig}. @var{sig} should be two hex digits.
19861@item s
19862Step.
19863@item S@var{sig}
19864Step with signal @var{sig}. @var{sig} should be two hex digits.
19865@end table
19866
19867The optional @var{addr} argument normally associated with these packets is
19868not supported in @code{vCont}.
19869
19870Reply:
19871@xref{Stop Reply Packets}, for the reply specifications.
19872
19873@item @code{vCont?} --- extended resume query
19874@cindex @code{vCont?} packet
19875
19876Query support for the @code{vCont} packet.
19877
19878Reply:
19879@table @samp
19880@item @code{vCont}[;@var{action}]...
19881The @code{vCont} packet is supported. Each @var{action} is a supported
19882command in the @code{vCont} packet.
19883@item
19884The @code{vCont} packet is not supported.
19885@end table
ee2d5c50
AC
19886
19887@item @code{V} --- reserved
c906108c 19888
ee2d5c50 19889Reserved for future use.
c906108c 19890
ee2d5c50 19891@item @code{w} --- reserved
c906108c 19892
ee2d5c50 19893Reserved for future use.
c906108c 19894
ee2d5c50 19895@item @code{W} --- reserved
c906108c 19896
ee2d5c50 19897Reserved for future use.
c906108c 19898
ee2d5c50
AC
19899@item @code{x} --- reserved
19900
19901Reserved for future use.
19902
19903@item @code{X}@var{addr}@code{,}@var{length}@var{:}@var{XX@dots{}} --- write mem (binary)
19904@cindex @code{X} packet
19905
19906@var{addr} is address, @var{length} is number of bytes, @var{XX@dots{}}
19907is binary data. The characters @code{$}, @code{#}, and @code{0x7d} are
8e04817f 19908escaped using @code{0x7d}.
c906108c 19909
ee2d5c50
AC
19910Reply:
19911@table @samp
19912@item OK
19913for success
19914@item E@var{NN}
19915for an error
19916@end table
19917
19918@item @code{y} --- reserved
c906108c 19919
ee2d5c50 19920Reserved for future use.
c906108c 19921
ee2d5c50
AC
19922@item @code{Y} reserved
19923
19924Reserved for future use.
19925
2f870471
AC
19926@item @code{z}@var{type}@code{,}@var{addr}@code{,}@var{length} --- remove breakpoint or watchpoint @strong{(draft)}
19927@itemx @code{Z}@var{type}@code{,}@var{addr}@code{,}@var{length} --- insert breakpoint or watchpoint @strong{(draft)}
19928@anchor{insert breakpoint or watchpoint packet}
ee2d5c50 19929@cindex @code{z} packet
2f870471 19930@cindex @code{Z} packets
ee2d5c50 19931
2f870471
AC
19932Insert (@code{Z}) or remove (@code{z}) a @var{type} breakpoint or
19933watchpoint starting at address @var{address} and covering the next
19934@var{length} bytes.
ee2d5c50 19935
2f870471
AC
19936Each breakpoint and watchpoint packet @var{type} is documented
19937separately.
19938
512217c7
AC
19939@emph{Implementation notes: A remote target shall return an empty string
19940for an unrecognized breakpoint or watchpoint packet @var{type}. A
19941remote target shall support either both or neither of a given
2f870471
AC
19942@code{Z}@var{type}@dots{} and @code{z}@var{type}@dots{} packet pair. To
19943avoid potential problems with duplicate packets, the operations should
19944be implemented in an idempotent way.}
19945
19946@item @code{z}@code{0}@code{,}@var{addr}@code{,}@var{length} --- remove memory breakpoint @strong{(draft)}
19947@item @code{Z}@code{0}@code{,}@var{addr}@code{,}@var{length} --- insert memory breakpoint @strong{(draft)}
19948@cindex @code{z0} packet
19949@cindex @code{Z0} packet
19950
19951Insert (@code{Z0}) or remove (@code{z0}) a memory breakpoint at address
19952@code{addr} of size @code{length}.
19953
19954A memory breakpoint is implemented by replacing the instruction at
19955@var{addr} with a software breakpoint or trap instruction. The
19956@code{length} is used by targets that indicates the size of the
19957breakpoint (in bytes) that should be inserted (e.g., the @sc{arm} and
19958@sc{mips} can insert either a 2 or 4 byte breakpoint).
c906108c 19959
2f870471
AC
19960@emph{Implementation note: It is possible for a target to copy or move
19961code that contains memory breakpoints (e.g., when implementing
19962overlays). The behavior of this packet, in the presence of such a
19963target, is not defined.}
c906108c 19964
ee2d5c50
AC
19965Reply:
19966@table @samp
2f870471
AC
19967@item OK
19968success
19969@item
19970not supported
ee2d5c50
AC
19971@item E@var{NN}
19972for an error
2f870471
AC
19973@end table
19974
19975@item @code{z}@code{1}@code{,}@var{addr}@code{,}@var{length} --- remove hardware breakpoint @strong{(draft)}
19976@item @code{Z}@code{1}@code{,}@var{addr}@code{,}@var{length} --- insert hardware breakpoint @strong{(draft)}
19977@cindex @code{z1} packet
19978@cindex @code{Z1} packet
19979
19980Insert (@code{Z1}) or remove (@code{z1}) a hardware breakpoint at
19981address @code{addr} of size @code{length}.
19982
19983A hardware breakpoint is implemented using a mechanism that is not
19984dependant on being able to modify the target's memory.
19985
19986@emph{Implementation note: A hardware breakpoint is not affected by code
19987movement.}
19988
19989Reply:
19990@table @samp
ee2d5c50 19991@item OK
2f870471
AC
19992success
19993@item
19994not supported
19995@item E@var{NN}
19996for an error
19997@end table
19998
19999@item @code{z}@code{2}@code{,}@var{addr}@code{,}@var{length} --- remove write watchpoint @strong{(draft)}
20000@item @code{Z}@code{2}@code{,}@var{addr}@code{,}@var{length} --- insert write watchpoint @strong{(draft)}
20001@cindex @code{z2} packet
20002@cindex @code{Z2} packet
20003
20004Insert (@code{Z2}) or remove (@code{z2}) a write watchpoint.
20005
20006Reply:
20007@table @samp
20008@item OK
20009success
20010@item
20011not supported
20012@item E@var{NN}
20013for an error
20014@end table
20015
20016@item @code{z}@code{3}@code{,}@var{addr}@code{,}@var{length} --- remove read watchpoint @strong{(draft)}
20017@item @code{Z}@code{3}@code{,}@var{addr}@code{,}@var{length} --- insert read watchpoint @strong{(draft)}
20018@cindex @code{z3} packet
20019@cindex @code{Z3} packet
20020
2e834e49 20021Insert (@code{Z3}) or remove (@code{z3}) a read watchpoint.
2f870471
AC
20022
20023Reply:
20024@table @samp
20025@item OK
20026success
20027@item
20028not supported
20029@item E@var{NN}
20030for an error
20031@end table
20032
2e834e49
HPN
20033@item @code{z}@code{4}@code{,}@var{addr}@code{,}@var{length} --- remove access watchpoint @strong{(draft)}
20034@item @code{Z}@code{4}@code{,}@var{addr}@code{,}@var{length} --- insert access watchpoint @strong{(draft)}
2f870471
AC
20035@cindex @code{z4} packet
20036@cindex @code{Z4} packet
20037
20038Insert (@code{Z4}) or remove (@code{z4}) an access watchpoint.
20039
20040Reply:
20041@table @samp
20042@item OK
20043success
20044@item
20045not supported
20046@item E@var{NN}
20047for an error
ee2d5c50
AC
20048@end table
20049
20050@end table
c906108c 20051
ee2d5c50
AC
20052@node Stop Reply Packets
20053@section Stop Reply Packets
20054@cindex stop reply packets
c906108c 20055
8e04817f
AC
20056The @samp{C}, @samp{c}, @samp{S}, @samp{s} and @samp{?} packets can
20057receive any of the below as a reply. In the case of the @samp{C},
20058@samp{c}, @samp{S} and @samp{s} packets, that reply is only returned
20059when the target halts. In the below the exact meaning of @samp{signal
20060number} is poorly defined. In general one of the UNIX signal numbering
20061conventions is used.
c906108c 20062
ee2d5c50 20063@table @samp
c906108c 20064
ee2d5c50
AC
20065@item S@var{AA}
20066@var{AA} is the signal number
c906108c 20067
8e04817f 20068@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
20069@cindex @code{T} packet reply
20070
8e04817f
AC
20071@var{AA} = two hex digit signal number; @var{n...} = register number
20072(hex), @var{r...} = target byte ordered register contents, size defined
12c266ea
AC
20073by @code{DEPRECATED_REGISTER_RAW_SIZE}; @var{n...} = @samp{thread},
20074@var{r...} = thread process ID, this is a hex integer; @var{n...} =
20075(@samp{watch} | @samp{rwatch} | @samp{awatch}, @var{r...} = data
20076address, this is a hex integer; @var{n...} = other string not starting
20077with valid hex digit. @value{GDBN} should ignore this @var{n...},
20078@var{r...} pair and go on to the next. This way we can extend the
20079protocol.
c906108c 20080
ee2d5c50
AC
20081@item W@var{AA}
20082
8e04817f 20083The process exited, and @var{AA} is the exit status. This is only
ee2d5c50
AC
20084applicable to certain targets.
20085
20086@item X@var{AA}
c906108c 20087
8e04817f 20088The process terminated with signal @var{AA}.
c906108c 20089
ee2d5c50
AC
20090@item N@var{AA};@var{t@dots{}};@var{d@dots{}};@var{b@dots{}} @strong{(obsolete)}
20091
20092@var{AA} = signal number; @var{t@dots{}} = address of symbol
20093@code{_start}; @var{d@dots{}} = base of data section; @var{b@dots{}} =
20094base of bss section. @emph{Note: only used by Cisco Systems targets.
20095The difference between this reply and the @samp{qOffsets} query is that
20096the @samp{N} packet may arrive spontaneously whereas the @samp{qOffsets}
20097is a query initiated by the host debugger.}
c906108c 20098
ee2d5c50 20099@item O@var{XX@dots{}}
c906108c 20100
ee2d5c50
AC
20101@var{XX@dots{}} is hex encoding of @sc{ascii} data. This can happen at
20102any time while the program is running and the debugger should continue
20103to wait for @samp{W}, @samp{T}, etc.
20104
0ce1b118
CV
20105@item F@var{call-id}@code{,}@var{parameter@dots{}}
20106
20107@var{call-id} is the identifier which says which host system call should
20108be called. This is just the name of the function. Translation into the
20109correct system call is only applicable as it's defined in @value{GDBN}.
20110@xref{File-I/O remote protocol extension}, for a list of implemented
20111system calls.
20112
20113@var{parameter@dots{}} is a list of parameters as defined for this very
20114system call.
20115
20116The target replies with this packet when it expects @value{GDBN} to call
20117a host system call on behalf of the target. @value{GDBN} replies with
20118an appropriate @code{F} packet and keeps up waiting for the next reply
20119packet from the target. The latest @samp{C}, @samp{c}, @samp{S} or
20120@samp{s} action is expected to be continued.
20121@xref{File-I/O remote protocol extension}, for more details.
20122
ee2d5c50
AC
20123@end table
20124
20125@node General Query Packets
20126@section General Query Packets
c906108c 20127
8e04817f 20128The following set and query packets have already been defined.
c906108c 20129
ee2d5c50 20130@table @r
c906108c 20131
ee2d5c50
AC
20132@item @code{q}@code{C} --- current thread
20133
20134Return the current thread id.
20135
20136Reply:
20137@table @samp
20138@item @code{QC}@var{pid}
8e04817f 20139Where @var{pid} is a HEX encoded 16 bit process id.
ee2d5c50
AC
20140@item *
20141Any other reply implies the old pid.
20142@end table
20143
20144@item @code{q}@code{fThreadInfo} -- all thread ids
20145
20146@code{q}@code{sThreadInfo}
c906108c 20147
8e04817f
AC
20148Obtain a list of active thread ids from the target (OS). Since there
20149may be too many active threads to fit into one reply packet, this query
20150works iteratively: it may require more than one query/reply sequence to
20151obtain the entire list of threads. The first query of the sequence will
20152be the @code{qf}@code{ThreadInfo} query; subsequent queries in the
20153sequence will be the @code{qs}@code{ThreadInfo} query.
ee2d5c50
AC
20154
20155NOTE: replaces the @code{qL} query (see below).
20156
20157Reply:
20158@table @samp
20159@item @code{m}@var{id}
20160A single thread id
20161@item @code{m}@var{id},@var{id}@dots{}
20162a comma-separated list of thread ids
20163@item @code{l}
20164(lower case 'el') denotes end of list.
20165@end table
20166
20167In response to each query, the target will reply with a list of one or
20168more thread ids, in big-endian hex, separated by commas. @value{GDBN}
20169will respond to each reply with a request for more thread ids (using the
8e04817f
AC
20170@code{qs} form of the query), until the target responds with @code{l}
20171(lower-case el, for @code{'last'}).
c906108c 20172
ee2d5c50
AC
20173@item @code{q}@code{ThreadExtraInfo}@code{,}@var{id} --- extra thread info
20174
20175Where @var{id} is a thread-id in big-endian hex. Obtain a printable
20176string description of a thread's attributes from the target OS. This
20177string may contain anything that the target OS thinks is interesting for
20178@value{GDBN} to tell the user about the thread. The string is displayed
20179in @value{GDBN}'s @samp{info threads} display. Some examples of
20180possible thread extra info strings are ``Runnable'', or ``Blocked on
20181Mutex''.
20182
20183Reply:
20184@table @samp
20185@item @var{XX@dots{}}
20186Where @var{XX@dots{}} is a hex encoding of @sc{ascii} data, comprising
20187the printable string containing the extra information about the thread's
8e04817f 20188attributes.
ee2d5c50
AC
20189@end table
20190
20191@item @code{q}@code{L}@var{startflag}@var{threadcount}@var{nextthread} --- query @var{LIST} or @var{threadLIST} @strong{(deprecated)}
c906108c 20192
8e04817f
AC
20193Obtain thread information from RTOS. Where: @var{startflag} (one hex
20194digit) is one to indicate the first query and zero to indicate a
20195subsequent query; @var{threadcount} (two hex digits) is the maximum
20196number of threads the response packet can contain; and @var{nextthread}
20197(eight hex digits), for subsequent queries (@var{startflag} is zero), is
20198returned in the response as @var{argthread}.
ee2d5c50
AC
20199
20200NOTE: this query is replaced by the @code{q}@code{fThreadInfo} query
20201(see above).
20202
20203Reply:
20204@table @samp
20205@item @code{q}@code{M}@var{count}@var{done}@var{argthread}@var{thread@dots{}}
8e04817f
AC
20206Where: @var{count} (two hex digits) is the number of threads being
20207returned; @var{done} (one hex digit) is zero to indicate more threads
20208and one indicates no further threads; @var{argthreadid} (eight hex
ee2d5c50
AC
20209digits) is @var{nextthread} from the request packet; @var{thread@dots{}}
20210is a sequence of thread IDs from the target. @var{threadid} (eight hex
8e04817f 20211digits). See @code{remote.c:parse_threadlist_response()}.
ee2d5c50 20212@end table
c906108c 20213
ee2d5c50
AC
20214@item @code{q}@code{CRC:}@var{addr}@code{,}@var{length} --- compute CRC of memory block
20215
20216Reply:
20217@table @samp
20218@item @code{E}@var{NN}
20219An error (such as memory fault)
20220@item @code{C}@var{CRC32}
20221A 32 bit cyclic redundancy check of the specified memory region.
20222@end table
20223
20224@item @code{q}@code{Offsets} --- query sect offs
c906108c 20225
8e04817f
AC
20226Get section offsets that the target used when re-locating the downloaded
20227image. @emph{Note: while a @code{Bss} offset is included in the
20228response, @value{GDBN} ignores this and instead applies the @code{Data}
20229offset to the @code{Bss} section.}
c906108c 20230
ee2d5c50
AC
20231Reply:
20232@table @samp
20233@item @code{Text=}@var{xxx}@code{;Data=}@var{yyy}@code{;Bss=}@var{zzz}
20234@end table
20235
20236@item @code{q}@code{P}@var{mode}@var{threadid} --- thread info request
20237
8e04817f
AC
20238Returns information on @var{threadid}. Where: @var{mode} is a hex
20239encoded 32 bit mode; @var{threadid} is a hex encoded 64 bit thread ID.
ee2d5c50
AC
20240
20241Reply:
20242@table @samp
20243@item *
20244@end table
20245
8e04817f 20246See @code{remote.c:remote_unpack_thread_info_response()}.
c906108c 20247
ee2d5c50
AC
20248@item @code{q}@code{Rcmd,}@var{command} --- remote command
20249
20250@var{command} (hex encoded) is passed to the local interpreter for
8e04817f
AC
20251execution. Invalid commands should be reported using the output string.
20252Before the final result packet, the target may also respond with a
ee2d5c50
AC
20253number of intermediate @code{O}@var{output} console output packets.
20254@emph{Implementors should note that providing access to a stubs's
20255interpreter may have security implications}.
20256
20257Reply:
20258@table @samp
20259@item OK
8e04817f 20260A command response with no output.
ee2d5c50 20261@item @var{OUTPUT}
8e04817f 20262A command response with the hex encoded output string @var{OUTPUT}.
ee2d5c50 20263@item @code{E}@var{NN}
8e04817f 20264Indicate a badly formed request.
ee2d5c50 20265@item @samp{}
8e04817f 20266When @samp{q}@samp{Rcmd} is not recognized.
ee2d5c50
AC
20267@end table
20268
20269@item @code{qSymbol::} --- symbol lookup
c906108c 20270
8e04817f
AC
20271Notify the target that @value{GDBN} is prepared to serve symbol lookup
20272requests. Accept requests from the target for the values of symbols.
ee2d5c50
AC
20273
20274Reply:
20275@table @samp
20276@item @code{OK}
8e04817f 20277The target does not need to look up any (more) symbols.
ee2d5c50
AC
20278@item @code{qSymbol:}@var{sym_name}
20279The target requests the value of symbol @var{sym_name} (hex encoded).
20280@value{GDBN} may provide the value by using the
20281@code{qSymbol:}@var{sym_value}:@var{sym_name} message, described below.
20282@end table
20283
20284@item @code{qSymbol:}@var{sym_value}:@var{sym_name} --- symbol value
20285
20286Set the value of @var{sym_name} to @var{sym_value}.
20287
20288@var{sym_name} (hex encoded) is the name of a symbol whose value the
20289target has previously requested.
20290
20291@var{sym_value} (hex) is the value for symbol @var{sym_name}. If
20292@value{GDBN} cannot supply a value for @var{sym_name}, then this field
20293will be empty.
20294
20295Reply:
20296@table @samp
20297@item @code{OK}
8e04817f 20298The target does not need to look up any (more) symbols.
ee2d5c50
AC
20299@item @code{qSymbol:}@var{sym_name}
20300The target requests the value of a new symbol @var{sym_name} (hex
20301encoded). @value{GDBN} will continue to supply the values of symbols
20302(if available), until the target ceases to request them.
20303@end table
eb12ee30 20304
ee2d5c50
AC
20305@end table
20306
20307@node Register Packet Format
20308@section Register Packet Format
eb12ee30 20309
8e04817f 20310The following @samp{g}/@samp{G} packets have previously been defined.
ee2d5c50
AC
20311In the below, some thirty-two bit registers are transferred as
20312sixty-four bits. Those registers should be zero/sign extended (which?)
20313to fill the space allocated. Register bytes are transfered in target
20314byte order. The two nibbles within a register byte are transfered
20315most-significant - least-significant.
eb12ee30 20316
ee2d5c50 20317@table @r
eb12ee30 20318
8e04817f 20319@item MIPS32
ee2d5c50 20320
8e04817f
AC
20321All registers are transfered as thirty-two bit quantities in the order:
2032232 general-purpose; sr; lo; hi; bad; cause; pc; 32 floating-point
20323registers; fsr; fir; fp.
eb12ee30 20324
8e04817f 20325@item MIPS64
ee2d5c50 20326
8e04817f
AC
20327All registers are transfered as sixty-four bit quantities (including
20328thirty-two bit registers such as @code{sr}). The ordering is the same
20329as @code{MIPS32}.
eb12ee30 20330
ee2d5c50
AC
20331@end table
20332
20333@node Examples
20334@section Examples
eb12ee30 20335
8e04817f
AC
20336Example sequence of a target being re-started. Notice how the restart
20337does not get any direct output:
eb12ee30 20338
474c8240 20339@smallexample
d2c6833e
AC
20340-> @code{R00}
20341<- @code{+}
8e04817f 20342@emph{target restarts}
d2c6833e 20343-> @code{?}
8e04817f 20344<- @code{+}
d2c6833e
AC
20345<- @code{T001:1234123412341234}
20346-> @code{+}
474c8240 20347@end smallexample
eb12ee30 20348
8e04817f 20349Example sequence of a target being stepped by a single instruction:
eb12ee30 20350
474c8240 20351@smallexample
d2c6833e 20352-> @code{G1445@dots{}}
8e04817f 20353<- @code{+}
d2c6833e
AC
20354-> @code{s}
20355<- @code{+}
20356@emph{time passes}
20357<- @code{T001:1234123412341234}
8e04817f 20358-> @code{+}
d2c6833e 20359-> @code{g}
8e04817f 20360<- @code{+}
d2c6833e
AC
20361<- @code{1455@dots{}}
20362-> @code{+}
474c8240 20363@end smallexample
eb12ee30 20364
0ce1b118
CV
20365@node File-I/O remote protocol extension
20366@section File-I/O remote protocol extension
20367@cindex File-I/O remote protocol extension
20368
20369@menu
20370* File-I/O Overview::
20371* Protocol basics::
20372* The `F' request packet::
20373* The `F' reply packet::
20374* Memory transfer::
20375* The Ctrl-C message::
20376* Console I/O::
20377* The isatty call::
20378* The system call::
20379* List of supported calls::
20380* Protocol specific representation of datatypes::
20381* Constants::
20382* File-I/O Examples::
20383@end menu
20384
20385@node File-I/O Overview
20386@subsection File-I/O Overview
20387@cindex file-i/o overview
20388
20389The File I/O remote protocol extension (short: File-I/O) allows the
20390target to use the hosts file system and console I/O when calling various
20391system calls. System calls on the target system are translated into a
20392remote protocol packet to the host system which then performs the needed
20393actions and returns with an adequate response packet to the target system.
20394This simulates file system operations even on targets that lack file systems.
20395
20396The protocol is defined host- and target-system independent. It uses
20397it's own independent representation of datatypes and values. Both,
20398@value{GDBN} and the target's @value{GDBN} stub are responsible for
20399translating the system dependent values into the unified protocol values
20400when data is transmitted.
20401
20402The communication is synchronous. A system call is possible only
20403when GDB is waiting for the @samp{C}, @samp{c}, @samp{S} or @samp{s}
20404packets. While @value{GDBN} handles the request for a system call,
20405the target is stopped to allow deterministic access to the target's
20406memory. Therefore File-I/O is not interuptible by target signals. It
20407is possible to interrupt File-I/O by a user interrupt (Ctrl-C), though.
20408
20409The target's request to perform a host system call does not finish
20410the latest @samp{C}, @samp{c}, @samp{S} or @samp{s} action. That means,
20411after finishing the system call, the target returns to continuing the
20412previous activity (continue, step). No additional continue or step
20413request from @value{GDBN} is required.
20414
20415@smallexample
20416(gdb) continue
20417 <- target requests 'system call X'
20418 target is stopped, @value{GDBN} executes system call
20419 -> GDB returns result
20420 ... target continues, GDB returns to wait for the target
20421 <- target hits breakpoint and sends a Txx packet
20422@end smallexample
20423
20424The protocol is only used for files on the host file system and
20425for I/O on the console. Character or block special devices, pipes,
20426named pipes or sockets or any other communication method on the host
20427system are not supported by this protocol.
20428
20429@node Protocol basics
20430@subsection Protocol basics
20431@cindex protocol basics, file-i/o
20432
20433The File-I/O protocol uses the @code{F} packet, as request as well
20434as as reply packet. Since a File-I/O system call can only occur when
20435@value{GDBN} is waiting for the continuing or stepping target, the
20436File-I/O request is a reply that @value{GDBN} has to expect as a result
20437of a former @samp{C}, @samp{c}, @samp{S} or @samp{s} packet.
20438This @code{F} packet contains all information needed to allow @value{GDBN}
20439to call the appropriate host system call:
20440
20441@itemize @bullet
20442@item
20443A unique identifier for the requested system call.
20444
20445@item
20446All parameters to the system call. Pointers are given as addresses
20447in the target memory address space. Pointers to strings are given as
20448pointer/length pair. Numerical values are given as they are.
20449Numerical control values are given in a protocol specific representation.
20450
20451@end itemize
20452
20453At that point @value{GDBN} has to perform the following actions.
20454
20455@itemize @bullet
20456@item
20457If parameter pointer values are given, which point to data needed as input
20458to a system call, @value{GDBN} requests this data from the target with a
20459standard @code{m} packet request. This additional communication has to be
20460expected by the target implementation and is handled as any other @code{m}
20461packet.
20462
20463@item
20464@value{GDBN} translates all value from protocol representation to host
20465representation as needed. Datatypes are coerced into the host types.
20466
20467@item
20468@value{GDBN} calls the system call
20469
20470@item
20471It then coerces datatypes back to protocol representation.
20472
20473@item
20474If pointer parameters in the request packet point to buffer space in which
20475a system call is expected to copy data to, the data is transmitted to the
20476target using a @code{M} or @code{X} packet. This packet has to be expected
20477by the target implementation and is handled as any other @code{M} or @code{X}
20478packet.
20479
20480@end itemize
20481
20482Eventually @value{GDBN} replies with another @code{F} packet which contains all
20483necessary information for the target to continue. This at least contains
20484
20485@itemize @bullet
20486@item
20487Return value.
20488
20489@item
20490@code{errno}, if has been changed by the system call.
20491
20492@item
20493``Ctrl-C'' flag.
20494
20495@end itemize
20496
20497After having done the needed type and value coercion, the target continues
20498the latest continue or step action.
20499
20500@node The `F' request packet
20501@subsection The @code{F} request packet
20502@cindex file-i/o request packet
20503@cindex @code{F} request packet
20504
20505The @code{F} request packet has the following format:
20506
20507@table @samp
20508
20509@smallexample
20510@code{F}@var{call-id}@code{,}@var{parameter@dots{}}
20511@end smallexample
20512
20513@var{call-id} is the identifier to indicate the host system call to be called.
20514This is just the name of the function.
20515
20516@var{parameter@dots{}} are the parameters to the system call.
20517
20518@end table
20519
20520Parameters are hexadecimal integer values, either the real values in case
20521of scalar datatypes, as pointers to target buffer space in case of compound
20522datatypes and unspecified memory areas or as pointer/length pairs in case
20523of string parameters. These are appended to the call-id, each separated
20524from its predecessor by a comma. All values are transmitted in ASCII
20525string representation, pointer/length pairs separated by a slash.
20526
20527@node The `F' reply packet
20528@subsection The @code{F} reply packet
20529@cindex file-i/o reply packet
20530@cindex @code{F} reply packet
20531
20532The @code{F} reply packet has the following format:
20533
20534@table @samp
20535
20536@smallexample
20537@code{F}@var{retcode}@code{,}@var{errno}@code{,}@var{Ctrl-C flag}@code{;}@var{call specific attachment}
20538@end smallexample
20539
20540@var{retcode} is the return code of the system call as hexadecimal value.
20541
20542@var{errno} is the errno set by the call, in protocol specific representation.
20543This parameter can be omitted if the call was successful.
20544
20545@var{Ctrl-C flag} is only send if the user requested a break. In this
20546case, @var{errno} must be send as well, even if the call was successful.
20547The @var{Ctrl-C flag} itself consists of the character 'C':
20548
20549@smallexample
20550F0,0,C
20551@end smallexample
20552
20553@noindent
20554or, if the call was interupted before the host call has been performed:
20555
20556@smallexample
20557F-1,4,C
20558@end smallexample
20559
20560@noindent
20561assuming 4 is the protocol specific representation of @code{EINTR}.
20562
20563@end table
20564
20565@node Memory transfer
20566@subsection Memory transfer
20567@cindex memory transfer, in file-i/o protocol
20568
20569Structured data which is transferred using a memory read or write as e.g.@:
20570a @code{struct stat} is expected to be in a protocol specific format with
20571all scalar multibyte datatypes being big endian. This should be done by
20572the target before the @code{F} packet is sent resp.@: by @value{GDBN} before
20573it transfers memory to the target. Transferred pointers to structured
20574data should point to the already coerced data at any time.
20575
20576@node The Ctrl-C message
20577@subsection The Ctrl-C message
20578@cindex ctrl-c message, in file-i/o protocol
20579
20580A special case is, if the @var{Ctrl-C flag} is set in the @value{GDBN}
20581reply packet. In this case the target should behave, as if it had
20582gotten a break message. The meaning for the target is ``system call
20583interupted by @code{SIGINT}''. Consequentially, the target should actually stop
20584(as with a break message) and return to @value{GDBN} with a @code{T02}
20585packet. In this case, it's important for the target to know, in which
20586state the system call was interrupted. Since this action is by design
20587not an atomic operation, we have to differ between two cases:
20588
20589@itemize @bullet
20590@item
20591The system call hasn't been performed on the host yet.
20592
20593@item
20594The system call on the host has been finished.
20595
20596@end itemize
20597
20598These two states can be distinguished by the target by the value of the
20599returned @code{errno}. If it's the protocol representation of @code{EINTR}, the system
20600call hasn't been performed. This is equivalent to the @code{EINTR} handling
20601on POSIX systems. In any other case, the target may presume that the
20602system call has been finished --- successful or not --- and should behave
20603as if the break message arrived right after the system call.
20604
20605@value{GDBN} must behave reliable. If the system call has not been called
20606yet, @value{GDBN} may send the @code{F} reply immediately, setting @code{EINTR} as
20607@code{errno} in the packet. If the system call on the host has been finished
20608before the user requests a break, the full action must be finshed by
20609@value{GDBN}. This requires sending @code{M} or @code{X} packets as they fit.
20610The @code{F} packet may only be send when either nothing has happened
20611or the full action has been completed.
20612
20613@node Console I/O
20614@subsection Console I/O
20615@cindex console i/o as part of file-i/o
20616
20617By default and if not explicitely closed by the target system, the file
20618descriptors 0, 1 and 2 are connected to the @value{GDBN} console. Output
20619on the @value{GDBN} console is handled as any other file output operation
20620(@code{write(1, @dots{})} or @code{write(2, @dots{})}). Console input is handled
20621by @value{GDBN} so that after the target read request from file descriptor
206220 all following typing is buffered until either one of the following
20623conditions is met:
20624
20625@itemize @bullet
20626@item
20627The user presses @kbd{Ctrl-C}. The behaviour is as explained above, the
20628@code{read}
20629system call is treated as finished.
20630
20631@item
20632The user presses @kbd{Enter}. This is treated as end of input with a trailing
20633line feed.
20634
20635@item
20636The user presses @kbd{Ctrl-D}. This is treated as end of input. No trailing
20637character, especially no Ctrl-D is appended to the input.
20638
20639@end itemize
20640
20641If the user has typed more characters as fit in the buffer given to
20642the read call, the trailing characters are buffered in @value{GDBN} until
20643either another @code{read(0, @dots{})} is requested by the target or debugging
20644is stopped on users request.
20645
20646@node The isatty call
20647@subsection The isatty(3) call
20648@cindex isatty call, file-i/o protocol
20649
20650A special case in this protocol is the library call @code{isatty} which
20651is implemented as it's own call inside of this protocol. It returns
206521 to the target if the file descriptor given as parameter is attached
20653to the @value{GDBN} console, 0 otherwise. Implementing through system calls
20654would require implementing @code{ioctl} and would be more complex than
20655needed.
20656
20657@node The system call
20658@subsection The system(3) call
20659@cindex system call, file-i/o protocol
20660
20661The other special case in this protocol is the @code{system} call which
20662is implemented as it's own call, too. @value{GDBN} is taking over the full
20663task of calling the necessary host calls to perform the @code{system}
20664call. The return value of @code{system} is simplified before it's returned
20665to the target. Basically, the only signal transmitted back is @code{EINTR}
20666in case the user pressed @kbd{Ctrl-C}. Otherwise the return value consists
20667entirely of the exit status of the called command.
20668
20669Due to security concerns, the @code{system} call is refused to be called
20670by @value{GDBN} by default. The user has to allow this call explicitly by
20671entering
20672
20673@table @samp
20674@kindex set remote system-call-allowed 1
20675@item @code{set remote system-call-allowed 1}
20676@end table
20677
20678Disabling the @code{system} call is done by
20679
20680@table @samp
20681@kindex set remote system-call-allowed 0
20682@item @code{set remote system-call-allowed 0}
20683@end table
20684
20685The current setting is shown by typing
20686
20687@table @samp
20688@kindex show remote system-call-allowed
20689@item @code{show remote system-call-allowed}
20690@end table
20691
20692@node List of supported calls
20693@subsection List of supported calls
20694@cindex list of supported file-i/o calls
20695
20696@menu
20697* open::
20698* close::
20699* read::
20700* write::
20701* lseek::
20702* rename::
20703* unlink::
20704* stat/fstat::
20705* gettimeofday::
20706* isatty::
20707* system::
20708@end menu
20709
20710@node open
20711@unnumberedsubsubsec open
20712@cindex open, file-i/o system call
20713
20714@smallexample
20715@exdent Synopsis:
20716int open(const char *pathname, int flags);
20717int open(const char *pathname, int flags, mode_t mode);
20718
20719@exdent Request:
20720Fopen,pathptr/len,flags,mode
20721@end smallexample
20722
20723@noindent
20724@code{flags} is the bitwise or of the following values:
20725
20726@table @code
20727@item O_CREAT
20728If the file does not exist it will be created. The host
20729rules apply as far as file ownership and time stamps
20730are concerned.
20731
20732@item O_EXCL
20733When used with O_CREAT, if the file already exists it is
20734an error and open() fails.
20735
20736@item O_TRUNC
20737If the file already exists and the open mode allows
20738writing (O_RDWR or O_WRONLY is given) it will be
20739truncated to length 0.
20740
20741@item O_APPEND
20742The file is opened in append mode.
20743
20744@item O_RDONLY
20745The file is opened for reading only.
20746
20747@item O_WRONLY
20748The file is opened for writing only.
20749
20750@item O_RDWR
20751The file is opened for reading and writing.
20752
20753@noindent
20754Each other bit is silently ignored.
20755
20756@end table
20757
20758@noindent
20759@code{mode} is the bitwise or of the following values:
20760
20761@table @code
20762@item S_IRUSR
20763User has read permission.
20764
20765@item S_IWUSR
20766User has write permission.
20767
20768@item S_IRGRP
20769Group has read permission.
20770
20771@item S_IWGRP
20772Group has write permission.
20773
20774@item S_IROTH
20775Others have read permission.
20776
20777@item S_IWOTH
20778Others have write permission.
20779
20780@noindent
20781Each other bit is silently ignored.
20782
20783@end table
20784
20785@smallexample
20786@exdent Return value:
20787open returns the new file descriptor or -1 if an error
20788occured.
20789
20790@exdent Errors:
20791@end smallexample
20792
20793@table @code
20794@item EEXIST
20795pathname already exists and O_CREAT and O_EXCL were used.
20796
20797@item EISDIR
20798pathname refers to a directory.
20799
20800@item EACCES
20801The requested access is not allowed.
20802
20803@item ENAMETOOLONG
20804pathname was too long.
20805
20806@item ENOENT
20807A directory component in pathname does not exist.
20808
20809@item ENODEV
20810pathname refers to a device, pipe, named pipe or socket.
20811
20812@item EROFS
20813pathname refers to a file on a read-only filesystem and
20814write access was requested.
20815
20816@item EFAULT
20817pathname is an invalid pointer value.
20818
20819@item ENOSPC
20820No space on device to create the file.
20821
20822@item EMFILE
20823The process already has the maximum number of files open.
20824
20825@item ENFILE
20826The limit on the total number of files open on the system
20827has been reached.
20828
20829@item EINTR
20830The call was interrupted by the user.
20831@end table
20832
20833@node close
20834@unnumberedsubsubsec close
20835@cindex close, file-i/o system call
20836
20837@smallexample
20838@exdent Synopsis:
20839int close(int fd);
20840
20841@exdent Request:
20842Fclose,fd
20843
20844@exdent Return value:
20845close returns zero on success, or -1 if an error occurred.
20846
20847@exdent Errors:
20848@end smallexample
20849
20850@table @code
20851@item EBADF
20852fd isn't a valid open file descriptor.
20853
20854@item EINTR
20855The call was interrupted by the user.
20856@end table
20857
20858@node read
20859@unnumberedsubsubsec read
20860@cindex read, file-i/o system call
20861
20862@smallexample
20863@exdent Synopsis:
20864int read(int fd, void *buf, unsigned int count);
20865
20866@exdent Request:
20867Fread,fd,bufptr,count
20868
20869@exdent Return value:
20870On success, the number of bytes read is returned.
20871Zero indicates end of file. If count is zero, read
20872returns zero as well. On error, -1 is returned.
20873
20874@exdent Errors:
20875@end smallexample
20876
20877@table @code
20878@item EBADF
20879fd is not a valid file descriptor or is not open for
20880reading.
20881
20882@item EFAULT
20883buf is an invalid pointer value.
20884
20885@item EINTR
20886The call was interrupted by the user.
20887@end table
20888
20889@node write
20890@unnumberedsubsubsec write
20891@cindex write, file-i/o system call
20892
20893@smallexample
20894@exdent Synopsis:
20895int write(int fd, const void *buf, unsigned int count);
20896
20897@exdent Request:
20898Fwrite,fd,bufptr,count
20899
20900@exdent Return value:
20901On success, the number of bytes written are returned.
20902Zero indicates nothing was written. On error, -1
20903is returned.
20904
20905@exdent Errors:
20906@end smallexample
20907
20908@table @code
20909@item EBADF
20910fd is not a valid file descriptor or is not open for
20911writing.
20912
20913@item EFAULT
20914buf is an invalid pointer value.
20915
20916@item EFBIG
20917An attempt was made to write a file that exceeds the
20918host specific maximum file size allowed.
20919
20920@item ENOSPC
20921No space on device to write the data.
20922
20923@item EINTR
20924The call was interrupted by the user.
20925@end table
20926
20927@node lseek
20928@unnumberedsubsubsec lseek
20929@cindex lseek, file-i/o system call
20930
20931@smallexample
20932@exdent Synopsis:
20933long lseek (int fd, long offset, int flag);
20934
20935@exdent Request:
20936Flseek,fd,offset,flag
20937@end smallexample
20938
20939@code{flag} is one of:
20940
20941@table @code
20942@item SEEK_SET
20943The offset is set to offset bytes.
20944
20945@item SEEK_CUR
20946The offset is set to its current location plus offset
20947bytes.
20948
20949@item SEEK_END
20950The offset is set to the size of the file plus offset
20951bytes.
20952@end table
20953
20954@smallexample
20955@exdent Return value:
20956On success, the resulting unsigned offset in bytes from
20957the beginning of the file is returned. Otherwise, a
20958value of -1 is returned.
20959
20960@exdent Errors:
20961@end smallexample
20962
20963@table @code
20964@item EBADF
20965fd is not a valid open file descriptor.
20966
20967@item ESPIPE
20968fd is associated with the @value{GDBN} console.
20969
20970@item EINVAL
20971flag is not a proper value.
20972
20973@item EINTR
20974The call was interrupted by the user.
20975@end table
20976
20977@node rename
20978@unnumberedsubsubsec rename
20979@cindex rename, file-i/o system call
20980
20981@smallexample
20982@exdent Synopsis:
20983int rename(const char *oldpath, const char *newpath);
20984
20985@exdent Request:
20986Frename,oldpathptr/len,newpathptr/len
20987
20988@exdent Return value:
20989On success, zero is returned. On error, -1 is returned.
20990
20991@exdent Errors:
20992@end smallexample
20993
20994@table @code
20995@item EISDIR
20996newpath is an existing directory, but oldpath is not a
20997directory.
20998
20999@item EEXIST
21000newpath is a non-empty directory.
21001
21002@item EBUSY
21003oldpath or newpath is a directory that is in use by some
21004process.
21005
21006@item EINVAL
21007An attempt was made to make a directory a subdirectory
21008of itself.
21009
21010@item ENOTDIR
21011A component used as a directory in oldpath or new
21012path is not a directory. Or oldpath is a directory
21013and newpath exists but is not a directory.
21014
21015@item EFAULT
21016oldpathptr or newpathptr are invalid pointer values.
21017
21018@item EACCES
21019No access to the file or the path of the file.
21020
21021@item ENAMETOOLONG
21022
21023oldpath or newpath was too long.
21024
21025@item ENOENT
21026A directory component in oldpath or newpath does not exist.
21027
21028@item EROFS
21029The file is on a read-only filesystem.
21030
21031@item ENOSPC
21032The device containing the file has no room for the new
21033directory entry.
21034
21035@item EINTR
21036The call was interrupted by the user.
21037@end table
21038
21039@node unlink
21040@unnumberedsubsubsec unlink
21041@cindex unlink, file-i/o system call
21042
21043@smallexample
21044@exdent Synopsis:
21045int unlink(const char *pathname);
21046
21047@exdent Request:
21048Funlink,pathnameptr/len
21049
21050@exdent Return value:
21051On success, zero is returned. On error, -1 is returned.
21052
21053@exdent Errors:
21054@end smallexample
21055
21056@table @code
21057@item EACCES
21058No access to the file or the path of the file.
21059
21060@item EPERM
21061The system does not allow unlinking of directories.
21062
21063@item EBUSY
21064The file pathname cannot be unlinked because it's
21065being used by another process.
21066
21067@item EFAULT
21068pathnameptr is an invalid pointer value.
21069
21070@item ENAMETOOLONG
21071pathname was too long.
21072
21073@item ENOENT
21074A directory component in pathname does not exist.
21075
21076@item ENOTDIR
21077A component of the path is not a directory.
21078
21079@item EROFS
21080The file is on a read-only filesystem.
21081
21082@item EINTR
21083The call was interrupted by the user.
21084@end table
21085
21086@node stat/fstat
21087@unnumberedsubsubsec stat/fstat
21088@cindex fstat, file-i/o system call
21089@cindex stat, file-i/o system call
21090
21091@smallexample
21092@exdent Synopsis:
21093int stat(const char *pathname, struct stat *buf);
21094int fstat(int fd, struct stat *buf);
21095
21096@exdent Request:
21097Fstat,pathnameptr/len,bufptr
21098Ffstat,fd,bufptr
21099
21100@exdent Return value:
21101On success, zero is returned. On error, -1 is returned.
21102
21103@exdent Errors:
21104@end smallexample
21105
21106@table @code
21107@item EBADF
21108fd is not a valid open file.
21109
21110@item ENOENT
21111A directory component in pathname does not exist or the
21112path is an empty string.
21113
21114@item ENOTDIR
21115A component of the path is not a directory.
21116
21117@item EFAULT
21118pathnameptr is an invalid pointer value.
21119
21120@item EACCES
21121No access to the file or the path of the file.
21122
21123@item ENAMETOOLONG
21124pathname was too long.
21125
21126@item EINTR
21127The call was interrupted by the user.
21128@end table
21129
21130@node gettimeofday
21131@unnumberedsubsubsec gettimeofday
21132@cindex gettimeofday, file-i/o system call
21133
21134@smallexample
21135@exdent Synopsis:
21136int gettimeofday(struct timeval *tv, void *tz);
21137
21138@exdent Request:
21139Fgettimeofday,tvptr,tzptr
21140
21141@exdent Return value:
21142On success, 0 is returned, -1 otherwise.
21143
21144@exdent Errors:
21145@end smallexample
21146
21147@table @code
21148@item EINVAL
21149tz is a non-NULL pointer.
21150
21151@item EFAULT
21152tvptr and/or tzptr is an invalid pointer value.
21153@end table
21154
21155@node isatty
21156@unnumberedsubsubsec isatty
21157@cindex isatty, file-i/o system call
21158
21159@smallexample
21160@exdent Synopsis:
21161int isatty(int fd);
21162
21163@exdent Request:
21164Fisatty,fd
21165
21166@exdent Return value:
21167Returns 1 if fd refers to the @value{GDBN} console, 0 otherwise.
21168
21169@exdent Errors:
21170@end smallexample
21171
21172@table @code
21173@item EINTR
21174The call was interrupted by the user.
21175@end table
21176
21177@node system
21178@unnumberedsubsubsec system
21179@cindex system, file-i/o system call
21180
21181@smallexample
21182@exdent Synopsis:
21183int system(const char *command);
21184
21185@exdent Request:
21186Fsystem,commandptr/len
21187
21188@exdent Return value:
21189The value returned is -1 on error and the return status
21190of the command otherwise. Only the exit status of the
21191command is returned, which is extracted from the hosts
21192system return value by calling WEXITSTATUS(retval).
21193In case /bin/sh could not be executed, 127 is returned.
21194
21195@exdent Errors:
21196@end smallexample
21197
21198@table @code
21199@item EINTR
21200The call was interrupted by the user.
21201@end table
21202
21203@node Protocol specific representation of datatypes
21204@subsection Protocol specific representation of datatypes
21205@cindex protocol specific representation of datatypes, in file-i/o protocol
21206
21207@menu
21208* Integral datatypes::
21209* Pointer values::
21210* struct stat::
21211* struct timeval::
21212@end menu
21213
21214@node Integral datatypes
21215@unnumberedsubsubsec Integral datatypes
21216@cindex integral datatypes, in file-i/o protocol
21217
21218The integral datatypes used in the system calls are
21219
21220@smallexample
21221int@r{,} unsigned int@r{,} long@r{,} unsigned long@r{,} mode_t @r{and} time_t
21222@end smallexample
21223
21224@code{Int}, @code{unsigned int}, @code{mode_t} and @code{time_t} are
21225implemented as 32 bit values in this protocol.
21226
21227@code{Long} and @code{unsigned long} are implemented as 64 bit types.
21228
21229@xref{Limits}, for corresponding MIN and MAX values (similar to those
21230in @file{limits.h}) to allow range checking on host and target.
21231
21232@code{time_t} datatypes are defined as seconds since the Epoch.
21233
21234All integral datatypes transferred as part of a memory read or write of a
21235structured datatype e.g.@: a @code{struct stat} have to be given in big endian
21236byte order.
21237
21238@node Pointer values
21239@unnumberedsubsubsec Pointer values
21240@cindex pointer values, in file-i/o protocol
21241
21242Pointers to target data are transmitted as they are. An exception
21243is made for pointers to buffers for which the length isn't
21244transmitted as part of the function call, namely strings. Strings
21245are transmitted as a pointer/length pair, both as hex values, e.g.@:
21246
21247@smallexample
21248@code{1aaf/12}
21249@end smallexample
21250
21251@noindent
21252which is a pointer to data of length 18 bytes at position 0x1aaf.
21253The length is defined as the full string length in bytes, including
21254the trailing null byte. Example:
21255
21256@smallexample
21257``hello, world'' at address 0x123456
21258@end smallexample
21259
21260@noindent
21261is transmitted as
21262
21263@smallexample
21264@code{123456/d}
21265@end smallexample
21266
21267@node struct stat
21268@unnumberedsubsubsec struct stat
21269@cindex struct stat, in file-i/o protocol
21270
21271The buffer of type struct stat used by the target and @value{GDBN} is defined
21272as follows:
21273
21274@smallexample
21275struct stat @{
21276 unsigned int st_dev; /* device */
21277 unsigned int st_ino; /* inode */
21278 mode_t st_mode; /* protection */
21279 unsigned int st_nlink; /* number of hard links */
21280 unsigned int st_uid; /* user ID of owner */
21281 unsigned int st_gid; /* group ID of owner */
21282 unsigned int st_rdev; /* device type (if inode device) */
21283 unsigned long st_size; /* total size, in bytes */
21284 unsigned long st_blksize; /* blocksize for filesystem I/O */
21285 unsigned long st_blocks; /* number of blocks allocated */
21286 time_t st_atime; /* time of last access */
21287 time_t st_mtime; /* time of last modification */
21288 time_t st_ctime; /* time of last change */
21289@};
21290@end smallexample
21291
21292The integral datatypes are conforming to the definitions given in the
21293approriate section (see @ref{Integral datatypes}, for details) so this
21294structure is of size 64 bytes.
21295
21296The values of several fields have a restricted meaning and/or
21297range of values.
21298
21299@smallexample
21300st_dev: 0 file
21301 1 console
21302
21303st_ino: No valid meaning for the target. Transmitted unchanged.
21304
21305st_mode: Valid mode bits are described in Appendix C. Any other
21306 bits have currently no meaning for the target.
21307
21308st_uid: No valid meaning for the target. Transmitted unchanged.
21309
21310st_gid: No valid meaning for the target. Transmitted unchanged.
21311
21312st_rdev: No valid meaning for the target. Transmitted unchanged.
21313
21314st_atime, st_mtime, st_ctime:
21315 These values have a host and file system dependent
21316 accuracy. Especially on Windows hosts the file systems
21317 don't support exact timing values.
21318@end smallexample
21319
21320The target gets a struct stat of the above representation and is
21321responsible to coerce it to the target representation before
21322continuing.
21323
21324Note that due to size differences between the host and target
21325representation of stat members, these members could eventually
21326get truncated on the target.
21327
21328@node struct timeval
21329@unnumberedsubsubsec struct timeval
21330@cindex struct timeval, in file-i/o protocol
21331
21332The buffer of type struct timeval used by the target and @value{GDBN}
21333is defined as follows:
21334
21335@smallexample
21336struct timeval @{
21337 time_t tv_sec; /* second */
21338 long tv_usec; /* microsecond */
21339@};
21340@end smallexample
21341
21342The integral datatypes are conforming to the definitions given in the
21343approriate section (see @ref{Integral datatypes}, for details) so this
21344structure is of size 8 bytes.
21345
21346@node Constants
21347@subsection Constants
21348@cindex constants, in file-i/o protocol
21349
21350The following values are used for the constants inside of the
21351protocol. @value{GDBN} and target are resposible to translate these
21352values before and after the call as needed.
21353
21354@menu
21355* Open flags::
21356* mode_t values::
21357* Errno values::
21358* Lseek flags::
21359* Limits::
21360@end menu
21361
21362@node Open flags
21363@unnumberedsubsubsec Open flags
21364@cindex open flags, in file-i/o protocol
21365
21366All values are given in hexadecimal representation.
21367
21368@smallexample
21369 O_RDONLY 0x0
21370 O_WRONLY 0x1
21371 O_RDWR 0x2
21372 O_APPEND 0x8
21373 O_CREAT 0x200
21374 O_TRUNC 0x400
21375 O_EXCL 0x800
21376@end smallexample
21377
21378@node mode_t values
21379@unnumberedsubsubsec mode_t values
21380@cindex mode_t values, in file-i/o protocol
21381
21382All values are given in octal representation.
21383
21384@smallexample
21385 S_IFREG 0100000
21386 S_IFDIR 040000
21387 S_IRUSR 0400
21388 S_IWUSR 0200
21389 S_IXUSR 0100
21390 S_IRGRP 040
21391 S_IWGRP 020
21392 S_IXGRP 010
21393 S_IROTH 04
21394 S_IWOTH 02
21395 S_IXOTH 01
21396@end smallexample
21397
21398@node Errno values
21399@unnumberedsubsubsec Errno values
21400@cindex errno values, in file-i/o protocol
21401
21402All values are given in decimal representation.
21403
21404@smallexample
21405 EPERM 1
21406 ENOENT 2
21407 EINTR 4
21408 EBADF 9
21409 EACCES 13
21410 EFAULT 14
21411 EBUSY 16
21412 EEXIST 17
21413 ENODEV 19
21414 ENOTDIR 20
21415 EISDIR 21
21416 EINVAL 22
21417 ENFILE 23
21418 EMFILE 24
21419 EFBIG 27
21420 ENOSPC 28
21421 ESPIPE 29
21422 EROFS 30
21423 ENAMETOOLONG 91
21424 EUNKNOWN 9999
21425@end smallexample
21426
21427 EUNKNOWN is used as a fallback error value if a host system returns
21428 any error value not in the list of supported error numbers.
21429
21430@node Lseek flags
21431@unnumberedsubsubsec Lseek flags
21432@cindex lseek flags, in file-i/o protocol
21433
21434@smallexample
21435 SEEK_SET 0
21436 SEEK_CUR 1
21437 SEEK_END 2
21438@end smallexample
21439
21440@node Limits
21441@unnumberedsubsubsec Limits
21442@cindex limits, in file-i/o protocol
21443
21444All values are given in decimal representation.
21445
21446@smallexample
21447 INT_MIN -2147483648
21448 INT_MAX 2147483647
21449 UINT_MAX 4294967295
21450 LONG_MIN -9223372036854775808
21451 LONG_MAX 9223372036854775807
21452 ULONG_MAX 18446744073709551615
21453@end smallexample
21454
21455@node File-I/O Examples
21456@subsection File-I/O Examples
21457@cindex file-i/o examples
21458
21459Example sequence of a write call, file descriptor 3, buffer is at target
21460address 0x1234, 6 bytes should be written:
21461
21462@smallexample
21463<- @code{Fwrite,3,1234,6}
21464@emph{request memory read from target}
21465-> @code{m1234,6}
21466<- XXXXXX
21467@emph{return "6 bytes written"}
21468-> @code{F6}
21469@end smallexample
21470
21471Example sequence of a read call, file descriptor 3, buffer is at target
21472address 0x1234, 6 bytes should be read:
21473
21474@smallexample
21475<- @code{Fread,3,1234,6}
21476@emph{request memory write to target}
21477-> @code{X1234,6:XXXXXX}
21478@emph{return "6 bytes read"}
21479-> @code{F6}
21480@end smallexample
21481
21482Example sequence of a read call, call fails on the host due to invalid
21483file descriptor (EBADF):
21484
21485@smallexample
21486<- @code{Fread,3,1234,6}
21487-> @code{F-1,9}
21488@end smallexample
21489
21490Example sequence of a read call, user presses Ctrl-C before syscall on
21491host is called:
21492
21493@smallexample
21494<- @code{Fread,3,1234,6}
21495-> @code{F-1,4,C}
21496<- @code{T02}
21497@end smallexample
21498
21499Example sequence of a read call, user presses Ctrl-C after syscall on
21500host is called:
21501
21502@smallexample
21503<- @code{Fread,3,1234,6}
21504-> @code{X1234,6:XXXXXX}
21505<- @code{T02}
21506@end smallexample
21507
f418dd93
DJ
21508@include agentexpr.texi
21509
aab4e0ec 21510@include gpl.texi
eb12ee30 21511
6826cf00
EZ
21512@include fdl.texi
21513
6d2ebf8b 21514@node Index
c906108c
SS
21515@unnumbered Index
21516
21517@printindex cp
21518
21519@tex
21520% I think something like @colophon should be in texinfo. In the
21521% meantime:
21522\long\def\colophon{\hbox to0pt{}\vfill
21523\centerline{The body of this manual is set in}
21524\centerline{\fontname\tenrm,}
21525\centerline{with headings in {\bf\fontname\tenbf}}
21526\centerline{and examples in {\tt\fontname\tentt}.}
21527\centerline{{\it\fontname\tenit\/},}
21528\centerline{{\bf\fontname\tenbf}, and}
21529\centerline{{\sl\fontname\tensl\/}}
21530\centerline{are used for emphasis.}\vfill}
21531\page\colophon
21532% Blame: doc@cygnus.com, 1991.
21533@end tex
21534
c906108c 21535@bye
This page took 1.477274 seconds and 4 git commands to generate.