sync
[bitrig.git] / share / man / man5 / stab.5
blob5d9c6ac4fdadbbc230897b972f3fdc966f7bd621
1 .\"     $OpenBSD: stab.5,v 1.14 2007/05/31 19:19:58 jmc Exp $
2 .\"     $NetBSD: stab.5,v 1.3 1994/11/30 19:31:33 jtc Exp $
3 .\"
4 .\" Copyright (c) 1980, 1991, 1993
5 .\"     The Regents of the University of California.  All rights reserved.
6 .\"
7 .\" Redistribution and use in source and binary forms, with or without
8 .\" modification, are permitted provided that the following conditions
9 .\" are met:
10 .\" 1. Redistributions of source code must retain the above copyright
11 .\"    notice, this list of conditions and the following disclaimer.
12 .\" 2. Redistributions in binary form must reproduce the above copyright
13 .\"    notice, this list of conditions and the following disclaimer in the
14 .\"    documentation and/or other materials provided with the distribution.
15 .\" 3. Neither the name of the University nor the names of its contributors
16 .\"    may be used to endorse or promote products derived from this software
17 .\"    without specific prior written permission.
18 .\"
19 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 .\" SUCH DAMAGE.
30 .\"
31 .\"     @(#)stab.5      8.1 (Berkeley) 6/5/93
32 .\"
33 .Dd $Mdocdate: May 31 2007 $
34 .Dt STAB 5
35 .Os
36 .Sh NAME
37 .Nm stab
38 .Nd symbol table types
39 .Sh SYNOPSIS
40 .Fd #include <stab.h>
41 .Sh DESCRIPTION
42 The
43 .Aq Pa stab.h
44 file defines some of the symbol table
45 .Fa n_type
46 field values for
47 .Xr a.out 5
48 files.
49 These are the types for permanent symbols (i.e., not local labels, etc.\&)
50 used by the old debugger
51 .Em sdb
52 and the Berkeley Pascal compiler pc.
53 .Pp
54 Symbol table entries can be produced by the
55 .Dq .stabs
56 assembler directive.
57 This allows one to specify a double-quote delimited name, a symbol type, one
58 .Li char
59 and one
60 .Li short
61 of information about the symbol, as well as an
62 .Li unsigned long
63 (usually an address).
64 .Pp
65 To avoid having to produce an explicit label for the address field,
66 the
67 .Dq .stabd
68 directive can be used to implicitly address the current location.
69 If no name is needed, symbol table entries can be generated using the
70 .Dq .stabn
71 directive.
72 The loader promises to preserve the order of symbol table entries produced by
73 .Dq .stab
74 directives.
75 As described in
76 .Xr a.out 5 ,
77 an element of the symbol table consists of the following structure:
78 .Bd -literal
80 * Format of a symbol table entry.
83 struct nlist {
84         union {
85                 char    *n_name;        /* for use when in-core */
86                 long    n_strx;         /* index into file string table */
87         } n_un;
88         unsigned char   n_type;         /* type flag */
89         char            n_other;        /* unused */
90         short           n_desc;         /* see struct desc, below */
91         unsigned        n_value;        /* address or offset or line */
93 .Ed
94 .Pp
95 The low bits of the
96 .Fa n_type
97 field are used to place a symbol into
98 at most one segment, according to
99 the following masks, defined in
100 .Aq Pa a.out.h .
101 A symbol can be in none of these segments by having none of these segment
102 bits set.
103 .Bd -literal
105 * Simple values for n_type.
108 #define N_UNDF  0x0     /* undefined */
109 #define N_ABS   0x2     /* absolute */
110 #define N_TEXT  0x4     /* text */
111 #define N_DATA  0x6     /* data */
112 #define N_BSS   0x8     /* bss */
114 #define N_EXT   01      /* external bit, or'ed in */
118 .Fa n_value
119 field of a symbol is relocated by the linker,
120 .Xr ld 1 ,
121 as an address within the appropriate segment.
122 .Fa n_value
123 fields of symbols not in any segment are unchanged by the linker.
124 In addition, the linker will discard certain symbols, according to rules
125 of its own, unless the
126 .Fa n_type
127 field has one of the following bits set:
128 .Bd -literal
130 * Other permanent symbol table entries have some of the N_STAB bits set.
131 * These are given in <stab.h>
134 #define N_STAB  0xe0    /* if any of these bits set, don't discard */
137 This allows up to 112 (7 \(** 16) symbol types, split between the various
138 segments.
139 Some of these have already been claimed.
140 The old symbolic debugger,
141 .Em sdb ,
142 uses the following
143 .Fa n_type
144 values:
145 .Bd -literal
146 #define N_GSYM  0x20    /* global symbol: name,,0,type,0 */
147 #define N_FNAME 0x22    /* procedure name (f77 kludge): name,,0 */
148 #define N_FUN   0x24    /* procedure: name,,0,linenumber,address */
149 #define N_STSYM 0x26    /* static symbol: name,,0,type,address */
150 #define N_LCSYM 0x28    /* .lcomm symbol: name,,0,type,address */
151 #define N_RSYM  0x40    /* register sym: name,,0,type,register */
152 #define N_SLINE 0x44    /* src line: 0,,0,linenumber,address */
153 #define N_SSYM  0x60    /* structure elt: name,,0,type,struct_offset */
154 #define N_SO    0x64    /* source file name: name,,0,0,address */
155 #define N_LSYM  0x80    /* local sym: name,,0,type,offset */
156 #define N_SOL   0x84    /* #included file name: name,,0,0,address */
157 #define N_PSYM  0xa0    /* parameter: name,,0,type,offset */
158 #define N_ENTRY 0xa4    /* alternate entry: name,linenumber,address */
159 #define N_LBRAC 0xc0    /* left bracket: 0,,0,nesting level,address */
160 #define N_RBRAC 0xe0    /* right bracket: 0,,0,nesting level,address */
161 #define N_BCOMM 0xe2    /* begin common: name,, */
162 #define N_ECOMM 0xe4    /* end common: name,, */
163 #define N_ECOML 0xe8    /* end common (local name): ,,address */
164 #define N_LENG  0xfe    /* second stab entry with length information */
167 where the comments give
168 .Em sdb
169 conventional use for
170 .Dq .stab s
171 and the
172 .Fa n_name ,
173 .Fa n_other ,
174 .Fa n_desc ,
176 .Fa n_value
177 fields
178 of the given
179 .Fa n_type .
180 .Em sdb
181 uses the
182 .Fa n_desc
183 field to hold a type specifier in the form used
184 by the Portable C Compiler,
185 .Xr cc 1 ;
186 see the header file
187 .Pa pcc.h
188 for details on the format of these type values.
190 The Berkeley Pascal compiler, pc, uses the following
191 .Fa n_type
192 value:
193 .Bd -literal
194 #define N_PC    0x30    /* global pascal symbol: name,,0,subtype,line */
197 and uses the following subtypes to do type checking across separately
198 compiled files:
199 .Bd -unfilled -offset indent
200 1       source file name
201 2       included file name
202 3       global label
203 4       global constant
204 5       global type
205 6       global variable
206 7       global function
207 8       global procedure
208 9       external function
209 10      external procedure
210 11      library variable
211 12      library routine
213 .Sh SEE ALSO
214 .Xr as 1 ,
215 .Xr gdb 1 ,
216 .Xr ld 1 ,
217 .Xr a.out 5
218 .Sh HISTORY
221 file appeared in
222 .Bx 4.0 .
223 .Sh BUGS
224 More basic types are needed.