* stabs.texinfo (Stack Variables): Re-write.
[binutils-gdb.git] / gdb / doc / stabs.texinfo
1 \input texinfo
2 @setfilename stabs.info
3
4 @finalout
5
6 @ifinfo
7 @format
8 START-INFO-DIR-ENTRY
9 * Stabs:: The "stabs" debugging information format.
10 END-INFO-DIR-ENTRY
11 @end format
12 @end ifinfo
13
14 @ifinfo
15 This document describes the stabs debugging symbol tables.
16
17 Copyright 1992 Free Software Foundation, Inc.
18 Contributed by Cygnus Support. Written by Julia Menapace.
19
20 Permission is granted to make and distribute verbatim copies of
21 this manual provided the copyright notice and this permission notice
22 are preserved on all copies.
23
24 @ignore
25 Permission is granted to process this file through Tex and print the
26 results, provided the printed document carries copying permission
27 notice identical to this one except for the removal of this paragraph
28 (this paragraph not being relevant to the printed manual).
29
30 @end ignore
31 Permission is granted to copy or distribute modified versions of this
32 manual under the terms of the GPL (for which purpose this text may be
33 regarded as a program in the language TeX).
34 @end ifinfo
35
36 @setchapternewpage odd
37 @settitle STABS
38 @titlepage
39 @title The ``stabs'' debug format
40 @author Julia Menapace
41 @author Cygnus Support
42 @page
43 @tex
44 \def\$#1${{#1}} % Kluge: collect RCS revision info without $...$
45 \xdef\manvers{\$Revision$} % For use in headers, footers too
46 {\parskip=0pt
47 \hfill Cygnus Support\par
48 \hfill \manvers\par
49 \hfill \TeX{}info \texinfoversion\par
50 }
51 @end tex
52
53 @vskip 0pt plus 1filll
54 Copyright @copyright{} 1992 Free Software Foundation, Inc.
55 Contributed by Cygnus Support.
56
57 Permission is granted to make and distribute verbatim copies of
58 this manual provided the copyright notice and this permission notice
59 are preserved on all copies.
60
61 @end titlepage
62
63 @ifinfo
64 @node Top
65 @top The "stabs" representation of debugging information
66
67 This document describes the stabs debugging format.
68
69 @menu
70 * Overview:: Overview of stabs
71 * Program structure:: Encoding of the structure of the program
72 * Constants:: Constants
73 * Example:: A comprehensive example in C
74 * Variables::
75 * Types:: Type definitions
76 * Symbol Tables:: Symbol information in symbol tables
77 * Cplusplus:: Appendixes:
78 * Example2.c:: Source code for extended example
79 * Example2.s:: Assembly code for extended example
80 * Stab Types:: Symbol types in a.out files
81 * Symbol Descriptors:: Table of Symbol Descriptors
82 * Type Descriptors:: Table of Symbol Descriptors
83 * Expanded reference:: Reference information by stab type
84 * Questions:: Questions and anomolies
85 * xcoff-differences:: Differences between GNU stabs in a.out
86 and GNU stabs in xcoff
87 * Sun-differences:: Differences between GNU stabs and Sun
88 native stabs
89 * Stabs-in-elf:: Stabs in an ELF file.
90 @end menu
91 @end ifinfo
92
93
94 @node Overview
95 @chapter Overview of stabs
96
97 @dfn{Stabs} refers to a format for information that describes a program
98 to a debugger. This format was apparently invented by
99 @c FIXME! <<name of inventor>> at
100 the University of California at Berkeley, for the @code{pdx} Pascal
101 debugger; the format has spread widely since then.
102
103 This document is one of the few published sources of documentation on
104 stabs. It is believed to be completely comprehensive for stabs used by
105 C. The lists of symbol descriptors (@pxref{Symbol Descriptors}) and
106 type descriptors (@pxref{Type Descriptors}) are believed to be completely
107 comprehensive. There are known to be stabs for C++ and COBOL which are
108 poorly documented here. Stabs specific to other languages (e.g. Pascal,
109 Modula-2) are probably not as well documented as they should be.
110
111 Other sources of information on stabs are @cite{dbx and dbxtool
112 interfaces}, 2nd edition, by Sun, circa 1988, and @cite{AIX Version 3.2
113 Files Reference}, Fourth Edition, September 1992, "dbx Stabstring
114 Grammar" in the a.out section, page 2-31. This document is believed to
115 incorporate the information from those two sources except where it
116 explictly directs you to them for more information.
117
118 @menu
119 * Flow:: Overview of debugging information flow
120 * Stabs Format:: Overview of stab format
121 * C example:: A simple example in C source
122 * Assembly code:: The simple example at the assembly level
123 @end menu
124
125 @node Flow
126 @section Overview of debugging information flow
127
128 The GNU C compiler compiles C source in a @file{.c} file into assembly
129 language in a @file{.s} file, which is translated by the assembler into
130 a @file{.o} file, and then linked with other @file{.o} files and
131 libraries to produce an executable file.
132
133 With the @samp{-g} option, GCC puts additional debugging information in
134 the @file{.s} file, which is slightly transformed by the assembler and
135 linker, and carried through into the final executable. This debugging
136 information describes features of the source file like line numbers,
137 the types and scopes of variables, and functions, their parameters and
138 their scopes.
139
140 For some object file formats, the debugging information is
141 encapsulated in assembler directives known collectively as `stab' (symbol
142 table) directives, interspersed with the generated code. Stabs are
143 the native format for debugging information in the a.out and xcoff
144 object file formats. The GNU tools can also emit stabs in the coff
145 and ecoff object file formats.
146
147 The assembler adds the information from stabs to the symbol information
148 it places by default in the symbol table and the string table of the
149 @file{.o} file it is building. The linker consolidates the @file{.o}
150 files into one executable file, with one symbol table and one string
151 table. Debuggers use the symbol and string tables in the executable as
152 a source of debugging information about the program.
153
154 @node Stabs Format
155 @section Overview of stab format
156
157 There are three overall formats for stab assembler directives
158 differentiated by the first word of the stab. The name of the directive
159 describes what combination of four possible data fields will follow. It
160 is either @code{.stabs} (string), @code{.stabn} (number), or
161 @code{.stabd} (dot). IBM's xcoff uses @code{.stabx} (and some other
162 directives such as @code{.file} and @code{.bi}) instead of
163 @code{.stabs}, @code{.stabn} or @code{.stabd}.
164
165 The overall format of each class of stab is:
166
167 @example
168 .stabs "@var{string}",@var{type},0,@var{desc},@var{value}
169 .stabx "@var{string}",@var{value},@var{type},@var{sdb-type}
170 .stabn @var{type},0,@var{desc},@var{value}
171 .stabd @var{type},0,@var{desc}
172 @end example
173
174 @c what is the correct term for "current file location"? My AIX
175 @c assembler manual calls it "the value of the current location counter".
176 For @code{.stabn} and @code{.stabd}, there is no string (the
177 @code{n_strx} field is zero, @pxref{Symbol Tables}). For @code{.stabd}
178 the value field is implicit and has the value of the current file
179 location. The @var{sdb-type} field to @code{.stabx} is unused for stabs
180 and can always be set to 0.
181
182 The number in the type field gives some basic information about what
183 type of stab this is (or whether it @emph{is} a stab, as opposed to an
184 ordinary symbol). Each possible type number defines a different stab
185 type. The stab type further defines the exact interpretation of, and
186 possible values for, any remaining @code{"@var{string}"}, @var{desc}, or
187 @var{value} fields present in the stab. @xref{Stab Types}, for a list
188 in numeric order of the possible type field values for stab directives.
189
190 For @code{.stabs} the @code{"@var{string}"} field holds the meat of the
191 debugging information. The generally unstructured nature of this field
192 is what makes stabs extensible. For some stab types the string field
193 contains only a name. For other stab types the contents can be a great
194 deal more complex.
195
196 The overall format is of the @code{"@var{string}"} field is:
197
198 @example
199 "@var{name}:@var{symbol-descriptor} @var{type-information}"
200 @end example
201
202 @var{name} is the name of the symbol represented by the stab.
203 @var{name} can be omitted, which means the stab represents an unnamed
204 object. For example, @samp{:t10=*2} defines type 10 as a pointer to
205 type 2, but does not give the type a name. Omitting the @var{name}
206 field is supported by AIX dbx and GDB after about version 4.8, but not
207 other debuggers. GCC sometimes uses a single space as the name instead
208 of omitting the name altogether; apparently that is supported by most
209 debuggers.
210
211 The @var{symbol_descriptor} following the @samp{:} is an alphabetic
212 character that tells more specifically what kind of symbol the stab
213 represents. If the @var{symbol_descriptor} is omitted, but type
214 information follows, then the stab represents a local variable. For a
215 list of symbol descriptors, see @ref{Symbol Descriptors,,Table C: Symbol
216 descriptors}.
217
218 The @samp{c} symbol descriptor is an exception in that it is not
219 followed by type information. @xref{Constants}.
220
221 Type information is either a @var{type_number}, or
222 @samp{@var{type_number}=}. The @var{type_number} alone is a type
223 reference, referring directly to a type that has already been defined.
224
225 The @samp{@var{type_number}=} form is a type definition, where the
226 number represents a new type which is about to be defined. The type
227 definition may refer to other types by number, and those type numbers
228 may be followed by @samp{=} and nested definitions.
229
230 In a type definition, if the character that follows the equals sign is
231 non-numeric then it is a @var{type_descriptor}, and tells what kind of
232 type is about to be defined. Any other values following the
233 @var{type_descriptor} vary, depending on the @var{type_descriptor}. If
234 a number follows the @samp{=} then the number is a @var{type_reference}.
235 For a full description of types, @ref{Types}. @xref{Type
236 Descriptors,,Table D: Type Descriptors}, for a list of
237 @var{type_descriptor} values.
238
239 There is an AIX extension for type attributes. Following the @samp{=}
240 is any number of type attributes. Each one starts with @samp{@@} and
241 ends with @samp{;}. Debuggers, including AIX's dbx, skip any type
242 attributes they do not recognize. GDB 4.9 does not do this---it will
243 ignore the entire symbol containing a type attribute. Hopefully this
244 will be fixed in the next GDB release. Because of a conflict with C++
245 (@pxref{Cplusplus}), new attributes should not be defined which begin
246 with a digit, @samp{(}, or @samp{-}; GDB may be unable to distinguish
247 those from the C++ type descriptor @samp{@@}. The attributes are:
248
249 @table @code
250 @item a@var{boundary}
251 @var{boundary} is an integer specifying the alignment. I assume it
252 applies to all variables of this type.
253
254 @item s@var{size}
255 Size in bits of a variable of this type.
256
257 @item p@var{integer}
258 Pointer class (for checking). Not sure what this means, or how
259 @var{integer} is interpreted.
260
261 @item P
262 Indicate this is a packed type, meaning that structure fields or array
263 elements are placed more closely in memory, to save memory at the
264 expense of speed.
265 @end table
266
267 All this can make the @code{"@var{string}"} field quite long. All
268 versions of GDB, and some versions of DBX, can handle arbitrarily long
269 strings. But many versions of DBX cretinously limit the strings to
270 about 80 characters, so compilers which must work with such DBX's need
271 to split the @code{.stabs} directive into several @code{.stabs}
272 directives. Each stab duplicates exactly all but the
273 @code{"@var{string}"} field. The @code{"@var{string}"} field of
274 every stab except the last is marked as continued with a
275 double-backslash at the end. Removing the backslashes and concatenating
276 the @code{"@var{string}"} fields of each stab produces the original,
277 long string.
278
279 @node C example
280 @section A simple example in C source
281
282 To get the flavor of how stabs describe source information for a C
283 program, let's look at the simple program:
284
285 @example
286 main()
287 @{
288 printf("Hello world");
289 @}
290 @end example
291
292 When compiled with @samp{-g}, the program above yields the following
293 @file{.s} file. Line numbers have been added to make it easier to refer
294 to parts of the @file{.s} file in the description of the stabs that
295 follows.
296
297 @node Assembly code
298 @section The simple example at the assembly level
299
300 @example
301 1 gcc2_compiled.:
302 2 .stabs "/cygint/s1/users/jcm/play/",100,0,0,Ltext0
303 3 .stabs "hello.c",100,0,0,Ltext0
304 4 .text
305 5 Ltext0:
306 6 .stabs "int:t1=r1;-2147483648;2147483647;",128,0,0,0
307 7 .stabs "char:t2=r2;0;127;",128,0,0,0
308 8 .stabs "long int:t3=r1;-2147483648;2147483647;",128,0,0,0
309 9 .stabs "unsigned int:t4=r1;0;-1;",128,0,0,0
310 10 .stabs "long unsigned int:t5=r1;0;-1;",128,0,0,0
311 11 .stabs "short int:t6=r1;-32768;32767;",128,0,0,0
312 12 .stabs "long long int:t7=r1;0;-1;",128,0,0,0
313 13 .stabs "short unsigned int:t8=r1;0;65535;",128,0,0,0
314 14 .stabs "long long unsigned int:t9=r1;0;-1;",128,0,0,0
315 15 .stabs "signed char:t10=r1;-128;127;",128,0,0,0
316 16 .stabs "unsigned char:t11=r1;0;255;",128,0,0,0
317 17 .stabs "float:t12=r1;4;0;",128,0,0,0
318 18 .stabs "double:t13=r1;8;0;",128,0,0,0
319 19 .stabs "long double:t14=r1;8;0;",128,0,0,0
320 20 .stabs "void:t15=15",128,0,0,0
321 21 .align 4
322 22 LC0:
323 23 .ascii "Hello, world!\12\0"
324 24 .align 4
325 25 .global _main
326 26 .proc 1
327 27 _main:
328 28 .stabn 68,0,4,LM1
329 29 LM1:
330 30 !#PROLOGUE# 0
331 31 save %sp,-136,%sp
332 32 !#PROLOGUE# 1
333 33 call ___main,0
334 34 nop
335 35 .stabn 68,0,5,LM2
336 36 LM2:
337 37 LBB2:
338 38 sethi %hi(LC0),%o1
339 39 or %o1,%lo(LC0),%o0
340 40 call _printf,0
341 41 nop
342 42 .stabn 68,0,6,LM3
343 43 LM3:
344 44 LBE2:
345 45 .stabn 68,0,6,LM4
346 46 LM4:
347 47 L1:
348 48 ret
349 49 restore
350 50 .stabs "main:F1",36,0,0,_main
351 51 .stabn 192,0,0,LBB2
352 52 .stabn 224,0,0,LBE2
353 @end example
354
355 This simple ``hello world'' example demonstrates several of the stab
356 types used to describe C language source files.
357
358 @node Program structure
359 @chapter Encoding for the structure of the program
360
361 @menu
362 * Main Program:: Indicate what the main program is
363 * Source Files:: The path and name of the source file
364 * Line Numbers::
365 * Procedures::
366 * Block Structure::
367 @end menu
368
369 @node Main Program
370 @section Main Program
371
372 Most languages allow the main program to have any name. The
373 @code{N_MAIN} stab type is used for a stab telling the debugger what
374 name is used in this program. Only the name is significant; it will be
375 the name of a function which is the main program. Most C compilers do
376 not use this stab; they expect the debugger to simply assume that the
377 name is @samp{main}, but some C compilers emit an @code{N_MAIN} stab for
378 the @samp{main} function.
379
380 @node Source Files
381 @section The path and name of the source files
382
383 Before any other stabs occur, there must be a stab specifying the source
384 file. This information is contained in a symbol of stab type
385 @code{N_SO}; the string contains the name of the file. The value of the
386 symbol is the start address of portion of the text section corresponding
387 to that file.
388
389 With the Sun Solaris2 compiler, the @code{desc} field contains a
390 source-language code.
391
392 Some compilers (for example, gcc2 and SunOS4 @file{/bin/cc}) also
393 include the directory in which the source was compiled, in a second
394 @code{N_SO} symbol preceding the one containing the file name. This
395 symbol can be distinguished by the fact that it ends in a slash. Code
396 from the cfront C++ compiler can have additional @code{N_SO} symbols for
397 nonexistent source files after the @code{N_SO} for the real source file;
398 these are believed to contain no useful information.
399
400 For example:
401
402 @example
403 .stabs "/cygint/s1/users/jcm/play/",100,0,0,Ltext0 ; 100 is N_SO
404 .stabs "hello.c",100,0,0,Ltext0
405 .text
406 Ltext0:
407 @end example
408
409 Instead of @code{N_SO} symbols, XCOFF uses a @code{.file} assembler
410 directive which assembles to a standard COFF @code{.file} symbol;
411 explaining this in detail is outside the scope of this document.
412
413 There are several different schemes for dealing with include files: the
414 traditional @code{N_SOL} approach, Sun's @code{N_BINCL} scheme, and the
415 XCOFF @code{C_BINCL} (which despite the similar name has little in
416 common with @code{N_BINCL}).
417
418 An @code{N_SOL} symbol specifies which include file subsequent symbols
419 refer to. The string field is the name of the file and the value is the
420 text address corresponding to the start of the previous include file and
421 the start of this one. To specify the main source file again, use an
422 @code{N_SOL} symbol with the name of the main source file.
423
424 A @code{N_BINCL} symbol specifies the start of an include file. In an
425 object file, only the name is significant. The Sun linker puts data
426 into some of the other fields. The end of the include file is marked by
427 a @code{N_EINCL} symbol (which has no name field). In an ojbect file,
428 there is no significant data in the @code{N_EINCL} symbol; the Sun
429 linker puts data into some of the fields. @code{N_BINCL} and
430 @code{N_EINCL} can be nested. If the linker detects that two source
431 files have identical stabs with a @code{N_BINCL} and @code{N_EINCL} pair
432 (as will generally be the case for a header file), then it only puts out
433 the stabs once. Each additional occurance is replaced by an
434 @code{N_EXCL} symbol. I believe the Sun (SunOS4, not sure about
435 Solaris) linker is the only one which supports this feature.
436
437 For the start of an include file in XCOFF, use the @file{.bi} assembler
438 directive which generates a @code{C_BINCL} symbol. A @file{.ei}
439 directive, which generates a @code{C_EINCL} symbol, denotes the end of
440 the include file. Both directives are followed by the name of the
441 source file in quotes, which becomes the string for the symbol. The
442 value of each symbol, produced automatically by the assembler and
443 linker, is an offset into the executable which points to the beginning
444 (inclusive, as you'd expect) and end (inclusive, as you would not
445 expect) of the portion of the COFF linetable which corresponds to this
446 include file. @code{C_BINCL} and @code{C_EINCL} do not nest.
447
448 @node Line Numbers
449 @section Line Numbers
450
451 A @code{N_SLINE} symbol represents the start of a source line. The
452 @var{desc} field contains the line number and the @var{value} field
453 contains the code address for the start of that source line. On most
454 machines the address is absolute; for Sun's stabs-in-elf, it is relative
455 to the function in which the @code{N_SLINE} symbol occurs.
456
457 GNU documents @code{N_DSLINE} and @code{N_BSLINE} symbols for line
458 numbers in the data or bss segments, respectively. They are identical
459 to @code{N_SLINE} but are relocated differently by the linker. They
460 were intended to be used to describe the source location of a variable
461 declaration, but I believe that gcc2 actually puts the line number in
462 the desc field of the stab for the variable itself. GDB has been
463 ignoring these symbols (unless they contain a string field) at least
464 since GDB 3.5.
465
466 XCOFF uses COFF line numbers instead, which are outside the scope of
467 this document, ammeliorated by adequate marking of include files
468 (@pxref{Source Files}).
469
470 For single source lines that generate discontiguous code, such as flow
471 of control statements, there may be more than one line number entry for
472 the same source line. In this case there is a line number entry at the
473 start of each code range, each with the same line number.
474
475 @node Procedures
476 @section Procedures
477
478 All of the following stabs use the @samp{N_FUN} symbol type.
479
480 A function is represented by a @samp{F} symbol descriptor for a global
481 (extern) function, and @samp{f} for a static (local) function. The next
482 @samp{N_SLINE} symbol can be used to find the line number of the start
483 of the function. The value field is the address of the start of the
484 function (absolute for @code{a.out}; relative to the start of the file
485 for Sun's stabs-in-elf). The type information of the stab represents
486 the return type of the function; thus @samp{foo:f5} means that foo is a
487 function returning type 5.
488
489 The type information of the stab is optionally followed by type
490 information for each argument, with each argument preceded by @samp{;}.
491 An argument type of 0 means that additional arguments are being passed,
492 whose types and number may vary (@samp{...} in ANSI C). This extension
493 is used by Sun's Solaris compiler. GDB has tolerated it (i.e. at least
494 parsed the syntax, if not necessarily used the information) at least
495 since version 4.8; I don't know whether all versions of dbx will
496 tolerate it. The argument types given here are not merely redundant
497 with the symbols for the arguments themselves (@pxref{Parameters}), they
498 are the types of the arguments as they are passed, before any
499 conversions might take place. For example, if a C function which is
500 declared without a prototype takes a @code{float} argument, the value is
501 passed as a @code{double} but then converted to a @code{float}.
502 Debuggers need to use the types given in the arguments when printing
503 values, but if calling the function they need to use the types given in
504 the symbol defining the function.
505
506 If the return type and types of arguments of a function which is defined
507 in another source file are specified (i.e. a function prototype in ANSI
508 C), traditionally compilers emit no stab; the only way for the debugger
509 to find the information is if the source file where the function is
510 defined was also compiled with debugging symbols. As an extension the
511 Solaris compiler uses symbol descriptor @samp{P} followed by the return
512 type of the function, followed by the arguments, each preceded by
513 @samp{;}, as in a stab with symbol descriptor @samp{f} or @samp{F}.
514 This use of symbol descriptor @samp{P} can be distinguished from its use
515 for register parameters (@pxref{Parameters}) by the fact that it has
516 symbol type @code{N_FUN}.
517
518 The AIX documentation also defines symbol descriptor @samp{J} as an
519 internal function. I assume this means a function nested within another
520 function. It also says Symbol descriptor @samp{m} is a module in
521 Modula-2 or extended Pascal.
522
523 Procedures (functions which do not return values) are represented as
524 functions returning the void type in C. I don't see why this couldn't
525 be used for all languages (inventing a void type for this purpose if
526 necessary), but the AIX documentation defines @samp{I}, @samp{P}, and
527 @samp{Q} for internal, global, and static procedures, respectively.
528 These symbol descriptors are unusual in that they are not followed by
529 type information.
530
531 For any of the above symbol descriptors, after the symbol descriptor and
532 the type information, there is optionally a comma, followed by the name
533 of the procedure, followed by a comma, followed by a name specifying the
534 scope. The first name is local to the scope specified, and seems to be
535 redundant with the name of the symbol (before the @samp{:}). The name
536 specifying the scope is the name of a procedure specifying that scope.
537 This feature is used by @sc{gcc}, and presumably Pascal, Modula-2, etc.,
538 compilers, for nested functions.
539
540 If procedures are nested more than one level deep, only the immediately
541 containing scope is specified, for example:
542
543 @example
544 int
545 foo (int x)
546 @{
547 int bar (int y)
548 @{
549 int baz (int z)
550 @{
551 return x + y + z;
552 @}
553 return baz (x + 2 * y);
554 @}
555 return x + bar (3 * x);
556 @}
557 @end example
558
559 @noindent
560 produces the stabs:
561
562 @example
563 .stabs "baz:f1,baz,bar",36,0,0,_baz.15 # 36 == N_FUN
564 .stabs "bar:f1,bar,foo",36,0,0,_bar.12
565 .stabs "foo:F1",36,0,0,_foo
566 @end example
567
568 The stab representing a procedure is located immediately following the
569 code of the procedure. This stab is in turn directly followed by a
570 group of other stabs describing elements of the procedure. These other
571 stabs describe the procedure's parameters, its block local variables and
572 its block structure.
573
574 @example
575 48 ret
576 49 restore
577 @end example
578
579 The @code{.stabs} entry after this code fragment shows the @var{name} of
580 the procedure (@code{main}); the type descriptor @var{desc} (@code{F},
581 for a global procedure); a reference to the predefined type @code{int}
582 for the return type; and the starting @var{address} of the procedure.
583
584 Here is an exploded summary (with whitespace introduced for clarity),
585 followed by line 50 of our sample assembly output, which has this form:
586
587 @example
588 .stabs "@var{name}:
589 @var{desc} @r{(global proc @samp{F})}
590 @var{return_type_ref} @r{(int)}
591 ",N_FUN, NIL, NIL,
592 @var{address}
593 @end example
594
595 @example
596 50 .stabs "main:F1",36,0,0,_main
597 @end example
598
599 @node Block Structure
600 @section Block Structure
601
602 The program's block structure is represented by the @code{N_LBRAC} (left
603 brace) and the @code{N_RBRAC} (right brace) stab types. The variables
604 defined inside a block preceded the @code{N_LBRAC} symbol for most
605 compilers, including GCC. Other compilers, such as the Convex, Acorn
606 RISC machine, and Sun acc compilers, put the variables after the
607 @code{N_LBRAC} symbol. The values of the @code{N_LBRAC} and
608 @code{N_RBRAC} symbols are the start and end addresses of the code of
609 the block, respectively. For most machines, they are relative to the
610 starting address of this source file. For the Gould NP1, they are
611 absolute. For Sun's stabs-in-elf, they are relative to the function in
612 which they occur.
613
614 The @code{N_LBRAC} and @code{N_RBRAC} stabs that describe the block
615 scope of a procedure are located after the @code{N_FUN} stab that
616 represents the procedure itself.
617
618 Sun documents the @code{desc} field of @code{N_LBRAC} and
619 @code{N_RBRAC} symbols as containing the nesting level of the block.
620 However, dbx seems not to care, and GCC just always set @code{desc} to
621 zero.
622
623 @node Constants
624 @chapter Constants
625
626 The @samp{c} symbol descriptor indicates that this stab represents a
627 constant. This symbol descriptor is an exception to the general rule
628 that symbol descriptors are followed by type information. Instead, it
629 is followed by @samp{=} and one of the following:
630
631 @table @code
632 @item b @var{value}
633 Boolean constant. @var{value} is a numeric value; I assume it is 0 for
634 false or 1 for true.
635
636 @item c @var{value}
637 Character constant. @var{value} is the numeric value of the constant.
638
639 @item e @var{type-information} , @var{value}
640 Constant whose value can be represented as integral.
641 @var{type-information} is the type of the constant, as it would appear
642 after a symbol descriptor (@pxref{Stabs Format}). @var{value} is the
643 numeric value of the constant. GDB 4.9 does not actually get the right
644 value if @var{value} does not fit in a host @code{int}, but it does not
645 do anything violent, and future debuggers could be extended to accept
646 integers of any size (whether unsigned or not). This constant type is
647 usually documented as being only for enumeration constants, but GDB has
648 never imposed that restriction; I don't know about other debuggers.
649
650 @item i @var{value}
651 Integer constant. @var{value} is the numeric value. The type is some
652 sort of generic integer type (for GDB, a host @code{int}); to specify
653 the type explicitly, use @samp{e} instead.
654
655 @item r @var{value}
656 Real constant. @var{value} is the real value, which can be @samp{INF}
657 (optionally preceded by a sign) for infinity, @samp{QNAN} for a quiet
658 NaN (not-a-number), or @samp{SNAN} for a signalling NaN. If it is a
659 normal number the format is that accepted by the C library function
660 @code{atof}.
661
662 @item s @var{string}
663 String constant. @var{string} is a string enclosed in either @samp{'}
664 (in which case @samp{'} characters within the string are represented as
665 @samp{\'} or @samp{"} (in which case @samp{"} characters within the
666 string are represented as @samp{\"}).
667
668 @item S @var{type-information} , @var{elements} , @var{bits} , @var{pattern}
669 Set constant. @var{type-information} is the type of the constant, as it
670 would appear after a symbol descriptor (@pxref{Stabs Format}).
671 @var{elements} is the number of elements in the set (Does this means
672 how many bits of @var{pattern} are actually used, which would be
673 redundant with the type, or perhaps the number of bits set in
674 @var{pattern}? I don't get it), @var{bits} is the number of bits in the
675 constant (meaning it specifies the length of @var{pattern}, I think),
676 and @var{pattern} is a hexadecimal representation of the set. AIX
677 documentation refers to a limit of 32 bytes, but I see no reason why
678 this limit should exist. This form could probably be used for arbitrary
679 constants, not just sets; the only catch is that @var{pattern} should be
680 understood to be target, not host, byte order and format.
681 @end table
682
683 The boolean, character, string, and set constants are not supported by
684 GDB 4.9, but it will ignore them. GDB 4.8 and earlier gave an error
685 message and refused to read symbols from the file containing the
686 constants.
687
688 This information is followed by @samp{;}.
689
690 @node Example
691 @chapter A Comprehensive Example in C
692
693 Now we'll examine a second program, @code{example2}, which builds on the
694 first example to introduce the rest of the stab types, symbol
695 descriptors, and type descriptors used in C.
696 @xref{Example2.c} for the complete @file{.c} source,
697 and @pxref{Example2.s} for the @file{.s} assembly code.
698 This description includes parts of those files.
699
700 @section Flow of control and nested scopes
701
702 @table @strong
703 @item Directive:
704 @code{.stabn}
705 @item Types:
706 @code{N_SLINE}, @code{N_LBRAC}, @code{N_RBRAC} (cont.)
707 @end table
708
709 Consider the body of @code{main}, from @file{example2.c}. It shows more
710 about how @code{N_SLINE}, @code{N_RBRAC}, and @code{N_LBRAC} stabs are used.
711
712 @example
713 20 @{
714 21 static float s_flap;
715 22 int times;
716 23 for (times=0; times < s_g_repeat; times++)@{
717 24 int inner;
718 25 printf ("Hello world\n");
719 26 @}
720 27 @};
721 @end example
722
723 Here we have a single source line, the @samp{for} line, that generates
724 non-linear flow of control, and non-contiguous code. In this case, an
725 @code{N_SLINE} stab with the same line number proceeds each block of
726 non-contiguous code generated from the same source line.
727
728 The example also shows nested scopes. The @code{N_LBRAC} and
729 @code{N_LBRAC} stabs that describe block structure are nested in the
730 same order as the corresponding code blocks, those of the for loop
731 inside those for the body of main.
732
733 @noindent
734 This is the label for the @code{N_LBRAC} (left brace) stab marking the
735 start of @code{main}.
736
737 @example
738 57 LBB2:
739 @end example
740
741 @noindent
742 In the first code range for C source line 23, the @code{for} loop
743 initialize and test, @code{N_SLINE} (68) records the line number:
744
745 @example
746 .stabn N_SLINE, NIL,
747 @var{line},
748 @var{address}
749
750 58 .stabn 68,0,23,LM2
751 59 LM2:
752 60 st %g0,[%fp-20]
753 61 L2:
754 62 sethi %hi(_s_g_repeat),%o0
755 63 ld [%fp-20],%o1
756 64 ld [%o0+%lo(_s_g_repeat)],%o0
757 65 cmp %o1,%o0
758 66 bge L3
759 67 nop
760
761 @exdent label for the @code{N_LBRAC} (start block) marking the start of @code{for} loop
762
763 68 LBB3:
764 69 .stabn 68,0,25,LM3
765 70 LM3:
766 71 sethi %hi(LC0),%o1
767 72 or %o1,%lo(LC0),%o0
768 73 call _printf,0
769 74 nop
770 75 .stabn 68,0,26,LM4
771 76 LM4:
772
773 @exdent label for the @code{N_RBRAC} (end block) stab marking the end of the @code{for} loop
774
775 77 LBE3:
776 @end example
777
778 @noindent
779 Now we come to the second code range for source line 23, the @code{for}
780 loop increment and return. Once again, @code{N_SLINE} (68) records the
781 source line number:
782
783 @example
784 .stabn, N_SLINE, NIL,
785 @var{line},
786 @var{address}
787
788 78 .stabn 68,0,23,LM5
789 79 LM5:
790 80 L4:
791 81 ld [%fp-20],%o0
792 82 add %o0,1,%o1
793 83 st %o1,[%fp-20]
794 84 b,a L2
795 85 L3:
796 86 .stabn 68,0,27,LM6
797 87 LM6:
798
799 @exdent label for the @code{N_RBRAC} (end block) stab marking the end of the @code{for} loop
800
801 88 LBE2:
802 89 .stabn 68,0,27,LM7
803 90 LM7:
804 91 L1:
805 92 ret
806 93 restore
807 94 .stabs "main:F1",36,0,0,_main
808 95 .stabs "argc:p1",160,0,0,68
809 96 .stabs "argv:p20=*21=*2",160,0,0,72
810 97 .stabs "s_flap:V12",40,0,0,_s_flap.0
811 98 .stabs "times:1",128,0,0,-20
812 @end example
813
814 @noindent
815 Here is an illustration of stabs describing nested scopes. The scope
816 nesting is reflected in the nested bracketing stabs (@code{N_LBRAC},
817 192, appears here).
818
819 @example
820 .stabn N_LBRAC,NIL,NIL,
821 @var{block-start-address}
822
823 99 .stabn 192,0,0,LBB2 ## begin proc label
824 100 .stabs "inner:1",128,0,0,-24
825 101 .stabn 192,0,0,LBB3 ## begin for label
826 @end example
827
828 @noindent
829 @code{N_RBRAC} (224), ``right brace'' ends a lexical block (scope).
830
831 @example
832 .stabn N_RBRAC,NIL,NIL,
833 @var{block-end-address}
834
835 102 .stabn 224,0,0,LBE3 ## end for label
836 103 .stabn 224,0,0,LBE2 ## end proc label
837 @end example
838
839 @node Variables
840 @chapter Variables
841
842 @menu
843 * Stack Variables:: Variables allocated on the stack.
844 * Global Variables:: Variables used by more than one source file.
845 * Register variables:: Variables in registers.
846 * Common Blocks:: Variables statically allocated together.
847 * Statics:: Variables local to one source file.
848 * Parameters:: Variables for arguments to functions.
849 @end menu
850
851 @node Stack Variables
852 @section Automatic Variables Allocated on the Stack
853
854 If a variable is declared whose scope is local to a function and whose
855 lifetime is only as long as that function executes (C calls such
856 variables automatic), they can be allocated in a register
857 (@pxref{Register variables}) or on the stack.
858
859 For variables allocated on the stack, each variable has a stab with the
860 symbol descriptor omitted. Since type information should being with a
861 digit, @samp{-}, or @samp{(}, only digits, @samp{-}, and @samp{(} are
862 precluded from being used for symbol descriptors by this fact. However,
863 the Acorn RISC machine (ARM) is said to get this wrong: it puts out a
864 mere type definition here, without the preceding
865 @code{@var{typenumber}=}. This is a bad idea; there is no guarantee
866 that type descriptors are distinct from symbol descriptors.
867
868 These stabs have the @code{N_LSYM} stab type. The value of the stab is
869 the offset of the variable within the local variables. On most machines
870 this is an offset from the frame pointer and is negative.
871
872 The stab for an automatic variable is located just before the
873 @code{N_LBRAC} stab describing the open brace of the block to which it
874 is scoped, except for some compilers which put the automatic variables
875 after the @code{N_LBRAC} (see @code{VARIABLES_INSIDE_BLOCK} in GDB).
876
877 For example, the following C code
878
879 @example
880 int
881 main ()
882 @{
883 int x;
884 @}
885 @end example
886
887 produces the following stabs
888
889 @example
890 .stabs "main:F1",36,0,0,_main # N_FUN
891 .stabs "x:1",128,0,0,-12 # N_LSYM
892 .stabn 192,0,0,LBB2 # N_LBRAC
893 .stabn 224,0,0,LBE2 # N_RBRAC
894 @end example
895
896 @xref{Procedures} for more information on the @samp{F} symbol desciptor,
897 and @ref{Block Structure} for more information on the @code{N_LBRAC} and
898 @code{N_RBRAC} symbols.
899
900 @node Global Variables
901 @section Global Variables
902
903 @table @strong
904 @item Directive:
905 @code{.stabs}
906 @item Type:
907 @code{N_GSYM}
908 @item Symbol Descriptor:
909 @code{G}
910 @end table
911
912 Global variables are represented by the @code{N_GSYM} stab type. The symbol
913 descriptor, following the colon in the string field, is @samp{G}. Following
914 the @samp{G} is a type reference or type definition. In this example it is a
915 type reference to the basic C type, @code{char}. The first source line in
916 @file{example2.c},
917
918 @example
919 1 char g_foo = 'c';
920 @end example
921
922 @noindent
923 yields the following stab. The stab immediately precedes the code that
924 allocates storage for the variable it describes.
925
926 @example
927 @exdent @code{N_GSYM} (32): global symbol
928
929 .stabs "@var{name}:
930 @var{descriptor}
931 @var{type-ref}",
932 N_GSYM, NIL, NIL, NIL
933
934 21 .stabs "g_foo:G2",32,0,0,0
935 22 .global _g_foo
936 23 .data
937 24 _g_foo:
938 25 .byte 99
939 @end example
940
941 The address of the variable represented by the @code{N_GSYM} is not contained
942 in the @code{N_GSYM} stab. The debugger gets this information from the
943 external symbol for the global variable.
944
945 @node Register variables
946 @section Register variables
947
948 @c According to an old version of this manual, AIX uses C_RPSYM instead
949 @c of C_RSYM. I am skeptical; this should be verified.
950 Register variables have their own stab type, @code{N_RSYM}, and their
951 own symbol descriptor, @code{r}. The stab's value field contains the
952 number of the register where the variable data will be stored.
953
954 The value is the register number.
955
956 AIX defines a separate symbol descriptor @samp{d} for floating point
957 registers. This seems unnecessary; why not just just give floating
958 point registers different register numbers? I have not verified whether
959 the compiler actually uses @samp{d}.
960
961 If the register is explicitly allocated to a global variable, but not
962 initialized, as in
963
964 @example
965 register int g_bar asm ("%g5");
966 @end example
967
968 the stab may be emitted at the end of the object file, with
969 the other bss symbols.
970
971 @node Common Blocks
972 @section Common Blocks
973
974 A common block is a statically allocated section of memory which can be
975 referred to by several source files. It may contain several variables.
976 I believe @sc{fortran} is the only language with this feature. A
977 @code{N_BCOMM} stab begins a common block and an @code{N_ECOMM} stab
978 ends it. The only thing which is significant about these two stabs is
979 their name, which can be used to look up a normal (non-debugging) symbol
980 which gives the address of the common block. Then each stab between the
981 @code{N_BCOMM} and the @code{N_ECOMM} specifies a member of that common
982 block; its value is the offset within the common block of that variable.
983 The @code{N_ECOML} stab type is documented for this purpose, but Sun's
984 @sc{fortran} compiler uses @code{N_GSYM} instead. The test case I
985 looked at had a common block local to a function and it used the
986 @samp{V} symbol descriptor; I assume one would use @samp{S} if not local
987 to a function (that is, if a common block @emph{can} be anything other
988 than local to a function).
989
990 @node Statics
991 @section Static Variables
992
993 Initialized static variables are represented by the @samp{S} and
994 @samp{V} symbol descriptors. @samp{S} means file scope static, and
995 @samp{V} means procedure scope static.
996
997 @c This is probably not worth mentioning; it is only true on the sparc
998 @c for `double' variables which although declared const are actually in
999 @c the data segment (the text segment can't guarantee 8 byte alignment).
1000 @c (although gcc
1001 @c 2.4.5 has a bug in that it uses @code{N_FUN}, so neither dbx nor gdb can
1002 @c find the variables)
1003 In a.out files, @code{N_STSYM} means the data segment, @code{N_FUN}
1004 means the text segment, and @code{N_LCSYM} means the bss segment.
1005
1006 In xcoff files, each symbol has a section number, so the stab type
1007 need not indicate the segment.
1008
1009 In ecoff files, the storage class is used to specify the section, so the
1010 stab type need not indicate the segment.
1011
1012 @c In ELF files, it apparently is a big mess. See kludge in dbxread.c
1013 @c in GDB. FIXME: Investigate where this kludge comes from.
1014 @c
1015 @c This is the place to mention N_ROSYM; I'd rather do so once I can
1016 @c coherently explain how this stuff works for stabs-in-elf.
1017 @c
1018 For example, the source lines
1019
1020 @example
1021 static const int var_const = 5;
1022 static int var_init = 2;
1023 static int var_noinit;
1024 @end example
1025
1026 @noindent
1027 yield the following stabs:
1028
1029 @example
1030 .stabs "var_const:S1",36,0,0,_var_const ; @r{36 = N_FUN}
1031 . . .
1032 .stabs "var_init:S1",38,0,0,_var_init ; @r{38 = N_STSYM}
1033 . . .
1034 .stabs "var_noinit:S1",40,0,0,_var_noinit ; @r{40 = N_LCSYM}
1035 @end example
1036
1037 @node Parameters
1038 @section Parameters
1039
1040 Parameters to a function are represented by a stab (or sometimes two,
1041 see below) for each parameter. The stabs are in the order in which the
1042 debugger should print the parameters (i.e. the order in which the
1043 parameters are declared in the source file).
1044
1045 The symbol descriptor @samp{p} is used to refer to parameters which are
1046 in the arglist. Symbols have symbol type @samp{N_PSYM}. The value of
1047 the symbol is the offset relative to the argument list.
1048
1049 If the parameter is passed in a register, then the traditional way to do
1050 this is to provide two symbols for each argument:
1051
1052 @example
1053 .stabs "arg:p1" . . . ; N_PSYM
1054 .stabs "arg:r1" . . . ; N_RSYM
1055 @end example
1056
1057 Debuggers are expected to use the second one to find the value, and the
1058 first one to know that it is an argument.
1059
1060 Because this is kind of ugly, some compilers use symbol descriptor
1061 @samp{P} or @samp{R} to indicate an argument which is in a register.
1062 The symbol value is the register number. @samp{P} and @samp{R} mean the
1063 same thing, the difference is that @samp{P} is a GNU invention and
1064 @samp{R} is an IBM (xcoff) invention. As of version 4.9, GDB should
1065 handle either one. Symbol type @samp{C_RPSYM} is used with @samp{R} and
1066 @samp{N_RSYM} is used with @samp{P}.
1067
1068 According to the AIX documentation symbol descriptor @samp{D} is for a
1069 parameter passed in a floating point register. This seems
1070 unnecessary---why not just use @samp{R} with a register number which
1071 indicates that it's a floating point register? I haven't verified
1072 whether the system actually does what the documentation indicates.
1073
1074 There is at least one case where GCC uses a @samp{p}/@samp{r} pair
1075 rather than @samp{P}; this is where the argument is passed in the
1076 argument list and then loaded into a register.
1077
1078 On the sparc and hppa, for a @samp{P} symbol whose type is a structure
1079 or union, the register contains the address of the structure. On the
1080 sparc, this is also true of a @samp{p}/@samp{r} pair (using Sun cc) or a
1081 @samp{p} symbol. However, if a (small) structure is really in a
1082 register, @samp{r} is used. And, to top it all off, on the hppa it
1083 might be a structure which was passed on the stack and loaded into a
1084 register and for which there is a @samp{p}/@samp{r} pair! I believe
1085 that symbol descriptor @samp{i} is supposed to deal with this case, (it
1086 is said to mean "value parameter by reference, indirect access", I don't
1087 know the source for this information) but I don't know details or what
1088 compilers or debuggers use it, if any (not GDB or GCC). It is not clear
1089 to me whether this case needs to be dealt with differently than
1090 parameters passed by reference (see below).
1091
1092 There is another case similar to an argument in a register, which is an
1093 argument which is actually stored as a local variable. Sometimes this
1094 happens when the argument was passed in a register and then the compiler
1095 stores it as a local variable. If possible, the compiler should claim
1096 that it's in a register, but this isn't always done. Some compilers use
1097 the pair of symbols approach described above ("arg:p" followed by
1098 "arg:"); this includes gcc1 (not gcc2) on the sparc when passing a small
1099 structure and gcc2 (sometimes) when the argument type is float and it is
1100 passed as a double and converted to float by the prologue (in the latter
1101 case the type of the "arg:p" symbol is double and the type of the "arg:"
1102 symbol is float). GCC, at least on the 960, uses a single @samp{p}
1103 symbol descriptor for an argument which is stored as a local variable
1104 but uses @samp{N_LSYM} instead of @samp{N_PSYM}. In this case the value
1105 of the symbol is an offset relative to the local variables for that
1106 function, not relative to the arguments (on some machines those are the
1107 same thing, but not on all).
1108
1109 If the parameter is passed by reference (e.g. Pascal VAR parameters),
1110 then type symbol descriptor is @samp{v} if it is in the argument list,
1111 or @samp{a} if it in a register. Other than the fact that these contain
1112 the address of the parameter other than the parameter itself, they are
1113 identical to @samp{p} and @samp{R}, respectively. I believe @samp{a} is
1114 an AIX invention; @samp{v} is supported by all stabs-using systems as
1115 far as I know.
1116
1117 @c Is this paragraph correct? It is based on piecing together patchy
1118 @c information and some guesswork
1119 Conformant arrays refer to a feature of Modula-2, and perhaps other
1120 languages, in which the size of an array parameter is not known to the
1121 called function until run-time. Such parameters have two stabs, a
1122 @samp{x} for the array itself, and a @samp{C}, which represents the size
1123 of the array. The value of the @samp{x} stab is the offset in the
1124 argument list where the address of the array is stored (it this right?
1125 it is a guess); the value of the @samp{C} stab is the offset in the
1126 argument list where the size of the array (in elements? in bytes?) is
1127 stored.
1128
1129 The following are also said to go with @samp{N_PSYM}:
1130
1131 @example
1132 "name" -> "param_name:#type"
1133 -> pP (<<??>>)
1134 -> pF FORTRAN function parameter
1135 -> X (function result variable)
1136 -> b (based variable)
1137
1138 value -> offset from the argument pointer (positive).
1139 @end example
1140
1141 As a simple example, the code
1142
1143 @example
1144 main (argc, argv)
1145 int argc;
1146 char **argv;
1147 @{
1148 @end example
1149
1150 produces the stabs
1151
1152 @example
1153 .stabs "main:F1",36,0,0,_main ; 36 is N_FUN
1154 .stabs "argc:p1",160,0,0,68 ; 160 is N_PSYM
1155 .stabs "argv:p20=*21=*2",160,0,0,72
1156 @end example
1157
1158 The type definition of argv is interesting because it contains several
1159 type definitions. Type 21 is pointer to type 2 (char) and argv (type 20) is
1160 pointer to type 21.
1161
1162 @node Types
1163 @chapter Type Definitions
1164
1165 Now let's look at some variable definitions involving complex types.
1166 This involves understanding better how types are described. In the
1167 examples so far types have been described as references to previously
1168 defined types or defined in terms of subranges of or pointers to
1169 previously defined types. The section that follows will talk about
1170 the various other type descriptors that may follow the = sign in a
1171 type definition.
1172
1173 @menu
1174 * Builtin types:: Integers, floating point, void, etc.
1175 * Miscellaneous Types:: Pointers, sets, files, etc.
1176 * Cross-references:: Referring to a type not yet defined.
1177 * Subranges:: A type with a specific range.
1178 * Arrays:: An aggregate type of same-typed elements.
1179 * Strings:: Like an array but also has a length.
1180 * Enumerations:: Like an integer but the values have names.
1181 * Structures:: An aggregate type of different-typed elements.
1182 * Typedefs:: Giving a type a name.
1183 * Unions:: Different types sharing storage.
1184 * Function Types::
1185 @end menu
1186
1187 @node Builtin types
1188 @section Builtin types
1189
1190 Certain types are built in (@code{int}, @code{short}, @code{void},
1191 @code{float}, etc.); the debugger recognizes these types and knows how
1192 to handle them. Thus don't be surprised if some of the following ways
1193 of specifying builtin types do not specify everything that a debugger
1194 would need to know about the type---in some cases they merely specify
1195 enough information to distinguish the type from other types.
1196
1197 The traditional way to define builtin types is convolunted, so new ways
1198 have been invented to describe them. Sun's ACC uses the @samp{b} and
1199 @samp{R} type descriptors, and IBM uses negative type numbers. GDB can
1200 accept all three, as of version 4.8; dbx just accepts the traditional
1201 builtin types and perhaps one of the other two formats.
1202
1203 @menu
1204 * Traditional Builtin Types:: Put on your seatbelts and prepare for kludgery
1205 * Builtin Type Descriptors:: Builtin types with special type descriptors
1206 * Negative Type Numbers:: Builtin types using negative type numbers
1207 @end menu
1208
1209 @node Traditional Builtin Types
1210 @subsection Traditional Builtin types
1211
1212 Often types are defined as subranges of themselves. If the array bounds
1213 can fit within an @code{int}, then they are given normally. For example:
1214
1215 @example
1216 .stabs "int:t1=r1;-2147483648;2147483647;",128,0,0,0 ; 128 is N_LSYM
1217 .stabs "char:t2=r2;0;127;",128,0,0,0
1218 @end example
1219
1220 Builtin types can also be described as subranges of @code{int}:
1221
1222 @example
1223 .stabs "unsigned short:t6=r1;0;65535;",128,0,0,0
1224 @end example
1225
1226 If the lower bound of a subrange is 0 and the upper bound is -1, it
1227 means that the type is an unsigned integral type whose bounds are too
1228 big to describe in an int. Traditionally this is only used for
1229 @code{unsigned int} and @code{unsigned long}; GCC also sometimes uses it
1230 for @code{long long} and @code{unsigned long long}, and the only way to
1231 tell those types apart is to look at their names. On other machines GCC
1232 puts out bounds in octal, with a leading 0. In this case a negative
1233 bound consists of a number which is a 1 bit followed by a bunch of 0
1234 bits, and a positive bound is one in which a bunch of bits are 1.
1235
1236 @example
1237 .stabs "unsigned int:t4=r1;0;-1;",128,0,0,0
1238 .stabs "long long int:t7=r1;0;-1;",128,0,0,0
1239 @end example
1240
1241 If the lower bound of a subrange is 0 and the upper bound is negative,
1242 it means that it is an unsigned integral type whose size in bytes is the
1243 absolute value of the upper bound. I believe this is a Convex
1244 convention for @code{unsigned long long}.
1245
1246 If the lower bound of a subrange is negative and the upper bound is 0,
1247 it means that the type is a signed integral type whose size in bytes is
1248 the absolute value of the lower bound. I believe this is a Convex
1249 convention for @code{long long}. To distinguish this from a legitimate
1250 subrange, the type should be a subrange of itself. I'm not sure whether
1251 this is the case for Convex.
1252
1253 If the upper bound of a subrange is 0, it means that this is a floating
1254 point type, and the lower bound of the subrange indicates the number of
1255 bytes in the type:
1256
1257 @example
1258 .stabs "float:t12=r1;4;0;",128,0,0,0
1259 .stabs "double:t13=r1;8;0;",128,0,0,0
1260 @end example
1261
1262 However, GCC writes @code{long double} the same way it writes
1263 @code{double}; the only way to distinguish them is by the name:
1264
1265 @example
1266 .stabs "long double:t14=r1;8;0;",128,0,0,0
1267 @end example
1268
1269 Complex types are defined the same way as floating-point types; the only
1270 way to distinguish a single-precision complex from a double-precision
1271 floating-point type is by the name.
1272
1273 The C @code{void} type is defined as itself:
1274
1275 @example
1276 .stabs "void:t15=15",128,0,0,0
1277 @end example
1278
1279 I'm not sure how a boolean type is represented.
1280
1281 @node Builtin Type Descriptors
1282 @subsection Defining Builtin Types using Builtin Type Descriptors
1283
1284 There are various type descriptors to define builtin types:
1285
1286 @table @code
1287 @c FIXME: clean up description of width and offset, once we figure out
1288 @c what they mean
1289 @item b @var{signed} @var{char-flag} @var{width} ; @var{offset} ; @var{nbits} ;
1290 Define an integral type. @var{signed} is @samp{u} for unsigned or
1291 @samp{s} for signed. @var{char-flag} is @samp{c} which indicates this
1292 is a character type, or is omitted. I assume this is to distinguish an
1293 integral type from a character type of the same size, for example it
1294 might make sense to set it for the C type @code{wchar_t} so the debugger
1295 can print such variables differently (Solaris does not do this). Sun
1296 sets it on the C types @code{signed char} and @code{unsigned char} which
1297 arguably is wrong. @var{width} and @var{offset} appear to be for small
1298 objects stored in larger ones, for example a @code{short} in an
1299 @code{int} register. @var{width} is normally the number of bytes in the
1300 type. @var{offset} seems to always be zero. @var{nbits} is the number
1301 of bits in the type.
1302
1303 Note that type descriptor @samp{b} used for builtin types conflicts with
1304 its use for Pascal space types (@pxref{Miscellaneous Types}); they can
1305 be distinguished because the character following the type descriptor
1306 will be a digit, @samp{(}, or @samp{-} for a Pascal space type, or
1307 @samp{u} or @samp{s} for a builtin type.
1308
1309 @item w
1310 Documented by AIX to define a wide character type, but their compiler
1311 actually uses negative type numbers (@pxref{Negative Type Numbers}).
1312
1313 @item R @var{fp_type} ; @var{bytes} ;
1314 Define a floating point type. @var{fp_type} has one of the following values:
1315
1316 @table @code
1317 @item 1 (NF_SINGLE)
1318 IEEE 32-bit (single precision) floating point format.
1319
1320 @item 2 (NF_DOUBLE)
1321 IEEE 64-bit (double precision) floating point format.
1322
1323 @item 3 (NF_COMPLEX)
1324 @item 4 (NF_COMPLEX16)
1325 @item 5 (NF_COMPLEX32)
1326 @c "GDB source" really means @file{include/aout/stab_gnu.h}, but trying
1327 @c to put that here got an overfull hbox.
1328 These are for complex numbers. A comment in the GDB source describes
1329 them as Fortran complex, double complex, and complex*16, respectively,
1330 but what does that mean? (i.e. Single precision? Double precison?).
1331
1332 @item 6 (NF_LDOUBLE)
1333 Long double. This should probably only be used for Sun format long
1334 double, and new codes should be used for other floating point formats
1335 (NF_DOUBLE can be used if a long double is really just an IEEE double,
1336 of course).
1337 @end table
1338
1339 @var{bytes} is the number of bytes occupied by the type. This allows a
1340 debugger to perform some operations with the type even if it doesn't
1341 understand @var{fp_code}.
1342
1343 @item g @var{type-information} ; @var{nbits}
1344 Documented by AIX to define a floating type, but their compiler actually
1345 uses negative type numbers (@pxref{Negative Type Numbers}).
1346
1347 @item c @var{type-information} ; @var{nbits}
1348 Documented by AIX to define a complex type, but their compiler actually
1349 uses negative type numbers (@pxref{Negative Type Numbers}).
1350 @end table
1351
1352 The C @code{void} type is defined as a signed integral type 0 bits long:
1353 @example
1354 .stabs "void:t19=bs0;0;0",128,0,0,0
1355 @end example
1356 The Solaris compiler seems to omit the trailing semicolon in this case.
1357 Getting sloppy in this way is not a swift move because if a type is
1358 embedded in a more complex expression it is necessary to be able to tell
1359 where it ends.
1360
1361 I'm not sure how a boolean type is represented.
1362
1363 @node Negative Type Numbers
1364 @subsection Negative Type numbers
1365
1366 Since the debugger knows about the builtin types anyway, the idea of
1367 negative type numbers is simply to give a special type number which
1368 indicates the built in type. There is no stab defining these types.
1369
1370 I'm not sure whether anyone has tried to define what this means if
1371 @code{int} can be other than 32 bits (or other types can be other than
1372 their customary size). If @code{int} has exactly one size for each
1373 architecture, then it can be handled easily enough, but if the size of
1374 @code{int} can vary according the compiler options, then it gets hairy.
1375 The best way to do this would be to define separate negative type
1376 numbers for 16-bit @code{int} and 32-bit @code{int}; therefore I have
1377 indicated below the customary size (and other format information) for
1378 each type. The information below is currently correct because AIX on
1379 the RS6000 is the only system which uses these type numbers. If these
1380 type numbers start to get used on other systems, I suspect the correct
1381 thing to do is to define a new number in cases where a type does not
1382 have the size and format indicated below (or avoid negative type numbers
1383 in these cases).
1384
1385 Also note that part of the definition of the negative type number is
1386 the name of the type. Types with identical size and format but
1387 different names have different negative type numbers.
1388
1389 @table @code
1390 @item -1
1391 @code{int}, 32 bit signed integral type.
1392
1393 @item -2
1394 @code{char}, 8 bit type holding a character. Both GDB and dbx on AIX
1395 treat this as signed. GCC uses this type whether @code{char} is signed
1396 or not, which seems like a bad idea. The AIX compiler (xlc) seems to
1397 avoid this type; it uses -5 instead for @code{char}.
1398
1399 @item -3
1400 @code{short}, 16 bit signed integral type.
1401
1402 @item -4
1403 @code{long}, 32 bit signed integral type.
1404
1405 @item -5
1406 @code{unsigned char}, 8 bit unsigned integral type.
1407
1408 @item -6
1409 @code{signed char}, 8 bit signed integral type.
1410
1411 @item -7
1412 @code{unsigned short}, 16 bit unsigned integral type.
1413
1414 @item -8
1415 @code{unsigned int}, 32 bit unsigned integral type.
1416
1417 @item -9
1418 @code{unsigned}, 32 bit unsigned integral type.
1419
1420 @item -10
1421 @code{unsigned long}, 32 bit unsigned integral type.
1422
1423 @item -11
1424 @code{void}, type indicating the lack of a value.
1425
1426 @item -12
1427 @code{float}, IEEE single precision.
1428
1429 @item -13
1430 @code{double}, IEEE double precision.
1431
1432 @item -14
1433 @code{long double}, IEEE double precision. The compiler claims the size
1434 will increase in a future release, and for binary compatibility you have
1435 to avoid using @code{long double}. I hope when they increase it they
1436 use a new negative type number.
1437
1438 @item -15
1439 @code{integer}. 32 bit signed integral type.
1440
1441 @item -16
1442 @code{boolean}. 32 bit type. How is the truth value encoded? Is it
1443 the least significant bit or is it a question of whether the whole value
1444 is zero or non-zero?
1445
1446 @item -17
1447 @code{short real}. IEEE single precision.
1448
1449 @item -18
1450 @code{real}. IEEE double precision.
1451
1452 @item -19
1453 @code{stringptr}. @xref{Strings}.
1454
1455 @item -20
1456 @code{character}, 8 bit unsigned character type.
1457
1458 @item -21
1459 @code{logical*1}, 8 bit type. This @sc{fortran} type has a split
1460 personality in that it is used for boolean variables, but can also be
1461 used for unsigned integers. 0 is false, 1 is true, and other values are
1462 non-boolean.
1463
1464 @item -22
1465 @code{logical*2}, 16 bit type. This @sc{fortran} type has a split
1466 personality in that it is used for boolean variables, but can also be
1467 used for unsigned integers. 0 is false, 1 is true, and other values are
1468 non-boolean.
1469
1470 @item -23
1471 @code{logical*4}, 32 bit type. This @sc{fortran} type has a split
1472 personality in that it is used for boolean variables, but can also be
1473 used for unsigned integers. 0 is false, 1 is true, and other values are
1474 non-boolean.
1475
1476 @item -24
1477 @code{logical}, 32 bit type. This @sc{fortran} type has a split
1478 personality in that it is used for boolean variables, but can also be
1479 used for unsigned integers. 0 is false, 1 is true, and other values are
1480 non-boolean.
1481
1482 @item -25
1483 @code{complex}. A complex type consisting of two IEEE single-precision
1484 floating point values.
1485
1486 @item -26
1487 @code{complex}. A complex type consisting of two IEEE double-precision
1488 floating point values.
1489
1490 @item -27
1491 @code{integer*1}, 8 bit signed integral type.
1492
1493 @item -28
1494 @code{integer*2}, 16 bit signed integral type.
1495
1496 @item -29
1497 @code{integer*4}, 32 bit signed integral type.
1498
1499 @item -30
1500 @code{wchar}. Wide character, 16 bits wide, unsigned (what format?
1501 Unicode?).
1502 @end table
1503
1504 @node Miscellaneous Types
1505 @section Miscellaneous Types
1506
1507 @table @code
1508 @item b @var{type-information} ; @var{bytes}
1509 Pascal space type. This is documented by IBM; what does it mean?
1510
1511 Note that this use of the @samp{b} type descriptor can be distinguished
1512 from its use for builtin integral types (@pxref{Builtin Type
1513 Descriptors}) because the character following the type descriptor is
1514 always a digit, @samp{(}, or @samp{-}.
1515
1516 @item B @var{type-information}
1517 A volatile-qualified version of @var{type-information}. This is a Sun
1518 extension. A volatile-qualified type means that references and stores
1519 to a variable of that type must not be optimized or cached; they must
1520 occur as the user specifies them.
1521
1522 @item d @var{type-information}
1523 File of type @var{type-information}. As far as I know this is only used
1524 by Pascal.
1525
1526 @item k @var{type-information}
1527 A const-qualified version of @var{type-information}. This is a Sun
1528 extension. A const-qualified type means that a variable of this type
1529 cannot be modified.
1530
1531 @item M @var{type-information} ; @var{length}
1532 Multiple instance type. The type seems to composed of @var{length}
1533 repetitions of @var{type-information}, for example @code{character*3} is
1534 represented by @samp{M-2;3}, where @samp{-2} is a reference to a
1535 character type (@pxref{Negative Type Numbers}). I'm not sure how this
1536 differs from an array. This appears to be a FORTRAN feature.
1537 @var{length} is a bound, like those in range types, @xref{Subranges}.
1538
1539 @item S @var{type-information}
1540 Pascal set type. @var{type-information} must be a small type such as an
1541 enumeration or a subrange, and the type is a bitmask whose length is
1542 specified by the number of elements in @var{type-information}.
1543
1544 @item * @var{type-information}
1545 Pointer to @var{type-information}.
1546 @end table
1547
1548 @node Cross-references
1549 @section Cross-references to other types
1550
1551 If a type is used before it is defined, one common way to deal with this
1552 is just to use a type reference to a type which has not yet been
1553 defined. The debugger is expected to be able to deal with this.
1554
1555 Another way is with the @samp{x} type descriptor, which is followed by
1556 @samp{s} for a structure tag, @samp{u} for a union tag, or @samp{e} for
1557 a enumerator tag, followed by the name of the tag, followed by @samp{:}.
1558 for example the following C declarations:
1559
1560 @example
1561 struct foo;
1562 struct foo *bar;
1563 @end example
1564
1565 produce
1566
1567 @example
1568 .stabs "bar:G16=*17=xsfoo:",32,0,0,0
1569 @end example
1570
1571 Not all debuggers support the @samp{x} type descriptor, so on some
1572 machines GCC does not use it. I believe that for the above example it
1573 would just emit a reference to type 17 and never define it, but I
1574 haven't verified that.
1575
1576 Modula-2 imported types, at least on AIX, use the @samp{i} type
1577 descriptor, which is followed by the name of the module from which the
1578 type is imported, followed by @samp{:}, followed by the name of the
1579 type. There is then optionally a comma followed by type information for
1580 the type (This differs from merely naming the type (@pxref{Typedefs}) in
1581 that it identifies the module; I don't understand whether the name of
1582 the type given here is always just the same as the name we are giving
1583 it, or whether this type descriptor is used with a nameless stab
1584 (@pxref{Stabs Format}), or what). The symbol ends with @samp{;}.
1585
1586 @node Subranges
1587 @section Subrange types
1588
1589 The @samp{r} type descriptor defines a type as a subrange of another
1590 type. It is followed by type information for the type which it is a
1591 subrange of, a semicolon, an integral lower bound, a semicolon, an
1592 integral upper bound, and a semicolon. The AIX documentation does not
1593 specify the trailing semicolon, in an effort to specify array indexes
1594 more cleanly, but a subrange which is not an array index has always
1595 included a trailing semicolon (@pxref{Arrays}).
1596
1597 Instead of an integer, either bound can be one of the following:
1598
1599 @table @code
1600 @item A @var{offset}
1601 The bound is passed by reference on the stack at offset @var{offset}
1602 from the argument list. @xref{Parameters}, for more information on such
1603 offsets.
1604
1605 @item T @var{offset}
1606 The bound is passed by value on the stack at offset @var{offset} from
1607 the argument list.
1608
1609 @item a @var{register-number}
1610 The bound is pased by reference in register number
1611 @var{register-number}.
1612
1613 @item t @var{register-number}
1614 The bound is passed by value in register number @var{register-number}.
1615
1616 @item J
1617 There is no bound.
1618 @end table
1619
1620 Subranges are also used for builtin types, @xref{Traditional Builtin Types}.
1621
1622 @node Arrays
1623 @section Array types
1624
1625 Arrays use the @samp{a} type descriptor. Following the type descriptor
1626 is the type of the index and the type of the array elements. If the
1627 index type is a range type, it will end in a semicolon; if it is not a
1628 range type (for example, if it is a type reference), there does not
1629 appear to be any way to tell where the types are separated. In an
1630 effort to clean up this mess, IBM documents the two types as being
1631 separated by a semicolon, and a range type as not ending in a semicolon
1632 (but this is not right for range types which are not array indexes,
1633 @pxref{Subranges}). I think probably the best solution is to specify
1634 that a semicolon ends a range type, and that the index type and element
1635 type of an array are separated by a semicolon, but that if the index
1636 type is a range type, the extra semicolon can be omitted. GDB (at least
1637 through version 4.9) doesn't support any kind of index type other than a
1638 range anyway; I'm not sure about dbx.
1639
1640 It is well established, and widely used, that the type of the index,
1641 unlike most types found in the stabs, is merely a type definition, not
1642 type information (@pxref{Stabs Format}) (that is, it need not start with
1643 @var{type-number}@code{=} if it is defining a new type). According to a
1644 comment in GDB, this is also true of the type of the array elements; it
1645 gives @samp{ar1;1;10;ar1;1;10;4} as a legitimate way to express a two
1646 dimensional array. According to AIX documentation, the element type
1647 must be type information. GDB accepts either.
1648
1649 The type of the index is often a range type, expressed as the letter r
1650 and some parameters. It defines the size of the array. In the example
1651 below, the range @code{r1;0;2;} defines an index type which is a
1652 subrange of type 1 (integer), with a lower bound of 0 and an upper bound
1653 of 2. This defines the valid range of subscripts of a three-element C
1654 array.
1655
1656 For example, the definition
1657
1658 @example
1659 char char_vec[3] = @{'a','b','c'@};
1660 @end example
1661
1662 @noindent
1663 produces the output
1664
1665 @example
1666 .stabs "char_vec:G19=ar1;0;2;2",32,0,0,0
1667 .global _char_vec
1668 .align 4
1669 _char_vec:
1670 .byte 97
1671 .byte 98
1672 .byte 99
1673 @end example
1674
1675 If an array is @dfn{packed}, it means that the elements are spaced more
1676 closely than normal, saving memory at the expense of speed. For
1677 example, an array of 3-byte objects might, if unpacked, have each
1678 element aligned on a 4-byte boundary, but if packed, have no padding.
1679 One way to specify that something is packed is with type attributes
1680 (@pxref{Stabs Format}), in the case of arrays another is to use the
1681 @samp{P} type descriptor instead of @samp{a}. Other than specifying a
1682 packed array, @samp{P} is identical to @samp{a}.
1683
1684 @c FIXME-what is it? A pointer?
1685 An open array is represented by the @samp{A} type descriptor followed by
1686 type information specifying the type of the array elements.
1687
1688 @c FIXME: what is the format of this type? A pointer to a vector of pointers?
1689 An N-dimensional dynamic array is represented by
1690
1691 @example
1692 D @var{dimensions} ; @var{type-information}
1693 @end example
1694
1695 @c Does dimensions really have this meaning? The AIX documentation
1696 @c doesn't say.
1697 @var{dimensions} is the number of dimensions; @var{type-information}
1698 specifies the type of the array elements.
1699
1700 @c FIXME: what is the format of this type? A pointer to some offsets in
1701 @c another array?
1702 A subarray of an N-dimensional array is represented by
1703
1704 @example
1705 E @var{dimensions} ; @var{type-information}
1706 @end example
1707
1708 @c Does dimensions really have this meaning? The AIX documentation
1709 @c doesn't say.
1710 @var{dimensions} is the number of dimensions; @var{type-information}
1711 specifies the type of the array elements.
1712
1713 @node Strings
1714 @section Strings
1715
1716 Some languages, like C or the original Pascal, do not have string types,
1717 they just have related things like arrays of characters. But most
1718 Pascals and various other languages have string types, which are
1719 indicated as follows:
1720
1721 @table @code
1722 @item n @var{type-information} ; @var{bytes}
1723 @var{bytes} is the maximum length. I'm not sure what
1724 @var{type-information} is; I suspect that it means that this is a string
1725 of @var{type-information} (thus allowing a string of integers, a string
1726 of wide characters, etc., as well as a string of characters). Not sure
1727 what the format of this type is. This is an AIX feature.
1728
1729 @item z @var{type-information} ; @var{bytes}
1730 Just like @samp{n} except that this is a gstring, not an ordinary
1731 string. I don't know the difference.
1732
1733 @item N
1734 Pascal Stringptr. What is this? This is an AIX feature.
1735 @end table
1736
1737 @node Enumerations
1738 @section Enumerations
1739
1740 Enumerations are defined with the @samp{e} type descriptor.
1741
1742 @c FIXME: Where does this information properly go? Perhaps it is
1743 @c redundant with something we already explain.
1744 The source line below declares an enumeration type. It is defined at
1745 file scope between the bodies of main and s_proc in example2.c.
1746 The type definition is located after the N_RBRAC that marks the end of
1747 the previous procedure's block scope, and before the N_FUN that marks
1748 the beginning of the next procedure's block scope. Therefore it does not
1749 describe a block local symbol, but a file local one.
1750
1751 The source line:
1752
1753 @example
1754 enum e_places @{first,second=3,last@};
1755 @end example
1756
1757 @noindent
1758 generates the following stab
1759
1760 @example
1761 .stabs "e_places:T22=efirst:0,second:3,last:4,;",128,0,0,0
1762 @end example
1763
1764 The symbol descriptor (T) says that the stab describes a structure,
1765 enumeration, or type tag. The type descriptor e, following the 22= of
1766 the type definition narrows it down to an enumeration type. Following
1767 the e is a list of the elements of the enumeration. The format is
1768 name:value,. The list of elements ends with a ;.
1769
1770 There is no standard way to specify the size of an enumeration type; it
1771 is determined by the architecture (normally all enumerations types are
1772 32 bits). There should be a way to specify an enumeration type of
1773 another size; type attributes would be one way to do this @xref{Stabs
1774 Format}.
1775
1776 @node Structures
1777 @section Structures
1778
1779 @table @strong
1780 @item Directive:
1781 @code{.stabs}
1782 @item Type:
1783 @code{N_LSYM} or @code{C_DECL}
1784 @item Symbol Descriptor:
1785 @code{T}
1786 @item Type Descriptor:
1787 @code{s}
1788 @end table
1789
1790 The following source code declares a structure tag and defines an
1791 instance of the structure in global scope. Then a typedef equates the
1792 structure tag with a new type. A seperate stab is generated for the
1793 structure tag, the structure typedef, and the structure instance. The
1794 stabs for the tag and the typedef are emited when the definitions are
1795 encountered. Since the structure elements are not initialized, the
1796 stab and code for the structure variable itself is located at the end
1797 of the program in .common.
1798
1799 @example
1800 6 struct s_tag @{
1801 7 int s_int;
1802 8 float s_float;
1803 9 char s_char_vec[8];
1804 10 struct s_tag* s_next;
1805 11 @} g_an_s;
1806 12
1807 13 typedef struct s_tag s_typedef;
1808 @end example
1809
1810 The structure tag is an N_LSYM stab type because, like the enum, the
1811 symbol is file scope. Like the enum, the symbol descriptor is T, for
1812 enumeration, struct or tag type. The symbol descriptor s following
1813 the 16= of the type definition narrows the symbol type to struct.
1814
1815 Following the struct symbol descriptor is the number of bytes the
1816 struct occupies, followed by a description of each structure element.
1817 The structure element descriptions are of the form name:type, bit
1818 offset from the start of the struct, and number of bits in the
1819 element.
1820
1821
1822 @example
1823 <128> N_LSYM - type definition
1824 .stabs "name:sym_desc(struct tag) Type_def(16)=type_desc(struct type)
1825 struct_bytes
1826 elem_name:type_ref(int),bit_offset,field_bits;
1827 elem_name:type_ref(float),bit_offset,field_bits;
1828 elem_name:type_def(17)=type_desc(array)
1829 index_type(range of int from 0 to 7);
1830 element_type(char),bit_offset,field_bits;;",
1831 N_LSYM,NIL,NIL,NIL
1832
1833 30 .stabs "s_tag:T16=s20s_int:1,0,32;s_float:12,32,32;
1834 s_char_vec:17=ar1;0;7;2,64,64;s_next:18=*16,128,32;;",128,0,0,0
1835 @end example
1836
1837 In this example, two of the structure elements are previously defined
1838 types. For these, the type following the name: part of the element
1839 description is a simple type reference. The other two structure
1840 elements are new types. In this case there is a type definition
1841 embedded after the name:. The type definition for the array element
1842 looks just like a type definition for a standalone array. The s_next
1843 field is a pointer to the same kind of structure that the field is an
1844 element of. So the definition of structure type 16 contains an type
1845 definition for an element which is a pointer to type 16.
1846
1847 @node Typedefs
1848 @section Giving a Type a Name
1849
1850 To give a type a name, use the @samp{t} symbol descriptor. The type
1851 specified by the type information (@pxref{Stabs Format}) for the stab.
1852 For example,
1853
1854 @example
1855 .stabs "s_typedef:t16",128,0,0,0
1856 @end example
1857
1858 specifies that @code{s_typedef} refers to type number 16. Such stabs
1859 have symbol type @code{N_LSYM} or @code{C_DECL}.
1860
1861 If instead, you are specifying the tag name for a structure, union, or
1862 enumeration, use the @samp{T} symbol descriptor instead. I believe C is
1863 the only language with this feature.
1864
1865 If the type is an opaque type (I believe this is a Modula-2 feature),
1866 AIX provides a type descriptor to specify it. The type descriptor is
1867 @samp{o} and is followed by a name. I don't know what the name
1868 means---is it always the same as the name of the type, or is this type
1869 descriptor used with a nameless stab (@pxref{Stabs Format})? There
1870 optionally follows a comma followed by type information which defines
1871 the type of this type. If omitted, a semicolon is used in place of the
1872 comma and the type information, and the type is much like a generic
1873 pointer type---it has a known size but little else about it is
1874 specified.
1875
1876 @node Unions
1877 @section Unions
1878
1879 Next let's look at unions. In example2 this union type is declared
1880 locally to a procedure and an instance of the union is defined.
1881
1882 @example
1883 36 union u_tag @{
1884 37 int u_int;
1885 38 float u_float;
1886 39 char* u_char;
1887 40 @} an_u;
1888 @end example
1889
1890 This code generates a stab for the union tag and a stab for the union
1891 variable. Both use the N_LSYM stab type. Since the union variable is
1892 scoped locally to the procedure in which it is defined, its stab is
1893 located immediately preceding the N_LBRAC for the procedure's block
1894 start.
1895
1896 The stab for the union tag, however is located preceding the code for
1897 the procedure in which it is defined. The stab type is N_LSYM. This
1898 would seem to imply that the union type is file scope, like the struct
1899 type s_tag. This is not true. The contents and position of the stab
1900 for u_type do not convey any infomation about its procedure local
1901 scope.
1902
1903 @display
1904 <128> N_LSYM - type
1905 .stabs "name:sym_desc(union tag)type_def(22)=type_desc(union)
1906 byte_size(4)
1907 elem_name:type_ref(int),bit_offset(0),bit_size(32);
1908 elem_name:type_ref(float),bit_offset(0),bit_size(32);
1909 elem_name:type_ref(ptr to char),bit_offset(0),bit_size(32);;"
1910 N_LSYM, NIL, NIL, NIL
1911 @end display
1912
1913 @smallexample
1914 105 .stabs "u_tag:T23=u4u_int:1,0,32;u_float:12,0,32;u_char:21,0,32;;",
1915 128,0,0,0
1916 @end smallexample
1917
1918 The symbol descriptor, T, following the name: means that the stab
1919 describes an enumeration, struct or type tag. The type descriptor u,
1920 following the 23= of the type definition, narrows it down to a union
1921 type definition. Following the u is the number of bytes in the union.
1922 After that is a list of union element descriptions. Their format is
1923 name:type, bit offset into the union, and number of bytes for the
1924 element;.
1925
1926 The stab for the union variable follows.
1927
1928 @display
1929 <128> N_LSYM - local variable (with no symbol descriptor)
1930 .stabs "name:type_ref(u_tag)", N_LSYM, NIL, NIL, frame_ptr_offset
1931 @end display
1932
1933 @example
1934 130 .stabs "an_u:23",128,0,0,-20
1935 @end example
1936
1937 @node Function Types
1938 @section Function types
1939
1940 There are various types for function variables. These types are not
1941 used in defining functions; see symbol descriptor @samp{f}; they are
1942 used for things like pointers to functions.
1943
1944 The simple, traditional, type is type descriptor @samp{f} is followed by
1945 type information for the return type of the function, followed by a
1946 semicolon.
1947
1948 This does not deal with functions the number and type of whose
1949 parameters are part of their type, as found in Modula-2 or ANSI C. AIX
1950 provides extensions to specify these, using the @samp{f}, @samp{F},
1951 @samp{p}, and @samp{R} type descriptors.
1952
1953 First comes the type descriptor. Then, if it is @samp{f} or @samp{F},
1954 this is a function, and the type information for the return type of the
1955 function follows, followed by a comma. Then comes the number of
1956 parameters to the function and a semicolon. Then, for each parameter,
1957 there is the name of the parameter followed by a colon (this is only
1958 present for type descriptors @samp{R} and @samp{F} which represent
1959 Pascal function or procedure parameters), type information for the
1960 parameter, a comma, @samp{0} if passed by reference or @samp{1} if
1961 passed by value, and a semicolon. The type definition ends with a
1962 semicolon.
1963
1964 For example,
1965
1966 @example
1967 int (*g_pf)();
1968 @end example
1969
1970 @noindent
1971 generates the following code:
1972
1973 @example
1974 .stabs "g_pf:G24=*25=f1",32,0,0,0
1975 .common _g_pf,4,"bss"
1976 @end example
1977
1978 The variable defines a new type, 24, which is a pointer to another new
1979 type, 25, which is defined as a function returning int.
1980
1981 @node Symbol Tables
1982 @chapter Symbol information in symbol tables
1983
1984 This section examines more closely the format of symbol table entries
1985 and how stab assembler directives map to them. It also describes what
1986 transformations the assembler and linker make on data from stabs.
1987
1988 Each time the assembler encounters a stab in its input file it puts
1989 each field of the stab into corresponding fields in a symbol table
1990 entry of its output file. If the stab contains a string field, the
1991 symbol table entry for that stab points to a string table entry
1992 containing the string data from the stab. Assembler labels become
1993 relocatable addresses. Symbol table entries in a.out have the format:
1994
1995 @example
1996 struct internal_nlist @{
1997 unsigned long n_strx; /* index into string table of name */
1998 unsigned char n_type; /* type of symbol */
1999 unsigned char n_other; /* misc info (usually empty) */
2000 unsigned short n_desc; /* description field */
2001 bfd_vma n_value; /* value of symbol */
2002 @};
2003 @end example
2004
2005 For .stabs directives, the n_strx field holds the character offset
2006 from the start of the string table to the string table entry
2007 containing the "string" field. For other classes of stabs (.stabn and
2008 .stabd) this field is null.
2009
2010 Symbol table entries with n_type fields containing a value greater or
2011 equal to 0x20 originated as stabs generated by the compiler (with one
2012 random exception). Those with n_type values less than 0x20 were
2013 placed in the symbol table of the executable by the assembler or the
2014 linker.
2015
2016 The linker concatenates object files and does fixups of externally
2017 defined symbols. You can see the transformations made on stab data by
2018 the assembler and linker by examining the symbol table after each pass
2019 of the build, first the assemble and then the link.
2020
2021 To do this use nm with the -ap options. This dumps the symbol table,
2022 including debugging information, unsorted. For stab entries the
2023 columns are: value, other, desc, type, string. For assembler and
2024 linker symbols, the columns are: value, type, string.
2025
2026 There are a few important things to notice about symbol tables. Where
2027 the value field of a stab contains a frame pointer offset, or a
2028 register number, that value is unchanged by the rest of the build.
2029
2030 Where the value field of a stab contains an assembly language label,
2031 it is transformed by each build step. The assembler turns it into a
2032 relocatable address and the linker turns it into an absolute address.
2033 This source line defines a static variable at file scope:
2034
2035 @example
2036 3 static int s_g_repeat
2037 @end example
2038
2039 @noindent
2040 The following stab describes the symbol.
2041
2042 @example
2043 26 .stabs "s_g_repeat:S1",38,0,0,_s_g_repeat
2044 @end example
2045
2046 @noindent
2047 The assembler transforms the stab into this symbol table entry in the
2048 @file{.o} file. The location is expressed as a data segment offset.
2049
2050 @example
2051 21 00000084 - 00 0000 STSYM s_g_repeat:S1
2052 @end example
2053
2054 @noindent
2055 in the symbol table entry from the executable, the linker has made the
2056 relocatable address absolute.
2057
2058 @example
2059 22 0000e00c - 00 0000 STSYM s_g_repeat:S1
2060 @end example
2061
2062 Stabs for global variables do not contain location information. In
2063 this case the debugger finds location information in the assembler or
2064 linker symbol table entry describing the variable. The source line:
2065
2066 @example
2067 1 char g_foo = 'c';
2068 @end example
2069
2070 @noindent
2071 generates the stab:
2072
2073 @example
2074 21 .stabs "g_foo:G2",32,0,0,0
2075 @end example
2076
2077 The variable is represented by the following two symbol table entries
2078 in the object file. The first one originated as a stab. The second
2079 one is an external symbol. The upper case D signifies that the n_type
2080 field of the symbol table contains 7, N_DATA with local linkage (see
2081 Table B). The value field following the file's line number is empty
2082 for the stab entry. For the linker symbol it contains the
2083 rellocatable address corresponding to the variable.
2084
2085 @example
2086 19 00000000 - 00 0000 GSYM g_foo:G2
2087 20 00000080 D _g_foo
2088 @end example
2089
2090 @noindent
2091 These entries as transformed by the linker. The linker symbol table
2092 entry now holds an absolute address.
2093
2094 @example
2095 21 00000000 - 00 0000 GSYM g_foo:G2
2096 @dots{}
2097 215 0000e008 D _g_foo
2098 @end example
2099
2100 @node Cplusplus
2101 @chapter GNU C++ stabs
2102
2103 @menu
2104 * Basic Cplusplus types::
2105 * Simple classes::
2106 * Class instance::
2107 * Methods:: Method definition
2108 * Protections::
2109 * Method Modifiers::
2110 * Virtual Methods::
2111 * Inheritence::
2112 * Virtual Base Classes::
2113 * Static Members::
2114 @end menu
2115
2116 @subsection type descriptors added for C++ descriptions
2117
2118 @table @code
2119 @item #
2120 method type (two ## if minimal debug)
2121
2122 @item @@
2123 Member (class and variable) type. It is followed by type information
2124 for the offset basetype, a comma, and type information for the type of
2125 the field being pointed to. (FIXME: this is acknowledged to be
2126 gibberish. Can anyone say what really goes here?).
2127
2128 Note that there is a conflict between this and type attributes
2129 (@pxref{Stabs Format}); both use type descriptor @samp{@@}.
2130 Fortunately, the @samp{@@} type descriptor used in this C++ sense always
2131 will be followed by a digit, @samp{(}, or @samp{-}, and type attributes
2132 never start with those things.
2133 @end table
2134
2135 @node Basic Cplusplus types
2136 @section Basic types for C++
2137
2138 << the examples that follow are based on a01.C >>
2139
2140
2141 C++ adds two more builtin types to the set defined for C. These are
2142 the unknown type and the vtable record type. The unknown type, type
2143 16, is defined in terms of itself like the void type.
2144
2145 The vtable record type, type 17, is defined as a structure type and
2146 then as a structure tag. The structure has four fields, delta, index,
2147 pfn, and delta2. pfn is the function pointer.
2148
2149 << In boilerplate $vtbl_ptr_type, what are the fields delta,
2150 index, and delta2 used for? >>
2151
2152 This basic type is present in all C++ programs even if there are no
2153 virtual methods defined.
2154
2155 @display
2156 .stabs "struct_name:sym_desc(type)type_def(17)=type_desc(struct)struct_bytes(8)
2157 elem_name(delta):type_ref(short int),bit_offset(0),field_bits(16);
2158 elem_name(index):type_ref(short int),bit_offset(16),field_bits(16);
2159 elem_name(pfn):type_def(18)=type_desc(ptr to)type_ref(void),
2160 bit_offset(32),field_bits(32);
2161 elem_name(delta2):type_def(short int);bit_offset(32),field_bits(16);;"
2162 N_LSYM, NIL, NIL
2163 @end display
2164
2165 @smallexample
2166 .stabs "$vtbl_ptr_type:t17=s8
2167 delta:6,0,16;index:6,16,16;pfn:18=*15,32,32;delta2:6,32,16;;"
2168 ,128,0,0,0
2169 @end smallexample
2170
2171 @display
2172 .stabs "name:sym_dec(struct tag)type_ref($vtbl_ptr_type)",N_LSYM,NIL,NIL,NIL
2173 @end display
2174
2175 @example
2176 .stabs "$vtbl_ptr_type:T17",128,0,0,0
2177 @end example
2178
2179 @node Simple classes
2180 @section Simple class definition
2181
2182 The stabs describing C++ language features are an extension of the
2183 stabs describing C. Stabs representing C++ class types elaborate
2184 extensively on the stab format used to describe structure types in C.
2185 Stabs representing class type variables look just like stabs
2186 representing C language variables.
2187
2188 Consider the following very simple class definition.
2189
2190 @example
2191 class baseA @{
2192 public:
2193 int Adat;
2194 int Ameth(int in, char other);
2195 @};
2196 @end example
2197
2198 The class baseA is represented by two stabs. The first stab describes
2199 the class as a structure type. The second stab describes a structure
2200 tag of the class type. Both stabs are of stab type N_LSYM. Since the
2201 stab is not located between an N_FUN and a N_LBRAC stab this indicates
2202 that the class is defined at file scope. If it were, then the N_LSYM
2203 would signify a local variable.
2204
2205 A stab describing a C++ class type is similar in format to a stab
2206 describing a C struct, with each class member shown as a field in the
2207 structure. The part of the struct format describing fields is
2208 expanded to include extra information relevent to C++ class members.
2209 In addition, if the class has multiple base classes or virtual
2210 functions the struct format outside of the field parts is also
2211 augmented.
2212
2213 In this simple example the field part of the C++ class stab
2214 representing member data looks just like the field part of a C struct
2215 stab. The section on protections describes how its format is
2216 sometimes extended for member data.
2217
2218 The field part of a C++ class stab representing a member function
2219 differs substantially from the field part of a C struct stab. It
2220 still begins with `name:' but then goes on to define a new type number
2221 for the member function, describe its return type, its argument types,
2222 its protection level, any qualifiers applied to the method definition,
2223 and whether the method is virtual or not. If the method is virtual
2224 then the method description goes on to give the vtable index of the
2225 method, and the type number of the first base class defining the
2226 method.
2227
2228 When the field name is a method name it is followed by two colons
2229 rather than one. This is followed by a new type definition for the
2230 method. This is a number followed by an equal sign and then the
2231 symbol descriptor `##', indicating a method type. This is followed by
2232 a type reference showing the return type of the method and a
2233 semi-colon.
2234
2235 The format of an overloaded operator method name differs from that
2236 of other methods. It is "op$::XXXX." where XXXX is the operator name
2237 such as + or +=. The name ends with a period, and any characters except
2238 the period can occur in the XXXX string.
2239
2240 The next part of the method description represents the arguments to
2241 the method, preceeded by a colon and ending with a semi-colon. The
2242 types of the arguments are expressed in the same way argument types
2243 are expressed in C++ name mangling. In this example an int and a char
2244 map to `ic'.
2245
2246 This is followed by a number, a letter, and an asterisk or period,
2247 followed by another semicolon. The number indicates the protections
2248 that apply to the member function. Here the 2 means public. The
2249 letter encodes any qualifier applied to the method definition. In
2250 this case A means that it is a normal function definition. The dot
2251 shows that the method is not virtual. The sections that follow
2252 elaborate further on these fields and describe the additional
2253 information present for virtual methods.
2254
2255
2256 @display
2257 .stabs "class_name:sym_desc(type)type_def(20)=type_desc(struct)struct_bytes(4)
2258 field_name(Adat):type(int),bit_offset(0),field_bits(32);
2259
2260 method_name(Ameth)::type_def(21)=type_desc(method)return_type(int);
2261 :arg_types(int char);
2262 protection(public)qualifier(normal)virtual(no);;"
2263 N_LSYM,NIL,NIL,NIL
2264 @end display
2265
2266 @smallexample
2267 .stabs "baseA:t20=s4Adat:1,0,32;Ameth::21=##1;:ic;2A.;;",128,0,0,0
2268
2269 .stabs "class_name:sym_desc(struct tag)",N_LSYM,NIL,NIL,NIL
2270
2271 .stabs "baseA:T20",128,0,0,0
2272 @end smallexample
2273
2274 @node Class instance
2275 @section Class instance
2276
2277 As shown above, describing even a simple C++ class definition is
2278 accomplished by massively extending the stab format used in C to
2279 describe structure types. However, once the class is defined, C stabs
2280 with no modifications can be used to describe class instances. The
2281 following source:
2282
2283 @example
2284 main () @{
2285 baseA AbaseA;
2286 @}
2287 @end example
2288
2289 @noindent
2290 yields the following stab describing the class instance. It looks no
2291 different from a standard C stab describing a local variable.
2292
2293 @display
2294 .stabs "name:type_ref(baseA)", N_LSYM, NIL, NIL, frame_ptr_offset
2295 @end display
2296
2297 @example
2298 .stabs "AbaseA:20",128,0,0,-20
2299 @end example
2300
2301 @node Methods
2302 @section Method defintion
2303
2304 The class definition shown above declares Ameth. The C++ source below
2305 defines Ameth:
2306
2307 @example
2308 int
2309 baseA::Ameth(int in, char other)
2310 @{
2311 return in;
2312 @};
2313 @end example
2314
2315
2316 This method definition yields three stabs following the code of the
2317 method. One stab describes the method itself and following two describe
2318 its parameters. Although there is only one formal argument all methods
2319 have an implicit argument which is the `this' pointer. The `this'
2320 pointer is a pointer to the object on which the method was called. Note
2321 that the method name is mangled to encode the class name and argument
2322 types. Name mangling is described in the @sc{arm} (@cite{The Annotated
2323 C++ Reference Manual}, by Ellis and Stroustrup, @sc{isbn}
2324 0-201-51459-1); @file{gpcompare.texi} in Cygnus GCC distributions
2325 describes the differences between @sc{gnu} mangling and @sc{arm}
2326 mangling.
2327 @c FIXME: Use @xref, especially if this is generally installed in the
2328 @c info tree.
2329 @c FIXME: This information should be in a net release, either of GCC or
2330 @c GDB. But gpcompare.texi doesn't seem to be in the FSF GCC.
2331
2332 @example
2333 .stabs "name:symbol_desriptor(global function)return_type(int)",
2334 N_FUN, NIL, NIL, code_addr_of_method_start
2335
2336 .stabs "Ameth__5baseAic:F1",36,0,0,_Ameth__5baseAic
2337 @end example
2338
2339 Here is the stab for the `this' pointer implicit argument. The name
2340 of the `this' pointer is always `this.' Type 19, the `this' pointer is
2341 defined as a pointer to type 20, baseA, but a stab defining baseA has
2342 not yet been emited. Since the compiler knows it will be emited
2343 shortly, here it just outputs a cross reference to the undefined
2344 symbol, by prefixing the symbol name with xs.
2345
2346 @example
2347 .stabs "name:sym_desc(register param)type_def(19)=
2348 type_desc(ptr to)type_ref(baseA)=
2349 type_desc(cross-reference to)baseA:",N_RSYM,NIL,NIL,register_number
2350
2351 .stabs "this:P19=*20=xsbaseA:",64,0,0,8
2352 @end example
2353
2354 The stab for the explicit integer argument looks just like a parameter
2355 to a C function. The last field of the stab is the offset from the
2356 argument pointer, which in most systems is the same as the frame
2357 pointer.
2358
2359 @example
2360 .stabs "name:sym_desc(value parameter)type_ref(int)",
2361 N_PSYM,NIL,NIL,offset_from_arg_ptr
2362
2363 .stabs "in:p1",160,0,0,72
2364 @end example
2365
2366 << The examples that follow are based on A1.C >>
2367
2368 @node Protections
2369 @section Protections
2370
2371
2372 In the simple class definition shown above all member data and
2373 functions were publicly accessable. The example that follows
2374 contrasts public, protected and privately accessable fields and shows
2375 how these protections are encoded in C++ stabs.
2376
2377 Protections for class member data are signified by two characters
2378 embeded in the stab defining the class type. These characters are
2379 located after the name: part of the string. /0 means private, /1
2380 means protected, and /2 means public. If these characters are omited
2381 this means that the member is public. The following C++ source:
2382
2383 @example
2384 class all_data @{
2385 private:
2386 int priv_dat;
2387 protected:
2388 char prot_dat;
2389 public:
2390 float pub_dat;
2391 @};
2392 @end example
2393
2394 @noindent
2395 generates the following stab to describe the class type all_data.
2396
2397 @display
2398 .stabs "class_name:sym_desc(type)type_def(19)=type_desc(struct)struct_bytes
2399 data_name:/protection(private)type_ref(int),bit_offset,num_bits;
2400 data_name:/protection(protected)type_ref(char),bit_offset,num_bits;
2401 data_name:(/num omited, private)type_ref(float),bit_offset,num_bits;;"
2402 N_LSYM,NIL,NIL,NIL
2403 @end display
2404
2405 @smallexample
2406 .stabs "all_data:t19=s12
2407 priv_dat:/01,0,32;prot_dat:/12,32,8;pub_dat:12,64,32;;",128,0,0,0
2408 @end smallexample
2409
2410 Protections for member functions are signified by one digit embeded in
2411 the field part of the stab describing the method. The digit is 0 if
2412 private, 1 if protected and 2 if public. Consider the C++ class
2413 definition below:
2414
2415 @example
2416 class all_methods @{
2417 private:
2418 int priv_meth(int in)@{return in;@};
2419 protected:
2420 char protMeth(char in)@{return in;@};
2421 public:
2422 float pubMeth(float in)@{return in;@};
2423 @};
2424 @end example
2425
2426 It generates the following stab. The digit in question is to the left
2427 of an `A' in each case. Notice also that in this case two symbol
2428 descriptors apply to the class name struct tag and struct type.
2429
2430 @display
2431 .stabs "class_name:sym_desc(struct tag&type)type_def(21)=
2432 sym_desc(struct)struct_bytes(1)
2433 meth_name::type_def(22)=sym_desc(method)returning(int);
2434 :args(int);protection(private)modifier(normal)virtual(no);
2435 meth_name::type_def(23)=sym_desc(method)returning(char);
2436 :args(char);protection(protected)modifier(normal)virual(no);
2437 meth_name::type_def(24)=sym_desc(method)returning(float);
2438 :args(float);protection(public)modifier(normal)virtual(no);;",
2439 N_LSYM,NIL,NIL,NIL
2440 @end display
2441
2442 @smallexample
2443 .stabs "all_methods:Tt21=s1priv_meth::22=##1;:i;0A.;protMeth::23=##2;:c;1A.;
2444 pubMeth::24=##12;:f;2A.;;",128,0,0,0
2445 @end smallexample
2446
2447 @node Method Modifiers
2448 @section Method Modifiers (const, volatile, const volatile)
2449
2450 << based on a6.C >>
2451
2452 In the class example described above all the methods have the normal
2453 modifier. This method modifier information is located just after the
2454 protection information for the method. This field has four possible
2455 character values. Normal methods use A, const methods use B, volatile
2456 methods use C, and const volatile methods use D. Consider the class
2457 definition below:
2458
2459 @example
2460 class A @{
2461 public:
2462 int ConstMeth (int arg) const @{ return arg; @};
2463 char VolatileMeth (char arg) volatile @{ return arg; @};
2464 float ConstVolMeth (float arg) const volatile @{return arg; @};
2465 @};
2466 @end example
2467
2468 This class is described by the following stab:
2469
2470 @display
2471 .stabs "class(A):sym_desc(struct)type_def(20)=type_desc(struct)struct_bytes(1)
2472 meth_name(ConstMeth)::type_def(21)sym_desc(method)
2473 returning(int);:arg(int);protection(public)modifier(const)virtual(no);
2474 meth_name(VolatileMeth)::type_def(22)=sym_desc(method)
2475 returning(char);:arg(char);protection(public)modifier(volatile)virt(no)
2476 meth_name(ConstVolMeth)::type_def(23)=sym_desc(method)
2477 returning(float);:arg(float);protection(public)modifer(const volatile)
2478 virtual(no);;", @dots{}
2479 @end display
2480
2481 @example
2482 .stabs "A:T20=s1ConstMeth::21=##1;:i;2B.;VolatileMeth::22=##2;:c;2C.;
2483 ConstVolMeth::23=##12;:f;2D.;;",128,0,0,0
2484 @end example
2485
2486 @node Virtual Methods
2487 @section Virtual Methods
2488
2489 << The following examples are based on a4.C >>
2490
2491 The presence of virtual methods in a class definition adds additional
2492 data to the class description. The extra data is appended to the
2493 description of the virtual method and to the end of the class
2494 description. Consider the class definition below:
2495
2496 @example
2497 class A @{
2498 public:
2499 int Adat;
2500 virtual int A_virt (int arg) @{ return arg; @};
2501 @};
2502 @end example
2503
2504 This results in the stab below describing class A. It defines a new
2505 type (20) which is an 8 byte structure. The first field of the class
2506 struct is Adat, an integer, starting at structure offset 0 and
2507 occupying 32 bits.
2508
2509 The second field in the class struct is not explicitly defined by the
2510 C++ class definition but is implied by the fact that the class
2511 contains a virtual method. This field is the vtable pointer. The
2512 name of the vtable pointer field starts with $vf and continues with a
2513 type reference to the class it is part of. In this example the type
2514 reference for class A is 20 so the name of its vtable pointer field is
2515 $vf20, followed by the usual colon.
2516
2517 Next there is a type definition for the vtable pointer type (21).
2518 This is in turn defined as a pointer to another new type (22).
2519
2520 Type 22 is the vtable itself, which is defined as an array, indexed by
2521 a range of integers between 0 and 1, and whose elements are of type
2522 17. Type 17 was the vtable record type defined by the boilerplate C++
2523 type definitions, as shown earlier.
2524
2525 The bit offset of the vtable pointer field is 32. The number of bits
2526 in the field are not specified when the field is a vtable pointer.
2527
2528 Next is the method definition for the virtual member function A_virt.
2529 Its description starts out using the same format as the non-virtual
2530 member functions described above, except instead of a dot after the
2531 `A' there is an asterisk, indicating that the function is virtual.
2532 Since is is virtual some addition information is appended to the end
2533 of the method description.
2534
2535 The first number represents the vtable index of the method. This is a
2536 32 bit unsigned number with the high bit set, followed by a
2537 semi-colon.
2538
2539 The second number is a type reference to the first base class in the
2540 inheritence hierarchy defining the virtual member function. In this
2541 case the class stab describes a base class so the virtual function is
2542 not overriding any other definition of the method. Therefore the
2543 reference is to the type number of the class that the stab is
2544 describing (20).
2545
2546 This is followed by three semi-colons. One marks the end of the
2547 current sub-section, one marks the end of the method field, and the
2548 third marks the end of the struct definition.
2549
2550 For classes containing virtual functions the very last section of the
2551 string part of the stab holds a type reference to the first base
2552 class. This is preceeded by `~%' and followed by a final semi-colon.
2553
2554 @display
2555 .stabs "class_name(A):type_def(20)=sym_desc(struct)struct_bytes(8)
2556 field_name(Adat):type_ref(int),bit_offset(0),field_bits(32);
2557 field_name(A virt func ptr):type_def(21)=type_desc(ptr to)type_def(22)=
2558 sym_desc(array)index_type_ref(range of int from 0 to 1);
2559 elem_type_ref(vtbl elem type),
2560 bit_offset(32);
2561 meth_name(A_virt)::typedef(23)=sym_desc(method)returning(int);
2562 :arg_type(int),protection(public)normal(yes)virtual(yes)
2563 vtable_index(1);class_first_defining(A);;;~%first_base(A);",
2564 N_LSYM,NIL,NIL,NIL
2565 @end display
2566
2567 @c FIXME: bogus line break.
2568 @example
2569 .stabs "A:t20=s8Adat:1,0,32;$vf20:21=*22=ar1;0;1;17,32;
2570 A_virt::23=##1;:i;2A*-2147483647;20;;;~%20;",128,0,0,0
2571 @end example
2572
2573 @node Inheritence
2574 @section Inheritence
2575
2576 Stabs describing C++ derived classes include additional sections that
2577 describe the inheritence hierarchy of the class. A derived class stab
2578 also encodes the number of base classes. For each base class it tells
2579 if the base class is virtual or not, and if the inheritence is private
2580 or public. It also gives the offset into the object of the portion of
2581 the object corresponding to each base class.
2582
2583 This additional information is embeded in the class stab following the
2584 number of bytes in the struct. First the number of base classes
2585 appears bracketed by an exclamation point and a comma.
2586
2587 Then for each base type there repeats a series: two digits, a number,
2588 a comma, another number, and a semi-colon.
2589
2590 The first of the two digits is 1 if the base class is virtual and 0 if
2591 not. The second digit is 2 if the derivation is public and 0 if not.
2592
2593 The number following the first two digits is the offset from the start
2594 of the object to the part of the object pertaining to the base class.
2595
2596 After the comma, the second number is a type_descriptor for the base
2597 type. Finally a semi-colon ends the series, which repeats for each
2598 base class.
2599
2600 The source below defines three base classes A, B, and C and the
2601 derived class D.
2602
2603
2604 @example
2605 class A @{
2606 public:
2607 int Adat;
2608 virtual int A_virt (int arg) @{ return arg; @};
2609 @};
2610
2611 class B @{
2612 public:
2613 int B_dat;
2614 virtual int B_virt (int arg) @{return arg; @};
2615 @};
2616
2617 class C @{
2618 public:
2619 int Cdat;
2620 virtual int C_virt (int arg) @{return arg; @};
2621 @};
2622
2623 class D : A, virtual B, public C @{
2624 public:
2625 int Ddat;
2626 virtual int A_virt (int arg ) @{ return arg+1; @};
2627 virtual int B_virt (int arg) @{ return arg+2; @};
2628 virtual int C_virt (int arg) @{ return arg+3; @};
2629 virtual int D_virt (int arg) @{ return arg; @};
2630 @};
2631 @end example
2632
2633 Class stabs similar to the ones described earlier are generated for
2634 each base class.
2635
2636 @c FIXME!!! the linebreaks in the following example probably make the
2637 @c examples literally unusable, but I don't know any other way to get
2638 @c them on the page.
2639 @c One solution would be to put some of the type definitions into
2640 @c separate stabs, even if that's not exactly what the compiler actually
2641 @c emits.
2642 @smallexample
2643 .stabs "A:T20=s8Adat:1,0,32;$vf20:21=*22=ar1;0;1;17,32;
2644 A_virt::23=##1;:i;2A*-2147483647;20;;;~%20;",128,0,0,0
2645
2646 .stabs "B:Tt25=s8Bdat:1,0,32;$vf25:21,32;B_virt::26=##1;
2647 :i;2A*-2147483647;25;;;~%25;",128,0,0,0
2648
2649 .stabs "C:Tt28=s8Cdat:1,0,32;$vf28:21,32;C_virt::29=##1;
2650 :i;2A*-2147483647;28;;;~%28;",128,0,0,0
2651 @end smallexample
2652
2653 In the stab describing derived class D below, the information about
2654 the derivation of this class is encoded as follows.
2655
2656 @display
2657 .stabs "derived_class_name:symbol_descriptors(struct tag&type)=
2658 type_descriptor(struct)struct_bytes(32)!num_bases(3),
2659 base_virtual(no)inheritence_public(no)base_offset(0),
2660 base_class_type_ref(A);
2661 base_virtual(yes)inheritence_public(no)base_offset(NIL),
2662 base_class_type_ref(B);
2663 base_virtual(no)inheritence_public(yes)base_offset(64),
2664 base_class_type_ref(C); @dots{}
2665 @end display
2666
2667 @c FIXME! fake linebreaks.
2668 @smallexample
2669 .stabs "D:Tt31=s32!3,000,20;100,25;0264,28;$vb25:24,128;Ddat:
2670 1,160,32;A_virt::32=##1;:i;2A*-2147483647;20;;B_virt:
2671 :32:i;2A*-2147483647;25;;C_virt::32:i;2A*-2147483647;
2672 28;;D_virt::32:i;2A*-2147483646;31;;;~%20;",128,0,0,0
2673 @end smallexample
2674
2675 @node Virtual Base Classes
2676 @section Virtual Base Classes
2677
2678 A derived class object consists of a concatination in memory of the
2679 data areas defined by each base class, starting with the leftmost and
2680 ending with the rightmost in the list of base classes. The exception
2681 to this rule is for virtual inheritence. In the example above, class
2682 D inherits virtually from base class B. This means that an instance
2683 of a D object will not contain it's own B part but merely a pointer to
2684 a B part, known as a virtual base pointer.
2685
2686 In a derived class stab, the base offset part of the derivation
2687 information, described above, shows how the base class parts are
2688 ordered. The base offset for a virtual base class is always given as
2689 0. Notice that the base offset for B is given as 0 even though B is
2690 not the first base class. The first base class A starts at offset 0.
2691
2692 The field information part of the stab for class D describes the field
2693 which is the pointer to the virtual base class B. The vbase pointer
2694 name is $vb followed by a type reference to the virtual base class.
2695 Since the type id for B in this example is 25, the vbase pointer name
2696 is $vb25.
2697
2698 @c FIXME!! fake linebreaks below
2699 @smallexample
2700 .stabs "D:Tt31=s32!3,000,20;100,25;0264,28;$vb25:24,128;Ddat:1,
2701 160,32;A_virt::32=##1;:i;2A*-2147483647;20;;B_virt::32:i;
2702 2A*-2147483647;25;;C_virt::32:i;2A*-2147483647;28;;D_virt:
2703 :32:i;2A*-2147483646;31;;;~%20;",128,0,0,0
2704 @end smallexample
2705
2706 Following the name and a semicolon is a type reference describing the
2707 type of the virtual base class pointer, in this case 24. Type 24 was
2708 defined earlier as the type of the B class `this` pointer. The
2709 `this' pointer for a class is a pointer to the class type.
2710
2711 @example
2712 .stabs "this:P24=*25=xsB:",64,0,0,8
2713 @end example
2714
2715 Finally the field offset part of the vbase pointer field description
2716 shows that the vbase pointer is the first field in the D object,
2717 before any data fields defined by the class. The layout of a D class
2718 object is a follows, Adat at 0, the vtable pointer for A at 32, Cdat
2719 at 64, the vtable pointer for C at 96, the virtual ase pointer for B
2720 at 128, and Ddat at 160.
2721
2722
2723 @node Static Members
2724 @section Static Members
2725
2726 The data area for a class is a concatenation of the space used by the
2727 data members of the class. If the class has virtual methods, a vtable
2728 pointer follows the class data. The field offset part of each field
2729 description in the class stab shows this ordering.
2730
2731 << How is this reflected in stabs? See Cygnus bug #677 for some info. >>
2732
2733 @node Example2.c
2734 @appendix Example2.c - source code for extended example
2735
2736 @example
2737 1 char g_foo = 'c';
2738 2 register int g_bar asm ("%g5");
2739 3 static int s_g_repeat = 2;
2740 4 int (*g_pf)();
2741 5
2742 6 struct s_tag @{
2743 7 int s_int;
2744 8 float s_float;
2745 9 char s_char_vec[8];
2746 10 struct s_tag* s_next;
2747 11 @} g_an_s;
2748 12
2749 13 typedef struct s_tag s_typedef;
2750 14
2751 15 char char_vec[3] = @{'a','b','c'@};
2752 16
2753 17 main (argc, argv)
2754 18 int argc;
2755 19 char* argv[];
2756 20 @{
2757 21 static float s_flap;
2758 22 int times;
2759 23 for (times=0; times < s_g_repeat; times++)@{
2760 24 int inner;
2761 25 printf ("Hello world\n");
2762 26 @}
2763 27 @};
2764 28
2765 29 enum e_places @{first,second=3,last@};
2766 30
2767 31 static s_proc (s_arg, s_ptr_arg, char_vec)
2768 32 s_typedef s_arg;
2769 33 s_typedef* s_ptr_arg;
2770 34 char* char_vec;
2771 35 @{
2772 36 union u_tag @{
2773 37 int u_int;
2774 38 float u_float;
2775 39 char* u_char;
2776 40 @} an_u;
2777 41 @}
2778 42
2779 43
2780 @end example
2781
2782 @node Example2.s
2783 @appendix Example2.s - assembly code for extended example
2784
2785 @example
2786 1 gcc2_compiled.:
2787 2 .stabs "/cygint/s1/users/jcm/play/",100,0,0,Ltext0
2788 3 .stabs "example2.c",100,0,0,Ltext0
2789 4 .text
2790 5 Ltext0:
2791 6 .stabs "int:t1=r1;-2147483648;2147483647;",128,0,0,0
2792 7 .stabs "char:t2=r2;0;127;",128,0,0,0
2793 8 .stabs "long int:t3=r1;-2147483648;2147483647;",128,0,0,0
2794 9 .stabs "unsigned int:t4=r1;0;-1;",128,0,0,0
2795 10 .stabs "long unsigned int:t5=r1;0;-1;",128,0,0,0
2796 11 .stabs "short int:t6=r1;-32768;32767;",128,0,0,0
2797 12 .stabs "long long int:t7=r1;0;-1;",128,0,0,0
2798 13 .stabs "short unsigned int:t8=r1;0;65535;",128,0,0,0
2799 14 .stabs "long long unsigned int:t9=r1;0;-1;",128,0,0,0
2800 15 .stabs "signed char:t10=r1;-128;127;",128,0,0,0
2801 16 .stabs "unsigned char:t11=r1;0;255;",128,0,0,0
2802 17 .stabs "float:t12=r1;4;0;",128,0,0,0
2803 18 .stabs "double:t13=r1;8;0;",128,0,0,0
2804 19 .stabs "long double:t14=r1;8;0;",128,0,0,0
2805 20 .stabs "void:t15=15",128,0,0,0
2806 21 .stabs "g_foo:G2",32,0,0,0
2807 22 .global _g_foo
2808 23 .data
2809 24 _g_foo:
2810 25 .byte 99
2811 26 .stabs "s_g_repeat:S1",38,0,0,_s_g_repeat
2812 27 .align 4
2813 28 _s_g_repeat:
2814 29 .word 2
2815 @c FIXME! fake linebreak in line 30
2816 30 .stabs "s_tag:T16=s20s_int:1,0,32;s_float:12,32,32;s_char_vec:
2817 17=ar1;0;7;2,64,64;s_next:18=*16,128,32;;",128,0,0,0
2818 31 .stabs "s_typedef:t16",128,0,0,0
2819 32 .stabs "char_vec:G19=ar1;0;2;2",32,0,0,0
2820 33 .global _char_vec
2821 34 .align 4
2822 35 _char_vec:
2823 36 .byte 97
2824 37 .byte 98
2825 38 .byte 99
2826 39 .reserve _s_flap.0,4,"bss",4
2827 40 .text
2828 41 .align 4
2829 42 LC0:
2830 43 .ascii "Hello world\12\0"
2831 44 .align 4
2832 45 .global _main
2833 46 .proc 1
2834 47 _main:
2835 48 .stabn 68,0,20,LM1
2836 49 LM1:
2837 50 !#PROLOGUE# 0
2838 51 save %sp,-144,%sp
2839 52 !#PROLOGUE# 1
2840 53 st %i0,[%fp+68]
2841 54 st %i1,[%fp+72]
2842 55 call ___main,0
2843 56 nop
2844 57 LBB2:
2845 58 .stabn 68,0,23,LM2
2846 59 LM2:
2847 60 st %g0,[%fp-20]
2848 61 L2:
2849 62 sethi %hi(_s_g_repeat),%o0
2850 63 ld [%fp-20],%o1
2851 64 ld [%o0+%lo(_s_g_repeat)],%o0
2852 65 cmp %o1,%o0
2853 66 bge L3
2854 67 nop
2855 68 LBB3:
2856 69 .stabn 68,0,25,LM3
2857 70 LM3:
2858 71 sethi %hi(LC0),%o1
2859 72 or %o1,%lo(LC0),%o0
2860 73 call _printf,0
2861 74 nop
2862 75 .stabn 68,0,26,LM4
2863 76 LM4:
2864 77 LBE3:
2865 78 .stabn 68,0,23,LM5
2866 79 LM5:
2867 80 L4:
2868 81 ld [%fp-20],%o0
2869 82 add %o0,1,%o1
2870 83 st %o1,[%fp-20]
2871 84 b,a L2
2872 85 L3:
2873 86 .stabn 68,0,27,LM6
2874 87 LM6:
2875 88 LBE2:
2876 89 .stabn 68,0,27,LM7
2877 90 LM7:
2878 91 L1:
2879 92 ret
2880 93 restore
2881 94 .stabs "main:F1",36,0,0,_main
2882 95 .stabs "argc:p1",160,0,0,68
2883 96 .stabs "argv:p20=*21=*2",160,0,0,72
2884 97 .stabs "s_flap:V12",40,0,0,_s_flap.0
2885 98 .stabs "times:1",128,0,0,-20
2886 99 .stabn 192,0,0,LBB2
2887 100 .stabs "inner:1",128,0,0,-24
2888 101 .stabn 192,0,0,LBB3
2889 102 .stabn 224,0,0,LBE3
2890 103 .stabn 224,0,0,LBE2
2891 104 .stabs "e_places:T22=efirst:0,second:3,last:4,;",128,0,0,0
2892 @c FIXME: fake linebreak in line 105
2893 105 .stabs "u_tag:T23=u4u_int:1,0,32;u_float:12,0,32;u_char:21,0,32;;",
2894 128,0,0,0
2895 106 .align 4
2896 107 .proc 1
2897 108 _s_proc:
2898 109 .stabn 68,0,35,LM8
2899 110 LM8:
2900 111 !#PROLOGUE# 0
2901 112 save %sp,-120,%sp
2902 113 !#PROLOGUE# 1
2903 114 mov %i0,%o0
2904 115 st %i1,[%fp+72]
2905 116 st %i2,[%fp+76]
2906 117 LBB4:
2907 118 .stabn 68,0,41,LM9
2908 119 LM9:
2909 120 LBE4:
2910 121 .stabn 68,0,41,LM10
2911 122 LM10:
2912 123 L5:
2913 124 ret
2914 125 restore
2915 126 .stabs "s_proc:f1",36,0,0,_s_proc
2916 127 .stabs "s_arg:p16",160,0,0,0
2917 128 .stabs "s_ptr_arg:p18",160,0,0,72
2918 129 .stabs "char_vec:p21",160,0,0,76
2919 130 .stabs "an_u:23",128,0,0,-20
2920 131 .stabn 192,0,0,LBB4
2921 132 .stabn 224,0,0,LBE4
2922 133 .stabs "g_bar:r1",64,0,0,5
2923 134 .stabs "g_pf:G24=*25=f1",32,0,0,0
2924 135 .common _g_pf,4,"bss"
2925 136 .stabs "g_an_s:G16",32,0,0,0
2926 137 .common _g_an_s,20,"bss"
2927 @end example
2928
2929 @node Stab Types
2930 @appendix Values for the Stab Type Field
2931
2932 These are all the possible values for the stab type field, for
2933 @code{a.out} files. This does not apply to XCOFF.
2934
2935 The following types are used by the linker and assembler; there is
2936 nothing stabs-specific about them. Since this document does not attempt
2937 to describe aspects of object file format other than the debugging
2938 format, no details are given.
2939
2940 @c Try to get most of these to fit on a single line.
2941 @iftex
2942 @tableindent=1.5in
2943 @end iftex
2944
2945 @table @code
2946 @item 0x0 N_UNDF
2947 Undefined symbol
2948
2949 @item 0x2 N_ABS
2950 File scope absolute symbol
2951
2952 @item 0x3 N_ABS | N_EXT
2953 External absolute symbol
2954
2955 @item 0x4 N_TEXT
2956 File scope text symbol
2957
2958 @item 0x5 N_TEXT | N_EXT
2959 External text symbol
2960
2961 @item 0x6 N_DATA
2962 File scope data symbol
2963
2964 @item 0x7 N_DATA | N_EXT
2965 External data symbol
2966
2967 @item 0x8 N_BSS
2968 File scope BSS symbol
2969
2970 @item 0x9 N_BSS | N_EXT
2971 External BSS symbol
2972
2973 @item 0x0c N_FN_SEQ
2974 Same as N_FN, for Sequent compilers
2975
2976 @item 0x0a N_INDR
2977 Symbol is indirected to another symbol
2978
2979 @item 0x12 N_COMM
2980 Common sym -- visable after shared lib dynamic link
2981
2982 @item 0x14 N_SETA
2983 Absolute set element
2984
2985 @item 0x16 N_SETT
2986 Text segment set element
2987
2988 @item 0x18 N_SETD
2989 Data segment set element
2990
2991 @item 0x1a N_SETB
2992 BSS segment set element
2993
2994 @item 0x1c N_SETV
2995 Pointer to set vector
2996
2997 @item 0x1e N_WARNING
2998 Print a warning message during linking
2999
3000 @item 0x1f N_FN
3001 File name of a .o file
3002 @end table
3003
3004 The following symbol types indicate that this is a stab. This is the
3005 full list of stab numbers, including stab types that are used in
3006 languages other than C.
3007
3008 @table @code
3009 @item 0x20 N_GSYM
3010 Global symbol, @xref{N_GSYM}.
3011
3012 @item 0x22 N_FNAME
3013 Function name (for BSD Fortran), @xref{N_FNAME}.
3014
3015 @item 0x24 N_FUN
3016 Function name (@pxref{Procedures}) or text segment variable
3017 (@pxref{Statics}).
3018
3019 @item 0x26 N_STSYM
3020 Data segment file-scope variable, @xref{Statics}.
3021
3022 @item 0x28 N_LCSYM
3023 BSS segment file-scope variable, @xref{Statics}.
3024
3025 @item 0x2a N_MAIN
3026 Name of main routine, @xref{Main Program}.
3027
3028 @c FIXME: discuss this in the Statics node where we talk about
3029 @c the fact that the n_type indicates the section.
3030 @item 0x2c N_ROSYM
3031 Variable in @code{.rodata} section, @xref{Statics}.
3032
3033 @item 0x30 N_PC
3034 Global symbol (for Pascal), @xref{N_PC}.
3035
3036 @item 0x32 N_NSYMS
3037 Number of symbols (according to Ultrix V4.0), @xref{N_NSYMS}.
3038
3039 @item 0x34 N_NOMAP
3040 No DST map, @xref{N_NOMAP}.
3041
3042 @c FIXME: describe this solaris feature in the body of the text (see
3043 @c comments in include/aout/stab.def).
3044 @item 0x38 N_OBJ
3045 Object file (Solaris2).
3046
3047 @c See include/aout/stab.def for (a little) more info.
3048 @item 0x3c N_OPT
3049 Debugger options (Solaris2).
3050
3051 @item 0x40 N_RSYM
3052 Register variable, @xref{N_RSYM}.
3053
3054 @item 0x42 N_M2C
3055 Modula-2 compilation unit, @xref{N_M2C}.
3056
3057 @item 0x44 N_SLINE
3058 Line number in text segment, @xref{Line Numbers}.
3059
3060 @item 0x46 N_DSLINE
3061 Line number in data segment, @xref{Line Numbers}.
3062
3063 @item 0x48 N_BSLINE
3064 Line number in bss segment, @xref{Line Numbers}.
3065
3066 @item 0x48 N_BROWS
3067 Sun source code browser, path to .cb file, @xref{N_BROWS}.
3068
3069 @item 0x4a N_DEFD
3070 Gnu Modula2 definition module dependency, @xref{N_DEFD}.
3071
3072 @item 0x4c N_FLINE
3073 Function start/body/end line numbers (Solaris2).
3074
3075 @item 0x50 N_EHDECL
3076 Gnu C++ exception variable, @xref{N_EHDECL}.
3077
3078 @item 0x50 N_MOD2
3079 Modula2 info "for imc" (according to Ultrix V4.0), @xref{N_MOD2}.
3080
3081 @item 0x54 N_CATCH
3082 Gnu C++ "catch" clause, @xref{N_CATCH}.
3083
3084 @item 0x60 N_SSYM
3085 Structure of union element, @xref{N_SSYM}.
3086
3087 @item 0x62 N_ENDM
3088 Last stab for module (Solaris2).
3089
3090 @item 0x64 N_SO
3091 Path and name of source file, @xref{Source Files}.
3092
3093 @item 0x80 N_LSYM
3094 Stack variable (@pxref{Stack Variables}) or type (@pxref{Typedefs}).
3095
3096 @item 0x82 N_BINCL
3097 Beginning of an include file (Sun only), @xref{Source Files}.
3098
3099 @item 0x84 N_SOL
3100 Name of include file, @xref{Source Files}.
3101
3102 @item 0xa0 N_PSYM
3103 Parameter variable, @xref{Parameters}.
3104
3105 @item 0xa2 N_EINCL
3106 End of an include file, @xref{Source Files}.
3107
3108 @item 0xa4 N_ENTRY
3109 Alternate entry point, @xref{N_ENTRY}.
3110
3111 @item 0xc0 N_LBRAC
3112 Beginning of a lexical block, @xref{Block Structure}.
3113
3114 @item 0xc2 N_EXCL
3115 Place holder for a deleted include file, @xref{Source Files}.
3116
3117 @item 0xc4 N_SCOPE
3118 Modula2 scope information (Sun linker), @xref{N_SCOPE}.
3119
3120 @item 0xe0 N_RBRAC
3121 End of a lexical block, @xref{Block Structure}.
3122
3123 @item 0xe2 N_BCOMM
3124 Begin named common block, @xref{Common Blocks}.
3125
3126 @item 0xe4 N_ECOMM
3127 End named common block, @xref{Common Blocks}.
3128
3129 @item 0xe8 N_ECOML
3130 Member of a common block, @xref{Common Blocks}.
3131
3132 @c FIXME: How does this really work? Move it to main body of document.
3133 @item 0xea N_WITH
3134 Pascal @code{with} statement: type,,0,0,offset (Solaris2).
3135
3136 @item 0xf0 N_NBTEXT
3137 Gould non-base registers, @xref{Gould}.
3138
3139 @item 0xf2 N_NBDATA
3140 Gould non-base registers, @xref{Gould}.
3141
3142 @item 0xf4 N_NBBSS
3143 Gould non-base registers, @xref{Gould}.
3144
3145 @item 0xf6 N_NBSTS
3146 Gould non-base registers, @xref{Gould}.
3147
3148 @item 0xf8 N_NBLCS
3149 Gould non-base registers, @xref{Gould}.
3150 @end table
3151
3152 @c Restore the default table indent
3153 @iftex
3154 @tableindent=.8in
3155 @end iftex
3156
3157 @node Symbol Descriptors
3158 @appendix Table of Symbol Descriptors
3159
3160 @c Please keep this alphabetical
3161 @table @code
3162 @c In TeX, this looks great, digit is in italics. But makeinfo insists
3163 @c on putting it in `', not realizing that @var should override @code.
3164 @c I don't know of any way to make makeinfo do the right thing. Seems
3165 @c like a makeinfo bug to me.
3166 @item @var{digit}
3167 @itemx (
3168 @itemx -
3169 Variable on the stack, @xref{Stack Variables}.
3170
3171 @item a
3172 Parameter passed by reference in register, @xref{Parameters}.
3173
3174 @item c
3175 Constant, @xref{Constants}.
3176
3177 @item C
3178 Conformant array bound (Pascal, maybe other languages),
3179 @xref{Parameters}. Name of a caught exception (GNU C++). These can be
3180 distinguished because the latter uses N_CATCH and the former uses
3181 another symbol type.
3182
3183 @item d
3184 Floating point register variable, @xref{Register variables}.
3185
3186 @item D
3187 Parameter in floating point register, @xref{Parameters}.
3188
3189 @item f
3190 File scope function, @xref{Procedures}.
3191
3192 @item F
3193 Global function, @xref{Procedures}.
3194
3195 @item G
3196 Global variable, @xref{Global Variables}.
3197
3198 @item i
3199 @xref{Parameters}.
3200
3201 @item I
3202 Internal (nested) procedure, @xref{Procedures}.
3203
3204 @item J
3205 Internal (nested) function, @xref{Procedures}.
3206
3207 @item L
3208 Label name (documented by AIX, no further information known).
3209
3210 @item m
3211 Module, @xref{Procedures}.
3212
3213 @item p
3214 Argument list parameter, @xref{Parameters}.
3215
3216 @item pP
3217 @xref{Parameters}.
3218
3219 @item pF
3220 FORTRAN Function parameter, @xref{Parameters}.
3221
3222 @item P
3223 Unfortunately, three separate meanings have been independently invented
3224 for this symbol descriptor. At least the GNU and Sun uses can be
3225 distinguished by the symbol type. Global Procedure (AIX) (symbol type
3226 used unknown), @xref{Procedures}. Register parameter (GNU) (symbol type
3227 N_PSYM), @xref{Parameters}. Prototype of function referenced by this
3228 file (Sun acc) (symbol type N_FUN).
3229
3230 @item Q
3231 Static Procedure, @xref{Procedures}.
3232
3233 @item R
3234 Register parameter @xref{Parameters}.
3235
3236 @item r
3237 Register variable, @xref{Register variables}.
3238
3239 @item S
3240 File scope variable, @xref{Statics}.
3241
3242 @item t
3243 Type name, @xref{Typedefs}.
3244
3245 @item T
3246 enumeration, struct or union tag, @xref{Typedefs}.
3247
3248 @item v
3249 Parameter passed by reference, @xref{Parameters}.
3250
3251 @item V
3252 Procedure scope static variable, @xref{Statics}.
3253
3254 @item x
3255 Conformant array, @xref{Parameters}.
3256
3257 @item X
3258 Function return variable, @xref{Parameters}.
3259 @end table
3260
3261 @node Type Descriptors
3262 @appendix Table of Type Descriptors
3263
3264 @table @code
3265 @item @var{digit}
3266 @itemx (
3267 Type reference, @xref{Stabs Format}.
3268
3269 @item -
3270 Reference to builtin type, @xref{Negative Type Numbers}.
3271
3272 @item #
3273 Method (C++), @xref{Cplusplus}.
3274
3275 @item *
3276 Pointer, @xref{Miscellaneous Types}.
3277
3278 @item &
3279 Reference (C++).
3280
3281 @item @@
3282 Type Attributes (AIX), @xref{Stabs Format}. Member (class and variable)
3283 type (GNU C++), @xref{Cplusplus}.
3284
3285 @item a
3286 Array, @xref{Arrays}.
3287
3288 @item A
3289 Open array, @xref{Arrays}.
3290
3291 @item b
3292 Pascal space type (AIX), @xref{Miscellaneous Types}. Builtin integer
3293 type (Sun), @xref{Builtin Type Descriptors}.
3294
3295 @item B
3296 Volatile-qualified type, @xref{Miscellaneous Types}.
3297
3298 @item c
3299 Complex builtin type, @xref{Builtin Type Descriptors}.
3300
3301 @item C
3302 COBOL Picture type. See AIX documentation for details.
3303
3304 @item d
3305 File type, @xref{Miscellaneous Types}.
3306
3307 @item D
3308 N-dimensional dynamic array, @xref{Arrays}.
3309
3310 @item e
3311 Enumeration type, @xref{Enumerations}.
3312
3313 @item E
3314 N-dimensional subarray, @xref{Arrays}.
3315
3316 @item f
3317 Function type, @xref{Function Types}.
3318
3319 @item F
3320 Pascal function parameter, @xref{Function Types}
3321
3322 @item g
3323 Builtin floating point type, @xref{Builtin Type Descriptors}.
3324
3325 @item G
3326 COBOL Group. See AIX documentation for details.
3327
3328 @item i
3329 Imported type, @xref{Cross-references}.
3330
3331 @item k
3332 Const-qualified type, @xref{Miscellaneous Types}.
3333
3334 @item K
3335 COBOL File Descriptor. See AIX documentation for details.
3336
3337 @item M
3338 Multiple instance type, @xref{Miscellaneous Types}.
3339
3340 @item n
3341 String type, @xref{Strings}.
3342
3343 @item N
3344 Stringptr, @xref{Strings}.
3345
3346 @item o
3347 Opaque type, @xref{Typedefs}.
3348
3349 @item p
3350 Procedure, @xref{Function Types}.
3351
3352 @item P
3353 Packed array, @xref{Arrays}.
3354
3355 @item r
3356 Range type, @xref{Subranges}.
3357
3358 @item R
3359 Builtin floating type, @xref{Builtin Type Descriptors} (Sun). Pascal
3360 subroutine parameter, @xref{Function Types} (AIX). Detecting this
3361 conflict is possible with careful parsing (hint: a Pascal subroutine
3362 parameter type will always contain a comma, and a builtin type
3363 descriptor never will).
3364
3365 @item s
3366 Structure type, @xref{Structures}.
3367
3368 @item S
3369 Set type, @xref{Miscellaneous Types}.
3370
3371 @item u
3372 Union, @xref{Unions}.
3373
3374 @item v
3375 Variant record. This is a Pascal and Modula-2 feature which is like a
3376 union within a struct in C. See AIX documentation for details.
3377
3378 @item w
3379 Wide character, @xref{Builtin Type Descriptors}.
3380
3381 @item x
3382 Cross-reference, @xref{Cross-references}.
3383
3384 @item z
3385 gstring, @xref{Strings}.
3386 @end table
3387
3388 @node Expanded reference
3389 @appendix Expanded reference by stab type.
3390
3391 @c FIXME: This appendix should go away, see N_PSYM or N_SO for an example.
3392
3393 For a full list of stab types, and cross-references to where they are
3394 described, @xref{Stab Types}. This appendix just duplicates certain
3395 information from the main body of this document; eventually the
3396 information will all be in one place.
3397
3398 Format of an entry:
3399
3400 The first line is the symbol type expressed in decimal, hexadecimal,
3401 and as a #define (see devo/include/aout/stab.def).
3402
3403 The second line describes the language constructs the symbol type
3404 represents.
3405
3406 The third line is the stab format with the significant stab fields
3407 named and the rest NIL.
3408
3409 Subsequent lines expand upon the meaning and possible values for each
3410 significant stab field. # stands in for the type descriptor.
3411
3412 Finally, any further information.
3413
3414 @menu
3415 * N_GSYM:: Global variable
3416 * N_FNAME:: Function name (BSD Fortran)
3417 * N_PC:: Pascal global symbol
3418 * N_NSYMS:: Number of symbols
3419 * N_NOMAP:: No DST map
3420 * N_RSYM:: Register variable
3421 * N_M2C:: Modula-2 compilation unit
3422 * N_BROWS:: Path to .cb file for Sun source code browser
3423 * N_DEFD:: GNU Modula2 definition module dependency
3424 * N_EHDECL:: GNU C++ exception variable
3425 * N_MOD2:: Modula2 information "for imc"
3426 * N_CATCH:: GNU C++ "catch" clause
3427 * N_SSYM:: Structure or union element
3428 * N_ENTRY:: Alternate entry point
3429 * N_SCOPE:: Modula2 scope information (Sun only)
3430 * Gould:: non-base register symbols used on Gould systems
3431 * N_LENG:: Length of preceding entry
3432 @end menu
3433
3434 @node N_GSYM
3435 @section 32 - 0x20 - N_GYSM
3436
3437 @display
3438 Global variable.
3439
3440 .stabs "name", N_GSYM, NIL, NIL, NIL
3441 @end display
3442
3443 @example
3444 "name" -> "symbol_name:#type"
3445 # -> G
3446 @end example
3447
3448 Only the "name" field is significant. The location of the variable is
3449 obtained from the corresponding external symbol.
3450
3451 @node N_FNAME
3452 @section 34 - 0x22 - N_FNAME
3453 Function name (for BSD Fortran)
3454
3455 @display
3456 .stabs "name", N_FNAME, NIL, NIL, NIL
3457 @end display
3458
3459 @example
3460 "name" -> "function_name"
3461 @end example
3462
3463 Only the "name" field is significant. The location of the symbol is
3464 obtained from the corresponding extern symbol.
3465
3466 @node N_PC
3467 @section 48 - 0x30 - N_PC
3468 Global symbol (for Pascal)
3469
3470 @display
3471 .stabs "name", N_PC, NIL, NIL, value
3472 @end display
3473
3474 @example
3475 "name" -> "symbol_name" <<?>>
3476 value -> supposedly the line number (stab.def is skeptical)
3477 @end example
3478
3479 @display
3480 stabdump.c says:
3481
3482 global pascal symbol: name,,0,subtype,line
3483 << subtype? >>
3484 @end display
3485
3486 @node N_NSYMS
3487 @section 50 - 0x32 - N_NSYMS
3488 Number of symbols (according to Ultrix V4.0)
3489
3490 @display
3491 0, files,,funcs,lines (stab.def)
3492 @end display
3493
3494 @node N_NOMAP
3495 @section 52 - 0x34 - N_NOMAP
3496 No DST map for symbol (according to Ultrix V4.0). I think this means a
3497 variable has been optimized out.
3498
3499 @display
3500 name, ,0,type,ignored (stab.def)
3501 @end display
3502
3503 @node N_RSYM
3504 @section 64 - 0x40 - N_RSYM
3505 register variable
3506
3507 @display
3508 .stabs "name:type",N_RSYM,0,RegSize,RegNumber (Sun doc)
3509 @end display
3510
3511 @node N_M2C
3512 @section 66 - 0x42 - N_M2C
3513 Modula-2 compilation unit
3514
3515 @display
3516 .stabs "name", N_M2C, 0, desc, value
3517 @end display
3518
3519 @example
3520 "name" -> "unit_name,unit_time_stamp[,code_time_stamp]
3521 desc -> unit_number
3522 value -> 0 (main unit)
3523 1 (any other unit)
3524 @end example
3525
3526 @node N_BROWS
3527 @section 72 - 0x48 - N_BROWS
3528 Sun source code browser, path to .cb file
3529
3530 <<?>>
3531 "path to associated .cb file"
3532
3533 Note: type field value overlaps with N_BSLINE
3534
3535 @node N_DEFD
3536 @section 74 - 0x4a - N_DEFD
3537 GNU Modula2 definition module dependency
3538
3539 GNU Modula-2 definition module dependency. Value is the modification
3540 time of the definition file. Other is non-zero if it is imported with
3541 the GNU M2 keyword %INITIALIZE. Perhaps N_M2C can be used if there
3542 are enough empty fields?
3543
3544 @node N_EHDECL
3545 @section 80 - 0x50 - N_EHDECL
3546 GNU C++ exception variable <<?>>
3547
3548 "name is variable name"
3549
3550 Note: conflicts with N_MOD2.
3551
3552 @node N_MOD2
3553 @section 80 - 0x50 - N_MOD2
3554 Modula2 info "for imc" (according to Ultrix V4.0)
3555
3556 Note: conflicts with N_EHDECL <<?>>
3557
3558 @node N_CATCH
3559 @section 84 - 0x54 - N_CATCH
3560 GNU C++ "catch" clause
3561
3562 GNU C++ `catch' clause. Value is its address. Desc is nonzero if
3563 this entry is immediately followed by a CAUGHT stab saying what
3564 exception was caught. Multiple CAUGHT stabs means that multiple
3565 exceptions can be caught here. If Desc is 0, it means all exceptions
3566 are caught here.
3567
3568 @node N_SSYM
3569 @section 96 - 0x60 - N_SSYM
3570 Structure or union element
3571
3572 Value is offset in the structure.
3573
3574 <<?looking at structs and unions in C I didn't see these>>
3575
3576 @node N_ENTRY
3577 @section 164 - 0xa4 - N_ENTRY
3578
3579 Alternate entry point.
3580 Value is its address.
3581 <<?>>
3582
3583 @node N_SCOPE
3584 @section 196 - 0xc4 - N_SCOPE
3585
3586 Modula2 scope information (Sun linker)
3587 <<?>>
3588
3589 @node Gould
3590 @section Non-base registers on Gould systems
3591
3592 These are used on Gould systems for non-base registers syms.
3593
3594 However, the following values are not the values used by Gould; they are
3595 the values which GNU has been documenting for these values for a long
3596 time, without actually checking what Gould uses. I include these values
3597 only because perhaps some someone actually did something with the GNU
3598 information (I hope not, why GNU knowingly assigned wrong values to
3599 these in the header file is a complete mystery to me).
3600
3601 @example
3602 240 0xf0 N_NBTEXT ??
3603 242 0xf2 N_NBDATA ??
3604 244 0xf4 N_NBBSS ??
3605 246 0xf6 N_NBSTS ??
3606 248 0xf8 N_NBLCS ??
3607 @end example
3608
3609 @node N_LENG
3610 @section - 0xfe - N_LENG
3611
3612 Second symbol entry containing a length-value for the preceding entry.
3613 The value is the length.
3614
3615 @node Questions
3616 @appendix Questions and anomalies
3617
3618 @itemize @bullet
3619 @item
3620 For GNU C stabs defining local and global variables (N_LSYM and
3621 N_GSYM), the desc field is supposed to contain the source line number
3622 on which the variable is defined. In reality the desc field is always
3623 0. (This behavour is defined in dbxout.c and putting a line number in
3624 desc is controlled by #ifdef WINNING_GDB which defaults to false). Gdb
3625 supposedly uses this information if you say 'list var'. In reality
3626 var can be a variable defined in the program and gdb says `function
3627 var not defined'
3628
3629 @item
3630 In GNU C stabs there seems to be no way to differentiate tag types:
3631 structures, unions, and enums (symbol descriptor T) and typedefs
3632 (symbol descriptor t) defined at file scope from types defined locally
3633 to a procedure or other more local scope. They all use the N_LSYM
3634 stab type. Types defined at procedure scope are emited after the
3635 N_RBRAC of the preceding function and before the code of the
3636 procedure in which they are defined. This is exactly the same as
3637 types defined in the source file between the two procedure bodies.
3638 GDB overcompensates by placing all types in block #1, the block for
3639 symbols of file scope. This is true for default, -ansi and
3640 -traditional compiler options. (Bugs gcc/1063, gdb/1066.)
3641
3642 @item
3643 What ends the procedure scope? Is it the proc block's N_RBRAC or the
3644 next N_FUN? (I believe its the first.)
3645
3646 @item
3647 @c FIXME: This should go with the other stuff about global variables.
3648 Global variable stabs don't have location information. This comes
3649 from the external symbol for the same variable. The external symbol
3650 has a leading underbar on the _name of the variable and the stab does
3651 not. How do we know these two symbol table entries are talking about
3652 the same symbol when their names are different? (Answer: the debugger
3653 knows that external symbols have leading underbars).
3654
3655 @c FIXME: This is absurdly vague; there all kinds of differences, some
3656 @c of which are the same between gnu & sun, and some of which aren't.
3657 @item
3658 Can gcc be configured to output stabs the way the Sun compiler
3659 does, so that their native debugging tools work? <NO?> It doesn't by
3660 default. GDB reads either format of stab. (gcc or SunC). How about
3661 dbx?
3662 @end itemize
3663
3664 @node xcoff-differences
3665 @appendix Differences between GNU stabs in a.out and GNU stabs in xcoff
3666
3667 @c FIXME: Merge *all* these into the main body of the document.
3668 (The AIX/RS6000 native object file format is xcoff with stabs). This
3669 appendix only covers those differences which are not covered in the main
3670 body of this document.
3671
3672 @itemize @bullet
3673 @item
3674 BSD a.out stab types correspond to AIX xcoff storage classes. In general the
3675 mapping is N_STABTYPE becomes C_STABTYPE. Some stab types in a.out
3676 are not supported in xcoff. See Table E. for full mappings.
3677
3678 @c FIXME: Get C_* types for the block, figure out whether it is always
3679 @c used (I suspect not), explain clearly, and move to node Statics.
3680 exception:
3681 initialised static N_STSYM and un-initialized static N_LCSYM both map
3682 to the C_STSYM storage class. But the destinction is preserved
3683 because in xcoff N_STSYM and N_LCSYM must be emited in a named static
3684 block. Begin the block with .bs s[RW] data_section_name for N_STSYM
3685 or .bs s bss_section_name for N_LCSYM. End the block with .es
3686
3687 @c FIXME: I think they are trying to say something about whether the
3688 @c assembler defaults the value to the location counter.
3689 @item
3690 If the xcoff stab is a N_FUN (C_FUN) then follow the string field with
3691 ,. instead of just ,
3692 @end itemize
3693
3694 (I think that's it for .s file differences. They could stand to be
3695 better presented. This is just a list of what I have noticed so far.
3696 There are a *lot* of differences in the information in the symbol
3697 tables of the executable and object files.)
3698
3699 Table E: mapping a.out stab types to xcoff storage classes
3700
3701 @example
3702 stab type storage class
3703 -------------------------------
3704 N_GSYM C_GSYM
3705 N_FNAME unknown
3706 N_FUN C_FUN
3707 N_STSYM C_STSYM
3708 N_LCSYM C_STSYM
3709 N_MAIN unkown
3710 N_PC unknown
3711 N_RSYM C_RSYM
3712 N_RPSYM (0x8e) C_RPSYM
3713 N_M2C unknown
3714 N_SLINE unknown
3715 N_DSLINE unknown
3716 N_BSLINE unknown
3717 N_BROWSE unchanged
3718 N_CATCH unknown
3719 N_SSYM unknown
3720 N_SO unknown
3721 N_LSYM C_LSYM
3722 N_DECL (0x8c) C_DECL
3723 N_BINCL unknown
3724 N_SOL unknown
3725 N_PSYM C_PSYM
3726 N_EINCL unknown
3727 N_ENTRY C_ENTRY
3728 N_LBRAC unknown
3729 N_EXCL unknown
3730 N_SCOPE unknown
3731 N_RBRAC unknown
3732 N_BCOMM C_BCOMM
3733 N_ECOMM C_ECOMM
3734 N_ECOML C_ECOML
3735
3736 N_LENG unknown
3737 @end example
3738
3739 @node Sun-differences
3740 @appendix Differences between GNU stabs and Sun native stabs.
3741
3742 @c FIXME: Merge all this stuff into the main body of the document.
3743
3744 @itemize @bullet
3745 @item
3746 GNU C stabs define *all* types, file or procedure scope, as
3747 N_LSYM. Sun doc talks about using N_GSYM too.
3748
3749 @item
3750 Sun C stabs use type number pairs in the format (a,b) where a is a
3751 number starting with 1 and incremented for each sub-source file in the
3752 compilation. b is a number starting with 1 and incremented for each
3753 new type defined in the compilation. GNU C stabs use the type number
3754 alone, with no source file number.
3755 @end itemize
3756
3757 @node Stabs-in-elf
3758 @appendix Using stabs with the @sc{elf} object file format.
3759
3760 The @sc{elf} object file format allows tools to create object files with
3761 custom sections containing any arbitrary data. To use stabs in @sc{elf}
3762 object files, the tools create two custom sections, a section named
3763 @code{.stab} which contains an array of fixed length structures, one
3764 struct per stab, and a section named @code{.stabstr} containing all the
3765 variable length strings that are referenced by stabs in the @code{.stab}
3766 section. The byte order of the stabs binary data matches the byte order
3767 of the @sc{elf} file itself, as determined from the @code{EI_DATA} field in
3768 the @code{e_ident} member of the @sc{elf} header.
3769
3770 @c Is "source file" the right term for this concept? We don't mean that
3771 @c there is a separate one for include files (but "object file" or
3772 @c "object module" isn't quite right either; the output from ld -r is a
3773 @c single object file but contains many source files).
3774 The first stab in the @code{.stab} section for each source file is
3775 synthetic, generated entirely by the assembler, with no corresponding
3776 @code{.stab} directive as input to the assembler. This stab contains
3777 the following fields:
3778
3779 @table @code
3780 @item n_strx
3781 Offset in the @code{.stabstr} section to the source filename.
3782
3783 @item n_type
3784 @code{N_UNDF}.
3785
3786 @item n_other
3787 Unused field, always zero.
3788
3789 @item n_desc
3790 Count of upcoming symbols, i.e. the number of remaining stabs for this
3791 source file.
3792
3793 @item n_value
3794 Size of the string table fragment associated with this source file, in
3795 bytes.
3796 @end table
3797
3798 The @code{.stabstr} section always starts with a null byte (so that string
3799 offsets of zero reference a null string), followed by random length strings,
3800 each of which is null byte terminated.
3801
3802 The @sc{elf} section header for the @code{.stab} section has it's
3803 @code{sh_link} member set to the section number of the @code{.stabstr}
3804 section, and the @code{.stabstr} section has it's @sc{elf} section
3805 header @code{sh_type} member set to @code{SHT_STRTAB} to mark it as a
3806 string table.
3807
3808 Because the linker does not process the @code{.stab} section in any
3809 special way, none of the addresses in the @code{n_value} field of the
3810 stabs are relocated by the linker. Instead they are relative to the
3811 source file (or some entity smaller than a source file, like a
3812 function). To find the address of each section corresponding to a given
3813 source file, the (compiler? assembler?) puts out symbols giving the
3814 address of each section for a given source file. Since these are normal
3815 @sc{elf} symbols, the linker can relocate them correctly. They are
3816 named @code{Bbss.bss} for the bss section, @code{Ddata.data} for
3817 the data section, and @code{Drodata.rodata} for the rodata section. I
3818 haven't yet figured out how the debugger gets the address for the text
3819 section.
3820
3821 @contents
3822 @bye