]>
Commit | Line | Data |
---|---|---|
a2f1e2e5 | 1 | /* Read a symbol table in ECOFF format (Third-Eye). |
0434c1a0 PS |
2 | Copyright 1986, 1987, 1989, 1990, 1991, 1992, 1993, 1994 |
3 | Free Software Foundation, Inc. | |
a2f1e2e5 ILT |
4 | Original version contributed by Alessandro Forin ([email protected]) at |
5 | CMU. Major work by Per Bothner, John Gilmore and Ian Lance Taylor | |
6 | at Cygnus Support. | |
7 | ||
8 | This file is part of GDB. | |
9 | ||
10 | This program is free software; you can redistribute it and/or modify | |
11 | it under the terms of the GNU General Public License as published by | |
12 | the Free Software Foundation; either version 2 of the License, or | |
13 | (at your option) any later version. | |
14 | ||
15 | This program is distributed in the hope that it will be useful, | |
16 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 | GNU General Public License for more details. | |
19 | ||
20 | You should have received a copy of the GNU General Public License | |
21 | along with this program; if not, write to the Free Software | |
22 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
23 | ||
24 | /* This module provides the function mdebug_build_psymtabs. It reads | |
25 | ECOFF debugging information into partial symbol tables. The | |
26 | debugging information is read from two structures. A struct | |
27 | ecoff_debug_swap includes the sizes of each ECOFF structure and | |
28 | swapping routines; these are fixed for a particular target. A | |
29 | struct ecoff_debug_info points to the debugging information for a | |
30 | particular object file. | |
31 | ||
32 | ECOFF symbol tables are mostly written in the byte order of the | |
33 | target machine. However, one section of the table (the auxiliary | |
34 | symbol information) is written in the host byte order. There is a | |
35 | bit in the other symbol info which describes which host byte order | |
36 | was used. ECOFF thereby takes the trophy from Intel `b.out' for | |
37 | the most brain-dead adaptation of a file format to byte order. | |
38 | ||
39 | This module can read all four of the known byte-order combinations, | |
40 | on any type of host. */ | |
41 | ||
42 | #include "defs.h" | |
43 | #include "symtab.h" | |
44 | #include "gdbtypes.h" | |
45 | #include "gdbcore.h" | |
46 | #include "symfile.h" | |
47 | #include "objfiles.h" | |
48 | #include "obstack.h" | |
49 | #include "buildsym.h" | |
50 | #include "stabsread.h" | |
51 | #include "complaints.h" | |
52 | ||
53 | #if !defined (SEEK_SET) | |
54 | #define SEEK_SET 0 | |
55 | #define SEEK_CUR 1 | |
56 | #endif | |
57 | ||
58 | /* These are needed if the tm.h file does not contain the necessary | |
59 | mips specific definitions. */ | |
60 | ||
61 | #ifndef MIPS_EFI_SYMBOL_NAME | |
62 | #define MIPS_EFI_SYMBOL_NAME "__GDB_EFI_INFO__" | |
63 | #include "coff/sym.h" | |
64 | #include "coff/symconst.h" | |
65 | typedef struct mips_extra_func_info { | |
66 | long numargs; | |
67 | PDR pdr; | |
68 | } *mips_extra_func_info_t; | |
69 | #ifndef RA_REGNUM | |
70 | #define RA_REGNUM 0 | |
71 | #endif | |
72 | #endif | |
73 | ||
74 | #ifdef USG | |
75 | #include <sys/types.h> | |
76 | #endif | |
77 | ||
78 | #include <sys/param.h> | |
79 | #include <sys/file.h> | |
80 | #include <sys/stat.h> | |
81 | #include <string.h> | |
82 | ||
83 | #include "gdb-stabs.h" | |
84 | ||
85 | #include "bfd.h" | |
86 | ||
87 | #include "coff/ecoff.h" /* COFF-like aspects of ecoff files */ | |
88 | ||
89 | #include "libaout.h" /* Private BFD a.out information. */ | |
90 | #include "aout/aout64.h" | |
91 | #include "aout/stab_gnu.h" /* STABS information */ | |
92 | ||
93 | #include "expression.h" | |
94 | #include "language.h" /* Needed inside partial-stab.h */ | |
95 | ||
96 | /* Provide a default mapping from a ecoff register number to a gdb REGNUM. */ | |
97 | #ifndef ECOFF_REG_TO_REGNUM | |
98 | #define ECOFF_REG_TO_REGNUM(num) (num) | |
99 | #endif | |
100 | ||
101 | /* Each partial symbol table entry contains a pointer to private data | |
102 | for the read_symtab() function to use when expanding a partial | |
103 | symbol table entry to a full symbol table entry. | |
104 | ||
105 | For mdebugread this structure contains the index of the FDR that this | |
106 | psymtab represents and a pointer to the BFD that the psymtab was | |
107 | created from. */ | |
108 | ||
109 | #define PST_PRIVATE(p) ((struct symloc *)(p)->read_symtab_private) | |
110 | #define FDR_IDX(p) (PST_PRIVATE(p)->fdr_idx) | |
111 | #define CUR_BFD(p) (PST_PRIVATE(p)->cur_bfd) | |
112 | #define DEBUG_SWAP(p) (PST_PRIVATE(p)->debug_swap) | |
113 | #define DEBUG_INFO(p) (PST_PRIVATE(p)->debug_info) | |
114 | #define PENDING_LIST(p) (PST_PRIVATE(p)->pending_list) | |
115 | ||
116 | struct symloc | |
117 | { | |
118 | int fdr_idx; | |
119 | bfd *cur_bfd; | |
120 | const struct ecoff_debug_swap *debug_swap; | |
121 | struct ecoff_debug_info *debug_info; | |
122 | struct mdebug_pending **pending_list; | |
123 | EXTR *extern_tab; /* Pointer to external symbols for this file. */ | |
124 | int extern_count; /* Size of extern_tab. */ | |
125 | enum language pst_language; | |
126 | }; | |
127 | ||
128 | /* Things we import explicitly from other modules */ | |
129 | ||
130 | extern int info_verbose; | |
131 | ||
132 | /* Various complaints about symbol reading that don't abort the process */ | |
133 | ||
134 | static struct complaint bad_file_number_complaint = | |
135 | {"bad file number %d", 0, 0}; | |
136 | ||
137 | static struct complaint index_complaint = | |
138 | {"bad aux index at symbol %s", 0, 0}; | |
139 | ||
140 | static struct complaint aux_index_complaint = | |
141 | {"bad proc end in aux found from symbol %s", 0, 0}; | |
142 | ||
143 | static struct complaint block_index_complaint = | |
144 | {"bad aux index at block symbol %s", 0, 0}; | |
145 | ||
146 | static struct complaint unknown_ext_complaint = | |
147 | {"unknown external symbol %s", 0, 0}; | |
148 | ||
149 | static struct complaint unknown_sym_complaint = | |
150 | {"unknown local symbol %s", 0, 0}; | |
151 | ||
152 | static struct complaint unknown_st_complaint = | |
153 | {"with type %d", 0, 0}; | |
154 | ||
155 | static struct complaint block_overflow_complaint = | |
156 | {"block containing %s overfilled", 0, 0}; | |
157 | ||
158 | static struct complaint basic_type_complaint = | |
159 | {"cannot map ECOFF basic type 0x%x for %s", 0, 0}; | |
160 | ||
161 | static struct complaint unknown_type_qual_complaint = | |
162 | {"unknown type qualifier 0x%x", 0, 0}; | |
163 | ||
164 | static struct complaint array_index_type_complaint = | |
165 | {"illegal array index type for %s, assuming int", 0, 0}; | |
166 | ||
167 | static struct complaint bad_tag_guess_complaint = | |
168 | {"guessed tag type of %s incorrectly", 0, 0}; | |
169 | ||
170 | static struct complaint block_member_complaint = | |
171 | {"declaration block contains unhandled symbol type %d", 0, 0}; | |
172 | ||
173 | static struct complaint stEnd_complaint = | |
174 | {"stEnd with storage class %d not handled", 0, 0}; | |
175 | ||
176 | static struct complaint unknown_mdebug_symtype_complaint = | |
177 | {"unknown symbol type 0x%x", 0, 0}; | |
178 | ||
179 | static struct complaint stab_unknown_complaint = | |
180 | {"unknown stabs symbol %s", 0, 0}; | |
181 | ||
182 | static struct complaint pdr_for_nonsymbol_complaint = | |
183 | {"PDR for %s, but no symbol", 0, 0}; | |
184 | ||
185 | static struct complaint pdr_static_symbol_complaint = | |
186 | {"can't handle PDR for static proc at 0x%lx", 0, 0}; | |
187 | ||
188 | static struct complaint bad_setjmp_pdr_complaint = | |
189 | {"fixing bad setjmp PDR from libc", 0, 0}; | |
190 | ||
191 | static struct complaint bad_fbitfield_complaint = | |
192 | {"can't handle TIR fBitfield for %s", 0, 0}; | |
193 | ||
194 | static struct complaint bad_continued_complaint = | |
195 | {"illegal TIR continued for %s", 0, 0}; | |
196 | ||
197 | static struct complaint bad_rfd_entry_complaint = | |
198 | {"bad rfd entry for %s: file %d, index %d", 0, 0}; | |
199 | ||
200 | static struct complaint unexpected_type_code_complaint = | |
201 | {"unexpected type code for %s", 0, 0}; | |
202 | ||
203 | static struct complaint unable_to_cross_ref_complaint = | |
204 | {"unable to cross ref btTypedef for %s", 0, 0}; | |
205 | ||
206 | static struct complaint illegal_forward_tq0_complaint = | |
207 | {"illegal tq0 in forward typedef for %s", 0, 0}; | |
208 | ||
209 | static struct complaint illegal_forward_bt_complaint = | |
210 | {"illegal bt %d in forward typedef for %s", 0, 0}; | |
211 | ||
212 | static struct complaint bad_linetable_guess_complaint = | |
213 | {"guessed size of linetable for %s incorrectly", 0, 0}; | |
214 | ||
215 | static struct complaint bad_ext_ifd_complaint = | |
216 | {"bad ifd for external symbol: %d (max %d)", 0, 0}; | |
217 | ||
218 | static struct complaint bad_ext_iss_complaint = | |
219 | {"bad iss for external symbol: %ld (max %ld)", 0, 0}; | |
220 | ||
221 | /* Macros and extra defs */ | |
222 | ||
223 | /* Puns: hard to find whether -g was used and how */ | |
224 | ||
225 | #define MIN_GLEVEL GLEVEL_0 | |
226 | #define compare_glevel(a,b) \ | |
227 | (((a) == GLEVEL_3) ? ((b) < GLEVEL_3) : \ | |
228 | ((b) == GLEVEL_3) ? -1 : (int)((b) - (a))) | |
229 | \f | |
230 | /* Things that really are local to this module */ | |
231 | ||
232 | /* Remember what we deduced to be the source language of this psymtab. */ | |
233 | ||
234 | static enum language psymtab_language = language_unknown; | |
235 | ||
236 | /* Current BFD. */ | |
237 | ||
238 | static bfd *cur_bfd; | |
239 | ||
240 | /* How to parse debugging information for CUR_BFD. */ | |
241 | ||
242 | static const struct ecoff_debug_swap *debug_swap; | |
243 | ||
244 | /* Pointers to debugging information for CUR_BFD. */ | |
245 | ||
246 | static struct ecoff_debug_info *debug_info; | |
247 | ||
248 | /* Pointer to current file decriptor record, and its index */ | |
249 | ||
250 | static FDR *cur_fdr; | |
251 | static int cur_fd; | |
252 | ||
253 | /* Index of current symbol */ | |
254 | ||
255 | static int cur_sdx; | |
256 | ||
257 | /* Note how much "debuggable" this image is. We would like | |
258 | to see at least one FDR with full symbols */ | |
259 | ||
260 | static max_gdbinfo; | |
261 | static max_glevel; | |
262 | ||
263 | /* When examining .o files, report on undefined symbols */ | |
264 | ||
265 | static int n_undef_symbols, n_undef_labels, n_undef_vars, n_undef_procs; | |
266 | ||
267 | /* Pseudo symbol to use when putting stabs into the symbol table. */ | |
268 | ||
269 | static char stabs_symbol[] = STABS_SYMBOL; | |
270 | ||
504ccfd7 JK |
271 | /* Types corresponding to btComplex, btDComplex, etc. These are here |
272 | rather than in gdbtypes.c or some such, because the meaning of codes | |
273 | like btComplex is specific to the mdebug debug format. FIXME: We should | |
274 | be using our own types thoughout this file, instead of sometimes using | |
275 | builtin_type_*. */ | |
276 | ||
277 | static struct type *mdebug_type_complex; | |
278 | static struct type *mdebug_type_double_complex; | |
279 | static struct type *mdebug_type_fixed_dec; | |
280 | static struct type *mdebug_type_float_dec; | |
281 | static struct type *mdebug_type_string; | |
a2f1e2e5 ILT |
282 | |
283 | /* Forward declarations */ | |
284 | ||
285 | static int | |
286 | upgrade_type PARAMS ((int, struct type **, int, union aux_ext *, int, char *)); | |
287 | ||
288 | static void | |
289 | parse_partial_symbols PARAMS ((struct objfile *, | |
290 | struct section_offsets *)); | |
291 | ||
292 | static FDR | |
293 | *get_rfd PARAMS ((int, int)); | |
294 | ||
db2302cb PS |
295 | static int |
296 | has_opaque_xref PARAMS ((FDR *, SYMR *)); | |
297 | ||
a2f1e2e5 ILT |
298 | static int |
299 | cross_ref PARAMS ((int, union aux_ext *, struct type **, enum type_code, | |
300 | char **, int, char *)); | |
301 | ||
302 | static struct symbol * | |
303 | new_symbol PARAMS ((char *)); | |
304 | ||
305 | static struct type * | |
306 | new_type PARAMS ((char *)); | |
307 | ||
308 | static struct block * | |
309 | new_block PARAMS ((int)); | |
310 | ||
311 | static struct symtab * | |
312 | new_symtab PARAMS ((char *, int, int, struct objfile *)); | |
313 | ||
314 | static struct linetable * | |
315 | new_linetable PARAMS ((int)); | |
316 | ||
317 | static struct blockvector * | |
318 | new_bvect PARAMS ((int)); | |
319 | ||
320 | static int | |
72bba93b | 321 | parse_symbol PARAMS ((SYMR *, union aux_ext *, char *, int, struct section_offsets *)); |
a2f1e2e5 ILT |
322 | |
323 | static struct type * | |
324 | parse_type PARAMS ((int, union aux_ext *, unsigned int, int *, int, char *)); | |
325 | ||
326 | static struct symbol * | |
327 | mylookup_symbol PARAMS ((char *, struct block *, enum namespace, | |
328 | enum address_class)); | |
329 | ||
330 | static struct block * | |
331 | shrink_block PARAMS ((struct block *, struct symtab *)); | |
332 | ||
333 | static PTR | |
334 | xzalloc PARAMS ((unsigned int)); | |
335 | ||
336 | static void | |
337 | sort_blocks PARAMS ((struct symtab *)); | |
338 | ||
339 | static int | |
340 | compare_blocks PARAMS ((const void *, const void *)); | |
341 | ||
342 | static struct partial_symtab * | |
847d9775 | 343 | new_psymtab PARAMS ((char *, struct objfile *, struct section_offsets *)); |
a2f1e2e5 ILT |
344 | |
345 | static void | |
346 | psymtab_to_symtab_1 PARAMS ((struct partial_symtab *, char *)); | |
347 | ||
348 | static void | |
349 | add_block PARAMS ((struct block *, struct symtab *)); | |
350 | ||
351 | static void | |
352 | add_symbol PARAMS ((struct symbol *, struct block *)); | |
353 | ||
354 | static int | |
355 | add_line PARAMS ((struct linetable *, int, CORE_ADDR, int)); | |
356 | ||
357 | static struct linetable * | |
358 | shrink_linetable PARAMS ((struct linetable *)); | |
359 | ||
847d9775 PS |
360 | static void |
361 | handle_psymbol_enumerators PARAMS ((struct objfile *, FDR *, int)); | |
362 | ||
a2f1e2e5 ILT |
363 | static char * |
364 | mdebug_next_symbol_text PARAMS ((void)); | |
365 | \f | |
366 | /* Address bounds for the signal trampoline in inferior, if any */ | |
367 | ||
368 | CORE_ADDR sigtramp_address, sigtramp_end; | |
369 | ||
370 | /* Allocate zeroed memory */ | |
371 | ||
372 | static PTR | |
373 | xzalloc (size) | |
374 | unsigned int size; | |
375 | { | |
376 | PTR p = xmalloc (size); | |
377 | ||
378 | memset (p, 0, size); | |
379 | return p; | |
380 | } | |
381 | ||
382 | /* Exported procedure: Builds a symtab from the PST partial one. | |
383 | Restores the environment in effect when PST was created, delegates | |
384 | most of the work to an ancillary procedure, and sorts | |
385 | and reorders the symtab list at the end */ | |
386 | ||
387 | static void | |
388 | mdebug_psymtab_to_symtab (pst) | |
389 | struct partial_symtab *pst; | |
390 | { | |
391 | ||
392 | if (!pst) | |
393 | return; | |
394 | ||
395 | if (info_verbose) | |
396 | { | |
397 | printf_filtered ("Reading in symbols for %s...", pst->filename); | |
398 | gdb_flush (gdb_stdout); | |
399 | } | |
400 | ||
401 | next_symbol_text_func = mdebug_next_symbol_text; | |
402 | ||
403 | psymtab_to_symtab_1 (pst, pst->filename); | |
404 | ||
405 | /* Match with global symbols. This only needs to be done once, | |
406 | after all of the symtabs and dependencies have been read in. */ | |
407 | scan_file_globals (pst->objfile); | |
408 | ||
409 | if (info_verbose) | |
410 | printf_filtered ("done.\n"); | |
411 | } | |
412 | \f | |
413 | /* File-level interface functions */ | |
414 | ||
415 | /* Find a file descriptor given its index RF relative to a file CF */ | |
416 | ||
417 | static FDR * | |
418 | get_rfd (cf, rf) | |
419 | int cf, rf; | |
420 | { | |
421 | FDR *fdrs; | |
422 | register FDR *f; | |
423 | RFDT rfd; | |
424 | ||
425 | fdrs = debug_info->fdr; | |
426 | f = fdrs + cf; | |
427 | /* Object files do not have the RFD table, all refs are absolute */ | |
428 | if (f->rfdBase == 0) | |
429 | return fdrs + rf; | |
430 | (*debug_swap->swap_rfd_in) (cur_bfd, | |
431 | ((char *) debug_info->external_rfd | |
432 | + ((f->rfdBase + rf) | |
433 | * debug_swap->external_rfd_size)), | |
434 | &rfd); | |
435 | return fdrs + rfd; | |
436 | } | |
437 | ||
438 | /* Return a safer print NAME for a file descriptor */ | |
439 | ||
440 | static char * | |
441 | fdr_name (f) | |
442 | FDR *f; | |
443 | { | |
444 | if (f->rss == -1) | |
445 | return "<stripped file>"; | |
446 | if (f->rss == 0) | |
447 | return "<NFY>"; | |
448 | return debug_info->ss + f->issBase + f->rss; | |
449 | } | |
450 | ||
451 | ||
452 | /* Read in and parse the symtab of the file OBJFILE. Symbols from | |
453 | different sections are relocated via the SECTION_OFFSETS. */ | |
454 | ||
455 | void | |
456 | mdebug_build_psymtabs (objfile, swap, info, section_offsets) | |
457 | struct objfile *objfile; | |
458 | const struct ecoff_debug_swap *swap; | |
459 | struct ecoff_debug_info *info; | |
460 | struct section_offsets *section_offsets; | |
461 | { | |
462 | cur_bfd = objfile->obfd; | |
463 | debug_swap = swap; | |
464 | debug_info = info; | |
465 | ||
466 | /* Make sure all the FDR information is swapped in. */ | |
467 | if (info->fdr == (FDR *) NULL) | |
468 | { | |
469 | char *fdr_src; | |
470 | char *fdr_end; | |
471 | FDR *fdr_ptr; | |
472 | ||
473 | info->fdr = (FDR *) obstack_alloc (&objfile->psymbol_obstack, | |
474 | (info->symbolic_header.ifdMax | |
475 | * sizeof (FDR))); | |
476 | fdr_src = info->external_fdr; | |
477 | fdr_end = (fdr_src | |
478 | + info->symbolic_header.ifdMax * swap->external_fdr_size); | |
479 | fdr_ptr = info->fdr; | |
480 | for (; fdr_src < fdr_end; fdr_src += swap->external_fdr_size, fdr_ptr++) | |
481 | (*swap->swap_fdr_in) (objfile->obfd, fdr_src, fdr_ptr); | |
482 | } | |
483 | ||
484 | parse_partial_symbols (objfile, section_offsets); | |
485 | ||
486 | #if 0 | |
487 | /* Check to make sure file was compiled with -g. If not, warn the | |
488 | user of this limitation. */ | |
489 | if (compare_glevel (max_glevel, GLEVEL_2) < 0) | |
490 | { | |
491 | if (max_gdbinfo == 0) | |
492 | printf_unfiltered ("\n%s not compiled with -g, debugging support is limited.\n", | |
493 | objfile->name); | |
494 | printf_unfiltered ("You should compile with -g2 or -g3 for best debugging support.\n"); | |
495 | gdb_flush (gdb_stdout); | |
496 | } | |
497 | #endif | |
498 | } | |
499 | \f | |
500 | /* Local utilities */ | |
501 | ||
502 | /* Map of FDR indexes to partial symtabs */ | |
503 | ||
504 | struct pst_map | |
505 | { | |
506 | struct partial_symtab *pst; /* the psymtab proper */ | |
507 | long n_globals; /* exported globals (external symbols) */ | |
508 | long globals_offset; /* cumulative */ | |
509 | }; | |
510 | ||
511 | ||
512 | /* Utility stack, used to nest procedures and blocks properly. | |
513 | It is a doubly linked list, to avoid too many alloc/free. | |
514 | Since we might need it quite a few times it is NOT deallocated | |
515 | after use. */ | |
516 | ||
517 | static struct parse_stack | |
518 | { | |
519 | struct parse_stack *next, *prev; | |
520 | struct symtab *cur_st; /* Current symtab. */ | |
521 | struct block *cur_block; /* Block in it. */ | |
522 | ||
523 | /* What are we parsing. stFile, or stBlock are for files and | |
524 | blocks. stProc or stStaticProc means we have seen the start of a | |
525 | procedure, but not the start of the block within in. When we see | |
526 | the start of that block, we change it to stNil, without pushing a | |
527 | new block, i.e. stNil means both a procedure and a block. */ | |
528 | ||
529 | int blocktype; | |
530 | ||
531 | int maxsyms; /* Max symbols in this block. */ | |
532 | struct type *cur_type; /* Type we parse fields for. */ | |
533 | int cur_field; /* Field number in cur_type. */ | |
534 | CORE_ADDR procadr; /* Start addres of this procedure */ | |
535 | int numargs; /* Its argument count */ | |
536 | } | |
537 | ||
538 | *top_stack; /* Top stack ptr */ | |
539 | ||
540 | ||
541 | /* Enter a new lexical context */ | |
542 | ||
543 | static void | |
544 | push_parse_stack () | |
545 | { | |
546 | struct parse_stack *new; | |
547 | ||
548 | /* Reuse frames if possible */ | |
549 | if (top_stack && top_stack->prev) | |
550 | new = top_stack->prev; | |
551 | else | |
552 | new = (struct parse_stack *) xzalloc (sizeof (struct parse_stack)); | |
553 | /* Initialize new frame with previous content */ | |
554 | if (top_stack) | |
555 | { | |
556 | register struct parse_stack *prev = new->prev; | |
557 | ||
558 | *new = *top_stack; | |
559 | top_stack->prev = new; | |
560 | new->prev = prev; | |
561 | new->next = top_stack; | |
562 | } | |
563 | top_stack = new; | |
564 | } | |
565 | ||
566 | /* Exit a lexical context */ | |
567 | ||
568 | static void | |
569 | pop_parse_stack () | |
570 | { | |
571 | if (!top_stack) | |
572 | return; | |
573 | if (top_stack->next) | |
574 | top_stack = top_stack->next; | |
575 | } | |
576 | ||
577 | ||
578 | /* Cross-references might be to things we haven't looked at | |
579 | yet, e.g. type references. To avoid too many type | |
580 | duplications we keep a quick fixup table, an array | |
581 | of lists of references indexed by file descriptor */ | |
582 | ||
583 | struct mdebug_pending | |
584 | { | |
585 | struct mdebug_pending *next; /* link */ | |
586 | char *s; /* the unswapped symbol */ | |
587 | struct type *t; /* its partial type descriptor */ | |
588 | }; | |
589 | ||
590 | ||
591 | /* The pending information is kept for an entire object file, and used | |
592 | to be in the sym_private field. I took it out when I split | |
593 | mdebugread from mipsread, because this might not be the only type | |
594 | of symbols read from an object file. Instead, we allocate the | |
595 | pending information table when we create the partial symbols, and | |
596 | we store a pointer to the single table in each psymtab. */ | |
597 | ||
598 | static struct mdebug_pending **pending_list; | |
599 | ||
600 | /* Check whether we already saw symbol SH in file FH */ | |
601 | ||
602 | static struct mdebug_pending * | |
603 | is_pending_symbol (fh, sh) | |
604 | FDR *fh; | |
605 | char *sh; | |
606 | { | |
607 | int f_idx = fh - debug_info->fdr; | |
608 | register struct mdebug_pending *p; | |
609 | ||
610 | /* Linear search is ok, list is typically no more than 10 deep */ | |
611 | for (p = pending_list[f_idx]; p; p = p->next) | |
612 | if (p->s == sh) | |
613 | break; | |
614 | return p; | |
615 | } | |
616 | ||
617 | /* Add a new symbol SH of type T */ | |
618 | ||
619 | static void | |
620 | add_pending (fh, sh, t) | |
621 | FDR *fh; | |
622 | char *sh; | |
623 | struct type *t; | |
624 | { | |
625 | int f_idx = fh - debug_info->fdr; | |
626 | struct mdebug_pending *p = is_pending_symbol (fh, sh); | |
627 | ||
628 | /* Make sure we do not make duplicates */ | |
629 | if (!p) | |
630 | { | |
631 | p = ((struct mdebug_pending *) | |
632 | obstack_alloc (¤t_objfile->psymbol_obstack, | |
633 | sizeof (struct mdebug_pending))); | |
634 | p->s = sh; | |
635 | p->t = t; | |
636 | p->next = pending_list[f_idx]; | |
637 | pending_list[f_idx] = p; | |
638 | } | |
639 | } | |
640 | \f | |
641 | ||
642 | /* Parsing Routines proper. */ | |
643 | ||
644 | /* Parse a single symbol. Mostly just make up a GDB symbol for it. | |
645 | For blocks, procedures and types we open a new lexical context. | |
646 | This is basically just a big switch on the symbol's type. Argument | |
647 | AX is the base pointer of aux symbols for this file (fh->iauxBase). | |
648 | EXT_SH points to the unswapped symbol, which is needed for struct, | |
649 | union, etc., types; it is NULL for an EXTR. BIGEND says whether | |
650 | aux symbols are big-endian or little-endian. Return count of | |
651 | SYMR's handled (normally one). */ | |
652 | ||
653 | static int | |
72bba93b | 654 | parse_symbol (sh, ax, ext_sh, bigend, section_offsets) |
a2f1e2e5 ILT |
655 | SYMR *sh; |
656 | union aux_ext *ax; | |
657 | char *ext_sh; | |
658 | int bigend; | |
72bba93b | 659 | struct section_offsets *section_offsets; |
a2f1e2e5 ILT |
660 | { |
661 | const bfd_size_type external_sym_size = debug_swap->external_sym_size; | |
662 | void (* const swap_sym_in) PARAMS ((bfd *, PTR, SYMR *)) = | |
663 | debug_swap->swap_sym_in; | |
664 | char *name; | |
665 | struct symbol *s; | |
666 | struct block *b; | |
667 | struct mdebug_pending *pend; | |
668 | struct type *t; | |
669 | struct field *f; | |
670 | int count = 1; | |
671 | enum address_class class; | |
672 | TIR tir; | |
673 | long svalue = sh->value; | |
674 | int bitsize; | |
675 | ||
676 | if (ext_sh == (char *) NULL) | |
677 | name = debug_info->ssext + sh->iss; | |
678 | else | |
679 | name = debug_info->ss + cur_fdr->issBase + sh->iss; | |
680 | ||
72bba93b SG |
681 | switch (sh->sc) |
682 | { | |
683 | case scText: | |
684 | sh->value += ANOFFSET (section_offsets, SECT_OFF_TEXT); | |
685 | break; | |
686 | case scData: | |
687 | sh->value += ANOFFSET (section_offsets, SECT_OFF_DATA); | |
688 | break; | |
689 | case scBss: | |
690 | sh->value += ANOFFSET (section_offsets, SECT_OFF_BSS); | |
691 | break; | |
692 | } | |
693 | ||
a2f1e2e5 ILT |
694 | switch (sh->st) |
695 | { | |
696 | case stNil: | |
697 | break; | |
698 | ||
699 | case stGlobal: /* external symbol, goes into global block */ | |
700 | class = LOC_STATIC; | |
701 | b = BLOCKVECTOR_BLOCK (BLOCKVECTOR (top_stack->cur_st), | |
702 | GLOBAL_BLOCK); | |
703 | s = new_symbol (name); | |
704 | SYMBOL_VALUE_ADDRESS (s) = (CORE_ADDR) sh->value; | |
705 | goto data; | |
706 | ||
707 | case stStatic: /* static data, goes into current block. */ | |
708 | class = LOC_STATIC; | |
709 | b = top_stack->cur_block; | |
710 | s = new_symbol (name); | |
711 | if (sh->sc == scCommon) | |
712 | { | |
713 | /* It is a FORTRAN common block. At least for SGI Fortran the | |
714 | address is not in the symbol; we need to fix it later in | |
715 | scan_file_globals. */ | |
716 | int bucket = hashname (SYMBOL_NAME (s)); | |
717 | SYMBOL_VALUE_CHAIN (s) = global_sym_chain[bucket]; | |
718 | global_sym_chain[bucket] = s; | |
719 | } | |
720 | else | |
721 | SYMBOL_VALUE_ADDRESS (s) = (CORE_ADDR) sh->value; | |
722 | goto data; | |
723 | ||
724 | case stLocal: /* local variable, goes into current block */ | |
725 | if (sh->sc == scRegister) | |
726 | { | |
727 | class = LOC_REGISTER; | |
728 | svalue = ECOFF_REG_TO_REGNUM (svalue); | |
729 | } | |
730 | else | |
731 | class = LOC_LOCAL; | |
732 | b = top_stack->cur_block; | |
733 | s = new_symbol (name); | |
734 | SYMBOL_VALUE (s) = svalue; | |
735 | ||
736 | data: /* Common code for symbols describing data */ | |
737 | SYMBOL_NAMESPACE (s) = VAR_NAMESPACE; | |
738 | SYMBOL_CLASS (s) = class; | |
739 | add_symbol (s, b); | |
740 | ||
741 | /* Type could be missing in a number of cases */ | |
10373914 | 742 | if (sh->sc == scUndefined || sh->sc == scNil) |
a2f1e2e5 ILT |
743 | SYMBOL_TYPE (s) = builtin_type_int; /* undefined? */ |
744 | else | |
745 | SYMBOL_TYPE (s) = parse_type (cur_fd, ax, sh->index, 0, bigend, name); | |
746 | /* Value of a data symbol is its memory address */ | |
747 | break; | |
748 | ||
749 | case stParam: /* arg to procedure, goes into current block */ | |
750 | max_gdbinfo++; | |
751 | top_stack->numargs++; | |
752 | ||
753 | /* Special GNU C++ name. */ | |
754 | if (name[0] == CPLUS_MARKER && name[1] == 't' && name[2] == 0) | |
755 | name = "this"; /* FIXME, not alloc'd in obstack */ | |
756 | s = new_symbol (name); | |
757 | ||
758 | SYMBOL_NAMESPACE (s) = VAR_NAMESPACE; | |
759 | switch (sh->sc) | |
760 | { | |
761 | case scRegister: | |
762 | /* Pass by value in register. */ | |
763 | SYMBOL_CLASS(s) = LOC_REGPARM; | |
764 | svalue = ECOFF_REG_TO_REGNUM (svalue); | |
765 | break; | |
766 | case scVar: | |
767 | /* Pass by reference on stack. */ | |
768 | SYMBOL_CLASS(s) = LOC_REF_ARG; | |
769 | break; | |
770 | case scVarRegister: | |
771 | /* Pass by reference in register. */ | |
772 | SYMBOL_CLASS(s) = LOC_REGPARM_ADDR; | |
773 | svalue = ECOFF_REG_TO_REGNUM (svalue); | |
774 | break; | |
775 | default: | |
776 | /* Pass by value on stack. */ | |
777 | SYMBOL_CLASS(s) = LOC_ARG; | |
778 | break; | |
779 | } | |
780 | SYMBOL_VALUE (s) = svalue; | |
781 | SYMBOL_TYPE (s) = parse_type (cur_fd, ax, sh->index, 0, bigend, name); | |
782 | add_symbol (s, top_stack->cur_block); | |
783 | #if 0 | |
784 | /* FIXME: This has not been tested. See dbxread.c */ | |
785 | /* Add the type of this parameter to the function/procedure | |
786 | type of this block. */ | |
787 | add_param_to_type (&top_stack->cur_block->function->type, s); | |
788 | #endif | |
789 | break; | |
790 | ||
791 | case stLabel: /* label, goes into current block */ | |
792 | s = new_symbol (name); | |
793 | SYMBOL_NAMESPACE (s) = VAR_NAMESPACE; /* so that it can be used */ | |
794 | SYMBOL_CLASS (s) = LOC_LABEL; /* but not misused */ | |
795 | SYMBOL_VALUE_ADDRESS (s) = (CORE_ADDR) sh->value; | |
796 | SYMBOL_TYPE (s) = builtin_type_int; | |
797 | add_symbol (s, top_stack->cur_block); | |
798 | break; | |
799 | ||
800 | case stProc: /* Procedure, usually goes into global block */ | |
801 | case stStaticProc: /* Static procedure, goes into current block */ | |
802 | s = new_symbol (name); | |
803 | SYMBOL_NAMESPACE (s) = VAR_NAMESPACE; | |
804 | SYMBOL_CLASS (s) = LOC_BLOCK; | |
805 | /* Type of the return value */ | |
806 | if (sh->sc == scUndefined || sh->sc == scNil) | |
807 | t = builtin_type_int; | |
808 | else | |
809 | t = parse_type (cur_fd, ax, sh->index + 1, 0, bigend, name); | |
810 | b = top_stack->cur_block; | |
811 | if (sh->st == stProc) | |
812 | { | |
813 | struct blockvector *bv = BLOCKVECTOR (top_stack->cur_st); | |
814 | /* The next test should normally be true, but provides a | |
815 | hook for nested functions (which we don't want to make | |
816 | global). */ | |
817 | if (b == BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK)) | |
818 | b = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK); | |
819 | /* Irix 5 sometimes has duplicate names for the same | |
820 | function. We want to add such names up at the global | |
821 | level, not as a nested function. */ | |
822 | else if (sh->value == top_stack->procadr) | |
823 | b = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK); | |
824 | } | |
825 | add_symbol (s, b); | |
826 | ||
827 | /* Make a type for the procedure itself */ | |
828 | #if 0 | |
829 | /* FIXME: This has not been tested yet! See dbxread.c */ | |
830 | /* Generate a template for the type of this function. The | |
831 | types of the arguments will be added as we read the symbol | |
832 | table. */ | |
833 | memcpy (lookup_function_type (t), SYMBOL_TYPE (s), sizeof (struct type)); | |
834 | #else | |
835 | SYMBOL_TYPE (s) = lookup_function_type (t); | |
836 | #endif | |
837 | ||
838 | /* Create and enter a new lexical context */ | |
839 | b = new_block (top_stack->maxsyms); | |
840 | SYMBOL_BLOCK_VALUE (s) = b; | |
841 | BLOCK_FUNCTION (b) = s; | |
842 | BLOCK_START (b) = BLOCK_END (b) = sh->value; | |
843 | BLOCK_SUPERBLOCK (b) = top_stack->cur_block; | |
844 | add_block (b, top_stack->cur_st); | |
845 | ||
846 | /* Not if we only have partial info */ | |
847 | if (sh->sc == scUndefined || sh->sc == scNil) | |
848 | break; | |
849 | ||
850 | push_parse_stack (); | |
851 | top_stack->cur_block = b; | |
852 | top_stack->blocktype = sh->st; | |
853 | top_stack->cur_type = SYMBOL_TYPE (s); | |
854 | top_stack->cur_field = -1; | |
855 | top_stack->procadr = sh->value; | |
856 | top_stack->numargs = 0; | |
857 | break; | |
858 | ||
859 | /* Beginning of code for structure, union, and enum definitions. | |
860 | They all share a common set of local variables, defined here. */ | |
861 | { | |
862 | enum type_code type_code; | |
863 | char *ext_tsym; | |
864 | int nfields; | |
865 | long max_value; | |
866 | struct field *f; | |
867 | ||
868 | case stStruct: /* Start a block defining a struct type */ | |
869 | type_code = TYPE_CODE_STRUCT; | |
870 | goto structured_common; | |
871 | ||
872 | case stUnion: /* Start a block defining a union type */ | |
873 | type_code = TYPE_CODE_UNION; | |
874 | goto structured_common; | |
875 | ||
876 | case stEnum: /* Start a block defining an enum type */ | |
877 | type_code = TYPE_CODE_ENUM; | |
878 | goto structured_common; | |
879 | ||
880 | case stBlock: /* Either a lexical block, or some type */ | |
881 | if (sh->sc != scInfo && sh->sc != scCommon) | |
882 | goto case_stBlock_code; /* Lexical block */ | |
883 | ||
884 | type_code = TYPE_CODE_UNDEF; /* We have a type. */ | |
885 | ||
886 | /* Common code for handling struct, union, enum, and/or as-yet- | |
887 | unknown-type blocks of info about structured data. `type_code' | |
888 | has been set to the proper TYPE_CODE, if we know it. */ | |
889 | structured_common: | |
890 | push_parse_stack (); | |
891 | top_stack->blocktype = stBlock; | |
892 | ||
893 | /* First count the number of fields and the highest value. */ | |
894 | nfields = 0; | |
895 | max_value = 0; | |
896 | for (ext_tsym = ext_sh + external_sym_size; | |
897 | ; | |
898 | ext_tsym += external_sym_size) | |
899 | { | |
900 | SYMR tsym; | |
901 | ||
902 | (*swap_sym_in) (cur_bfd, ext_tsym, &tsym); | |
903 | ||
904 | switch (tsym.st) | |
905 | { | |
906 | case stEnd: | |
907 | goto end_of_fields; | |
908 | ||
909 | case stMember: | |
910 | if (nfields == 0 && type_code == TYPE_CODE_UNDEF) | |
911 | /* If the type of the member is Nil (or Void), | |
912 | without qualifiers, assume the tag is an | |
913 | enumeration. */ | |
914 | if (tsym.index == indexNil) | |
915 | type_code = TYPE_CODE_ENUM; | |
916 | else | |
917 | { | |
918 | ecoff_swap_tir_in (bigend, | |
919 | &ax[tsym.index].a_ti, | |
920 | &tir); | |
921 | if ((tir.bt == btNil || tir.bt == btVoid) | |
922 | && tir.tq0 == tqNil) | |
923 | type_code = TYPE_CODE_ENUM; | |
924 | } | |
925 | nfields++; | |
926 | if (tsym.value > max_value) | |
927 | max_value = tsym.value; | |
928 | break; | |
929 | ||
930 | case stBlock: | |
931 | case stUnion: | |
932 | case stEnum: | |
933 | case stStruct: | |
934 | { | |
935 | #if 0 | |
936 | /* This is a no-op; is it trying to tell us something | |
937 | we should be checking? */ | |
938 | if (tsym.sc == scVariant); /*UNIMPLEMENTED*/ | |
939 | #endif | |
940 | if (tsym.index != 0) | |
941 | { | |
942 | /* This is something like a struct within a | |
943 | struct. Skip over the fields of the inner | |
944 | struct. The -1 is because the for loop will | |
945 | increment ext_tsym. */ | |
946 | ext_tsym = ((char *) debug_info->external_sym | |
947 | + ((cur_fdr->isymBase + tsym.index - 1) | |
948 | * external_sym_size)); | |
949 | } | |
950 | } | |
951 | break; | |
952 | ||
953 | case stTypedef: | |
954 | /* mips cc puts out a typedef for struct x if it is not yet | |
955 | defined when it encounters | |
956 | struct y { struct x *xp; }; | |
957 | Just ignore it. */ | |
958 | break; | |
959 | ||
960 | default: | |
961 | complain (&block_member_complaint, tsym.st); | |
962 | } | |
963 | } | |
964 | end_of_fields:; | |
965 | ||
966 | /* In an stBlock, there is no way to distinguish structs, | |
967 | unions, and enums at this point. This is a bug in the | |
968 | original design (that has been fixed with the recent | |
969 | addition of the stStruct, stUnion, and stEnum symbol | |
970 | types.) The way you can tell is if/when you see a variable | |
971 | or field of that type. In that case the variable's type | |
972 | (in the AUX table) says if the type is struct, union, or | |
973 | enum, and points back to the stBlock here. So you can | |
974 | patch the tag kind up later - but only if there actually is | |
975 | a variable or field of that type. | |
976 | ||
977 | So until we know for sure, we will guess at this point. | |
978 | The heuristic is: | |
979 | If the first member has index==indexNil or a void type, | |
980 | assume we have an enumeration. | |
981 | Otherwise, if there is more than one member, and all | |
982 | the members have offset 0, assume we have a union. | |
983 | Otherwise, assume we have a struct. | |
984 | ||
985 | The heuristic could guess wrong in the case of of an | |
986 | enumeration with no members or a union with one (or zero) | |
987 | members, or when all except the last field of a struct have | |
988 | width zero. These are uncommon and/or illegal situations, | |
989 | and in any case guessing wrong probably doesn't matter | |
990 | much. | |
991 | ||
992 | But if we later do find out we were wrong, we fixup the tag | |
993 | kind. Members of an enumeration must be handled | |
994 | differently from struct/union fields, and that is harder to | |
995 | patch up, but luckily we shouldn't need to. (If there are | |
996 | any enumeration members, we can tell for sure it's an enum | |
997 | here.) */ | |
998 | ||
999 | if (type_code == TYPE_CODE_UNDEF) | |
1000 | if (nfields > 1 && max_value == 0) | |
1001 | type_code = TYPE_CODE_UNION; | |
1002 | else | |
1003 | type_code = TYPE_CODE_STRUCT; | |
1004 | ||
1005 | /* Create a new type or use the pending type. */ | |
1006 | pend = is_pending_symbol (cur_fdr, ext_sh); | |
1007 | if (pend == (struct mdebug_pending *) NULL) | |
1008 | { | |
1009 | t = new_type (NULL); | |
1010 | add_pending (cur_fdr, ext_sh, t); | |
1011 | } | |
1012 | else | |
1013 | t = pend->t; | |
1014 | ||
a8c49897 PS |
1015 | /* Do not set the tag name if it is a compiler generated tag name |
1016 | (.Fxx or .xxfake or empty) for unnamed struct/union/enums. | |
1017 | Alpha cc puts out an sh->iss of zero for those. */ | |
1018 | if (sh->iss == 0 || name[0] == '.' || name[0] == '\0') | |
a2f1e2e5 ILT |
1019 | TYPE_TAG_NAME (t) = NULL; |
1020 | else | |
1021 | TYPE_TAG_NAME (t) = obconcat (¤t_objfile->symbol_obstack, | |
1022 | "", "", name); | |
1023 | ||
1024 | TYPE_CODE (t) = type_code; | |
1025 | TYPE_LENGTH (t) = sh->value; | |
1026 | TYPE_NFIELDS (t) = nfields; | |
1027 | TYPE_FIELDS (t) = f = ((struct field *) | |
1028 | TYPE_ALLOC (t, | |
1029 | nfields * sizeof (struct field))); | |
1030 | ||
1031 | if (type_code == TYPE_CODE_ENUM) | |
1032 | { | |
1033 | /* This is a non-empty enum. */ | |
9d51b3c5 | 1034 | |
a8c49897 | 1035 | /* DEC c89 has the number of enumerators in the sh.value field, |
9d51b3c5 PS |
1036 | not the type length, so we have to compensate for that |
1037 | incompatibility quirk. | |
1038 | This might do the wrong thing for an enum with one or two | |
1039 | enumerators and gcc -gcoff -fshort-enums, but these cases | |
1040 | are hopefully rare enough. */ | |
1041 | if (TYPE_LENGTH (t) == TYPE_NFIELDS (t)) | |
1042 | TYPE_LENGTH (t) = TARGET_INT_BIT / HOST_CHAR_BIT; | |
a2f1e2e5 ILT |
1043 | for (ext_tsym = ext_sh + external_sym_size; |
1044 | ; | |
1045 | ext_tsym += external_sym_size) | |
1046 | { | |
1047 | SYMR tsym; | |
1048 | struct symbol *enum_sym; | |
1049 | ||
1050 | (*swap_sym_in) (cur_bfd, ext_tsym, &tsym); | |
1051 | ||
1052 | if (tsym.st != stMember) | |
1053 | break; | |
1054 | ||
1055 | f->bitpos = tsym.value; | |
1056 | f->type = t; | |
1057 | f->name = debug_info->ss + cur_fdr->issBase + tsym.iss; | |
1058 | f->bitsize = 0; | |
1059 | ||
1060 | enum_sym = ((struct symbol *) | |
1061 | obstack_alloc (¤t_objfile->symbol_obstack, | |
1062 | sizeof (struct symbol))); | |
1063 | memset ((PTR) enum_sym, 0, sizeof (struct symbol)); | |
1064 | SYMBOL_NAME (enum_sym) = f->name; | |
1065 | SYMBOL_CLASS (enum_sym) = LOC_CONST; | |
1066 | SYMBOL_TYPE (enum_sym) = t; | |
1067 | SYMBOL_NAMESPACE (enum_sym) = VAR_NAMESPACE; | |
1068 | SYMBOL_VALUE (enum_sym) = tsym.value; | |
1069 | add_symbol (enum_sym, top_stack->cur_block); | |
1070 | ||
1071 | /* Skip the stMembers that we've handled. */ | |
1072 | count++; | |
1073 | f++; | |
1074 | } | |
1075 | } | |
1076 | /* make this the current type */ | |
1077 | top_stack->cur_type = t; | |
1078 | top_stack->cur_field = 0; | |
1079 | ||
1080 | /* Do not create a symbol for alpha cc unnamed structs. */ | |
1081 | if (sh->iss == 0) | |
1082 | break; | |
1083 | ||
1084 | /* gcc puts out an empty struct for an opaque struct definitions, | |
1085 | do not create a symbol for it either. */ | |
1086 | if (TYPE_NFIELDS (t) == 0) | |
1087 | { | |
1088 | TYPE_FLAGS (t) |= TYPE_FLAG_STUB; | |
1089 | break; | |
1090 | } | |
1091 | ||
1092 | s = new_symbol (name); | |
1093 | SYMBOL_NAMESPACE (s) = STRUCT_NAMESPACE; | |
1094 | SYMBOL_CLASS (s) = LOC_TYPEDEF; | |
1095 | SYMBOL_VALUE (s) = 0; | |
1096 | SYMBOL_TYPE (s) = t; | |
1097 | add_symbol (s, top_stack->cur_block); | |
1098 | break; | |
1099 | ||
1100 | /* End of local variables shared by struct, union, enum, and | |
1101 | block (as yet unknown struct/union/enum) processing. */ | |
1102 | } | |
1103 | ||
1104 | case_stBlock_code: | |
1105 | /* beginnning of (code) block. Value of symbol | |
1106 | is the displacement from procedure start */ | |
1107 | push_parse_stack (); | |
1108 | ||
1109 | /* Do not start a new block if this is the outermost block of a | |
1110 | procedure. This allows the LOC_BLOCK symbol to point to the | |
1111 | block with the local variables, so funcname::var works. */ | |
1112 | if (top_stack->blocktype == stProc | |
1113 | || top_stack->blocktype == stStaticProc) | |
1114 | { | |
1115 | top_stack->blocktype = stNil; | |
1116 | break; | |
1117 | } | |
1118 | ||
1119 | top_stack->blocktype = stBlock; | |
1120 | b = new_block (top_stack->maxsyms); | |
1121 | BLOCK_START (b) = sh->value + top_stack->procadr; | |
1122 | BLOCK_SUPERBLOCK (b) = top_stack->cur_block; | |
1123 | top_stack->cur_block = b; | |
1124 | add_block (b, top_stack->cur_st); | |
1125 | break; | |
1126 | ||
1127 | case stEnd: /* end (of anything) */ | |
1128 | if (sh->sc == scInfo || sh->sc == scCommon) | |
1129 | { | |
1130 | /* Finished with type */ | |
1131 | top_stack->cur_type = 0; | |
1132 | } | |
1133 | else if (sh->sc == scText && | |
1134 | (top_stack->blocktype == stProc || | |
1135 | top_stack->blocktype == stStaticProc)) | |
1136 | { | |
1137 | /* Finished with procedure */ | |
1138 | struct blockvector *bv = BLOCKVECTOR (top_stack->cur_st); | |
1139 | struct mips_extra_func_info *e; | |
1140 | struct block *b; | |
1141 | int i; | |
1142 | ||
1143 | BLOCK_END (top_stack->cur_block) += sh->value; /* size */ | |
1144 | ||
1145 | /* Make up special symbol to contain procedure specific info */ | |
1146 | s = new_symbol (MIPS_EFI_SYMBOL_NAME); | |
1147 | SYMBOL_NAMESPACE (s) = LABEL_NAMESPACE; | |
1148 | SYMBOL_CLASS (s) = LOC_CONST; | |
1149 | SYMBOL_TYPE (s) = builtin_type_void; | |
1150 | e = ((struct mips_extra_func_info *) | |
1151 | obstack_alloc (¤t_objfile->symbol_obstack, | |
1152 | sizeof (struct mips_extra_func_info))); | |
1153 | SYMBOL_VALUE (s) = (long) e; | |
1154 | e->numargs = top_stack->numargs; | |
1155 | add_symbol (s, top_stack->cur_block); | |
1156 | ||
1157 | /* Reallocate symbols, saving memory */ | |
1158 | b = shrink_block (top_stack->cur_block, top_stack->cur_st); | |
1159 | ||
1160 | /* f77 emits proc-level with address bounds==[0,0], | |
1161 | So look for such child blocks, and patch them. */ | |
1162 | for (i = 0; i < BLOCKVECTOR_NBLOCKS (bv); i++) | |
1163 | { | |
1164 | struct block *b_bad = BLOCKVECTOR_BLOCK (bv, i); | |
1165 | if (BLOCK_SUPERBLOCK (b_bad) == b | |
1166 | && BLOCK_START (b_bad) == top_stack->procadr | |
1167 | && BLOCK_END (b_bad) == top_stack->procadr) | |
1168 | { | |
1169 | BLOCK_START (b_bad) = BLOCK_START (b); | |
1170 | BLOCK_END (b_bad) = BLOCK_END (b); | |
1171 | } | |
1172 | } | |
1173 | } | |
1174 | else if (sh->sc == scText && top_stack->blocktype == stBlock) | |
1175 | { | |
1176 | /* End of (code) block. The value of the symbol is the | |
1177 | displacement from the procedure`s start address of the | |
1178 | end of this block. */ | |
1179 | BLOCK_END (top_stack->cur_block) = sh->value + top_stack->procadr; | |
1180 | shrink_block (top_stack->cur_block, top_stack->cur_st); | |
1181 | } | |
1182 | else if (sh->sc == scText && top_stack->blocktype == stNil) | |
1183 | { | |
1184 | /* End of outermost block. Pop parse stack and ignore. The | |
1185 | following stEnd of stProc will take care of the block. */ | |
1186 | ; | |
1187 | } | |
1188 | else if (sh->sc == scText && top_stack->blocktype == stFile) | |
1189 | { | |
1190 | /* End of file. Pop parse stack and ignore. Higher | |
1191 | level code deals with this. */ | |
1192 | ; | |
1193 | } | |
1194 | else | |
1195 | complain (&stEnd_complaint, sh->sc); | |
1196 | ||
1197 | pop_parse_stack (); /* restore previous lexical context */ | |
1198 | break; | |
1199 | ||
1200 | case stMember: /* member of struct or union */ | |
1201 | f = &TYPE_FIELDS (top_stack->cur_type)[top_stack->cur_field++]; | |
1202 | f->name = name; | |
1203 | f->bitpos = sh->value; | |
1204 | bitsize = 0; | |
1205 | f->type = parse_type (cur_fd, ax, sh->index, &bitsize, bigend, name); | |
1206 | f->bitsize = bitsize; | |
1207 | break; | |
1208 | ||
1209 | case stTypedef: /* type definition */ | |
1210 | /* Typedefs for forward declarations and opaque structs from alpha cc | |
1211 | are handled by cross_ref, skip them. */ | |
1212 | if (sh->iss == 0) | |
1213 | break; | |
1214 | ||
1215 | /* Parse the type or use the pending type. */ | |
1216 | pend = is_pending_symbol (cur_fdr, ext_sh); | |
1217 | if (pend == (struct mdebug_pending *) NULL) | |
1218 | { | |
1219 | t = parse_type (cur_fd, ax, sh->index, (int *)NULL, bigend, name); | |
1220 | add_pending (cur_fdr, ext_sh, t); | |
1221 | } | |
1222 | else | |
1223 | t = pend->t; | |
1224 | ||
1225 | /* mips cc puts out a typedef with the name of the struct for forward | |
1226 | declarations. These should not go into the symbol table and | |
1227 | TYPE_NAME should not be set for them. | |
1228 | They can't be distinguished from an intentional typedef to | |
1229 | the same name however: | |
1230 | x.h: | |
1231 | struct x { int ix; int jx; }; | |
1232 | struct xx; | |
1233 | x.c: | |
1234 | typedef struct x x; | |
1235 | struct xx {int ixx; int jxx; }; | |
1236 | generates a cross referencing stTypedef for x and xx. | |
1237 | The user visible effect of this is that the type of a pointer | |
1238 | to struct foo sometimes is given as `foo *' instead of `struct foo *'. | |
1239 | The problem is fixed with alpha cc. */ | |
1240 | ||
db2302cb PS |
1241 | /* However if the typedef cross references to an opaque aggregate, it |
1242 | is safe to omit it from the symbol table. */ | |
1243 | ||
1244 | if (has_opaque_xref (cur_fdr, sh)) | |
1245 | break; | |
a2f1e2e5 ILT |
1246 | s = new_symbol (name); |
1247 | SYMBOL_NAMESPACE (s) = VAR_NAMESPACE; | |
1248 | SYMBOL_CLASS (s) = LOC_TYPEDEF; | |
1249 | SYMBOL_BLOCK_VALUE (s) = top_stack->cur_block; | |
1250 | SYMBOL_TYPE (s) = t; | |
1251 | add_symbol (s, top_stack->cur_block); | |
1252 | ||
1253 | /* Incomplete definitions of structs should not get a name. */ | |
1254 | if (TYPE_NAME (SYMBOL_TYPE (s)) == NULL | |
1255 | && (TYPE_NFIELDS (SYMBOL_TYPE (s)) != 0 | |
1256 | || (TYPE_CODE (SYMBOL_TYPE (s)) != TYPE_CODE_STRUCT | |
1257 | && TYPE_CODE (SYMBOL_TYPE (s)) != TYPE_CODE_UNION))) | |
1258 | { | |
1259 | if (TYPE_CODE (SYMBOL_TYPE (s)) == TYPE_CODE_PTR | |
1260 | || TYPE_CODE (SYMBOL_TYPE (s)) == TYPE_CODE_FUNC) | |
1261 | { | |
1262 | /* If we are giving a name to a type such as "pointer to | |
1263 | foo" or "function returning foo", we better not set | |
1264 | the TYPE_NAME. If the program contains "typedef char | |
1265 | *caddr_t;", we don't want all variables of type char | |
1266 | * to print as caddr_t. This is not just a | |
1267 | consequence of GDB's type management; CC and GCC (at | |
1268 | least through version 2.4) both output variables of | |
1269 | either type char * or caddr_t with the type | |
1270 | refering to the stTypedef symbol for caddr_t. If a future | |
1271 | compiler cleans this up it GDB is not ready for it | |
1272 | yet, but if it becomes ready we somehow need to | |
1273 | disable this check (without breaking the PCC/GCC2.4 | |
1274 | case). | |
1275 | ||
1276 | Sigh. | |
1277 | ||
1278 | Fortunately, this check seems not to be necessary | |
1279 | for anything except pointers or functions. */ | |
1280 | } | |
1281 | else | |
1282 | TYPE_NAME (SYMBOL_TYPE (s)) = SYMBOL_NAME (s); | |
1283 | } | |
1284 | break; | |
1285 | ||
1286 | case stFile: /* file name */ | |
1287 | push_parse_stack (); | |
1288 | top_stack->blocktype = sh->st; | |
1289 | break; | |
1290 | ||
1291 | /* I`ve never seen these for C */ | |
1292 | case stRegReloc: | |
1293 | break; /* register relocation */ | |
1294 | case stForward: | |
1295 | break; /* forwarding address */ | |
1296 | case stConstant: | |
1297 | break; /* constant */ | |
1298 | default: | |
1299 | complain (&unknown_mdebug_symtype_complaint, sh->st); | |
1300 | break; | |
1301 | } | |
1302 | ||
1303 | return count; | |
1304 | } | |
1305 | ||
1306 | /* Parse the type information provided in the raw AX entries for | |
1307 | the symbol SH. Return the bitfield size in BS, in case. | |
1308 | We must byte-swap the AX entries before we use them; BIGEND says whether | |
1309 | they are big-endian or little-endian (from fh->fBigendian). */ | |
1310 | ||
1311 | static struct type * | |
1312 | parse_type (fd, ax, aux_index, bs, bigend, sym_name) | |
1313 | int fd; | |
1314 | union aux_ext *ax; | |
1315 | unsigned int aux_index; | |
1316 | int *bs; | |
1317 | int bigend; | |
1318 | char *sym_name; | |
1319 | { | |
1320 | /* Null entries in this map are treated specially */ | |
1321 | static struct type **map_bt[] = | |
1322 | { | |
1323 | &builtin_type_void, /* btNil */ | |
1324 | 0, /* btAdr */ | |
1325 | &builtin_type_char, /* btChar */ | |
1326 | &builtin_type_unsigned_char,/* btUChar */ | |
1327 | &builtin_type_short, /* btShort */ | |
1328 | &builtin_type_unsigned_short, /* btUShort */ | |
1329 | &builtin_type_int, /* btInt */ | |
1330 | &builtin_type_unsigned_int, /* btUInt */ | |
1331 | &builtin_type_long, /* btLong */ | |
1332 | &builtin_type_unsigned_long,/* btULong */ | |
1333 | &builtin_type_float, /* btFloat */ | |
1334 | &builtin_type_double, /* btDouble */ | |
1335 | 0, /* btStruct */ | |
1336 | 0, /* btUnion */ | |
1337 | 0, /* btEnum */ | |
1338 | 0, /* btTypedef */ | |
1339 | 0, /* btRange */ | |
1340 | 0, /* btSet */ | |
504ccfd7 JK |
1341 | &mdebug_type_complex, /* btComplex */ |
1342 | &mdebug_type_double_complex, /* btDComplex */ | |
a2f1e2e5 | 1343 | 0, /* btIndirect */ |
504ccfd7 JK |
1344 | &mdebug_type_fixed_dec, /* btFixedDec */ |
1345 | &mdebug_type_float_dec, /* btFloatDec */ | |
1346 | &mdebug_type_string, /* btString */ | |
a2f1e2e5 ILT |
1347 | 0, /* btBit */ |
1348 | 0, /* btPicture */ | |
1349 | &builtin_type_void, /* btVoid */ | |
1350 | 0, /* DEC C++: Pointer to member */ | |
1351 | 0, /* DEC C++: Virtual function table */ | |
1352 | 0, /* DEC C++: Class (Record) */ | |
1353 | &builtin_type_long, /* btLong64 */ | |
1354 | &builtin_type_unsigned_long, /* btULong64 */ | |
1355 | &builtin_type_long_long, /* btLongLong64 */ | |
1356 | &builtin_type_unsigned_long_long, /* btULongLong64 */ | |
1357 | &builtin_type_unsigned_long, /* btAdr64 */ | |
1358 | &builtin_type_long, /* btInt64 */ | |
1359 | &builtin_type_unsigned_long, /* btUInt64 */ | |
1360 | }; | |
1361 | ||
1362 | TIR t[1]; | |
1363 | struct type *tp = 0; | |
1364 | enum type_code type_code = TYPE_CODE_UNDEF; | |
1365 | ||
10373914 PS |
1366 | /* Handle undefined types, they have indexNil. */ |
1367 | if (aux_index == indexNil) | |
1368 | return builtin_type_int; | |
1369 | ||
a2f1e2e5 ILT |
1370 | /* Handle corrupt aux indices. */ |
1371 | if (aux_index >= (debug_info->fdr + fd)->caux) | |
1372 | { | |
1373 | complain (&index_complaint, sym_name); | |
1374 | return builtin_type_int; | |
1375 | } | |
1376 | ax += aux_index; | |
1377 | ||
1378 | /* Use aux as a type information record, map its basic type. */ | |
1379 | ecoff_swap_tir_in (bigend, &ax->a_ti, t); | |
1380 | if (t->bt >= (sizeof (map_bt) / sizeof (*map_bt))) | |
1381 | { | |
1382 | complain (&basic_type_complaint, t->bt, sym_name); | |
1383 | return builtin_type_int; | |
1384 | } | |
1385 | if (map_bt[t->bt]) | |
1386 | { | |
1387 | tp = *map_bt[t->bt]; | |
1388 | } | |
1389 | else | |
1390 | { | |
1391 | tp = NULL; | |
1392 | /* Cannot use builtin types -- build our own */ | |
1393 | switch (t->bt) | |
1394 | { | |
1395 | case btAdr: | |
1396 | tp = lookup_pointer_type (builtin_type_void); | |
1397 | break; | |
1398 | case btStruct: | |
1399 | type_code = TYPE_CODE_STRUCT; | |
1400 | break; | |
1401 | case btUnion: | |
1402 | type_code = TYPE_CODE_UNION; | |
1403 | break; | |
1404 | case btEnum: | |
1405 | type_code = TYPE_CODE_ENUM; | |
1406 | break; | |
1407 | case btRange: | |
1408 | type_code = TYPE_CODE_RANGE; | |
1409 | break; | |
1410 | case btSet: | |
1411 | type_code = TYPE_CODE_SET; | |
1412 | break; | |
1413 | case btTypedef: | |
1414 | /* alpha cc uses this for typedefs. The true type will be | |
1415 | obtained by crossreferencing below. */ | |
1416 | type_code = TYPE_CODE_ERROR; | |
1417 | break; | |
1418 | default: | |
1419 | complain (&basic_type_complaint, t->bt, sym_name); | |
1420 | return builtin_type_int; | |
1421 | } | |
1422 | } | |
1423 | ||
1424 | /* Move on to next aux */ | |
1425 | ax++; | |
1426 | ||
1427 | if (t->fBitfield) | |
1428 | { | |
1429 | /* Inhibit core dumps with some cfront generated objects that | |
1430 | corrupt the TIR. */ | |
1431 | if (bs == (int *)NULL) | |
1432 | { | |
1433 | complain (&bad_fbitfield_complaint, sym_name); | |
1434 | return builtin_type_int; | |
1435 | } | |
1436 | *bs = AUX_GET_WIDTH (bigend, ax); | |
1437 | ax++; | |
1438 | } | |
1439 | ||
1440 | /* All these types really point to some (common) MIPS type | |
1441 | definition, and only the type-qualifiers fully identify | |
1442 | them. We'll make the same effort at sharing. */ | |
1443 | if (t->bt == btStruct || | |
1444 | t->bt == btUnion || | |
1445 | t->bt == btEnum || | |
1446 | ||
1447 | /* btSet (I think) implies that the name is a tag name, not a typedef | |
1448 | name. This apparently is a MIPS extension for C sets. */ | |
1449 | t->bt == btSet) | |
1450 | { | |
1451 | char *name; | |
1452 | ||
1453 | /* Try to cross reference this type, build new type on failure. */ | |
1454 | ax += cross_ref (fd, ax, &tp, type_code, &name, bigend, sym_name); | |
1455 | if (tp == (struct type *) NULL) | |
1456 | tp = init_type (type_code, 0, 0, (char *) NULL, current_objfile); | |
1457 | ||
a8c49897 PS |
1458 | /* DEC c89 produces cross references to qualified aggregate types, |
1459 | dereference them. */ | |
1460 | while (TYPE_CODE (tp) == TYPE_CODE_PTR | |
1461 | || TYPE_CODE (tp) == TYPE_CODE_ARRAY) | |
1462 | tp = tp->target_type; | |
1463 | ||
a2f1e2e5 ILT |
1464 | /* Make sure that TYPE_CODE(tp) has an expected type code. |
1465 | Any type may be returned from cross_ref if file indirect entries | |
1466 | are corrupted. */ | |
1467 | if (TYPE_CODE (tp) != TYPE_CODE_STRUCT | |
1468 | && TYPE_CODE (tp) != TYPE_CODE_UNION | |
1469 | && TYPE_CODE (tp) != TYPE_CODE_ENUM) | |
1470 | { | |
1471 | complain (&unexpected_type_code_complaint, sym_name); | |
1472 | } | |
1473 | else | |
1474 | { | |
1475 | ||
1476 | /* Usually, TYPE_CODE(tp) is already type_code. The main | |
1477 | exception is if we guessed wrong re struct/union/enum. | |
1478 | But for struct vs. union a wrong guess is harmless, so | |
1479 | don't complain(). */ | |
1480 | if ((TYPE_CODE (tp) == TYPE_CODE_ENUM | |
1481 | && type_code != TYPE_CODE_ENUM) | |
1482 | || (TYPE_CODE (tp) != TYPE_CODE_ENUM | |
1483 | && type_code == TYPE_CODE_ENUM)) | |
1484 | { | |
1485 | complain (&bad_tag_guess_complaint, sym_name); | |
1486 | } | |
1487 | ||
1488 | if (TYPE_CODE (tp) != type_code) | |
1489 | { | |
1490 | TYPE_CODE (tp) = type_code; | |
1491 | } | |
1492 | ||
1493 | /* Do not set the tag name if it is a compiler generated tag name | |
1494 | (.Fxx or .xxfake or empty) for unnamed struct/union/enums. */ | |
1495 | if (name[0] == '.' || name[0] == '\0') | |
1496 | TYPE_TAG_NAME (tp) = NULL; | |
1497 | else if (TYPE_TAG_NAME (tp) == NULL | |
1498 | || !STREQ (TYPE_TAG_NAME (tp), name)) | |
1499 | TYPE_TAG_NAME (tp) = obsavestring (name, strlen (name), | |
1500 | ¤t_objfile->type_obstack); | |
1501 | } | |
1502 | } | |
1503 | ||
1504 | /* All these types really point to some (common) MIPS type | |
1505 | definition, and only the type-qualifiers fully identify | |
1506 | them. We'll make the same effort at sharing. | |
1507 | FIXME: btIndirect cannot happen here as it is handled by the | |
1508 | switch t->bt above. And we are not doing any guessing on range types. */ | |
1509 | if (t->bt == btIndirect || | |
1510 | t->bt == btRange) | |
1511 | { | |
1512 | char *name; | |
1513 | ||
1514 | /* Try to cross reference this type, build new type on failure. */ | |
1515 | ax += cross_ref (fd, ax, &tp, type_code, &name, bigend, sym_name); | |
1516 | if (tp == (struct type *) NULL) | |
1517 | tp = init_type (type_code, 0, 0, (char *) NULL, current_objfile); | |
1518 | ||
1519 | /* Make sure that TYPE_CODE(tp) has an expected type code. | |
1520 | Any type may be returned from cross_ref if file indirect entries | |
1521 | are corrupted. */ | |
1522 | if (TYPE_CODE (tp) != TYPE_CODE_RANGE) | |
1523 | { | |
1524 | complain (&unexpected_type_code_complaint, sym_name); | |
1525 | } | |
1526 | else | |
1527 | { | |
1528 | /* Usually, TYPE_CODE(tp) is already type_code. The main | |
1529 | exception is if we guessed wrong re struct/union/enum. */ | |
1530 | if (TYPE_CODE (tp) != type_code) | |
1531 | { | |
1532 | complain (&bad_tag_guess_complaint, sym_name); | |
1533 | TYPE_CODE (tp) = type_code; | |
1534 | } | |
1535 | if (TYPE_NAME (tp) == NULL || !STREQ (TYPE_NAME (tp), name)) | |
1536 | TYPE_NAME (tp) = obsavestring (name, strlen (name), | |
1537 | ¤t_objfile->type_obstack); | |
1538 | } | |
1539 | } | |
1540 | if (t->bt == btTypedef) | |
1541 | { | |
1542 | char *name; | |
1543 | ||
1544 | /* Try to cross reference this type, it should succeed. */ | |
1545 | ax += cross_ref (fd, ax, &tp, type_code, &name, bigend, sym_name); | |
1546 | if (tp == (struct type *) NULL) | |
1547 | { | |
1548 | complain (&unable_to_cross_ref_complaint, sym_name); | |
1549 | tp = builtin_type_int; | |
1550 | } | |
1551 | } | |
1552 | ||
1553 | /* Deal with range types */ | |
1554 | if (t->bt == btRange) | |
1555 | { | |
1556 | TYPE_NFIELDS (tp) = 2; | |
1557 | TYPE_FIELDS (tp) = ((struct field *) | |
1558 | TYPE_ALLOC (tp, 2 * sizeof (struct field))); | |
1559 | TYPE_FIELD_NAME (tp, 0) = obsavestring ("Low", strlen ("Low"), | |
1560 | ¤t_objfile->type_obstack); | |
1561 | TYPE_FIELD_BITPOS (tp, 0) = AUX_GET_DNLOW (bigend, ax); | |
1562 | ax++; | |
1563 | TYPE_FIELD_NAME (tp, 1) = obsavestring ("High", strlen ("High"), | |
1564 | ¤t_objfile->type_obstack); | |
1565 | TYPE_FIELD_BITPOS (tp, 1) = AUX_GET_DNHIGH (bigend, ax); | |
1566 | ax++; | |
1567 | } | |
1568 | ||
1569 | /* Parse all the type qualifiers now. If there are more | |
1570 | than 6 the game will continue in the next aux */ | |
1571 | ||
1572 | while (1) | |
1573 | { | |
1574 | #define PARSE_TQ(tq) \ | |
1575 | if (t->tq != tqNil) \ | |
1576 | ax += upgrade_type(fd, &tp, t->tq, ax, bigend, sym_name); \ | |
1577 | else \ | |
1578 | break; | |
1579 | ||
1580 | PARSE_TQ (tq0); | |
1581 | PARSE_TQ (tq1); | |
1582 | PARSE_TQ (tq2); | |
1583 | PARSE_TQ (tq3); | |
1584 | PARSE_TQ (tq4); | |
1585 | PARSE_TQ (tq5); | |
1586 | #undef PARSE_TQ | |
1587 | ||
1588 | /* mips cc 2.x and gcc never put out continued aux entries. */ | |
1589 | if (!t->continued) | |
1590 | break; | |
1591 | ||
1592 | ecoff_swap_tir_in (bigend, &ax->a_ti, t); | |
1593 | ax++; | |
1594 | } | |
1595 | ||
1596 | /* Complain for illegal continuations due to corrupt aux entries. */ | |
1597 | if (t->continued) | |
1598 | complain (&bad_continued_complaint, sym_name); | |
1599 | ||
1600 | return tp; | |
1601 | } | |
1602 | ||
1603 | /* Make up a complex type from a basic one. Type is passed by | |
1604 | reference in TPP and side-effected as necessary. The type | |
1605 | qualifier TQ says how to handle the aux symbols at AX for | |
1606 | the symbol SX we are currently analyzing. BIGEND says whether | |
1607 | aux symbols are big-endian or little-endian. | |
1608 | Returns the number of aux symbols we parsed. */ | |
1609 | ||
1610 | static int | |
1611 | upgrade_type (fd, tpp, tq, ax, bigend, sym_name) | |
1612 | int fd; | |
1613 | struct type **tpp; | |
1614 | int tq; | |
1615 | union aux_ext *ax; | |
1616 | int bigend; | |
1617 | char *sym_name; | |
1618 | { | |
1619 | int off; | |
1620 | struct type *t; | |
1621 | ||
1622 | /* Used in array processing */ | |
1623 | int rf, id; | |
1624 | FDR *fh; | |
1625 | struct type *range; | |
1626 | struct type *indx; | |
1627 | int lower, upper; | |
1628 | RNDXR rndx; | |
1629 | ||
1630 | switch (tq) | |
1631 | { | |
1632 | case tqPtr: | |
1633 | t = lookup_pointer_type (*tpp); | |
1634 | *tpp = t; | |
1635 | return 0; | |
1636 | ||
1637 | case tqProc: | |
1638 | t = lookup_function_type (*tpp); | |
1639 | *tpp = t; | |
1640 | return 0; | |
1641 | ||
1642 | case tqArray: | |
1643 | off = 0; | |
1644 | ||
1645 | /* Determine and record the domain type (type of index) */ | |
1646 | ecoff_swap_rndx_in (bigend, &ax->a_rndx, &rndx); | |
1647 | id = rndx.index; | |
1648 | rf = rndx.rfd; | |
1649 | if (rf == 0xfff) | |
1650 | { | |
1651 | ax++; | |
1652 | rf = AUX_GET_ISYM (bigend, ax); | |
1653 | off++; | |
1654 | } | |
1655 | fh = get_rfd (fd, rf); | |
1656 | ||
1657 | indx = parse_type (fd, debug_info->external_aux + fh->iauxBase, | |
1658 | id, (int *) NULL, bigend, sym_name); | |
1659 | ||
1660 | /* The bounds type should be an integer type, but might be anything | |
1661 | else due to corrupt aux entries. */ | |
1662 | if (TYPE_CODE (indx) != TYPE_CODE_INT) | |
1663 | { | |
1664 | complain (&array_index_type_complaint, sym_name); | |
1665 | indx = builtin_type_int; | |
1666 | } | |
1667 | ||
1668 | /* Get the bounds, and create the array type. */ | |
1669 | ax++; | |
1670 | lower = AUX_GET_DNLOW (bigend, ax); | |
1671 | ax++; | |
1672 | upper = AUX_GET_DNHIGH (bigend, ax); | |
1673 | ax++; | |
1674 | rf = AUX_GET_WIDTH (bigend, ax); /* bit size of array element */ | |
1675 | ||
1676 | range = create_range_type ((struct type *) NULL, indx, | |
1677 | lower, upper); | |
1678 | ||
1679 | t = create_array_type ((struct type *) NULL, *tpp, range); | |
1680 | ||
1681 | /* We used to fill in the supplied array element bitsize | |
1682 | here if the TYPE_LENGTH of the target type was zero. | |
1683 | This happens for a `pointer to an array of anonymous structs', | |
1684 | but in this case the array element bitsize is also zero, | |
1685 | so nothing is gained. | |
1686 | And we used to check the TYPE_LENGTH of the target type against | |
1687 | the supplied array element bitsize. | |
1688 | gcc causes a mismatch for `pointer to array of object', | |
1689 | since the sdb directives it uses do not have a way of | |
1690 | specifying the bitsize, but it does no harm (the | |
1691 | TYPE_LENGTH should be correct) and we should be able to | |
1692 | ignore the erroneous bitsize from the auxiliary entry safely. | |
1693 | dbx seems to ignore it too. */ | |
1694 | ||
1695 | *tpp = t; | |
1696 | return 4 + off; | |
1697 | ||
1698 | case tqVol: | |
1699 | /* Volatile -- currently ignored */ | |
1700 | return 0; | |
1701 | ||
1702 | case tqConst: | |
1703 | /* Const -- currently ignored */ | |
1704 | return 0; | |
1705 | ||
1706 | default: | |
1707 | complain (&unknown_type_qual_complaint, tq); | |
1708 | return 0; | |
1709 | } | |
1710 | } | |
1711 | ||
1712 | ||
1713 | /* Parse a procedure descriptor record PR. Note that the procedure is | |
1714 | parsed _after_ the local symbols, now we just insert the extra | |
1715 | information we need into a MIPS_EFI_SYMBOL_NAME symbol that has | |
1716 | already been placed in the procedure's main block. Note also that | |
1717 | images that have been partially stripped (ld -x) have been deprived | |
1718 | of local symbols, and we have to cope with them here. FIRST_OFF is | |
1719 | the offset of the first procedure for this FDR; we adjust the | |
1720 | address by this amount, but I don't know why. SEARCH_SYMTAB is the symtab | |
1721 | to look for the function which contains the MIPS_EFI_SYMBOL_NAME symbol | |
1722 | in question, or NULL to use top_stack->cur_block. */ | |
1723 | ||
72bba93b SG |
1724 | static void parse_procedure PARAMS ((PDR *, struct symtab *, unsigned long, |
1725 | struct section_offsets *)); | |
a2f1e2e5 ILT |
1726 | |
1727 | static void | |
72bba93b | 1728 | parse_procedure (pr, search_symtab, first_off, section_offsets) |
a2f1e2e5 ILT |
1729 | PDR *pr; |
1730 | struct symtab *search_symtab; | |
1731 | unsigned long first_off; | |
72bba93b | 1732 | struct section_offsets *section_offsets; |
a2f1e2e5 ILT |
1733 | { |
1734 | struct symbol *s, *i; | |
1735 | struct block *b; | |
1736 | struct mips_extra_func_info *e; | |
1737 | char *sh_name; | |
1738 | ||
1739 | /* Simple rule to find files linked "-x" */ | |
1740 | if (cur_fdr->rss == -1) | |
1741 | { | |
1742 | if (pr->isym == -1) | |
1743 | { | |
1744 | /* Static procedure at address pr->adr. Sigh. */ | |
833e0d94 | 1745 | /* FIXME-32x64. assuming pr->adr fits in long. */ |
a2f1e2e5 ILT |
1746 | complain (&pdr_static_symbol_complaint, (unsigned long) pr->adr); |
1747 | return; | |
1748 | } | |
1749 | else | |
1750 | { | |
1751 | /* external */ | |
1752 | EXTR she; | |
1753 | ||
1754 | (*debug_swap->swap_ext_in) (cur_bfd, | |
1755 | ((char *) debug_info->external_ext | |
1756 | + (pr->isym | |
1757 | * debug_swap->external_ext_size)), | |
1758 | &she); | |
1759 | sh_name = debug_info->ssext + she.asym.iss; | |
1760 | } | |
1761 | } | |
1762 | else | |
1763 | { | |
1764 | /* Full symbols */ | |
1765 | SYMR sh; | |
1766 | ||
1767 | (*debug_swap->swap_sym_in) (cur_bfd, | |
1768 | ((char *) debug_info->external_sym | |
1769 | + ((cur_fdr->isymBase + pr->isym) | |
1770 | * debug_swap->external_sym_size)), | |
1771 | &sh); | |
1772 | sh_name = debug_info->ss + cur_fdr->issBase + sh.iss; | |
1773 | } | |
1774 | ||
1775 | if (search_symtab != NULL) | |
1776 | { | |
1777 | #if 0 | |
1778 | /* This loses both in the case mentioned (want a static, find a global), | |
1779 | but also if we are looking up a non-mangled name which happens to | |
1780 | match the name of a mangled function. */ | |
1781 | /* We have to save the cur_fdr across the call to lookup_symbol. | |
1782 | If the pdr is for a static function and if a global function with | |
1783 | the same name exists, lookup_symbol will eventually read in the symtab | |
1784 | for the global function and clobber cur_fdr. */ | |
1785 | FDR *save_cur_fdr = cur_fdr; | |
1786 | s = lookup_symbol (sh_name, NULL, VAR_NAMESPACE, 0, NULL); | |
1787 | cur_fdr = save_cur_fdr; | |
1788 | #else | |
1789 | s = mylookup_symbol | |
1790 | (sh_name, | |
1791 | BLOCKVECTOR_BLOCK (BLOCKVECTOR (search_symtab), STATIC_BLOCK), | |
1792 | VAR_NAMESPACE, | |
1793 | LOC_BLOCK); | |
1794 | #endif | |
1795 | } | |
1796 | else | |
1797 | s = mylookup_symbol (sh_name, top_stack->cur_block, | |
1798 | VAR_NAMESPACE, LOC_BLOCK); | |
1799 | ||
1800 | if (s != 0) | |
1801 | { | |
1802 | b = SYMBOL_BLOCK_VALUE (s); | |
1803 | } | |
1804 | else | |
1805 | { | |
1806 | complain (&pdr_for_nonsymbol_complaint, sh_name); | |
1807 | #if 1 | |
1808 | return; | |
1809 | #else | |
1810 | /* FIXME -- delete. We can't do symbol allocation now; it's all done. */ | |
1811 | s = new_symbol (sh_name); | |
1812 | SYMBOL_NAMESPACE (s) = VAR_NAMESPACE; | |
1813 | SYMBOL_CLASS (s) = LOC_BLOCK; | |
1814 | /* Donno its type, hope int is ok */ | |
1815 | SYMBOL_TYPE (s) = lookup_function_type (builtin_type_int); | |
1816 | add_symbol (s, top_stack->cur_block); | |
1817 | /* Wont have symbols for this one */ | |
1818 | b = new_block (2); | |
1819 | SYMBOL_BLOCK_VALUE (s) = b; | |
1820 | BLOCK_FUNCTION (b) = s; | |
1821 | BLOCK_START (b) = pr->adr; | |
1822 | /* BOUND used to be the end of procedure's text, but the | |
1823 | argument is no longer passed in. */ | |
1824 | BLOCK_END (b) = bound; | |
1825 | BLOCK_SUPERBLOCK (b) = top_stack->cur_block; | |
1826 | add_block (b, top_stack->cur_st); | |
1827 | #endif | |
1828 | } | |
1829 | ||
1830 | i = mylookup_symbol (MIPS_EFI_SYMBOL_NAME, b, LABEL_NAMESPACE, LOC_CONST); | |
1831 | ||
1832 | if (i) | |
1833 | { | |
1834 | e = (struct mips_extra_func_info *) SYMBOL_VALUE (i); | |
1835 | e->pdr = *pr; | |
1836 | e->pdr.isym = (long) s; | |
72bba93b SG |
1837 | e->pdr.adr += cur_fdr->adr - first_off |
1838 | + ANOFFSET (section_offsets, SECT_OFF_TEXT); | |
a2f1e2e5 ILT |
1839 | |
1840 | /* Correct incorrect setjmp procedure descriptor from the library | |
1841 | to make backtrace through setjmp work. */ | |
1842 | if (e->pdr.pcreg == 0 && STREQ (sh_name, "setjmp")) | |
1843 | { | |
1844 | complain (&bad_setjmp_pdr_complaint, 0); | |
1845 | e->pdr.pcreg = RA_REGNUM; | |
1846 | e->pdr.regmask = 0x80000000; | |
1847 | e->pdr.regoffset = -4; | |
1848 | } | |
a2f1e2e5 ILT |
1849 | } |
1850 | } | |
1851 | ||
72bba93b SG |
1852 | /* Relocate the extra function info pointed to by the symbol table. */ |
1853 | ||
1854 | void | |
1855 | ecoff_relocate_efi (sym, delta) | |
1856 | struct symbol *sym; | |
1857 | CORE_ADDR delta; | |
1858 | { | |
1859 | struct mips_extra_func_info *e; | |
1860 | ||
1861 | e = (struct mips_extra_func_info *) SYMBOL_VALUE (sym); | |
1862 | ||
1863 | e->pdr.adr += delta; | |
1864 | } | |
1865 | ||
a2f1e2e5 | 1866 | /* Parse the external symbol ES. Just call parse_symbol() after |
db2302cb | 1867 | making sure we know where the aux are for it. |
a2f1e2e5 ILT |
1868 | BIGEND says whether aux entries are big-endian or little-endian. |
1869 | ||
1870 | This routine clobbers top_stack->cur_block and ->cur_st. */ | |
1871 | ||
db2302cb PS |
1872 | static void parse_external PARAMS ((EXTR *, int, struct section_offsets *)); |
1873 | ||
a2f1e2e5 | 1874 | static void |
db2302cb | 1875 | parse_external (es, bigend, section_offsets) |
a2f1e2e5 | 1876 | EXTR *es; |
a2f1e2e5 | 1877 | int bigend; |
72bba93b | 1878 | struct section_offsets *section_offsets; |
a2f1e2e5 ILT |
1879 | { |
1880 | union aux_ext *ax; | |
1881 | ||
1882 | if (es->ifd != ifdNil) | |
1883 | { | |
1884 | cur_fd = es->ifd; | |
1885 | cur_fdr = debug_info->fdr + cur_fd; | |
1886 | ax = debug_info->external_aux + cur_fdr->iauxBase; | |
1887 | } | |
1888 | else | |
1889 | { | |
1890 | cur_fdr = debug_info->fdr; | |
1891 | ax = 0; | |
1892 | } | |
1893 | ||
1894 | /* Reading .o files */ | |
1895 | if (es->asym.sc == scUndefined || es->asym.sc == scNil) | |
1896 | { | |
1897 | char *what; | |
1898 | switch (es->asym.st) | |
1899 | { | |
1900 | case stNil: | |
1901 | /* These are generated for static symbols in .o files, | |
1902 | ignore them. */ | |
1903 | return; | |
1904 | case stStaticProc: | |
1905 | case stProc: | |
1906 | what = "procedure"; | |
1907 | n_undef_procs++; | |
1908 | break; | |
1909 | case stGlobal: | |
1910 | what = "variable"; | |
1911 | n_undef_vars++; | |
1912 | break; | |
1913 | case stLabel: | |
1914 | what = "label"; | |
1915 | n_undef_labels++; | |
1916 | break; | |
1917 | default: | |
1918 | what = "symbol"; | |
1919 | break; | |
1920 | } | |
1921 | n_undef_symbols++; | |
1922 | /* FIXME: Turn this into a complaint? */ | |
1923 | if (info_verbose) | |
1924 | printf_filtered ("Warning: %s `%s' is undefined (in %s)\n", | |
1925 | what, debug_info->ssext + es->asym.iss, | |
1926 | fdr_name (cur_fdr)); | |
1927 | return; | |
1928 | } | |
1929 | ||
1930 | switch (es->asym.st) | |
1931 | { | |
1932 | case stProc: | |
db2302cb PS |
1933 | case stStaticProc: |
1934 | /* There is no need to parse the external procedure symbols. | |
1935 | If they are from objects compiled without -g, their index will | |
1936 | be indexNil, and the symbol definition from the minimal symbol | |
1937 | is preferrable (yielding a function returning int instead of int). | |
1938 | If the index points to a local procedure symbol, the local | |
1939 | symbol already provides the correct type. | |
1940 | Note that the index of the external procedure symbol points | |
1941 | to the local procedure symbol in the local symbol table, and | |
1942 | _not_ to the auxiliary symbol info. */ | |
1943 | break; | |
a2f1e2e5 ILT |
1944 | case stGlobal: |
1945 | case stLabel: | |
1946 | /* Note that the case of a symbol with indexNil must be handled | |
1947 | anyways by parse_symbol(). */ | |
72bba93b | 1948 | parse_symbol (&es->asym, ax, (char *) NULL, bigend, section_offsets); |
a2f1e2e5 ILT |
1949 | break; |
1950 | default: | |
1951 | break; | |
1952 | } | |
1953 | } | |
1954 | ||
1955 | /* Parse the line number info for file descriptor FH into | |
1956 | GDB's linetable LT. MIPS' encoding requires a little bit | |
1957 | of magic to get things out. Note also that MIPS' line | |
1958 | numbers can go back and forth, apparently we can live | |
1959 | with that and do not need to reorder our linetables */ | |
1960 | ||
1961 | static void | |
72bba93b | 1962 | parse_lines (fh, pr, lt, maxlines, section_offsets) |
a2f1e2e5 ILT |
1963 | FDR *fh; |
1964 | PDR *pr; | |
1965 | struct linetable *lt; | |
1966 | int maxlines; | |
72bba93b | 1967 | struct section_offsets *section_offsets; |
a2f1e2e5 ILT |
1968 | { |
1969 | unsigned char *base; | |
1970 | int j, k; | |
1971 | int delta, count, lineno = 0; | |
1972 | unsigned long first_off = pr->adr; | |
1973 | ||
1974 | if (fh->cbLine == 0) | |
1975 | return; | |
1976 | ||
a2f1e2e5 ILT |
1977 | /* Scan by procedure descriptors */ |
1978 | k = 0; | |
1979 | for (j = 0; j < fh->cpd; j++, pr++) | |
1980 | { | |
1981 | long l; | |
1982 | unsigned long adr; | |
1983 | unsigned char *halt; | |
1984 | ||
1985 | /* No code for this one */ | |
1986 | if (pr->iline == ilineNil || | |
1987 | pr->lnLow == -1 || pr->lnHigh == -1) | |
1988 | continue; | |
1989 | ||
1990 | /* Determine start and end address of compressed line bytes for | |
1991 | this procedure. */ | |
1992 | base = debug_info->line + fh->cbLineOffset; | |
1993 | if (j != (fh->cpd - 1)) | |
1994 | halt = base + pr[1].cbLineOffset; | |
1995 | else | |
1996 | halt = base + fh->cbLine; | |
1997 | base += pr->cbLineOffset; | |
1998 | ||
72bba93b SG |
1999 | adr = fh->adr + pr->adr - first_off |
2000 | + ANOFFSET (section_offsets, SECT_OFF_TEXT); | |
2001 | ||
a2f1e2e5 ILT |
2002 | l = adr >> 2; /* in words */ |
2003 | for (lineno = pr->lnLow; base < halt; ) | |
2004 | { | |
2005 | count = *base & 0x0f; | |
2006 | delta = *base++ >> 4; | |
2007 | if (delta >= 8) | |
2008 | delta -= 16; | |
2009 | if (delta == -8) | |
2010 | { | |
2011 | delta = (base[0] << 8) | base[1]; | |
2012 | if (delta >= 0x8000) | |
2013 | delta -= 0x10000; | |
2014 | base += 2; | |
2015 | } | |
2016 | lineno += delta; /* first delta is 0 */ | |
2017 | ||
2018 | /* Complain if the line table overflows. Could happen | |
2019 | with corrupt binaries. */ | |
2020 | if (lt->nitems >= maxlines) | |
2021 | { | |
2022 | complain (&bad_linetable_guess_complaint, fdr_name (fh)); | |
2023 | break; | |
2024 | } | |
2025 | k = add_line (lt, lineno, l, k); | |
2026 | l += count + 1; | |
2027 | } | |
2028 | } | |
2029 | } | |
2030 | \f | |
2031 | /* Master parsing procedure for first-pass reading of file symbols | |
2032 | into a partial_symtab. */ | |
2033 | ||
2034 | static void | |
2035 | parse_partial_symbols (objfile, section_offsets) | |
2036 | struct objfile *objfile; | |
2037 | struct section_offsets *section_offsets; | |
2038 | { | |
2039 | const bfd_size_type external_sym_size = debug_swap->external_sym_size; | |
2040 | const bfd_size_type external_rfd_size = debug_swap->external_rfd_size; | |
2041 | const bfd_size_type external_ext_size = debug_swap->external_ext_size; | |
2042 | void (* const swap_ext_in) PARAMS ((bfd *, PTR, EXTR *)) | |
2043 | = debug_swap->swap_ext_in; | |
2044 | void (* const swap_sym_in) PARAMS ((bfd *, PTR, SYMR *)) | |
2045 | = debug_swap->swap_sym_in; | |
2046 | void (* const swap_rfd_in) PARAMS ((bfd *, PTR, RFDT *)) | |
2047 | = debug_swap->swap_rfd_in; | |
2048 | int f_idx, s_idx; | |
2049 | HDRR *hdr = &debug_info->symbolic_header; | |
2050 | /* Running pointers */ | |
2051 | FDR *fh; | |
2052 | char *ext_out; | |
2053 | char *ext_out_end; | |
2054 | EXTR *ext_block; | |
2055 | register EXTR *ext_in; | |
2056 | EXTR *ext_in_end; | |
2057 | SYMR sh; | |
2058 | struct partial_symtab *pst; | |
2059 | ||
2060 | int past_first_source_file = 0; | |
2061 | ||
2062 | /* List of current psymtab's include files */ | |
2063 | char **psymtab_include_list; | |
2064 | int includes_allocated; | |
2065 | int includes_used; | |
2066 | EXTR *extern_tab; | |
2067 | struct pst_map *fdr_to_pst; | |
2068 | /* Index within current psymtab dependency list */ | |
2069 | struct partial_symtab **dependency_list; | |
2070 | int dependencies_used, dependencies_allocated; | |
2071 | struct cleanup *old_chain; | |
2072 | char *name; | |
2073 | enum language prev_language; | |
2074 | ||
2075 | extern_tab = (EXTR *) obstack_alloc (&objfile->psymbol_obstack, | |
2076 | sizeof (EXTR) * hdr->iextMax); | |
2077 | ||
2078 | includes_allocated = 30; | |
2079 | includes_used = 0; | |
2080 | psymtab_include_list = (char **) alloca (includes_allocated * | |
2081 | sizeof (char *)); | |
2082 | next_symbol_text_func = mdebug_next_symbol_text; | |
2083 | ||
2084 | dependencies_allocated = 30; | |
2085 | dependencies_used = 0; | |
2086 | dependency_list = | |
2087 | (struct partial_symtab **) alloca (dependencies_allocated * | |
2088 | sizeof (struct partial_symtab *)); | |
2089 | ||
2090 | last_source_file = NULL; | |
2091 | ||
2092 | /* | |
2093 | * Big plan: | |
2094 | * | |
2095 | * Only parse the Local and External symbols, and the Relative FDR. | |
2096 | * Fixup enough of the loader symtab to be able to use it. | |
2097 | * Allocate space only for the file's portions we need to | |
2098 | * look at. (XXX) | |
2099 | */ | |
2100 | ||
2101 | max_gdbinfo = 0; | |
2102 | max_glevel = MIN_GLEVEL; | |
2103 | ||
2104 | /* Allocate the map FDR -> PST. | |
2105 | Minor hack: -O3 images might claim some global data belongs | |
2106 | to FDR -1. We`ll go along with that */ | |
2107 | fdr_to_pst = (struct pst_map *) xzalloc ((hdr->ifdMax + 1) * sizeof *fdr_to_pst); | |
2108 | old_chain = make_cleanup (free, fdr_to_pst); | |
2109 | fdr_to_pst++; | |
2110 | { | |
847d9775 | 2111 | struct partial_symtab *pst = new_psymtab ("", objfile, section_offsets); |
a2f1e2e5 ILT |
2112 | fdr_to_pst[-1].pst = pst; |
2113 | FDR_IDX (pst) = -1; | |
2114 | } | |
2115 | ||
2116 | /* Allocate the global pending list. */ | |
2117 | pending_list = | |
2118 | ((struct mdebug_pending **) | |
2119 | obstack_alloc (&objfile->psymbol_obstack, | |
2120 | hdr->ifdMax * sizeof (struct mdebug_pending *))); | |
2121 | memset ((PTR) pending_list, 0, | |
2122 | hdr->ifdMax * sizeof (struct mdebug_pending *)); | |
2123 | ||
2124 | /* Pass 0 over external syms: swap them in. */ | |
2125 | ext_block = (EXTR *) xmalloc (hdr->iextMax * sizeof (EXTR)); | |
2126 | make_cleanup (free, ext_block); | |
2127 | ||
2128 | ext_out = (char *) debug_info->external_ext; | |
2129 | ext_out_end = ext_out + hdr->iextMax * external_ext_size; | |
2130 | ext_in = ext_block; | |
2131 | for (; ext_out < ext_out_end; ext_out += external_ext_size, ext_in++) | |
2132 | (*swap_ext_in) (cur_bfd, ext_out, ext_in); | |
2133 | ||
2134 | /* Pass 1 over external syms: Presize and partition the list */ | |
2135 | ext_in = ext_block; | |
2136 | ext_in_end = ext_in + hdr->iextMax; | |
2137 | for (; ext_in < ext_in_end; ext_in++) | |
2138 | { | |
2139 | /* See calls to complain below. */ | |
2140 | if (ext_in->ifd >= -1 | |
2141 | && ext_in->ifd < hdr->ifdMax | |
2142 | && ext_in->asym.iss >= 0 | |
2143 | && ext_in->asym.iss < hdr->issExtMax) | |
2144 | fdr_to_pst[ext_in->ifd].n_globals++; | |
2145 | } | |
2146 | ||
2147 | /* Pass 1.5 over files: partition out global symbol space */ | |
2148 | s_idx = 0; | |
2149 | for (f_idx = -1; f_idx < hdr->ifdMax; f_idx++) | |
2150 | { | |
2151 | fdr_to_pst[f_idx].globals_offset = s_idx; | |
2152 | s_idx += fdr_to_pst[f_idx].n_globals; | |
2153 | fdr_to_pst[f_idx].n_globals = 0; | |
2154 | } | |
2155 | ||
2156 | /* Pass 2 over external syms: fill in external symbols */ | |
2157 | ext_in = ext_block; | |
2158 | ext_in_end = ext_in + hdr->iextMax; | |
2159 | for (; ext_in < ext_in_end; ext_in++) | |
2160 | { | |
2161 | enum minimal_symbol_type ms_type = mst_text; | |
2162 | ||
2163 | /* The Irix 5 native tools seem to sometimes generate bogus | |
2164 | external symbols. */ | |
2165 | if (ext_in->ifd < -1 || ext_in->ifd >= hdr->ifdMax) | |
2166 | { | |
2167 | complain (&bad_ext_ifd_complaint, ext_in->ifd, hdr->ifdMax); | |
2168 | continue; | |
2169 | } | |
2170 | if (ext_in->asym.iss < 0 || ext_in->asym.iss >= hdr->issExtMax) | |
2171 | { | |
2172 | complain (&bad_ext_iss_complaint, ext_in->asym.iss, | |
2173 | hdr->issExtMax); | |
2174 | continue; | |
2175 | } | |
2176 | ||
2177 | extern_tab[fdr_to_pst[ext_in->ifd].globals_offset | |
2178 | + fdr_to_pst[ext_in->ifd].n_globals++] = *ext_in; | |
2179 | ||
2180 | if (ext_in->asym.sc == scUndefined || ext_in->asym.sc == scNil) | |
2181 | continue; | |
2182 | ||
2183 | name = debug_info->ssext + ext_in->asym.iss; | |
2184 | switch (ext_in->asym.st) | |
2185 | { | |
2186 | case stProc: | |
2187 | break; | |
2188 | case stStaticProc: | |
2189 | ms_type = mst_file_text; | |
2190 | break; | |
2191 | case stGlobal: | |
10373914 PS |
2192 | if (ext_in->asym.sc == scCommon) |
2193 | { | |
2194 | /* The value of a common symbol is its size, not its address. | |
2195 | Ignore it. */ | |
2196 | continue; | |
2197 | } | |
2198 | else if (ext_in->asym.sc == scData | |
a2f1e2e5 | 2199 | || ext_in->asym.sc == scSData |
10373914 PS |
2200 | || ext_in->asym.sc == scRData |
2201 | || ext_in->asym.sc == scPData | |
2202 | || ext_in->asym.sc == scXData) | |
a2f1e2e5 ILT |
2203 | ms_type = mst_data; |
2204 | else | |
2205 | ms_type = mst_bss; | |
2206 | break; | |
2207 | case stLabel: | |
2208 | if (ext_in->asym.sc == scAbs) | |
2209 | ms_type = mst_abs; | |
10373914 PS |
2210 | else if (ext_in->asym.sc == scText |
2211 | || ext_in->asym.sc == scInit | |
2212 | || ext_in->asym.sc == scFini) | |
2213 | ms_type = mst_file_text; | |
a2f1e2e5 ILT |
2214 | else if (ext_in->asym.sc == scData |
2215 | || ext_in->asym.sc == scSData | |
10373914 PS |
2216 | || ext_in->asym.sc == scRData |
2217 | || ext_in->asym.sc == scPData | |
2218 | || ext_in->asym.sc == scXData) | |
2219 | ms_type = mst_file_data; | |
a2f1e2e5 | 2220 | else |
10373914 | 2221 | ms_type = mst_file_bss; |
a2f1e2e5 ILT |
2222 | break; |
2223 | case stLocal: | |
2224 | /* The alpha has the section start addresses in stLocal symbols | |
2225 | whose name starts with a `.'. Skip those but complain for all | |
2226 | other stLocal symbols. */ | |
2227 | if (name[0] == '.') | |
2228 | continue; | |
2229 | /* Fall through. */ | |
2230 | default: | |
2231 | ms_type = mst_unknown; | |
2232 | complain (&unknown_ext_complaint, name); | |
2233 | } | |
8d60affd | 2234 | prim_record_minimal_symbol (name, ext_in->asym.value, ms_type, objfile); |
a2f1e2e5 ILT |
2235 | } |
2236 | ||
2237 | /* Pass 3 over files, over local syms: fill in static symbols */ | |
2238 | for (f_idx = 0; f_idx < hdr->ifdMax; f_idx++) | |
2239 | { | |
2240 | struct partial_symtab *save_pst; | |
2241 | EXTR *ext_ptr; | |
2242 | ||
2243 | cur_fdr = fh = debug_info->fdr + f_idx; | |
2244 | ||
2245 | if (fh->csym == 0) | |
2246 | { | |
2247 | fdr_to_pst[f_idx].pst = NULL; | |
2248 | continue; | |
2249 | } | |
2250 | pst = start_psymtab_common (objfile, section_offsets, | |
2251 | fdr_name (fh), | |
2252 | fh->cpd ? fh->adr : 0, | |
2253 | objfile->global_psymbols.next, | |
2254 | objfile->static_psymbols.next); | |
2255 | pst->read_symtab_private = ((char *) | |
2256 | obstack_alloc (&objfile->psymbol_obstack, | |
2257 | sizeof (struct symloc))); | |
2258 | memset ((PTR) pst->read_symtab_private, 0, sizeof (struct symloc)); | |
2259 | ||
2260 | save_pst = pst; | |
2261 | FDR_IDX (pst) = f_idx; | |
2262 | CUR_BFD (pst) = cur_bfd; | |
2263 | DEBUG_SWAP (pst) = debug_swap; | |
2264 | DEBUG_INFO (pst) = debug_info; | |
2265 | PENDING_LIST (pst) = pending_list; | |
2266 | ||
2267 | /* The way to turn this into a symtab is to call... */ | |
2268 | pst->read_symtab = mdebug_psymtab_to_symtab; | |
2269 | ||
2270 | /* Set up language for the pst. | |
2271 | The language from the FDR is used if it is unambigious (e.g. cfront | |
2272 | with native cc and g++ will set the language to C). | |
2273 | Otherwise we have to deduce the language from the filename. | |
2274 | Native ecoff has every header file in a separate FDR, so | |
2275 | deduce_language_from_filename will return language_unknown for | |
2276 | a header file, which is not what we want. | |
2277 | But the FDRs for the header files are after the FDR for the source | |
2278 | file, so we can assign the language of the source file to the | |
2279 | following header files. Then we save the language in the private | |
2280 | pst data so that we can reuse it when building symtabs. */ | |
2281 | prev_language = psymtab_language; | |
2282 | ||
2283 | switch (fh->lang) | |
2284 | { | |
2285 | case langCplusplusV2: | |
2286 | psymtab_language = language_cplus; | |
2287 | break; | |
2288 | default: | |
2289 | psymtab_language = deduce_language_from_filename (fdr_name (fh)); | |
2290 | break; | |
2291 | } | |
2292 | if (psymtab_language == language_unknown) | |
2293 | psymtab_language = prev_language; | |
2294 | PST_PRIVATE (pst)->pst_language = psymtab_language; | |
2295 | ||
2296 | pst->texthigh = pst->textlow; | |
2297 | ||
2298 | /* For stabs-in-ecoff files, the second symbol must be @stab. | |
2299 | This symbol is emitted by mips-tfile to signal that the | |
2300 | current object file uses encapsulated stabs instead of mips | |
2301 | ecoff for local symbols. (It is the second symbol because | |
2302 | the first symbol is the stFile used to signal the start of a | |
2303 | file). */ | |
2304 | processing_gcc_compilation = 0; | |
2305 | if (fh->csym >= 2) | |
2306 | { | |
2307 | (*swap_sym_in) (cur_bfd, | |
2308 | ((char *) debug_info->external_sym | |
2309 | + (fh->isymBase + 1) * external_sym_size), | |
2310 | &sh); | |
2311 | if (STREQ (debug_info->ss + fh->issBase + sh.iss, stabs_symbol)) | |
2312 | processing_gcc_compilation = 2; | |
2313 | } | |
2314 | ||
2315 | if (processing_gcc_compilation != 0) | |
2316 | { | |
2317 | for (cur_sdx = 2; cur_sdx < fh->csym; cur_sdx++) | |
2318 | { | |
2319 | int type_code; | |
2320 | char *namestring; | |
2321 | ||
2322 | (*swap_sym_in) (cur_bfd, | |
2323 | (((char *) debug_info->external_sym) | |
2324 | + (fh->isymBase + cur_sdx) * external_sym_size), | |
2325 | &sh); | |
2326 | type_code = ECOFF_UNMARK_STAB (sh.index); | |
2327 | if (!ECOFF_IS_STAB (&sh)) | |
2328 | { | |
2329 | if (sh.st == stProc || sh.st == stStaticProc) | |
2330 | { | |
72bba93b | 2331 | long procaddr; |
a2f1e2e5 | 2332 | long isym; |
72bba93b SG |
2333 | |
2334 | sh.value += ANOFFSET (section_offsets, SECT_OFF_TEXT); | |
2fe3b329 PS |
2335 | if (sh.st == stStaticProc) |
2336 | { | |
2337 | namestring = debug_info->ss + fh->issBase + sh.iss; | |
2338 | prim_record_minimal_symbol_and_info (namestring, | |
2339 | sh.value, | |
2340 | mst_file_text, | |
2341 | NULL, | |
2342 | SECT_OFF_TEXT, | |
2343 | objfile); | |
2344 | } | |
72bba93b | 2345 | procaddr = sh.value; |
a2f1e2e5 ILT |
2346 | |
2347 | isym = AUX_GET_ISYM (fh->fBigendian, | |
2348 | (debug_info->external_aux | |
2349 | + fh->iauxBase | |
2350 | + sh.index)); | |
2351 | (*swap_sym_in) (cur_bfd, | |
2352 | ((char *) debug_info->external_sym | |
2353 | + ((fh->isymBase + isym - 1) | |
2354 | * external_sym_size)), | |
2355 | &sh); | |
2356 | if (sh.st == stEnd) | |
2357 | { | |
2358 | long high = procaddr + sh.value; | |
2359 | if (high > pst->texthigh) | |
2360 | pst->texthigh = high; | |
2361 | } | |
2362 | } | |
2fe3b329 PS |
2363 | else if (sh.st == stStatic) |
2364 | { | |
2365 | switch (sh.sc) | |
2366 | { | |
2367 | case scUndefined: | |
2368 | case scNil: | |
2369 | case scAbs: | |
2370 | break; | |
2371 | ||
2372 | case scData: | |
2373 | case scSData: | |
2374 | case scRData: | |
2375 | case scPData: | |
2376 | case scXData: | |
2377 | namestring = debug_info->ss + fh->issBase + sh.iss; | |
2378 | sh.value += ANOFFSET (section_offsets, SECT_OFF_DATA); | |
2379 | prim_record_minimal_symbol_and_info (namestring, | |
2380 | sh.value, | |
2381 | mst_file_data, | |
2382 | NULL, | |
2383 | SECT_OFF_DATA, | |
2384 | objfile); | |
2385 | break; | |
2386 | ||
2387 | default: | |
2388 | namestring = debug_info->ss + fh->issBase + sh.iss; | |
2389 | sh.value += ANOFFSET (section_offsets, SECT_OFF_BSS); | |
2390 | prim_record_minimal_symbol_and_info (namestring, | |
2391 | sh.value, | |
2392 | mst_file_bss, | |
2393 | NULL, | |
2394 | SECT_OFF_BSS, | |
2395 | objfile); | |
2396 | break; | |
2397 | } | |
2398 | } | |
a2f1e2e5 ILT |
2399 | continue; |
2400 | } | |
2401 | #define SET_NAMESTRING() \ | |
2402 | namestring = debug_info->ss + fh->issBase + sh.iss | |
2403 | #define CUR_SYMBOL_TYPE type_code | |
2404 | #define CUR_SYMBOL_VALUE sh.value | |
2405 | #define START_PSYMTAB(ofile,secoff,fname,low,symoff,global_syms,static_syms)\ | |
2406 | pst = save_pst | |
2407 | #define END_PSYMTAB(pst,ilist,ninc,c_off,c_text,dep_list,n_deps) (void)0 | |
2408 | #define HANDLE_RBRAC(val) \ | |
2409 | if ((val) > save_pst->texthigh) save_pst->texthigh = (val); | |
2410 | #include "partial-stab.h" | |
2411 | } | |
2412 | } | |
2413 | else | |
2414 | { | |
2415 | for (cur_sdx = 0; cur_sdx < fh->csym;) | |
2416 | { | |
2417 | char *name; | |
2418 | enum address_class class; | |
2419 | ||
2420 | (*swap_sym_in) (cur_bfd, | |
2421 | ((char *) debug_info->external_sym | |
2422 | + ((fh->isymBase + cur_sdx) | |
2423 | * external_sym_size)), | |
2424 | &sh); | |
2425 | ||
2426 | if (ECOFF_IS_STAB (&sh)) | |
2427 | { | |
2428 | cur_sdx++; | |
2429 | continue; | |
2430 | } | |
2431 | ||
2432 | /* Non absolute static symbols go into the minimal table. */ | |
2433 | if (sh.sc == scUndefined || sh.sc == scNil | |
2434 | || (sh.index == indexNil | |
2435 | && (sh.st != stStatic || sh.sc == scAbs))) | |
2436 | { | |
2437 | /* FIXME, premature? */ | |
2438 | cur_sdx++; | |
2439 | continue; | |
2440 | } | |
2441 | ||
2442 | name = debug_info->ss + fh->issBase + sh.iss; | |
2443 | ||
2444 | switch (sh.st) | |
2445 | { | |
2446 | long high; | |
2447 | long procaddr; | |
2448 | int new_sdx; | |
2449 | ||
10373914 | 2450 | case stStaticProc: |
72bba93b SG |
2451 | prim_record_minimal_symbol_and_info (name, sh.value, |
2452 | mst_file_text, NULL, | |
2453 | SECT_OFF_TEXT, objfile); | |
10373914 | 2454 | |
a2f1e2e5 ILT |
2455 | /* FALLTHROUGH */ |
2456 | ||
10373914 PS |
2457 | case stProc: |
2458 | /* Usually there is a local and a global stProc symbol | |
2459 | for a function. This means that the function name | |
2460 | has already been entered into the mimimal symbol table | |
2461 | while processing the global symbols in pass 2 above. | |
2462 | One notable exception is the PROGRAM name from | |
2463 | f77 compiled executables, it is only put out as | |
2464 | local stProc symbol, and a global MAIN__ stProc symbol | |
2465 | points to it. It doesn't matter though, as gdb is | |
2466 | still able to find the PROGRAM name via the partial | |
2467 | symbol table, and the MAIN__ symbol via the minimal | |
2468 | symbol table. */ | |
d78d4d16 JK |
2469 | if (sh.st == stProc) |
2470 | ADD_PSYMBOL_TO_LIST (name, strlen (name), | |
2471 | VAR_NAMESPACE, LOC_BLOCK, | |
2472 | objfile->global_psymbols, | |
2473 | sh.value, psymtab_language, objfile); | |
2474 | else | |
2475 | ADD_PSYMBOL_TO_LIST (name, strlen (name), | |
2476 | VAR_NAMESPACE, LOC_BLOCK, | |
2477 | objfile->static_psymbols, | |
2478 | sh.value, psymtab_language, objfile); | |
2479 | ||
a2f1e2e5 ILT |
2480 | /* Skip over procedure to next one. */ |
2481 | if (sh.index >= hdr->iauxMax) | |
2482 | { | |
2483 | /* Should not happen, but does when cross-compiling | |
2484 | with the MIPS compiler. FIXME -- pull later. */ | |
2485 | complain (&index_complaint, name); | |
2486 | new_sdx = cur_sdx + 1; /* Don't skip at all */ | |
2487 | } | |
2488 | else | |
2489 | new_sdx = AUX_GET_ISYM (fh->fBigendian, | |
2490 | (debug_info->external_aux | |
2491 | + fh->iauxBase | |
2492 | + sh.index)); | |
2493 | procaddr = sh.value; | |
2494 | ||
2495 | if (new_sdx <= cur_sdx) | |
2496 | { | |
2497 | /* This should not happen either... FIXME. */ | |
2498 | complain (&aux_index_complaint, name); | |
2499 | new_sdx = cur_sdx + 1; /* Don't skip backward */ | |
2500 | } | |
2501 | ||
2502 | cur_sdx = new_sdx; | |
2503 | (*swap_sym_in) (cur_bfd, | |
2504 | ((char *) debug_info->external_sym | |
2505 | + ((fh->isymBase + cur_sdx - 1) | |
2506 | * external_sym_size)), | |
2507 | &sh); | |
2508 | if (sh.st != stEnd) | |
2509 | continue; | |
2510 | high = procaddr + sh.value; | |
2511 | if (high > pst->texthigh) | |
2512 | pst->texthigh = high; | |
2513 | continue; | |
2514 | ||
2515 | case stStatic: /* Variable */ | |
10373914 PS |
2516 | if (sh.sc == scData |
2517 | || sh.sc == scSData | |
2518 | || sh.sc == scRData | |
2519 | || sh.sc == scPData | |
2520 | || sh.sc == scXData) | |
72bba93b SG |
2521 | prim_record_minimal_symbol_and_info (name, sh.value, |
2522 | mst_file_data, NULL, | |
2523 | SECT_OFF_DATA, | |
2524 | objfile); | |
a2f1e2e5 | 2525 | else |
72bba93b SG |
2526 | prim_record_minimal_symbol_and_info (name, sh.value, |
2527 | mst_file_bss, NULL, | |
2528 | SECT_OFF_BSS, | |
2529 | objfile); | |
a2f1e2e5 ILT |
2530 | class = LOC_STATIC; |
2531 | break; | |
2532 | ||
2533 | case stTypedef:/* Typedef */ | |
2534 | /* Skip typedefs for forward declarations and opaque | |
db2302cb PS |
2535 | structs from alpha and mips cc. */ |
2536 | if (sh.iss == 0 || has_opaque_xref (fh, &sh)) | |
a2f1e2e5 ILT |
2537 | goto skip; |
2538 | class = LOC_TYPEDEF; | |
2539 | break; | |
2540 | ||
2541 | case stConstant: /* Constant decl */ | |
2542 | class = LOC_CONST; | |
2543 | break; | |
2544 | ||
2545 | case stUnion: | |
2546 | case stStruct: | |
2547 | case stEnum: | |
2548 | case stBlock: /* { }, str, un, enum*/ | |
2549 | /* Do not create a partial symbol for cc unnamed aggregates | |
2550 | and gcc empty aggregates. */ | |
2551 | if ((sh.sc == scInfo || sh.sc == scCommon) | |
2552 | && sh.iss != 0 | |
2553 | && sh.index != cur_sdx + 2) | |
2554 | { | |
2555 | ADD_PSYMBOL_TO_LIST (name, strlen (name), | |
2556 | STRUCT_NAMESPACE, LOC_TYPEDEF, | |
2557 | objfile->static_psymbols, | |
2558 | sh.value, | |
2559 | psymtab_language, objfile); | |
2560 | } | |
847d9775 PS |
2561 | handle_psymbol_enumerators (objfile, fh, sh.st); |
2562 | ||
a2f1e2e5 ILT |
2563 | /* Skip over the block */ |
2564 | new_sdx = sh.index; | |
2565 | if (new_sdx <= cur_sdx) | |
2566 | { | |
2567 | /* This happens with the Ultrix kernel. */ | |
2568 | complain (&block_index_complaint, name); | |
2569 | new_sdx = cur_sdx + 1; /* Don't skip backward */ | |
2570 | } | |
2571 | cur_sdx = new_sdx; | |
2572 | continue; | |
2573 | ||
2574 | case stFile: /* File headers */ | |
2575 | case stLabel: /* Labels */ | |
2576 | case stEnd: /* Ends of files */ | |
2577 | goto skip; | |
2578 | ||
2579 | case stLocal: /* Local variables */ | |
2580 | /* Normally these are skipped because we skip over | |
2581 | all blocks we see. However, these can occur | |
2582 | as visible symbols in a .h file that contains code. */ | |
2583 | goto skip; | |
2584 | ||
2585 | default: | |
2586 | /* Both complaints are valid: one gives symbol name, | |
2587 | the other the offending symbol type. */ | |
2588 | complain (&unknown_sym_complaint, name); | |
2589 | complain (&unknown_st_complaint, sh.st); | |
2590 | cur_sdx++; | |
2591 | continue; | |
2592 | } | |
2593 | /* Use this gdb symbol */ | |
2594 | ADD_PSYMBOL_TO_LIST (name, strlen (name), | |
2595 | VAR_NAMESPACE, class, | |
2596 | objfile->static_psymbols, sh.value, | |
2597 | psymtab_language, objfile); | |
2598 | skip: | |
2599 | cur_sdx++; /* Go to next file symbol */ | |
2600 | } | |
2601 | ||
2602 | /* Now do enter the external symbols. */ | |
2603 | ext_ptr = &extern_tab[fdr_to_pst[f_idx].globals_offset]; | |
2604 | cur_sdx = fdr_to_pst[f_idx].n_globals; | |
2605 | PST_PRIVATE (save_pst)->extern_count = cur_sdx; | |
2606 | PST_PRIVATE (save_pst)->extern_tab = ext_ptr; | |
2607 | for (; --cur_sdx >= 0; ext_ptr++) | |
2608 | { | |
2609 | enum address_class class; | |
2610 | SYMR *psh; | |
2611 | char *name; | |
2612 | ||
2613 | if (ext_ptr->ifd != f_idx) | |
2614 | abort (); | |
2615 | psh = &ext_ptr->asym; | |
2616 | ||
2617 | /* Do not add undefined symbols to the partial symbol table. */ | |
2618 | if (psh->sc == scUndefined || psh->sc == scNil) | |
2619 | continue; | |
2620 | ||
2621 | switch (psh->st) | |
2622 | { | |
2623 | case stNil: | |
2624 | /* These are generated for static symbols in .o files, | |
2625 | ignore them. */ | |
2626 | continue; | |
2627 | case stProc: | |
2628 | case stStaticProc: | |
db2302cb PS |
2629 | /* External procedure symbols have been entered |
2630 | into the minimal symbol table in pass 2 above. | |
2631 | Ignore them, as parse_external will ignore them too. */ | |
2632 | continue; | |
a2f1e2e5 ILT |
2633 | case stLabel: |
2634 | class = LOC_LABEL; | |
2635 | break; | |
2636 | default: | |
2637 | complain (&unknown_ext_complaint, | |
2638 | debug_info->ssext + psh->iss); | |
2639 | /* Fall through, pretend it's global. */ | |
2640 | case stGlobal: | |
2641 | class = LOC_STATIC; | |
2642 | break; | |
2643 | } | |
2644 | name = debug_info->ssext + psh->iss; | |
2645 | ADD_PSYMBOL_ADDR_TO_LIST (name, strlen (name), | |
2646 | VAR_NAMESPACE, class, | |
2647 | objfile->global_psymbols, | |
2648 | (CORE_ADDR) psh->value, | |
2649 | psymtab_language, objfile); | |
2650 | } | |
2651 | } | |
2652 | ||
2653 | /* Link pst to FDR. end_psymtab returns NULL if the psymtab was | |
2654 | empty and put on the free list. */ | |
2655 | fdr_to_pst[f_idx].pst = end_psymtab (save_pst, | |
2656 | psymtab_include_list, includes_used, | |
2657 | -1, save_pst->texthigh, | |
2658 | dependency_list, dependencies_used); | |
2659 | if (objfile->ei.entry_point >= save_pst->textlow && | |
2660 | objfile->ei.entry_point < save_pst->texthigh) | |
2661 | { | |
2662 | objfile->ei.entry_file_lowpc = save_pst->textlow; | |
2663 | objfile->ei.entry_file_highpc = save_pst->texthigh; | |
2664 | } | |
2665 | } | |
2666 | ||
2667 | /* Now scan the FDRs for dependencies */ | |
2668 | for (f_idx = 0; f_idx < hdr->ifdMax; f_idx++) | |
2669 | { | |
2670 | fh = f_idx + debug_info->fdr; | |
2671 | pst = fdr_to_pst[f_idx].pst; | |
2672 | ||
2673 | if (pst == (struct partial_symtab *)NULL) | |
2674 | continue; | |
2675 | ||
2676 | /* This should catch stabs-in-ecoff. */ | |
2677 | if (fh->crfd <= 1) | |
2678 | continue; | |
2679 | ||
2680 | /* Skip the first file indirect entry as it is a self dependency | |
2681 | for source files or a reverse .h -> .c dependency for header files. */ | |
2682 | pst->number_of_dependencies = 0; | |
2683 | pst->dependencies = | |
2684 | ((struct partial_symtab **) | |
2685 | obstack_alloc (&objfile->psymbol_obstack, | |
2686 | ((fh->crfd - 1) | |
2687 | * sizeof (struct partial_symtab *)))); | |
2688 | for (s_idx = 1; s_idx < fh->crfd; s_idx++) | |
2689 | { | |
2690 | RFDT rh; | |
2691 | ||
2692 | (*swap_rfd_in) (cur_bfd, | |
2693 | ((char *) debug_info->external_rfd | |
2694 | + (fh->rfdBase + s_idx) * external_rfd_size), | |
2695 | &rh); | |
2696 | if (rh < 0 || rh >= hdr->ifdMax) | |
2697 | { | |
2698 | complain (&bad_file_number_complaint, rh); | |
2699 | continue; | |
2700 | } | |
2701 | ||
2702 | /* Skip self dependencies of header files. */ | |
2703 | if (rh == f_idx) | |
2704 | continue; | |
2705 | ||
2706 | /* Do not add to dependeny list if psymtab was empty. */ | |
2707 | if (fdr_to_pst[rh].pst == (struct partial_symtab *)NULL) | |
2708 | continue; | |
2709 | pst->dependencies[pst->number_of_dependencies++] = fdr_to_pst[rh].pst; | |
2710 | } | |
2711 | } | |
10373914 PS |
2712 | |
2713 | /* Remove the dummy psymtab created for -O3 images above, if it is | |
2714 | still empty, to enable the detection of stripped executables. */ | |
2715 | if (objfile->psymtabs->next == NULL | |
2716 | && objfile->psymtabs->number_of_dependencies == 0 | |
2717 | && objfile->psymtabs->n_global_syms == 0 | |
2718 | && objfile->psymtabs->n_static_syms == 0) | |
2719 | objfile->psymtabs = NULL; | |
a2f1e2e5 ILT |
2720 | do_cleanups (old_chain); |
2721 | } | |
2722 | ||
847d9775 PS |
2723 | /* If the current psymbol has an enumerated type, we need to add |
2724 | all the the enum constants to the partial symbol table. */ | |
2725 | ||
2726 | static void | |
2727 | handle_psymbol_enumerators (objfile, fh, stype) | |
2728 | struct objfile *objfile; | |
2729 | FDR *fh; | |
2730 | int stype; | |
2731 | { | |
2732 | const bfd_size_type external_sym_size = debug_swap->external_sym_size; | |
2733 | void (* const swap_sym_in) PARAMS ((bfd *, PTR, SYMR *)) | |
2734 | = debug_swap->swap_sym_in; | |
2735 | char *ext_sym = ((char *) debug_info->external_sym | |
2736 | + ((fh->isymBase + cur_sdx + 1) * external_sym_size)); | |
2737 | SYMR sh; | |
2738 | TIR tir; | |
2739 | ||
2740 | switch (stype) | |
2741 | { | |
2742 | case stEnum: | |
2743 | break; | |
2744 | ||
2745 | case stBlock: | |
2746 | /* It is an enumerated type if the next symbol entry is a stMember | |
2747 | and its auxiliary index is indexNil or its auxiliary entry | |
2748 | is a plain btNil or btVoid. */ | |
2749 | (*swap_sym_in) (cur_bfd, ext_sym, &sh); | |
2750 | if (sh.st != stMember) | |
2751 | return; | |
2752 | ||
2753 | if (sh.index == indexNil) | |
2754 | break; | |
2755 | ecoff_swap_tir_in (fh->fBigendian, | |
2756 | &(debug_info->external_aux | |
2757 | + fh->iauxBase + sh.index)->a_ti, | |
2758 | &tir); | |
2759 | if ((tir.bt != btNil && tir.bt != btVoid) || tir.tq0 != tqNil) | |
2760 | return; | |
2761 | break; | |
2762 | ||
2763 | default: | |
2764 | return; | |
2765 | } | |
2766 | ||
2767 | for (;;) | |
2768 | { | |
2769 | char *name; | |
2770 | ||
2771 | (*swap_sym_in) (cur_bfd, ext_sym, &sh); | |
2772 | if (sh.st != stMember) | |
2773 | break; | |
2774 | name = debug_info->ss + cur_fdr->issBase + sh.iss; | |
2775 | ||
2776 | /* Note that the value doesn't matter for enum constants | |
2777 | in psymtabs, just in symtabs. */ | |
2778 | ADD_PSYMBOL_TO_LIST (name, strlen (name), | |
2779 | VAR_NAMESPACE, LOC_CONST, | |
2780 | objfile->static_psymbols, 0, | |
2781 | psymtab_language, objfile); | |
2782 | ext_sym += external_sym_size; | |
2783 | } | |
2784 | } | |
a2f1e2e5 ILT |
2785 | |
2786 | static char * | |
2787 | mdebug_next_symbol_text () | |
2788 | { | |
2789 | SYMR sh; | |
2790 | ||
2791 | cur_sdx++; | |
2792 | (*debug_swap->swap_sym_in) (cur_bfd, | |
2793 | ((char *) debug_info->external_sym | |
2794 | + ((cur_fdr->isymBase + cur_sdx) | |
2795 | * debug_swap->external_sym_size)), | |
2796 | &sh); | |
2797 | return debug_info->ss + cur_fdr->issBase + sh.iss; | |
2798 | } | |
2799 | ||
2800 | /* Ancillary function to psymtab_to_symtab(). Does all the work | |
2801 | for turning the partial symtab PST into a symtab, recurring | |
2802 | first on all dependent psymtabs. The argument FILENAME is | |
2803 | only passed so we can see in debug stack traces what file | |
2804 | is being read. | |
2805 | ||
2806 | This function has a split personality, based on whether the | |
2807 | symbol table contains ordinary ecoff symbols, or stabs-in-ecoff. | |
2808 | The flow of control and even the memory allocation differs. FIXME. */ | |
2809 | ||
2810 | static void | |
2811 | psymtab_to_symtab_1 (pst, filename) | |
2812 | struct partial_symtab *pst; | |
2813 | char *filename; | |
2814 | { | |
2815 | bfd_size_type external_sym_size; | |
2816 | bfd_size_type external_pdr_size; | |
2817 | void (*swap_sym_in) PARAMS ((bfd *, PTR, SYMR *)); | |
2818 | void (*swap_pdr_in) PARAMS ((bfd *, PTR, PDR *)); | |
2819 | int i; | |
2820 | struct symtab *st; | |
2821 | FDR *fh; | |
2822 | struct linetable *lines; | |
2823 | ||
2824 | if (pst->readin) | |
2825 | return; | |
2826 | pst->readin = 1; | |
2827 | ||
2828 | /* Read in all partial symbtabs on which this one is dependent. | |
2829 | NOTE that we do have circular dependencies, sigh. We solved | |
2830 | that by setting pst->readin before this point. */ | |
2831 | ||
2832 | for (i = 0; i < pst->number_of_dependencies; i++) | |
2833 | if (!pst->dependencies[i]->readin) | |
2834 | { | |
2835 | /* Inform about additional files to be read in. */ | |
2836 | if (info_verbose) | |
2837 | { | |
2838 | fputs_filtered (" ", gdb_stdout); | |
2839 | wrap_here (""); | |
2840 | fputs_filtered ("and ", gdb_stdout); | |
2841 | wrap_here (""); | |
2842 | printf_filtered ("%s...", | |
2843 | pst->dependencies[i]->filename); | |
2844 | wrap_here (""); /* Flush output */ | |
2845 | gdb_flush (gdb_stdout); | |
2846 | } | |
2847 | /* We only pass the filename for debug purposes */ | |
2848 | psymtab_to_symtab_1 (pst->dependencies[i], | |
2849 | pst->dependencies[i]->filename); | |
2850 | } | |
2851 | ||
2852 | /* Do nothing if this is a dummy psymtab. */ | |
2853 | ||
2854 | if (pst->n_global_syms == 0 && pst->n_static_syms == 0 | |
2855 | && pst->textlow == 0 && pst->texthigh == 0) | |
2856 | return; | |
2857 | ||
2858 | /* Now read the symbols for this symtab */ | |
2859 | ||
2860 | cur_bfd = CUR_BFD (pst); | |
2861 | debug_swap = DEBUG_SWAP (pst); | |
2862 | debug_info = DEBUG_INFO (pst); | |
2863 | pending_list = PENDING_LIST (pst); | |
2864 | external_sym_size = debug_swap->external_sym_size; | |
2865 | external_pdr_size = debug_swap->external_pdr_size; | |
2866 | swap_sym_in = debug_swap->swap_sym_in; | |
2867 | swap_pdr_in = debug_swap->swap_pdr_in; | |
2868 | current_objfile = pst->objfile; | |
2869 | cur_fd = FDR_IDX (pst); | |
2870 | fh = ((cur_fd == -1) | |
2871 | ? (FDR *) NULL | |
2872 | : debug_info->fdr + cur_fd); | |
2873 | cur_fdr = fh; | |
2874 | ||
2875 | /* See comment in parse_partial_symbols about the @stabs sentinel. */ | |
2876 | processing_gcc_compilation = 0; | |
2877 | if (fh != (FDR *) NULL && fh->csym >= 2) | |
2878 | { | |
2879 | SYMR sh; | |
2880 | ||
2881 | (*swap_sym_in) (cur_bfd, | |
2882 | ((char *) debug_info->external_sym | |
2883 | + (fh->isymBase + 1) * external_sym_size), | |
2884 | &sh); | |
2885 | if (STREQ (debug_info->ss + fh->issBase + sh.iss, | |
2886 | stabs_symbol)) | |
2887 | { | |
2888 | /* We indicate that this is a GCC compilation so that certain | |
2889 | features will be enabled in stabsread/dbxread. */ | |
2890 | processing_gcc_compilation = 2; | |
2891 | } | |
2892 | } | |
2893 | ||
2894 | if (processing_gcc_compilation != 0) | |
2895 | { | |
2896 | char *pdr_ptr; | |
2897 | char *pdr_end; | |
2898 | int first_pdr; | |
2899 | unsigned long first_off = 0; | |
2900 | ||
2901 | /* This symbol table contains stabs-in-ecoff entries. */ | |
2902 | ||
2903 | /* Parse local symbols first */ | |
2904 | ||
2905 | if (fh->csym <= 2) /* FIXME, this blows psymtab->symtab ptr */ | |
2906 | { | |
2907 | current_objfile = NULL; | |
2908 | return; | |
2909 | } | |
2910 | for (cur_sdx = 2; cur_sdx < fh->csym; cur_sdx++) | |
2911 | { | |
2912 | SYMR sh; | |
2913 | char *name; | |
2914 | CORE_ADDR valu; | |
2915 | ||
2916 | (*swap_sym_in) (cur_bfd, | |
2917 | (((char *) debug_info->external_sym) | |
2918 | + (fh->isymBase + cur_sdx) * external_sym_size), | |
2919 | &sh); | |
2920 | name = debug_info->ss + fh->issBase + sh.iss; | |
2921 | valu = sh.value; | |
2922 | if (ECOFF_IS_STAB (&sh)) | |
2923 | { | |
2924 | int type_code = ECOFF_UNMARK_STAB (sh.index); | |
ae5c71d6 PS |
2925 | |
2926 | /* We should never get non N_STAB symbols here, but they | |
2927 | should be harmless, so keep process_one_symbol from | |
2928 | complaining about them. */ | |
2929 | if (type_code & N_STAB) | |
2930 | { | |
2931 | process_one_symbol (type_code, 0, valu, name, | |
2932 | pst->section_offsets, pst->objfile); | |
2933 | } | |
a2f1e2e5 ILT |
2934 | if (type_code == N_FUN) |
2935 | { | |
2936 | /* Make up special symbol to contain | |
2937 | procedure specific info */ | |
2938 | struct mips_extra_func_info *e = | |
2939 | ((struct mips_extra_func_info *) | |
2940 | obstack_alloc (¤t_objfile->symbol_obstack, | |
2941 | sizeof (struct mips_extra_func_info))); | |
2942 | struct symbol *s = new_symbol (MIPS_EFI_SYMBOL_NAME); | |
2943 | SYMBOL_NAMESPACE (s) = LABEL_NAMESPACE; | |
2944 | SYMBOL_CLASS (s) = LOC_CONST; | |
2945 | SYMBOL_TYPE (s) = builtin_type_void; | |
2946 | SYMBOL_VALUE (s) = (long) e; | |
2947 | add_symbol_to_list (s, &local_symbols); | |
2948 | } | |
2949 | } | |
bb7cb982 | 2950 | else if (sh.st == stLabel) |
a2f1e2e5 | 2951 | { |
bb7cb982 JK |
2952 | if (sh.index == indexNil) |
2953 | { | |
2954 | /* This is what the gcc2_compiled and __gnu_compiled_* | |
2955 | show up as. So don't complain. */ | |
2956 | ; | |
2957 | } | |
2958 | else | |
2959 | /* Handle encoded stab line number. */ | |
2960 | record_line (current_subfile, sh.index, valu); | |
a2f1e2e5 | 2961 | } |
2fe3b329 PS |
2962 | else if (sh.st == stProc || sh.st == stStaticProc |
2963 | || sh.st == stStatic || sh.st == stEnd) | |
a2f1e2e5 ILT |
2964 | /* These are generated by gcc-2.x, do not complain */ |
2965 | ; | |
2966 | else | |
2967 | complain (&stab_unknown_complaint, name); | |
2968 | } | |
2969 | st = end_symtab (pst->texthigh, 0, 0, pst->objfile, SECT_OFF_TEXT); | |
2970 | end_stabs (); | |
2971 | ||
2972 | /* Sort the symbol table now, we are done adding symbols to it. | |
2973 | We must do this before parse_procedure calls lookup_symbol. */ | |
2974 | sort_symtab_syms (st); | |
2975 | ||
11d26982 PS |
2976 | /* There used to be a call to sort_blocks here, but this should not |
2977 | be necessary for stabs symtabs. And as sort_blocks modifies the | |
2978 | start address of the GLOBAL_BLOCK to the FIRST_LOCAL_BLOCK, | |
2979 | it did the wrong thing if the first procedure in a file was | |
2980 | generated via asm statements. */ | |
a2f1e2e5 ILT |
2981 | |
2982 | /* Fill in procedure info next. */ | |
2983 | first_pdr = 1; | |
2984 | pdr_ptr = ((char *) debug_info->external_pdr | |
2985 | + fh->ipdFirst * external_pdr_size); | |
2986 | pdr_end = pdr_ptr + fh->cpd * external_pdr_size; | |
2987 | for (; pdr_ptr < pdr_end; pdr_ptr += external_pdr_size) | |
2988 | { | |
2989 | PDR pr; | |
2990 | ||
2991 | (*swap_pdr_in) (cur_bfd, pdr_ptr, &pr); | |
2992 | if (first_pdr) | |
2993 | { | |
2994 | first_off = pr.adr; | |
2995 | first_pdr = 0; | |
2996 | } | |
72bba93b | 2997 | parse_procedure (&pr, st, first_off, pst->section_offsets); |
a2f1e2e5 ILT |
2998 | } |
2999 | } | |
3000 | else | |
3001 | { | |
3002 | /* This symbol table contains ordinary ecoff entries. */ | |
3003 | ||
3004 | /* FIXME: doesn't use pst->section_offsets. */ | |
3005 | ||
3006 | int f_max; | |
3007 | int maxlines; | |
3008 | EXTR *ext_ptr; | |
3009 | ||
3010 | /* How many symbols will we need */ | |
3011 | /* FIXME, this does not count enum values. */ | |
3012 | f_max = pst->n_global_syms + pst->n_static_syms; | |
3013 | if (fh == 0) | |
3014 | { | |
3015 | maxlines = 0; | |
3016 | st = new_symtab ("unknown", f_max, 0, pst->objfile); | |
3017 | } | |
3018 | else | |
3019 | { | |
3020 | f_max += fh->csym + fh->cpd; | |
3021 | maxlines = 2 * fh->cline; | |
3022 | st = new_symtab (pst->filename, 2 * f_max, maxlines, pst->objfile); | |
3023 | ||
3024 | /* The proper language was already determined when building | |
3025 | the psymtab, use it. */ | |
3026 | st->language = PST_PRIVATE (pst)->pst_language; | |
3027 | } | |
3028 | ||
3029 | psymtab_language = st->language; | |
3030 | ||
3031 | lines = LINETABLE (st); | |
3032 | ||
3033 | /* Get a new lexical context */ | |
3034 | ||
3035 | push_parse_stack (); | |
3036 | top_stack->cur_st = st; | |
3037 | top_stack->cur_block = BLOCKVECTOR_BLOCK (BLOCKVECTOR (st), | |
3038 | STATIC_BLOCK); | |
3039 | BLOCK_START (top_stack->cur_block) = fh ? fh->adr : 0; | |
3040 | BLOCK_END (top_stack->cur_block) = 0; | |
3041 | top_stack->blocktype = stFile; | |
3042 | top_stack->maxsyms = 2 * f_max; | |
3043 | top_stack->cur_type = 0; | |
3044 | top_stack->procadr = 0; | |
3045 | top_stack->numargs = 0; | |
3046 | ||
3047 | if (fh) | |
3048 | { | |
3049 | char *sym_ptr; | |
3050 | char *sym_end; | |
3051 | ||
3052 | /* Parse local symbols first */ | |
3053 | sym_ptr = ((char *) debug_info->external_sym | |
3054 | + fh->isymBase * external_sym_size); | |
3055 | sym_end = sym_ptr + fh->csym * external_sym_size; | |
3056 | while (sym_ptr < sym_end) | |
3057 | { | |
3058 | SYMR sh; | |
3059 | int c; | |
3060 | ||
3061 | (*swap_sym_in) (cur_bfd, sym_ptr, &sh); | |
3062 | c = parse_symbol (&sh, | |
3063 | debug_info->external_aux + fh->iauxBase, | |
72bba93b | 3064 | sym_ptr, fh->fBigendian, pst->section_offsets); |
a2f1e2e5 ILT |
3065 | sym_ptr += c * external_sym_size; |
3066 | } | |
3067 | ||
3068 | /* Linenumbers. At the end, check if we can save memory. | |
3069 | parse_lines has to look ahead an arbitrary number of PDR | |
3070 | structures, so we swap them all first. */ | |
3071 | if (fh->cpd > 0) | |
3072 | { | |
3073 | PDR *pr_block; | |
3074 | struct cleanup *old_chain; | |
3075 | char *pdr_ptr; | |
3076 | char *pdr_end; | |
3077 | PDR *pdr_in; | |
3078 | PDR *pdr_in_end; | |
3079 | ||
3080 | pr_block = (PDR *) xmalloc (fh->cpd * sizeof (PDR)); | |
3081 | ||
3082 | old_chain = make_cleanup (free, pr_block); | |
3083 | ||
3084 | pdr_ptr = ((char *) debug_info->external_pdr | |
3085 | + fh->ipdFirst * external_pdr_size); | |
3086 | pdr_end = pdr_ptr + fh->cpd * external_pdr_size; | |
3087 | pdr_in = pr_block; | |
3088 | for (; | |
3089 | pdr_ptr < pdr_end; | |
3090 | pdr_ptr += external_pdr_size, pdr_in++) | |
3091 | (*swap_pdr_in) (cur_bfd, pdr_ptr, pdr_in); | |
3092 | ||
72bba93b SG |
3093 | parse_lines (fh, pr_block, lines, maxlines, |
3094 | pst->section_offsets); | |
a2f1e2e5 ILT |
3095 | if (lines->nitems < fh->cline) |
3096 | lines = shrink_linetable (lines); | |
3097 | ||
3098 | /* Fill in procedure info next. */ | |
3099 | pdr_in = pr_block; | |
3100 | pdr_in_end = pdr_in + fh->cpd; | |
3101 | for (; pdr_in < pdr_in_end; pdr_in++) | |
72bba93b SG |
3102 | parse_procedure (pdr_in, 0, pr_block->adr, |
3103 | pst->section_offsets); | |
a2f1e2e5 ILT |
3104 | |
3105 | do_cleanups (old_chain); | |
3106 | } | |
3107 | } | |
3108 | ||
3109 | LINETABLE (st) = lines; | |
3110 | ||
3111 | /* .. and our share of externals. | |
3112 | XXX use the global list to speed up things here. how? | |
3113 | FIXME, Maybe quit once we have found the right number of ext's? */ | |
3114 | top_stack->cur_st = st; | |
3115 | top_stack->cur_block = BLOCKVECTOR_BLOCK (BLOCKVECTOR (top_stack->cur_st), | |
3116 | GLOBAL_BLOCK); | |
3117 | top_stack->blocktype = stFile; | |
3118 | top_stack->maxsyms | |
3119 | = (debug_info->symbolic_header.isymMax | |
3120 | + debug_info->symbolic_header.ipdMax | |
3121 | + debug_info->symbolic_header.iextMax); | |
3122 | ||
3123 | ext_ptr = PST_PRIVATE (pst)->extern_tab; | |
3124 | for (i = PST_PRIVATE (pst)->extern_count; --i >= 0; ext_ptr++) | |
db2302cb | 3125 | parse_external (ext_ptr, fh->fBigendian, pst->section_offsets); |
a2f1e2e5 ILT |
3126 | |
3127 | /* If there are undefined symbols, tell the user. | |
3128 | The alpha has an undefined symbol for every symbol that is | |
3129 | from a shared library, so tell the user only if verbose is on. */ | |
3130 | if (info_verbose && n_undef_symbols) | |
3131 | { | |
3132 | printf_filtered ("File %s contains %d unresolved references:", | |
3133 | st->filename, n_undef_symbols); | |
3134 | printf_filtered ("\n\t%4d variables\n\t%4d procedures\n\t%4d labels\n", | |
3135 | n_undef_vars, n_undef_procs, n_undef_labels); | |
3136 | n_undef_symbols = n_undef_labels = n_undef_vars = n_undef_procs = 0; | |
3137 | ||
3138 | } | |
3139 | pop_parse_stack (); | |
3140 | ||
72bba93b SG |
3141 | st->primary = 1; |
3142 | ||
a2f1e2e5 ILT |
3143 | /* Sort the symbol table now, we are done adding symbols to it.*/ |
3144 | sort_symtab_syms (st); | |
3145 | ||
3146 | sort_blocks (st); | |
3147 | } | |
3148 | ||
3149 | /* Now link the psymtab and the symtab. */ | |
3150 | pst->symtab = st; | |
3151 | ||
3152 | current_objfile = NULL; | |
3153 | } | |
3154 | \f | |
3155 | /* Ancillary parsing procedures. */ | |
3156 | ||
db2302cb PS |
3157 | /* Return 1 if the symbol pointed to by SH has a cross reference |
3158 | to an opaque aggregate type, else 0. */ | |
3159 | ||
3160 | static int | |
3161 | has_opaque_xref (fh, sh) | |
3162 | FDR *fh; | |
3163 | SYMR *sh; | |
3164 | { | |
3165 | TIR tir; | |
3166 | union aux_ext *ax; | |
3167 | RNDXR rn[1]; | |
3168 | unsigned int rf; | |
3169 | ||
3170 | if (sh->index == indexNil) | |
3171 | return 0; | |
3172 | ||
3173 | ax = debug_info->external_aux + fh->iauxBase + sh->index; | |
3174 | ecoff_swap_tir_in (fh->fBigendian, &ax->a_ti, &tir); | |
3175 | if (tir.bt != btStruct && tir.bt != btUnion && tir.bt != btEnum) | |
3176 | return 0; | |
3177 | ||
3178 | ax++; | |
3179 | ecoff_swap_rndx_in (fh->fBigendian, &ax->a_rndx, rn); | |
3180 | if (rn->rfd == 0xfff) | |
3181 | rf = AUX_GET_ISYM (fh->fBigendian, ax + 1); | |
3182 | else | |
3183 | rf = rn->rfd; | |
3184 | if (rf != -1) | |
3185 | return 0; | |
3186 | return 1; | |
3187 | } | |
3188 | ||
a2f1e2e5 ILT |
3189 | /* Lookup the type at relative index RN. Return it in TPP |
3190 | if found and in any event come up with its name PNAME. | |
3191 | BIGEND says whether aux symbols are big-endian or not (from fh->fBigendian). | |
3192 | Return value says how many aux symbols we ate. */ | |
3193 | ||
3194 | static int | |
3195 | cross_ref (fd, ax, tpp, type_code, pname, bigend, sym_name) | |
3196 | int fd; | |
3197 | union aux_ext *ax; | |
3198 | struct type **tpp; | |
3199 | enum type_code type_code; /* Use to alloc new type if none is found. */ | |
3200 | char **pname; | |
3201 | int bigend; | |
3202 | char *sym_name; | |
3203 | { | |
3204 | RNDXR rn[1]; | |
3205 | unsigned int rf; | |
3206 | int result = 1; | |
3207 | FDR *fh; | |
3208 | char *esh; | |
3209 | SYMR sh; | |
3210 | int xref_fd; | |
3211 | struct mdebug_pending *pend; | |
3212 | ||
3213 | *tpp = (struct type *)NULL; | |
3214 | ||
3215 | ecoff_swap_rndx_in (bigend, &ax->a_rndx, rn); | |
3216 | ||
3217 | /* Escape index means 'the next one' */ | |
3218 | if (rn->rfd == 0xfff) | |
3219 | { | |
3220 | result++; | |
3221 | rf = AUX_GET_ISYM (bigend, ax + 1); | |
3222 | } | |
3223 | else | |
3224 | { | |
3225 | rf = rn->rfd; | |
3226 | } | |
3227 | ||
3228 | /* mips cc uses a rf of -1 for opaque struct definitions. | |
3229 | Set TYPE_FLAG_STUB for these types so that check_stub_type will | |
3230 | resolve them if the struct gets defined in another compilation unit. */ | |
3231 | if (rf == -1) | |
3232 | { | |
3233 | *pname = "<undefined>"; | |
3234 | *tpp = init_type (type_code, 0, 0, (char *) NULL, current_objfile); | |
3235 | TYPE_FLAGS (*tpp) |= TYPE_FLAG_STUB; | |
3236 | return result; | |
3237 | } | |
3238 | ||
3239 | /* mips cc uses an escaped rn->index of 0 for struct return types | |
3240 | of procedures that were compiled without -g. These will always remain | |
3241 | undefined. */ | |
3242 | if (rn->rfd == 0xfff && rn->index == 0) | |
3243 | { | |
3244 | *pname = "<undefined>"; | |
3245 | return result; | |
3246 | } | |
3247 | ||
3248 | /* Find the relative file descriptor and the symbol in it. */ | |
3249 | fh = get_rfd (fd, rf); | |
3250 | xref_fd = fh - debug_info->fdr; | |
3251 | ||
3252 | if (rn->index >= fh->csym) | |
3253 | { | |
3254 | /* File indirect entry is corrupt. */ | |
3255 | *pname = "<illegal>"; | |
3256 | complain (&bad_rfd_entry_complaint, | |
3257 | sym_name, xref_fd, rn->index); | |
3258 | return result; | |
3259 | } | |
3260 | ||
3261 | /* If we have processed this symbol then we left a forwarding | |
3262 | pointer to the type in the pending list. If not, we`ll put | |
3263 | it in a list of pending types, to be processed later when | |
3264 | the file will be. In any event, we collect the name for the | |
3265 | type here. */ | |
3266 | ||
3267 | esh = ((char *) debug_info->external_sym | |
3268 | + ((fh->isymBase + rn->index) | |
3269 | * debug_swap->external_sym_size)); | |
3270 | (*debug_swap->swap_sym_in) (cur_bfd, esh, &sh); | |
3271 | ||
3272 | /* Make sure that this type of cross reference can be handled. */ | |
10373914 PS |
3273 | if ((sh.sc != scInfo |
3274 | || (sh.st != stBlock && sh.st != stTypedef | |
3275 | && sh.st != stStruct && sh.st != stUnion | |
3276 | && sh.st != stEnum)) | |
3277 | && (sh.sc != scCommon || sh.st != stBlock)) | |
a2f1e2e5 ILT |
3278 | { |
3279 | /* File indirect entry is corrupt. */ | |
3280 | *pname = "<illegal>"; | |
3281 | complain (&bad_rfd_entry_complaint, | |
3282 | sym_name, xref_fd, rn->index); | |
3283 | return result; | |
3284 | } | |
3285 | ||
3286 | *pname = debug_info->ss + fh->issBase + sh.iss; | |
3287 | ||
3288 | pend = is_pending_symbol (fh, esh); | |
3289 | if (pend) | |
3290 | *tpp = pend->t; | |
3291 | else | |
3292 | { | |
3293 | /* We have not yet seen this type. */ | |
3294 | ||
3295 | if (sh.iss == 0 && sh.st == stTypedef) | |
3296 | { | |
3297 | TIR tir; | |
3298 | ||
3299 | /* alpha cc puts out a stTypedef with a sh.iss of zero for | |
3300 | two cases: | |
3301 | a) forward declarations of structs/unions/enums which are not | |
3302 | defined in this compilation unit. | |
3303 | For these the type will be void. This is a bad design decision | |
3304 | as cross referencing across compilation units is impossible | |
3305 | due to the missing name. | |
3306 | b) forward declarations of structs/unions/enums which are defined | |
3307 | later in this file or in another file in the same compilation | |
3308 | unit. Simply cross reference those again to get the | |
3309 | true type. | |
3310 | The forward references are not entered in the pending list and | |
3311 | in the symbol table. */ | |
3312 | ||
3313 | ecoff_swap_tir_in (bigend, | |
3314 | &(debug_info->external_aux | |
3315 | + fh->iauxBase + sh.index)->a_ti, | |
3316 | &tir); | |
3317 | if (tir.tq0 != tqNil) | |
3318 | complain (&illegal_forward_tq0_complaint, sym_name); | |
3319 | switch (tir.bt) | |
3320 | { | |
3321 | case btVoid: | |
3322 | *tpp = init_type (type_code, 0, 0, (char *) NULL, | |
3323 | current_objfile); | |
3324 | *pname = "<undefined>"; | |
3325 | break; | |
3326 | ||
3327 | case btStruct: | |
3328 | case btUnion: | |
3329 | case btEnum: | |
3330 | cross_ref (xref_fd, | |
3331 | (debug_info->external_aux | |
3332 | + fh->iauxBase + sh.index + 1), | |
3333 | tpp, type_code, pname, | |
3334 | fh->fBigendian, sym_name); | |
3335 | break; | |
3336 | ||
3337 | default: | |
3338 | complain (&illegal_forward_bt_complaint, tir.bt, sym_name); | |
3339 | *tpp = init_type (type_code, 0, 0, (char *) NULL, | |
3340 | current_objfile); | |
3341 | break; | |
3342 | } | |
3343 | return result; | |
3344 | } | |
3345 | else if (sh.st == stTypedef) | |
3346 | { | |
3347 | /* Parse the type for a normal typedef. This might recursively call | |
3348 | cross_ref till we get a non typedef'ed type. | |
3349 | FIXME: This is not correct behaviour, but gdb currently | |
3350 | cannot handle typedefs without type copying. But type copying is | |
3351 | impossible as we might have mutual forward references between | |
3352 | two files and the copied type would not get filled in when | |
3353 | we later parse its definition. */ | |
3354 | *tpp = parse_type (xref_fd, | |
3355 | debug_info->external_aux + fh->iauxBase, | |
3356 | sh.index, | |
3357 | (int *)NULL, | |
3358 | fh->fBigendian, | |
3359 | debug_info->ss + fh->issBase + sh.iss); | |
3360 | } | |
3361 | else | |
3362 | { | |
3363 | /* Cross reference to a struct/union/enum which is defined | |
3364 | in another file in the same compilation unit but that file | |
3365 | has not been parsed yet. | |
3366 | Initialize the type only, it will be filled in when | |
3367 | it's definition is parsed. */ | |
3368 | *tpp = init_type (type_code, 0, 0, (char *) NULL, current_objfile); | |
3369 | } | |
3370 | add_pending (fh, esh, *tpp); | |
3371 | } | |
3372 | ||
3373 | /* We used one auxent normally, two if we got a "next one" rf. */ | |
3374 | return result; | |
3375 | } | |
3376 | ||
3377 | ||
3378 | /* Quick&dirty lookup procedure, to avoid the MI ones that require | |
3379 | keeping the symtab sorted */ | |
3380 | ||
3381 | static struct symbol * | |
3382 | mylookup_symbol (name, block, namespace, class) | |
3383 | char *name; | |
3384 | register struct block *block; | |
3385 | enum namespace namespace; | |
3386 | enum address_class class; | |
3387 | { | |
3388 | register int bot, top, inc; | |
3389 | register struct symbol *sym; | |
3390 | ||
3391 | bot = 0; | |
3392 | top = BLOCK_NSYMS (block); | |
3393 | inc = name[0]; | |
3394 | while (bot < top) | |
3395 | { | |
3396 | sym = BLOCK_SYM (block, bot); | |
3397 | if (SYMBOL_NAME (sym)[0] == inc | |
3398 | && SYMBOL_NAMESPACE (sym) == namespace | |
3399 | && SYMBOL_CLASS (sym) == class | |
3400 | && strcmp (SYMBOL_NAME (sym), name) == 0) | |
3401 | return sym; | |
3402 | bot++; | |
3403 | } | |
3404 | block = BLOCK_SUPERBLOCK (block); | |
3405 | if (block) | |
3406 | return mylookup_symbol (name, block, namespace, class); | |
3407 | return 0; | |
3408 | } | |
3409 | ||
3410 | ||
3411 | /* Add a new symbol S to a block B. | |
3412 | Infrequently, we will need to reallocate the block to make it bigger. | |
3413 | We only detect this case when adding to top_stack->cur_block, since | |
3414 | that's the only time we know how big the block is. FIXME. */ | |
3415 | ||
3416 | static void | |
3417 | add_symbol (s, b) | |
3418 | struct symbol *s; | |
3419 | struct block *b; | |
3420 | { | |
3421 | int nsyms = BLOCK_NSYMS (b)++; | |
3422 | struct block *origb; | |
3423 | struct parse_stack *stackp; | |
3424 | ||
3425 | if (b == top_stack->cur_block && | |
3426 | nsyms >= top_stack->maxsyms) | |
3427 | { | |
3428 | complain (&block_overflow_complaint, SYMBOL_NAME (s)); | |
3429 | /* In this case shrink_block is actually grow_block, since | |
3430 | BLOCK_NSYMS(b) is larger than its current size. */ | |
3431 | origb = b; | |
3432 | b = shrink_block (top_stack->cur_block, top_stack->cur_st); | |
3433 | ||
3434 | /* Now run through the stack replacing pointers to the | |
3435 | original block. shrink_block has already done this | |
3436 | for the blockvector and BLOCK_FUNCTION. */ | |
3437 | for (stackp = top_stack; stackp; stackp = stackp->next) | |
3438 | { | |
3439 | if (stackp->cur_block == origb) | |
3440 | { | |
3441 | stackp->cur_block = b; | |
3442 | stackp->maxsyms = BLOCK_NSYMS (b); | |
3443 | } | |
3444 | } | |
3445 | } | |
3446 | BLOCK_SYM (b, nsyms) = s; | |
3447 | } | |
3448 | ||
3449 | /* Add a new block B to a symtab S */ | |
3450 | ||
3451 | static void | |
3452 | add_block (b, s) | |
3453 | struct block *b; | |
3454 | struct symtab *s; | |
3455 | { | |
3456 | struct blockvector *bv = BLOCKVECTOR (s); | |
3457 | ||
3458 | bv = (struct blockvector *) xrealloc ((PTR) bv, | |
3459 | (sizeof (struct blockvector) | |
3460 | + BLOCKVECTOR_NBLOCKS (bv) | |
3461 | * sizeof (bv->block))); | |
3462 | if (bv != BLOCKVECTOR (s)) | |
3463 | BLOCKVECTOR (s) = bv; | |
3464 | ||
3465 | BLOCKVECTOR_BLOCK (bv, BLOCKVECTOR_NBLOCKS (bv)++) = b; | |
3466 | } | |
3467 | ||
3468 | /* Add a new linenumber entry (LINENO,ADR) to a linevector LT. | |
3469 | MIPS' linenumber encoding might need more than one byte | |
3470 | to describe it, LAST is used to detect these continuation lines. | |
3471 | ||
3472 | Combining lines with the same line number seems like a bad idea. | |
3473 | E.g: There could be a line number entry with the same line number after the | |
3474 | prologue and GDB should not ignore it (this is a better way to find | |
3475 | a prologue than mips_skip_prologue). | |
3476 | But due to the compressed line table format there are line number entries | |
3477 | for the same line which are needed to bridge the gap to the next | |
3478 | line number entry. These entries have a bogus address info with them | |
3479 | and we are unable to tell them from intended duplicate line number | |
3480 | entries. | |
3481 | This is another reason why -ggdb debugging format is preferable. */ | |
3482 | ||
3483 | static int | |
3484 | add_line (lt, lineno, adr, last) | |
3485 | struct linetable *lt; | |
3486 | int lineno; | |
3487 | CORE_ADDR adr; | |
3488 | int last; | |
3489 | { | |
9d51b3c5 PS |
3490 | /* DEC c89 sometimes produces zero linenos which confuse gdb. |
3491 | Change them to something sensible. */ | |
3492 | if (lineno == 0) | |
3493 | lineno = 1; | |
a2f1e2e5 ILT |
3494 | if (last == 0) |
3495 | last = -2; /* make sure we record first line */ | |
3496 | ||
3497 | if (last == lineno) /* skip continuation lines */ | |
3498 | return lineno; | |
3499 | ||
3500 | lt->item[lt->nitems].line = lineno; | |
3501 | lt->item[lt->nitems++].pc = adr << 2; | |
3502 | return lineno; | |
3503 | } | |
3504 | \f | |
3505 | /* Sorting and reordering procedures */ | |
3506 | ||
3507 | /* Blocks with a smaller low bound should come first */ | |
3508 | ||
3509 | static int | |
3510 | compare_blocks (arg1, arg2) | |
3511 | const PTR arg1; | |
3512 | const PTR arg2; | |
3513 | { | |
3514 | register int addr_diff; | |
3515 | struct block **b1 = (struct block **) arg1; | |
3516 | struct block **b2 = (struct block **) arg2; | |
3517 | ||
3518 | addr_diff = (BLOCK_START ((*b1))) - (BLOCK_START ((*b2))); | |
3519 | if (addr_diff == 0) | |
3520 | return (BLOCK_END ((*b2))) - (BLOCK_END ((*b1))); | |
3521 | return addr_diff; | |
3522 | } | |
3523 | ||
3524 | /* Sort the blocks of a symtab S. | |
3525 | Reorder the blocks in the blockvector by code-address, | |
3526 | as required by some MI search routines */ | |
3527 | ||
3528 | static void | |
3529 | sort_blocks (s) | |
3530 | struct symtab *s; | |
3531 | { | |
3532 | struct blockvector *bv = BLOCKVECTOR (s); | |
3533 | ||
3534 | if (BLOCKVECTOR_NBLOCKS (bv) <= 2) | |
3535 | { | |
3536 | /* Cosmetic */ | |
3537 | if (BLOCK_END (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK)) == 0) | |
3538 | BLOCK_START (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK)) = 0; | |
3539 | if (BLOCK_END (BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK)) == 0) | |
3540 | BLOCK_START (BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK)) = 0; | |
3541 | return; | |
3542 | } | |
3543 | /* | |
3544 | * This is very unfortunate: normally all functions are compiled in | |
3545 | * the order they are found, but if the file is compiled -O3 things | |
3546 | * are very different. It would be nice to find a reliable test | |
3547 | * to detect -O3 images in advance. | |
3548 | */ | |
3549 | if (BLOCKVECTOR_NBLOCKS (bv) > 3) | |
3550 | qsort (&BLOCKVECTOR_BLOCK (bv, FIRST_LOCAL_BLOCK), | |
3551 | BLOCKVECTOR_NBLOCKS (bv) - FIRST_LOCAL_BLOCK, | |
3552 | sizeof (struct block *), | |
3553 | compare_blocks); | |
3554 | ||
3555 | { | |
3556 | register CORE_ADDR high = 0; | |
3557 | register int i, j = BLOCKVECTOR_NBLOCKS (bv); | |
3558 | ||
3559 | for (i = FIRST_LOCAL_BLOCK; i < j; i++) | |
3560 | if (high < BLOCK_END (BLOCKVECTOR_BLOCK (bv, i))) | |
3561 | high = BLOCK_END (BLOCKVECTOR_BLOCK (bv, i)); | |
3562 | BLOCK_END (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK)) = high; | |
3563 | } | |
3564 | ||
3565 | BLOCK_START (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK)) = | |
3566 | BLOCK_START (BLOCKVECTOR_BLOCK (bv, FIRST_LOCAL_BLOCK)); | |
3567 | ||
3568 | BLOCK_START (BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK)) = | |
3569 | BLOCK_START (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK)); | |
3570 | BLOCK_END (BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK)) = | |
3571 | BLOCK_END (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK)); | |
3572 | } | |
3573 | \f | |
3574 | ||
3575 | /* Constructor/restructor/destructor procedures */ | |
3576 | ||
3577 | /* Allocate a new symtab for NAME. Needs an estimate of how many symbols | |
3578 | MAXSYMS and linenumbers MAXLINES we'll put in it */ | |
3579 | ||
3580 | static struct symtab * | |
3581 | new_symtab (name, maxsyms, maxlines, objfile) | |
3582 | char *name; | |
3583 | int maxsyms; | |
3584 | int maxlines; | |
3585 | struct objfile *objfile; | |
3586 | { | |
3587 | struct symtab *s = allocate_symtab (name, objfile); | |
3588 | ||
3589 | LINETABLE (s) = new_linetable (maxlines); | |
3590 | ||
3591 | /* All symtabs must have at least two blocks */ | |
3592 | BLOCKVECTOR (s) = new_bvect (2); | |
3593 | BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), GLOBAL_BLOCK) = new_block (maxsyms); | |
3594 | BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), STATIC_BLOCK) = new_block (maxsyms); | |
3595 | BLOCK_SUPERBLOCK (BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), STATIC_BLOCK)) = | |
3596 | BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), GLOBAL_BLOCK); | |
3597 | ||
3598 | s->free_code = free_linetable; | |
3599 | ||
3600 | return (s); | |
3601 | } | |
3602 | ||
3603 | /* Allocate a new partial_symtab NAME */ | |
3604 | ||
3605 | static struct partial_symtab * | |
847d9775 | 3606 | new_psymtab (name, objfile, section_offsets) |
a2f1e2e5 ILT |
3607 | char *name; |
3608 | struct objfile *objfile; | |
847d9775 | 3609 | struct section_offsets *section_offsets; |
a2f1e2e5 ILT |
3610 | { |
3611 | struct partial_symtab *psymtab; | |
3612 | ||
3613 | psymtab = allocate_psymtab (name, objfile); | |
847d9775 | 3614 | psymtab->section_offsets = section_offsets; |
a2f1e2e5 ILT |
3615 | |
3616 | /* Keep a backpointer to the file's symbols */ | |
3617 | ||
3618 | psymtab->read_symtab_private = ((char *) | |
3619 | obstack_alloc (&objfile->psymbol_obstack, | |
3620 | sizeof (struct symloc))); | |
3621 | memset ((PTR) psymtab->read_symtab_private, 0, sizeof (struct symloc)); | |
3622 | CUR_BFD (psymtab) = cur_bfd; | |
3623 | DEBUG_SWAP (psymtab) = debug_swap; | |
3624 | DEBUG_INFO (psymtab) = debug_info; | |
3625 | PENDING_LIST (psymtab) = pending_list; | |
3626 | ||
3627 | /* The way to turn this into a symtab is to call... */ | |
3628 | psymtab->read_symtab = mdebug_psymtab_to_symtab; | |
3629 | return (psymtab); | |
3630 | } | |
3631 | ||
3632 | ||
3633 | /* Allocate a linetable array of the given SIZE. Since the struct | |
3634 | already includes one item, we subtract one when calculating the | |
3635 | proper size to allocate. */ | |
3636 | ||
3637 | static struct linetable * | |
3638 | new_linetable (size) | |
3639 | int size; | |
3640 | { | |
3641 | struct linetable *l; | |
3642 | ||
3643 | size = (size - 1) * sizeof (l->item) + sizeof (struct linetable); | |
3644 | l = (struct linetable *) xmalloc (size); | |
3645 | l->nitems = 0; | |
3646 | return l; | |
3647 | } | |
3648 | ||
3649 | /* Oops, too big. Shrink it. This was important with the 2.4 linetables, | |
3650 | I am not so sure about the 3.4 ones. | |
3651 | ||
3652 | Since the struct linetable already includes one item, we subtract one when | |
3653 | calculating the proper size to allocate. */ | |
3654 | ||
3655 | static struct linetable * | |
3656 | shrink_linetable (lt) | |
3657 | struct linetable *lt; | |
3658 | { | |
3659 | ||
3660 | return (struct linetable *) xrealloc ((PTR) lt, | |
3661 | (sizeof (struct linetable) | |
3662 | + ((lt->nitems - 1) | |
3663 | * sizeof (lt->item)))); | |
3664 | } | |
3665 | ||
3666 | /* Allocate and zero a new blockvector of NBLOCKS blocks. */ | |
3667 | ||
3668 | static struct blockvector * | |
3669 | new_bvect (nblocks) | |
3670 | int nblocks; | |
3671 | { | |
3672 | struct blockvector *bv; | |
3673 | int size; | |
3674 | ||
3675 | size = sizeof (struct blockvector) + nblocks * sizeof (struct block *); | |
3676 | bv = (struct blockvector *) xzalloc (size); | |
3677 | ||
3678 | BLOCKVECTOR_NBLOCKS (bv) = nblocks; | |
3679 | ||
3680 | return bv; | |
3681 | } | |
3682 | ||
3683 | /* Allocate and zero a new block of MAXSYMS symbols */ | |
3684 | ||
3685 | static struct block * | |
3686 | new_block (maxsyms) | |
3687 | int maxsyms; | |
3688 | { | |
3689 | int size = sizeof (struct block) + (maxsyms - 1) * sizeof (struct symbol *); | |
3690 | ||
3691 | return (struct block *) xzalloc (size); | |
3692 | } | |
3693 | ||
3694 | /* Ooops, too big. Shrink block B in symtab S to its minimal size. | |
3695 | Shrink_block can also be used by add_symbol to grow a block. */ | |
3696 | ||
3697 | static struct block * | |
3698 | shrink_block (b, s) | |
3699 | struct block *b; | |
3700 | struct symtab *s; | |
3701 | { | |
3702 | struct block *new; | |
3703 | struct blockvector *bv = BLOCKVECTOR (s); | |
3704 | int i; | |
3705 | ||
3706 | /* Just reallocate it and fix references to the old one */ | |
3707 | ||
3708 | new = (struct block *) xrealloc ((PTR) b, | |
3709 | (sizeof (struct block) | |
3710 | + ((BLOCK_NSYMS (b) - 1) | |
3711 | * sizeof (struct symbol *)))); | |
3712 | ||
3713 | /* Should chase pointers to old one. Fortunately, that`s just | |
3714 | the block`s function and inferior blocks */ | |
3715 | if (BLOCK_FUNCTION (new) && SYMBOL_BLOCK_VALUE (BLOCK_FUNCTION (new)) == b) | |
3716 | SYMBOL_BLOCK_VALUE (BLOCK_FUNCTION (new)) = new; | |
3717 | for (i = 0; i < BLOCKVECTOR_NBLOCKS (bv); i++) | |
3718 | if (BLOCKVECTOR_BLOCK (bv, i) == b) | |
3719 | BLOCKVECTOR_BLOCK (bv, i) = new; | |
3720 | else if (BLOCK_SUPERBLOCK (BLOCKVECTOR_BLOCK (bv, i)) == b) | |
3721 | BLOCK_SUPERBLOCK (BLOCKVECTOR_BLOCK (bv, i)) = new; | |
3722 | return new; | |
3723 | } | |
3724 | ||
3725 | /* Create a new symbol with printname NAME */ | |
3726 | ||
3727 | static struct symbol * | |
3728 | new_symbol (name) | |
3729 | char *name; | |
3730 | { | |
3731 | struct symbol *s = ((struct symbol *) | |
3732 | obstack_alloc (¤t_objfile->symbol_obstack, | |
3733 | sizeof (struct symbol))); | |
3734 | ||
3735 | memset ((PTR) s, 0, sizeof (*s)); | |
3736 | SYMBOL_NAME (s) = name; | |
3737 | SYMBOL_LANGUAGE (s) = psymtab_language; | |
3738 | SYMBOL_INIT_DEMANGLED_NAME (s, ¤t_objfile->symbol_obstack); | |
3739 | return s; | |
3740 | } | |
3741 | ||
3742 | /* Create a new type with printname NAME */ | |
3743 | ||
3744 | static struct type * | |
3745 | new_type (name) | |
3746 | char *name; | |
3747 | { | |
3748 | struct type *t; | |
3749 | ||
3750 | t = alloc_type (current_objfile); | |
3751 | TYPE_NAME (t) = name; | |
3752 | TYPE_CPLUS_SPECIFIC (t) = (struct cplus_struct_type *) &cplus_struct_default; | |
3753 | return t; | |
3754 | } | |
3755 | \f | |
3756 | /* Read ECOFF debugging information from a BFD section. This is | |
3757 | called from elfread.c. It parses the section into a | |
3758 | ecoff_debug_info struct, and then lets the rest of the file handle | |
3759 | it as normal. */ | |
3760 | ||
3761 | void | |
3762 | elfmdebug_build_psymtabs (objfile, swap, sec, section_offsets) | |
3763 | struct objfile *objfile; | |
3764 | const struct ecoff_debug_swap *swap; | |
3765 | asection *sec; | |
3766 | struct section_offsets *section_offsets; | |
3767 | { | |
3768 | bfd *abfd = objfile->obfd; | |
3769 | char *buf; | |
3770 | struct ecoff_debug_info *info; | |
3771 | ||
3772 | buf = alloca (swap->external_hdr_size); | |
fad466eb SS |
3773 | if (!bfd_get_section_contents (abfd, sec, buf, (file_ptr) 0, |
3774 | swap->external_hdr_size)) | |
a2f1e2e5 ILT |
3775 | perror_with_name (bfd_get_filename (abfd)); |
3776 | ||
3777 | info = ((struct ecoff_debug_info *) | |
3778 | obstack_alloc (&objfile->psymbol_obstack, | |
3779 | sizeof (struct ecoff_debug_info))); | |
3780 | ||
3781 | (*swap->swap_hdr_in) (abfd, buf, &info->symbolic_header); | |
3782 | ||
3783 | /* The offsets in symbolic_header are file offsets, not section | |
3784 | offsets. Strangely, on Irix 5 the information is not entirely | |
3785 | within the .mdebug section. There are parts of an executable | |
3786 | file which are not within any ELF section at all. This means | |
3787 | that we must read the information using bfd_read. */ | |
3788 | ||
3789 | #define READ(ptr, count, off, size, type) \ | |
3790 | do \ | |
3791 | { \ | |
3792 | if (info->symbolic_header.count == 0) \ | |
3793 | info->ptr = (type) NULL; \ | |
3794 | else \ | |
3795 | { \ | |
3796 | info->ptr = ((type) \ | |
3797 | obstack_alloc (&objfile->psymbol_obstack, \ | |
3798 | (info->symbolic_header.count \ | |
3799 | * size))); \ | |
3800 | if (bfd_seek (abfd, info->symbolic_header.off, SEEK_SET) < 0 \ | |
3801 | || (bfd_read ((PTR) info->ptr, size, \ | |
3802 | info->symbolic_header.count, abfd) \ | |
3803 | != info->symbolic_header.count * size)) \ | |
3804 | perror_with_name (bfd_get_filename (abfd)); \ | |
3805 | } \ | |
3806 | } \ | |
3807 | while (0) | |
3808 | ||
3809 | READ (line, cbLine, cbLineOffset, sizeof (unsigned char), unsigned char *); | |
3810 | READ (external_dnr, idnMax, cbDnOffset, swap->external_dnr_size, PTR); | |
3811 | READ (external_pdr, ipdMax, cbPdOffset, swap->external_pdr_size, PTR); | |
3812 | READ (external_sym, isymMax, cbSymOffset, swap->external_sym_size, PTR); | |
3813 | READ (external_opt, ioptMax, cbOptOffset, swap->external_opt_size, PTR); | |
3814 | READ (external_aux, iauxMax, cbAuxOffset, sizeof (union aux_ext), | |
3815 | union aux_ext *); | |
3816 | READ (ss, issMax, cbSsOffset, sizeof (char), char *); | |
3817 | READ (ssext, issExtMax, cbSsExtOffset, sizeof (char), char *); | |
3818 | READ (external_fdr, ifdMax, cbFdOffset, swap->external_fdr_size, PTR); | |
3819 | READ (external_rfd, crfd, cbRfdOffset, swap->external_rfd_size, PTR); | |
3820 | READ (external_ext, iextMax, cbExtOffset, swap->external_ext_size, PTR); | |
3821 | ||
3822 | #undef READ | |
3823 | ||
3824 | info->fdr = NULL; | |
3825 | ||
3826 | mdebug_build_psymtabs (objfile, swap, info, section_offsets); | |
3827 | } | |
3828 | \f | |
3829 | ||
3830 | /* Things used for calling functions in the inferior. | |
3831 | These functions are exported to our companion | |
3832 | mips-tdep.c file and are here because they play | |
3833 | with the symbol-table explicitly. */ | |
3834 | ||
3835 | /* Sigtramp: make sure we have all the necessary information | |
3836 | about the signal trampoline code. Since the official code | |
3837 | from MIPS does not do so, we make up that information ourselves. | |
3838 | If they fix the library (unlikely) this code will neutralize itself. */ | |
3839 | ||
3840 | /* FIXME: This function is called only by mips-tdep.c. It needs to be | |
3841 | here because it calls functions defined in this file, but perhaps | |
3842 | this could be handled in a better way. */ | |
3843 | ||
3844 | void | |
3845 | fixup_sigtramp () | |
3846 | { | |
3847 | struct symbol *s; | |
3848 | struct symtab *st; | |
3849 | struct block *b, *b0 = NULL; | |
3850 | ||
3851 | sigtramp_address = -1; | |
3852 | ||
3853 | /* We have to handle the following cases here: | |
3854 | a) The Mips library has a sigtramp label within sigvec. | |
3855 | b) Irix has a _sigtramp which we want to use, but it also has sigvec. */ | |
3856 | s = lookup_symbol ("sigvec", 0, VAR_NAMESPACE, 0, NULL); | |
3857 | if (s != 0) | |
3858 | { | |
3859 | b0 = SYMBOL_BLOCK_VALUE (s); | |
3860 | s = lookup_symbol ("sigtramp", b0, VAR_NAMESPACE, 0, NULL); | |
3861 | } | |
3862 | if (s == 0) | |
3863 | { | |
3864 | /* No sigvec or no sigtramp inside sigvec, try _sigtramp. */ | |
3865 | s = lookup_symbol ("_sigtramp", 0, VAR_NAMESPACE, 0, NULL); | |
3866 | } | |
3867 | ||
3868 | /* But maybe this program uses its own version of sigvec */ | |
3869 | if (s == 0) | |
3870 | return; | |
3871 | ||
3872 | /* Did we or MIPSco fix the library ? */ | |
3873 | if (SYMBOL_CLASS (s) == LOC_BLOCK) | |
3874 | { | |
3875 | sigtramp_address = BLOCK_START (SYMBOL_BLOCK_VALUE (s)); | |
3876 | sigtramp_end = BLOCK_END (SYMBOL_BLOCK_VALUE (s)); | |
3877 | return; | |
3878 | } | |
3879 | ||
3880 | sigtramp_address = SYMBOL_VALUE (s); | |
3881 | sigtramp_end = sigtramp_address + 0x88; /* black magic */ | |
3882 | ||
3883 | /* But what symtab does it live in ? */ | |
3884 | st = find_pc_symtab (SYMBOL_VALUE (s)); | |
3885 | ||
3886 | /* | |
3887 | * Ok, there goes the fix: turn it into a procedure, with all the | |
3888 | * needed info. Note we make it a nested procedure of sigvec, | |
3889 | * which is the way the (assembly) code is actually written. | |
3890 | */ | |
3891 | SYMBOL_NAMESPACE (s) = VAR_NAMESPACE; | |
3892 | SYMBOL_CLASS (s) = LOC_BLOCK; | |
3893 | SYMBOL_TYPE (s) = init_type (TYPE_CODE_FUNC, 4, 0, (char *) NULL, | |
3894 | st->objfile); | |
3895 | TYPE_TARGET_TYPE (SYMBOL_TYPE (s)) = builtin_type_void; | |
3896 | ||
3897 | /* Need a block to allocate MIPS_EFI_SYMBOL_NAME in */ | |
3898 | b = new_block (1); | |
3899 | SYMBOL_BLOCK_VALUE (s) = b; | |
3900 | BLOCK_START (b) = sigtramp_address; | |
3901 | BLOCK_END (b) = sigtramp_end; | |
3902 | BLOCK_FUNCTION (b) = s; | |
3903 | BLOCK_SUPERBLOCK (b) = BLOCK_SUPERBLOCK (b0); | |
3904 | add_block (b, st); | |
3905 | sort_blocks (st); | |
3906 | ||
3907 | /* Make a MIPS_EFI_SYMBOL_NAME entry for it */ | |
3908 | { | |
3909 | struct mips_extra_func_info *e = | |
3910 | ((struct mips_extra_func_info *) | |
3911 | xzalloc (sizeof (struct mips_extra_func_info))); | |
3912 | ||
3913 | e->numargs = 0; /* the kernel thinks otherwise */ | |
0434c1a0 | 3914 | e->pdr.frameoffset = 32; |
a2f1e2e5 | 3915 | e->pdr.framereg = SP_REGNUM; |
0434c1a0 PS |
3916 | /* Note that setting pcreg is no longer strictly necessary as |
3917 | mips_frame_saved_pc is now aware of signal handler frames. */ | |
a2f1e2e5 ILT |
3918 | e->pdr.pcreg = PC_REGNUM; |
3919 | e->pdr.regmask = -2; | |
0434c1a0 PS |
3920 | /* Offset to saved r31, in the sigtramp case the saved registers |
3921 | are above the frame in the sigcontext. | |
3922 | We have 4 alignment bytes, 12 bytes for onstack, mask and pc, | |
3923 | 32 * 4 bytes for the general registers, 12 bytes for mdhi, mdlo, ownedfp | |
3924 | and 32 * 4 bytes for the floating point registers. */ | |
3925 | e->pdr.regoffset = 4 + 12 + 31 * 4; | |
a2f1e2e5 | 3926 | e->pdr.fregmask = -1; |
0434c1a0 PS |
3927 | /* Offset to saved f30 (first saved *double* register). */ |
3928 | e->pdr.fregoffset = 4 + 12 + 32 * 4 + 12 + 30 * 4; | |
a2f1e2e5 ILT |
3929 | e->pdr.isym = (long) s; |
3930 | e->pdr.adr = sigtramp_address; | |
3931 | ||
3932 | current_objfile = st->objfile; /* Keep new_symbol happy */ | |
3933 | s = new_symbol (MIPS_EFI_SYMBOL_NAME); | |
3934 | SYMBOL_VALUE (s) = (long) e; | |
3935 | SYMBOL_NAMESPACE (s) = LABEL_NAMESPACE; | |
3936 | SYMBOL_CLASS (s) = LOC_CONST; | |
3937 | SYMBOL_TYPE (s) = builtin_type_void; | |
3938 | current_objfile = NULL; | |
3939 | } | |
3940 | ||
3941 | BLOCK_SYM (b, BLOCK_NSYMS (b)++) = s; | |
3942 | } | |
3943 | ||
3944 | void | |
3945 | _initialize_mdebugread () | |
3946 | { | |
3947 | /* Missing basic types */ | |
3948 | ||
504ccfd7 JK |
3949 | /* Is a "string" the way btString means it the same as TYPE_CODE_STRING? |
3950 | FIXME. */ | |
3951 | mdebug_type_string = | |
a2f1e2e5 ILT |
3952 | init_type (TYPE_CODE_STRING, |
3953 | TARGET_CHAR_BIT / TARGET_CHAR_BIT, | |
3954 | 0, "string", | |
3955 | (struct objfile *) NULL); | |
504ccfd7 JK |
3956 | |
3957 | mdebug_type_complex = | |
3958 | init_type (TYPE_CODE_ERROR, | |
a2f1e2e5 ILT |
3959 | TARGET_COMPLEX_BIT / TARGET_CHAR_BIT, |
3960 | 0, "complex", | |
3961 | (struct objfile *) NULL); | |
504ccfd7 JK |
3962 | mdebug_type_double_complex = |
3963 | init_type (TYPE_CODE_ERROR, | |
a2f1e2e5 ILT |
3964 | TARGET_DOUBLE_COMPLEX_BIT / TARGET_CHAR_BIT, |
3965 | 0, "double complex", | |
3966 | (struct objfile *) NULL); | |
504ccfd7 JK |
3967 | |
3968 | /* We use TYPE_CODE_INT to print these as integers. Does this do any | |
3969 | good? Would we be better off with TYPE_CODE_ERROR? Should | |
3970 | TYPE_CODE_ERROR print things in hex if it knows the size? */ | |
3971 | mdebug_type_fixed_dec = | |
a2f1e2e5 ILT |
3972 | init_type (TYPE_CODE_INT, |
3973 | TARGET_INT_BIT / TARGET_CHAR_BIT, | |
3974 | 0, "fixed decimal", | |
3975 | (struct objfile *) NULL); | |
504ccfd7 JK |
3976 | |
3977 | mdebug_type_float_dec = | |
3978 | init_type (TYPE_CODE_ERROR, | |
a2f1e2e5 ILT |
3979 | TARGET_DOUBLE_BIT / TARGET_CHAR_BIT, |
3980 | 0, "floating decimal", | |
3981 | (struct objfile *) NULL); | |
3982 | } |