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