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