~ubuntu-branches/debian/sid/gdb/sid

« back to all changes in this revision

Viewing changes to gdb/doc/gdbint.info-2

  • Committer: Package Import Robot
  • Author(s): David Prévot
  • Date: 2013-01-27 12:18:15 UTC
  • mfrom: (1.4.11)
  • Revision ID: package-import@ubuntu.com-20130127121815-ho8alsor19b6vp9e
Tags: 7.4.1+dfsg-0.1
* Non-maintainer upload.
* Fix debian/sanitize-gdb.sh to use bash.
* Run that script to get the expected dfsg-compliant tarball.
  (Closes: #698074)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
This is gdbint.info, produced by makeinfo version 4.8 from
2
 
./gdbint.texinfo.
3
 
 
4
 
INFO-DIR-SECTION Software development
5
 
START-INFO-DIR-ENTRY
6
 
* Gdb-Internals: (gdbint).      The GNU debugger's internals.
7
 
END-INFO-DIR-ENTRY
8
 
 
9
 
   Copyright (C) 1990-1994, 1996, 1998-2006, 2008-2012 Free Software
10
 
Foundation, Inc.  Contributed by Cygnus Solutions.  Written by John
11
 
Gilmore.  Second Edition by Stan Shebs.
12
 
 
13
 
   Permission is granted to copy, distribute and/or modify this document
14
 
under the terms of the GNU Free Documentation License, Version 1.3 or
15
 
any later version published by the Free Software Foundation; with no
16
 
Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
17
 
Texts.  A copy of the license is included in the section entitled "GNU
18
 
Free Documentation License".
19
 
 
20
 
   This file documents the internals of the GNU debugger GDB.
21
 
 
22
 
   Copyright (C) 1990-1994, 1996, 1998-2006, 2008-2012 Free Software
23
 
Foundation, Inc.  Contributed by Cygnus Solutions.  Written by John
24
 
Gilmore.  Second Edition by Stan Shebs.
25
 
 
26
 
   Permission is granted to copy, distribute and/or modify this document
27
 
under the terms of the GNU Free Documentation License, Version 1.3 or
28
 
any later version published by the Free Software Foundation; with no
29
 
Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
30
 
Texts.  A copy of the license is included in the section entitled "GNU
31
 
Free Documentation License".
32
 
 
33
 
 
34
 
File: gdbint.info,  Node: GDB Observers,  Next: GNU Free Documentation License,  Prev: Hints,  Up: Top
35
 
 
36
 
Appendix A GDB Currently available observers
37
 
********************************************
38
 
 
39
 
A.1 Implementation rationale
40
 
============================
41
 
 
42
 
An "observer" is an entity which is interested in being notified when
43
 
GDB reaches certain states, or certain events occur in GDB.  The entity
44
 
being observed is called the "subject".  To receive notifications, the
45
 
observer attaches a callback to the subject.  One subject can have
46
 
several observers.
47
 
 
48
 
   `observer.c' implements an internal generic low-level event
49
 
notification mechanism.  This generic event notification mechanism is
50
 
then re-used to implement the exported high-level notification
51
 
management routines for all possible notifications.
52
 
 
53
 
   The current implementation of the generic observer provides support
54
 
for contextual data.  This contextual data is given to the subject when
55
 
attaching the callback.  In return, the subject will provide this
56
 
contextual data back to the observer as a parameter of the callback.
57
 
 
58
 
   Note that the current support for the contextual data is only
59
 
partial, as it lacks a mechanism that would deallocate this data when
60
 
the callback is detached.  This is not a problem so far, as this
61
 
contextual data is only used internally to hold a function pointer.
62
 
Later on, if a certain observer needs to provide support for user-level
63
 
contextual data, then the generic notification mechanism will need to be
64
 
enhanced to allow the observer to provide a routine to deallocate the
65
 
data when attaching the callback.
66
 
 
67
 
   The observer implementation is also currently not reentrant.  In
68
 
particular, it is therefore not possible to call the attach or detach
69
 
routines during a notification.
70
 
 
71
 
A.2 Debugging
72
 
=============
73
 
 
74
 
Observer notifications can be traced using the command `set debug
75
 
observer 1' (*note Optional messages about internal happenings:
76
 
(gdb)Debugging Output.).
77
 
 
78
 
A.3 `normal_stop' Notifications
79
 
===============================
80
 
 
81
 
GDB notifies all `normal_stop' observers when the inferior execution
82
 
has just stopped, the associated messages and annotations have been
83
 
printed, and the control is about to be returned to the user.
84
 
 
85
 
   Note that the `normal_stop' notification is not emitted when the
86
 
execution stops due to a breakpoint, and this breakpoint has a
87
 
condition that is not met.  If the breakpoint has any associated
88
 
commands list, the commands are executed after the notification is
89
 
emitted.
90
 
 
91
 
   The following interfaces are available to manage observers:
92
 
 
93
 
 -- Function: extern struct observer *observer_attach_EVENT
94
 
          (observer_EVENT_ftype *F)
95
 
     Using the function F, create an observer that is notified when
96
 
     ever EVENT occurs, return the observer.
97
 
 
98
 
 -- Function: extern void observer_detach_EVENT (struct observer
99
 
          *OBSERVER);
100
 
     Remove OBSERVER from the list of observers to be notified when
101
 
     EVENT occurs.
102
 
 
103
 
 -- Function: extern void observer_notify_EVENT (void);
104
 
     Send a notification to all EVENT observers.
105
 
 
106
 
   The following observable events are defined:
107
 
 
108
 
 -- Function: void normal_stop (struct bpstats *BS, int PRINT_FRAME)
109
 
     The inferior has stopped for real.  The  BS argument describes the
110
 
     breakpoints were are stopped at, if any.  Second argument
111
 
     PRINT_FRAME non-zero means display the location where the inferior
112
 
     has stopped.
113
 
 
114
 
 -- Function: void target_changed (struct target_ops *TARGET)
115
 
     The target's register contents have changed.
116
 
 
117
 
 -- Function: void executable_changed (void)
118
 
     The executable being debugged by GDB has changed: The user decided
119
 
     to debug a different program, or the program he was debugging has
120
 
     been modified since being loaded by the debugger (by being
121
 
     recompiled, for instance).
122
 
 
123
 
 -- Function: void inferior_created (struct target_ops *OBJFILE, int
124
 
          FROM_TTY)
125
 
     GDB has just connected to an inferior.  For `run', GDB calls this
126
 
     observer while the inferior is still stopped at the entry-point
127
 
     instruction.  For `attach' and `core', GDB calls this observer
128
 
     immediately after connecting to the inferior, and before any
129
 
     information on the inferior has been printed.
130
 
 
131
 
 -- Function: void solib_loaded (struct so_list *SOLIB)
132
 
     The shared library specified by SOLIB has been loaded.  Note that
133
 
     when GDB calls this observer, the library's symbols probably
134
 
     haven't been loaded yet.
135
 
 
136
 
 -- Function: void solib_unloaded (struct so_list *SOLIB)
137
 
     The shared library specified by SOLIB has been unloaded.  Note
138
 
     that when GDB calls this observer, the library's symbols have not
139
 
     been unloaded yet, and thus are still available.
140
 
 
141
 
 -- Function: void new_objfile (struct objfile *OBJFILE)
142
 
     The symbol file specified by OBJFILE has been loaded.  Called with
143
 
     OBJFILE equal to `NULL' to indicate previously loaded symbol table
144
 
     data has now been invalidated.
145
 
 
146
 
 -- Function: void new_thread (struct thread_info *T)
147
 
     The thread specified by T has been created.
148
 
 
149
 
 -- Function: void thread_exit (struct thread_info *T, int SILENT)
150
 
     The thread specified by T has exited.  The SILENT argument
151
 
     indicates that GDB is removing the thread from its tables without
152
 
     wanting to notify the user about it.
153
 
 
154
 
 -- Function: void thread_stop_requested (ptid_t PTID)
155
 
     An explicit stop request was issued to PTID.  If PTID equals
156
 
     MINUS_ONE_PTID, the request applied to all threads.  If
157
 
     `ptid_is_pid(ptid)' returns true, the request applied to all
158
 
     threads of the process pointed at by PTID.  Otherwise, the request
159
 
     applied to the single thread pointed at by PTID.
160
 
 
161
 
 -- Function: void target_resumed (ptid_t PTID)
162
 
     The target was resumed.  The PTID parameter specifies which thread
163
 
     was resume, and may be RESUME_ALL if all threads are resumed.
164
 
 
165
 
 -- Function: void about_to_proceed (void)
166
 
     The target is about to be proceeded.
167
 
 
168
 
 -- Function: void breakpoint_created (struct breakpoint *B)
169
 
     A new breakpoint B has been created.
170
 
 
171
 
 -- Function: void breakpoint_deleted (struct breakpoint *B)
172
 
     A breakpoint has been destroyed.  The argument B is the pointer to
173
 
     the destroyed breakpoint.
174
 
 
175
 
 -- Function: void breakpoint_modified (struct breakpoint *B)
176
 
     A breakpoint has been modified in some way.  The argument B is the
177
 
     modified breakpoint.
178
 
 
179
 
 -- Function: void tracepoint_created (int TPNUM)
180
 
     A new tracepoint has been created.  The argument TPNUM is the
181
 
     number of the newly-created tracepoint.
182
 
 
183
 
 -- Function: void tracepoint_deleted (int TPNUM)
184
 
     A tracepoint has been destroyed.  The argument TPNUM is the number
185
 
     of the newly-destroyed tracepoint.
186
 
 
187
 
 -- Function: void tracepoint_modified (int TPNUM)
188
 
     A tracepoint has been modified in some way.  The argument TPNUM is
189
 
     the number of the modified tracepoint.
190
 
 
191
 
 -- Function: void architecture_changed (struct gdbarch *NEWARCH)
192
 
     The current architecture has changed.  The argument NEWARCH is a
193
 
     pointer to the new architecture.
194
 
 
195
 
 -- Function: void thread_ptid_changed (ptid_t OLD_PTID, ptid_t
196
 
          NEW_PTID)
197
 
     The thread's ptid has changed.  The OLD_PTID parameter specifies
198
 
     the old value, and NEW_PTID specifies the new value.
199
 
 
200
 
 -- Function: void inferior_added (struct inferior *INF)
201
 
     The inferior INF has been added to the list of inferiors.  At this
202
 
     point, it might not be associated with any process.
203
 
 
204
 
 -- Function: void inferior_appeared (struct inferior *INF)
