Go to the first, previous, next, last section, table of contents.


Expanded Reference by Stab Type

For a full list of stab types, and cross-references to where they are described, see section Table of Stab Types. This appendix just covers certain stabs which are not yet described in the main body of this document; eventually the information will all be in one place.

Format of an entry:

The first line is the symbol type (see `include/aout/stab.def').

The second line describes the language constructs the symbol type represents.

The third line is the stab format with the significant stab fields named and the rest NIL.

Subsequent lines expand upon the meaning and possible values for each significant stab field.

Finally, any further information.

N_PC

.stabs: N_PC
Global symbol (for Pascal).

"name" -> "symbol_name"  <<?>>
value  -> supposedly the line number (stab.def is skeptical)
`stabdump.c' says:

global pascal symbol: name,,0,subtype,line
<< subtype? >>

N_NSYMS

.stabn: N_NSYMS
Number of symbols (according to Ultrix V4.0).

        0, files,,funcs,lines (stab.def)

N_NOMAP

.stabs: N_NOMAP
No DST map for symbol (according to Ultrix V4.0). I think this means a variable has been optimized out.

        name, ,0,type,ignored (stab.def)

N_M2C

.stabs: N_M2C
Modula-2 compilation unit.

"string" -> "unit_name,unit_time_stamp[,code_time_stamp]"
desc   -> unit_number
value  -> 0 (main unit)
          1 (any other unit)

See Dbx and Dbxtool Interfaces, 2nd edition, by Sun, 1988, for more information.

N_BROWS

.stabs: N_BROWS
Sun source code browser, path to `.cb' file

<<?>> "path to associated `.cb' file"

Note: N_BROWS has the same value as N_BSLINE.

N_DEFD

.stabn: N_DEFD
GNU Modula2 definition module dependency.

GNU Modula-2 definition module dependency. The value is the modification time of the definition file. The other field is non-zero if it is imported with the GNU M2 keyword %INITIALIZE. Perhaps N_M2C can be used if there are enough empty fields?

N_EHDECL

.stabs: N_EHDECL
GNU C++ exception variable <<?>>.

"string is variable name"

Note: conflicts with N_MOD2.

N_MOD2

.stab?: N_MOD2
Modula2 info "for imc" (according to Ultrix V4.0)

Note: conflicts with N_EHDECL <<?>>

N_CATCH

.stabn: N_CATCH
GNU C++ catch clause

GNU C++ catch clause. The value is its address. The desc field is nonzero if this entry is immediately followed by a CAUGHT stab saying what exception was caught. Multiple CAUGHT stabs means that multiple exceptions can be caught here. If desc is 0, it means all exceptions are caught here.

N_SSYM

.stabn: N_SSYM
Structure or union element.

The value is the offset in the structure.

<<?looking at structs and unions in C I didn't see these>>

N_SCOPE

.stab?: N_SCOPE
Modula2 scope information (Sun linker) <<?>>

Non-base registers on Gould systems

.stab?: N_NBTEXT
.stab?: N_NBDATA
.stab?: N_NBBSS
.stab?: N_NBSTS
.stab?: N_NBLCS
These are used on Gould systems for non-base registers syms.

However, the following values are not the values used by Gould; they are the values which GNU has been documenting for these values for a long time, without actually checking what Gould uses. I include these values only because perhaps some someone actually did something with the GNU information (I hope not, why GNU knowingly assigned wrong values to these in the header file is a complete mystery to me).

240    0xf0     N_NBTEXT  ??
242    0xf2     N_NBDATA  ??
244    0xf4     N_NBBSS   ??
246    0xf6     N_NBSTS   ??
248    0xf8     N_NBLCS   ??

N_LENG

.stabn: N_LENG
Second symbol entry containing a length-value for the preceding entry. The value is the length.


Go to the first, previous, next, last section, table of contents.