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