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