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