1 |
578 |
markom |
This is gdbint.info, produced by makeinfo version 4.0 from
|
2 |
|
|
./gdbint.texinfo.
|
3 |
|
|
|
4 |
|
|
INFO-DIR-SECTION Programming & development tools.
|
5 |
|
|
START-INFO-DIR-ENTRY
|
6 |
|
|
START-INFO-DIR-ENTRY
|
7 |
|
|
* Gdb-Internals: (gdbint). The GNU debugger's internals.
|
8 |
|
|
END-INFO-DIR-ENTRY
|
9 |
|
|
END-INFO-DIR-ENTRY
|
10 |
|
|
|
11 |
|
|
This file documents the internals of the GNU debugger GDB.
|
12 |
|
|
Copyright 1990,1991,1992,1993,1994,1996,1998,1999,2000,2001 Free
|
13 |
|
|
Software Foundation, Inc. Contributed by Cygnus Solutions. Written by
|
14 |
|
|
John Gilmore. Second Edition by Stan Shebs.
|
15 |
|
|
|
16 |
|
|
Permission is granted to copy, distribute and/or modify this document
|
17 |
|
|
under the terms of the GNU Free Documentation License, Version 1.1 or
|
18 |
|
|
any later version published by the Free Software Foundation; with the
|
19 |
|
|
Invariant Sections being "Algorithms" and "Porting GDB", with the
|
20 |
|
|
Front-Cover texts being "A GNU Manual," and with the Back-Cover Texts
|
21 |
|
|
as in (a) below.
|
22 |
|
|
|
23 |
|
|
(a) The FSF's Back-Cover Text is: "You have freedom to copy and
|
24 |
|
|
modify this GNU Manual, like GNU software. Copies published by the Free
|
25 |
|
|
Software Foundation raise funds for GNU development."
|
26 |
|
|
|
27 |
|
|
|
28 |
|
|
File: gdbint.info, Node: Debugging GDB, Up: Hints
|
29 |
|
|
|
30 |
|
|
Debugging GDB with itself
|
31 |
|
|
=========================
|
32 |
|
|
|
33 |
|
|
If GDB is limping on your machine, this is the preferred way to get
|
34 |
|
|
it fully functional. Be warned that in some ancient Unix systems, like
|
35 |
|
|
Ultrix 4.2, a program can't be running in one process while it is being
|
36 |
|
|
debugged in another. Rather than typing the command `./gdb ./gdb',
|
37 |
|
|
which works on Suns and such, you can copy `gdb' to `gdb2' and then
|
38 |
|
|
type `./gdb ./gdb2'.
|
39 |
|
|
|
40 |
|
|
When you run GDB in the GDB source directory, it will read a
|
41 |
|
|
`.gdbinit' file that sets up some simple things to make debugging gdb
|
42 |
|
|
easier. The `info' command, when executed without a subcommand in a
|
43 |
|
|
GDB being debugged by gdb, will pop you back up to the top level gdb.
|
44 |
|
|
See `.gdbinit' for details.
|
45 |
|
|
|
46 |
|
|
If you use emacs, you will probably want to do a `make TAGS' after
|
47 |
|
|
you configure your distribution; this will put the machine dependent
|
48 |
|
|
routines for your local machine where they will be accessed first by
|
49 |
|
|
`M-.'
|
50 |
|
|
|
51 |
|
|
Also, make sure that you've either compiled GDB with your local cc,
|
52 |
|
|
or have run `fixincludes' if you are compiling with gcc.
|
53 |
|
|
|
54 |
|
|
Submitting Patches
|
55 |
|
|
==================
|
56 |
|
|
|
57 |
|
|
Thanks for thinking of offering your changes back to the community of
|
58 |
|
|
GDB users. In general we like to get well designed enhancements.
|
59 |
|
|
Thanks also for checking in advance about the best way to transfer the
|
60 |
|
|
changes.
|
61 |
|
|
|
62 |
|
|
The GDB maintainers will only install "cleanly designed" patches.
|
63 |
|
|
This manual summarizes what we believe to be clean design for GDB.
|
64 |
|
|
|
65 |
|
|
If the maintainers don't have time to put the patch in when it
|
66 |
|
|
arrives, or if there is any question about a patch, it goes into a
|
67 |
|
|
large queue with everyone else's patches and bug reports.
|
68 |
|
|
|
69 |
|
|
The legal issue is that to incorporate substantial changes requires a
|
70 |
|
|
copyright assignment from you and/or your employer, granting ownership
|
71 |
|
|
of the changes to the Free Software Foundation. You can get the
|
72 |
|
|
standard documents for doing this by sending mail to `gnu@gnu.org' and
|
73 |
|
|
asking for it. We recommend that people write in "All programs owned
|
74 |
|
|
by the Free Software Foundation" as "NAME OF PROGRAM", so that changes
|
75 |
|
|
in many programs (not just GDB, but GAS, Emacs, GCC, etc) can be
|
76 |
|
|
contributed with only one piece of legalese pushed through the
|
77 |
|
|
bureacracy and filed with the FSF. We can't start merging changes until
|
78 |
|
|
this paperwork is received by the FSF (their rules, which we follow
|
79 |
|
|
since we maintain it for them).
|
80 |
|
|
|
81 |
|
|
Technically, the easiest way to receive changes is to receive each
|
82 |
|
|
feature as a small context diff or unidiff, suitable for `patch'. Each
|
83 |
|
|
message sent to me should include the changes to C code and header
|
84 |
|
|
files for a single feature, plus `ChangeLog' entries for each directory
|
85 |
|
|
where files were modified, and diffs for any changes needed to the
|
86 |
|
|
manuals (`gdb/doc/gdb.texinfo' or `gdb/doc/gdbint.texinfo'). If there
|
87 |
|
|
are a lot of changes for a single feature, they can be split down into
|
88 |
|
|
multiple messages.
|
89 |
|
|
|
90 |
|
|
In this way, if we read and like the feature, we can add it to the
|
91 |
|
|
sources with a single patch command, do some testing, and check it in.
|
92 |
|
|
If you leave out the `ChangeLog', we have to write one. If you leave
|
93 |
|
|
out the doc, we have to puzzle out what needs documenting. Etc., etc.
|
94 |
|
|
|
95 |
|
|
The reason to send each change in a separate message is that we will
|
96 |
|
|
not install some of the changes. They'll be returned to you with
|
97 |
|
|
questions or comments. If we're doing our job correctly, the message
|
98 |
|
|
back to you will say what you have to fix in order to make the change
|
99 |
|
|
acceptable. The reason to have separate messages for separate features
|
100 |
|
|
is so that the acceptable changes can be installed while one or more
|
101 |
|
|
changes are being reworked. If multiple features are sent in a single
|
102 |
|
|
message, we tend to not put in the effort to sort out the acceptable
|
103 |
|
|
changes from the unacceptable, so none of the features get installed
|
104 |
|
|
until all are acceptable.
|
105 |
|
|
|
106 |
|
|
If this sounds painful or authoritarian, well, it is. But we get a
|
107 |
|
|
lot of bug reports and a lot of patches, and many of them don't get
|
108 |
|
|
installed because we don't have the time to finish the job that the bug
|
109 |
|
|
reporter or the contributor could have done. Patches that arrive
|
110 |
|
|
complete, working, and well designed, tend to get installed on the day
|
111 |
|
|
they arrive. The others go into a queue and get installed as time
|
112 |
|
|
permits, which, since the maintainers have many demands to meet, may not
|
113 |
|
|
be for quite some time.
|
114 |
|
|
|
115 |
|
|
Please send patches directly to the GDB maintainers
|
116 |
|
|
.
|
117 |
|
|
|
118 |
|
|
Obsolete Conditionals
|
119 |
|
|
=====================
|
120 |
|
|
|
121 |
|
|
Fragments of old code in GDB sometimes reference or set the following
|
122 |
|
|
configuration macros. They should not be used by new code, and old uses
|
123 |
|
|
should be removed as those parts of the debugger are otherwise touched.
|
124 |
|
|
|
125 |
|
|
`STACK_END_ADDR'
|
126 |
|
|
This macro used to define where the end of the stack appeared, for
|
127 |
|
|
use in interpreting core file formats that don't record this
|
128 |
|
|
address in the core file itself. This information is now
|
129 |
|
|
configured in BFD, and GDB gets the info portably from there. The
|
130 |
|
|
values in GDB's configuration files should be moved into BFD
|
131 |
|
|
configuration files (if needed there), and deleted from all of
|
132 |
|
|
GDB's config files.
|
133 |
|
|
|
134 |
|
|
Any `FOO-xdep.c' file that references STACK_END_ADDR is so old
|
135 |
|
|
that it has never been converted to use BFD. Now that's old!
|
136 |
|
|
|
137 |
|
|
`PYRAMID_CONTROL_FRAME_DEBUGGING'
|
138 |
|
|
pyr-xdep.c
|
139 |
|
|
|
140 |
|
|
`PYRAMID_CORE'
|
141 |
|
|
pyr-xdep.c
|
142 |
|
|
|
143 |
|
|
`PYRAMID_PTRACE'
|
144 |
|
|
pyr-xdep.c
|
145 |
|
|
|
146 |
|
|
`REG_STACK_SEGMENT'
|
147 |
|
|
exec.c
|
148 |
|
|
|
149 |
|
|
|
150 |
|
|
File: gdbint.info, Node: Index, Prev: Hints, Up: Top
|
151 |
|
|
|
152 |
|
|
Index
|
153 |
|
|
*****
|
154 |
|
|
|
155 |
|
|
* Menu:
|
156 |
|
|
|
157 |
|
|
* _initialize_language: Language Support.
|
158 |
|
|
* a.out format: Symbol Handling.
|
159 |
|
|
* add_cmd: User Interface.
|
160 |
|
|
* add_com: User Interface.
|
161 |
|
|
* add_symtab_fns: Symbol Handling.
|
162 |
|
|
* adding a new host: Host Definition.
|
163 |
|
|
* adding a symbol-reading module: Symbol Handling.
|
164 |
|
|
* adding a target: Target Architecture Definition.
|
165 |
|
|
* adding debugging info reader: Symbol Handling.
|
166 |
|
|
* adding source language: Language Support.
|
167 |
|
|
* ADDITIONAL_OPTION_CASES: Target Architecture Definition.
|
168 |
|
|
* ADDITIONAL_OPTION_HANDLER: Target Architecture Definition.
|
169 |
|
|
* ADDITIONAL_OPTION_HELP: Target Architecture Definition.
|
170 |
|
|
* ADDITIONAL_OPTIONS: Target Architecture Definition.
|
171 |
|
|
* ADDR_BITS_REMOVE: Target Architecture Definition.
|
172 |
|
|
* address representation: Target Architecture Definition.
|
173 |
|
|
* address spaces, separate data and code: Target Architecture Definition.
|
174 |
|
|
* ADDRESS_TO_POINTER: Target Architecture Definition.
|
175 |
|
|
* algorithms: Algorithms.
|
176 |
|
|
* ALIGN_STACK_ON_STARTUP: Host Definition.
|
177 |
|
|
* allocate_symtab: Language Support.
|
178 |
|
|
* assumptions about targets: Coding.
|
179 |
|
|
* ATTACH_DETACH: Native Debugging.
|
180 |
|
|
* ATTR_NORETURN: Host Definition.
|
181 |
|
|
* BEFORE_MAIN_LOOP_HOOK: Target Architecture Definition.
|
182 |
|
|
* BELIEVE_PCC_PROMOTION: Target Architecture Definition.
|
183 |
|
|
* BELIEVE_PCC_PROMOTION_TYPE: Target Architecture Definition.
|
184 |
|
|
* BFD library: Support Libraries.
|
185 |
|
|
* BIG_BREAKPOINT: Target Architecture Definition.
|
186 |
|
|
* BIG_REMOTE_BREAKPOINT: Target Architecture Definition.
|
187 |
|
|
* BITS_BIG_ENDIAN: Target Architecture Definition.
|
188 |
|
|
* BPT_VECTOR: Target Architecture Definition.
|
189 |
|
|
* BREAKPOINT <1>: Target Architecture Definition.
|
190 |
|
|
* BREAKPOINT: Algorithms.
|
191 |
|
|
* BREAKPOINT_FROM_PC: Target Architecture Definition.
|
192 |
|
|
* breakpoints: Algorithms.
|
193 |
|
|
* bug-gdb mailing list: Getting Started.
|
194 |
|
|
* byte order: Host Definition.
|
195 |
|
|
* C data types: Coding.
|
196 |
|
|
* call stack frame: Algorithms.
|
197 |
|
|
* CALL_DUMMY: Target Architecture Definition.
|
198 |
|
|
* CALL_DUMMY_LOCATION: Target Architecture Definition.
|
199 |
|
|
* CALL_DUMMY_P: Target Architecture Definition.
|
200 |
|
|
* CALL_DUMMY_STACK_ADJUST: Target Architecture Definition.
|
201 |
|
|
* CALL_DUMMY_STACK_ADJUST_P: Target Architecture Definition.
|
202 |
|
|
* CALL_DUMMY_WORDS: Target Architecture Definition.
|
203 |
|
|
* call_function_by_hand: Target Architecture Definition.
|
204 |
|
|
* CANNOT_FETCH_REGISTER: Target Architecture Definition.
|
205 |
|
|
* CANNOT_STEP_HW_WATCHPOINTS: Algorithms.
|
206 |
|
|
* CANNOT_STORE_REGISTER: Target Architecture Definition.
|
207 |
|
|
* CC_HAS_LONG_LONG: Host Definition.
|
208 |
|
|
* CHILD_PREPARE_TO_STORE: Native Debugging.
|
209 |
|
|
* cleanups: Coding.
|
210 |
|
|
* CLEAR_DEFERRED_STORES: Target Architecture Definition.
|
211 |
|
|
* CLEAR_SOLIB: Native Debugging.
|
212 |
|
|
* CLI: User Interface.
|
213 |
|
|
* code pointers, word-addressed: Target Architecture Definition.
|
214 |
|
|
* coding standards: Coding.
|
215 |
|
|
* COERCE_FLOAT_TO_DOUBLE: Target Architecture Definition.
|
216 |
|
|
* COFF debugging info: Symbol Handling.
|
217 |
|
|
* COFF format: Symbol Handling.
|
218 |
|
|
* command implementation: Getting Started.
|
219 |
|
|
* command interpreter: User Interface.
|
220 |
|
|
* comment formatting: Coding.
|
221 |
|
|
* compiler warnings: Coding.
|
222 |
|
|
* converting between pointers and addresses: Target Architecture Definition.
|
223 |
|
|
* CPLUS_MARKERz: Target Architecture Definition.
|
224 |
|
|
* create_new_frame: Algorithms.
|
225 |
|
|
* CRLF_SOURCE_FILES: Host Definition.
|
226 |
|
|
* current_language: Language Support.
|
227 |
|
|
* D10V addresses: Target Architecture Definition.
|
228 |
|
|
* data output: User Interface.
|
229 |
|
|
* DBX_PARM_SYMBOL_CLASS: Target Architecture Definition.
|
230 |
|
|
* DEBUG_PTRACE: Native Debugging.
|
231 |
|
|
* debugging GDB: Debugging GDB.
|
232 |
|
|
* DECR_PC_AFTER_BREAK: Target Architecture Definition.
|
233 |
|
|
* DECR_PC_AFTER_HW_BREAK <1>: Target Architecture Definition.
|
234 |
|
|
* DECR_PC_AFTER_HW_BREAK: Algorithms.
|
235 |
|
|
* DEFAULT_PROMPT: Host Definition.
|
236 |
|
|
* deprecate_cmd: User Interface.
|
237 |
|
|
* deprecating commands: User Interface.
|
238 |
|
|
* design: Coding.
|
239 |
|
|
* DEV_TTY: Host Definition.
|
240 |
|
|
* DIRNAME_SEPARATOR: Coding.
|
241 |
|
|
* DISABLE_UNSETTABLE_BREAK: Target Architecture Definition.
|
242 |
|
|
* discard_cleanups: Coding.
|
243 |
|
|
* do_cleanups: Coding.
|
244 |
|
|
* DO_DEFERRED_STORES: Target Architecture Definition.
|
245 |
|
|
* DO_REGISTERS_INFO: Target Architecture Definition.
|
246 |
|
|
* DOS text files: Host Definition.
|
247 |
|
|
* DWARF 1 debugging info: Symbol Handling.
|
248 |
|
|
* DWARF 2 debugging info: Symbol Handling.
|
249 |
|
|
* DWARF2_REG_TO_REGNUM: Target Architecture Definition.
|
250 |
|
|
* DWARF_REG_TO_REGNUM: Target Architecture Definition.
|
251 |
|
|
* ECOFF debugging info: Symbol Handling.
|
252 |
|
|
* ECOFF format: Symbol Handling.
|
253 |
|
|
* ECOFF_REG_TO_REGNUM: Target Architecture Definition.
|
254 |
|
|
* ELF format: Symbol Handling.
|
255 |
|
|
* END_OF_TEXT_DEFAULT: Target Architecture Definition.
|
256 |
|
|
* evaluate_subexp: Language Support.
|
257 |
|
|
* expression evaluation routines: Language Support.
|
258 |
|
|
* expression parser: Language Support.
|
259 |
|
|
* extract_address: Target Architecture Definition.
|
260 |
|
|
* EXTRACT_RETURN_VALUE: Target Architecture Definition.
|
261 |
|
|
* EXTRACT_STRUCT_VALUE_ADDRESS: Target Architecture Definition.
|
262 |
|
|
* EXTRACT_STRUCT_VALUE_ADDRESS_P: Target Architecture Definition.
|
263 |
|
|
* extract_typed_address: Target Architecture Definition.
|
264 |
|
|
* FCLOSE_PROVIDED: Host Definition.
|
265 |
|
|
* fetch_core_registers: Native Debugging.
|
266 |
|
|
* FETCH_INFERIOR_REGISTERS: Native Debugging.
|
267 |
|
|
* field output functions: User Interface.
|
268 |
|
|
* file names, portability: Coding.
|
269 |
|
|
* FILENAME_CMP: Coding.
|
270 |
|
|
* FILES_INFO_HOOK: Native Debugging.
|
271 |
|
|
* find_pc_function: Symbol Handling.
|
272 |
|
|
* find_pc_line: Symbol Handling.
|
273 |
|
|
* find_sym_fns: Symbol Handling.
|
274 |
|
|
* finding a symbol: Symbol Handling.
|
275 |
|
|
* FLOAT_INFO: Target Architecture Definition.
|
276 |
|
|
* FOPEN_RB: Host Definition.
|
277 |
|
|
* FP0_REGNUM: Native Debugging.
|
278 |
|
|
* FP_REGNUM: Target Architecture Definition.
|
279 |
|
|
* frame: Algorithms.
|
280 |
|
|
* frame chain: Algorithms.
|
281 |
|
|
* frame pointer register: Algorithms.
|
282 |
|
|
* FRAME_ARGS_ADDRESS_CORRECT: Target Architecture Definition.
|
283 |
|
|
* FRAME_CHAIN: Target Architecture Definition.
|
284 |
|
|
* FRAME_CHAIN_COMBINE: Target Architecture Definition.
|
285 |
|
|
* FRAME_CHAIN_VALID: Target Architecture Definition.
|
286 |
|
|
* FRAME_FP: Algorithms.
|
287 |
|
|
* FRAME_INIT_SAVED_REGS: Target Architecture Definition.
|
288 |
|
|
* FRAME_NUM_ARGS: Target Architecture Definition.
|
289 |
|
|
* FRAME_SAVED_PC: Target Architecture Definition.
|
290 |
|
|
* FRAMELESS_FUNCTION_INVOCATION: Target Architecture Definition.
|
291 |
|
|
* full symbol table: Symbol Handling.
|
292 |
|
|
* function prototypes: Coding.
|
293 |
|
|
* function usage: Coding.
|
294 |
|
|
* FUNCTION_EPILOGUE_SIZE: Target Architecture Definition.
|
295 |
|
|
* FUNCTION_START_OFFSET: Target Architecture Definition.
|
296 |
|
|
* fundamental types: Symbol Handling.
|
297 |
|
|
* GCC2_COMPILED_FLAG_SYMBOL: Target Architecture Definition.
|
298 |
|
|
* GCC_COMPILED_FLAG_SYMBOL: Target Architecture Definition.
|
299 |
|
|
* GDB_MULTI_ARCH: Target Architecture Definition.
|
300 |
|
|
* GDB_TARGET_IS_HPPA: Target Architecture Definition.
|
301 |
|
|
* GDBINIT_FILENAME: Host Definition.
|
302 |
|
|
* generic dummy frames: Host Definition.
|
303 |
|
|
* generic host support: Host Definition.
|
304 |
|
|
* GET_LONGJMP_TARGET <1>: Native Debugging.
|
305 |
|
|
* GET_LONGJMP_TARGET <2>: Target Architecture Definition.
|
306 |
|
|
* GET_LONGJMP_TARGET: Algorithms.
|
307 |
|
|
* get_saved_register: Target Architecture Definition.
|
308 |
|
|
* GET_SAVED_REGISTER: Target Architecture Definition.
|
309 |
|
|
* GETENV_PROVIDED: Host Definition.
|
310 |
|
|
* hardware breakpoints: Algorithms.
|
311 |
|
|
* hardware watchpoints: Algorithms.
|
312 |
|
|
* HAVE_CONTINUABLE_WATCHPOINT: Algorithms.
|
313 |
|
|
* HAVE_DOS_BASED_FILE_SYSTEM: Coding.
|
314 |
|
|
* HAVE_LONG_DOUBLE: Host Definition.
|
315 |
|
|
* HAVE_MMAP: Host Definition.
|
316 |
|
|
* HAVE_NONSTEPPABLE_WATCHPOINT: Algorithms.
|
317 |
|
|
* HAVE_REGISTER_WINDOWS: Target Architecture Definition.
|
318 |
|
|
* HAVE_SIGSETMASK: Host Definition.
|
319 |
|
|
* HAVE_STEPPABLE_WATCHPOINT: Algorithms.
|
320 |
|
|
* HAVE_TERMIO: Host Definition.
|
321 |
|
|
* host: Overall Structure.
|
322 |
|
|
* host, adding: Host Definition.
|
323 |
|
|
* HOST_BYTE_ORDER: Host Definition.
|
324 |
|
|
* i386_cleanup_dregs: Algorithms.
|
325 |
|
|
* I386_DR_LOW_GET_STATUS: Algorithms.
|
326 |
|
|
* I386_DR_LOW_RESET_ADDR: Algorithms.
|
327 |
|
|
* I386_DR_LOW_SET_ADDR: Algorithms.
|
328 |
|
|
* I386_DR_LOW_SET_CONTROL: Algorithms.
|
329 |
|
|
* i386_insert_hw_breakpoint: Algorithms.
|
330 |
|
|
* i386_insert_watchpoint: Algorithms.
|
331 |
|
|
* i386_region_ok_for_watchpoint: Algorithms.
|
332 |
|
|
* i386_remove_hw_breakpoint: Algorithms.
|
333 |
|
|
* i386_remove_watchpoint: Algorithms.
|
334 |
|
|
* i386_stopped_by_hwbp: Algorithms.
|
335 |
|
|
* i386_stopped_data_address: Algorithms.
|
336 |
|
|
* I386_USE_GENERIC_WATCHPOINTS: Algorithms.
|
337 |
|
|
* IBM6000_TARGET: Target Architecture Definition.
|
338 |
|
|
* IEEE_FLOAT: Target Architecture Definition.
|
339 |
|
|
* IN_SIGTRAMP: Target Architecture Definition.
|
340 |
|
|
* IN_SOLIB_CALL_TRAMPOLINE: Target Architecture Definition.
|
341 |
|
|
* IN_SOLIB_DYNSYM_RESOLVE_CODE: Target Architecture Definition.
|
342 |
|
|
* IN_SOLIB_RETURN_TRAMPOLINE: Target Architecture Definition.
|
343 |
|
|
* INIT_EXTRA_FRAME_INFO: Target Architecture Definition.
|
344 |
|
|
* INIT_FRAME_PC: Target Architecture Definition.
|
345 |
|
|
* INNER_THAN: Target Architecture Definition.
|
346 |
|
|
* insert or remove hardware breakpoint: Algorithms.
|
347 |
|
|
* INT_MAX: Host Definition.
|
348 |
|
|
* INT_MIN: Host Definition.
|
349 |
|
|
* IS_ABSOLUTE_PATH: Coding.
|
350 |
|
|
* IS_DIR_SEPARATOR: Coding.
|
351 |
|
|
* IS_TRAPPED_INTERNALVAR: Target Architecture Definition.
|
352 |
|
|
* ISATTY: Host Definition.
|
353 |
|
|
* item output functions: User Interface.
|
354 |
|
|
* KERNEL_U_ADDR: Native Debugging.
|
355 |
|
|
* KERNEL_U_ADDR_BSD: Native Debugging.
|
356 |
|
|
* KERNEL_U_ADDR_HPUX: Native Debugging.
|
357 |
|
|
* L_SET: Host Definition.
|
358 |
|
|
* language parser: Language Support.
|
359 |
|
|
* language support: Language Support.
|
360 |
|
|
* legal papers for code contributions: Debugging GDB.
|
361 |
|
|
* length_of_subexp: Language Support.
|
362 |
|
|
* libgdb: User Interface.
|
363 |
|
|
* line wrap in output: Coding.
|
364 |
|
|
* lint: Host Definition.
|
365 |
|
|
* list output functions: User Interface.
|
366 |
|
|
* LITTLE_BREAKPOINT: Target Architecture Definition.
|
367 |
|
|
* LITTLE_REMOTE_BREAKPOINT: Target Architecture Definition.
|
368 |
|
|
* long long data type: Host Definition.
|
369 |
|
|
* LONG_MAX: Host Definition.
|
370 |
|
|
* LONGEST: Host Definition.
|
371 |
|
|
* longjmp debugging: Algorithms.
|
372 |
|
|
* lookup_symbol: Symbol Handling.
|
373 |
|
|
* LSEEK_NOT_LINEAR: Host Definition.
|
374 |
|
|
* make_cleanup: Coding.
|
375 |
|
|
* making a distribution tarball: Porting GDB.
|
376 |
|
|
* MALLOC_INCOMPATIBLE: Host Definition.
|
377 |
|
|
* MEM_FNS_DECLARED: Host Definition.
|
378 |
|
|
* MEMORY_INSERT_BREAKPOINT: Target Architecture Definition.
|
379 |
|
|
* MEMORY_REMOVE_BREAKPOINT: Target Architecture Definition.
|
380 |
|
|
* minimal symbol table: Symbol Handling.
|
381 |
|
|
* minsymtabs: Symbol Handling.
|
382 |
|
|
* mmalloc: Host Definition.
|
383 |
|
|
* mmap: Host Definition.
|
384 |
|
|
* MMAP_BASE_ADDRESS: Host Definition.
|
385 |
|
|
* MMAP_INCREMENT: Host Definition.
|
386 |
|
|
* mmcheck: Host Definition.
|
387 |
|
|
* MMCHECK_FORCE: Host Definition.
|
388 |
|
|
* NATDEPFILES: Native Debugging.
|
389 |
|
|
* native conditionals: Native Debugging.
|
390 |
|
|
* native core files: Native Debugging.
|
391 |
|
|
* native debugging: Native Debugging.
|
392 |
|
|
* NEED_POSIX_SETPGID: Host Definition.
|
393 |
|
|
* NEED_TEXT_START_END: Target Architecture Definition.
|
394 |
|
|
* nesting level in ui_out functions: User Interface.
|
395 |
|
|
* Netware Loadable Module format: Symbol Handling.
|
396 |
|
|
* NNPC_REGNUM: Target Architecture Definition.
|
397 |
|
|
* NO_HIF_SUPPORT: Target Architecture Definition.
|
398 |
|
|
* NO_MMCHECK: Host Definition.
|
399 |
|
|
* NO_SIGINTERRUPT: Host Definition.
|
400 |
|
|
* NO_STD_REGS: Host Definition.
|
401 |
|
|
* NO_SYS_FILE: Host Definition.
|
402 |
|
|
* NORETURN: Host Definition.
|
403 |
|
|
* NPC_REGNUM: Target Architecture Definition.
|
404 |
|
|
* object file formats: Symbol Handling.
|
405 |
|
|
* obsolete code: Debugging GDB.
|
406 |
|
|
* ONE_PROCESS_WRITETEXT: Native Debugging.
|
407 |
|
|
* op_print_tab: Language Support.
|
408 |
|
|
* opcodes library: Support Libraries.
|
409 |
|
|
* OS9K_VARIABLES_INSIDE_BLOCK: Target Architecture Definition.
|
410 |
|
|
* PARM_BOUNDARY: Target Architecture Definition.
|
411 |
|
|
* parse_exp_1: Language Support.
|
412 |
|
|
* partial symbol table: Symbol Handling.
|
413 |
|
|
* PC_IN_CALL_DUMMY: Target Architecture Definition.
|
414 |
|
|
* PC_LOAD_SEGMENT: Target Architecture Definition.
|
415 |
|
|
* PC_REGNUM: Target Architecture Definition.
|
416 |
|
|
* PCC_SOL_BROKEN: Target Architecture Definition.
|
417 |
|
|
* PE-COFF format: Symbol Handling.
|
418 |
|
|
* pointer representation: Target Architecture Definition.
|
419 |
|
|
* POINTER_TO_ADDRESS: Target Architecture Definition.
|
420 |
|
|
* POP_FRAME: Target Architecture Definition.
|
421 |
|
|
* portability: Coding.
|
422 |
|
|
* portable file name handling: Coding.
|
423 |
|
|
* porting to new machines: Porting GDB.
|
424 |
|
|
* prefixify_subexp: Language Support.
|
425 |
|
|
* PREPARE_TO_PROCEED: Native Debugging.
|
426 |
|
|
* preparing a release: Porting GDB.
|
427 |
|
|
* PRINT_REGISTER_HOOK: Target Architecture Definition.
|
428 |
|
|
* print_subexp: Language Support.
|
429 |
|
|
* PRINT_TYPELESS_INTEGER: Target Architecture Definition.
|
430 |
|
|
* PRINTF_HAS_LONG_DOUBLE: Host Definition.
|
431 |
|
|
* PRINTF_HAS_LONG_LONG: Host Definition.
|
432 |
|
|
* PROC_NAME_FMT: Native Debugging.
|
433 |
|
|
* PROCESS_LINENUMBER_HOOK: Target Architecture Definition.
|
434 |
|
|
* program counter: Algorithms.
|
435 |
|
|
* PROLOGUE_FIRSTLINE_OVERLAP: Target Architecture Definition.
|
436 |
|
|
* promotion to double: Target Architecture Definition.
|
437 |
|
|
* prompt: Host Definition.
|
438 |
|
|
* PS_REGNUM: Target Architecture Definition.
|
439 |
|
|
* psymtabs: Symbol Handling.
|
440 |
|
|
* PTRACE_ARG3_TYPE: Native Debugging.
|
441 |
|
|
* PTRACE_FP_BUG: Native Debugging.
|
442 |
|
|
* PUSH_ARGUMENTS: Target Architecture Definition.
|
443 |
|
|
* PUSH_DUMMY_FRAME: Target Architecture Definition.
|
444 |
|
|
* R_OK: Host Definition.
|
445 |
|
|
* raw representation: Target Architecture Definition.
|
446 |
|
|
* read_fp: Target Architecture Definition.
|
447 |
|
|
* read_pc: Target Architecture Definition.
|
448 |
|
|
* read_sp: Target Architecture Definition.
|
449 |
|
|
* reading of symbols: Symbol Handling.
|
450 |
|
|
* REG_STRUCT_HAS_ADDR: Target Architecture Definition.
|
451 |
|
|
* register data formats, converting: Target Architecture Definition.
|
452 |
|
|
* REGISTER_BYTES: Target Architecture Definition.
|
453 |
|
|
* REGISTER_CONVERT_TO_RAW: Target Architecture Definition.
|
454 |
|
|
* REGISTER_CONVERT_TO_VIRTUAL: Target Architecture Definition.
|
455 |
|
|
* REGISTER_CONVERTIBLE: Target Architecture Definition.
|
456 |
|
|
* REGISTER_IN_WINDOW_P: Target Architecture Definition.
|
457 |
|
|
* REGISTER_NAME: Target Architecture Definition.
|
458 |
|
|
* REGISTER_NAMES: Target Architecture Definition.
|
459 |
|
|
* REGISTER_RAW_SIZE: Target Architecture Definition.
|
460 |
|
|
* REGISTER_U_ADDR: Native Debugging.
|
461 |
|
|
* REGISTER_VIRTUAL_SIZE: Target Architecture Definition.
|
462 |
|
|
* REGISTER_VIRTUAL_TYPE: Target Architecture Definition.
|
463 |
|
|
* regular expressions library: Support Libraries.
|
464 |
|
|
* remote debugging support: Host Definition.
|
465 |
|
|
* REMOTE_BPT_VECTOR: Target Architecture Definition.
|
466 |
|
|
* REMOTE_BREAKPOINT: Target Architecture Definition.
|
467 |
|
|
* representations, raw and virtual: Target Architecture Definition.
|
468 |
|
|
* requirements for GDB: Requirements.
|
469 |
|
|
* return_command: Target Architecture Definition.
|
470 |
|
|
* RETURN_VALUE_ON_STACK: Target Architecture Definition.
|
471 |
|
|
* returning structures by value: Target Architecture Definition.
|
472 |
|
|
* running the test suite: Testsuite.
|
473 |
|
|
* SAVE_DUMMY_FRAME_TOS: Target Architecture Definition.
|
474 |
|
|
* SCANF_HAS_LONG_DOUBLE: Host Definition.
|
475 |
|
|
* SDB_REG_TO_REGNUM: Target Architecture Definition.
|
476 |
|
|
* secondary symbol file: Symbol Handling.
|
477 |
|
|
* SEEK_CUR: Host Definition.
|
478 |
|
|
* SEEK_SET: Host Definition.
|
479 |
|
|
* separate data and code address spaces: Target Architecture Definition.
|
480 |
|
|
* serial line support: Host Definition.
|
481 |
|
|
* set_gdbarch_coerce_float_to_double: Target Architecture Definition.
|
482 |
|
|
* setpgid: Host Definition.
|
483 |
|
|
* SHELL_COMMAND_CONCAT: Native Debugging.
|
484 |
|
|
* SHELL_FILE: Native Debugging.
|
485 |
|
|
* SHIFT_INST_REGS: Target Architecture Definition.
|
486 |
|
|
* siginterrupt: Host Definition.
|
487 |
|
|
* sigsetmask: Host Definition.
|
488 |
|
|
* SIGTRAMP_END: Target Architecture Definition.
|
489 |
|
|
* SIGTRAMP_START: Target Architecture Definition.
|
490 |
|
|
* SIGWINCH_HANDLER: Host Definition.
|
491 |
|
|
* SIGWINCH_HANDLER_BODY: Host Definition.
|
492 |
|
|
* SIZEOF_CALL_DUMMY_WORDS: Target Architecture Definition.
|
493 |
|
|
* SKIP_PERMANENT_BREAKPOINT: Target Architecture Definition.
|
494 |
|
|
* SKIP_PROLOGUE: Target Architecture Definition.
|
495 |
|
|
* SKIP_PROLOGUE_FRAMELESS_P: Target Architecture Definition.
|
496 |
|
|
* SKIP_SOLIB_RESOLVER: Target Architecture Definition.
|
497 |
|
|
* SKIP_TRAMPOLINE_CODE: Target Architecture Definition.
|
498 |
|
|
* SLASH_STRING: Coding.
|
499 |
|
|
* software breakpoints: Algorithms.
|
500 |
|
|
* software watchpoints: Algorithms.
|
501 |
|
|
* SOFTWARE_SINGLE_STEP: Target Architecture Definition.
|
502 |
|
|
* SOFTWARE_SINGLE_STEP_P: Target Architecture Definition.
|
503 |
|
|
* SOFUN_ADDRESS_MAYBE_MISSING: Target Architecture Definition.
|
504 |
|
|
* SOLIB_ADD: Native Debugging.
|
505 |
|
|
* SOLIB_CREATE_INFERIOR_HOOK: Native Debugging.
|
506 |
|
|
* SOM debugging info: Symbol Handling.
|
507 |
|
|
* SOM format: Symbol Handling.
|
508 |
|
|
* source code formatting: Coding.
|
509 |
|
|
* SP_REGNUM: Target Architecture Definition.
|
510 |
|
|
* spaces, separate data and code address: Target Architecture Definition.
|
511 |
|
|
* STAB_REG_TO_REGNUM: Target Architecture Definition.
|
512 |
|
|
* stabs debugging info: Symbol Handling.
|
513 |
|
|
* stack alignment: Host Definition.
|
514 |
|
|
* STACK_ALIGN: Target Architecture Definition.
|
515 |
|
|
* standard_coerce_float_to_double: Target Architecture Definition.
|
516 |
|
|
* START_INFERIOR_TRAPS_EXPECTED: Native Debugging.
|
517 |
|
|
* STEP_SKIPS_DELAY: Target Architecture Definition.
|
518 |
|
|
* STOP_SIGNAL: Host Definition.
|
519 |
|
|
* STOPPED_BY_WATCHPOINT: Algorithms.
|
520 |
|
|
* store_address: Target Architecture Definition.
|
521 |
|
|
* STORE_RETURN_VALUE: Target Architecture Definition.
|
522 |
|
|
* store_typed_address: Target Architecture Definition.
|
523 |
|
|
* struct value, converting register contents to: Target Architecture Definition.
|
524 |
|
|
* structures, returning by value: Target Architecture Definition.
|
525 |
|
|
* submitting patches: Debugging GDB.
|
526 |
|
|
* SUN_FIXED_LBRAC_BUG: Target Architecture Definition.
|
527 |
|
|
* SVR4_SHARED_LIBS: Native Debugging.
|
528 |
|
|
* sym_fns structure: Symbol Handling.
|
529 |
|
|
* symbol files: Symbol Handling.
|
530 |
|
|
* symbol lookup: Symbol Handling.
|
531 |
|
|
* symbol reading: Symbol Handling.
|
532 |
|
|
* SYMBOL_RELOADING_DEFAULT: Target Architecture Definition.
|
533 |
|
|
* SYMBOLS_CAN_START_WITH_DOLLAR: Target Architecture Definition.
|
534 |
|
|
* symtabs: Symbol Handling.
|
535 |
|
|
* system dependencies: Coding.
|
536 |
|
|
* table output functions: User Interface.
|
537 |
|
|
* target: Overall Structure.
|
538 |
|
|
* target architecture definition: Target Architecture Definition.
|
539 |
|
|
* target vector: Target Vector Definition.
|
540 |
|
|
* TARGET_BYTE_ORDER_DEFAULT: Target Architecture Definition.
|
541 |
|
|
* TARGET_BYTE_ORDER_SELECTABLE_P: Target Architecture Definition.
|
542 |
|
|
* TARGET_CAN_USE_HARDWARE_WATCHPOINT: Algorithms.
|
543 |
|
|
* TARGET_CHAR_BIT: Target Architecture Definition.
|
544 |
|
|
* TARGET_COMPLEX_BIT: Target Architecture Definition.
|
545 |
|
|
* TARGET_DISABLE_HW_WATCHPOINTS: Algorithms.
|
546 |
|
|
* TARGET_DOUBLE_BIT: Target Architecture Definition.
|
547 |
|
|
* TARGET_DOUBLE_COMPLEX_BIT: Target Architecture Definition.
|
548 |
|
|
* TARGET_ENABLE_HW_WATCHPOINTS: Algorithms.
|
549 |
|
|
* TARGET_FLOAT_BIT: Target Architecture Definition.
|
550 |
|
|
* TARGET_HAS_HARDWARE_WATCHPOINTS: Algorithms.
|
551 |
|
|
* target_insert_hw_breakpoint: Algorithms.
|
552 |
|
|
* target_insert_watchpoint: Algorithms.
|
553 |
|
|
* TARGET_INT_BIT: Target Architecture Definition.
|
554 |
|
|
* TARGET_LONG_BIT: Target Architecture Definition.
|
555 |
|
|
* TARGET_LONG_DOUBLE_BIT: Target Architecture Definition.
|
556 |
|
|
* TARGET_LONG_LONG_BIT: Target Architecture Definition.
|
557 |
|
|
* TARGET_PTR_BIT: Target Architecture Definition.
|
558 |
|
|
* TARGET_RANGE_PROFITABLE_FOR_HW_WATCHPOINT: Algorithms.
|
559 |
|
|
* TARGET_READ_FP: Target Architecture Definition.
|
560 |
|
|
* TARGET_READ_PC: Target Architecture Definition.
|
561 |
|
|
* TARGET_READ_SP: Target Architecture Definition.
|
562 |
|
|
* TARGET_REGION_OK_FOR_HW_WATCHPOINT: Algorithms.
|
563 |
|
|
* TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT: Algorithms.
|
564 |
|
|
* target_remove_hw_breakpoint: Algorithms.
|
565 |
|
|
* target_remove_watchpoint: Algorithms.
|
566 |
|
|
* TARGET_SHORT_BIT: Target Architecture Definition.
|
567 |
|
|
* target_stopped_data_address: Algorithms.
|
568 |
|
|
* TARGET_VIRTUAL_FRAME_POINTER: Target Architecture Definition.
|
569 |
|
|
* TARGET_WRITE_FP: Target Architecture Definition.
|
570 |
|
|
* TARGET_WRITE_PC: Target Architecture Definition.
|
571 |
|
|
* TARGET_WRITE_SP: Target Architecture Definition.
|
572 |
|
|
* TCP remote support: Host Definition.
|
573 |
|
|
* TDEPFILES: Target Architecture Definition.
|
574 |
|
|
* terminal device: Host Definition.
|
575 |
|
|
* test suite: Testsuite.
|
576 |
|
|
* test suite organization: Testsuite.
|
577 |
|
|
* trimming language-dependent code: Language Support.
|
578 |
|
|
* type: Target Architecture Definition.
|
579 |
|
|
* type codes: Symbol Handling.
|
580 |
|
|
* types: Coding.
|
581 |
|
|
* U_REGS_OFFSET: Native Debugging.
|
582 |
|
|
* ui_out functions: User Interface.
|
583 |
|
|
* ui_out functions, usage examples: User Interface.
|
584 |
|
|
* ui_out_field_core_addr: User Interface.
|
585 |
|
|
* ui_out_field_fmt: User Interface.
|
586 |
|
|
* ui_out_field_int: User Interface.
|
587 |
|
|
* ui_out_field_skip: User Interface.
|
588 |
|
|
* ui_out_field_stream: User Interface.
|
589 |
|
|
* ui_out_field_string: User Interface.
|
590 |
|
|
* ui_out_flush: User Interface.
|
591 |
|
|
* ui_out_list_begin: User Interface.
|
592 |
|
|
* ui_out_list_end: User Interface.
|
593 |
|
|
* ui_out_message: User Interface.
|
594 |
|
|
* ui_out_spaces: User Interface.
|
595 |
|
|
* ui_out_stream_delete: User Interface.
|
596 |
|
|
* ui_out_table_begin: User Interface.
|
597 |
|
|
* ui_out_table_body: User Interface.
|
598 |
|
|
* ui_out_table_end: User Interface.
|
599 |
|
|
* ui_out_table_header: User Interface.
|
600 |
|
|
* ui_out_text: User Interface.
|
601 |
|
|
* ui_out_wrap_hint: User Interface.
|
602 |
|
|
* ui_stream: User Interface.
|
603 |
|
|
* UINT_MAX: Host Definition.
|
604 |
|
|
* ULONG_MAX: Host Definition.
|
605 |
|
|
* USE_GENERIC_DUMMY_FRAMES: Host Definition.
|
606 |
|
|
* USE_MMALLOC: Host Definition.
|
607 |
|
|
* USE_O_NOCTTY: Host Definition.
|
608 |
|
|
* USE_PROC_FS: Native Debugging.
|
609 |
|
|
* USE_STRUCT_CONVENTION: Target Architecture Definition.
|
610 |
|
|
* USG: Host Definition.
|
611 |
|
|
* using ui_out functions: User Interface.
|
612 |
|
|
* value_as_pointer: Target Architecture Definition.
|
613 |
|
|
* value_from_pointer: Target Architecture Definition.
|
614 |
|
|
* VARIABLES_INSIDE_BLOCK: Target Architecture Definition.
|
615 |
|
|
* virtual representation: Target Architecture Definition.
|
616 |
|
|
* volatile: Host Definition.
|
617 |
|
|
* watchpoints: Algorithms.
|
618 |
|
|
* watchpoints, on x86: Algorithms.
|
619 |
|
|
* word-addressed machines: Target Architecture Definition.
|
620 |
|
|
* wrap_here: Coding.
|
621 |
|
|
* write_fp: Target Architecture Definition.
|
622 |
|
|
* write_pc: Target Architecture Definition.
|
623 |
|
|
* write_sp: Target Architecture Definition.
|
624 |
|
|
* writing tests: Testsuite.
|
625 |
|
|
* x86 debug registers: Algorithms.
|
626 |
|
|
* XCOFF format: Symbol Handling.
|
627 |
|
|
* XDEPFILES: Host Definition.
|
628 |
|
|
|
629 |
|
|
|