205
 
     The inferior identified by INF has been attached to a process.
206
 
 
207
 
 -- Function: void inferior_exit (struct inferior *INF)
208
 
     Either the inferior associated with INF has been detached from the
209
 
     process, or the process has exited.
210
 
 
211
 
 -- Function: void inferior_removed (struct inferior *INF)
212
 
     The inferior INF has been removed from the list of inferiors.
213
 
     This method is called immediately before freeing INF.
214
 
 
215
 
 -- Function: void memory_changed (CORE_ADDR ADDR, int LEN, const
216
 
          bfd_byte *DATA)
217
 
     Bytes from DATA to DATA + LEN have been written to the current
218
 
     inferior at ADDR.
219
 
 
220
 
 -- Function: void before_prompt (const char *CURRENT_PROMPT)
221
 
     Called before a top-level prompt is displayed.  CURRENT_PROMPT is
222
 
     the current top-level prompt.
223
 
 
224
 
 -- Function: void test_notification (int SOMEARG)
225
 
     This observer is used for internal testing.  Do not use.  See
226
 
     testsuite/gdb.gdb/observer.exp.
227
 
 
228
 
 
229
 
File: gdbint.info,  Node: GNU Free Documentation License,  Next: Index,  Prev: GDB Observers,  Up: Top
230
 
 
231
 
Appendix B GNU Free Documentation License
232
 
*****************************************
233
 
 
234
 
                     Version 1.3, 3 November 2008
235
 
 
236
 
     Copyright (C) 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc.
