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