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