237
 
     `http://fsf.org/'
238
 
 
239
 
     Everyone is permitted to copy and distribute verbatim copies
240
 
     of this license document, but changing it is not allowed.
241
 
 
242
 
  0. PREAMBLE
243
 
 
244
 
     The purpose of this License is to make a manual, textbook, or other
245
 
     functional and useful document "free" in the sense of freedom: to
246
 
     assure everyone the effective freedom to copy and redistribute it,
247
 
     with or without modifying it, either commercially or
248
 
     noncommercially.  Secondarily, this License preserves for the
249
 
     author and publisher a way to get credit for their work, while not
250
 
     being considered responsible for modifications made by others.
251
 
 
252
 
     This License is a kind of "copyleft", which means that derivative
253
 
     works of the document must themselves be free in the same sense.
254
 
     It complements the GNU General Public License, which is a copyleft
255
 
     license designed for free software.
256
 
 
257
 
     We have designed this License in order to use it for manuals for
258
 
     free software, because free software needs free documentation: a
259
 
     free program should come with manuals providing the same freedoms
260
 
     that the software does.  But this License is not limited to
261
 
     software manuals; it can be used for any textual work, regardless
262
 
     of subject matter or whether it is published as a printed book.
263
 
     We recommend this License principally for works whose purpose is
264
 
     instruction or reference.
265
 
 
266
 
  1. APPLICABILITY AND DEFINITIONS
267
 
 
268
 
     This License applies to any manual or other work, in any medium,
269
 
     that contains a notice placed by the copyright holder saying it
270
 
     can be distributed under the terms of this License.  Such a notice
271
 
     grants a world-wide, royalty-free license, unlimited in duration,
272
 
     to use that work under the conditions stated herein.  The
273
 
     "Document", below, refers to any such manual or work.  Any member
274
 
     of the public is a licensee, and is addressed as "you".  You
275
 
     accept the license if you copy, modify or distribute the work in a
276
 
     way requiring permission under copyright law.
277
 
 
278
 
     A "Modified Version" of the Document means any work containing the
279
 
     Document or a portion of it, either copied verbatim, or with
280
 
     modifications and/or translated into another language.
281
 
 
282
 
     A "Secondary Section" is a named appendix or a front-matter section
283
 
     of the Document that deals exclusively with the relationship of the
284
 
     publishers or authors of the Document to the Document's overall
285
 
     subject (or to related matters) and contains nothing that could
286
 
     fall directly within that overall subject.  (Thus, if the Document
287
 
     is in part a textbook of mathematics, a Secondary Section may not
288
 
     explain any mathematics.)  The relationship could be a matter of
289
 
     historical connection with the subject or with related matters, or
290
 
     of legal, commercial, philosophical, ethical or political position
291
 
     regarding them.
292
 
 
293
 
     The "Invariant Sections" are certain Secondary Sections whose
294
 
     titles are designated, as being those of Invariant Sections, in
295
 
     the notice that says that the Document is released under this
296
 
     License.  If a section does not fit the above definition of
297
 
     Secondary then it is not allowed to be designated as Invariant.
298
 
     The Document may contain zero Invariant Sections.  If the Document
299
 
     does not identify any Invariant Sections then there are none.
300
 
 
301
 
     The "Cover Texts" are certain short passages of text that are
302
 
     listed, as Front-Cover Texts or Back-Cover Texts, in the notice
303
 
     that says that the Document is released under this License.  A
304
 
     Front-Cover Text may be at most 5 words, and a Back-Cover Text may
305
 
     be at most 25 words.
306
 
 
307
 
     A "Transparent" copy of the Document means a machine-readable copy,
308
 
     represented in a format whose specification is available to the
309
 
     general public, that is suitable for revising the document
310
 
     straightforwardly with generic text editors or (for images
311
 
     composed of pixels) generic paint programs or (for drawings) some
312
 
     widely available drawing editor, and that is suitable for input to
313
 
     text formatters or for automatic translation to a variety of
314
 
     formats suitable for input to text formatters.  A copy made in an
315
 
     otherwise Transparent file format whose markup, or absence of
316
 
     markup, has been arranged to thwart or discourage subsequent
317
 
     modification by readers is not Transparent.  An image format is
318
 
     not Transparent if used for any substantial amount of text.  A
319
 
     copy that is not "Transparent" is called "Opaque".
320
 
 
321
 
     Examples of suitable formats for Transparent copies include plain
322
 
     ASCII without markup, Texinfo input format, LaTeX input format,
323
 
     SGML or XML using a publicly available DTD, and
324
 
     standard-conforming simple HTML, PostScript or PDF designed for
325
 
     human modification.  Examples of transparent image formats include
326
 
     PNG, XCF and JPG.  Opaque formats include proprietary formats that
327
 
     can be read and edited only by proprietary word processors, SGML or
328
 
     XML for which the DTD and/or processing tools are not generally
329
 
     available, and the machine-generated HTML, PostScript or PDF
330
 
     produced by some word processors for output purposes only.
331
 
 
332
 
     The "Title Page" means, for a printed book, the title page itself,
333
 
     plus such following pages as are needed to hold, legibly, the
334
 
     material this License requires to appear in the title page.  For
335
 
     works in formats which do not have any title page as such, "Title
336
 
     Page" means the text near the most prominent appearance of the
337
 
     work's title, preceding the beginning of the body of the text.
338
 
 
339
 
     The "publisher" means any person or entity that distributes copies
340
 
     of the Document to the public.
341
 
 
342
 
     A section "Entitled XYZ" means a named subunit of the Document
343
 
     whose title either is precisely XYZ or contains XYZ in parentheses
344
 
     following text that translates XYZ in another language.  (Here XYZ
345
 
     stands for a specific section name mentioned below, such as
346
 
     "Acknowledgements", "Dedications", "Endorsements", or "History".)
347
 
     To "Preserve the Title" of such a section when you modify the
348
 
     Document means that it remains a section "Entitled XYZ" according
349
 
     to this definition.
350
 
 
351
 
     The Document may include Warranty Disclaimers next to the notice
352
 
     which states that this License applies to the Document.  These
353
 
     Warranty Disclaimers are considered to be included by reference in
354
 
     this License, but only as regards disclaiming warranties: any other
355
 
     implication that these Warranty Disclaimers may have is void and
356
 
     has no effect on the meaning of this License.
357
 
 
358
 
  2. VERBATIM COPYING
359
 
 
360
 
     You may copy and distribute the Document in any medium, either
361
 
     commercially or noncommercially, provided that this License, the
362
 
     copyright notices, and the license notice saying this License
363
 
     applies to the Document are reproduced in all copies, and that you
364
 
     add no other conditions whatsoever to those of this License.  You
365
 
     may not use technical measures to obstruct or control the reading
366
 
     or further copying of the copies you make or distribute.  However,
367
 
     you may accept compensation in exchange for copies.  If you
368
 
     distribute a large enough number of copies you must also follow
369
 
     the conditions in section 3.
370
 
 
371
 
     You may also lend copies, under the same conditions stated above,
372
 
     and you may publicly display copies.
373
 
 
374
 
  3. COPYING IN QUANTITY
375
 
 
376
 
     If you publish printed copies (or copies in media that commonly
377
 
     have printed covers) of the Document, numbering more than 100, and
378
 
     the Document's license notice requires Cover Texts, you must
379
 
     enclose the copies in covers that carry, clearly and legibly, all
380
 
     these Cover Texts: Front-Cover Texts on the front cover, and
381
 
     Back-Cover Texts on the back cover.  Both covers must also clearly
382
 
     and legibly identify you as the publisher of these copies.  The
383
 
     front cover must present the full title with all words of the
384
 
     title equally prominent and visible.  You may add other material
385
 
     on the covers in addition.  Copying with changes limited to the
386
 
     covers, as long as they preserve the title of the Document and
387
 
     satisfy these conditions, can be treated as verbatim copying in
388
 
     other respects.
389
 
 
390
 
     If the required texts for either cover are too voluminous to fit
391
 
     legibly, you should put the first ones listed (as many as fit
392
 
     reasonably) on the actual cover, and continue the rest onto
393
 
     adjacent pages.
394
 
 
395
 
     If you publish or distribute Opaque copies of the Document
396
 
     numbering more than 100, you must either include a
397
 
     machine-readable Transparent copy along with each Opaque copy, or
398
 
     state in or with each Opaque copy a computer-network location from
399
 
     which the general network-using public has access to download
400
 
     using public-standard network protocols a complete Transparent
401
 
     copy of the Document, free of added material.  If you use the
402
 
     latter option, you must take reasonably prudent steps, when you
403
 
     begin distribution of Opaque copies in quantity, to ensure that
404
 
     this Transparent copy will remain thus accessible at the stated
405
 
     location until at least one year after the last time you
406
 
     distribute an Opaque copy (directly or through your agents or
407
 
     retailers) of that edition to the public.
408
 
 
409
 
     It is requested, but not required, that you contact the authors of
410
 
     the Document well before redistributing any large number of
411
 
     copies, to give them a chance to provide you with an updated
412
 
     version of the Document.
413
 
 
414
 
  4. MODIFICATIONS
415
 
 
416
 
     You may copy and distribute a Modified Version of the Document
417
 
     under the conditions of sections 2 and 3 above, provided that you
418
 
     release the Modified Version under precisely this License, with
419
 
     the Modified Version filling the role of the Document, thus
420
 
     licensing distribution and modification of the Modified Version to
421
 
     whoever possesses a copy of it.  In addition, you must do these
422
 
     things in the Modified Version:
423
 
 
424
 
       A. Use in the Title Page (and on the covers, if any) a title
425
 
          distinct from that of the Document, and from those of
426
 
          previous versions (which should, if there were any, be listed
427
 
          in the History section of the Document).  You may use the
428
 
          same title as a previous version if the original publisher of
429
 
          that version gives permission.
430
 
 
431
 
       B. List on the Title Page, as authors, one or more persons or
432
 
          entities responsible for authorship of the modifications in
433
 
          the Modified Version, together with at least five of the
434
 
          principal authors of the Document (all of its principal
435
 
          authors, if it has fewer than five), unless they release you
436
 
          from this requirement.
437
 
 
438
 
       C. State on the Title page the name of the publisher of the
439
 
          Modified Version, as the publisher.
440
 
 
441
 
       D. Preserve all the copyright notices of the Document.
442
 
 
443
 
       E. Add an appropriate copyright notice for your modifications
444
 
          adjacent to the other copyright notices.
445
 
 
446
 
       F. Include, immediately after the copyright notices, a license
447
 
          notice giving the public permission to use the Modified
448
 
          Version under the terms of this License, in the form shown in
449
 
          the Addendum below.
450
 
 
451
 
       G. Preserve in that license notice the full lists of Invariant
452
 
          Sections and required Cover Texts given in the Document's
453
 
          license notice.
454
 
 
455
 
       H. Include an unaltered copy of this License.
456
 
 
457
 
       I. Preserve the section Entitled "History", Preserve its Title,
458
 
          and add to it an item stating at least the title, year, new
459
 
          authors, and publisher of the Modified Version as given on
460
 
          the Title Page.  If there is no section Entitled "History" in
461
 
          the Document, create one stating the title, year, authors,
462
 
          and publisher of the Document as given on its Title Page,
463
 
          then add an item describing the Modified Version as stated in
464
 
          the previous sentence.
465
 
 
466
 
       J. Preserve the network location, if any, given in the Document
467
 
          for public access to a Transparent copy of the Document, and
468
 
          likewise the network locations given in the Document for
469
 
          previous versions it was based on.  These may be placed in
470
 
          the "History" section.  You may omit a network location for a
471
 
          work that was published at least four years before the
472
 
          Document itself, or if the original publisher of the version
473
 
          it refers to gives permission.
474
 
 
475
 
       K. For any section Entitled "Acknowledgements" or "Dedications",
476
 
          Preserve the Title of the section, and preserve in the
477
 
          section all the substance and tone of each of the contributor
478
 
          acknowledgements and/or dedications given therein.
479
 
 
480
 
       L. Preserve all the Invariant Sections of the Document,
481
 
          unaltered in their text and in their titles.  Section numbers
482
 
          or the equivalent are not considered part of the section
483
 
          titles.
484
 
 
485
 
       M. Delete any section Entitled "Endorsements".  Such a section
486
 
          may not be included in the Modified Version.
487
 
 
488
 
       N. Do not retitle any existing section to be Entitled
489
 
          "Endorsements" or to conflict in title with any Invariant
490
 
          Section.
491
 
 
492
 
       O. Preserve any Warranty Disclaimers.
493
 
 
494
 
     If the Modified Version includes new front-matter sections or
495
 
     appendices that qualify as Secondary Sections and contain no
496
 
     material copied from the Document, you may at your option
497
 
     designate some or all of these sections as invariant.  To do this,
498
 
     add their titles to the list of Invariant Sections in the Modified
499
 
     Version's license notice.  These titles must be distinct from any
500
 
     other section titles.
501
 
 
502
 
     You may add a section Entitled "Endorsements", provided it contains
503
 
     nothing but endorsements of your Modified Version by various
504
 
     parties--for example, statements of peer review or that the text
505
 
     has been approved by an organization as the authoritative
506
 
     definition of a standard.
507
 
 
508
 
     You may add a passage of up to five words as a Front-Cover Text,
509
 
     and a passage of up to 25 words as a Back-Cover Text, to the end
510
 
     of the list of Cover Texts in the Modified Version.  Only one
511
 
     passage of Front-Cover Text and one of Back-Cover Text may be
512
 
     added by (or through arrangements made by) any one entity.  If the
513
 
     Document already includes a cover text for the same cover,
514
 
     previously added by you or by arrangement made by the same entity
515
 
     you are acting on behalf of, you may not add another; but you may
516
 
     replace the old one, on explicit permission from the previous
517
 
     publisher that added the old one.
518
 
 
519
 
     The author(s) and publisher(s) of the Document do not by this
520
 
     License give permission to use their names for publicity for or to
521
 
     assert or imply endorsement of any Modified Version.
522
 
 
523
 
  5. COMBINING DOCUMENTS
524
 
 
525
 
     You may combine the Document with other documents released under
526
 
     this License, under the terms defined in section 4 above for
527
 
     modified versions, provided that you include in the combination
528
 
     all of the Invariant Sections of all of the original documents,
529
 
     unmodified, and list them all as Invariant Sections of your
530
 
     combined work in its license notice, and that you preserve all
531
 
     their Warranty Disclaimers.
532
 
 
533
 
     The combined work need only contain one copy of this License, and
534
 
     multiple identical Invariant Sections may be replaced with a single
535
 
     copy.  If there are multiple Invariant Sections with the same name
536
 
     but different contents, make the title of each such section unique
537
 
     by adding at the end of it, in parentheses, the name of the
538
 
     original author or publisher of that section if known, or else a
539
 
     unique number.  Make the same adjustment to the section titles in
540
 
     the list of Invariant Sections in the license notice of the
541
 
     combined work.
542
 
 
543
 
     In the combination, you must combine any sections Entitled
544
 
     "History" in the various original documents, forming one section
545
 
     Entitled "History"; likewise combine any sections Entitled
546
 
     "Acknowledgements", and any sections Entitled "Dedications".  You
547
 
     must delete all sections Entitled "Endorsements."
548
 
 
549
 
  6. COLLECTIONS OF DOCUMENTS
550
 
 
551
 
     You may make a collection consisting of the Document and other
552
 
     documents released under this License, and replace the individual
553
 
     copies of this License in the various documents with a single copy
554
 
     that is included in the collection, provided that you follow the
555
 
     rules of this License for verbatim copying of each of the
556
 
     documents in all other respects.
557
 
 
558
 
     You may extract a single document from such a collection, and
559
 
     distribute it individually under this License, provided you insert
560
 
     a copy of this License into the extracted document, and follow
561
 
     this License in all other respects regarding verbatim copying of
562
 
     that document.
563
 
 
564
 
  7. AGGREGATION WITH INDEPENDENT WORKS
565
 
 
566
 
     A compilation of the Document or its derivatives with other
567
 
     separate and independent documents or works, in or on a volume of
568
 
     a storage or distribution medium, is called an "aggregate" if the
569
 
     copyright resulting from the compilation is not used to limit the
570
 
     legal rights of the compilation's users beyond what the individual
571
 
     works permit.  When the Document is included in an aggregate, this
572
 
     License does not apply to the other works in the aggregate which
573
 
     are not themselves derivative works of the Document.
574
 
 
575
 
     If the Cover Text requirement of section 3 is applicable to these
576
 
     copies of the Document, then if the Document is less than one half
577
 
     of the entire aggregate, the Document's Cover Texts may be placed
578
 
     on covers that bracket the Document within the aggregate, or the
579
 
     electronic equivalent of covers if the Document is in electronic
580
 
     form.  Otherwise they must appear on printed covers that bracket
581
 
     the whole aggregate.
582
 
 
583
 
  8. TRANSLATION
584
 
 
585
 
     Translation is considered a kind of modification, so you may
586
 
     distribute translations of the Document under the terms of section
587
 
     4.  Replacing Invariant Sections with translations requires special
588
 
     permission from their copyright holders, but you may include
589
 
     translations of some or all Invariant Sections in addition to the
590
 
     original versions of these Invariant Sections.  You may include a
591
 
     translation of this License, and all the license notices in the
592
 
     Document, and any Warranty Disclaimers, provided that you also
593
 
     include the original English version of this License and the
594
 
     original versions of those notices and disclaimers.  In case of a
595
 
     disagreement between the translation and the original version of
596
 
     this License or a notice or disclaimer, the original version will
597
 
     prevail.
598
 
 
599
 
     If a section in the Document is Entitled "Acknowledgements",
600
 
     "Dedications", or "History", the requirement (section 4) to
601
 
     Preserve its Title (section 1) will typically require changing the
602
 
     actual title.
603
 
 
604
 
  9. TERMINATION
605
 
 
606
 
     You may not copy, modify, sublicense, or distribute the Document
607
 
     except as expressly provided under this License.  Any attempt
608
 
     otherwise to copy, modify, sublicense, or distribute it is void,
609
 
     and will automatically terminate your rights under this License.
610
 
 
611
 
     However, if you cease all violation of this License, then your
612
 
     license from a particular copyright holder is reinstated (a)
613
 
     provisionally, unless and until the copyright holder explicitly
614
 
     and finally terminates your license, and (b) permanently, if the
615
 
     copyright holder fails to notify you of the violation by some
616
 
     reasonable means prior to 60 days after the cessation.
617
 
 
618
 
     Moreover, your license from a particular copyright holder is
619
 
     reinstated permanently if the copyright holder notifies you of the
620
 
     violation by some reasonable means, this is the first time you have
621
 
     received notice of violation of this License (for any work) from
622
 
     that copyright holder, and you cure the violation prior to 30 days
623
 
     after your receipt of the notice.
624
 
 
625
 
     Termination of your rights under this section does not terminate
626
 
     the licenses of parties who have received copies or rights from
627
 
     you under this License.  If your rights have been terminated and
628
 
     not permanently reinstated, receipt of a copy of some or all of
629
 
     the same material does not give you any rights to use it.
630
 
 
631
 
 10. FUTURE REVISIONS OF THIS LICENSE
632
 
 
633
 
     The Free Software Foundation may publish new, revised versions of
634
 
     the GNU Free Documentation License from time to time.  Such new
635
 
     versions will be similar in spirit to the present version, but may
636
 
     differ in detail to address new problems or concerns.  See
637
 
     `http://www.gnu.org/copyleft/'.
