Museum

Home

Lab Overview

Retrotechnology Articles

Online Manuals

⇒ stab(5) — AOS 4.3

Media Vault

Software Library

Restoration Projects

Artifacts Sought

Related Articles

as(1)

ld(1)

dbx(1)

a.out(5)

STAB(5)  —  Unix Programmer’s Manual

NAME

stab − symbol table types

SYNOPSIS

#include <stab.h>

DESCRIPTION

Stab.h defines some values of the n_type field of the symbol table of a.out files.  These are the types for permanent symbols (i.e. not local labels, etc.)  used by the old debugger sdb and the Berkeley Pascal compiler pc(1). Symbol table entries can be produced by the .stabs assembler directive.  This allows one to specify a double-quote delimited name, a symbol type, one char and one short of information about the symbol, and an unsigned long (usually an address).  To avoid having to produce an explicit label for the address field, the .stabd directive can be used to implicitly address the current location.  If no name is needed, symbol table entries can be generated using the .stabn directive.  The loader promises to preserve the order of symbol table entries produced by .stab directives.  As described in a.out(5), an element of the symbol table consists of the following structure:

/∗

∗ Format of a symbol table entry.

∗/
struct nlist {
union {
char∗n_name;/∗ for use when in-core ∗/
longn_strx;/∗ index into file string table ∗/
} n_un;
unsigned charn_type;/∗ type flag ∗/
charn_other;/∗ unused ∗/
shortn_desc;/∗ see struct desc, below ∗/
unsignedn_value;/∗ address or offset or line ∗/
};

The low bits of the n_type field are used to place a symbol into at most one segment, according to the following masks, defined in <a.out.h>. A symbol can be in none of these segments by having none of these segment bits set.

/∗

∗ Simple values for n_type.

∗/
#defineN_UNDF0x0/∗ undefined ∗/
#defineN_ABS0x2/∗ absolute ∗/
#defineN_TEXT0x4/∗ text ∗/
#defineN_DATA0x6/∗ data ∗/
#defineN_BSS0x8/∗ bss ∗/
 #defineN_EXT01/∗ external bit, or’ed in ∗/

The n_value field of a symbol is relocated by the linker, ld(1) as an address within the appropriate segment. N_value fields of symbols not in any segment are unchanged by the linker. In addition, the linker will discard certain symbols, according to rules of its own, unless the n_type field has one of the following bits set:

/∗

∗ Other permanent symbol table entries have some of the N_STAB bits set.

∗ These are given in <stab.h>

∗/
#defineN_STAB0xe0 /∗ if any of these bits set, don’t discard ∗/
 

This allows up to 112 (7 ∗ 16) symbol types, split between the various segments.  Some of these have already been claimed.  The old symbolic debugger, sdb, uses the following n_type values:

#defineN_GSYM0x20/∗ global symbol: name,,0,type,0 ∗/
#defineN_FNAME0x22/∗ procedure name (f77 kludge): name,,0 ∗/
#defineN_FUN0x24/∗ procedure: name,,0,linenumber,address ∗/
#defineN_STSYM0x26/∗ static symbol: name,,0,type,address ∗/
#defineN_LCSYM0x28/∗ .lcomm symbol: name,,0,type,address ∗/
#defineN_RSYM0x40/∗ register sym: name,,0,type,register ∗/
#defineN_SLINE0x44/∗ src line: 0,,0,linenumber,address ∗/
#defineN_SSYM0x60/∗ structure elt: name,,0,type,struct_offset ∗/
#defineN_SO0x64/∗ source file name: name,,0,0,address ∗/
#defineN_LSYM0x80/∗ local sym: name,,0,type,offset ∗/
#defineN_SOL0x84/∗ #included file name: name,,0,0,address ∗/
#defineN_PSYM0xa0/∗ parameter: name,,0,type,offset ∗/
#defineN_ENTRY0xa4/∗ alternate entry: name,linenumber,address ∗/
#defineN_LBRAC0xc0/∗ left bracket: 0,,0,nesting level,address ∗/
#defineN_RBRAC0xe0/∗ right bracket: 0,,0,nesting level,address ∗/
#defineN_BCOMM0xe2/∗ begin common: name,, ∗/
#defineN_ECOMM0xe4/∗ end common: name,, ∗/
#defineN_ECOML0xe8/∗ end common (local name): ,,address ∗/
#defineN_LENG0xfe/∗ second stab entry with length information ∗/

where the comments give sdb conventional use for .stabs and the n_name, n_other, n_desc, and n_value fields of the given n_type. Sdb uses the n_desc field to hold a type specifier in the form used by the Portable C Compiler, cc(1); see the header file pcc.h for details on the format of these type values. 

The Berkeley Pascal compiler, pc(1), uses the following n_type value:

#defineN_PC0x30/∗ global pascal symbol: name,,0,subtype,line ∗/

and uses the following subtypes to do type checking across separately compiled files:

1source file name
2included file name
3global label
4global constant
5global type
6global variable
7global function
8global procedure
9external function
10external procedure
11library variable
12library routine

SEE ALSO

as(1), ld(1), dbx(1), a.out(5)

BUGS

More basic types are needed. 

4th Berkeley Distribution  —  May 19, 1986

Typewritten Software • bear@typewritten.org • Edmonds, WA 98026