CARP:
[binutils-gdb.git] / gdb / doc / gdbint.texinfo
1 \input texinfo
2 @setfilename gdbint.info
3
4 @ifinfo
5 @format
6 START-INFO-DIR-ENTRY
7 * Gdb-Internals: (gdbint). The GNU debugger's internals.
8 END-INFO-DIR-ENTRY
9 @end format
10 @end ifinfo
11
12 @ifinfo
13 This file documents the internals of the GNU debugger GDB.
14
15 Copyright 1990, 91, 92, 93, 94, 95, 96, 97, 1998 Free Software Foundation, Inc.
16 Contributed by Cygnus Solutions. Written by John Gilmore.
17 Second Edition by Stan Shebs.
18
19 Permission is granted to make and distribute verbatim copies of this
20 manual provided the copyright notice and this permission notice are
21 preserved on all copies.
22
23 @ignore
24 Permission is granted to process this file through Tex and print the
25 results, provided the printed document carries copying permission notice
26 identical to this one except for the removal of this paragraph (this
27 paragraph not being relevant to the printed manual).
28
29 @end ignore
30 Permission is granted to copy or distribute modified versions of this
31 manual under the terms of the GPL (for which purpose this text may be
32 regarded as a program in the language TeX).
33 @end ifinfo
34
35 @setchapternewpage off
36 @settitle GDB Internals
37
38 @titlepage
39 @title{GDB Internals}
40 @subtitle{A guide to the internals of the GNU debugger}
41 @author John Gilmore
42 @author Cygnus Solutions
43 @author Second Edition:
44 @author Stan Shebs
45 @author Cygnus Solutions
46 @page
47 @tex
48 \def\$#1${{#1}} % Kluge: collect RCS revision info without $...$
49 \xdef\manvers{\$Revision$} % For use in headers, footers too
50 {\parskip=0pt
51 \hfill Cygnus Solutions\par
52 \hfill \manvers\par
53 \hfill \TeX{}info \texinfoversion\par
54 }
55 @end tex
56
57 @vskip 0pt plus 1filll
58 Copyright @copyright{} 1990, 91, 92, 93, 94, 95, 96, 97, 1998 Free Software Foundation, Inc.
59
60 Permission is granted to make and distribute verbatim copies of
61 this manual provided the copyright notice and this permission notice
62 are preserved on all copies.
63
64 @end titlepage
65
66 @node Top
67 @c Perhaps this should be the title of the document (but only for info,
68 @c not for TeX). Existing GNU manuals seem inconsistent on this point.
69 @top Scope of this Document
70
71 This document documents the internals of the GNU debugger, GDB. It
72 includes description of GDB's key algorithms and operations, as well
73 as the mechanisms that adapt GDB to specific hosts and targets.
74
75 @menu
76 * Requirements::
77 * Overall Structure::
78 * Algorithms::
79 * User Interface::
80 * Symbol Handling::
81 * Language Support::
82 * Host Definition::
83 * Target Architecture Definition::
84 * Target Vector Definition::
85 * Native Debugging::
86 * Support Libraries::
87 * Coding::
88 * Porting GDB::
89 * Hints::
90 @end menu
91
92 @node Requirements
93
94 @chapter Requirements
95
96 Before diving into the internals, you should understand the formal
97 requirements and other expectations for GDB. Although some of these may
98 seem obvious, there have been proposals for GDB that have run counter to
99 these requirements.
100
101 First of all, GDB is a debugger. It's not designed to be a front panel
102 for embedded systems. It's not a text editor. It's not a shell. It's
103 not a programming environment.
104
105 GDB is an interactive tool. Although a batch mode is available, GDB's
106 primary role is to interact with a human programmer.
107
108 GDB should be responsive to the user. A programmer hot on the trail of
109 a nasty bug, and operating under a looming deadline, is going to be very
110 impatient of everything, including the response time to debugger
111 commands.
112
113 GDB should be relatively permissive, such as for expressions. While the
114 compiler should be picky (or have the option to be made picky), since
115 source code lives for a long time usually, the programmer doing
116 debugging shouldn't be spending time figuring out to mollify the
117 debugger.
118
119 GDB will be called upon to deal with really large programs. Executable
120 sizes of 50 to 100 megabytes occur regularly, and we've heard reports of
121 programs approaching 1 gigabyte in size.
122
123 GDB should be able to run everywhere. No other debugger is available
124 for even half as many configurations as GDB supports.
125
126
127 @node Overall Structure
128
129 @chapter Overall Structure
130
131 GDB consists of three major subsystems: user interface, symbol handling
132 (the ``symbol side''), and target system handling (the ``target side'').
133
134 Ther user interface consists of several actual interfaces, plus
135 supporting code.
136
137 The symbol side consists of object file readers, debugging info
138 interpreters, symbol table management, source language expression
139 parsing, type and value printing.
140
141 The target side consists of execution control, stack frame analysis, and
142 physical target manipulation.
143
144 The target side/symbol side division is not formal, and there are a
145 number of exceptions. For instance, core file support involves symbolic
146 elements (the basic core file reader is in BFD) and target elements (it
147 supplies the contents of memory and the values of registers). Instead,
148 this division is useful for understanding how the minor subsystems
149 should fit together.
150
151 @section The Symbol Side
152
153 The symbolic side of GDB can be thought of as ``everything you can do in
154 GDB without having a live program running''. For instance, you can look
155 at the types of variables, and evaluate many kinds of expressions.
156
157 @section The Target Side
158
159 The target side of GDB is the ``bits and bytes manipulator''. Although
160 it may make reference to symbolic info here and there, most of the
161 target side will run with only a stripped executable available -- or
162 even no executable at all, in remote debugging cases.
163
164 Operations such as disassembly, stack frame crawls, and register
165 display, are able to work with no symbolic info at all. In some cases,
166 such as disassembly, GDB will use symbolic info to present addresses
167 relative to symbols rather than as raw numbers, but it will work either
168 way.
169
170 @section Configurations
171
172 @dfn{Host} refers to attributes of the system where GDB runs.
173 @dfn{Target} refers to the system where the program being debugged
174 executes. In most cases they are the same machine, in which case a
175 third type of @dfn{Native} attributes come into play.
176
177 Defines and include files needed to build on the host are host support.
178 Examples are tty support, system defined types, host byte order, host
179 float format.
180
181 Defines and information needed to handle the target format are target
182 dependent. Examples are the stack frame format, instruction set,
183 breakpoint instruction, registers, and how to set up and tear down the stack
184 to call a function.
185
186 Information that is only needed when the host and target are the same,
187 is native dependent. One example is Unix child process support; if the
188 host and target are not the same, doing a fork to start the target
189 process is a bad idea. The various macros needed for finding the
190 registers in the @code{upage}, running @code{ptrace}, and such are all
191 in the native-dependent files.
192
193 Another example of native-dependent code is support for features that
194 are really part of the target environment, but which require
195 @code{#include} files that are only available on the host system. Core
196 file handling and @code{setjmp} handling are two common cases.
197
198 When you want to make GDB work ``native'' on a particular machine, you
199 have to include all three kinds of information.
200
201
202 @node Algorithms
203
204 @chapter Algorithms
205
206 GDB uses a number of debugging-specific algorithms. They are often not
207 very complicated, but get lost in the thicket of special cases and
208 real-world issues. This chapter describes the basic algorithms and
209 mentions some of the specific target definitions that they use.
210
211 @section Frames
212
213 A frame is a construct that GDB uses to keep track of calling and called
214 functions.
215
216 @code{FRAME_FP} in the machine description has no meaning to the
217 machine-independent part of GDB, except that it is used when setting up
218 a new frame from scratch, as follows:
219
220 @example
221 create_new_frame (read_register (FP_REGNUM), read_pc ()));
222 @end example
223
224 Other than that, all the meaning imparted to @code{FP_REGNUM} is
225 imparted by the machine-dependent code. So, @code{FP_REGNUM} can have
226 any value that is convenient for the code that creates new frames.
227 (@code{create_new_frame} calls @code{INIT_EXTRA_FRAME_INFO} if it is
228 defined; that is where you should use the @code{FP_REGNUM} value, if
229 your frames are nonstandard.)
230
231 Given a GDB frame, define @code{FRAME_CHAIN} to determine the address of
232 the calling function's frame. This will be used to create a new GDB
233 frame struct, and then @code{INIT_EXTRA_FRAME_INFO} and
234 @code{INIT_FRAME_PC} will be called for the new frame.
235
236 @section Breakpoint Handling
237
238 In general, a breakpoint is a user-designated location in the program
239 where the user wants to regain control if program execution ever reaches
240 that location.
241
242 There are two main ways to implement breakpoints; either as ``hardware''
243 breakpoints or as ``software'' breakpoints.
244
245 Hardware breakpoints are sometimes available as a builtin debugging
246 features with some chips. Typically these work by having dedicated
247 register into which the breakpoint address may be stored. If the PC
248 ever matches a value in a breakpoint registers, the CPU raises an
249 exception and reports it to GDB. Another possibility is when an
250 emulator is in use; many emulators include circuitry that watches the
251 address lines coming out from the processor, and force it to stop if the
252 address matches a breakpoint's address. A third possibility is that the
253 target already has the ability to do breakpoints somehow; for instance,
254 a ROM monitor may do its own software breakpoints. So although these
255 are not literally ``hardware breakpoints'', from GDB's point of view
256 they work the same; GDB need not do nothing more than set the breakpoint
257 and wait for something to happen.
258
259 Since they depend on hardware resources, hardware breakpoints may be
260 limited in number; when the user asks for more, GDB will start trying to
261 set software breakpoints.
262
263 Software breakpoints require GDB to do somewhat more work. The basic
264 theory is that GDB will replace a program instruction a trap, illegal
265 divide, or some other instruction that will cause an exception, and then
266 when it's encountered, GDB will take the exception and stop the program.
267 When the user says to continue, GDB will restore the original
268 instruction, single-step, re-insert the trap, and continue on.
269
270 Since it literally overwrites the program being tested, the program area
271 must be writeable, so this technique won't work on programs in ROM. It
272 can also distort the behavior of programs that examine themselves,
273 although the situation would be highly unusual.
274
275 Also, the software breakpoint instruction should be the smallest size of
276 instruction, so it doesn't overwrite an instruction that might be a jump
277 target, and cause disaster when the program jumps into the middle of the
278 breakpoint instruction. (Strictly speaking, the breakpoint must be no
279 larger than the smallest interval between instructions that may be jump
280 targets; perhaps there is an architecture where only even-numbered
281 instructions may jumped to.) Note that it's possible for an instruction
282 set not to have any instructions usable for a software breakpoint,
283 although in practice only the ARC has failed to define such an
284 instruction.
285
286 The basic definition of the software breakpoint is the macro
287 @code{BREAKPOINT}.
288
289 Basic breakpoint object handling is in @file{breakpoint.c}. However,
290 much of the interesting breakpoint action is in @file{infrun.c}.
291
292 @section Single Stepping
293
294 @section Signal Handling
295
296 @section Thread Handling
297
298 @section Inferior Function Calls
299
300 @section Longjmp Support
301
302 GDB has support for figuring out that the target is doing a
303 @code{longjmp} and for stopping at the target of the jump, if we are
304 stepping. This is done with a few specialized internal breakpoints,
305 which are visible in the @code{maint info breakpoint} command.
306
307 To make this work, you need to define a macro called
308 @code{GET_LONGJMP_TARGET}, which will examine the @code{jmp_buf}
309 structure and extract the longjmp target address. Since @code{jmp_buf}
310 is target specific, you will need to define it in the appropriate
311 @file{tm-@var{xyz}.h} file. Look in @file{tm-sun4os4.h} and
312 @file{sparc-tdep.c} for examples of how to do this.
313
314 @node User Interface
315
316 @chapter User Interface
317
318 GDB has several user interfaces. Although the command-line interface
319 is the most common and most familiar, there are others.
320
321 @section Command Interpreter
322
323 The command interpreter in GDB is fairly simple. It is designed to
324 allow for the set of commands to be augmented dynamically, and also
325 has a recursive subcommand capability, where the first argument to
326 a command may itself direct a lookup on a different command list.
327
328 For instance, the @code{set} command just starts a lookup on the
329 @code{setlist} command list, while @code{set thread} recurses
330 to the @code{set_thread_cmd_list}.
331
332 To add commands in general, use @code{add_cmd}. @code{add_com} adds to
333 the main command list, and should be used for those commands. The usual
334 place to add commands is in the @code{_initialize_@var{xyz}} routines at the
335 ends of most source files.
336
337 @section Console Printing
338
339 @section TUI
340
341 @section libgdb
342
343 @code{libgdb} was an abortive project of years ago. The theory was to
344 provide an API to GDB's functionality.
345
346 @node Symbol Handling
347
348 @chapter Symbol Handling
349
350 Symbols are a key part of GDB's operation. Symbols include variables,
351 functions, and types.
352
353 @section Symbol Reading
354
355 GDB reads symbols from ``symbol files''. The usual symbol file is the
356 file containing the program which GDB is debugging. GDB can be directed
357 to use a different file for symbols (with the @code{symbol-file}
358 command), and it can also read more symbols via the ``add-file'' and
359 ``load'' commands, or while reading symbols from shared libraries.
360
361 Symbol files are initially opened by code in @file{symfile.c} using the
362 BFD library. BFD identifies the type of the file by examining its
363 header. @code{symfile_init} then uses this identification to locate a
364 set of symbol-reading functions.
365
366 Symbol reading modules identify themselves to GDB by calling
367 @code{add_symtab_fns} during their module initialization. The argument
368 to @code{add_symtab_fns} is a @code{struct sym_fns} which contains the
369 name (or name prefix) of the symbol format, the length of the prefix,
370 and pointers to four functions. These functions are called at various
371 times to process symbol-files whose identification matches the specified
372 prefix.
373
374 The functions supplied by each module are:
375
376 @table @code
377 @item @var{xyz}_symfile_init(struct sym_fns *sf)
378
379 Called from @code{symbol_file_add} when we are about to read a new
380 symbol file. This function should clean up any internal state (possibly
381 resulting from half-read previous files, for example) and prepare to
382 read a new symbol file. Note that the symbol file which we are reading
383 might be a new "main" symbol file, or might be a secondary symbol file
384 whose symbols are being added to the existing symbol table.
385
386 The argument to @code{@var{xyz}_symfile_init} is a newly allocated
387 @code{struct sym_fns} whose @code{bfd} field contains the BFD for the
388 new symbol file being read. Its @code{private} field has been zeroed,
389 and can be modified as desired. Typically, a struct of private
390 information will be @code{malloc}'d, and a pointer to it will be placed
391 in the @code{private} field.
392
393 There is no result from @code{@var{xyz}_symfile_init}, but it can call
394 @code{error} if it detects an unavoidable problem.
395
396 @item @var{xyz}_new_init()
397
398 Called from @code{symbol_file_add} when discarding existing symbols.
399 This function need only handle the symbol-reading module's internal
400 state; the symbol table data structures visible to the rest of GDB will
401 be discarded by @code{symbol_file_add}. It has no arguments and no
402 result. It may be called after @code{@var{xyz}_symfile_init}, if a new
403 symbol table is being read, or may be called alone if all symbols are
404 simply being discarded.
405
406 @item @var{xyz}_symfile_read(struct sym_fns *sf, CORE_ADDR addr, int mainline)
407
408 Called from @code{symbol_file_add} to actually read the symbols from a
409 symbol-file into a set of psymtabs or symtabs.
410
411 @code{sf} points to the struct sym_fns originally passed to
412 @code{@var{xyz}_sym_init} for possible initialization. @code{addr} is
413 the offset between the file's specified start address and its true
414 address in memory. @code{mainline} is 1 if this is the main symbol
415 table being read, and 0 if a secondary symbol file (e.g. shared library
416 or dynamically loaded file) is being read.@refill
417 @end table
418
419 In addition, if a symbol-reading module creates psymtabs when
420 @var{xyz}_symfile_read is called, these psymtabs will contain a pointer
421 to a function @code{@var{xyz}_psymtab_to_symtab}, which can be called
422 from any point in the GDB symbol-handling code.
423
424 @table @code
425 @item @var{xyz}_psymtab_to_symtab (struct partial_symtab *pst)
426
427 Called from @code{psymtab_to_symtab} (or the PSYMTAB_TO_SYMTAB macro) if
428 the psymtab has not already been read in and had its @code{pst->symtab}
429 pointer set. The argument is the psymtab to be fleshed-out into a
430 symtab. Upon return, pst->readin should have been set to 1, and
431 pst->symtab should contain a pointer to the new corresponding symtab, or
432 zero if there were no symbols in that part of the symbol file.
433 @end table
434
435 @section Partial Symbol Tables
436
437 GDB has three types of symbol tables.
438
439 @itemize @bullet
440
441 @item full symbol tables (symtabs). These contain the main information
442 about symbols and addresses.
443
444 @item partial symbol tables (psymtabs). These contain enough
445 information to know when to read the corresponding part of the full
446 symbol table.
447
448 @item minimal symbol tables (msymtabs). These contain information
449 gleaned from non-debugging symbols.
450
451 @end itemize
452
453 This section describes partial symbol tables.
454
455 A psymtab is constructed by doing a very quick pass over an executable
456 file's debugging information. Small amounts of information are
457 extracted -- enough to identify which parts of the symbol table will
458 need to be re-read and fully digested later, when the user needs the
459 information. The speed of this pass causes GDB to start up very
460 quickly. Later, as the detailed rereading occurs, it occurs in small
461 pieces, at various times, and the delay therefrom is mostly invisible to
462 the user.
463 @c (@xref{Symbol Reading}.)
464
465 The symbols that show up in a file's psymtab should be, roughly, those
466 visible to the debugger's user when the program is not running code from
467 that file. These include external symbols and types, static symbols and
468 types, and enum values declared at file scope.
469
470 The psymtab also contains the range of instruction addresses that the
471 full symbol table would represent.
472
473 The idea is that there are only two ways for the user (or much of the
474 code in the debugger) to reference a symbol:
475
476 @itemize @bullet
477
478 @item by its address
479 (e.g. execution stops at some address which is inside a function in this
480 file). The address will be noticed to be in the range of this psymtab,
481 and the full symtab will be read in. @code{find_pc_function},
482 @code{find_pc_line}, and other @code{find_pc_@dots{}} functions handle
483 this.
484
485 @item by its name
486 (e.g. the user asks to print a variable, or set a breakpoint on a
487 function). Global names and file-scope names will be found in the
488 psymtab, which will cause the symtab to be pulled in. Local names will
489 have to be qualified by a global name, or a file-scope name, in which
490 case we will have already read in the symtab as we evaluated the
491 qualifier. Or, a local symbol can be referenced when we are "in" a
492 local scope, in which case the first case applies. @code{lookup_symbol}
493 does most of the work here.
494
495 @end itemize
496
497 The only reason that psymtabs exist is to cause a symtab to be read in
498 at the right moment. Any symbol that can be elided from a psymtab,
499 while still causing that to happen, should not appear in it. Since
500 psymtabs don't have the idea of scope, you can't put local symbols in
501 them anyway. Psymtabs don't have the idea of the type of a symbol,
502 either, so types need not appear, unless they will be referenced by
503 name.
504
505 It is a bug for GDB to behave one way when only a psymtab has been read,
506 and another way if the corresponding symtab has been read in. Such bugs
507 are typically caused by a psymtab that does not contain all the visible
508 symbols, or which has the wrong instruction address ranges.
509
510 The psymtab for a particular section of a symbol-file (objfile) could be
511 thrown away after the symtab has been read in. The symtab should always
512 be searched before the psymtab, so the psymtab will never be used (in a
513 bug-free environment). Currently, psymtabs are allocated on an obstack,
514 and all the psymbols themselves are allocated in a pair of large arrays
515 on an obstack, so there is little to be gained by trying to free them
516 unless you want to do a lot more work.
517
518 @section Types
519
520 Fundamental Types (e.g., FT_VOID, FT_BOOLEAN).
521
522 These are the fundamental types that GDB uses internally. Fundamental
523 types from the various debugging formats (stabs, ELF, etc) are mapped
524 into one of these. They are basically a union of all fundamental types
525 that gdb knows about for all the languages that GDB knows about.
526
527 Type Codes (e.g., TYPE_CODE_PTR, TYPE_CODE_ARRAY).
528
529 Each time GDB builds an internal type, it marks it with one of these
530 types. The type may be a fundamental type, such as TYPE_CODE_INT, or a
531 derived type, such as TYPE_CODE_PTR which is a pointer to another type.
532 Typically, several FT_* types map to one TYPE_CODE_* type, and are
533 distinguished by other members of the type struct, such as whether the
534 type is signed or unsigned, and how many bits it uses.
535
536 Builtin Types (e.g., builtin_type_void, builtin_type_char).
537
538 These are instances of type structs that roughly correspond to
539 fundamental types and are created as global types for GDB to use for
540 various ugly historical reasons. We eventually want to eliminate these.
541 Note for example that builtin_type_int initialized in gdbtypes.c is
542 basically the same as a TYPE_CODE_INT type that is initialized in
543 c-lang.c for an FT_INTEGER fundamental type. The difference is that the
544 builtin_type is not associated with any particular objfile, and only one
545 instance exists, while c-lang.c builds as many TYPE_CODE_INT types as
546 needed, with each one associated with some particular objfile.
547
548 @section Object File Formats
549
550 @subsection a.out
551
552 The @file{a.out} format is the original file format for Unix. It
553 consists of three sections: text, data, and bss, which are for program
554 code, initialized data, and uninitialized data, respectively.
555
556 The @file{a.out} format is so simple that it doesn't have any reserved
557 place for debugging information. (Hey, the original Unix hackers used
558 @file{adb}, which is a machine-language debugger.) The only debugging
559 format for @file{a.out} is stabs, which for this format are encoded as
560 symbols with distinctive properties.
561
562 @subsection COFF
563
564 The COFF format was introduced with System V Release 3 (SVR3) Unix.
565 COFF files may have multiple sections, each prefixed by a header. The
566 number of sections is limited.
567
568 The COFF specification includes support for debugging. Although this
569 was a step forward, the debugging information was woefully limited. For
570 instance, it was not possible to represent code that came from an
571 included file.
572
573 @subsection ECOFF
574
575 @subsection XCOFF
576
577 The IBM RS/6000 running AIX uses an object file format called XCOFF.
578 The COFF sections, symbols, and line numbers are used, but debugging
579 symbols are dbx-style stabs whose strings are located in the
580 @samp{.debug} section (rather than the string table). For more
581 information, see @xref{Top,,,stabs,The Stabs Debugging Format}.
582
583 The shared library scheme has a nice clean interface for figuring out
584 what shared libraries are in use, but the catch is that everything which
585 refers to addresses (symbol tables and breakpoints at least) needs to be
586 relocated for both shared libraries and the main executable. At least
587 using the standard mechanism this can only be done once the program has
588 been run (or the core file has been read).
589
590 @subsection PE
591
592 Windows 95 and NT use the PE (Portable Executable) format for their
593 executables. PE is basically COFF with an additional header or two.
594
595 @subsection ELF
596
597 The ELF format came with System V Release 4 (SVR4) Unix. ELF is similar
598 to COFF in being organized into a number of sections, but it removes
599 many of COFF's limitations.
600
601 @subsection SOM
602
603 @section Debugging File Formats
604
605 @subsection stabs
606
607 @subsection COFF
608
609 @subsection DWARF 1
610
611 @subsection DWARF 2
612
613 @subsection SOM
614
615 @section Adding a New Symbol Reader to GDB
616
617 If you are using an existing object file format (a.out, COFF, ELF, etc),
618 there is probably little to be done.
619
620 If you need to add a new object file format, you must first add it to
621 BFD. This is beyond the scope of this document.
622
623 You must then arrange for the BFD code to provide access to the
624 debugging symbols. Generally GDB will have to call swapping routines
625 from BFD and a few other BFD internal routines to locate the debugging
626 information. As much as possible, GDB should not depend on the BFD
627 internal data structures.
628
629 For some targets (e.g., COFF), there is a special transfer vector used
630 to call swapping routines, since the external data structures on various
631 platforms have different sizes and layouts. Specialized routines that
632 will only ever be implemented by one object file format may be called
633 directly. This interface should be described in a file
634 @file{bfd/libxyz.h}, which is included by GDB.
635
636
637 @node Language Support
638
639 @chapter Language Support
640
641 GDB's language support is mainly driven by the symbol reader, although
642 it is possible for the user to set the source language manually.
643
644 GDB chooses the source language by looking at the extension of the file
645 recorded in the debug info; @code{.c} means C, @code{.f} means Fortran,
646 etc. It may also use a special-purpose language identifier if the debug
647 format supports it, such as DWARF.
648
649 @section Adding a Source Language to GDB
650
651 To add other languages to GDB's expression parser, follow the following
652 steps:
653
654 @table @emph
655 @item Create the expression parser.
656
657 This should reside in a file @file{@var{lang}-exp.y}. Routines for
658 building parsed expressions into a @samp{union exp_element} list are in
659 @file{parse.c}.
660
661 Since we can't depend upon everyone having Bison, and YACC produces
662 parsers that define a bunch of global names, the following lines
663 @emph{must} be included at the top of the YACC parser, to prevent the
664 various parsers from defining the same global names:
665
666 @example
667 #define yyparse @var{lang}_parse
668 #define yylex @var{lang}_lex
669 #define yyerror @var{lang}_error
670 #define yylval @var{lang}_lval
671 #define yychar @var{lang}_char
672 #define yydebug @var{lang}_debug
673 #define yypact @var{lang}_pact
674 #define yyr1 @var{lang}_r1
675 #define yyr2 @var{lang}_r2
676 #define yydef @var{lang}_def
677 #define yychk @var{lang}_chk
678 #define yypgo @var{lang}_pgo
679 #define yyact @var{lang}_act
680 #define yyexca @var{lang}_exca
681 #define yyerrflag @var{lang}_errflag
682 #define yynerrs @var{lang}_nerrs
683 @end example
684
685 At the bottom of your parser, define a @code{struct language_defn} and
686 initialize it with the right values for your language. Define an
687 @code{initialize_@var{lang}} routine and have it call
688 @samp{add_language(@var{lang}_language_defn)} to tell the rest of GDB
689 that your language exists. You'll need some other supporting variables
690 and functions, which will be used via pointers from your
691 @code{@var{lang}_language_defn}. See the declaration of @code{struct
692 language_defn} in @file{language.h}, and the other @file{*-exp.y} files,
693 for more information.
694
695 @item Add any evaluation routines, if necessary
696
697 If you need new opcodes (that represent the operations of the language),
698 add them to the enumerated type in @file{expression.h}. Add support
699 code for these operations in @code{eval.c:evaluate_subexp()}. Add cases
700 for new opcodes in two functions from @file{parse.c}:
701 @code{prefixify_subexp()} and @code{length_of_subexp()}. These compute
702 the number of @code{exp_element}s that a given operation takes up.
703
704 @item Update some existing code
705
706 Add an enumerated identifier for your language to the enumerated type
707 @code{enum language} in @file{defs.h}.
708
709 Update the routines in @file{language.c} so your language is included.
710 These routines include type predicates and such, which (in some cases)
711 are language dependent. If your language does not appear in the switch
712 statement, an error is reported.
713
714 Also included in @file{language.c} is the code that updates the variable
715 @code{current_language}, and the routines that translate the
716 @code{language_@var{lang}} enumerated identifier into a printable
717 string.
718
719 Update the function @code{_initialize_language} to include your
720 language. This function picks the default language upon startup, so is
721 dependent upon which languages that GDB is built for.
722
723 Update @code{allocate_symtab} in @file{symfile.c} and/or symbol-reading
724 code so that the language of each symtab (source file) is set properly.
725 This is used to determine the language to use at each stack frame level.
726 Currently, the language is set based upon the extension of the source
727 file. If the language can be better inferred from the symbol
728 information, please set the language of the symtab in the symbol-reading
729 code.
730
731 Add helper code to @code{expprint.c:print_subexp()} to handle any new
732 expression opcodes you have added to @file{expression.h}. Also, add the
733 printed representations of your operators to @code{op_print_tab}.
734
735 @item Add a place of call
736
737 Add a call to @code{@var{lang}_parse()} and @code{@var{lang}_error} in
738 @code{parse.c:parse_exp_1()}.
739
740 @item Use macros to trim code
741
742 The user has the option of building GDB for some or all of the
743 languages. If the user decides to build GDB for the language
744 @var{lang}, then every file dependent on @file{language.h} will have the
745 macro @code{_LANG_@var{lang}} defined in it. Use @code{#ifdef}s to
746 leave out large routines that the user won't need if he or she is not
747 using your language.
748
749 Note that you do not need to do this in your YACC parser, since if GDB
750 is not build for @var{lang}, then @file{@var{lang}-exp.tab.o} (the
751 compiled form of your parser) is not linked into GDB at all.
752
753 See the file @file{configure.in} for how GDB is configured for different
754 languages.
755
756 @item Edit @file{Makefile.in}
757
758 Add dependencies in @file{Makefile.in}. Make sure you update the macro
759 variables such as @code{HFILES} and @code{OBJS}, otherwise your code may
760 not get linked in, or, worse yet, it may not get @code{tar}red into the
761 distribution!
762
763 @end table
764
765
766 @node Host Definition
767
768 @chapter Host Definition
769
770 With the advent of autoconf, it's rarely necessary to have host
771 definition machinery anymore.
772
773 @section Adding a New Host
774
775 Most of GDB's host configuration support happens via autoconf. It
776 should be rare to need new host-specific definitions. GDB still uses
777 the host-specific definitions and files listed below, but these mostly
778 exist for historical reasons, and should eventually disappear.
779
780 Several files control GDB's configuration for host systems:
781
782 @table @file
783
784 @item gdb/config/@var{arch}/@var{xyz}.mh
785 Specifies Makefile fragments needed when hosting on machine @var{xyz}.
786 In particular, this lists the required machine-dependent object files,
787 by defining @samp{XDEPFILES=@dots{}}. Also specifies the header file
788 which describes host @var{xyz}, by defining @code{XM_FILE=
789 xm-@var{xyz}.h}. You can also define @code{CC}, @code{SYSV_DEFINE},
790 @code{XM_CFLAGS}, @code{XM_ADD_FILES}, @code{XM_CLIBS}, @code{XM_CDEPS},
791 etc.; see @file{Makefile.in}.
792
793 @item gdb/config/@var{arch}/xm-@var{xyz}.h
794 (@file{xm.h} is a link to this file, created by configure). Contains C
795 macro definitions describing the host system environment, such as byte
796 order, host C compiler and library.
797
798 @item gdb/@var{xyz}-xdep.c
799 Contains any miscellaneous C code required for this machine as a host.
800 On most machines it doesn't exist at all. If it does exist, put
801 @file{@var{xyz}-xdep.o} into the @code{XDEPFILES} line in
802 @file{gdb/config/@var{arch}/@var{xyz}.mh}.
803
804 @end table
805
806 @subheading Generic Host Support Files
807
808 There are some ``generic'' versions of routines that can be used by
809 various systems. These can be customized in various ways by macros
810 defined in your @file{xm-@var{xyz}.h} file. If these routines work for
811 the @var{xyz} host, you can just include the generic file's name (with
812 @samp{.o}, not @samp{.c}) in @code{XDEPFILES}.
813
814 Otherwise, if your machine needs custom support routines, you will need
815 to write routines that perform the same functions as the generic file.
816 Put them into @code{@var{xyz}-xdep.c}, and put @code{@var{xyz}-xdep.o}
817 into @code{XDEPFILES}.
818
819 @table @file
820
821 @item ser-unix.c
822 This contains serial line support for Unix systems. This is always
823 included, via the makefile variable @code{SER_HARDWIRE}; override this
824 variable in the @file{.mh} file to avoid it.
825
826 @item ser-go32.c
827 This contains serial line support for 32-bit programs running under DOS,
828 using the GO32 execution environment.
829
830 @item ser-tcp.c
831 This contains generic TCP support using sockets.
832
833 @end table
834
835 @section Host Conditionals
836
837 When GDB is configured and compiled, various macros are defined or left
838 undefined, to control compilation based on the attributes of the host
839 system. These macros and their meanings (or if the meaning is not
840 documented here, then one of the source files where they are used is
841 indicated) are:
842
843 @table @code
844
845 @item GDBINIT_FILENAME
846 The default name of GDB's initialization file (normally @file{.gdbinit}).
847
848 @item MEM_FNS_DECLARED
849 Your host config file defines this if it includes declarations of
850 @code{memcpy} and @code{memset}. Define this to avoid conflicts between
851 the native include files and the declarations in @file{defs.h}.
852
853 @item NO_SYS_FILE
854 Define this if your system does not have a @code{<sys/file.h>}.
855
856 @item SIGWINCH_HANDLER
857 If your host defines @code{SIGWINCH}, you can define this to be the name
858 of a function to be called if @code{SIGWINCH} is received.
859
860 @item SIGWINCH_HANDLER_BODY
861 Define this to expand into code that will define the function named by
862 the expansion of @code{SIGWINCH_HANDLER}.
863
864 @item ALIGN_STACK_ON_STARTUP
865 Define this if your system is of a sort that will crash in
866 @code{tgetent} if the stack happens not to be longword-aligned when
867 @code{main} is called. This is a rare situation, but is known to occur
868 on several different types of systems.
869
870 @item CRLF_SOURCE_FILES
871 Define this if host files use @code{\r\n} rather than @code{\n} as a
872 line terminator. This will cause source file listings to omit @code{\r}
873 characters when printing and it will allow \r\n line endings of files
874 which are "sourced" by gdb. It must be possible to open files in binary
875 mode using @code{O_BINARY} or, for fopen, @code{"rb"}.
876
877 @item DEFAULT_PROMPT
878 The default value of the prompt string (normally @code{"(gdb) "}).
879
880 @item DEV_TTY
881 The name of the generic TTY device, defaults to @code{"/dev/tty"}.
882
883 @item FCLOSE_PROVIDED
884 Define this if the system declares @code{fclose} in the headers included
885 in @code{defs.h}. This isn't needed unless your compiler is unusually
886 anal.
887
888 @item FOPEN_RB
889 Define this if binary files are opened the same way as text files.
890
891 @item GETENV_PROVIDED
892 Define this if the system declares @code{getenv} in its headers included
893 in @code{defs.h}. This isn't needed unless your compiler is unusually
894 anal.
895
896 @item HAVE_MMAP
897 In some cases, use the system call @code{mmap} for reading symbol
898 tables. For some machines this allows for sharing and quick updates.
899
900 @item HAVE_SIGSETMASK
901 Define this if the host system has job control, but does not define
902 @code{sigsetmask()}. Currently, this is only true of the RS/6000.
903
904 @item HAVE_TERMIO
905 Define this if the host system has @code{termio.h}.
906
907 @item HOST_BYTE_ORDER
908 The ordering of bytes in the host. This must be defined to be either
909 @code{BIG_ENDIAN} or @code{LITTLE_ENDIAN}.
910
911 @item INT_MAX
912 @item INT_MIN
913 @item LONG_MAX
914 @item UINT_MAX
915 @item ULONG_MAX
916 Values for host-side constants.
917
918 @item ISATTY
919 Substitute for isatty, if not available.
920
921 @item LONGEST
922 This is the longest integer type available on the host. If not defined,
923 it will default to @code{long long} or @code{long}, depending on
924 @code{CC_HAS_LONG_LONG}.
925
926 @item CC_HAS_LONG_LONG
927 Define this if the host C compiler supports ``long long''. This is set
928 by the configure script.
929
930 @item PRINTF_HAS_LONG_LONG
931 Define this if the host can handle printing of long long integers via
932 the printf format directive ``ll''. This is set by the configure script.
933
934 @item HAVE_LONG_DOUBLE
935 Define this if the host C compiler supports ``long double''. This is
936 set by the configure script.
937
938 @item PRINTF_HAS_LONG_DOUBLE
939 Define this if the host can handle printing of long double float-point
940 numbers via the printf format directive ``Lg''. This is set by the
941 configure script.
942
943 @item SCANF_HAS_LONG_DOUBLE
944 Define this if the host can handle the parsing of long double
945 float-point numbers via the scanf format directive directive
946 ``Lg''. This is set by the configure script.
947
948 @item LSEEK_NOT_LINEAR
949 Define this if @code{lseek (n)} does not necessarily move to byte number
950 @code{n} in the file. This is only used when reading source files. It
951 is normally faster to define @code{CRLF_SOURCE_FILES} when possible.
952
953 @item L_SET
954 This macro is used as the argument to lseek (or, most commonly,
955 bfd_seek). FIXME, should be replaced by SEEK_SET instead, which is the
956 POSIX equivalent.
957
958 @item MAINTENANCE_CMDS
959 If the value of this is 1, then a number of optional maintenance
960 commands are compiled in.
961
962 @item MALLOC_INCOMPATIBLE
963 Define this if the system's prototype for @code{malloc} differs from the
964 @sc{ANSI} definition.
965
966 @item MMAP_BASE_ADDRESS
967 When using HAVE_MMAP, the first mapping should go at this address.
968
969 @item MMAP_INCREMENT
970 when using HAVE_MMAP, this is the increment between mappings.
971
972 @item NEED_POSIX_SETPGID
973 Define this to use the POSIX version of @code{setpgid} to determine
974 whether job control is available.
975
976 @item NORETURN
977 If defined, this should be one or more tokens, such as @code{volatile},
978 that can be used in both the declaration and definition of functions to
979 indicate that they never return. The default is already set correctly
980 if compiling with GCC. This will almost never need to be defined.
981
982 @item ATTR_NORETURN
983 If defined, this should be one or more tokens, such as
984 @code{__attribute__ ((noreturn))}, that can be used in the declarations
985 of functions to indicate that they never return. The default is already
986 set correctly if compiling with GCC. This will almost never need to be
987 defined.
988
989 @item USE_MMALLOC
990 GDB will use the @code{mmalloc} library for memory allocation for symbol
991 reading if this symbol is defined. Be careful defining it since there
992 are systems on which @code{mmalloc} does not work for some reason. One
993 example is the DECstation, where its RPC library can't cope with our
994 redefinition of @code{malloc} to call @code{mmalloc}. When defining
995 @code{USE_MMALLOC}, you will also have to set @code{MMALLOC} in the
996 Makefile, to point to the mmalloc library. This define is set when you
997 configure with --with-mmalloc.
998
999 @item NO_MMCHECK
1000 Define this if you are using @code{mmalloc}, but don't want the overhead
1001 of checking the heap with @code{mmcheck}. Note that on some systems,
1002 the C runtime makes calls to malloc prior to calling @code{main}, and if
1003 @code{free} is ever called with these pointers after calling
1004 @code{mmcheck} to enable checking, a memory corruption abort is certain
1005 to occur. These systems can still use mmalloc, but must define
1006 NO_MMCHECK.
1007
1008 @item MMCHECK_FORCE
1009 Define this to 1 if the C runtime allocates memory prior to
1010 @code{mmcheck} being called, but that memory is never freed so we don't
1011 have to worry about it triggering a memory corruption abort. The
1012 default is 0, which means that @code{mmcheck} will only install the heap
1013 checking functions if there has not yet been any memory allocation
1014 calls, and if it fails to install the functions, gdb will issue a
1015 warning. This is currently defined if you configure using
1016 --with-mmalloc.
1017
1018 @item NO_SIGINTERRUPT
1019 Define this to indicate that siginterrupt() is not available.
1020
1021 @item R_OK
1022 Define if this is not in a system .h file.
1023
1024 @item SEEK_CUR
1025 @item SEEK_SET
1026 Define these to appropriate value for the system lseek(), if not already
1027 defined.
1028
1029 @item STOP_SIGNAL
1030 This is the signal for stopping GDB. Defaults to SIGTSTP. (Only
1031 redefined for the Convex.)
1032
1033 @item USE_O_NOCTTY
1034 Define this if the interior's tty should be opened with the O_NOCTTY
1035 flag. (FIXME: This should be a native-only flag, but @file{inflow.c} is
1036 always linked in.)
1037
1038 @item USG
1039 Means that System V (prior to SVR4) include files are in use. (FIXME:
1040 This symbol is abused in @file{infrun.c}, @file{regex.c},
1041 @file{remote-nindy.c}, and @file{utils.c} for other things, at the
1042 moment.)
1043
1044 @item lint
1045 Define this to help placate lint in some situations.
1046
1047 @item volatile
1048 Define this to override the defaults of @code{__volatile__} or
1049 @code{/**/}.
1050
1051 @end table
1052
1053
1054 @node Target Architecture Definition
1055
1056 @chapter Target Architecture Definition
1057
1058 GDB's target architecture defines what sort of machine-language programs
1059 GDB can work with, and how it works with them.
1060
1061 At present, the target architecture definition consists of a number of C
1062 macros.
1063
1064 @section Registers and Memory
1065
1066 GDB's model of the target machine is rather simple. GDB assumes the
1067 machine includes a bank of registers and a block of memory. Each
1068 register may have a different size.
1069
1070 GDB does not have a magical way to match up with the compiler's idea of
1071 which registers are which; however, it is critical that they do match up
1072 accurately. The only way to make this work is to get accurate
1073 information about the order that the compiler uses, and to reflect that
1074 in the @code{REGISTER_NAMES} and related macros.
1075
1076 GDB can handle big-endian, little-endian, and bi-endian architectures.
1077
1078 @section Frame Interpretation
1079
1080 @section Inferior Call Setup
1081
1082 @section Compiler Characteristics
1083
1084 @section Target Conditionals
1085
1086 This section describes the macros that you can use to define the target
1087 machine.
1088
1089 @table @code
1090
1091 @item ADDITIONAL_OPTIONS
1092 @item ADDITIONAL_OPTION_CASES
1093 @item ADDITIONAL_OPTION_HANDLER
1094 @item ADDITIONAL_OPTION_HELP
1095 These are a set of macros that allow the addition of additional command
1096 line options to GDB. They are currently used only for the unsupported
1097 i960 Nindy target, and should not be used in any other configuration.
1098
1099 @item ADDR_BITS_REMOVE (addr)
1100 If a raw machine address includes any bits that are not really part of
1101 the address, then define this macro to expand into an expression that
1102 zeros those bits in @var{addr}. For example, the two low-order bits of
1103 a Motorola 88K address may be used by some kernels for their own
1104 purposes, since addresses must always be 4-byte aligned, and so are of
1105 no use for addressing. Those bits should be filtered out with an
1106 expression such as @code{((addr) & ~3)}.
1107
1108 @item BEFORE_MAIN_LOOP_HOOK
1109 Define this to expand into any code that you want to execute before the
1110 main loop starts. Although this is not, strictly speaking, a target
1111 conditional, that is how it is currently being used. Note that if a
1112 configuration were to define it one way for a host and a different way
1113 for the target, GDB will probably not compile, let alone run correctly.
1114 This is currently used only for the unsupported i960 Nindy target, and
1115 should not be used in any other configuration.
1116
1117 @item BELIEVE_PCC_PROMOTION
1118 Define if the compiler promotes a short or char parameter to an int, but
1119 still reports the parameter as its original type, rather than the
1120 promoted type.
1121
1122 @item BELIEVE_PCC_PROMOTION_TYPE
1123 Define this if GDB should believe the type of a short argument when
1124 compiled by pcc, but look within a full int space to get its value.
1125 Only defined for Sun-3 at present.
1126
1127 @item BITS_BIG_ENDIAN
1128 Define this if the numbering of bits in the targets does *not* match the
1129 endianness of the target byte order. A value of 1 means that the bits
1130 are numbered in a big-endian order, 0 means little-endian.
1131
1132 @item BREAKPOINT
1133 This is the character array initializer for the bit pattern to put into
1134 memory where a breakpoint is set. Although it's common to use a trap
1135 instruction for a breakpoint, it's not required; for instance, the bit
1136 pattern could be an invalid instruction. The breakpoint must be no
1137 longer than the shortest instruction of the architecture.
1138
1139 @item BIG_BREAKPOINT
1140 @item LITTLE_BREAKPOINT
1141 Similar to BREAKPOINT, but used for bi-endian targets.
1142
1143 @item REMOTE_BREAKPOINT
1144 @item LITTLE_REMOTE_BREAKPOINT
1145 @item BIG_REMOTE_BREAKPOINT
1146 Similar to BREAKPOINT, but used for remote targets.
1147
1148 @item BREAKPOINT_FROM_PC (pcptr, lenptr)
1149
1150 Use the program counter to determine the contents and size of a
1151 breakpoint instruction. It returns a pointer to a string of bytes that
1152 encode a breakpoint instruction, stores the length of the string to
1153 *lenptr, and adjusts pc (if necessary) to point to the actual memory
1154 location where the breakpoint should be inserted.
1155
1156 Although it is common to use a trap instruction for a breakpoint, it's
1157 not required; for instance, the bit pattern could be an invalid
1158 instruction. The breakpoint must be no longer than the shortest
1159 instruction of the architecture.
1160
1161 Replaces all the other BREAKPOINTs.
1162
1163 @item CALL_DUMMY
1164 valops.c
1165 @item CALL_DUMMY_LOCATION
1166 inferior.h
1167 @item CALL_DUMMY_STACK_ADJUST
1168 valops.c
1169
1170 @item CANNOT_FETCH_REGISTER (regno)
1171 A C expression that should be nonzero if @var{regno} cannot be fetched
1172 from an inferior process. This is only relevant if
1173 @code{FETCH_INFERIOR_REGISTERS} is not defined.
1174
1175 @item CANNOT_STORE_REGISTER (regno)
1176 A C expression that should be nonzero if @var{regno} should not be
1177 written to the target. This is often the case for program counters,
1178 status words, and other special registers. If this is not defined, GDB
1179 will assume that all registers may be written.
1180
1181 @item CHILL_PRODUCER
1182 @item GCC_PRODUCER
1183 @item GPLUS_PRODUCER
1184 @item LCC_PRODUCER
1185 If defined, these are the producer strings in a DWARF 1 file. All of
1186 these have reasonable defaults already.
1187
1188 @item DO_DEFERRED_STORES
1189 @item CLEAR_DEFERRED_STORES
1190 Define this to execute any deferred stores of registers into the inferior,
1191 and to cancel any deferred stores.
1192
1193 Currently only implemented correctly for native Sparc configurations?
1194
1195 @item CPLUS_MARKER
1196 Define this to expand into the character that G++ uses to distinguish
1197 compiler-generated identifiers from programmer-specified identifiers.
1198 By default, this expands into @code{'$'}. Most System V targets should
1199 define this to @code{'.'}.
1200
1201 @item DBX_PARM_SYMBOL_CLASS
1202 Hook for the @code{SYMBOL_CLASS} of a parameter when decoding DBX symbol
1203 information. In the i960, parameters can be stored as locals or as
1204 args, depending on the type of the debug record.
1205
1206 @item DECR_PC_AFTER_BREAK
1207 Define this to be the amount by which to decrement the PC after the
1208 program encounters a breakpoint. This is often the number of bytes in
1209 BREAKPOINT, though not always. For most targets this value will be 0.
1210
1211 @item DECR_PC_AFTER_HW_BREAK
1212 Similarly, for hardware breakpoints.
1213
1214 @item DISABLE_UNSETTABLE_BREAK addr
1215 If defined, this should evaluate to 1 if @var{addr} is in a shared
1216 library in which breakpoints cannot be set and so should be disabled.
1217
1218 @item DO_REGISTERS_INFO
1219 If defined, use this to print the value of a register or all registers.
1220
1221 @item END_OF_TEXT_DEFAULT
1222 This is an expression that should designate the end of the text section
1223 (? FIXME ?)
1224
1225 @item EXTRACT_RETURN_VALUE(type,regbuf,valbuf)
1226 Define this to extract a function's return value of type @var{type} from
1227 the raw register state @var{regbuf} and copy that, in virtual format,
1228 into @var{valbuf}.
1229
1230 @item EXTRACT_STRUCT_VALUE_ADDRESS(regbuf)
1231 Define this to extract from an array @var{regbuf} containing the (raw)
1232 register state, the address in which a function should return its
1233 structure value, as a CORE_ADDR (or an expression that can be used as
1234 one).
1235
1236 @item EXTRA_FRAME_INFO
1237 If defined, this must be a list of slots that may be inserted into the
1238 @code{frame_info} structure defined in @code{frame.h}.
1239
1240 @item FLOAT_INFO
1241 If defined, then the `info float' command will print information about
1242 the processor's floating point unit.
1243
1244 @item FP_REGNUM
1245 The number of the frame pointer register.
1246
1247 @item FRAMELESS_FUNCTION_INVOCATION(fi, frameless)
1248 Define this to set the variable @var{frameless} to 1 if the function
1249 invocation represented by @var{fi} does not have a stack frame
1250 associated with it. Otherwise set it to 0.
1251
1252 @item FRAME_ARGS_ADDRESS_CORRECT
1253 stack.c
1254
1255 @item FRAME_CHAIN(frame)
1256 Given @var{frame}, return a pointer to the calling frame.
1257
1258 @item FRAME_CHAIN_COMBINE(chain,frame)
1259 Define this to take the frame chain pointer and the frame's nominal
1260 address and produce the nominal address of the caller's frame.
1261 Presently only defined for HP PA.
1262
1263 @item FRAME_CHAIN_VALID(chain,thisframe)
1264 Define this to be an expression that returns zero if the given frame is
1265 an outermost frame, with no caller, and nonzero otherwise. The default
1266 definition is nonzero if the chain pointer is nonzero and given frame's
1267 PC is not inside the startup file (such as @file{crt0.o}). The
1268 alternate default definition (which is used if
1269 FRAME_CHAIN_VALID_ALTERNATE is defined) is nonzero if the chain pointer
1270 is nonzero and the given frame's PC is not in @code{main()} or a known
1271 entry point function (such as @code{_start()}).
1272
1273 @item FRAME_CHAIN_VALID_ALTERNATE
1274 Define this in order to use the alternate default definition of
1275 @code{FRAME_CHAIN_VALID}.
1276
1277 @item FRAME_FIND_SAVED_REGS
1278 stack.c
1279
1280 @item FRAME_NUM_ARGS (val, fi)
1281 For the frame described by @var{fi}, set @var{val} to the number of arguments
1282 that are being passed.
1283
1284 @item FRAME_SAVED_PC(frame)
1285 Given @var{frame}, return the pc saved there. That is, the return
1286 address.
1287
1288 @item FUNCTION_EPILOGUE_SIZE
1289 For some COFF targets, the @code{x_sym.x_misc.x_fsize} field of the
1290 function end symbol is 0. For such targets, you must define
1291 @code{FUNCTION_EPILOGUE_SIZE} to expand into the standard size of a
1292 function's epilogue.
1293
1294 @item GCC_COMPILED_FLAG_SYMBOL
1295 @item GCC2_COMPILED_FLAG_SYMBOL
1296 If defined, these are the names of the symbols that GDB will look for to
1297 detect that GCC compiled the file. The default symbols are
1298 @code{gcc_compiled.} and @code{gcc2_compiled.}, respectively. (Currently
1299 only defined for the Delta 68.)
1300
1301 @item GDB_TARGET_IS_HPPA
1302 This determines whether horrible kludge code in dbxread.c and
1303 partial-stab.h is used to mangle multiple-symbol-table files from
1304 HPPA's. This should all be ripped out, and a scheme like elfread.c
1305 used.
1306
1307 @item GDB_TARGET_IS_MACH386
1308 @item GDB_TARGET_IS_SUN3
1309 @item GDB_TARGET_IS_SUN386
1310 Kludges that should go away.
1311
1312 @item GET_LONGJMP_TARGET
1313 For most machines, this is a target-dependent parameter. On the
1314 DECstation and the Iris, this is a native-dependent parameter, since
1315 <setjmp.h> is needed to define it.
1316
1317 This macro determines the target PC address that longjmp() will jump to,
1318 assuming that we have just stopped at a longjmp breakpoint. It takes a
1319 CORE_ADDR * as argument, and stores the target PC value through this
1320 pointer. It examines the current state of the machine as needed.
1321
1322 @item GET_SAVED_REGISTER
1323 Define this if you need to supply your own definition for the function
1324 @code{get_saved_register}. Currently this is only done for the a29k.
1325
1326 @item HAVE_REGISTER_WINDOWS
1327 Define this if the target has register windows.
1328 @item REGISTER_IN_WINDOW_P (regnum)
1329 Define this to be an expression that is 1 if the given register is in
1330 the window.
1331
1332 @item IBM6000_TARGET
1333 Shows that we are configured for an IBM RS/6000 target. This
1334 conditional should be eliminated (FIXME) and replaced by
1335 feature-specific macros. It was introduced in haste and we are
1336 repenting at leisure.
1337
1338 @item IEEE_FLOAT
1339 Define this if the target system uses IEEE-format floating point numbers.
1340
1341 @item INIT_EXTRA_FRAME_INFO (fromleaf, fci)
1342 If defined, this should be a C expression or statement that fills in the
1343 @code{EXTRA_FRAME_INFO} slots of the given frame @var{fci}.
1344
1345 @item INIT_FRAME_PC (fromleaf, prev)
1346 This is a C statement that sets the pc of the frame pointed to by
1347 @var{prev}. [By default...]
1348
1349 @item INNER_THAN (lhs,rhs)
1350 Returns non-zero if stack address @var{lhs} is inner than (nearer to the
1351 stack top) stack address @var{rhs}. Define this as @code{lhs < rhs} if
1352 the target's stack grows downward in memory, or @code{lhs > rsh} if the
1353 stack grows upward.
1354
1355 @item IN_SIGTRAMP (pc, name)
1356 Define this to return true if the given @var{pc} and/or @var{name}
1357 indicates that the current function is a sigtramp.
1358
1359 @item SIGTRAMP_START (pc)
1360 @item SIGTRAMP_END (pc)
1361 Define these to be the start and end address of the sigtramp for the
1362 given @var{pc}. On machines where the address is just a compile time
1363 constant, the macro expansion will typically just ignore the supplied
1364 @var{pc}.
1365
1366 @item IN_SOLIB_TRAMPOLINE pc name
1367 Define this to evaluate to nonzero if the program is stopped in the
1368 trampoline that connects to a shared library.
1369
1370 @item IS_TRAPPED_INTERNALVAR (name)
1371 This is an ugly hook to allow the specification of special actions that
1372 should occur as a side-effect of setting the value of a variable
1373 internal to GDB. Currently only used by the h8500. Note that this
1374 could be either a host or target conditional.
1375
1376 @item KERNEL_DEBUGGING
1377 tm-ultra3.h
1378
1379 @item MIPSEL
1380 mips-tdep.c
1381
1382 @item NEED_TEXT_START_END
1383 Define this if GDB should determine the start and end addresses of the
1384 text section. (Seems dubious.)
1385
1386 @item NO_HIF_SUPPORT
1387 (Specific to the a29k.)
1388
1389 @item SOFTWARE_SINGLE_STEP_P
1390 Define this as 1 if the target does not have a hardware single-step
1391 mechanism. The macro @code{SOFTWARE_SINGLE_STEP} must also be defined.
1392
1393 @item SOFTWARE_SINGLE_STEP(signal,insert_breapoints_p)
1394 A function that inserts or removes (dependant on
1395 @var{insert_breapoints_p}) breakpoints at each possible destinations of
1396 the next instruction. See @code{sparc-tdep.c} and @code{rs6000-tdep.c}
1397 for examples.
1398
1399 @item PCC_SOL_BROKEN
1400 (Used only in the Convex target.)
1401
1402 @item PC_IN_CALL_DUMMY
1403 inferior.h
1404
1405 @item PC_LOAD_SEGMENT
1406 If defined, print information about the load segment for the program
1407 counter. (Defined only for the RS/6000.)
1408
1409 @item PC_REGNUM
1410 If the program counter is kept in a register, then define this macro to
1411 be the number of that register. This need be defined only if
1412 @code{TARGET_WRITE_PC} is not defined.
1413
1414 @item NPC_REGNUM
1415 The number of the ``next program counter'' register, if defined.
1416
1417 @item NNPC_REGNUM
1418 The number of the ``next next program counter'' register, if defined.
1419 Currently, this is only defined for the Motorola 88K.
1420
1421 @item PRINT_REGISTER_HOOK (regno)
1422 If defined, this must be a function that prints the contents of the
1423 given register to standard output.
1424
1425 @item PRINT_TYPELESS_INTEGER
1426 This is an obscure substitute for @code{print_longest} that seems to
1427 have been defined for the Convex target.
1428
1429 @item PROCESS_LINENUMBER_HOOK
1430 A hook defined for XCOFF reading.
1431
1432 @item PROLOGUE_FIRSTLINE_OVERLAP
1433 (Only used in unsupported Convex configuration.)
1434
1435 @item PS_REGNUM
1436 If defined, this is the number of the processor status register. (This
1437 definition is only used in generic code when parsing "$ps".)
1438
1439 @item POP_FRAME
1440 Used in @samp{call_function_by_hand} to remove an artificial stack
1441 frame.
1442
1443 @item PUSH_ARGUMENTS (nargs, args, sp, struct_return, struct_addr)
1444 Define this to push arguments onto the stack for inferior function call.
1445
1446 @item PUSH_DUMMY_FRAME
1447 Used in @samp{call_function_by_hand} to create an artificial stack frame.
1448
1449 @item REGISTER_BYTES
1450 The total amount of space needed to store GDB's copy of the machine's
1451 register state.
1452
1453 @item REGISTER_NAMES
1454 Define this to expand into an initializer of an array of strings. Each
1455 string is the name of a register.
1456
1457 @item REG_STRUCT_HAS_ADDR (gcc_p, type)
1458 Define this to return 1 if the given type will be passed by pointer
1459 rather than directly.
1460
1461 @item SDB_REG_TO_REGNUM
1462 Define this to convert sdb register numbers into GDB regnums. If not
1463 defined, no conversion will be done.
1464
1465 @item SHIFT_INST_REGS
1466 (Only used for m88k targets.)
1467
1468 @item SKIP_PROLOGUE (pc)
1469 A C statement that advances the @var{pc} across any function entry
1470 prologue instructions so as to reach ``real'' code.
1471
1472 @item SKIP_PROLOGUE_FRAMELESS_P
1473 A C statement that should behave similarly, but that can stop as soon as
1474 the function is known to have a frame. If not defined,
1475 @code{SKIP_PROLOGUE} will be used instead.
1476
1477 @item SKIP_TRAMPOLINE_CODE (pc)
1478 If the target machine has trampoline code that sits between callers and
1479 the functions being called, then define this macro to return a new PC
1480 that is at the start of the real function.
1481
1482 @item SP_REGNUM
1483 Define this to be the number of the register that serves as the stack
1484 pointer.
1485
1486 @item STAB_REG_TO_REGNUM
1487 Define this to convert stab register numbers (as gotten from `r'
1488 declarations) into GDB regnums. If not defined, no conversion will be
1489 done.
1490
1491 @item STACK_ALIGN (addr)
1492 Define this to adjust the address to the alignment required for the
1493 processor's stack.
1494
1495 @item STEP_SKIPS_DELAY (addr)
1496 Define this to return true if the address is of an instruction with a
1497 delay slot. If a breakpoint has been placed in the instruction's delay
1498 slot, GDB will single-step over that instruction before resuming
1499 normally. Currently only defined for the Mips.
1500
1501 @item STORE_RETURN_VALUE (type, valbuf)
1502 A C expression that stores a function return value of type @var{type},
1503 where @var{valbuf} is the address of the value to be stored.
1504
1505 @item SUN_FIXED_LBRAC_BUG
1506 (Used only for Sun-3 and Sun-4 targets.)
1507
1508 @item SYMBOL_RELOADING_DEFAULT
1509 The default value of the `symbol-reloading' variable. (Never defined in
1510 current sources.)
1511
1512 @item TARGET_BYTE_ORDER
1513 The ordering of bytes in the target. This must be defined to be either
1514 @code{BIG_ENDIAN} or @code{LITTLE_ENDIAN}.
1515
1516 @item TARGET_CHAR_BIT
1517 Number of bits in a char; defaults to 8.
1518
1519 @item TARGET_COMPLEX_BIT
1520 Number of bits in a complex number; defaults to @code{2 * TARGET_FLOAT_BIT}.
1521
1522 @item TARGET_DOUBLE_BIT
1523 Number of bits in a double float; defaults to @code{8 * TARGET_CHAR_BIT}.
1524
1525 @item TARGET_DOUBLE_COMPLEX_BIT
1526 Number of bits in a double complex; defaults to @code{2 * TARGET_DOUBLE_BIT}.
1527
1528 @item TARGET_FLOAT_BIT
1529 Number of bits in a float; defaults to @code{4 * TARGET_CHAR_BIT}.
1530
1531 @item TARGET_INT_BIT
1532 Number of bits in an integer; defaults to @code{4 * TARGET_CHAR_BIT}.
1533
1534 @item TARGET_LONG_BIT
1535 Number of bits in a long integer; defaults to @code{4 * TARGET_CHAR_BIT}.
1536
1537 @item TARGET_LONG_DOUBLE_BIT
1538 Number of bits in a long double float;
1539 defaults to @code{2 * TARGET_DOUBLE_BIT}.
1540
1541 @item TARGET_LONG_LONG_BIT
1542 Number of bits in a long long integer; defaults to @code{2 * TARGET_LONG_BIT}.
1543
1544 @item TARGET_PTR_BIT
1545 Number of bits in a pointer; defaults to @code{TARGET_INT_BIT}.
1546
1547 @item TARGET_SHORT_BIT
1548 Number of bits in a short integer; defaults to @code{2 * TARGET_CHAR_BIT}.
1549
1550 @item TARGET_READ_PC
1551 @item TARGET_WRITE_PC (val, pid)
1552 @item TARGET_READ_SP
1553 @item TARGET_WRITE_SP
1554 @item TARGET_READ_FP
1555 @item TARGET_WRITE_FP
1556 These change the behavior of @code{read_pc}, @code{write_pc},
1557 @code{read_sp}, @code{write_sp}, @code{read_fp} and @code{write_fp}.
1558 For most targets, these may be left undefined. GDB will call the read
1559 and write register functions with the relevant @code{_REGNUM} argument.
1560
1561 These macros are useful when a target keeps one of these registers in a
1562 hard to get at place; for example, part in a segment register and part
1563 in an ordinary register.
1564
1565 @item TARGET_VIRTUAL_FRAME_POINTER(pc,regp,offsetp)
1566 Returns a @code{(register, offset)} pair representing the virtual
1567 frame pointer in use at the code address @code{"pc"}. If virtual
1568 frame pointers are not used, a default definition simply returns
1569 @code{FP_REGNUM}, with an offset of zero.
1570
1571 @item USE_STRUCT_CONVENTION (gcc_p, type)
1572 If defined, this must be an expression that is nonzero if a value of the
1573 given @var{type} being returned from a function must have space
1574 allocated for it on the stack. @var{gcc_p} is true if the function
1575 being considered is known to have been compiled by GCC; this is helpful
1576 for systems where GCC is known to use different calling convention than
1577 other compilers.
1578
1579 @item VARIABLES_INSIDE_BLOCK (desc, gcc_p)
1580 For dbx-style debugging information, if the compiler puts variable
1581 declarations inside LBRAC/RBRAC blocks, this should be defined to be
1582 nonzero. @var{desc} is the value of @code{n_desc} from the
1583 @code{N_RBRAC} symbol, and @var{gcc_p} is true if GDB has noticed the
1584 presence of either the @code{GCC_COMPILED_SYMBOL} or the
1585 @code{GCC2_COMPILED_SYMBOL}. By default, this is 0.
1586
1587 @item OS9K_VARIABLES_INSIDE_BLOCK (desc, gcc_p)
1588 Similarly, for OS/9000. Defaults to 1.
1589
1590 @end table
1591
1592 Motorola M68K target conditionals.
1593
1594 @table @code
1595
1596 @item BPT_VECTOR
1597 Define this to be the 4-bit location of the breakpoint trap vector. If
1598 not defined, it will default to @code{0xf}.
1599
1600 @item REMOTE_BPT_VECTOR
1601 Defaults to @code{1}.
1602
1603 @end table
1604
1605 @section Adding a New Target
1606
1607 The following files define a target to GDB:
1608
1609 @table @file
1610
1611 @item gdb/config/@var{arch}/@var{ttt}.mt
1612 Contains a Makefile fragment specific to this target. Specifies what
1613 object files are needed for target @var{ttt}, by defining
1614 @samp{TDEPFILES=@dots{}}. Also specifies the header file which
1615 describes @var{ttt}, by defining @samp{TM_FILE= tm-@var{ttt}.h}. You
1616 can also define @samp{TM_CFLAGS}, @samp{TM_CLIBS}, @samp{TM_CDEPS}, but
1617 these are now deprecated and may go away in future versions of GDB.
1618
1619 @item gdb/config/@var{arch}/tm-@var{ttt}.h
1620 (@file{tm.h} is a link to this file, created by configure). Contains
1621 macro definitions about the target machine's registers, stack frame
1622 format and instructions.
1623
1624 @item gdb/@var{ttt}-tdep.c
1625 Contains any miscellaneous code required for this target machine. On
1626 some machines it doesn't exist at all. Sometimes the macros in
1627 @file{tm-@var{ttt}.h} become very complicated, so they are implemented
1628 as functions here instead, and the macro is simply defined to call the
1629 function. This is vastly preferable, since it is easier to understand
1630 and debug.
1631
1632 @item gdb/config/@var{arch}/tm-@var{arch}.h
1633 This often exists to describe the basic layout of the target machine's
1634 processor chip (registers, stack, etc). If used, it is included by
1635 @file{tm-@var{ttt}.h}. It can be shared among many targets that use the
1636 same processor.
1637
1638 @item gdb/@var{arch}-tdep.c
1639 Similarly, there are often common subroutines that are shared by all
1640 target machines that use this particular architecture.
1641
1642 @end table
1643
1644 If you are adding a new operating system for an existing CPU chip, add a
1645 @file{config/tm-@var{os}.h} file that describes the operating system
1646 facilities that are unusual (extra symbol table info; the breakpoint
1647 instruction needed; etc). Then write a @file{@var{arch}/tm-@var{os}.h}
1648 that just @code{#include}s @file{tm-@var{arch}.h} and
1649 @file{config/tm-@var{os}.h}.
1650
1651
1652 @node Target Vector Definition
1653
1654 @chapter Target Vector Definition
1655
1656 The target vector defines the interface between GDB's abstract handling
1657 of target systems, and the nitty-gritty code that actually exercises
1658 control over a process or a serial port. GDB includes some 30-40
1659 different target vectors; however, each configuration of GDB includes
1660 only a few of them.
1661
1662 @section File Targets
1663
1664 Both executables and core files have target vectors.
1665
1666 @section Standard Protocol and Remote Stubs
1667
1668 GDB's file @file{remote.c} talks a serial protocol to code that runs in
1669 the target system. GDB provides several sample ``stubs'' that can be
1670 integrated into target programs or operating systems for this purpose;
1671 they are named @file{*-stub.c}.
1672
1673 The GDB user's manual describes how to put such a stub into your target
1674 code. What follows is a discussion of integrating the SPARC stub into a
1675 complicated operating system (rather than a simple program), by Stu
1676 Grossman, the author of this stub.
1677
1678 The trap handling code in the stub assumes the following upon entry to
1679 trap_low:
1680
1681 @enumerate
1682
1683 @item %l1 and %l2 contain pc and npc respectively at the time of the trap
1684
1685 @item traps are disabled
1686
1687 @item you are in the correct trap window
1688
1689 @end enumerate
1690
1691 As long as your trap handler can guarantee those conditions, then there
1692 is no reason why you shouldn't be able to `share' traps with the stub.
1693 The stub has no requirement that it be jumped to directly from the
1694 hardware trap vector. That is why it calls @code{exceptionHandler()},
1695 which is provided by the external environment. For instance, this could
1696 setup the hardware traps to actually execute code which calls the stub
1697 first, and then transfers to its own trap handler.
1698
1699 For the most point, there probably won't be much of an issue with
1700 `sharing' traps, as the traps we use are usually not used by the kernel,
1701 and often indicate unrecoverable error conditions. Anyway, this is all
1702 controlled by a table, and is trivial to modify. The most important
1703 trap for us is for @code{ta 1}. Without that, we can't single step or
1704 do breakpoints. Everything else is unnecessary for the proper operation
1705 of the debugger/stub.
1706
1707 From reading the stub, it's probably not obvious how breakpoints work.
1708 They are simply done by deposit/examine operations from GDB.
1709
1710 @section ROM Monitor Interface
1711
1712 @section Custom Protocols
1713
1714 @section Transport Layer
1715
1716 @section Builtin Simulator
1717
1718
1719 @node Native Debugging
1720
1721 @chapter Native Debugging
1722
1723 Several files control GDB's configuration for native support:
1724
1725 @table @file
1726
1727 @item gdb/config/@var{arch}/@var{xyz}.mh
1728 Specifies Makefile fragments needed when hosting @emph{or native} on
1729 machine @var{xyz}. In particular, this lists the required
1730 native-dependent object files, by defining @samp{NATDEPFILES=@dots{}}.
1731 Also specifies the header file which describes native support on
1732 @var{xyz}, by defining @samp{NAT_FILE= nm-@var{xyz}.h}. You can also
1733 define @samp{NAT_CFLAGS}, @samp{NAT_ADD_FILES}, @samp{NAT_CLIBS},
1734 @samp{NAT_CDEPS}, etc.; see @file{Makefile.in}.
1735
1736 @item gdb/config/@var{arch}/nm-@var{xyz}.h
1737 (@file{nm.h} is a link to this file, created by configure). Contains C
1738 macro definitions describing the native system environment, such as
1739 child process control and core file support.
1740
1741 @item gdb/@var{xyz}-nat.c
1742 Contains any miscellaneous C code required for this native support of
1743 this machine. On some machines it doesn't exist at all.
1744
1745 @end table
1746
1747 There are some ``generic'' versions of routines that can be used by
1748 various systems. These can be customized in various ways by macros
1749 defined in your @file{nm-@var{xyz}.h} file. If these routines work for
1750 the @var{xyz} host, you can just include the generic file's name (with
1751 @samp{.o}, not @samp{.c}) in @code{NATDEPFILES}.
1752
1753 Otherwise, if your machine needs custom support routines, you will need
1754 to write routines that perform the same functions as the generic file.
1755 Put them into @code{@var{xyz}-nat.c}, and put @code{@var{xyz}-nat.o}
1756 into @code{NATDEPFILES}.
1757
1758 @table @file
1759
1760 @item inftarg.c
1761 This contains the @emph{target_ops vector} that supports Unix child
1762 processes on systems which use ptrace and wait to control the child.
1763
1764 @item procfs.c
1765 This contains the @emph{target_ops vector} that supports Unix child
1766 processes on systems which use /proc to control the child.
1767
1768 @item fork-child.c
1769 This does the low-level grunge that uses Unix system calls to do a "fork
1770 and exec" to start up a child process.
1771
1772 @item infptrace.c
1773 This is the low level interface to inferior processes for systems using
1774 the Unix @code{ptrace} call in a vanilla way.
1775
1776 @end table
1777
1778 @section Native core file Support
1779
1780 @table @file
1781
1782 @item core-aout.c::fetch_core_registers()
1783 Support for reading registers out of a core file. This routine calls
1784 @code{register_addr()}, see below. Now that BFD is used to read core
1785 files, virtually all machines should use @code{core-aout.c}, and should
1786 just provide @code{fetch_core_registers} in @code{@var{xyz}-nat.c} (or
1787 @code{REGISTER_U_ADDR} in @code{nm-@var{xyz}.h}).
1788
1789 @item core-aout.c::register_addr()
1790 If your @code{nm-@var{xyz}.h} file defines the macro
1791 @code{REGISTER_U_ADDR(addr, blockend, regno)}, it should be defined to
1792 set @code{addr} to the offset within the @samp{user} struct of GDB
1793 register number @code{regno}. @code{blockend} is the offset within the
1794 ``upage'' of @code{u.u_ar0}. If @code{REGISTER_U_ADDR} is defined,
1795 @file{core-aout.c} will define the @code{register_addr()} function and
1796 use the macro in it. If you do not define @code{REGISTER_U_ADDR}, but
1797 you are using the standard @code{fetch_core_registers()}, you will need
1798 to define your own version of @code{register_addr()}, put it into your
1799 @code{@var{xyz}-nat.c} file, and be sure @code{@var{xyz}-nat.o} is in
1800 the @code{NATDEPFILES} list. If you have your own
1801 @code{fetch_core_registers()}, you may not need a separate
1802 @code{register_addr()}. Many custom @code{fetch_core_registers()}
1803 implementations simply locate the registers themselves.@refill
1804
1805 @end table
1806
1807 When making GDB run native on a new operating system, to make it
1808 possible to debug core files, you will need to either write specific
1809 code for parsing your OS's core files, or customize
1810 @file{bfd/trad-core.c}. First, use whatever @code{#include} files your
1811 machine uses to define the struct of registers that is accessible
1812 (possibly in the u-area) in a core file (rather than
1813 @file{machine/reg.h}), and an include file that defines whatever header
1814 exists on a core file (e.g. the u-area or a @samp{struct core}). Then
1815 modify @code{trad_unix_core_file_p()} to use these values to set up the
1816 section information for the data segment, stack segment, any other
1817 segments in the core file (perhaps shared library contents or control
1818 information), ``registers'' segment, and if there are two discontiguous
1819 sets of registers (e.g. integer and float), the ``reg2'' segment. This
1820 section information basically delimits areas in the core file in a
1821 standard way, which the section-reading routines in BFD know how to seek
1822 around in.
1823
1824 Then back in GDB, you need a matching routine called
1825 @code{fetch_core_registers()}. If you can use the generic one, it's in
1826 @file{core-aout.c}; if not, it's in your @file{@var{xyz}-nat.c} file.
1827 It will be passed a char pointer to the entire ``registers'' segment,
1828 its length, and a zero; or a char pointer to the entire ``regs2''
1829 segment, its length, and a 2. The routine should suck out the supplied
1830 register values and install them into GDB's ``registers'' array.
1831
1832 If your system uses @file{/proc} to control processes, and uses ELF
1833 format core files, then you may be able to use the same routines for
1834 reading the registers out of processes and out of core files.
1835
1836 @section ptrace
1837
1838 @section /proc
1839
1840 @section win32
1841
1842 @section shared libraries
1843
1844 @section Native Conditionals
1845
1846 When GDB is configured and compiled, various macros are defined or left
1847 undefined, to control compilation when the host and target systems are
1848 the same. These macros should be defined (or left undefined) in
1849 @file{nm-@var{system}.h}.
1850
1851 @table @code
1852
1853 @item ATTACH_DETACH
1854 If defined, then GDB will include support for the @code{attach} and
1855 @code{detach} commands.
1856
1857 @item CHILD_PREPARE_TO_STORE
1858 If the machine stores all registers at once in the child process, then
1859 define this to ensure that all values are correct. This usually entails
1860 a read from the child.
1861
1862 [Note that this is incorrectly defined in @file{xm-@var{system}.h} files
1863 currently.]
1864
1865 @item FETCH_INFERIOR_REGISTERS
1866 Define this if the native-dependent code will provide its own routines
1867 @code{fetch_inferior_registers} and @code{store_inferior_registers} in
1868 @file{@var{HOST}-nat.c}. If this symbol is @emph{not} defined, and
1869 @file{infptrace.c} is included in this configuration, the default
1870 routines in @file{infptrace.c} are used for these functions.
1871
1872 @item FILES_INFO_HOOK
1873 (Only defined for Convex.)
1874
1875 @item FP0_REGNUM
1876 This macro is normally defined to be the number of the first floating
1877 point register, if the machine has such registers. As such, it would
1878 appear only in target-specific code. However, /proc support uses this
1879 to decide whether floats are in use on this target.
1880
1881 @item GET_LONGJMP_TARGET
1882 For most machines, this is a target-dependent parameter. On the
1883 DECstation and the Iris, this is a native-dependent parameter, since
1884 <setjmp.h> is needed to define it.
1885
1886 This macro determines the target PC address that longjmp() will jump to,
1887 assuming that we have just stopped at a longjmp breakpoint. It takes a
1888 CORE_ADDR * as argument, and stores the target PC value through this
1889 pointer. It examines the current state of the machine as needed.
1890
1891 @item KERNEL_U_ADDR
1892 Define this to the address of the @code{u} structure (the ``user
1893 struct'', also known as the ``u-page'') in kernel virtual memory. GDB
1894 needs to know this so that it can subtract this address from absolute
1895 addresses in the upage, that are obtained via ptrace or from core files.
1896 On systems that don't need this value, set it to zero.
1897
1898 @item KERNEL_U_ADDR_BSD
1899 Define this to cause GDB to determine the address of @code{u} at
1900 runtime, by using Berkeley-style @code{nlist} on the kernel's image in
1901 the root directory.
1902
1903 @item KERNEL_U_ADDR_HPUX
1904 Define this to cause GDB to determine the address of @code{u} at
1905 runtime, by using HP-style @code{nlist} on the kernel's image in the
1906 root directory.
1907
1908 @item ONE_PROCESS_WRITETEXT
1909 Define this to be able to, when a breakpoint insertion fails, warn the
1910 user that another process may be running with the same executable.
1911
1912 @item PROC_NAME_FMT
1913 Defines the format for the name of a @file{/proc} device. Should be
1914 defined in @file{nm.h} @emph{only} in order to override the default
1915 definition in @file{procfs.c}.
1916
1917 @item PTRACE_FP_BUG
1918 mach386-xdep.c
1919
1920 @item PTRACE_ARG3_TYPE
1921 The type of the third argument to the @code{ptrace} system call, if it
1922 exists and is different from @code{int}.
1923
1924 @item REGISTER_U_ADDR
1925 Defines the offset of the registers in the ``u area''.
1926
1927 @item SHELL_COMMAND_CONCAT
1928 If defined, is a string to prefix on the shell command used to start the
1929 inferior.
1930
1931 @item SHELL_FILE
1932 If defined, this is the name of the shell to use to run the inferior.
1933 Defaults to @code{"/bin/sh"}.
1934
1935 @item SOLIB_ADD (filename, from_tty, targ)
1936 Define this to expand into an expression that will cause the symbols in
1937 @var{filename} to be added to GDB's symbol table.
1938
1939 @item SOLIB_CREATE_INFERIOR_HOOK
1940 Define this to expand into any shared-library-relocation code that you
1941 want to be run just after the child process has been forked.
1942
1943 @item START_INFERIOR_TRAPS_EXPECTED
1944 When starting an inferior, GDB normally expects to trap twice; once when
1945 the shell execs, and once when the program itself execs. If the actual
1946 number of traps is something other than 2, then define this macro to
1947 expand into the number expected.
1948
1949 @item SVR4_SHARED_LIBS
1950 Define this to indicate that SVR4-style shared libraries are in use.
1951
1952 @item USE_PROC_FS
1953 This determines whether small routines in @file{*-tdep.c}, which
1954 translate register values between GDB's internal representation and the
1955 /proc representation, are compiled.
1956
1957 @item U_REGS_OFFSET
1958 This is the offset of the registers in the upage. It need only be
1959 defined if the generic ptrace register access routines in
1960 @file{infptrace.c} are being used (that is, @file{infptrace.c} is
1961 configured in, and @code{FETCH_INFERIOR_REGISTERS} is not defined). If
1962 the default value from @file{infptrace.c} is good enough, leave it
1963 undefined.
1964
1965 The default value means that u.u_ar0 @emph{points to} the location of
1966 the registers. I'm guessing that @code{#define U_REGS_OFFSET 0} means
1967 that u.u_ar0 @emph{is} the location of the registers.
1968
1969 @item CLEAR_SOLIB
1970 objfiles.c
1971
1972 @item DEBUG_PTRACE
1973 Define this to debug ptrace calls.
1974
1975 @end table
1976
1977
1978 @node Support Libraries
1979
1980 @chapter Support Libraries
1981
1982 @section BFD
1983
1984 BFD provides support for GDB in several ways:
1985
1986 @table @emph
1987
1988 @item identifying executable and core files
1989 BFD will identify a variety of file types, including a.out, coff, and
1990 several variants thereof, as well as several kinds of core files.
1991
1992 @item access to sections of files
1993 BFD parses the file headers to determine the names, virtual addresses,
1994 sizes, and file locations of all the various named sections in files
1995 (such as the text section or the data section). GDB simply calls BFD to
1996 read or write section X at byte offset Y for length Z.
1997
1998 @item specialized core file support
1999 BFD provides routines to determine the failing command name stored in a
2000 core file, the signal with which the program failed, and whether a core
2001 file matches (i.e. could be a core dump of) a particular executable
2002 file.
2003
2004 @item locating the symbol information
2005 GDB uses an internal interface of BFD to determine where to find the
2006 symbol information in an executable file or symbol-file. GDB itself
2007 handles the reading of symbols, since BFD does not ``understand'' debug
2008 symbols, but GDB uses BFD's cached information to find the symbols,
2009 string table, etc.
2010
2011 @end table
2012
2013 @section opcodes
2014
2015 The opcodes library provides GDB's disassembler. (It's a separate
2016 library because it's also used in binutils, for @file{objdump}).
2017
2018 @section readline
2019
2020 @section mmalloc
2021
2022 @section libiberty
2023
2024 @section gnu-regex
2025
2026 Regex conditionals.
2027
2028 @table @code
2029
2030 @item C_ALLOCA
2031
2032 @item NFAILURES
2033
2034 @item RE_NREGS
2035
2036 @item SIGN_EXTEND_CHAR
2037
2038 @item SWITCH_ENUM_BUG
2039
2040 @item SYNTAX_TABLE
2041
2042 @item Sword
2043
2044 @item sparc
2045
2046 @end table
2047
2048 @section include
2049
2050 @node Coding
2051
2052 @chapter Coding
2053
2054 This chapter covers topics that are lower-level than the major
2055 algorithms of GDB.
2056
2057 @section Cleanups
2058
2059 Cleanups are a structured way to deal with things that need to be done
2060 later. When your code does something (like @code{malloc} some memory,
2061 or open a file) that needs to be undone later (e.g. free the memory or
2062 close the file), it can make a cleanup. The cleanup will be done at
2063 some future point: when the command is finished, when an error occurs,
2064 or when your code decides it's time to do cleanups.
2065
2066 You can also discard cleanups, that is, throw them away without doing
2067 what they say. This is only done if you ask that it be done.
2068
2069 Syntax:
2070
2071 @table @code
2072
2073 @item struct cleanup *@var{old_chain};
2074 Declare a variable which will hold a cleanup chain handle.
2075
2076 @item @var{old_chain} = make_cleanup (@var{function}, @var{arg});
2077 Make a cleanup which will cause @var{function} to be called with
2078 @var{arg} (a @code{char *}) later. The result, @var{old_chain}, is a
2079 handle that can be passed to @code{do_cleanups} or
2080 @code{discard_cleanups} later. Unless you are going to call
2081 @code{do_cleanups} or @code{discard_cleanups} yourself, you can ignore
2082 the result from @code{make_cleanup}.
2083
2084 @item do_cleanups (@var{old_chain});
2085 Perform all cleanups done since @code{make_cleanup} returned
2086 @var{old_chain}. E.g.:
2087 @example
2088 make_cleanup (a, 0);
2089 old = make_cleanup (b, 0);
2090 do_cleanups (old);
2091 @end example
2092 @noindent
2093 will call @code{b()} but will not call @code{a()}. The cleanup that
2094 calls @code{a()} will remain in the cleanup chain, and will be done
2095 later unless otherwise discarded.@refill
2096
2097 @item discard_cleanups (@var{old_chain});
2098 Same as @code{do_cleanups} except that it just removes the cleanups from
2099 the chain and does not call the specified functions.
2100
2101 @end table
2102
2103 Some functions, e.g. @code{fputs_filtered()} or @code{error()}, specify
2104 that they ``should not be called when cleanups are not in place''. This
2105 means that any actions you need to reverse in the case of an error or
2106 interruption must be on the cleanup chain before you call these
2107 functions, since they might never return to your code (they
2108 @samp{longjmp} instead).
2109
2110 @section Wrapping Output Lines
2111
2112 Output that goes through @code{printf_filtered} or @code{fputs_filtered}
2113 or @code{fputs_demangled} needs only to have calls to @code{wrap_here}
2114 added in places that would be good breaking points. The utility
2115 routines will take care of actually wrapping if the line width is
2116 exceeded.
2117
2118 The argument to @code{wrap_here} is an indentation string which is
2119 printed @emph{only} if the line breaks there. This argument is saved
2120 away and used later. It must remain valid until the next call to
2121 @code{wrap_here} or until a newline has been printed through the
2122 @code{*_filtered} functions. Don't pass in a local variable and then
2123 return!
2124
2125 It is usually best to call @code{wrap_here()} after printing a comma or
2126 space. If you call it before printing a space, make sure that your
2127 indentation properly accounts for the leading space that will print if
2128 the line wraps there.
2129
2130 Any function or set of functions that produce filtered output must
2131 finish by printing a newline, to flush the wrap buffer, before switching
2132 to unfiltered (``@code{printf}'') output. Symbol reading routines that
2133 print warnings are a good example.
2134
2135 @section Coding Style
2136
2137 GDB follows the GNU coding standards, as described in
2138 @file{etc/standards.texi}. This file is also available for anonymous
2139 FTP from GNU archive sites. There are some additional considerations
2140 for GDB maintainers that reflect the unique environment and style of GDB
2141 maintenance. If you follow these guidelines, GDB will be more
2142 consistent and easier to maintain.
2143
2144 GDB's policy on the use of prototypes is that prototypes are used to
2145 @emph{declare} functions but never to @emph{define} them. Simple macros
2146 are used in the declarations, so that a non-ANSI compiler can compile
2147 GDB without trouble. The simple macro calls are used like this:
2148
2149 @example @code
2150 extern int memory_remove_breakpoint PARAMS ((CORE_ADDR, char *));
2151 @end example
2152
2153 Note the double parentheses around the parameter types. This allows an
2154 arbitrary number of parameters to be described, without freaking out the
2155 C preprocessor. When the function has no parameters, it should be
2156 described like:
2157
2158 @example @code
2159 void noprocess PARAMS ((void));
2160 @end example
2161
2162 The @code{PARAMS} macro expands to its argument in ANSI C, or to a
2163 simple @code{()} in traditional C.
2164
2165 All external functions should have a @code{PARAMS} declaration in a
2166 header file that callers include. All static functions should have such
2167 a declaration near the top of their source file.
2168
2169 We don't have a gcc option that will properly check that these rules
2170 have been followed, but it's GDB policy, and we periodically check it
2171 using the tools available (plus manual labor), and clean up any
2172 remnants.
2173
2174 @section Clean Design
2175
2176 In addition to getting the syntax right, there's the little question of
2177 semantics. Some things are done in certain ways in GDB because long
2178 experience has shown that the more obvious ways caused various kinds of
2179 trouble.
2180
2181 You can't assume the byte order of anything that comes from a target
2182 (including @var{value}s, object files, and instructions). Such things
2183 must be byte-swapped using @code{SWAP_TARGET_AND_HOST} in GDB, or one of
2184 the swap routines defined in @file{bfd.h}, such as @code{bfd_get_32}.
2185
2186 You can't assume that you know what interface is being used to talk to
2187 the target system. All references to the target must go through the
2188 current @code{target_ops} vector.
2189
2190 You can't assume that the host and target machines are the same machine
2191 (except in the ``native'' support modules). In particular, you can't
2192 assume that the target machine's header files will be available on the
2193 host machine. Target code must bring along its own header files --
2194 written from scratch or explicitly donated by their owner, to avoid
2195 copyright problems.
2196
2197 Insertion of new @code{#ifdef}'s will be frowned upon. It's much better
2198 to write the code portably than to conditionalize it for various
2199 systems.
2200
2201 New @code{#ifdef}'s which test for specific compilers or manufacturers
2202 or operating systems are unacceptable. All @code{#ifdef}'s should test
2203 for features. The information about which configurations contain which
2204 features should be segregated into the configuration files. Experience
2205 has proven far too often that a feature unique to one particular system
2206 often creeps into other systems; and that a conditional based on some
2207 predefined macro for your current system will become worthless over
2208 time, as new versions of your system come out that behave differently
2209 with regard to this feature.
2210
2211 Adding code that handles specific architectures, operating systems,
2212 target interfaces, or hosts, is not acceptable in generic code. If a
2213 hook is needed at that point, invent a generic hook and define it for
2214 your configuration, with something like:
2215
2216 @example
2217 #ifdef WRANGLE_SIGNALS
2218 WRANGLE_SIGNALS (signo);
2219 #endif
2220 @end example
2221
2222 In your host, target, or native configuration file, as appropriate,
2223 define @code{WRANGLE_SIGNALS} to do the machine-dependent thing. Take a
2224 bit of care in defining the hook, so that it can be used by other ports
2225 in the future, if they need a hook in the same place.
2226
2227 If the hook is not defined, the code should do whatever "most" machines
2228 want. Using @code{#ifdef}, as above, is the preferred way to do this,
2229 but sometimes that gets convoluted, in which case use
2230
2231 @example
2232 #ifndef SPECIAL_FOO_HANDLING
2233 #define SPECIAL_FOO_HANDLING(pc, sp) (0)
2234 #endif
2235 @end example
2236
2237 where the macro is used or in an appropriate header file.
2238
2239 Whether to include a @dfn{small} hook, a hook around the exact pieces of
2240 code which are system-dependent, or whether to replace a whole function
2241 with a hook depends on the case. A good example of this dilemma can be
2242 found in @code{get_saved_register}. All machines that GDB 2.8 ran on
2243 just needed the @code{FRAME_FIND_SAVED_REGS} hook to find the saved
2244 registers. Then the SPARC and Pyramid came along, and
2245 @code{HAVE_REGISTER_WINDOWS} and @code{REGISTER_IN_WINDOW_P} were
2246 introduced. Then the 29k and 88k required the @code{GET_SAVED_REGISTER}
2247 hook. The first three are examples of small hooks; the latter replaces
2248 a whole function. In this specific case, it is useful to have both
2249 kinds; it would be a bad idea to replace all the uses of the small hooks
2250 with @code{GET_SAVED_REGISTER}, since that would result in much
2251 duplicated code. Other times, duplicating a few lines of code here or
2252 there is much cleaner than introducing a large number of small hooks.
2253
2254 Another way to generalize GDB along a particular interface is with an
2255 attribute struct. For example, GDB has been generalized to handle
2256 multiple kinds of remote interfaces -- not by #ifdef's everywhere, but
2257 by defining the "target_ops" structure and having a current target (as
2258 well as a stack of targets below it, for memory references). Whenever
2259 something needs to be done that depends on which remote interface we are
2260 using, a flag in the current target_ops structure is tested (e.g.
2261 `target_has_stack'), or a function is called through a pointer in the
2262 current target_ops structure. In this way, when a new remote interface
2263 is added, only one module needs to be touched -- the one that actually
2264 implements the new remote interface. Other examples of
2265 attribute-structs are BFD access to multiple kinds of object file
2266 formats, or GDB's access to multiple source languages.
2267
2268 Please avoid duplicating code. For example, in GDB 3.x all the code
2269 interfacing between @code{ptrace} and the rest of GDB was duplicated in
2270 @file{*-dep.c}, and so changing something was very painful. In GDB 4.x,
2271 these have all been consolidated into @file{infptrace.c}.
2272 @file{infptrace.c} can deal with variations between systems the same way
2273 any system-independent file would (hooks, #if defined, etc.), and
2274 machines which are radically different don't need to use infptrace.c at
2275 all.
2276
2277 @emph{Do} write code that doesn't depend on the sizes of C data types,
2278 the format of the host's floating point numbers, the alignment of anything,
2279 or the order of evaluation of expressions. In short, follow good
2280 programming practices for writing portable C code.
2281
2282
2283 @node Porting GDB
2284
2285 @chapter Porting GDB
2286
2287 Most of the work in making GDB compile on a new machine is in specifying
2288 the configuration of the machine. This is done in a dizzying variety of
2289 header files and configuration scripts, which we hope to make more
2290 sensible soon. Let's say your new host is called an @var{xyz} (e.g.
2291 @samp{sun4}), and its full three-part configuration name is
2292 @code{@var{arch}-@var{xvend}-@var{xos}} (e.g. @samp{sparc-sun-sunos4}).
2293 In particular:
2294
2295 In the top level directory, edit @file{config.sub} and add @var{arch},
2296 @var{xvend}, and @var{xos} to the lists of supported architectures,
2297 vendors, and operating systems near the bottom of the file. Also, add
2298 @var{xyz} as an alias that maps to
2299 @code{@var{arch}-@var{xvend}-@var{xos}}. You can test your changes by
2300 running
2301
2302 @example
2303 ./config.sub @var{xyz}
2304 @end example
2305 @noindent
2306 and
2307 @example
2308 ./config.sub @code{@var{arch}-@var{xvend}-@var{xos}}
2309 @end example
2310 @noindent
2311 which should both respond with @code{@var{arch}-@var{xvend}-@var{xos}}
2312 and no error messages.
2313
2314 You need to port BFD, if that hasn't been done already. Porting BFD is
2315 beyond the scope of this manual.
2316
2317 To configure GDB itself, edit @file{gdb/configure.host} to recognize
2318 your system and set @code{gdb_host} to @var{xyz}, and (unless your
2319 desired target is already available) also edit @file{gdb/configure.tgt},
2320 setting @code{gdb_target} to something appropriate (for instance,
2321 @var{xyz}).
2322
2323 Finally, you'll need to specify and define GDB's host-, native-, and
2324 target-dependent @file{.h} and @file{.c} files used for your
2325 configuration.
2326
2327 @section Configuring GDB for Release
2328
2329 From the top level directory (containing @file{gdb}, @file{bfd},
2330 @file{libiberty}, and so on):
2331 @example
2332 make -f Makefile.in gdb.tar.gz
2333 @end example
2334
2335 This will properly configure, clean, rebuild any files that are
2336 distributed pre-built (e.g. @file{c-exp.tab.c} or @file{refcard.ps}),
2337 and will then make a tarfile. (If the top level directory has already
2338 been configured, you can just do @code{make gdb.tar.gz} instead.)
2339
2340 This procedure requires:
2341 @itemize @bullet
2342 @item symbolic links
2343 @item @code{makeinfo} (texinfo2 level)
2344 @item @TeX{}
2345 @item @code{dvips}
2346 @item @code{yacc} or @code{bison}
2347 @end itemize
2348 @noindent
2349 @dots{} and the usual slew of utilities (@code{sed}, @code{tar}, etc.).
2350
2351 @subheading TEMPORARY RELEASE PROCEDURE FOR DOCUMENTATION
2352
2353 @file{gdb.texinfo} is currently marked up using the texinfo-2 macros,
2354 which are not yet a default for anything (but we have to start using
2355 them sometime).
2356
2357 For making paper, the only thing this implies is the right generation of
2358 @file{texinfo.tex} needs to be included in the distribution.
2359
2360 For making info files, however, rather than duplicating the texinfo2
2361 distribution, generate @file{gdb-all.texinfo} locally, and include the
2362 files @file{gdb.info*} in the distribution. Note the plural;
2363 @code{makeinfo} will split the document into one overall file and five
2364 or so included files.
2365
2366 @node Hints
2367
2368 @chapter Hints
2369
2370 Check the @file{README} file, it often has useful information that does not
2371 appear anywhere else in the directory.
2372
2373 @menu
2374 * Getting Started:: Getting started working on GDB
2375 * Debugging GDB:: Debugging GDB with itself
2376 @end menu
2377
2378 @node Getting Started,,, Hints
2379
2380 @section Getting Started
2381
2382 GDB is a large and complicated program, and if you first starting to
2383 work on it, it can be hard to know where to start. Fortunately, if you
2384 know how to go about it, there are ways to figure out what is going on.
2385
2386 This manual, the GDB Internals manual, has information which applies
2387 generally to many parts of GDB.
2388
2389 Information about particular functions or data structures are located in
2390 comments with those functions or data structures. If you run across a
2391 function or a global variable which does not have a comment correctly
2392 explaining what is does, this can be thought of as a bug in GDB; feel
2393 free to submit a bug report, with a suggested comment if you can figure
2394 out what the comment should say. If you find a comment which is
2395 actually wrong, be especially sure to report that.
2396
2397 Comments explaining the function of macros defined in host, target, or
2398 native dependent files can be in several places. Sometimes they are
2399 repeated every place the macro is defined. Sometimes they are where the
2400 macro is used. Sometimes there is a header file which supplies a
2401 default definition of the macro, and the comment is there. This manual
2402 also documents all the available macros.
2403 @c (@pxref{Host Conditionals}, @pxref{Target
2404 @c Conditionals}, @pxref{Native Conditionals}, and @pxref{Obsolete
2405 @c Conditionals})
2406
2407 Start with the header files. Once you some idea of how GDB's internal
2408 symbol tables are stored (see @file{symtab.h}, @file{gdbtypes.h}), you
2409 will find it much easier to understand the code which uses and creates
2410 those symbol tables.
2411
2412 You may wish to process the information you are getting somehow, to
2413 enhance your understanding of it. Summarize it, translate it to another
2414 language, add some (perhaps trivial or non-useful) feature to GDB, use
2415 the code to predict what a test case would do and write the test case
2416 and verify your prediction, etc. If you are reading code and your eyes
2417 are starting to glaze over, this is a sign you need to use a more active
2418 approach.
2419
2420 Once you have a part of GDB to start with, you can find more
2421 specifically the part you are looking for by stepping through each
2422 function with the @code{next} command. Do not use @code{step} or you
2423 will quickly get distracted; when the function you are stepping through
2424 calls another function try only to get a big-picture understanding
2425 (perhaps using the comment at the beginning of the function being
2426 called) of what it does. This way you can identify which of the
2427 functions being called by the function you are stepping through is the
2428 one which you are interested in. You may need to examine the data
2429 structures generated at each stage, with reference to the comments in
2430 the header files explaining what the data structures are supposed to
2431 look like.
2432
2433 Of course, this same technique can be used if you are just reading the
2434 code, rather than actually stepping through it. The same general
2435 principle applies---when the code you are looking at calls something
2436 else, just try to understand generally what the code being called does,
2437 rather than worrying about all its details.
2438
2439 A good place to start when tracking down some particular area is with a
2440 command which invokes that feature. Suppose you want to know how
2441 single-stepping works. As a GDB user, you know that the @code{step}
2442 command invokes single-stepping. The command is invoked via command
2443 tables (see @file{command.h}); by convention the function which actually
2444 performs the command is formed by taking the name of the command and
2445 adding @samp{_command}, or in the case of an @code{info} subcommand,
2446 @samp{_info}. For example, the @code{step} command invokes the
2447 @code{step_command} function and the @code{info display} command invokes
2448 @code{display_info}. When this convention is not followed, you might
2449 have to use @code{grep} or @kbd{M-x tags-search} in emacs, or run GDB on
2450 itself and set a breakpoint in @code{execute_command}.
2451
2452 If all of the above fail, it may be appropriate to ask for information
2453 on @code{bug-gdb}. But @emph{never} post a generic question like ``I was
2454 wondering if anyone could give me some tips about understanding
2455 GDB''---if we had some magic secret we would put it in this manual.
2456 Suggestions for improving the manual are always welcome, of course.
2457
2458 @node Debugging GDB,,,Hints
2459
2460 @section Debugging GDB with itself
2461
2462 If GDB is limping on your machine, this is the preferred way to get it
2463 fully functional. Be warned that in some ancient Unix systems, like
2464 Ultrix 4.2, a program can't be running in one process while it is being
2465 debugged in another. Rather than typing the command @code{@w{./gdb
2466 ./gdb}}, which works on Suns and such, you can copy @file{gdb} to
2467 @file{gdb2} and then type @code{@w{./gdb ./gdb2}}.
2468
2469 When you run GDB in the GDB source directory, it will read a
2470 @file{.gdbinit} file that sets up some simple things to make debugging
2471 gdb easier. The @code{info} command, when executed without a subcommand
2472 in a GDB being debugged by gdb, will pop you back up to the top level
2473 gdb. See @file{.gdbinit} for details.
2474
2475 If you use emacs, you will probably want to do a @code{make TAGS} after
2476 you configure your distribution; this will put the machine dependent
2477 routines for your local machine where they will be accessed first by
2478 @kbd{M-.}
2479
2480 Also, make sure that you've either compiled GDB with your local cc, or
2481 have run @code{fixincludes} if you are compiling with gcc.
2482
2483 @section Submitting Patches
2484
2485 Thanks for thinking of offering your changes back to the community of
2486 GDB users. In general we like to get well designed enhancements.
2487 Thanks also for checking in advance about the best way to transfer the
2488 changes.
2489
2490 The GDB maintainers will only install ``cleanly designed'' patches. You
2491 may not always agree on what is clean design.
2492 @c @pxref{Coding Style}, @pxref{Clean Design}.
2493
2494 If the maintainers don't have time to put the patch in when it arrives,
2495 or if there is any question about a patch, it goes into a large queue
2496 with everyone else's patches and bug reports.
2497
2498 The legal issue is that to incorporate substantial changes requires a
2499 copyright assignment from you and/or your employer, granting ownership
2500 of the changes to the Free Software Foundation. You can get the
2501 standard document for doing this by sending mail to
2502 @code{gnu@@prep.ai.mit.edu} and asking for it. I recommend that people
2503 write in "All programs owned by the Free Software Foundation" as "NAME
2504 OF PROGRAM", so that changes in many programs (not just GDB, but GAS,
2505 Emacs, GCC, etc) can be contributed with only one piece of legalese
2506 pushed through the bureacracy and filed with the FSF. I can't start
2507 merging changes until this paperwork is received by the FSF (their
2508 rules, which I follow since I maintain it for them).
2509
2510 Technically, the easiest way to receive changes is to receive each
2511 feature as a small context diff or unidiff, suitable for "patch".
2512 Each message sent to me should include the changes to C code and
2513 header files for a single feature, plus ChangeLog entries for each
2514 directory where files were modified, and diffs for any changes needed
2515 to the manuals (gdb/doc/gdb.texi or gdb/doc/gdbint.texi). If there
2516 are a lot of changes for a single feature, they can be split down
2517 into multiple messages.
2518
2519 In this way, if I read and like the feature, I can add it to the
2520 sources with a single patch command, do some testing, and check it in.
2521 If you leave out the ChangeLog, I have to write one. If you leave
2522 out the doc, I have to puzzle out what needs documenting. Etc.
2523
2524 The reason to send each change in a separate message is that I will
2525 not install some of the changes. They'll be returned to you with
2526 questions or comments. If I'm doing my job, my message back to you
2527 will say what you have to fix in order to make the change acceptable.
2528 The reason to have separate messages for separate features is so
2529 that other changes (which I @emph{am} willing to accept) can be installed
2530 while one or more changes are being reworked. If multiple features
2531 are sent in a single message, I tend to not put in the effort to sort
2532 out the acceptable changes from the unacceptable, so none of the
2533 features get installed until all are acceptable.
2534
2535 If this sounds painful or authoritarian, well, it is. But I get a lot
2536 of bug reports and a lot of patches, and most of them don't get
2537 installed because I don't have the time to finish the job that the bug
2538 reporter or the contributor could have done. Patches that arrive
2539 complete, working, and well designed, tend to get installed on the day
2540 they arrive. The others go into a queue and get installed if and when
2541 I scan back over the queue -- which can literally take months
2542 sometimes. It's in both our interests to make patch installation easy
2543 -- you get your changes installed, and I make some forward progress on
2544 GDB in a normal 12-hour day (instead of them having to wait until I
2545 have a 14-hour or 16-hour day to spend cleaning up patches before I
2546 can install them).
2547
2548 Please send patches directly to the GDB maintainers at
2549 @code{gdb-patches@@cygnus.com}.
2550
2551 @section Obsolete Conditionals
2552
2553 Fragments of old code in GDB sometimes reference or set the following
2554 configuration macros. They should not be used by new code, and old uses
2555 should be removed as those parts of the debugger are otherwise touched.
2556
2557 @table @code
2558
2559 @item STACK_END_ADDR
2560 This macro used to define where the end of the stack appeared, for use
2561 in interpreting core file formats that don't record this address in the
2562 core file itself. This information is now configured in BFD, and GDB
2563 gets the info portably from there. The values in GDB's configuration
2564 files should be moved into BFD configuration files (if needed there),
2565 and deleted from all of GDB's config files.
2566
2567 Any @file{@var{foo}-xdep.c} file that references STACK_END_ADDR
2568 is so old that it has never been converted to use BFD. Now that's old!
2569
2570 @item PYRAMID_CONTROL_FRAME_DEBUGGING
2571 pyr-xdep.c
2572 @item PYRAMID_CORE
2573 pyr-xdep.c
2574 @item PYRAMID_PTRACE
2575 pyr-xdep.c
2576
2577 @item REG_STACK_SEGMENT
2578 exec.c
2579
2580 @end table
2581
2582
2583 @contents
2584 @bye