638
 
 
639
 
     Each version of the License is given a distinguishing version
640
 
     number.  If the Document specifies that a particular numbered
641
 
     version of this License "or any later version" applies to it, you
642
 
     have the option of following the terms and conditions either of
643
 
     that specified version or of any later version that has been
644
 
     published (not as a draft) by the Free Software Foundation.  If
645
 
     the Document does not specify a version number of this License,
646
 
     you may choose any version ever published (not as a draft) by the
647
 
     Free Software Foundation.  If the Document specifies that a proxy
648
 
     can decide which future versions of this License can be used, that
649
 
     proxy's public statement of acceptance of a version permanently
650
 
     authorizes you to choose that version for the Document.
651
 
 
652
 
 11. RELICENSING
653
 
 
654
 
     "Massive Multiauthor Collaboration Site" (or "MMC Site") means any
655
 
     World Wide Web server that publishes copyrightable works and also
656
 
     provides prominent facilities for anybody to edit those works.  A
657
 
     public wiki that anybody can edit is an example of such a server.
658
 
     A "Massive Multiauthor Collaboration" (or "MMC") contained in the
659
 
     site means any set of copyrightable works thus published on the MMC
660
 
     site.
661
 
 
662
 
     "CC-BY-SA" means the Creative Commons Attribution-Share Alike 3.0
663
 
     license published by Creative Commons Corporation, a not-for-profit
664
 
     corporation with a principal place of business in San Francisco,
665
 
     California, as well as future copyleft versions of that license
666
 
     published by that same organization.
667
 
 
668
 
     "Incorporate" means to publish or republish a Document, in whole or
669
 
     in part, as part of another Document.
670
 
 
671
 
     An MMC is "eligible for relicensing" if it is licensed under this
672
 
     License, and if all works that were first published under this
673
 
     License somewhere other than this MMC, and subsequently
674
 
     incorporated in whole or in part into the MMC, (1) had no cover
675
 
     texts or invariant sections, and (2) were thus incorporated prior
676
 
     to November 1, 2008.
677
 
 
678
 
     The operator of an MMC Site may republish an MMC contained in the
679
 
     site under CC-BY-SA on the same site at any time before August 1,
680
 
     2009, provided the MMC is eligible for relicensing.
681
 
 
682
 
 
683
 
ADDENDUM: How to use this License for your documents
684
 
====================================================
685
 
 
686
 
To use this License in a document you have written, include a copy of
687
 
the License in the document and put the following copyright and license
688
 
notices just after the title page:
689
 
 
690
 
       Copyright (C)  YEAR  YOUR NAME.
691
 
       Permission is granted to copy, distribute and/or modify this document
692
 
       under the terms of the GNU Free Documentation License, Version 1.3
693
 
       or any later version published by the Free Software Foundation;
694
 
       with no Invariant Sections, no Front-Cover Texts, and no Back-Cover
695
 
       Texts.  A copy of the license is included in the section entitled ``GNU
696
 
       Free Documentation License''.
697
 
 
698
 
   If you have Invariant Sections, Front-Cover Texts and Back-Cover
699
 
Texts, replace the "with...Texts." line with this:
700
 
 
701
 
         with the Invariant Sections being LIST THEIR TITLES, with
702
 
         the Front-Cover Texts being LIST, and with the Back-Cover Texts
703
 
         being LIST.
704
 
 
705
 
   If you have Invariant Sections without Cover Texts, or some other
706
 
combination of the three, merge those two alternatives to suit the
707
 
situation.
708
 
 
709
 
   If your document contains nontrivial examples of program code, we
710
 
recommend releasing these examples in parallel under your choice of
711
 
free software license, such as the GNU General Public License, to
712
 
permit their use in free software.
713
 
 
714
 
 
715
 
File: gdbint.info,  Node: Index,  Prev: GNU Free Documentation License,  Up: Top
716
 
 
717
 
Index
718
 
*****
719
 
 
720
 
[index]
721
 
* Menu:
722
 
 
723
 
* $fp:                                   Register Information Functions.
724
 
                                                              (line 126)
725
 
* $pc:                                   Register Architecture Functions & Variables.
726
 
                                                              (line  58)
727
 
* $ps:                                   Register Architecture Functions & Variables.
728
 
                                                              (line  69)
729
 
* $sp:                                   Register Architecture Functions & Variables.
730
 
                                                              (line  49)
731
 
* _initialize_ARCH_tdep <1>:             Adding a New Target. (line  22)
732
 
* _initialize_ARCH_tdep:                 How an Architecture is Represented.
733
 
                                                              (line  13)
734
 
* _initialize_language:                  Language Support.    (line  79)
735
 
* a.out format:                          Symbol Handling.     (line 218)
736
 
* about_to_proceed:                      GDB Observers.       (line 133)
737
 
* abstract interpretation of function prologues: Algorithms.  (line  48)
738
 
* add_cmd:                               User Interface.      (line  21)
739
 
* add_com:                               User Interface.      (line  21)
740
 
* add_setshow_cmd:                       User Interface.      (line  26)
741
 
* add_setshow_cmd_full:                  User Interface.      (line  26)
742
 
* add_symtab_fns:                        Symbol Handling.     (line  37)
743
 
* adding a new host:                     Host Definition.     (line  13)
744
 
* adding a symbol-reading module:        Symbol Handling.     (line  37)
745
 
* adding a target:                       Adding a New Target. (line   6)
746
 
* adding debugging info reader:          Symbol Handling.     (line 365)
747
 
* adding source language:                Language Support.    (line  17)
748
 
* address classes:                       Address Classes.     (line   6)
749
 
* address representation:                Pointers and Addresses.
750
 
                                                              (line   6)
751
 
* address spaces, separate data and code: Pointers and Addresses.
752
 
                                                              (line   6)
753
 
* address_class_name_to_type_flags:      Defining Other Architecture Features.
754
 
                                                              (line  28)
755
 
* address_class_name_to_type_flags_p:    Defining Other Architecture Features.
756
 
                                                              (line  39)
757
 
* algorithms:                            Algorithms.          (line   6)
758
 
* align_down:                            Functions and Variable to Analyze Frames.
759
 
                                                              (line  46)
760
 
* align_up:                              Functions and Variable to Analyze Frames.
761
 
                                                              (line  46)
762
 
* allocate_symtab:                       Language Support.    (line  83)
763
 
* ARCH-tdep.c:                           How an Architecture is Represented.
764
 
                                                              (line  13)
765
 
* architecture representation:           How an Architecture is Represented.
766
 
                                                              (line   6)
767
 
* architecture_changed:                  GDB Observers.       (line 159)
768
 
* Array Containers:                      Support Libraries.   (line 131)
769
 
* assumptions about targets:             Misc Guidelines.     (line 334)
770
 
* base of a frame:                       Frame Handling Terminology.
771
 
                                                              (line  28)
772
 
* before_prompt:                         GDB Observers.       (line 188)
773
 
* BFD library:                           Support Libraries.   (line   9)
774
 
* bfd_arch_info:                         Looking Up an Existing Architecture.
775
 
                                                              (line  41)
776
 
* BIG_BREAKPOINT:                        Defining Other Architecture Features.
777
 
                                                              (line 100)
778
 
* BPT_VECTOR:                            Defining Other Architecture Features.
779
 
                                                              (line 536)
780
 
* BREAKPOINT:                            Defining Other Architecture Features.
781
 
                                                              (line  88)
782
 
* breakpoint address adjusted:           Defining Other Architecture Features.
783
 
                                                              (line 145)
784
 
* breakpoint_created:                    GDB Observers.       (line 136)
785
 
* breakpoint_deleted:                    GDB Observers.       (line 139)
786
 
* breakpoint_modified:                   GDB Observers.       (line 143)
787
 
* breakpoints:                           Algorithms.          (line 151)
788
 
* bug-gdb mailing list:                  Getting Started.     (line  72)
789
 
* build script:                          Debugging GDB.       (line  94)
790
 
* C data types:                          Coding Standards.    (line 105)
791
 
* call frame information:                Algorithms.          (line  14)
792
 
* call stack frame:                      Stack Frames.        (line   6)
793
 
* calls to the inferior:                 Inferior Call Setup. (line   6)
794
 
* CC_HAS_LONG_LONG:                      Host Definition.     (line 105)
795
 
* CFI (call frame information):          Algorithms.          (line  14)
796
 
* checkpoints:                           Algorithms.          (line 600)
797
 
* cleanups:                              Misc Guidelines.     (line  12)
798
 
* CLI:                                   User Interface.      (line  12)
799
 
* code pointers, word-addressed:         Pointers and Addresses.
800
 
                                                              (line   6)
801
 
* coding standards:                      Coding Standards.    (line   6)
802
 
* COFF debugging info:                   Symbol Handling.     (line 315)
803
 
* COFF format:                           Symbol Handling.     (line 233)
804
 
* command implementation:                Getting Started.     (line  60)
805
 
* command interpreter:                   User Interface.      (line  12)
806
 
* comment formatting:                    Coding Standards.    (line  79)
807
 
* compiler warnings:                     Misc Guidelines.     (line 252)
808
 
* Compressed DWARF 2 debugging info:     Symbol Handling.     (line 335)
809
 
* computed values:                       Values.              (line  35)
810
 
* configure.tgt:                         How an Architecture is Represented.
811
 
                                                              (line  19)
812
 
* converting between pointers and addresses: Pointers and Addresses.
813
 
                                                              (line   6)
814
 
* converting integers to addresses:      Defining Other Architecture Features.
815
 
                                                              (line 274)
816
 
* cooked register representation:        Raw and Cooked Registers.
817
 
                                                              (line   6)
818
 
* core files:                            Adding support for debugging core files.
819
 
                                                              (line   6)
820
 
* core_addr_greaterthan:                 Functions and Variable to Analyze Frames.
821
 
                                                              (line  30)
822
 
* core_addr_lessthan:                    Functions and Variable to Analyze Frames.
823
 
                                                              (line  30)
824
 
* CRLF_SOURCE_FILES:                     Host Definition.     (line  86)
825
 
* current_language:                      Language Support.    (line  75)
826
 
* D10V addresses:                        Pointers and Addresses.
827
 
                                                              (line   6)
828
 
* data output:                           User Interface.      (line 254)
829
 
* data-pointer, per-architecture/per-module: Misc Guidelines. (line 100)
830
 
