]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/symtab.h
* bfd/archive.c: Consistently use ARFMAG; from
[thirdparty/binutils-gdb.git] / gdb / symtab.h
CommitLineData
bd5635a1 1/* Symbol table definitions for GDB.
fb155ce3 2 Copyright 1986, 1989, 1991, 1992, 1993, 1994 Free Software Foundation, Inc.
bd5635a1
RP
3
4This file is part of GDB.
5
4a35d6e9 6This program is free software; you can redistribute it and/or modify
bd5635a1 7it under the terms of the GNU General Public License as published by
4a35d6e9
FF
8the Free Software Foundation; either version 2 of the License, or
9(at your option) any later version.
bd5635a1 10
4a35d6e9 11This program is distributed in the hope that it will be useful,
bd5635a1
RP
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
4a35d6e9
FF
17along with this program; if not, write to the Free Software
18Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
bd5635a1
RP
19
20#if !defined (SYMTAB_H)
21#define SYMTAB_H 1
bd5635a1
RP
22
23/* Some definitions and declarations to go with use of obstacks. */
2e4964ad
FF
24
25#include "obstack.h"
bd5635a1
RP
26#define obstack_chunk_alloc xmalloc
27#define obstack_chunk_free free
bd5635a1 28
2fe3b329
PS
29/* Don't do this; it means that if some .o's are compiled with GNU C
30 and some are not (easy to do accidentally the way we configure
31 things; also it is a pain to have to "make clean" every time you
32 want to switch compilers), then GDB dies a horrible death. */
33/* GNU C supports enums that are bitfields. Some compilers don't. */
34#if 0 && defined(__GNUC__) && !defined(BYTE_BITFIELD)
21578747
JG
35#define BYTE_BITFIELD :8;
36#else
37#define BYTE_BITFIELD /*nothing*/
38#endif
39
2e4964ad 40/* Define a structure for the information that is common to all symbol types,
d63aae7f
JK
41 including minimal symbols, partial symbols, and full symbols. In a
42 multilanguage environment, some language specific information may need to
21578747
JG
43 be recorded along with each symbol.
44
45 These fields are ordered to encourage good packing, since we frequently
46 have tens or hundreds of thousands of these. */
2e4964ad
FF
47
48struct general_symbol_info
49{
50 /* Name of the symbol. This is a required field. Storage for the name is
51 allocated on the psymbol_obstack or symbol_obstack for the associated
52 objfile. */
53
54 char *name;
55
fce30fa1
JK
56 /* Value of the symbol. Which member of this union to use, and what
57 it means, depends on what kind of symbol this is and its
58 SYMBOL_CLASS. See comments there for more details. All of these
59 are in host byte order (though what they point to might be in
60 target byte order, e.g. LOC_CONST_BYTES). */
2e4964ad
FF
61
62 union
63 {
2fe3b329
PS
64 /* The fact that this is a long not a LONGEST mainly limits the
65 range of a LOC_CONST. Since LOC_CONST_BYTES exists, I'm not
66 sure that is a big deal. */
2e4964ad
FF
67 long value;
68
2e4964ad
FF
69 struct block *block;
70
2e4964ad
FF
71 char *bytes;
72
2e4964ad
FF
73 CORE_ADDR address;
74
75 /* for opaque typedef struct chain */
bd5635a1 76
2e4964ad
FF
77 struct symbol *chain;
78 }
79 value;
80
d63aae7f
JK
81 /* Since one and only one language can apply, wrap the language specific
82 information inside a union. */
2e4964ad 83
d63aae7f
JK
84 union
85 {
86 struct cplus_specific /* For C++ */
87 {
88 char *demangled_name;
89 } cplus_specific;
90 struct chill_specific /* For Chill */
2e4964ad 91 {
d63aae7f
JK
92 char *demangled_name;
93 } chill_specific;
94 } language_specific;
ca6a826d 95
21578747
JG
96 /* Record the source code language that applies to this symbol.
97 This is used to select one of the fields from the language specific
98 union above. */
99
100 enum language language BYTE_BITFIELD;
101
ca6a826d
PS
102 /* Which section is this symbol in? This is an index into
103 section_offsets for this objfile. Negative means that the symbol
d63aae7f 104 does not get relocated relative to a section.
b86a1b3b
JK
105 Disclaimer: currently this is just used for xcoff, so don't
106 expect all symbol-reading code to set it correctly (the ELF code
107 also tries to set it correctly). */
d63aae7f 108
fb155ce3 109 short section;
2e4964ad
FF
110};
111
112#define SYMBOL_NAME(symbol) (symbol)->ginfo.name
113#define SYMBOL_VALUE(symbol) (symbol)->ginfo.value.value
114#define SYMBOL_VALUE_ADDRESS(symbol) (symbol)->ginfo.value.address
115#define SYMBOL_VALUE_BYTES(symbol) (symbol)->ginfo.value.bytes
116#define SYMBOL_BLOCK_VALUE(symbol) (symbol)->ginfo.value.block
117#define SYMBOL_VALUE_CHAIN(symbol) (symbol)->ginfo.value.chain
d63aae7f 118#define SYMBOL_LANGUAGE(symbol) (symbol)->ginfo.language
ca6a826d 119#define SYMBOL_SECTION(symbol) (symbol)->ginfo.section
ece2e98a
JG
120
121#define SYMBOL_CPLUS_DEMANGLED_NAME(symbol) \
d63aae7f 122 (symbol)->ginfo.language_specific.cplus_specific.demangled_name
2e4964ad 123
ece2e98a 124
2e4964ad
FF
125extern int demangle; /* We reference it, so go ahead and declare it. */
126
ece2e98a
JG
127/* Macro that initializes the language dependent portion of a symbol
128 depending upon the language for the symbol. */
129
130#define SYMBOL_INIT_LANGUAGE_SPECIFIC(symbol,language) \
131 do { \
132 SYMBOL_LANGUAGE (symbol) = language; \
133 if (SYMBOL_LANGUAGE (symbol) == language_cplus) \
134 { \
135 SYMBOL_CPLUS_DEMANGLED_NAME (symbol) = NULL; \
136 } \
ece2e98a
JG
137 else if (SYMBOL_LANGUAGE (symbol) == language_chill) \
138 { \
139 SYMBOL_CHILL_DEMANGLED_NAME (symbol) = NULL; \
140 } \
ece2e98a
JG
141 else \
142 { \
d63aae7f
JK
143 memset (&(symbol)->ginfo.language_specific, 0, \
144 sizeof ((symbol)->ginfo.language_specific)); \
ece2e98a
JG
145 } \
146 } while (0)
147
148/* Macro that attempts to initialize the demangled name for a symbol,
149 based on the language of that symbol. If the language is set to
150 language_auto, it will attempt to find any demangling algorithm
151 that works and then set the language appropriately. If no demangling
152 of any kind is found, the language is set back to language_unknown,
153 so we can avoid doing this work again the next time we encounter
154 the symbol. Any required space to store the name is obtained from the
155 specified obstack. */
156
157#define SYMBOL_INIT_DEMANGLED_NAME(symbol,obstack) \
158 do { \
159 char *demangled = NULL; \
160 if (SYMBOL_LANGUAGE (symbol) == language_cplus \
161 || SYMBOL_LANGUAGE (symbol) == language_auto) \
162 { \
163 demangled = \
164 cplus_demangle (SYMBOL_NAME (symbol), DMGL_PARAMS | DMGL_ANSI);\
165 if (demangled != NULL) \
166 { \
167 SYMBOL_LANGUAGE (symbol) = language_cplus; \
168 SYMBOL_CPLUS_DEMANGLED_NAME (symbol) = \
169 obsavestring (demangled, strlen (demangled), (obstack)); \
170 free (demangled); \
171 } \
172 else \
173 { \
174 SYMBOL_CPLUS_DEMANGLED_NAME (symbol) = NULL; \
175 } \
176 } \
ece2e98a
JG
177 if (demangled == NULL \
178 && (SYMBOL_LANGUAGE (symbol) == language_chill \
179 || SYMBOL_LANGUAGE (symbol) == language_auto)) \
180 { \
181 demangled = \
182 chill_demangle (SYMBOL_NAME (symbol)); \
183 if (demangled != NULL) \
184 { \
185 SYMBOL_LANGUAGE (symbol) = language_chill; \
186 SYMBOL_CHILL_DEMANGLED_NAME (symbol) = \
187 obsavestring (demangled, strlen (demangled), (obstack)); \
188 free (demangled); \
189 } \
190 else \
191 { \
192 SYMBOL_CHILL_DEMANGLED_NAME (symbol) = NULL; \
193 } \
194 } \
ece2e98a
JG
195 if (SYMBOL_LANGUAGE (symbol) == language_auto) \
196 { \
197 SYMBOL_LANGUAGE (symbol) = language_unknown; \
198 } \
199 } while (0)
200
201/* Macro that returns the demangled name for a symbol based on the language
202 for that symbol. If no demangled name exists, returns NULL. */
203
ece2e98a
JG
204#define SYMBOL_DEMANGLED_NAME(symbol) \
205 (SYMBOL_LANGUAGE (symbol) == language_cplus \
206 ? SYMBOL_CPLUS_DEMANGLED_NAME (symbol) \
207 : (SYMBOL_LANGUAGE (symbol) == language_chill \
208 ? SYMBOL_CHILL_DEMANGLED_NAME (symbol) \
209 : NULL))
210
5aefc1ca 211#define SYMBOL_CHILL_DEMANGLED_NAME(symbol) \
d63aae7f 212 (symbol)->ginfo.language_specific.chill_specific.demangled_name
ece2e98a 213
2e4964ad
FF
214/* Macro that returns the "natural source name" of a symbol. In C++ this is
215 the "demangled" form of the name if demangle is on and the "mangled" form
216 of the name if demangle is off. In other languages this is just the
ece2e98a 217 symbol name. The result should never be NULL. */
2e4964ad 218
ece2e98a
JG
219#define SYMBOL_SOURCE_NAME(symbol) \
220 (demangle && SYMBOL_DEMANGLED_NAME (symbol) != NULL \
221 ? SYMBOL_DEMANGLED_NAME (symbol) \
222 : SYMBOL_NAME (symbol))
2e4964ad
FF
223
224/* Macro that returns the "natural assembly name" of a symbol. In C++ this is
225 the "mangled" form of the name if demangle is off, or if demangle is on and
226 asm_demangle is off. Otherwise if asm_demangle is on it is the "demangled"
ece2e98a
JG
227 form. In other languages this is just the symbol name. The result should
228 never be NULL. */
2e4964ad 229
ece2e98a
JG
230#define SYMBOL_LINKAGE_NAME(symbol) \
231 (demangle && asm_demangle && SYMBOL_DEMANGLED_NAME (symbol) != NULL \
232 ? SYMBOL_DEMANGLED_NAME (symbol) \
233 : SYMBOL_NAME (symbol))
2e4964ad 234
54023465
JK
235/* From utils.c. */
236extern int demangle;
237extern int asm_demangle;
238
2e4964ad
FF
239/* Macro that tests a symbol for a match against a specified name string.
240 First test the unencoded name, then looks for and test a C++ encoded
241 name if it exists. Note that whitespace is ignored while attempting to
242 match a C++ encoded name, so that "foo::bar(int,long)" is the same as
243 "foo :: bar (int, long)".
244 Evaluates to zero if the match fails, or nonzero if it succeeds. */
245
ece2e98a
JG
246#define SYMBOL_MATCHES_NAME(symbol, name) \
247 (STREQ (SYMBOL_NAME (symbol), (name)) \
248 || (SYMBOL_DEMANGLED_NAME (symbol) != NULL \
249 && strcmp_iw (SYMBOL_DEMANGLED_NAME (symbol), (name)) == 0))
2e4964ad
FF
250
251/* Macro that tests a symbol for an re-match against the last compiled regular
252 expression. First test the unencoded name, then look for and test a C++
253 encoded name if it exists.
254 Evaluates to zero if the match fails, or nonzero if it succeeds. */
255
ece2e98a
JG
256#define SYMBOL_MATCHES_REGEXP(symbol) \
257 (re_exec (SYMBOL_NAME (symbol)) != 0 \
258 || (SYMBOL_DEMANGLED_NAME (symbol) != NULL \
259 && re_exec (SYMBOL_DEMANGLED_NAME (symbol)) != 0))
2e4964ad 260
b0246b3b 261/* Define a simple structure used to hold some very basic information about
2e4964ad
FF
262 all defined global symbols (text, data, bss, abs, etc). The only required
263 information is the general_symbol_info.
264
265 In many cases, even if a file was compiled with no special options for
266 debugging at all, as long as was not stripped it will contain sufficient
267 information to build a useful minimal symbol table using this structure.
268 Even when a file contains enough debugging information to build a full
269 symbol table, these minimal symbols are still useful for quickly mapping
270 between names and addresses, and vice versa. They are also sometimes
271 used to figure out what full symbol table entries need to be read in. */
bd5635a1 272
b0246b3b
FF
273struct minimal_symbol
274{
bd5635a1 275
fce30fa1
JK
276 /* The general symbol info required for all types of symbols.
277
278 The SYMBOL_VALUE_ADDRESS contains the address that this symbol
279 corresponds to. */
bd5635a1 280
2e4964ad 281 struct general_symbol_info ginfo;
bd5635a1 282
b0246b3b
FF
283 /* The info field is available for caching machine-specific information that
284 The AMD 29000 tdep.c uses it to remember things it has decoded from the
285 instructions in the function header, so it doesn't have to rederive the
286 info constantly (over a serial line). It is initialized to zero and
287 stays that way until target-dependent code sets it. Storage for any data
288 pointed to by this field should be allocated on the symbol_obstack for
289 the associated objfile. The type would be "void *" except for reasons
290 of compatibility with older compilers. This field is optional. */
291
292 char *info;
293
294 /* Classification types for this symbol. These should be taken as "advisory
295 only", since if gdb can't easily figure out a classification it simply
296 selects mst_unknown. It may also have to guess when it can't figure out
297 which is a better match between two types (mst_data versus mst_bss) for
298 example. Since the minimal symbol info is sometimes derived from the
299 BFD library's view of a file, we need to live with what information bfd
300 supplies. */
301
302 enum minimal_symbol_type
bd5635a1 303 {
b0246b3b
FF
304 mst_unknown = 0, /* Unknown type, the default */
305 mst_text, /* Generally executable instructions */
306 mst_data, /* Generally initialized data */
307 mst_bss, /* Generally uninitialized data */
313dd520 308 mst_abs, /* Generally absolute (nonrelocatable) */
2fe3b329
PS
309 /* GDB uses mst_solib_trampoline for the start address of a shared
310 library trampoline entry. Breakpoints for shared library functions
311 are put there if the shared library is not yet loaded.
312 After the shared library is loaded, lookup_minimal_symbol will
313 prefer the minimal symbol from the shared library (usually
314 a mst_text symbol) over the mst_solib_trampoline symbol, and the
315 breakpoints will be moved to their true address in the shared
316 library via breakpoint_re_set. */
317 mst_solib_trampoline, /* Shared library trampoline code */
313dd520
JK
318 /* For the mst_file* types, the names are only guaranteed to be unique
319 within a given .o file. */
320 mst_file_text, /* Static version of mst_text */
321 mst_file_data, /* Static version of mst_data */
322 mst_file_bss /* Static version of mst_bss */
21578747 323 } type BYTE_BITFIELD;
d018c8a6 324
bd5635a1 325};
7e258d18 326
2e4964ad
FF
327#define MSYMBOL_INFO(msymbol) (msymbol)->info
328#define MSYMBOL_TYPE(msymbol) (msymbol)->type
329
bd5635a1
RP
330\f
331/* All of the name-scope contours of the program
332 are represented by `struct block' objects.
333 All of these objects are pointed to by the blockvector.
334
335 Each block represents one name scope.
336 Each lexical context has its own block.
337
0b28c260
JK
338 The blockvector begins with some special blocks.
339 The GLOBAL_BLOCK contains all the symbols defined in this compilation
bd5635a1 340 whose scope is the entire program linked together.
0b28c260 341 The STATIC_BLOCK contains all the symbols whose scope is the
bd5635a1 342 entire compilation excluding other separate compilations.
0b28c260 343 Blocks starting with the FIRST_LOCAL_BLOCK are not special.
bd5635a1
RP
344
345 Each block records a range of core addresses for the code that
0b28c260 346 is in the scope of the block. The STATIC_BLOCK and GLOBAL_BLOCK
bd5635a1
RP
347 give, for the range of code, the entire range of code produced
348 by the compilation that the symbol segment belongs to.
349
350 The blocks appear in the blockvector
351 in order of increasing starting-address,
352 and, within that, in order of decreasing ending-address.
353
354 This implies that within the body of one function
355 the blocks appear in the order of a depth-first tree walk. */
356
357struct blockvector
358{
359 /* Number of blocks in the list. */
360 int nblocks;
361 /* The blocks themselves. */
362 struct block *block[1];
363};
364
2e4964ad
FF
365#define BLOCKVECTOR_NBLOCKS(blocklist) (blocklist)->nblocks
366#define BLOCKVECTOR_BLOCK(blocklist,n) (blocklist)->block[n]
367
92a29b47 368/* Special block numbers */
2e4964ad
FF
369
370#define GLOBAL_BLOCK 0
371#define STATIC_BLOCK 1
92a29b47
JG
372#define FIRST_LOCAL_BLOCK 2
373
bd5635a1
RP
374struct block
375{
2e4964ad 376
0b28c260 377 /* Addresses in the executable code that are in this block. */
2e4964ad
FF
378
379 CORE_ADDR startaddr;
380 CORE_ADDR endaddr;
381
0b28c260
JK
382 /* The symbol that names this block, if the block is the body of a
383 function; otherwise, zero. */
2e4964ad 384
bd5635a1 385 struct symbol *function;
2e4964ad
FF
386
387 /* The `struct block' for the containing block, or 0 if none.
0b28c260
JK
388
389 The superblock of a top-level local block (i.e. a function in the
390 case of C) is the STATIC_BLOCK. The superblock of the
391 STATIC_BLOCK is the GLOBAL_BLOCK. */
2e4964ad 392
bd5635a1 393 struct block *superblock;
2e4964ad 394
0b28c260
JK
395 /* Version of GCC used to compile the function corresponding
396 to this block, or 0 if not compiled with GCC. When possible,
397 GCC should be compatible with the native compiler, or if that
398 is not feasible, the differences should be fixed during symbol
399 reading. As of 16 Apr 93, this flag is never used to distinguish
400 between gcc2 and the native compiler.
401
402 If there is no function corresponding to this block, this meaning
403 of this flag is undefined. */
2e4964ad 404
bd5635a1 405 unsigned char gcc_compile_flag;
2e4964ad 406
bd5635a1 407 /* Number of local symbols. */
2e4964ad 408
bd5635a1 409 int nsyms;
2e4964ad 410
54023465
JK
411 /* The symbols. If some of them are arguments, then they must be
412 in the order in which we would like to print them. */
2e4964ad 413
bd5635a1
RP
414 struct symbol *sym[1];
415};
bd5635a1 416
2e4964ad
FF
417#define BLOCK_START(bl) (bl)->startaddr
418#define BLOCK_END(bl) (bl)->endaddr
419#define BLOCK_NSYMS(bl) (bl)->nsyms
420#define BLOCK_SYM(bl, n) (bl)->sym[n]
421#define BLOCK_FUNCTION(bl) (bl)->function
422#define BLOCK_SUPERBLOCK(bl) (bl)->superblock
423#define BLOCK_GCC_COMPILED(bl) (bl)->gcc_compile_flag
bd5635a1 424
54023465
JK
425/* Nonzero if symbols of block BL should be sorted alphabetically.
426 Don't sort a block which corresponds to a function. If we did the
427 sorting would have to preserve the order of the symbols for the
428 arguments. */
bd5635a1 429
54023465 430#define BLOCK_SHOULD_SORT(bl) ((bl)->nsyms >= 40 && BLOCK_FUNCTION (bl) == NULL)
bd5635a1 431
2e4964ad
FF
432\f
433/* Represent one symbol name; a variable, constant, function or typedef. */
bd5635a1 434
2e4964ad
FF
435/* Different name spaces for symbols. Looking up a symbol specifies a
436 namespace and ignores symbol definitions in other name spaces. */
437
bd5635a1
RP
438enum namespace
439{
2e4964ad
FF
440 /* UNDEF_NAMESPACE is used when a namespace has not been discovered or
441 none of the following apply. This usually indicates an error either
442 in the symbol information or in gdb's handling of symbols. */
443
444 UNDEF_NAMESPACE,
445
446 /* VAR_NAMESPACE is the usual namespace. In C, this contains variables,
447 function names, typedef names and enum type values. */
448
449 VAR_NAMESPACE,
450
451 /* STRUCT_NAMESPACE is used in C to hold struct, union and enum type names.
452 Thus, if `struct foo' is used in a C program, it produces a symbol named
453 `foo' in the STRUCT_NAMESPACE. */
454
455 STRUCT_NAMESPACE,
456
457 /* LABEL_NAMESPACE may be used for names of labels (for gotos);
458 currently it is not used and labels are not recorded at all. */
459
460 LABEL_NAMESPACE
bd5635a1
RP
461};
462
463/* An address-class says where to find the value of a symbol. */
464
465enum address_class
466{
2e4964ad
FF
467 /* Not used; catches errors */
468
469 LOC_UNDEF,
470
471 /* Value is constant int SYMBOL_VALUE, host byteorder */
472
473 LOC_CONST,
474
475 /* Value is at fixed address SYMBOL_VALUE_ADDRESS */
476
477 LOC_STATIC,
478
fce30fa1 479 /* Value is in register. SYMBOL_VALUE is the register number. */
2e4964ad
FF
480
481 LOC_REGISTER,
482
fce30fa1 483 /* It's an argument; the value is at SYMBOL_VALUE offset in arglist. */
2e4964ad
FF
484
485 LOC_ARG,
486
5afa2040 487 /* Value address is at SYMBOL_VALUE offset in arglist. */
2e4964ad
FF
488
489 LOC_REF_ARG,
490
fce30fa1
JK
491 /* Value is in register number SYMBOL_VALUE. Just like LOC_REGISTER
492 except this is an argument. Probably the cleaner way to handle
493 this would be to separate address_class (which would include
494 separate ARG and LOCAL to deal with FRAME_ARGS_ADDRESS versus
495 FRAME_LOCALS_ADDRESS), and an is_argument flag.
0b28c260
JK
496
497 For some symbol formats (stabs, for some compilers at least),
5afa2040
JK
498 the compiler generates two symbols, an argument and a register.
499 In some cases we combine them to a single LOC_REGPARM in symbol
9c5c2722
JK
500 reading, but currently not for all cases (e.g. it's passed on the
501 stack and then loaded into a register). */
2e4964ad
FF
502
503 LOC_REGPARM,
504
5afa2040
JK
505 /* Value is in specified register. Just like LOC_REGPARM except the
506 register holds the address of the argument instead of the argument
507 itself. This is currently used for the passing of structs and unions
b9298844
JK
508 on sparc and hppa. It is also used for call by reference where the
509 address is in a register, at least by mipsread.c. */
5afa2040
JK
510
511 LOC_REGPARM_ADDR,
512
fce30fa1 513 /* Value is a local variable at SYMBOL_VALUE offset in stack frame. */
2e4964ad
FF
514
515 LOC_LOCAL,
516
517 /* Value not used; definition in SYMBOL_TYPE. Symbols in the namespace
518 STRUCT_NAMESPACE all have this class. */
519
520 LOC_TYPEDEF,
521
522 /* Value is address SYMBOL_VALUE_ADDRESS in the code */
523
524 LOC_LABEL,
525
fce30fa1
JK
526 /* In a symbol table, value is SYMBOL_BLOCK_VALUE of a `struct block'.
527 In a partial symbol table, SYMBOL_VALUE_ADDRESS is the start address
528 of the block. Function names have this class. */
2e4964ad
FF
529
530 LOC_BLOCK,
531
ca6a826d 532 /* Value is a constant byte-sequence pointed to by SYMBOL_VALUE_BYTES, in
2e4964ad
FF
533 target byte order. */
534
535 LOC_CONST_BYTES,
536
fce30fa1
JK
537 /* Value is arg at SYMBOL_VALUE offset in stack frame. Differs from
538 LOC_LOCAL in that symbol is an argument; differs from LOC_ARG in
539 that we find it in the frame (FRAME_LOCALS_ADDRESS), not in the
540 arglist (FRAME_ARGS_ADDRESS). Added for i960, which passes args
541 in regs then copies to frame. */
2e4964ad 542
ca6a826d
PS
543 LOC_LOCAL_ARG,
544
a1c8d76e
JK
545 /* Value is at SYMBOL_VALUE offset from the current value of
546 register number SYMBOL_BASEREG. This exists mainly for the same
547 things that LOC_LOCAL and LOC_ARG do; but we need to do this
548 instead because on 88k DWARF gives us the offset from the
549 frame/stack pointer, rather than the offset from the "canonical
550 frame address" used by COFF, stabs, etc., and we don't know how
551 to convert between these until we start examining prologues.
552
c438b3af
JK
553 Note that LOC_BASEREG is much less general than a DWARF expression.
554 We don't need the generality (at least not yet), and storing a general
555 DWARF expression would presumably take up more space than the existing
556 scheme. */
a1c8d76e
JK
557
558 LOC_BASEREG,
559
560 /* Same as LOC_BASEREG but it is an argument. */
561
562 LOC_BASEREG_ARG,
563
ca6a826d 564 /* The variable does not actually exist in the program.
fce30fa1 565 The value is ignored. */
2e4964ad 566
ca6a826d 567 LOC_OPTIMIZED_OUT
bd5635a1
RP
568};
569
570struct symbol
571{
2e4964ad
FF
572
573 /* The general symbol info required for all types of symbols. */
574
575 struct general_symbol_info ginfo;
576
21578747 577 /* Data type of value */
2e4964ad 578
21578747 579 struct type *type;
2e4964ad 580
21578747 581 /* Name space code. */
2e4964ad 582
21578747 583 enum namespace namespace BYTE_BITFIELD;
2e4964ad 584
21578747 585 /* Address class */
2e4964ad 586
21578747 587 enum address_class class BYTE_BITFIELD;
bd5635a1 588
2e4964ad
FF
589 /* Line number of definition. FIXME: Should we really make the assumption
590 that nobody will try to debug files longer than 64K lines? What about
591 machine generated programs? */
592
bd5635a1
RP
593 unsigned short line;
594
252f6c65
FF
595 /* Some symbols require an additional value to be recorded on a per-
596 symbol basis. Stash those values here. */
2e4964ad 597
252f6c65
FF
598 union
599 {
a1c8d76e
JK
600 /* Used by LOC_BASEREG and LOC_BASEREG_ARG. */
601 short basereg;
252f6c65
FF
602 }
603 aux_value;
bd5635a1
RP
604};
605
2e4964ad
FF
606#define SYMBOL_NAMESPACE(symbol) (symbol)->namespace
607#define SYMBOL_CLASS(symbol) (symbol)->class
608#define SYMBOL_TYPE(symbol) (symbol)->type
609#define SYMBOL_LINE(symbol) (symbol)->line
a1c8d76e 610#define SYMBOL_BASEREG(symbol) (symbol)->aux_value.basereg
2e4964ad 611\f
bd5635a1
RP
612/* A partial_symbol records the name, namespace, and address class of
613 symbols whose types we have not parsed yet. For functions, it also
614 contains their memory address, so we can find them from a PC value.
615 Each partial_symbol sits in a partial_symtab, all of which are chained
b0246b3b 616 on a partial symtab list and which points to the corresponding
bd5635a1
RP
617 normal symtab once the partial_symtab has been referenced. */
618
619struct partial_symbol
620{
2e4964ad
FF
621
622 /* The general symbol info required for all types of symbols. */
623
624 struct general_symbol_info ginfo;
625
bd5635a1 626 /* Name space code. */
2e4964ad 627
21578747 628 enum namespace namespace BYTE_BITFIELD;
2e4964ad 629
bd5635a1 630 /* Address class (for info_symbols) */
2e4964ad 631
21578747 632 enum address_class class BYTE_BITFIELD;
2e4964ad 633
bd5635a1 634};
2e4964ad
FF
635
636#define PSYMBOL_NAMESPACE(psymbol) (psymbol)->namespace
637#define PSYMBOL_CLASS(psymbol) (psymbol)->class
638
bd5635a1 639\f
2e4964ad
FF
640/* Source-file information. This describes the relation between source files,
641 ine numbers and addresses in the program text. */
bd5635a1
RP
642
643struct sourcevector
644{
645 int length; /* Number of source files described */
646 struct source *source[1]; /* Descriptions of the files */
647};
648
649/* Each item represents a line-->pc (or the reverse) mapping. This is
650 somewhat more wasteful of space than one might wish, but since only
651 the files which are actually debugged are read in to core, we don't
ece2e98a 652 waste much space. */
bd5635a1
RP
653
654struct linetable_entry
655{
656 int line;
657 CORE_ADDR pc;
658};
659
c438b3af
JK
660/* The order of entries in the linetable is significant. They should
661 be sorted by increasing values of the pc field. If there is more than
662 one entry for a given pc, then I'm not sure what should happen (and
663 I not sure whether we currently handle it the best way).
b9298844 664
c438b3af 665 Example: a C for statement generally looks like this
b9298844
JK
666
667 10 0x100 - for the init/test part of a for stmt.
668 20 0x200
669 30 0x300
670 10 0x400 - for the increment part of a for stmt.
671
c438b3af 672 */
b9298844 673
bd5635a1
RP
674struct linetable
675{
676 int nitems;
c438b3af
JK
677
678 /* Actually NITEMS elements. If you don't like this use of the
679 `struct hack', you can shove it up your ANSI (seriously, if the
680 committee tells us how to do it, we can probably go along). */
bd5635a1
RP
681 struct linetable_entry item[1];
682};
683
684/* All the information on one source file. */
685
686struct source
687{
688 char *name; /* Name of file */
689 struct linetable contents;
690};
691
2670f34d
JG
692/* How to relocate the symbols from each section in a symbol file.
693 Each struct contains an array of offsets.
694 The ordering and meaning of the offsets is file-type-dependent;
695 typically it is indexed by section numbers or symbol types or
696 something like that.
697
698 To give us flexibility in changing the internal representation
699 of these offsets, the ANOFFSET macro must be used to insert and
700 extract offset values in the struct. */
701
702struct section_offsets
703 {
704 CORE_ADDR offsets[1]; /* As many as needed. */
705 };
706
707#define ANOFFSET(secoff, whichone) (secoff->offsets[whichone])
708
b86a1b3b 709/* Each source file or header is represented by a struct symtab.
bd5635a1
RP
710 These objects are chained through the `next' field. */
711
712struct symtab
713 {
2e4964ad 714
bd5635a1 715 /* Chain of all existing symtabs. */
2e4964ad 716
bd5635a1 717 struct symtab *next;
2e4964ad 718
b86a1b3b
JK
719 /* List of all symbol scope blocks for this symtab. May be shared
720 between different symtabs (and normally is for all the symtabs
721 in a given compilation unit). */
2e4964ad 722
bd5635a1 723 struct blockvector *blockvector;
2e4964ad 724
4137c5fc 725 /* Table mapping core addresses to line numbers for this file.
b86a1b3b 726 Can be NULL if none. Never shared between different symtabs. */
2e4964ad 727
bd5635a1 728 struct linetable *linetable;
2e4964ad 729
ca6a826d
PS
730 /* Section in objfile->section_offsets for the blockvector and
731 the linetable. */
732
733 int block_line_section;
734
735 /* If several symtabs share a blockvector, exactly one of them
736 should be designed the primary, so that the blockvector
737 is relocated exactly once by objfile_relocate. */
738
739 int primary;
740
bd5635a1 741 /* Name of this source file. */
2e4964ad 742
bd5635a1 743 char *filename;
2e4964ad 744
bd5635a1 745 /* Directory in which it was compiled, or NULL if we don't know. */
2e4964ad 746
bd5635a1 747 char *dirname;
2e4964ad 748
bd5635a1
RP
749 /* This component says how to free the data we point to:
750 free_contents => do a tree walk and free each object.
751 free_nothing => do nothing; some other symtab will free
752 the data this one uses.
b86a1b3b
JK
753 free_linetable => free just the linetable. FIXME: Is this redundant
754 with the primary field? */
2e4964ad
FF
755
756 enum free_code
757 {
758 free_nothing, free_contents, free_linetable
759 }
760 free_code;
761
bd5635a1
RP
762 /* Pointer to one block of storage to be freed, if nonzero. */
763 /* This is IN ADDITION to the action indicated by free_code. */
2e4964ad 764
bd5635a1 765 char *free_ptr;
2e4964ad 766
bd5635a1 767 /* Total number of lines found in source file. */
2e4964ad 768
bd5635a1 769 int nlines;
2e4964ad 770
025abdfb
JK
771 /* line_charpos[N] is the position of the (N-1)th line of the
772 source file. "position" means something we can lseek() to; it
773 is not guaranteed to be useful any other way. */
2e4964ad 774
bd5635a1 775 int *line_charpos;
2e4964ad 776
bd5635a1 777 /* Language of this source file. */
2e4964ad 778
bd5635a1 779 enum language language;
2e4964ad 780
bd5635a1 781 /* String of version information. May be zero. */
2e4964ad 782
bd5635a1 783 char *version;
2e4964ad 784
bd5635a1 785 /* Full name of file as found by searching the source path.
2e4964ad
FF
786 NULL if not yet known. */
787
bd5635a1 788 char *fullname;
8aa13b87 789
a048c8f5 790 /* Object file from which this symbol information was read. */
2e4964ad 791
a048c8f5 792 struct objfile *objfile;
a048c8f5 793
8aa13b87
JK
794 /* Anything extra for this symtab. This is for target machines
795 with special debugging info of some sort (which cannot just
796 be represented in a normal symtab). */
2e4964ad 797
8aa13b87
JK
798#if defined (EXTRA_SYMTAB_INFO)
799 EXTRA_SYMTAB_INFO
800#endif
2e4964ad 801
bd5635a1
RP
802 };
803
2e4964ad
FF
804#define BLOCKVECTOR(symtab) (symtab)->blockvector
805#define LINETABLE(symtab) (symtab)->linetable
806
807\f
bd5635a1
RP
808/* Each source file that has not been fully read in is represented by
809 a partial_symtab. This contains the information on where in the
810 executable the debugging symbols for a specific file are, and a
811 list of names of global symbols which are located in this file.
b0246b3b 812 They are all chained on partial symtab lists.
bd5635a1
RP
813
814 Even after the source file has been read into a symtab, the
815 partial_symtab remains around. They are allocated on an obstack,
816 psymbol_obstack. FIXME, this is bad for dynamic linking or VxWorks-
817 style execution of a bunch of .o's. */
b0246b3b 818
bd5635a1
RP
819struct partial_symtab
820{
2e4964ad 821
bd5635a1 822 /* Chain of all existing partial symtabs. */
2e4964ad 823
bd5635a1 824 struct partial_symtab *next;
2e4964ad 825
bd5635a1 826 /* Name of the source file which this partial_symtab defines */
2e4964ad 827
bd5635a1
RP
828 char *filename;
829
a048c8f5 830 /* Information about the object file from which symbols should be read. */
2e4964ad 831
a048c8f5 832 struct objfile *objfile;
a048c8f5 833
2670f34d 834 /* Set of relocation offsets to apply to each section. */
2e4964ad 835
2670f34d
JG
836 struct section_offsets *section_offsets;
837
bd5635a1
RP
838 /* Range of text addresses covered by this file; texthigh is the
839 beginning of the next section. */
2e4964ad
FF
840
841 CORE_ADDR textlow;
842 CORE_ADDR texthigh;
843
bd5635a1
RP
844 /* Array of pointers to all of the partial_symtab's which this one
845 depends on. Since this array can only be set to previous or
846 the current (?) psymtab, this dependency tree is guaranteed not
d63aae7f
JK
847 to have any loops. "depends on" means that symbols must be read
848 for the dependencies before being read for this psymtab; this is
849 for type references in stabs, where if foo.c includes foo.h, declarations
850 in foo.h may use type numbers defined in foo.c. For other debugging
851 formats there may be no need to use dependencies. */
2e4964ad 852
bd5635a1 853 struct partial_symtab **dependencies;
2e4964ad 854
bd5635a1 855 int number_of_dependencies;
2e4964ad 856
bd5635a1
RP
857 /* Global symbol list. This list will be sorted after readin to
858 improve access. Binary search will be the usual method of
859 finding a symbol within it. globals_offset is an integer offset
4a35d6e9 860 within global_psymbols[]. */
2e4964ad
FF
861
862 int globals_offset;
863 int n_global_syms;
864
bd5635a1
RP
865 /* Static symbol list. This list will *not* be sorted after readin;
866 to find a symbol in it, exhaustive search must be used. This is
867 reasonable because searches through this list will eventually
868 lead to either the read in of a files symbols for real (assumed
869 to take a *lot* of time; check) or an error (and we don't care
4a35d6e9
FF
870 how long errors take). This is an offset and size within
871 static_psymbols[]. */
2e4964ad
FF
872
873 int statics_offset;
874 int n_static_syms;
875
bd5635a1
RP
876 /* Pointer to symtab eventually allocated for this source file, 0 if
877 !readin or if we haven't looked for the symtab after it was readin. */
2e4964ad 878
bd5635a1 879 struct symtab *symtab;
2e4964ad 880
bd5635a1
RP
881 /* Pointer to function which will read in the symtab corresponding to
882 this psymtab. */
2e4964ad 883
b0246b3b 884 void (*read_symtab) PARAMS ((struct partial_symtab *));
2e4964ad 885
4a35d6e9
FF
886 /* Information that lets read_symtab() locate the part of the symbol table
887 that this psymtab corresponds to. This information is private to the
888 format-dependent symbol reading routines. For further detail examine
889 the various symbol reading modules. Should really be (void *) but is
890 (char *) as with other such gdb variables. (FIXME) */
2e4964ad 891
4a35d6e9 892 char *read_symtab_private;
2e4964ad
FF
893
894 /* Non-zero if the symtab corresponding to this psymtab has been readin */
895
bd5635a1
RP
896 unsigned char readin;
897};
898
899/* A fast way to get from a psymtab to its symtab (after the first time). */
2e4964ad
FF
900#define PSYMTAB_TO_SYMTAB(pst) \
901 ((pst) -> symtab != NULL ? (pst) -> symtab : psymtab_to_symtab (pst))
bd5635a1 902
bd5635a1 903\f
2e4964ad
FF
904/* The virtual function table is now an array of structures which have the
905 form { int16 offset, delta; void *pfn; }.
aec4cb91 906
ea9cdf62
JK
907 In normal virtual function tables, OFFSET is unused.
908 DELTA is the amount which is added to the apparent object's base
909 address in order to point to the actual object to which the
910 virtual function should be applied.
0b28c260
JK
911 PFN is a pointer to the virtual function.
912
913 Note that this macro is g++ specific (FIXME). */
bd5635a1
RP
914
915#define VTBL_FNADDR_OFFSET 2
ea9cdf62 916
2e4964ad
FF
917/* Macro that yields non-zero value iff NAME is the prefix for C++ operator
918 names. If you leave out the parenthesis here you will lose!
ea9cdf62 919 Currently 'o' 'p' CPLUS_MARKER is used for both the symbol in the
0b28c260
JK
920 symbol-file and the names in gdb's symbol table.
921 Note that this macro is g++ specific (FIXME). */
ea9cdf62 922
2e4964ad
FF
923#define OPNAME_PREFIX_P(NAME) \
924 ((NAME)[0] == 'o' && (NAME)[1] == 'p' && (NAME)[2] == CPLUS_MARKER)
925
ca6a826d 926/* Macro that yields non-zero value iff NAME is the prefix for C++ vtbl
0b28c260 927 names. Note that this macro is g++ specific (FIXME). */
ca6a826d 928
2e4964ad
FF
929#define VTBL_PREFIX_P(NAME) \
930 ((NAME)[3] == CPLUS_MARKER && !strncmp ((NAME), "_vt", 3))
931
ca6a826d 932/* Macro that yields non-zero value iff NAME is the prefix for C++ destructor
0b28c260 933 names. Note that this macro is g++ specific (FIXME). */
ca6a826d
PS
934
935#define DESTRUCTOR_PREFIX_P(NAME) \
936 ((NAME)[0] == '_' && (NAME)[1] == CPLUS_MARKER && (NAME)[2] == '_')
937
bd5635a1 938\f
2e4964ad
FF
939/* External variables and functions for the objects described above. */
940
941/* This symtab variable specifies the current file for printing source lines */
942
943extern struct symtab *current_source_symtab;
944
945/* This is the next line to print for listing source lines. */
946
947extern int current_source_line;
948
949/* See the comment in symfile.c about how current_objfile is used. */
950
951extern struct objfile *current_objfile;
bd5635a1 952
b0246b3b
FF
953extern struct symtab *
954lookup_symtab PARAMS ((char *));
955
956extern struct symbol *
957lookup_symbol PARAMS ((const char *, const struct block *,
958 const enum namespace, int *, struct symtab **));
959
960extern struct symbol *
961lookup_block_symbol PARAMS ((const struct block *, const char *,
962 const enum namespace));
963
964extern struct type *
965lookup_struct PARAMS ((char *, struct block *));
966
967extern struct type *
968lookup_union PARAMS ((char *, struct block *));
969
970extern struct type *
971lookup_enum PARAMS ((char *, struct block *));
972
973extern struct symbol *
974block_function PARAMS ((struct block *));
975
976extern struct symbol *
977find_pc_function PARAMS ((CORE_ADDR));
978
f1ed4330
JK
979extern int find_pc_partial_function
980 PARAMS ((CORE_ADDR, char **, CORE_ADDR *, CORE_ADDR *));
b0246b3b
FF
981
982extern void
983clear_pc_function_cache PARAMS ((void));
984
985extern struct partial_symtab *
986lookup_partial_symtab PARAMS ((char *));
987
988extern struct partial_symtab *
989find_pc_psymtab PARAMS ((CORE_ADDR));
990
991extern struct symtab *
992find_pc_symtab PARAMS ((CORE_ADDR));
993
994extern struct partial_symbol *
995find_pc_psymbol PARAMS ((struct partial_symtab *, CORE_ADDR));
996
997extern int
998find_pc_line_pc_range PARAMS ((CORE_ADDR, CORE_ADDR *, CORE_ADDR *));
999
1000extern int
1001contained_in PARAMS ((struct block *, struct block *));
1002
1003extern void
1004reread_symbols PARAMS ((void));
1005
404f69a8
JK
1006/* Macro for name of symbol to indicate a file compiled with gcc. */
1007#ifndef GCC_COMPILED_FLAG_SYMBOL
1008#define GCC_COMPILED_FLAG_SYMBOL "gcc_compiled."
1009#endif
1010
1011/* Macro for name of symbol to indicate a file compiled with gcc2. */
1012#ifndef GCC2_COMPILED_FLAG_SYMBOL
1013#define GCC2_COMPILED_FLAG_SYMBOL "gcc2_compiled."
1014#endif
1015
b0246b3b
FF
1016/* Functions for dealing with the minimal symbol table, really a misc
1017 address<->symbol mapping for things we don't have debug symbols for. */
1018
21578747
JG
1019extern void prim_record_minimal_symbol PARAMS ((const char *, CORE_ADDR,
1020 enum minimal_symbol_type,
1021 struct objfile *));
b0246b3b 1022
21578747
JG
1023extern void prim_record_minimal_symbol_and_info
1024 PARAMS ((const char *, CORE_ADDR,
1025 enum minimal_symbol_type,
1026 char *info, int section,
1027 struct objfile *));
51b57ded 1028
b0246b3b
FF
1029extern struct minimal_symbol *
1030lookup_minimal_symbol PARAMS ((const char *, struct objfile *));
1031
1032extern struct minimal_symbol *
1033lookup_minimal_symbol_by_pc PARAMS ((CORE_ADDR));
1034
2fe3b329
PS
1035extern struct minimal_symbol *
1036lookup_solib_trampoline_symbol_by_pc PARAMS ((CORE_ADDR));
1037
1038extern CORE_ADDR
1039find_solib_trampoline_target PARAMS ((CORE_ADDR));
1040
b0246b3b
FF
1041extern void
1042init_minimal_symbol_collection PARAMS ((void));
1043
1044extern void
1045discard_minimal_symbols PARAMS ((int));
1046
1047extern void
1048install_minimal_symbols PARAMS ((struct objfile *));
bd5635a1
RP
1049
1050struct symtab_and_line
1051{
1052 struct symtab *symtab;
025abdfb
JK
1053
1054 /* Line number. Line numbers start at 1 and proceed through symtab->nlines.
1055 0 is never a valid line number; it is used to indicate that line number
1056 information is not available. */
bd5635a1 1057 int line;
025abdfb 1058
bd5635a1
RP
1059 CORE_ADDR pc;
1060 CORE_ADDR end;
1061};
1062
1063struct symtabs_and_lines
1064{
1065 struct symtab_and_line *sals;
1066 int nelts;
1067};
1068
2e4964ad
FF
1069/* Given a pc value, return line number it is in. Second arg nonzero means
1070 if pc is on the boundary use the previous statement's line number. */
bd5635a1 1071
b0246b3b
FF
1072extern struct symtab_and_line
1073find_pc_line PARAMS ((CORE_ADDR, int));
bd5635a1 1074
fb155ce3
JK
1075/* Given an address, return the nearest symbol at or below it in memory.
1076 Optionally return the symtab it's from through 2nd arg, and the
1077 address in inferior memory of the symbol through 3rd arg. */
1078
1079extern struct symbol *
1080find_addr_symbol PARAMS ((CORE_ADDR, struct symtab **, CORE_ADDR *));
1081
bd5635a1 1082/* Given a symtab and line number, return the pc there. */
b0246b3b
FF
1083
1084extern CORE_ADDR
1085find_line_pc PARAMS ((struct symtab *, int));
1086
1087extern int
404f69a8 1088find_line_pc_range PARAMS ((struct symtab_and_line,
b86a1b3b 1089 CORE_ADDR *, CORE_ADDR *));
b0246b3b
FF
1090
1091extern void
1092resolve_sal_pc PARAMS ((struct symtab_and_line *));
bd5635a1 1093
2e4964ad
FF
1094/* Given a string, return the line specified by it. For commands like "list"
1095 and "breakpoint". */
bd5635a1 1096
b0246b3b
FF
1097extern struct symtabs_and_lines
1098decode_line_spec PARAMS ((char *, int));
1099
1100extern struct symtabs_and_lines
1101decode_line_spec_1 PARAMS ((char *, int));
1102
1103extern struct symtabs_and_lines
6f87ec4a 1104decode_line_1 PARAMS ((char **, int, struct symtab *, int, char ***));
bd5635a1 1105
5c43db6b 1106/* Symmisc.c */
b0246b3b 1107
35fcebce
PB
1108#if MAINTENANCE_CMDS
1109
1110void
1111maintenance_print_symbols PARAMS ((char *, int));
1112
1113void
1114maintenance_print_psymbols PARAMS ((char *, int));
1115
1116void
1117maintenance_print_msymbols PARAMS ((char *, int));
1118
1119void
1120maintenance_print_objfiles PARAMS ((char *, int));
1121
2fe3b329
PS
1122void
1123maintenance_check_symtabs PARAMS ((char *, int));
1124
35fcebce
PB
1125#endif
1126
b0246b3b
FF
1127extern void
1128free_symtab PARAMS ((struct symtab *));
5c43db6b 1129
bd5635a1 1130/* Symbol-reading stuff in symfile.c and solib.c. */
b0246b3b
FF
1131
1132extern struct symtab *
1133psymtab_to_symtab PARAMS ((struct partial_symtab *));
1134
1135extern void
1136clear_solib PARAMS ((void));
1137
1138extern struct objfile *
1139symbol_file_add PARAMS ((char *, int, CORE_ADDR, int, int, int));
bd5635a1
RP
1140
1141/* source.c */
bd5635a1 1142
b9298844
JK
1143extern int frame_file_full_name; /* in stack.c */
1144
b0246b3b 1145extern int
b9298844 1146identify_source_line PARAMS ((struct symtab *, int, int, CORE_ADDR));
b0246b3b
FF
1147
1148extern void
1149print_source_lines PARAMS ((struct symtab *, int, int, int));
1150
1151extern void
1152forget_cached_source_info PARAMS ((void));
1153
1154extern void
1155select_source_symtab PARAMS ((struct symtab *));
1156
d63aae7f 1157extern char **make_symbol_completion_list PARAMS ((char *, char *));
b0246b3b
FF
1158
1159/* symtab.c */
1160
1161extern struct partial_symtab *
1162find_main_psymtab PARAMS ((void));
1163
1164/* blockframe.c */
1165
1166extern struct blockvector *
1167blockvector_for_pc PARAMS ((CORE_ADDR, int *));
bd5635a1 1168
b0246b3b 1169/* symfile.c */
4a35d6e9 1170
313dd520
JK
1171extern void
1172clear_symtab_users PARAMS ((void));
1173
b0246b3b
FF
1174extern enum language
1175deduce_language_from_filename PARAMS ((char *));
4a35d6e9 1176
b0246b3b 1177#endif /* !defined(SYMTAB_H) */