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