* debugging GDB:                         Debugging GDB.       (line   6)
831
 
* DEFAULT_PROMPT:                        Host Definition.     (line  93)
832
 
* deprecate_cmd:                         User Interface.      (line  32)
833
 
* DEPRECATED_IBM6000_TARGET:             Defining Other Architecture Features.
834
 
                                                              (line 242)
835
 
* deprecating commands:                  User Interface.      (line  32)
836
 
* design:                                Misc Guidelines.     (line 329)
837
 
* DEV_TTY:                               Host Definition.     (line  96)
838
 
* DIRNAME_SEPARATOR:                     Misc Guidelines.     (line 399)
839
 
* DISABLE_UNSETTABLE_BREAK:              Defining Other Architecture Features.
840
 
                                                              (line 211)
841
 
* discard_cleanups:                      Misc Guidelines.     (line  39)
842
 
* do_cleanups:                           Misc Guidelines.     (line  35)
843
 
* DOS text files:                        Host Definition.     (line  87)
844
 
* dummy frames:                          About Dummy Frames.  (line   6)
845
 
* DW_AT_address_class:                   Address Classes.     (line   6)
846
 
* DW_AT_byte_size:                       Address Classes.     (line   6)
847
 
* DWARF 2 debugging info:                Symbol Handling.     (line 328)
848
 
* DWARF 3 debugging info:                Symbol Handling.     (line 355)
849
 
* ECOFF debugging info:                  Symbol Handling.     (line 321)
850
 
* ECOFF format:                          Symbol Handling.     (line 248)
851
 
* ELF format:                            Symbol Handling.     (line 281)
852
 
* evaluate_subexp:                       Language Support.    (line  58)
853
 
* executable_changed:                    GDB Observers.       (line  85)
854
 
* execution state:                       Managing Execution State.
855
 
                                                              (line   6)
856
 
* experimental branches:                 Versions and Branches.
857
 
                                                              (line 116)
858
 
* expression evaluation routines:        Language Support.    (line  58)
859
 
* expression parser:                     Language Support.    (line  21)
860
 
* extract_typed_address:                 Pointers and Addresses.
861
 
                                                              (line  52)
862
 
* field output functions:                User Interface.      (line 254)
863
 
* file names, portability:               Misc Guidelines.     (line 367)
864
 
* FILENAME_CMP:                          Misc Guidelines.     (line 393)
865
 
* find_pc_function:                      Symbol Handling.     (line 136)
866
 
* find_pc_line:                          Symbol Handling.     (line 136)
867
 
* find_sym_fns:                          Symbol Handling.     (line  32)
868
 
* finding a symbol:                      Symbol Handling.     (line 133)
869
 
* fine-tuning gdbarch structure:         OS ABI Variant Handling.
870
 
                                                              (line  23)
871
 
* first floating point register:         Register Architecture Functions & Variables.
872
 
                                                              (line  78)
873
 
* FOPEN_RB:                              Host Definition.     (line 102)
874
 
* fp0_regnum:                            Register Architecture Functions & Variables.
875
 
                                                              (line  78)
876
 
* frame:                                 Stack Frames.        (line   6)
877
 
* frame ID:                              Stack Frames.        (line  41)
878
 
* frame pointer:                         Register Information Functions.
879
 
                                                              (line 126)
880
 
* frame, definition of base of a frame:  Frame Handling Terminology.
881
 
                                                              (line  28)
882
 
* frame, definition of innermost frame:  Frame Handling Terminology.
883
 
                                                              (line  24)
884
 
* frame, definition of NEXT frame:       Frame Handling Terminology.
885
 
                                                              (line  11)
886
 
* frame, definition of PREVIOUS frame:   Frame Handling Terminology.
887
 
                                                              (line  14)
888
 
* frame, definition of sentinel frame:   Frame Handling Terminology.
889
 
                                                              (line  52)
890
 
* frame, definition of sniffing:         Frame Handling Terminology.
891
 
                                                              (line  46)
892
 
* frame, definition of THIS frame:       Frame Handling Terminology.
893
 
                                                              (line   9)
894
 
* frame, definition of unwinding:        Frame Handling Terminology.
895
 
                                                              (line  41)
896
 
* frame_align:                           Functions and Variable to Analyze Frames.
897
 
                                                              (line  46)
898
 
* frame_base:                            Analyzing Stacks---Frame Sniffers.
899
 
                                                              (line  89)
900
 
* frame_base_append_sniffer:             Analyzing Stacks---Frame Sniffers.
901
 
                                                              (line  19)
902
 
* frame_base_set_default:                Analyzing Stacks---Frame Sniffers.
903
 
                                                              (line  22)
904
 
* frame_num_args:                        Functions to Access Frame Data.
905
 
                                                              (line  43)
906
 
* frame_red_zone_size:                   Functions and Variable to Analyze Frames.
907
 
                                                              (line  63)
908
 
* frame_register_unwind:                 Stack Frames.        (line  15)
909
 
* frame_unwind:                          Analyzing Stacks---Frame Sniffers.
910
 
                                                              (line  36)
911
 
* frame_unwind_append_sniffer:           Analyzing Stacks---Frame Sniffers.
912
 
                                                              (line  16)
913
 
* frame_unwind_append_unwinder:          Stack Frames.        (line  30)
914
 
* frame_unwind_got_address:              Stack Frames.        (line 105)
915
 
* frame_unwind_got_constant:             Stack Frames.        (line 101)
916
 
* frame_unwind_got_memory:               Stack Frames.        (line  98)
917
 
* frame_unwind_got_optimized:            Stack Frames.        (line  90)
918
 
* frame_unwind_got_register:             Stack Frames.        (line  93)
919
 
* frame_unwind_prepend_unwinder:         Stack Frames.        (line  30)
920
 
* full symbol table:                     Symbol Handling.     (line 104)
921
 
* function prologue:                     Prologue Caches.     (line   6)
922
 
* function prototypes:                   Coding Standards.    (line 127)
923
 
* function usage:                        Coding Standards.    (line 109)
924
 
* fundamental types:                     Symbol Handling.     (line 183)
925
 
* GCC2_COMPILED_FLAG_SYMBOL:             Defining Other Architecture Features.
926
 
                                                              (line 225)
927
 
* GCC_COMPILED_FLAG_SYMBOL:              Defining Other Architecture Features.
928
 
                                                              (line 225)
929
 
* GDB source tree structure:             Overall Structure.   (line  83)
930
 
* gdb_byte:                              Register Caching.    (line  23)
931
 
* GDB_OSABI_AIX:                         OS ABI Variant Handling.
932
 
                                                              (line  90)
933
 
* GDB_OSABI_CYGWIN:                      OS ABI Variant Handling.
934
 
                                                              (line  87)
935
 
* GDB_OSABI_FREEBSD_AOUT:                OS ABI Variant Handling.
936
 
                                                              (line  51)
937
 
* GDB_OSABI_FREEBSD_ELF:                 OS ABI Variant Handling.
938
 
                                                              (line  54)
939
 
* GDB_OSABI_GO32:                        OS ABI Variant Handling.
940
 
                                                              (line  69)
941
 
* GDB_OSABI_HPUX_ELF:                    OS ABI Variant Handling.
942
 
                                                              (line  78)
943
 
* GDB_OSABI_HPUX_SOM:                    OS ABI Variant Handling.
944
 
                                                              (line  81)
945
 
* GDB_OSABI_HURD:                        OS ABI Variant Handling.
946
 
                                                              (line  39)
947
 
* GDB_OSABI_INTERIX:                     OS ABI Variant Handling.
948
 
                                                              (line  75)
949
 
* GDB_OSABI_IRIX:                        OS ABI Variant Handling.
950
 
                                                              (line  72)
951
 
* GDB_OSABI_LINUX:                       OS ABI Variant Handling.
952
 
                                                              (line  48)
953
 
* GDB_OSABI_NETBSD_AOUT:                 OS ABI Variant Handling.
954
 
                                                              (line  57)
955
 
* GDB_OSABI_NETBSD_ELF:                  OS ABI Variant Handling.
956
 
                                                              (line  60)
957
 
* GDB_OSABI_OPENBSD_ELF:                 OS ABI Variant Handling.
958
 
                                                              (line  63)
959
 
* GDB_OSABI_OSF1:                        OS ABI Variant Handling.
960
 
                                                              (line  45)
961
 
* GDB_OSABI_QNXNTO:                      OS ABI Variant Handling.
962
 
                                                              (line  84)
963
 
* GDB_OSABI_SOLARIS:                     OS ABI Variant Handling.
964
 
                                                              (line  42)
965
 
* GDB_OSABI_SVR4:                        OS ABI Variant Handling.
966
 
                                                              (line  36)
967
 
* GDB_OSABI_UNINITIALIZED:               OS ABI Variant Handling.
968
 
                                                              (line  29)
969
 
* GDB_OSABI_UNKNOWN:                     OS ABI Variant Handling.
970
 
                                                              (line  32)
971
 
* GDB_OSABI_WINCE:                       OS ABI Variant Handling.
972
 
                                                              (line  66)
973
 
* gdbarch:                               How an Architecture is Represented.
974
 
                                                              (line  19)
975
 
* gdbarch accessor functions:            Creating a New Architecture.
976
 
                                                              (line  14)
977
 
* gdbarch lookup:                        Looking Up an Existing Architecture.
978
 
                                                              (line   6)
979
 
* gdbarch register architecture functions: Register Architecture Functions & Variables.
980
 
                                                              (line   6)
981
 
* gdbarch register information functions: Register Information Functions.
982
 
                                                              (line   6)
983
 
* gdbarch_addr_bits_remove:              Defining Other Architecture Features.
984
 
                                                              (line  11)
985
 
* gdbarch_address_class_name_to_type_flags: Address Classes.  (line  30)
986
 
* gdbarch_address_class_type_flags <1>:  Defining Other Architecture Features.
987
 
                                                              (line  43)
988
 
* gdbarch_address_class_type_flags:      Address Classes.     (line  18)
989
 
* gdbarch_address_class_type_flags_p:    Defining Other Architecture Features.
990
 
                                                              (line  52)
991
 
* gdbarch_address_class_type_flags_to_name <1>: Defining Other Architecture Features.
992
 
                                                              (line  56)
993
 
* gdbarch_address_class_type_flags_to_name: Address Classes.  (line  25)
994
 
* gdbarch_address_class_type_flags_to_name_p: Defining Other Architecture Features.
995
 
                                                              (line  60)
996
 
* gdbarch_address_to_pointer <1>:        Defining Other Architecture Features.
997
 
                                                              (line  65)
998
 
* gdbarch_address_to_pointer:            Pointers and Addresses.
999
 
                                                              (line 114)
1000
 
* gdbarch_adjust_breakpoint_address:     Defining Other Architecture Features.
1001
 
                                                              (line 145)
1002
 
* gdbarch_alloc:                         Creating a New Architecture.
1003
 
                                                              (line   6)
1004
 
* gdbarch_believe_pcc_promotion:         Defining Other Architecture Features.
1005
 
                                                              (line  72)
1006
 
* gdbarch_bits_big_endian:               Defining Other Architecture Features.
1007
 
                                                              (line  77)
1008
 
* gdbarch_breakpoint_from_pc:            Defining Other Architecture Features.
1009
 
                                                              (line 106)
1010
 
* gdbarch_call_dummy_location:           Defining Other Architecture Features.
1011
 
                                                              (line 178)
1012
 
* gdbarch_cannot_fetch_register:         Defining Other Architecture Features.
1013
 
                                                              (line 184)
1014
 
* gdbarch_cannot_store_register:         Defining Other Architecture Features.
1015
 
                                                              (line 188)
1016
 
* gdbarch_char_signed:                   Defining Other Architecture Features.
1017
 
                                                              (line 461)
1018
 
* gdbarch_convert_register_p <1>:        Defining Other Architecture Features.
1019
 
                                                              (line 195)
1020
 
* gdbarch_convert_register_p:            Register and Memory Data.
1021
 
                                                              (line  30)
1022
 
* gdbarch_data:                          Misc Guidelines.     (line 133)
1023
 
* gdbarch_data_register_post_init:       Misc Guidelines.     (line 118)
1024
 
* gdbarch_data_register_pre_init:        Misc Guidelines.     (line 108)
1025
 
* gdbarch_decr_pc_after_break:           Defining Other Architecture Features.
1026
 
                                                              (line 205)
1027
 
* gdbarch_deprecated_fp_regnum:          Defining Other Architecture Features.
1028
 
                                                              (line 446)
1029
 
* gdbarch_double_bit:                    Defining Other Architecture Features.
1030
 
                                                              (line 471)
1031
 
* gdbarch_dummy_id:                      Defining Other Architecture Features.
1032
 
                                                              (line 523)
1033
 
* gdbarch_dwarf2_reg_to_regnum:          Defining Other Architecture Features.
1034
 
                                                              (line 216)
1035
 
* gdbarch_ecoff_reg_to_regnum:           Defining Other Architecture Features.
1036
 
                                                              (line 220)
1037
 
* gdbarch_float_bit:                     Defining Other Architecture Features.
1038
 
                                                              (line 475)
1039
 
* gdbarch_fp0_regnum:                    Defining Other Architecture Features.
1040
 
                                                              (line 200)
1041
 
* gdbarch_get_longjmp_target <1>:        Defining Other Architecture Features.
1042
 
                                                              (line 231)
1043
 
* gdbarch_get_longjmp_target:            Algorithms.          (line 263)
1044
 
* gdbarch_have_nonsteppable_watchpoint:  Algorithms.          (line 396)
1045
 
* gdbarch_in_function_epilogue_p:        Defining Other Architecture Features.
1046
 
                                                              (line 253)
1047
 
* gdbarch_in_solib_return_trampoline:    Defining Other Architecture Features.
1048
 
                                                              (line 259)
1049
 
* gdbarch_info:                          Looking Up an Existing Architecture.
1050
 
                                                              (line  22)
1051
 
* gdbarch_init_osabi:                    OS ABI Variant Handling.
1052
 
                                                              (line 125)
1053
 
* gdbarch_int_bit:                       Defining Other Architecture Features.
1054
 
                                                              (line 478)
1055
 
* gdbarch_integer_to_address:            Defining Other Architecture Features.
1056
 
                                                              (line 274)
1057
 
* gdbarch_list_lookup_by_info:           Looking Up an Existing Architecture.
1058
 
                                                              (line  22)
1059
 
* gdbarch_long_bit:                      Defining Other Architecture Features.
1060
 
                                                              (line 481)
1061
 
* gdbarch_long_double_bit:               Defining Other Architecture Features.
1062
 
                                                              (line 485)
1063
 
* gdbarch_long_long_bit:                 Defining Other Architecture Features.
1064
 
                                                              (line 489)
1065
 
* gdbarch_lookup_osabi:                  OS ABI Variant Handling.
1066
 
                                                              (line 119)
1067
 
* gdbarch_memory_insert_breakpoint:      Defining Other Architecture Features.
1068
 
                                                              (line 130)
1069
 
* gdbarch_memory_remove_breakpoint:      Defining Other Architecture Features.
1070
 
                                                              (line 130)
1071
 
* gdbarch_osabi_name:                    OS ABI Variant Handling.
1072
 
                                                              (line  97)
1073
 
* gdbarch_pointer_to_address <1>:        Defining Other Architecture Features.
1074
 
                                                              (line 295)
1075
 
* gdbarch_pointer_to_address:            Pointers and Addresses.
1076
 
                                                              (line 105)
1077
 
* gdbarch_print_insn:                    Defining Other Architecture Features.
1078
 
                                                              (line 513)
1079
 
* gdbarch_ptr_bit:                       Defining Other Architecture Features.
1080
 
                                                              (line 493)
1081
 
* gdbarch_push_dummy_call:               Defining Other Architecture Features.
1082
 
                                                              (line 363)
1083
 
* gdbarch_push_dummy_code:               Defining Other Architecture Features.
1084
 
                                                              (line 375)
1085
 
* gdbarch_register <1>:                  Adding a New Target. (line  40)
1086
 
* gdbarch_register:                      How an Architecture is Represented.
1087
 
                                                              (line  19)
1088
 
* gdbarch_register_osabi:                OS ABI Variant Handling.
1089
 
                                                              (line 103)
1090
 
* gdbarch_register_osabi_sniffer:        OS ABI Variant Handling.
1091
 
                                                              (line 112)
1092
 
* gdbarch_register_to_value <1>:         Defining Other Architecture Features.
1093
 
                                                              (line 301)
1094
 
* gdbarch_register_to_value:             Register and Memory Data.
1095
 
                                                              (line  46)
1096
 
* gdbarch_return_value:                  Defining Other Architecture Features.
1097
 
                                                              (line 394)
1098
 
* gdbarch_sdb_reg_to_regnum:             Defining Other Architecture Features.
1099
 
                                                              (line 390)
1100
 
* gdbarch_short_bit:                     Defining Other Architecture Features.
1101
 
                                                              (line 497)
1102
 
* gdbarch_skip_permanent_breakpoint:     Defining Other Architecture Features.
1103
 
                                                              (line 430)
1104
 
* gdbarch_skip_trampoline_code:          Defining Other Architecture Features.
1105
 
                                                              (line 441)
1106
 
* gdbarch_stab_reg_to_regnum:            Defining Other Architecture Features.
1107
 
                                                              (line 450)
1108
 
* gdbarch_stabs_argument_has_addr:       Defining Other Architecture Features.
1109
 
                                                              (line 359)
1110
 
* gdbarch_tdep definition:               Creating a New Architecture.
1111
 
                                                              (line  34)
1112
 
* gdbarch_tdep when allocating new gdbarch: Creating a New Architecture.
1113
 
                                                              (line   6)
1114
 
* gdbarch_value_to_register <1>:         Defining Other Architecture Features.
1115
 
                                                              (line 529)
1116
 
* gdbarch_value_to_register:             Register and Memory Data.
1117
 
                                                              (line  62)
1118
 
* gdbarch_virtual_frame_pointer:         Defining Other Architecture Features.
1119
 
                                                              (line 501)
1120
 
* GDBINIT_FILENAME:                      Host Definition.     (line  74)
1121
 
* generic host support:                  Host Definition.     (line  38)
1122
 
* generic_elf_osabi_sniff_abi_tag_sections: OS ABI Variant Handling.
1123
 
                                                              (line 133)
1124
 
* get_frame_register:                    Stack Frames.        (line  15)
1125
 
* get_frame_type:                        Stack Frames.        (line  22)
1126
 
* hardware breakpoints:                  Algorithms.          (line 158)
1127
 
* hardware watchpoints:                  Algorithms.          (line 280)
1128
 
* HAVE_CONTINUABLE_WATCHPOINT:           Algorithms.          (line 402)
1129
 
* HAVE_DOS_BASED_FILE_SYSTEM:            Misc Guidelines.     (line 376)
1130
 
* HAVE_STEPPABLE_WATCHPOINT:             Algorithms.          (line 386)
1131
 
* host:                                  Overall Structure.   (line  50)
1132
 
* host, adding:                          Host Definition.     (line  13)
1133
 
* i386_cleanup_dregs:                    Algorithms.          (line 576)
1134
 
* I386_DR_LOW_GET_STATUS:                Algorithms.          (line 489)
1135
 
* I386_DR_LOW_RESET_ADDR:                Algorithms.          (line 485)
1136
 
* I386_DR_LOW_SET_ADDR:                  Algorithms.          (line 482)
1137
 
* I386_DR_LOW_SET_CONTROL:               Algorithms.          (line 479)
1138
 
* i386_insert_hw_breakpoint:             Algorithms.          (line 564)
1139
 
* i386_insert_watchpoint:                Algorithms.          (line 536)
1140
 
* i386_region_ok_for_watchpoint:         Algorithms.          (line 514)
1141
 
* i386_remove_hw_breakpoint:             Algorithms.          (line 564)
1142
 
* i386_remove_watchpoint:                Algorithms.          (line 536)
1143
 
* i386_stopped_by_watchpoint:            Algorithms.          (line 528)
1144
 
* i386_stopped_data_address:             Algorithms.          (line 521)
1145
 
* I386_USE_GENERIC_WATCHPOINTS:          Algorithms.          (line 461)
1146
 
* in_dynsym_resolve_code:                Defining Other Architecture Features.
1147
 
                                                              (line 263)
1148
 
* inferior_added:                        GDB Observers.       (line 168)
1149
 
* inferior_appeared:                     GDB Observers.       (line 172)
1150
 
* inferior_created:                      GDB Observers.       (line  92)
1151
 
* inferior_exit:                         GDB Observers.       (line 175)
1152
 
* inferior_removed:                      GDB Observers.       (line 179)
1153
 
* inner_than:                            Functions and Variable to Analyze Frames.
1154
 
                                                              (line  30)
1155
 
* innermost frame:                       Frame Handling Terminology.
1156
 
                                                              (line  24)
1157
 
* insert or remove hardware breakpoint:  Algorithms.          (line 234)
1158
 
* insert or remove hardware watchpoint:  Algorithms.          (line 347)
1159
 
* insert or remove software breakpoint:  Algorithms.          (line 211)
1160
 
* IS_ABSOLUTE_PATH:                      Misc Guidelines.     (line 387)
1161
 
* IS_DIR_SEPARATOR:                      Misc Guidelines.     (line 382)
1162
 
* ISATTY:                                Host Definition.     (line  99)
1163
 
* item output functions:                 User Interface.      (line 254)
1164
 
* language parser:                       Language Support.    (line  25)
1165
 
* language support:                      Language Support.    (line   6)
1166
 
* legal papers for code contributions:   Debugging GDB.       (line  42)
1167
 
* length_of_subexp:                      Language Support.    (line  58)
1168
 
* libgdb:                                libgdb.              (line   9)
1169
 
* libiberty library:                     Support Libraries.   (line  52)
1170
 
* line wrap in output:                   Misc Guidelines.     (line 191)
1171
 
* lint:                                  Host Definition.     (line 119)
1172
 
* list output functions:                 User Interface.      (line 131)
1173
 
* LITTLE_BREAKPOINT:                     Defining Other Architecture Features.
1174
 
                                                              (line 100)
1175
 
* long long data type:                   Host Definition.     (line 106)
1176
 
* longjmp debugging:                     Algorithms.          (line 258)
1177
 
* lookup_symbol:                         Symbol Handling.     (line 142)
1178
 
* LSEEK_NOT_LINEAR:                      Host Definition.     (line 114)
1179
 
* lval_type enumeration, for values.:    Values.              (line  19)
1180
 
* make_cleanup:                          Misc Guidelines.     (line  28)
1181
 
* make_cleanup_ui_out_list_begin_end:    User Interface.      (line 247)
1182
 
* make_cleanup_ui_out_tuple_begin_end:   User Interface.      (line 223)
1183
 
* making a new release of gdb:           Releasing GDB.       (line   6)
1184
 
* memory representation:                 Register and Memory Data.
1185
 
                                                              (line   6)
1186
 
* memory_changed:                        GDB Observers.       (line 184)
1187
 
* minimal symbol table:                  Symbol Handling.     (line 111)
1188
 
* minsymtabs:                            Symbol Handling.     (line 111)
1189
 
* multi-arch data:                       Misc Guidelines.     (line 100)
1190
 
* NATDEPFILES:                           Native Debugging.    (line   8)
1191
 
* native conditionals:                   Native Debugging.    (line  75)
1192
 
* native debugging:                      Native Debugging.    (line   6)
1193
 
* nesting level in ui_out functions:     User Interface.      (line 143)
1194
 
* new year procedure:                    Start of New Year Procedure.
1195
 
                                                              (line   6)
1196
 
* new_objfile:                           GDB Observers.       (line 109)
1197
 
* new_thread:                            GDB Observers.       (line 114)
1198
 
* NEXT frame:                            Frame Handling Terminology.
1199
 
                                                              (line  11)
1200
 
* normal_stop:                           GDB Observers.       (line  76)
1201
 
* normal_stop observer:                  GDB Observers.       (line  48)
1202
 
* notification about inferior execution stop: GDB Observers.  (line  48)
1203
 
* notifications about changes in internals: Algorithms.       (line 630)
1204
 
* object file formats:                   Symbol Handling.     (line 215)
1205
 
* observer pattern interface:            Algorithms.          (line 630)
1206
 
* observers implementation rationale:    GDB Observers.       (line   9)
1207
 
* obstacks:                              Support Libraries.   (line  69)
1208
 
* op_print_tab:                          Language Support.    (line  91)
1209
 
* opcodes library:                       Support Libraries.   (line  39)
1210
 
* OS ABI variants:                       OS ABI Variant Handling.
1211
 
                                                              (line   6)
1212
 
* parse_exp_1:                           Language Support.    (line  97)
1213
 
* partial symbol table:                  Symbol Handling.     (line 114)
1214
 
* pc_regnum:                             Register Architecture Functions & Variables.
1215
 
                                                              (line  58)
1216
 
* PE-COFF format:                        Symbol Handling.     (line 272)
1217
 
* per-architecture module data:          Misc Guidelines.     (line 100)
1218
 
* pointer representation:                Pointers and Addresses.
1219
 
                                                              (line   6)
1220
 
* portability:                           Misc Guidelines.     (line 350)
1221
 
* portable file name handling:           Misc Guidelines.     (line 367)
1222
 
* porting to new machines:               Porting GDB.         (line   6)
1223
 
* prefixify_subexp:                      Language Support.    (line  58)
1224
 
* PREVIOUS frame:                        Frame Handling Terminology.
1225
 
                                                              (line  14)
1226
 
* print_float_info:                      Register Information Functions.
1227
 
                                                              (line  80)
1228
 
* print_registers_info:                  Register Information Functions.
1229
 
                                                              (line  53)
1230
 
* print_subexp:                          Language Support.    (line  91)
1231
 
* print_vector_info:                     Register Information Functions.
1232
 
                                                              (line  96)
1233
 
* PRINTF_HAS_LONG_LONG:                  Host Definition.     (line 109)
1234
 
* processor status register:             Register Architecture Functions & Variables.
1235
 
                                                              (line  69)
1236
 
* program counter <1>:                   Register Architecture Functions & Variables.
1237
 
                                                              (line  58)
1238
 
* program counter:                       Algorithms.          (line 158)
1239
 
* prologue analysis:                     Algorithms.          (line  14)
1240
 
* prologue cache:                        Prologue Caches.     (line  12)
1241
 
* prologue of a function:                Prologue Caches.     (line   6)
1242
 
* prologue-value.c:                      Algorithms.          (line  48)
1243
 
* prompt:                                Host Definition.     (line  94)
1244
 
* ps_regnum:                             Register Architecture Functions & Variables.
1245
 
                                                              (line  69)
1246
 
* pseudo-evaluation of function prologues: Algorithms.        (line  48)
1247
 
* pseudo_register_read:                  Register Architecture Functions & Variables.
1248
 
                                                              (line  29)
1249
 
* pseudo_register_write:                 Register Architecture Functions & Variables.
1250
 
                                                              (line  33)
1251
 
* psymtabs:                              Symbol Handling.     (line 107)
1252
 
* push_dummy_call:                       Functions Creating Dummy Frames.
1253
 
                                                              (line  13)
1254
 
* push_dummy_code:                       Functions Creating Dummy Frames.
1255
 
                                                              (line  57)
1256
 
* raw register representation:           Raw and Cooked Registers.
1257
 
                                                              (line   6)
1258
 
* read_pc:                               Register Architecture Functions & Variables.
1259
 
                                                              (line  10)
1260
 
* reading of symbols:                    Symbol Handling.     (line  25)
1261
 
* readline library:                      Support Libraries.   (line  45)
1262
 
* regcache_cooked_read:                  Register Caching.    (line  23)
1263
 
* regcache_cooked_read_signed:           Register Caching.    (line  23)
1264
 
* regcache_cooked_read_unsigned:         Register Caching.    (line  23)
1265
 
* regcache_cooked_write:                 Register Caching.    (line  23)
1266
 
* regcache_cooked_write_signed:          Register Caching.    (line  23)
1267
 
* regcache_cooked_write_unsigned:        Register Caching.    (line  23)
1268
 
* register caching:                      Register Caching.    (line   6)
1269
 
* register data formats, converting:     Register and Memory Data.
1270
 
                                                              (line   6)
1271
 
* register representation:               Register and Memory Data.
1272
 
                                                              (line   6)
1273
 
* REGISTER_CONVERT_TO_RAW:               Defining Other Architecture Features.
1274
 
                                                              (line 311)
1275
 
* REGISTER_CONVERT_TO_VIRTUAL:           Defining Other Architecture Features.
1276
 
                                                              (line 306)
1277
 
* register_name:                         Register Information Functions.
1278
 
                                                              (line  10)
1279
 
* register_reggroup_p:                   Register Information Functions.
1280
 
                                                              (line 110)
1281
 
* register_type:                         Register Information Functions.
1282
 
                                                              (line  33)
1283
 
* regset_from_core_section:              Defining Other Architecture Features.
1284
 
                                                              (line 316)
1285
 
* regular expressions library:           Support Libraries.   (line 110)
1286
 
* Release Branches:                      Versions and Branches.
1287
 
                                                              (line  93)
1288
 
* remote debugging support:              Host Definition.     (line  41)
1289
 
* REMOTE_BPT_VECTOR:                     Defining Other Architecture Features.
1290
 
                                                              (line 540)
1291
 
* representation of architecture:        How an Architecture is Represented.
1292
 
                                                              (line   6)
1293
 
* representations, raw and cooked registers: Raw and Cooked Registers.
1294
 
                                                              (line   6)
1295
 
* representations, register and memory:  Register and Memory Data.
1296
 
                                                              (line   6)
1297
 
* requirements for GDB:                  Requirements.        (line   6)
1298
 
* restart:                               Algorithms.          (line 600)
1299
 
* running the test suite:                Testsuite.           (line  19)
1300
 
* secondary symbol file:                 Symbol Handling.     (line  47)
1301
 
* sentinel frame <1>:                    Frame Handling Terminology.
1302
 
                                                              (line  52)
1303
 
* sentinel frame:                        Stack Frames.        (line  22)
1304
 
* SENTINEL_FRAME:                        Stack Frames.        (line  22)
1305
 
* separate data and code address spaces: Pointers and Addresses.
1306
 
                                                              (line   6)
1307
 
* serial line support:                   Host Definition.     (line  41)
1308
 
* set_gdbarch functions:                 Creating a New Architecture.
1309
 
                                                              (line  14)
1310
 
* set_gdbarch_bits_big_endian:           Defining Other Architecture Features.
1311
 
                                                              (line  83)
1312
 
* set_gdbarch_sofun_address_maybe_missing: Defining Other Architecture Features.
1313
 
                                                              (line 330)
1314
 
* SIGWINCH_HANDLER:                      Host Definition.     (line  78)
1315
 
* SIGWINCH_HANDLER_BODY:                 Host Definition.     (line  82)
1316
 
* skip_prologue:                         Functions and Variable to Analyze Frames.
1317
 
                                                              (line  12)
1318
 
* SKIP_SOLIB_RESOLVER:                   Defining Other Architecture Features.
1319
 
                                                              (line 267)
1320
 
* SLASH_STRING:                          Misc Guidelines.     (line 404)
1321
 
* sniffing:                              Frame Handling Terminology.
1322
 
                                                              (line  46)
1323
 
* software breakpoints:                  Algorithms.          (line 184)
1324
 
* software watchpoints:                  Algorithms.          (line 280)
1325
 
* SOFTWARE_SINGLE_STEP:                  Defining Other Architecture Features.
1326
 
                                                              (line 324)
1327
 
* SOFTWARE_SINGLE_STEP_P:                Defining Other Architecture Features.
1328
 
                                                              (line 320)
1329
 
* SOLIB_ADD:                             Native Debugging.    (line  86)
1330
 
* SOLIB_CREATE_INFERIOR_HOOK:            Native Debugging.    (line  92)
1331
 
* solib_loaded:                          GDB Observers.       (line  99)
1332
 
* solib_unloaded:                        GDB Observers.       (line 104)
1333
 
* SOM debugging info:                    Symbol Handling.     (line 360)
1334
 
* SOM format:                            Symbol Handling.     (line 291)
1335
 
* source code formatting:                Coding Standards.    (line  28)
1336
 
* sp_regnum:                             Register Architecture Functions & Variables.
1337
 
                                                              (line  49)
1338
 
* spaces, separate data and code address: Pointers and Addresses.
1339
 
                                                              (line   6)
1340
 
* stabs debugging info:                  Symbol Handling.     (line 305)
1341
 
* stack frame, definition of base of a frame: Frame Handling Terminology.
1342
 
                                                              (line  28)
1343
 
* stack frame, definition of innermost frame: Frame Handling Terminology.
1344
 
                                                              (line  24)
1345
 
* stack frame, definition of NEXT frame: Frame Handling Terminology.
1346
 
                                                              (line  11)
1347
 
* stack frame, definition of PREVIOUS frame: Frame Handling Terminology.
1348
 
                                                              (line  14)
1349
 
* stack frame, definition of sentinel frame: Frame Handling Terminology.
1350
 
                                                              (line  52)
1351
 
* stack frame, definition of sniffing:   Frame Handling Terminology.
1352
 
                                                              (line  46)
1353
 
* stack frame, definition of THIS frame: Frame Handling Terminology.
1354
 
                                                              (line   9)
1355
 
* stack frame, definition of unwinding:  Frame Handling Terminology.
1356
 
                                                              (line  41)
1357
 
* stack pointer:                         Register Architecture Functions & Variables.
1358
 
                                                              (line  49)
1359
 
* START_INFERIOR_TRAPS_EXPECTED:         Native Debugging.    (line  96)
1360
 
* status register:                       Register Architecture Functions & Variables.
1361
 
                                                              (line  69)
1362
 
* STOPPED_BY_WATCHPOINT:                 Algorithms.          (line 408)
1363
 
* store_typed_address:                   Pointers and Addresses.
1364
 
                                                              (line  70)
1365
 
* struct:                                GDB Observers.       (line  62)
1366
 
* struct gdbarch creation:               Creating a New Architecture.
1367
 
                                                              (line   6)
1368
 
* struct regcache:                       Register Caching.    (line  10)
1369
 
* struct value, converting register contents to: Register and Memory Data.
1370
 
                                                              (line   6)
1371
 
* submitting patches:                    Debugging GDB.       (line  30)
1372
 
* sym_fns structure:                     Symbol Handling.     (line  37)
1373
 
* symbol files:                          Symbol Handling.     (line  25)
1374
 
* symbol lookup:                         Symbol Handling.     (line 133)
1375
 
* symbol reading:                        Symbol Handling.     (line  25)
1376
 
* SYMBOL_RELOADING_DEFAULT:              Defining Other Architecture Features.
1377
 
                                                              (line 454)
1378
 
* symtabs:                               Symbol Handling.     (line 104)
1379
 
* system dependencies:                   Misc Guidelines.     (line 354)
1380
 
* table output functions:                User Interface.      (line 131)
1381
 
* target:                                Overall Structure.   (line  50)
1382
 
* target architecture definition:        Target Architecture Definition.
1383
 
                                                              (line   6)
1384
 
* target dependent files:                Adding a New Target. (line   8)
1385
 
* target descriptions:                   Target Descriptions. (line   6)
1386
 
* target descriptions, adding register support: Adding Target Described Register Support.
1387
 
                                                              (line   6)
1388
 
* target descriptions, implementation:   Target Descriptions Implementation.
1389
 
                                                              (line   6)
1390
 
* target vector:                         Target Vector Definition.
1391
 
                                                              (line   6)
1392
 
* TARGET_CAN_USE_HARDWARE_WATCHPOINT:    Algorithms.          (line 333)
1393
 
* target_changed:                        GDB Observers.       (line  82)
1394
 
* TARGET_CHAR_BIT:                       Defining Other Architecture Features.
1395
 
                                                              (line 458)
1396
 
* target_insert_breakpoint:              Algorithms.          (line 211)
1397
 
* target_insert_hw_breakpoint:           Algorithms.          (line 234)
1398
 
* target_insert_watchpoint:              Algorithms.          (line 347)
1399
 
* TARGET_REGION_OK_FOR_HW_WATCHPOINT:    Algorithms.          (line 343)
1400
 
* target_remove_breakpoint:              Algorithms.          (line 211)
1401
 
* target_remove_hw_breakpoint:           Algorithms.          (line 234)
1402
 
* target_remove_watchpoint:              Algorithms.          (line 347)
1403
 
* target_resumed:                        GDB Observers.       (line 129)
1404
 
* target_stopped_data_address:           Algorithms.          (line 364)
1405
 
* target_watchpoint_addr_within_range:   Algorithms.          (line 378)
1406
 
* targets:                               Existing Targets.    (line   6)
1407
 
* TCP remote support:                    Host Definition.     (line  57)
1408
 
* terminal device:                       Host Definition.     (line  97)
1409
 
* test suite:                            Testsuite.           (line   6)
1410
 
* test suite organization:               Testsuite.           (line 195)
1411
 
* test_notification:                     GDB Observers.       (line 192)
1412
 
* Testsuite Configuration:               Testsuite.           (line 167)
1413
 
* THIS frame:                            Frame Handling Terminology.
1414
 
                                                              (line   9)
1415
 
* thread_exit:                           GDB Observers.       (line 117)
1416
 
* thread_ptid_changed:                   GDB Observers.       (line 164)
1417
 
* thread_stop_requested:                 GDB Observers.       (line 122)
1418
 
* tracepoint_created:                    GDB Observers.       (line 147)
1419
 
* tracepoint_deleted:                    GDB Observers.       (line 151)
1420
 
* tracepoint_modified:                   GDB Observers.       (line 155)
1421
 
* tuple output functions:                User Interface.      (line 131)
1422
 
* type codes:                            Symbol Handling.     (line 191)
1423
 
* types:                                 Coding Standards.    (line 121)
1424
 
* ui_out functions:                      User Interface.      (line  47)
1425
 
* ui_out functions, usage examples:      User Interface.      (line 398)
1426
 
* ui_out_field_core_addr:                User Interface.      (line 287)
1427
 
* ui_out_field_fmt:                      User Interface.      (line 261)
1428
 
* ui_out_field_fmt_int:                  User Interface.      (line 280)
1429
 
* ui_out_field_int:                      User Interface.      (line 273)
1430
 
* ui_out_field_skip:                     User Interface.      (line 352)
1431
 
* ui_out_field_stream:                   User Interface.      (line 320)
1432
 
* ui_out_field_string:                   User Interface.      (line 291)
1433
 
* ui_out_flush:                          User Interface.      (line 392)
1434
 
* ui_out_list_begin:                     User Interface.      (line 234)
1435
 
* ui_out_list_end:                       User Interface.      (line 240)
1436
 
* ui_out_message:                        User Interface.      (line 376)
1437
 
* ui_out_spaces:                         User Interface.      (line 371)
1438
 
* ui_out_stream_delete:                  User Interface.      (line 315)
1439
 
* ui_out_stream_new:                     User Interface.      (line 309)
1440
 
* ui_out_table_begin:                    User Interface.      (line 165)
1441
 
* ui_out_table_body:                     User Interface.      (line 191)
1442
 
* ui_out_table_end:                      User Interface.      (line 194)
1443
 
* ui_out_table_header:                   User Interface.      (line 178)
1444
 
* ui_out_text:                           User Interface.      (line 358)
1445
 
* ui_out_tuple_begin:                    User Interface.      (line 210)
1446
 
* ui_out_tuple_end:                      User Interface.      (line 216)
1447
 
* ui_out_wrap_hint:                      User Interface.      (line 382)
1448
 
* unwind frame:                          Stack Frames.        (line   9)
1449
 
* unwind_dummy_id:                       Functions Creating Dummy Frames.
1450
 
                                                              (line  38)
1451
 
* unwind_pc:                             Functions to Access Frame Data.
1452
 
                                                              (line  11)
1453
 
* unwind_sp:                             Functions to Access Frame Data.
1454
 
                                                              (line  27)
1455
 
* unwinding:                             Frame Handling Terminology.
1456
 
                                                              (line  41)
1457
 
* using ui_out functions:                User Interface.      (line 398)
1458
 
* value structure:                       Values.              (line   9)
1459
 
* value_as_address:                      Pointers and Addresses.
1460
 
                                                              (line  84)
1461
 
* value_from_pointer:                    Pointers and Addresses.
1462
 
                                                              (line  93)
1463
 
* values:                                Values.              (line   9)
1464
 
* VEC:                                   Support Libraries.   (line 131)
1465
 
* vendor branches:                       Versions and Branches.
1466
 
                                                              (line 108)
1467
 
* void:                                  GDB Observers.       (line  67)
1468
 
* volatile:                              Host Definition.     (line 122)
1469
 
* watchpoints:                           Algorithms.          (line 274)
1470
 
* watchpoints, on x86:                   Algorithms.          (line 449)
1471
 
* watchpoints, with threads:             Algorithms.          (line 425)
1472
 
* word-addressed machines:               Pointers and Addresses.
1473
 
                                                              (line   6)
1474
 
* wrap_here:                             Misc Guidelines.     (line 191)
1475
 
* write_pc:                              Register Architecture Functions & Variables.
1476
 
                                                              (line  13)
1477
 
* writing tests:                         Testsuite.           (line 247)
1478
 
* x86 debug registers:                   Algorithms.          (line 449)
1479
 
* XCOFF format:                          Symbol Handling.     (line 256)
1480
 
 
1481