Add partial_symtabs parameter to psymtab construction functions
[deliverable/binutils-gdb.git] / gdb / mdebugread.c
1 /* Read a symbol table in ECOFF format (Third-Eye).
2
3 Copyright (C) 1986-2021 Free Software Foundation, Inc.
4
5 Original version contributed by Alessandro Forin (af@cs.cmu.edu) at
6 CMU. Major work by Per Bothner, John Gilmore and Ian Lance Taylor
7 at Cygnus Support.
8
9 This file is part of GDB.
10
11 This program is free software; you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 3 of the License, or
14 (at your option) any later version.
15
16 This program is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 GNU General Public License for more details.
20
21 You should have received a copy of the GNU General Public License
22 along with this program. If not, see <http://www.gnu.org/licenses/>. */
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 "filenames.h"
47 #include "objfiles.h"
48 #include "gdb_obstack.h"
49 #include "buildsym-legacy.h"
50 #include "stabsread.h"
51 #include "complaints.h"
52 #include "demangle.h"
53 #include "gdb-demangle.h"
54 #include "block.h"
55 #include "dictionary.h"
56 #include "mdebugread.h"
57 #include <sys/stat.h>
58 #include "psympriv.h"
59 #include "source.h"
60
61 #include "bfd.h"
62
63 #include "coff/ecoff.h" /* COFF-like aspects of ecoff files. */
64
65 #include "libaout.h" /* Private BFD a.out information. */
66 #include "aout/aout64.h"
67 #include "aout/stab_gnu.h" /* STABS information. */
68
69 #include "expression.h"
70
71 #include <algorithm>
72
73 /* Provide a way to test if we have both ECOFF and ELF symbol tables.
74 We use this define in order to know whether we should override a
75 symbol's ECOFF section with its ELF section. This is necessary in
76 case the symbol's ELF section could not be represented in ECOFF. */
77 #define ECOFF_IN_ELF(bfd) (bfd_get_flavour (bfd) == bfd_target_elf_flavour \
78 && bfd_get_section_by_name (bfd, ".mdebug") != NULL)
79
80 /* The objfile we are currently reading. */
81
82 static struct objfile *mdebugread_objfile;
83
84 \f
85
86 /* We put a pointer to this structure in the read_symtab_private field
87 of the psymtab. */
88
89 struct symloc
90 {
91 /* Index of the FDR that this psymtab represents. */
92 int fdr_idx;
93 /* The BFD that the psymtab was created from. */
94 bfd *cur_bfd;
95 const struct ecoff_debug_swap *debug_swap;
96 struct ecoff_debug_info *debug_info;
97 struct mdebug_pending **pending_list;
98 /* Pointer to external symbols for this file. */
99 EXTR *extern_tab;
100 /* Size of extern_tab. */
101 int extern_count;
102 enum language pst_language;
103 };
104
105 #define PST_PRIVATE(p) ((struct symloc *)(p)->read_symtab_private)
106 #define FDR_IDX(p) (PST_PRIVATE(p)->fdr_idx)
107 #define CUR_BFD(p) (PST_PRIVATE(p)->cur_bfd)
108 #define DEBUG_SWAP(p) (PST_PRIVATE(p)->debug_swap)
109 #define DEBUG_INFO(p) (PST_PRIVATE(p)->debug_info)
110 #define PENDING_LIST(p) (PST_PRIVATE(p)->pending_list)
111
112 #define SC_IS_TEXT(sc) ((sc) == scText \
113 || (sc) == scRConst \
114 || (sc) == scInit \
115 || (sc) == scFini)
116 #define SC_IS_DATA(sc) ((sc) == scData \
117 || (sc) == scSData \
118 || (sc) == scRData \
119 || (sc) == scPData \
120 || (sc) == scXData)
121 #define SC_IS_COMMON(sc) ((sc) == scCommon || (sc) == scSCommon)
122 #define SC_IS_BSS(sc) ((sc) == scBss)
123 #define SC_IS_SBSS(sc) ((sc) == scSBss)
124 #define SC_IS_UNDEF(sc) ((sc) == scUndefined || (sc) == scSUndefined)
125 \f
126 /* Various complaints about symbol reading that don't abort the process. */
127 static void
128 index_complaint (const char *arg1)
129 {
130 complaint (_("bad aux index at symbol %s"), arg1);
131 }
132
133 static void
134 unknown_ext_complaint (const char *arg1)
135 {
136 complaint (_("unknown external symbol %s"), arg1);
137 }
138
139 static void
140 basic_type_complaint (int arg1, const char *arg2)
141 {
142 complaint (_("cannot map ECOFF basic type 0x%x for %s"),
143 arg1, arg2);
144 }
145
146 static void
147 bad_tag_guess_complaint (const char *arg1)
148 {
149 complaint (_("guessed tag type of %s incorrectly"), arg1);
150 }
151
152 static void
153 bad_rfd_entry_complaint (const char *arg1, int arg2, int arg3)
154 {
155 complaint (_("bad rfd entry for %s: file %d, index %d"),
156 arg1, arg2, arg3);
157 }
158
159 static void
160 unexpected_type_code_complaint (const char *arg1)
161 {
162 complaint (_("unexpected type code for %s"), arg1);
163 }
164
165 /* Macros and extra defs. */
166
167 /* Puns: hard to find whether -g was used and how. */
168
169 #define MIN_GLEVEL GLEVEL_0
170 #define compare_glevel(a,b) \
171 (((a) == GLEVEL_3) ? ((b) < GLEVEL_3) : \
172 ((b) == GLEVEL_3) ? -1 : (int)((b) - (a)))
173 \f
174 /* Things that really are local to this module. */
175
176 /* Remember what we deduced to be the source language of this psymtab. */
177
178 static enum language psymtab_language = language_unknown;
179
180 /* Current BFD. */
181
182 static bfd *cur_bfd;
183
184 /* How to parse debugging information for CUR_BFD. */
185
186 static const struct ecoff_debug_swap *debug_swap;
187
188 /* Pointers to debugging information for CUR_BFD. */
189
190 static struct ecoff_debug_info *debug_info;
191
192 /* Pointer to current file descriptor record, and its index. */
193
194 static FDR *cur_fdr;
195 static int cur_fd;
196
197 /* Index of current symbol. */
198
199 static int cur_sdx;
200
201 /* Note how much "debuggable" this image is. We would like
202 to see at least one FDR with full symbols. */
203
204 static int max_gdbinfo;
205 static int max_glevel;
206
207 /* When examining .o files, report on undefined symbols. */
208
209 static int n_undef_symbols, n_undef_labels, n_undef_vars, n_undef_procs;
210
211 /* Pseudo symbol to use when putting stabs into the symbol table. */
212
213 static char stabs_symbol[] = STABS_SYMBOL;
214
215 /* Nonzero if we have seen ecoff debugging info for a file. */
216
217 static int found_ecoff_debugging_info;
218
219 /* Forward declarations. */
220
221 static int upgrade_type (int, struct type **, int, union aux_ext *,
222 int, const char *);
223
224 static void parse_partial_symbols (minimal_symbol_reader &,
225 psymtab_storage *,
226 struct objfile *);
227
228 static int has_opaque_xref (FDR *, SYMR *);
229
230 static int cross_ref (int, union aux_ext *, struct type **, enum type_code,
231 const char **, int, const char *);
232
233 static struct symbol *new_symbol (const char *);
234
235 static struct type *new_type (char *);
236
237 enum block_type { FUNCTION_BLOCK, NON_FUNCTION_BLOCK };
238
239 static struct block *new_block (enum block_type, enum language);
240
241 static struct compunit_symtab *new_symtab (const char *, int, struct objfile *);
242
243 static struct linetable *new_linetable (int);
244
245 static struct blockvector *new_bvect (int);
246
247 static struct type *parse_type (int, union aux_ext *, unsigned int, int *,
248 int, const char *);
249
250 static struct symbol *mylookup_symbol (const char *, const struct block *,
251 domain_enum, enum address_class);
252
253 static void sort_blocks (struct symtab *);
254
255 static legacy_psymtab *new_psymtab (const char *, psymtab_storage *,
256 struct objfile *);
257
258 static void mdebug_expand_psymtab (legacy_psymtab *pst,
259 struct objfile *objfile);
260
261 static void add_block (struct block *, struct symtab *);
262
263 static void add_symbol (struct symbol *, struct symtab *, struct block *);
264
265 static int add_line (struct linetable *, int, CORE_ADDR, int);
266
267 static struct linetable *shrink_linetable (struct linetable *);
268
269 static void handle_psymbol_enumerators (struct objfile *, psymtab_storage *,
270 partial_symtab *,
271 FDR *, int, CORE_ADDR);
272
273 static const char *mdebug_next_symbol_text (struct objfile *);
274 \f
275 /* Exported procedure: Builds a symtab from the partial symtab SELF.
276 Restores the environment in effect when SELF was created, delegates
277 most of the work to an ancillary procedure, and sorts
278 and reorders the symtab list at the end. SELF is not NULL. */
279
280 static void
281 mdebug_read_symtab (legacy_psymtab *self, struct objfile *objfile)
282 {
283 next_symbol_text_func = mdebug_next_symbol_text;
284
285 self->expand_psymtab (objfile);
286
287 /* Match with global symbols. This only needs to be done once,
288 after all of the symtabs and dependencies have been read in. */
289 scan_file_globals (objfile);
290 }
291 \f
292 /* File-level interface functions. */
293
294 /* Find a file descriptor given its index RF relative to a file CF. */
295
296 static FDR *
297 get_rfd (int cf, int rf)
298 {
299 FDR *fdrs;
300 FDR *f;
301 RFDT rfd;
302
303 fdrs = debug_info->fdr;
304 f = fdrs + cf;
305 /* Object files do not have the RFD table, all refs are absolute. */
306 if (f->rfdBase == 0)
307 return fdrs + rf;
308 (*debug_swap->swap_rfd_in) (cur_bfd,
309 ((char *) debug_info->external_rfd
310 + ((f->rfdBase + rf)
311 * debug_swap->external_rfd_size)),
312 &rfd);
313 return fdrs + rfd;
314 }
315
316 /* Return a safer print NAME for a file descriptor. */
317
318 static const char *
319 fdr_name (FDR *f)
320 {
321 if (f->rss == -1)
322 return "<stripped file>";
323 if (f->rss == 0)
324 return "<NFY>";
325 return debug_info->ss + f->issBase + f->rss;
326 }
327
328
329 /* Read in and parse the symtab of the file OBJFILE. Symbols from
330 different sections are relocated via the SECTION_OFFSETS. */
331
332 void
333 mdebug_build_psymtabs (minimal_symbol_reader &reader,
334 struct objfile *objfile,
335 const struct ecoff_debug_swap *swap,
336 struct ecoff_debug_info *info)
337 {
338 cur_bfd = objfile->obfd;
339 debug_swap = swap;
340 debug_info = info;
341
342 stabsread_new_init ();
343 free_header_files ();
344 init_header_files ();
345
346 /* Make sure all the FDR information is swapped in. */
347 if (info->fdr == NULL)
348 {
349 char *fdr_src;
350 char *fdr_end;
351 FDR *fdr_ptr;
352
353 info->fdr = (FDR *) XOBNEWVEC (&objfile->objfile_obstack, FDR,
354 info->symbolic_header.ifdMax);
355 fdr_src = (char *) info->external_fdr;
356 fdr_end = (fdr_src
357 + info->symbolic_header.ifdMax * swap->external_fdr_size);
358 fdr_ptr = info->fdr;
359 for (; fdr_src < fdr_end; fdr_src += swap->external_fdr_size, fdr_ptr++)
360 (*swap->swap_fdr_in) (objfile->obfd, fdr_src, fdr_ptr);
361 }
362
363 psymtab_storage *partial_symtabs = objfile->partial_symtabs.get ();
364 parse_partial_symbols (reader, partial_symtabs, objfile);
365
366 #if 0
367 /* Check to make sure file was compiled with -g. If not, warn the
368 user of this limitation. */
369 if (compare_glevel (max_glevel, GLEVEL_2) < 0)
370 {
371 if (max_gdbinfo == 0)
372 printf_unfiltered (_("\n%s not compiled with -g, "
373 "debugging support is limited.\n"),
374 objfile->name);
375 printf_unfiltered (_("You should compile with -g2 or "
376 "-g3 for best debugging support.\n"));
377 }
378 #endif
379 }
380 \f
381 /* Local utilities */
382
383 /* Map of FDR indexes to partial symtabs. */
384
385 struct pst_map
386 {
387 legacy_psymtab *pst; /* the psymtab proper */
388 long n_globals; /* exported globals (external symbols) */
389 long globals_offset; /* cumulative */
390 };
391
392
393 /* Utility stack, used to nest procedures and blocks properly.
394 It is a doubly linked list, to avoid too many alloc/free.
395 Since we might need it quite a few times it is NOT deallocated
396 after use. */
397
398 static struct parse_stack
399 {
400 struct parse_stack *next, *prev;
401 struct symtab *cur_st; /* Current symtab. */
402 struct block *cur_block; /* Block in it. */
403
404 /* What are we parsing. stFile, or stBlock are for files and
405 blocks. stProc or stStaticProc means we have seen the start of a
406 procedure, but not the start of the block within in. When we see
407 the start of that block, we change it to stNil, without pushing a
408 new block, i.e. stNil means both a procedure and a block. */
409
410 int blocktype;
411
412 struct type *cur_type; /* Type we parse fields for. */
413 int cur_field; /* Field number in cur_type. */
414 CORE_ADDR procadr; /* Start addres of this procedure. */
415 int numargs; /* Its argument count. */
416 }
417
418 *top_stack; /* Top stack ptr */
419
420
421 /* Enter a new lexical context. */
422
423 static void
424 push_parse_stack (void)
425 {
426 struct parse_stack *newobj;
427
428 /* Reuse frames if possible. */
429 if (top_stack && top_stack->prev)
430 newobj = top_stack->prev;
431 else
432 newobj = XCNEW (struct parse_stack);
433 /* Initialize new frame with previous content. */
434 if (top_stack)
435 {
436 struct parse_stack *prev = newobj->prev;
437
438 *newobj = *top_stack;
439 top_stack->prev = newobj;
440 newobj->prev = prev;
441 newobj->next = top_stack;
442 }
443 top_stack = newobj;
444 }
445
446 /* Exit a lexical context. */
447
448 static void
449 pop_parse_stack (void)
450 {
451 if (!top_stack)
452 return;
453 if (top_stack->next)
454 top_stack = top_stack->next;
455 }
456
457
458 /* Cross-references might be to things we haven't looked at
459 yet, e.g. type references. To avoid too many type
460 duplications we keep a quick fixup table, an array
461 of lists of references indexed by file descriptor. */
462
463 struct mdebug_pending
464 {
465 struct mdebug_pending *next; /* link */
466 char *s; /* the unswapped symbol */
467 struct type *t; /* its partial type descriptor */
468 };
469
470
471 /* The pending information is kept for an entire object file. We
472 allocate the pending information table when we create the partial
473 symbols, and we store a pointer to the single table in each
474 psymtab. */
475
476 static struct mdebug_pending **pending_list;
477
478 /* Check whether we already saw symbol SH in file FH. */
479
480 static struct mdebug_pending *
481 is_pending_symbol (FDR *fh, char *sh)
482 {
483 int f_idx = fh - debug_info->fdr;
484 struct mdebug_pending *p;
485
486 /* Linear search is ok, list is typically no more than 10 deep. */
487 for (p = pending_list[f_idx]; p; p = p->next)
488 if (p->s == sh)
489 break;
490 return p;
491 }
492
493 /* Add a new symbol SH of type T. */
494
495 static void
496 add_pending (FDR *fh, char *sh, struct type *t)
497 {
498 int f_idx = fh - debug_info->fdr;
499 struct mdebug_pending *p = is_pending_symbol (fh, sh);
500
501 /* Make sure we do not make duplicates. */
502 if (!p)
503 {
504 p = XOBNEW (&mdebugread_objfile->objfile_obstack, mdebug_pending);
505 p->s = sh;
506 p->t = t;
507 p->next = pending_list[f_idx];
508 pending_list[f_idx] = p;
509 }
510 }
511 \f
512
513 /* Parsing Routines proper. */
514
515 static void
516 reg_value_complaint (int regnum, int num_regs, const char *sym)
517 {
518 complaint (_("bad register number %d (max %d) in symbol %s"),
519 regnum, num_regs - 1, sym);
520 }
521
522 /* Parse a single symbol. Mostly just make up a GDB symbol for it.
523 For blocks, procedures and types we open a new lexical context.
524 This is basically just a big switch on the symbol's type. Argument
525 AX is the base pointer of aux symbols for this file (fh->iauxBase).
526 EXT_SH points to the unswapped symbol, which is needed for struct,
527 union, etc., types; it is NULL for an EXTR. BIGEND says whether
528 aux symbols are big-endian or little-endian. Return count of
529 SYMR's handled (normally one). */
530
531 static int
532 mdebug_reg_to_regnum (struct symbol *sym, struct gdbarch *gdbarch)
533 {
534 int regno = gdbarch_ecoff_reg_to_regnum (gdbarch, SYMBOL_VALUE (sym));
535
536 if (regno < 0 || regno >= gdbarch_num_cooked_regs (gdbarch))
537 {
538 reg_value_complaint (regno, gdbarch_num_cooked_regs (gdbarch),
539 sym->print_name ());
540
541 regno = gdbarch_sp_regnum (gdbarch); /* Known safe, though useless. */
542 }
543
544 return regno;
545 }
546
547 static const struct symbol_register_ops mdebug_register_funcs = {
548 mdebug_reg_to_regnum
549 };
550
551 /* The "aclass" indices for computed symbols. */
552
553 static int mdebug_register_index;
554 static int mdebug_regparm_index;
555
556 /* Common code for symbols describing data. */
557
558 static void
559 add_data_symbol (SYMR *sh, union aux_ext *ax, int bigend,
560 struct symbol *s, int aclass_index, struct block *b,
561 struct objfile *objfile, const char *name)
562 {
563 SYMBOL_DOMAIN (s) = VAR_DOMAIN;
564 SYMBOL_ACLASS_INDEX (s) = aclass_index;
565 add_symbol (s, top_stack->cur_st, b);
566
567 /* Type could be missing if file is compiled without debugging info. */
568 if (SC_IS_UNDEF (sh->sc)
569 || sh->sc == scNil || sh->index == indexNil)
570 SYMBOL_TYPE (s) = objfile_type (objfile)->nodebug_data_symbol;
571 else
572 SYMBOL_TYPE (s) = parse_type (cur_fd, ax, sh->index, 0, bigend, name);
573 /* Value of a data symbol is its memory address. */
574 }
575
576 static int
577 parse_symbol (SYMR *sh, union aux_ext *ax, char *ext_sh, int bigend,
578 const section_offsets &section_offsets, struct objfile *objfile)
579 {
580 struct gdbarch *gdbarch = objfile->arch ();
581 const bfd_size_type external_sym_size = debug_swap->external_sym_size;
582 void (*const swap_sym_in) (bfd *, void *, SYMR *) = debug_swap->swap_sym_in;
583 const char *name;
584 struct symbol *s;
585 struct block *b;
586 struct mdebug_pending *pend;
587 struct type *t;
588 int count = 1;
589 TIR tir;
590 long svalue = sh->value;
591 int bitsize;
592
593 if (ext_sh == NULL)
594 name = debug_info->ssext + sh->iss;
595 else
596 name = debug_info->ss + cur_fdr->issBase + sh->iss;
597
598 switch (sh->sc)
599 {
600 case scText:
601 case scRConst:
602 /* Do not relocate relative values.
603 The value of a stEnd symbol is the displacement from the
604 corresponding start symbol value.
605 The value of a stBlock symbol is the displacement from the
606 procedure address. */
607 if (sh->st != stEnd && sh->st != stBlock)
608 sh->value += section_offsets[SECT_OFF_TEXT (objfile)];
609 break;
610 case scData:
611 case scSData:
612 case scRData:
613 case scPData:
614 case scXData:
615 sh->value += section_offsets[SECT_OFF_DATA (objfile)];
616 break;
617 case scBss:
618 case scSBss:
619 sh->value += section_offsets[SECT_OFF_BSS (objfile)];
620 break;
621 }
622
623 switch (sh->st)
624 {
625 case stNil:
626 break;
627
628 case stGlobal: /* External symbol, goes into global block. */
629 b = BLOCKVECTOR_BLOCK (SYMTAB_BLOCKVECTOR (top_stack->cur_st),
630 GLOBAL_BLOCK);
631 s = new_symbol (name);
632 SET_SYMBOL_VALUE_ADDRESS (s, (CORE_ADDR) sh->value);
633 add_data_symbol (sh, ax, bigend, s, LOC_STATIC, b, objfile, name);
634 break;
635
636 case stStatic: /* Static data, goes into current block. */
637 b = top_stack->cur_block;
638 s = new_symbol (name);
639 if (SC_IS_COMMON (sh->sc))
640 {
641 /* It is a FORTRAN common block. At least for SGI Fortran the
642 address is not in the symbol; we need to fix it later in
643 scan_file_globals. */
644 int bucket = hashname (s->linkage_name ());
645 SYMBOL_VALUE_CHAIN (s) = global_sym_chain[bucket];
646 global_sym_chain[bucket] = s;
647 }
648 else
649 SET_SYMBOL_VALUE_ADDRESS (s, (CORE_ADDR) sh->value);
650 add_data_symbol (sh, ax, bigend, s, LOC_STATIC, b, objfile, name);
651 break;
652
653 case stLocal: /* Local variable, goes into current block. */
654 b = top_stack->cur_block;
655 s = new_symbol (name);
656 SYMBOL_VALUE (s) = svalue;
657 if (sh->sc == scRegister)
658 add_data_symbol (sh, ax, bigend, s, mdebug_register_index,
659 b, objfile, name);
660 else
661 add_data_symbol (sh, ax, bigend, s, LOC_LOCAL,
662 b, objfile, name);
663 break;
664
665 case stParam: /* Arg to procedure, goes into current
666 block. */
667 max_gdbinfo++;
668 found_ecoff_debugging_info = 1;
669 top_stack->numargs++;
670
671 /* Special GNU C++ name. */
672 if (is_cplus_marker (name[0]) && name[1] == 't' && name[2] == 0)
673 name = "this"; /* FIXME, not alloc'd in obstack. */
674 s = new_symbol (name);
675
676 SYMBOL_DOMAIN (s) = VAR_DOMAIN;
677 SYMBOL_IS_ARGUMENT (s) = 1;
678 switch (sh->sc)
679 {
680 case scRegister:
681 /* Pass by value in register. */
682 SYMBOL_ACLASS_INDEX (s) = mdebug_register_index;
683 break;
684 case scVar:
685 /* Pass by reference on stack. */
686 SYMBOL_ACLASS_INDEX (s) = LOC_REF_ARG;
687 break;
688 case scVarRegister:
689 /* Pass by reference in register. */
690 SYMBOL_ACLASS_INDEX (s) = mdebug_regparm_index;
691 break;
692 default:
693 /* Pass by value on stack. */
694 SYMBOL_ACLASS_INDEX (s) = LOC_ARG;
695 break;
696 }
697 SYMBOL_VALUE (s) = svalue;
698 SYMBOL_TYPE (s) = parse_type (cur_fd, ax, sh->index, 0, bigend, name);
699 add_symbol (s, top_stack->cur_st, top_stack->cur_block);
700 break;
701
702 case stLabel: /* label, goes into current block. */
703 s = new_symbol (name);
704 SYMBOL_DOMAIN (s) = VAR_DOMAIN; /* So that it can be used */
705 SYMBOL_ACLASS_INDEX (s) = LOC_LABEL; /* but not misused. */
706 SET_SYMBOL_VALUE_ADDRESS (s, (CORE_ADDR) sh->value);
707 SYMBOL_TYPE (s) = objfile_type (objfile)->builtin_int;
708 add_symbol (s, top_stack->cur_st, top_stack->cur_block);
709 break;
710
711 case stProc: /* Procedure, usually goes into global block. */
712 case stStaticProc: /* Static procedure, goes into current block. */
713 /* For stProc symbol records, we need to check the storage class
714 as well, as only (stProc, scText) entries represent "real"
715 procedures - See the Compaq document titled "Object File /
716 Symbol Table Format Specification" for more information.
717 If the storage class is not scText, we discard the whole block
718 of symbol records for this stProc. */
719 if (sh->st == stProc && sh->sc != scText)
720 {
721 char *ext_tsym = ext_sh;
722 int keep_counting = 1;
723 SYMR tsym;
724
725 while (keep_counting)
726 {
727 ext_tsym += external_sym_size;
728 (*swap_sym_in) (cur_bfd, ext_tsym, &tsym);
729 count++;
730 switch (tsym.st)
731 {
732 case stParam:
733 break;
734 case stEnd:
735 keep_counting = 0;
736 break;
737 default:
738 complaint (_("unknown symbol type 0x%x"), sh->st);
739 break;
740 }
741 }
742 break;
743 }
744 s = new_symbol (name);
745 SYMBOL_DOMAIN (s) = VAR_DOMAIN;
746 SYMBOL_ACLASS_INDEX (s) = LOC_BLOCK;
747 /* Type of the return value. */
748 if (SC_IS_UNDEF (sh->sc) || sh->sc == scNil)
749 t = objfile_type (objfile)->builtin_int;
750 else
751 {
752 t = parse_type (cur_fd, ax, sh->index + 1, 0, bigend, name);
753 if (strcmp (name, "malloc") == 0
754 && t->code () == TYPE_CODE_VOID)
755 {
756 /* I don't know why, but, at least under Alpha GNU/Linux,
757 when linking against a malloc without debugging
758 symbols, its read as a function returning void---this
759 is bad because it means we cannot call functions with
760 string arguments interactively; i.e., "call
761 printf("howdy\n")" would fail with the error message
762 "program has no memory available". To avoid this, we
763 patch up the type and make it void*
764 instead. (davidm@azstarnet.com). */
765 t = make_pointer_type (t, NULL);
766 }
767 }
768 b = top_stack->cur_block;
769 if (sh->st == stProc)
770 {
771 const struct blockvector *bv
772 = SYMTAB_BLOCKVECTOR (top_stack->cur_st);
773
774 /* The next test should normally be true, but provides a
775 hook for nested functions (which we don't want to make
776 global). */
777 if (b == BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK))
778 b = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK);
779 /* Irix 5 sometimes has duplicate names for the same
780 function. We want to add such names up at the global
781 level, not as a nested function. */
782 else if (sh->value == top_stack->procadr)
783 b = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK);
784 }
785 add_symbol (s, top_stack->cur_st, b);
786
787 /* Make a type for the procedure itself. */
788 SYMBOL_TYPE (s) = lookup_function_type (t);
789
790 /* All functions in C++ have prototypes. For C we don't have enough
791 information in the debug info. */
792 if (s->language () == language_cplus)
793 SYMBOL_TYPE (s)->set_is_prototyped (true);
794
795 /* Create and enter a new lexical context. */
796 b = new_block (FUNCTION_BLOCK, s->language ());
797 SYMBOL_BLOCK_VALUE (s) = b;
798 BLOCK_FUNCTION (b) = s;
799 BLOCK_START (b) = BLOCK_END (b) = sh->value;
800 BLOCK_SUPERBLOCK (b) = top_stack->cur_block;
801 add_block (b, top_stack->cur_st);
802
803 /* Not if we only have partial info. */
804 if (SC_IS_UNDEF (sh->sc) || sh->sc == scNil)
805 break;
806
807 push_parse_stack ();
808 top_stack->cur_block = b;
809 top_stack->blocktype = sh->st;
810 top_stack->cur_type = SYMBOL_TYPE (s);
811 top_stack->cur_field = -1;
812 top_stack->procadr = sh->value;
813 top_stack->numargs = 0;
814 break;
815
816 /* Beginning of code for structure, union, and enum definitions.
817 They all share a common set of local variables, defined here. */
818 {
819 enum type_code type_code;
820 char *ext_tsym;
821 int nfields;
822 long max_value;
823 struct field *f;
824
825 case stStruct: /* Start a block defining a struct type. */
826 type_code = TYPE_CODE_STRUCT;
827 goto structured_common;
828
829 case stUnion: /* Start a block defining a union type. */
830 type_code = TYPE_CODE_UNION;
831 goto structured_common;
832
833 case stEnum: /* Start a block defining an enum type. */
834 type_code = TYPE_CODE_ENUM;
835 goto structured_common;
836
837 case stBlock: /* Either a lexical block, or some type. */
838 if (sh->sc != scInfo && !SC_IS_COMMON (sh->sc))
839 goto case_stBlock_code; /* Lexical block */
840
841 type_code = TYPE_CODE_UNDEF; /* We have a type. */
842
843 /* Common code for handling struct, union, enum, and/or as-yet-
844 unknown-type blocks of info about structured data. `type_code'
845 has been set to the proper TYPE_CODE, if we know it. */
846 structured_common:
847 found_ecoff_debugging_info = 1;
848 push_parse_stack ();
849 top_stack->blocktype = stBlock;
850
851 /* First count the number of fields and the highest value. */
852 nfields = 0;
853 max_value = 0;
854 for (ext_tsym = ext_sh + external_sym_size;
855 ;
856 ext_tsym += external_sym_size)
857 {
858 SYMR tsym;
859
860 (*swap_sym_in) (cur_bfd, ext_tsym, &tsym);
861
862 switch (tsym.st)
863 {
864 case stEnd:
865 /* C++ encodes class types as structures where there the
866 methods are encoded as stProc. The scope of stProc
867 symbols also ends with stEnd, thus creating a risk of
868 taking the wrong stEnd symbol record as the end of
869 the current struct, which would cause GDB to undercount
870 the real number of fields in this struct. To make sure
871 we really reached the right stEnd symbol record, we
872 check the associated name, and match it against the
873 struct name. Since method names are mangled while
874 the class name is not, there is no risk of having a
875 method whose name is identical to the class name
876 (in particular constructor method names are different
877 from the class name). There is therefore no risk that
878 this check stops the count on the StEnd of a method.
879
880 Also, assume that we're really at the end when tsym.iss
881 is 0 (issNull). */
882 if (tsym.iss == issNull
883 || strcmp (debug_info->ss + cur_fdr->issBase + tsym.iss,
884 name) == 0)
885 goto end_of_fields;
886 break;
887
888 case stMember:
889 if (nfields == 0 && type_code == TYPE_CODE_UNDEF)
890 {
891 /* If the type of the member is Nil (or Void),
892 without qualifiers, assume the tag is an
893 enumeration.
894 Alpha cc -migrate enums are recognized by a zero
895 index and a zero symbol value.
896 DU 4.0 cc enums are recognized by a member type of
897 btEnum without qualifiers and a zero symbol value. */
898 if (tsym.index == indexNil
899 || (tsym.index == 0 && sh->value == 0))
900 type_code = TYPE_CODE_ENUM;
901 else
902 {
903 (*debug_swap->swap_tir_in) (bigend,
904 &ax[tsym.index].a_ti,
905 &tir);
906 if ((tir.bt == btNil || tir.bt == btVoid
907 || (tir.bt == btEnum && sh->value == 0))
908 && tir.tq0 == tqNil)
909 type_code = TYPE_CODE_ENUM;
910 }
911 }
912 nfields++;
913 if (tsym.value > max_value)
914 max_value = tsym.value;
915 break;
916
917 case stBlock:
918 case stUnion:
919 case stEnum:
920 case stStruct:
921 {
922 #if 0
923 /* This is a no-op; is it trying to tell us something
924 we should be checking? */
925 if (tsym.sc == scVariant); /*UNIMPLEMENTED */
926 #endif
927 if (tsym.index != 0)
928 {
929 /* This is something like a struct within a
930 struct. Skip over the fields of the inner
931 struct. The -1 is because the for loop will
932 increment ext_tsym. */
933 ext_tsym = ((char *) debug_info->external_sym
934 + ((cur_fdr->isymBase + tsym.index - 1)
935 * external_sym_size));
936 }
937 }
938 break;
939
940 case stTypedef:
941 /* mips cc puts out a typedef for struct x if it is not yet
942 defined when it encounters
943 struct y { struct x *xp; };
944 Just ignore it. */
945 break;
946
947 case stIndirect:
948 /* Irix5 cc puts out a stIndirect for struct x if it is not
949 yet defined when it encounters
950 struct y { struct x *xp; };
951 Just ignore it. */
952 break;
953
954 default:
955 complaint (_("declaration block contains "
956 "unhandled symbol type %d"),
957 tsym.st);
958 }
959 }
960 end_of_fields:
961
962 /* In an stBlock, there is no way to distinguish structs,
963 unions, and enums at this point. This is a bug in the
964 original design (that has been fixed with the recent
965 addition of the stStruct, stUnion, and stEnum symbol
966 types.) The way you can tell is if/when you see a variable
967 or field of that type. In that case the variable's type
968 (in the AUX table) says if the type is struct, union, or
969 enum, and points back to the stBlock here. So you can
970 patch the tag kind up later - but only if there actually is
971 a variable or field of that type.
972
973 So until we know for sure, we will guess at this point.
974 The heuristic is:
975 If the first member has index==indexNil or a void type,
976 assume we have an enumeration.
977 Otherwise, if there is more than one member, and all
978 the members have offset 0, assume we have a union.
979 Otherwise, assume we have a struct.
980
981 The heuristic could guess wrong in the case of of an
982 enumeration with no members or a union with one (or zero)
983 members, or when all except the last field of a struct have
984 width zero. These are uncommon and/or illegal situations,
985 and in any case guessing wrong probably doesn't matter
986 much.
987
988 But if we later do find out we were wrong, we fixup the tag
989 kind. Members of an enumeration must be handled
990 differently from struct/union fields, and that is harder to
991 patch up, but luckily we shouldn't need to. (If there are
992 any enumeration members, we can tell for sure it's an enum
993 here.) */
994
995 if (type_code == TYPE_CODE_UNDEF)
996 {
997 if (nfields > 1 && max_value == 0)
998 type_code = TYPE_CODE_UNION;
999 else
1000 type_code = TYPE_CODE_STRUCT;
1001 }
1002
1003 /* Create a new type or use the pending type. */
1004 pend = is_pending_symbol (cur_fdr, ext_sh);
1005 if (pend == NULL)
1006 {
1007 t = new_type (NULL);
1008 add_pending (cur_fdr, ext_sh, t);
1009 }
1010 else
1011 t = pend->t;
1012
1013 /* Do not set the tag name if it is a compiler generated tag name
1014 (.Fxx or .xxfake or empty) for unnamed struct/union/enums.
1015 Alpha cc puts out an sh->iss of zero for those. */
1016 if (sh->iss == 0 || name[0] == '.' || name[0] == '\0')
1017 t->set_name (NULL);
1018 else
1019 t->set_name (obconcat (&mdebugread_objfile->objfile_obstack,
1020 name, (char *) NULL));
1021
1022 t->set_code (type_code);
1023 TYPE_LENGTH (t) = sh->value;
1024 t->set_num_fields (nfields);
1025 f = ((struct field *) TYPE_ALLOC (t, nfields * sizeof (struct field)));
1026 t->set_fields (f);
1027
1028 if (type_code == TYPE_CODE_ENUM)
1029 {
1030 int unsigned_enum = 1;
1031
1032 /* This is a non-empty enum. */
1033
1034 /* DEC c89 has the number of enumerators in the sh.value field,
1035 not the type length, so we have to compensate for that
1036 incompatibility quirk.
1037 This might do the wrong thing for an enum with one or two
1038 enumerators and gcc -gcoff -fshort-enums, but these cases
1039 are hopefully rare enough.
1040 Alpha cc -migrate has a sh.value field of zero, we adjust
1041 that too. */
1042 if (TYPE_LENGTH (t) == t->num_fields ()
1043 || TYPE_LENGTH (t) == 0)
1044 TYPE_LENGTH (t) = gdbarch_int_bit (gdbarch) / HOST_CHAR_BIT;
1045 for (ext_tsym = ext_sh + external_sym_size;
1046 ;
1047 ext_tsym += external_sym_size)
1048 {
1049 SYMR tsym;
1050 struct symbol *enum_sym;
1051
1052 (*swap_sym_in) (cur_bfd, ext_tsym, &tsym);
1053
1054 if (tsym.st != stMember)
1055 break;
1056
1057 SET_FIELD_ENUMVAL (*f, tsym.value);
1058 f->set_type (t);
1059 FIELD_NAME (*f) = debug_info->ss + cur_fdr->issBase + tsym.iss;
1060 FIELD_BITSIZE (*f) = 0;
1061
1062 enum_sym = new (&mdebugread_objfile->objfile_obstack) symbol;
1063 enum_sym->set_linkage_name
1064 (obstack_strdup (&mdebugread_objfile->objfile_obstack,
1065 f->name));
1066 SYMBOL_ACLASS_INDEX (enum_sym) = LOC_CONST;
1067 SYMBOL_TYPE (enum_sym) = t;
1068 SYMBOL_DOMAIN (enum_sym) = VAR_DOMAIN;
1069 SYMBOL_VALUE (enum_sym) = tsym.value;
1070 if (SYMBOL_VALUE (enum_sym) < 0)
1071 unsigned_enum = 0;
1072 add_symbol (enum_sym, top_stack->cur_st, top_stack->cur_block);
1073
1074 /* Skip the stMembers that we've handled. */
1075 count++;
1076 f++;
1077 }
1078 if (unsigned_enum)
1079 t->set_is_unsigned (true);
1080 }
1081 /* Make this the current type. */
1082 top_stack->cur_type = t;
1083 top_stack->cur_field = 0;
1084
1085 /* Do not create a symbol for alpha cc unnamed structs. */
1086 if (sh->iss == 0)
1087 break;
1088
1089 /* gcc puts out an empty struct for an opaque struct definitions,
1090 do not create a symbol for it either. */
1091 if (t->num_fields () == 0)
1092 {
1093 t->set_is_stub (true);
1094 break;
1095 }
1096
1097 s = new_symbol (name);
1098 SYMBOL_DOMAIN (s) = STRUCT_DOMAIN;
1099 SYMBOL_ACLASS_INDEX (s) = LOC_TYPEDEF;
1100 SYMBOL_VALUE (s) = 0;
1101 SYMBOL_TYPE (s) = t;
1102 add_symbol (s, top_stack->cur_st, top_stack->cur_block);
1103 break;
1104
1105 /* End of local variables shared by struct, union, enum, and
1106 block (as yet unknown struct/union/enum) processing. */
1107 }
1108
1109 case_stBlock_code:
1110 found_ecoff_debugging_info = 1;
1111 /* Beginnning of (code) block. Value of symbol
1112 is the displacement from procedure start. */
1113 push_parse_stack ();
1114
1115 /* Do not start a new block if this is the outermost block of a
1116 procedure. This allows the LOC_BLOCK symbol to point to the
1117 block with the local variables, so funcname::var works. */
1118 if (top_stack->blocktype == stProc
1119 || top_stack->blocktype == stStaticProc)
1120 {
1121 top_stack->blocktype = stNil;
1122 break;
1123 }
1124
1125 top_stack->blocktype = stBlock;
1126 b = new_block (NON_FUNCTION_BLOCK, psymtab_language);
1127 BLOCK_START (b) = sh->value + top_stack->procadr;
1128 BLOCK_SUPERBLOCK (b) = top_stack->cur_block;
1129 top_stack->cur_block = b;
1130 add_block (b, top_stack->cur_st);
1131 break;
1132
1133 case stEnd: /* end (of anything) */
1134 if (sh->sc == scInfo || SC_IS_COMMON (sh->sc))
1135 {
1136 /* Finished with type */
1137 top_stack->cur_type = 0;
1138 }
1139 else if (sh->sc == scText &&
1140 (top_stack->blocktype == stProc ||
1141 top_stack->blocktype == stStaticProc))
1142 {
1143 /* Finished with procedure */
1144 const struct blockvector *bv
1145 = SYMTAB_BLOCKVECTOR (top_stack->cur_st);
1146 struct mdebug_extra_func_info *e;
1147 struct block *cblock = top_stack->cur_block;
1148 struct type *ftype = top_stack->cur_type;
1149 int i;
1150
1151 BLOCK_END (top_stack->cur_block) += sh->value; /* size */
1152
1153 /* Make up special symbol to contain procedure specific info. */
1154 s = new_symbol (MDEBUG_EFI_SYMBOL_NAME);
1155 SYMBOL_DOMAIN (s) = LABEL_DOMAIN;
1156 SYMBOL_ACLASS_INDEX (s) = LOC_CONST;
1157 SYMBOL_TYPE (s) = objfile_type (mdebugread_objfile)->builtin_void;
1158 e = OBSTACK_ZALLOC (&mdebugread_objfile->objfile_obstack,
1159 mdebug_extra_func_info);
1160 SYMBOL_VALUE_BYTES (s) = (gdb_byte *) e;
1161 e->numargs = top_stack->numargs;
1162 e->pdr.framereg = -1;
1163 add_symbol (s, top_stack->cur_st, top_stack->cur_block);
1164
1165 /* f77 emits proc-level with address bounds==[0,0],
1166 So look for such child blocks, and patch them. */
1167 for (i = 0; i < BLOCKVECTOR_NBLOCKS (bv); i++)
1168 {
1169 struct block *b_bad = BLOCKVECTOR_BLOCK (bv, i);
1170
1171 if (BLOCK_SUPERBLOCK (b_bad) == cblock
1172 && BLOCK_START (b_bad) == top_stack->procadr
1173 && BLOCK_END (b_bad) == top_stack->procadr)
1174 {
1175 BLOCK_START (b_bad) = BLOCK_START (cblock);
1176 BLOCK_END (b_bad) = BLOCK_END (cblock);
1177 }
1178 }
1179
1180 if (ftype->num_fields () <= 0)
1181 {
1182 /* No parameter type information is recorded with the function's
1183 type. Set that from the type of the parameter symbols. */
1184 int nparams = top_stack->numargs;
1185 int iparams;
1186 struct symbol *sym;
1187
1188 if (nparams > 0)
1189 {
1190 struct block_iterator iter;
1191
1192 ftype->set_num_fields (nparams);
1193 ftype->set_fields
1194 ((struct field *)
1195 TYPE_ALLOC (ftype, nparams * sizeof (struct field)));
1196
1197 iparams = 0;
1198 ALL_BLOCK_SYMBOLS (cblock, iter, sym)
1199 {
1200 if (iparams == nparams)
1201 break;
1202
1203 if (SYMBOL_IS_ARGUMENT (sym))
1204 {
1205 ftype->field (iparams).set_type (SYMBOL_TYPE (sym));
1206 TYPE_FIELD_ARTIFICIAL (ftype, iparams) = 0;
1207 iparams++;
1208 }
1209 }
1210 }
1211 }
1212 }
1213 else if (sh->sc == scText && top_stack->blocktype == stBlock)
1214 {
1215 /* End of (code) block. The value of the symbol is the
1216 displacement from the procedure`s start address of the
1217 end of this block. */
1218 BLOCK_END (top_stack->cur_block) = sh->value + top_stack->procadr;
1219 }
1220 else if (sh->sc == scText && top_stack->blocktype == stNil)
1221 {
1222 /* End of outermost block. Pop parse stack and ignore. The
1223 following stEnd of stProc will take care of the block. */
1224 ;
1225 }
1226 else if (sh->sc == scText && top_stack->blocktype == stFile)
1227 {
1228 /* End of file. Pop parse stack and ignore. Higher
1229 level code deals with this. */
1230 ;
1231 }
1232 else
1233 complaint (_("stEnd with storage class %d not handled"), sh->sc);
1234
1235 pop_parse_stack (); /* Restore previous lexical context. */
1236 break;
1237
1238 case stMember: /* member of struct or union */
1239 {
1240 struct field *f = &top_stack->cur_type->field (top_stack->cur_field);
1241 top_stack->cur_field++;
1242 FIELD_NAME (*f) = name;
1243 SET_FIELD_BITPOS (*f, sh->value);
1244 bitsize = 0;
1245 f->set_type (parse_type (cur_fd, ax, sh->index, &bitsize, bigend,
1246 name));
1247 FIELD_BITSIZE (*f) = bitsize;
1248 }
1249 break;
1250
1251 case stIndirect: /* forward declaration on Irix5 */
1252 /* Forward declarations from Irix5 cc are handled by cross_ref,
1253 skip them. */
1254 break;
1255
1256 case stTypedef: /* type definition */
1257 found_ecoff_debugging_info = 1;
1258
1259 /* Typedefs for forward declarations and opaque structs from alpha cc
1260 are handled by cross_ref, skip them. */
1261 if (sh->iss == 0)
1262 break;
1263
1264 /* Parse the type or use the pending type. */
1265 pend = is_pending_symbol (cur_fdr, ext_sh);
1266 if (pend == NULL)
1267 {
1268 t = parse_type (cur_fd, ax, sh->index, NULL, bigend, name);
1269 add_pending (cur_fdr, ext_sh, t);
1270 }
1271 else
1272 t = pend->t;
1273
1274 /* Mips cc puts out a typedef with the name of the struct for forward
1275 declarations. These should not go into the symbol table and
1276 TYPE_NAME should not be set for them.
1277 They can't be distinguished from an intentional typedef to
1278 the same name however:
1279 x.h:
1280 struct x { int ix; int jx; };
1281 struct xx;
1282 x.c:
1283 typedef struct x x;
1284 struct xx {int ixx; int jxx; };
1285 generates a cross referencing stTypedef for x and xx.
1286 The user visible effect of this is that the type of a pointer
1287 to struct foo sometimes is given as `foo *' instead of `struct foo *'.
1288 The problem is fixed with alpha cc and Irix5 cc. */
1289
1290 /* However if the typedef cross references to an opaque aggregate, it
1291 is safe to omit it from the symbol table. */
1292
1293 if (has_opaque_xref (cur_fdr, sh))
1294 break;
1295 s = new_symbol (name);
1296 SYMBOL_DOMAIN (s) = VAR_DOMAIN;
1297 SYMBOL_ACLASS_INDEX (s) = LOC_TYPEDEF;
1298 SYMBOL_BLOCK_VALUE (s) = top_stack->cur_block;
1299 SYMBOL_TYPE (s) = t;
1300 add_symbol (s, top_stack->cur_st, top_stack->cur_block);
1301
1302 /* Incomplete definitions of structs should not get a name. */
1303 if (SYMBOL_TYPE (s)->name () == NULL
1304 && (SYMBOL_TYPE (s)->num_fields () != 0
1305 || (SYMBOL_TYPE (s)->code () != TYPE_CODE_STRUCT
1306 && SYMBOL_TYPE (s)->code () != TYPE_CODE_UNION)))
1307 {
1308 if (SYMBOL_TYPE (s)->code () == TYPE_CODE_PTR
1309 || SYMBOL_TYPE (s)->code () == TYPE_CODE_FUNC)
1310 {
1311 /* If we are giving a name to a type such as "pointer to
1312 foo" or "function returning foo", we better not set
1313 the TYPE_NAME. If the program contains "typedef char
1314 *caddr_t;", we don't want all variables of type char
1315 * to print as caddr_t. This is not just a
1316 consequence of GDB's type management; CC and GCC (at
1317 least through version 2.4) both output variables of
1318 either type char * or caddr_t with the type
1319 refering to the stTypedef symbol for caddr_t. If a future
1320 compiler cleans this up it GDB is not ready for it
1321 yet, but if it becomes ready we somehow need to
1322 disable this check (without breaking the PCC/GCC2.4
1323 case).
1324
1325 Sigh.
1326
1327 Fortunately, this check seems not to be necessary
1328 for anything except pointers or functions. */
1329 }
1330 else
1331 SYMBOL_TYPE (s)->set_name (s->linkage_name ());
1332 }
1333 break;
1334
1335 case stFile: /* file name */
1336 push_parse_stack ();
1337 top_stack->blocktype = sh->st;
1338 break;
1339
1340 /* I`ve never seen these for C */
1341 case stRegReloc:
1342 break; /* register relocation */
1343 case stForward:
1344 break; /* forwarding address */
1345 case stConstant:
1346 break; /* constant */
1347 default:
1348 complaint (_("unknown symbol type 0x%x"), sh->st);
1349 break;
1350 }
1351
1352 return count;
1353 }
1354
1355 /* Basic types. */
1356
1357 static const struct objfile_key<struct type *,
1358 gdb::noop_deleter<struct type *>>
1359 basic_type_data;
1360
1361 static struct type *
1362 basic_type (int bt, struct objfile *objfile)
1363 {
1364 struct gdbarch *gdbarch = objfile->arch ();
1365 struct type **map_bt = basic_type_data.get (objfile);
1366 struct type *tp;
1367
1368 if (bt >= btMax)
1369 return NULL;
1370
1371 if (!map_bt)
1372 {
1373 map_bt = OBSTACK_CALLOC (&objfile->objfile_obstack,
1374 btMax, struct type *);
1375 basic_type_data.set (objfile, map_bt);
1376 }
1377
1378 if (map_bt[bt])
1379 return map_bt[bt];
1380
1381 switch (bt)
1382 {
1383 case btNil:
1384 tp = objfile_type (objfile)->builtin_void;
1385 break;
1386
1387 case btAdr:
1388 tp = init_pointer_type (objfile, 32, "adr_32",
1389 objfile_type (objfile)->builtin_void);
1390 break;
1391
1392 case btChar:
1393 tp = init_integer_type (objfile, 8, 0, "char");
1394 tp->set_has_no_signedness (true);
1395 break;
1396
1397 case btUChar:
1398 tp = init_integer_type (objfile, 8, 1, "unsigned char");
1399 break;
1400
1401 case btShort:
1402 tp = init_integer_type (objfile, 16, 0, "short");
1403 break;
1404
1405 case btUShort:
1406 tp = init_integer_type (objfile, 16, 1, "unsigned short");
1407 break;
1408
1409 case btInt:
1410 tp = init_integer_type (objfile, 32, 0, "int");
1411 break;
1412
1413 case btUInt:
1414 tp = init_integer_type (objfile, 32, 1, "unsigned int");
1415 break;
1416
1417 case btLong:
1418 tp = init_integer_type (objfile, 32, 0, "long");
1419 break;
1420
1421 case btULong:
1422 tp = init_integer_type (objfile, 32, 1, "unsigned long");
1423 break;
1424
1425 case btFloat:
1426 tp = init_float_type (objfile, gdbarch_float_bit (gdbarch),
1427 "float", gdbarch_float_format (gdbarch));
1428 break;
1429
1430 case btDouble:
1431 tp = init_float_type (objfile, gdbarch_double_bit (gdbarch),
1432 "double", gdbarch_double_format (gdbarch));
1433 break;
1434
1435 case btComplex:
1436 tp = init_complex_type ("complex", basic_type (btFloat, objfile));
1437 break;
1438
1439 case btDComplex:
1440 tp = init_complex_type ("double complex", basic_type (btFloat, objfile));
1441 break;
1442
1443 case btFixedDec:
1444 /* We use TYPE_CODE_INT to print these as integers. Does this do any
1445 good? Would we be better off with TYPE_CODE_ERROR? Should
1446 TYPE_CODE_ERROR print things in hex if it knows the size? */
1447 tp = init_integer_type (objfile, gdbarch_int_bit (gdbarch), 0,
1448 "fixed decimal");
1449 break;
1450
1451 case btFloatDec:
1452 tp = init_type (objfile, TYPE_CODE_ERROR,
1453 gdbarch_double_bit (gdbarch), "floating decimal");
1454 break;
1455
1456 case btString:
1457 /* Is a "string" the way btString means it the same as TYPE_CODE_STRING?
1458 FIXME. */
1459 tp = init_type (objfile, TYPE_CODE_STRING, TARGET_CHAR_BIT, "string");
1460 break;
1461
1462 case btVoid:
1463 tp = objfile_type (objfile)->builtin_void;
1464 break;
1465
1466 case btLong64:
1467 tp = init_integer_type (objfile, 64, 0, "long");
1468 break;
1469
1470 case btULong64:
1471 tp = init_integer_type (objfile, 64, 1, "unsigned long");
1472 break;
1473
1474 case btLongLong64:
1475 tp = init_integer_type (objfile, 64, 0, "long long");
1476 break;
1477
1478 case btULongLong64:
1479 tp = init_integer_type (objfile, 64, 1, "unsigned long long");
1480 break;
1481
1482 case btAdr64:
1483 tp = init_pointer_type (objfile, 64, "adr_64",
1484 objfile_type (objfile)->builtin_void);
1485 break;
1486
1487 case btInt64:
1488 tp = init_integer_type (objfile, 64, 0, "int");
1489 break;
1490
1491 case btUInt64:
1492 tp = init_integer_type (objfile, 64, 1, "unsigned int");
1493 break;
1494
1495 default:
1496 tp = NULL;
1497 break;
1498 }
1499
1500 map_bt[bt] = tp;
1501 return tp;
1502 }
1503
1504 /* Parse the type information provided in the raw AX entries for
1505 the symbol SH. Return the bitfield size in BS, in case.
1506 We must byte-swap the AX entries before we use them; BIGEND says whether
1507 they are big-endian or little-endian (from fh->fBigendian). */
1508
1509 static struct type *
1510 parse_type (int fd, union aux_ext *ax, unsigned int aux_index, int *bs,
1511 int bigend, const char *sym_name)
1512 {
1513 TIR t[1];
1514 struct type *tp = 0;
1515 enum type_code type_code = TYPE_CODE_UNDEF;
1516
1517 /* Handle undefined types, they have indexNil. */
1518 if (aux_index == indexNil)
1519 return basic_type (btInt, mdebugread_objfile);
1520
1521 /* Handle corrupt aux indices. */
1522 if (aux_index >= (debug_info->fdr + fd)->caux)
1523 {
1524 index_complaint (sym_name);
1525 return basic_type (btInt, mdebugread_objfile);
1526 }
1527 ax += aux_index;
1528
1529 /* Use aux as a type information record, map its basic type. */
1530 (*debug_swap->swap_tir_in) (bigend, &ax->a_ti, t);
1531 tp = basic_type (t->bt, mdebugread_objfile);
1532 if (tp == NULL)
1533 {
1534 /* Cannot use builtin types -- build our own. */
1535 switch (t->bt)
1536 {
1537 case btStruct:
1538 type_code = TYPE_CODE_STRUCT;
1539 break;
1540 case btUnion:
1541 type_code = TYPE_CODE_UNION;
1542 break;
1543 case btEnum:
1544 type_code = TYPE_CODE_ENUM;
1545 break;
1546 case btRange:
1547 type_code = TYPE_CODE_RANGE;
1548 break;
1549 case btSet:
1550 type_code = TYPE_CODE_SET;
1551 break;
1552 case btIndirect:
1553 /* alpha cc -migrate uses this for typedefs. The true type will
1554 be obtained by crossreferencing below. */
1555 type_code = TYPE_CODE_ERROR;
1556 break;
1557 case btTypedef:
1558 /* alpha cc uses this for typedefs. The true type will be
1559 obtained by crossreferencing below. */
1560 type_code = TYPE_CODE_ERROR;
1561 break;
1562 default:
1563 basic_type_complaint (t->bt, sym_name);
1564 return basic_type (btInt, mdebugread_objfile);
1565 }
1566 }
1567
1568 /* Move on to next aux. */
1569 ax++;
1570
1571 if (t->fBitfield)
1572 {
1573 int width = AUX_GET_WIDTH (bigend, ax);
1574
1575 /* Inhibit core dumps if TIR is corrupted. */
1576 if (bs == NULL)
1577 {
1578 /* Alpha cc -migrate encodes char and unsigned char types
1579 as short and unsigned short types with a field width of 8.
1580 Enum types also have a field width which we ignore for now. */
1581 if (t->bt == btShort && width == 8)
1582 tp = basic_type (btChar, mdebugread_objfile);
1583 else if (t->bt == btUShort && width == 8)
1584 tp = basic_type (btUChar, mdebugread_objfile);
1585 else if (t->bt == btEnum)
1586 ;
1587 else
1588 complaint (_("can't handle TIR fBitfield for %s"),
1589 sym_name);
1590 }
1591 else
1592 *bs = width;
1593 ax++;
1594 }
1595
1596 /* A btIndirect entry cross references to an aux entry containing
1597 the type. */
1598 if (t->bt == btIndirect)
1599 {
1600 RNDXR rn[1];
1601 int rf;
1602 FDR *xref_fh;
1603 int xref_fd;
1604
1605 (*debug_swap->swap_rndx_in) (bigend, &ax->a_rndx, rn);
1606 ax++;
1607 if (rn->rfd == 0xfff)
1608 {
1609 rf = AUX_GET_ISYM (bigend, ax);
1610 ax++;
1611 }
1612 else
1613 rf = rn->rfd;
1614
1615 if (rf == -1)
1616 {
1617 complaint (_("unable to cross ref btIndirect for %s"), sym_name);
1618 return basic_type (btInt, mdebugread_objfile);
1619 }
1620 xref_fh = get_rfd (fd, rf);
1621 xref_fd = xref_fh - debug_info->fdr;
1622 tp = parse_type (xref_fd, debug_info->external_aux + xref_fh->iauxBase,
1623 rn->index, NULL, xref_fh->fBigendian, sym_name);
1624 }
1625
1626 /* All these types really point to some (common) MIPS type
1627 definition, and only the type-qualifiers fully identify
1628 them. We'll make the same effort at sharing. */
1629 if (t->bt == btStruct ||
1630 t->bt == btUnion ||
1631 t->bt == btEnum ||
1632
1633 /* btSet (I think) implies that the name is a tag name, not a typedef
1634 name. This apparently is a MIPS extension for C sets. */
1635 t->bt == btSet)
1636 {
1637 const char *name;
1638
1639 /* Try to cross reference this type, build new type on failure. */
1640 ax += cross_ref (fd, ax, &tp, type_code, &name, bigend, sym_name);
1641 if (tp == NULL)
1642 tp = init_type (mdebugread_objfile, type_code, 0, NULL);
1643
1644 /* DEC c89 produces cross references to qualified aggregate types,
1645 dereference them. */
1646 while (tp->code () == TYPE_CODE_PTR
1647 || tp->code () == TYPE_CODE_ARRAY)
1648 tp = TYPE_TARGET_TYPE (tp);
1649
1650 /* Make sure that TYPE_CODE(tp) has an expected type code.
1651 Any type may be returned from cross_ref if file indirect entries
1652 are corrupted. */
1653 if (tp->code () != TYPE_CODE_STRUCT
1654 && tp->code () != TYPE_CODE_UNION
1655 && tp->code () != TYPE_CODE_ENUM)
1656 {
1657 unexpected_type_code_complaint (sym_name);
1658 }
1659 else
1660 {
1661 /* Usually, TYPE_CODE(tp) is already type_code. The main
1662 exception is if we guessed wrong re struct/union/enum.
1663 But for struct vs. union a wrong guess is harmless, so
1664 don't complain(). */
1665 if ((tp->code () == TYPE_CODE_ENUM
1666 && type_code != TYPE_CODE_ENUM)
1667 || (tp->code () != TYPE_CODE_ENUM
1668 && type_code == TYPE_CODE_ENUM))
1669 {
1670 bad_tag_guess_complaint (sym_name);
1671 }
1672
1673 if (tp->code () != type_code)
1674 {
1675 tp->set_code (type_code);
1676 }
1677
1678 /* Do not set the tag name if it is a compiler generated tag name
1679 (.Fxx or .xxfake or empty) for unnamed struct/union/enums. */
1680 if (name[0] == '.' || name[0] == '\0')
1681 tp->set_name (NULL);
1682 else if (tp->name () == NULL
1683 || strcmp (tp->name (), name) != 0)
1684 tp->set_name (obstack_strdup (&mdebugread_objfile->objfile_obstack,
1685 name));
1686 }
1687 }
1688
1689 /* All these types really point to some (common) MIPS type
1690 definition, and only the type-qualifiers fully identify
1691 them. We'll make the same effort at sharing.
1692 FIXME: We are not doing any guessing on range types. */
1693 if (t->bt == btRange)
1694 {
1695 const char *name;
1696
1697 /* Try to cross reference this type, build new type on failure. */
1698 ax += cross_ref (fd, ax, &tp, type_code, &name, bigend, sym_name);
1699 if (tp == NULL)
1700 tp = init_type (mdebugread_objfile, type_code, 0, NULL);
1701
1702 /* Make sure that TYPE_CODE(tp) has an expected type code.
1703 Any type may be returned from cross_ref if file indirect entries
1704 are corrupted. */
1705 if (tp->code () != TYPE_CODE_RANGE)
1706 {
1707 unexpected_type_code_complaint (sym_name);
1708 }
1709 else
1710 {
1711 /* Usually, TYPE_CODE(tp) is already type_code. The main
1712 exception is if we guessed wrong re struct/union/enum. */
1713 if (tp->code () != type_code)
1714 {
1715 bad_tag_guess_complaint (sym_name);
1716 tp->set_code (type_code);
1717 }
1718 if (tp->name () == NULL
1719 || strcmp (tp->name (), name) != 0)
1720 tp->set_name (obstack_strdup (&mdebugread_objfile->objfile_obstack,
1721 name));
1722 }
1723 }
1724 if (t->bt == btTypedef)
1725 {
1726 const char *name;
1727
1728 /* Try to cross reference this type, it should succeed. */
1729 ax += cross_ref (fd, ax, &tp, type_code, &name, bigend, sym_name);
1730 if (tp == NULL)
1731 {
1732 complaint (_("unable to cross ref btTypedef for %s"), sym_name);
1733 tp = basic_type (btInt, mdebugread_objfile);
1734 }
1735 }
1736
1737 /* Deal with range types. */
1738 if (t->bt == btRange)
1739 {
1740 tp->set_num_fields (0);
1741 tp->set_bounds (((struct range_bounds *)
1742 TYPE_ZALLOC (tp, sizeof (struct range_bounds))));
1743 tp->bounds ()->low.set_const_val (AUX_GET_DNLOW (bigend, ax));
1744 ax++;
1745 tp->bounds ()->high.set_const_val (AUX_GET_DNHIGH (bigend, ax));
1746 ax++;
1747 }
1748
1749 /* Parse all the type qualifiers now. If there are more
1750 than 6 the game will continue in the next aux. */
1751
1752 while (1)
1753 {
1754 #define PARSE_TQ(tq) \
1755 if (t->tq != tqNil) \
1756 ax += upgrade_type(fd, &tp, t->tq, ax, bigend, sym_name); \
1757 else \
1758 break;
1759
1760 PARSE_TQ (tq0);
1761 PARSE_TQ (tq1);
1762 PARSE_TQ (tq2);
1763 PARSE_TQ (tq3);
1764 PARSE_TQ (tq4);
1765 PARSE_TQ (tq5);
1766 #undef PARSE_TQ
1767
1768 /* mips cc 2.x and gcc never put out continued aux entries. */
1769 if (!t->continued)
1770 break;
1771
1772 (*debug_swap->swap_tir_in) (bigend, &ax->a_ti, t);
1773 ax++;
1774 }
1775
1776 /* Complain for illegal continuations due to corrupt aux entries. */
1777 if (t->continued)
1778 complaint (_("illegal TIR continued for %s"), sym_name);
1779
1780 return tp;
1781 }
1782
1783 /* Make up a complex type from a basic one. Type is passed by
1784 reference in TPP and side-effected as necessary. The type
1785 qualifier TQ says how to handle the aux symbols at AX for
1786 the symbol SX we are currently analyzing. BIGEND says whether
1787 aux symbols are big-endian or little-endian.
1788 Returns the number of aux symbols we parsed. */
1789
1790 static int
1791 upgrade_type (int fd, struct type **tpp, int tq, union aux_ext *ax, int bigend,
1792 const char *sym_name)
1793 {
1794 int off;
1795 struct type *t;
1796
1797 /* Used in array processing. */
1798 int rf, id;
1799 FDR *fh;
1800 struct type *range;
1801 struct type *indx;
1802 int lower, upper;
1803 RNDXR rndx;
1804
1805 switch (tq)
1806 {
1807 case tqPtr:
1808 t = lookup_pointer_type (*tpp);
1809 *tpp = t;
1810 return 0;
1811
1812 case tqProc:
1813 t = lookup_function_type (*tpp);
1814 *tpp = t;
1815 return 0;
1816
1817 case tqArray:
1818 off = 0;
1819
1820 /* Determine and record the domain type (type of index). */
1821 (*debug_swap->swap_rndx_in) (bigend, &ax->a_rndx, &rndx);
1822 id = rndx.index;
1823 rf = rndx.rfd;
1824 if (rf == 0xfff)
1825 {
1826 ax++;
1827 rf = AUX_GET_ISYM (bigend, ax);
1828 off++;
1829 }
1830 fh = get_rfd (fd, rf);
1831
1832 indx = parse_type (fh - debug_info->fdr,
1833 debug_info->external_aux + fh->iauxBase,
1834 id, NULL, bigend, sym_name);
1835
1836 /* The bounds type should be an integer type, but might be anything
1837 else due to corrupt aux entries. */
1838 if (indx->code () != TYPE_CODE_INT)
1839 {
1840 complaint (_("illegal array index type for %s, assuming int"),
1841 sym_name);
1842 indx = objfile_type (mdebugread_objfile)->builtin_int;
1843 }
1844
1845 /* Get the bounds, and create the array type. */
1846 ax++;
1847 lower = AUX_GET_DNLOW (bigend, ax);
1848 ax++;
1849 upper = AUX_GET_DNHIGH (bigend, ax);
1850 ax++;
1851 rf = AUX_GET_WIDTH (bigend, ax); /* bit size of array element */
1852
1853 range = create_static_range_type (NULL, indx, lower, upper);
1854
1855 t = create_array_type (NULL, *tpp, range);
1856
1857 /* We used to fill in the supplied array element bitsize
1858 here if the TYPE_LENGTH of the target type was zero.
1859 This happens for a `pointer to an array of anonymous structs',
1860 but in this case the array element bitsize is also zero,
1861 so nothing is gained.
1862 And we used to check the TYPE_LENGTH of the target type against
1863 the supplied array element bitsize.
1864 gcc causes a mismatch for `pointer to array of object',
1865 since the sdb directives it uses do not have a way of
1866 specifying the bitsize, but it does no harm (the
1867 TYPE_LENGTH should be correct) and we should be able to
1868 ignore the erroneous bitsize from the auxiliary entry safely.
1869 dbx seems to ignore it too. */
1870
1871 /* TYPE_TARGET_STUB now takes care of the zero TYPE_LENGTH problem. */
1872 if (TYPE_LENGTH (*tpp) == 0)
1873 t->set_target_is_stub (true);
1874
1875 *tpp = t;
1876 return 4 + off;
1877
1878 case tqVol:
1879 /* Volatile -- currently ignored */
1880 return 0;
1881
1882 case tqConst:
1883 /* Const -- currently ignored */
1884 return 0;
1885
1886 default:
1887 complaint (_("unknown type qualifier 0x%x"), tq);
1888 return 0;
1889 }
1890 }
1891
1892
1893 /* Parse a procedure descriptor record PR. Note that the procedure is
1894 parsed _after_ the local symbols, now we just insert the extra
1895 information we need into a MDEBUG_EFI_SYMBOL_NAME symbol that has
1896 already been placed in the procedure's main block. Note also that
1897 images that have been partially stripped (ld -x) have been deprived
1898 of local symbols, and we have to cope with them here. FIRST_OFF is
1899 the offset of the first procedure for this FDR; we adjust the
1900 address by this amount, but I don't know why. SEARCH_SYMTAB is the symtab
1901 to look for the function which contains the MDEBUG_EFI_SYMBOL_NAME symbol
1902 in question, or NULL to use top_stack->cur_block. */
1903
1904 static void
1905 parse_procedure (PDR *pr, struct compunit_symtab *search_symtab,
1906 legacy_psymtab *pst)
1907 {
1908 struct symbol *s, *i;
1909 const struct block *b;
1910 char *sh_name;
1911
1912 /* Simple rule to find files linked "-x". */
1913 if (cur_fdr->rss == -1)
1914 {
1915 if (pr->isym == -1)
1916 {
1917 /* Static procedure at address pr->adr. Sigh. */
1918 /* FIXME-32x64. assuming pr->adr fits in long. */
1919 complaint (_("can't handle PDR for static proc at 0x%lx"),
1920 (unsigned long) pr->adr);
1921 return;
1922 }
1923 else
1924 {
1925 /* external */
1926 EXTR she;
1927
1928 (*debug_swap->swap_ext_in) (cur_bfd,
1929 ((char *) debug_info->external_ext
1930 + (pr->isym
1931 * debug_swap->external_ext_size)),
1932 &she);
1933 sh_name = debug_info->ssext + she.asym.iss;
1934 }
1935 }
1936 else
1937 {
1938 /* Full symbols */
1939 SYMR sh;
1940
1941 (*debug_swap->swap_sym_in) (cur_bfd,
1942 ((char *) debug_info->external_sym
1943 + ((cur_fdr->isymBase + pr->isym)
1944 * debug_swap->external_sym_size)),
1945 &sh);
1946 sh_name = debug_info->ss + cur_fdr->issBase + sh.iss;
1947 }
1948
1949 if (search_symtab != NULL)
1950 {
1951 #if 0
1952 /* This loses both in the case mentioned (want a static, find a global),
1953 but also if we are looking up a non-mangled name which happens to
1954 match the name of a mangled function. */
1955 /* We have to save the cur_fdr across the call to lookup_symbol.
1956 If the pdr is for a static function and if a global function with
1957 the same name exists, lookup_symbol will eventually read in the symtab
1958 for the global function and clobber cur_fdr. */
1959 FDR *save_cur_fdr = cur_fdr;
1960
1961 s = lookup_symbol (sh_name, NULL, VAR_DOMAIN, 0);
1962 cur_fdr = save_cur_fdr;
1963 #else
1964 s = mylookup_symbol
1965 (sh_name,
1966 BLOCKVECTOR_BLOCK (COMPUNIT_BLOCKVECTOR (search_symtab),
1967 STATIC_BLOCK),
1968 VAR_DOMAIN,
1969 LOC_BLOCK);
1970 #endif
1971 }
1972 else
1973 s = mylookup_symbol (sh_name, top_stack->cur_block,
1974 VAR_DOMAIN, LOC_BLOCK);
1975
1976 if (s != 0)
1977 {
1978 b = SYMBOL_BLOCK_VALUE (s);
1979 }
1980 else
1981 {
1982 complaint (_("PDR for %s, but no symbol"), sh_name);
1983 #if 1
1984 return;
1985 #else
1986 /* FIXME -- delete. We can't do symbol allocation now; it's all done. */
1987 s = new_symbol (sh_name);
1988 SYMBOL_DOMAIN (s) = VAR_DOMAIN;
1989 SYMBOL_CLASS (s) = LOC_BLOCK;
1990 /* Don't know its type, hope int is ok. */
1991 SYMBOL_TYPE (s)
1992 = lookup_function_type (objfile_type (pst->objfile)->builtin_int);
1993 add_symbol (s, top_stack->cur_st, top_stack->cur_block);
1994 /* Won't have symbols for this one. */
1995 b = new_block (2);
1996 SYMBOL_BLOCK_VALUE (s) = b;
1997 BLOCK_FUNCTION (b) = s;
1998 BLOCK_START (b) = pr->adr;
1999 /* BOUND used to be the end of procedure's text, but the
2000 argument is no longer passed in. */
2001 BLOCK_END (b) = bound;
2002 BLOCK_SUPERBLOCK (b) = top_stack->cur_block;
2003 add_block (b, top_stack->cur_st);
2004 #endif
2005 }
2006
2007 i = mylookup_symbol (MDEBUG_EFI_SYMBOL_NAME, b, LABEL_DOMAIN, LOC_CONST);
2008
2009 if (i)
2010 {
2011 struct mdebug_extra_func_info *e;
2012
2013 e = (struct mdebug_extra_func_info *) SYMBOL_VALUE_BYTES (i);
2014 e->pdr = *pr;
2015
2016 /* GDB expects the absolute function start address for the
2017 procedure descriptor in e->pdr.adr.
2018 As the address in the procedure descriptor is usually relative,
2019 we would have to relocate e->pdr.adr with cur_fdr->adr.
2020 Unfortunately cur_fdr->adr and e->pdr.adr are both absolute
2021 in shared libraries on some systems, and on other systems
2022 e->pdr.adr is sometimes offset by a bogus value.
2023 To work around these problems, we replace e->pdr.adr with
2024 the start address of the function. */
2025 e->pdr.adr = BLOCK_START (b);
2026 }
2027
2028 /* It would be reasonable that functions that have been compiled
2029 without debugging info have a btNil type for their return value,
2030 and functions that are void and are compiled with debugging info
2031 have btVoid.
2032 gcc and DEC f77 put out btNil types for both cases, so btNil is mapped
2033 to TYPE_CODE_VOID in parse_type to get the `compiled with debugging info'
2034 case right.
2035 The glevel field in cur_fdr could be used to determine the presence
2036 of debugging info, but GCC doesn't always pass the -g switch settings
2037 to the assembler and GAS doesn't set the glevel field from the -g switch
2038 settings.
2039 To work around these problems, the return value type of a TYPE_CODE_VOID
2040 function is adjusted accordingly if no debugging info was found in the
2041 compilation unit. */
2042
2043 if (processing_gcc_compilation == 0
2044 && found_ecoff_debugging_info == 0
2045 && TYPE_TARGET_TYPE (SYMBOL_TYPE (s))->code () == TYPE_CODE_VOID)
2046 SYMBOL_TYPE (s) = objfile_type (mdebugread_objfile)->nodebug_text_symbol;
2047 }
2048
2049 /* Parse the external symbol ES. Just call parse_symbol() after
2050 making sure we know where the aux are for it.
2051 BIGEND says whether aux entries are big-endian or little-endian.
2052
2053 This routine clobbers top_stack->cur_block and ->cur_st. */
2054
2055 static void
2056 parse_external (EXTR *es, int bigend, const section_offsets &section_offsets,
2057 struct objfile *objfile)
2058 {
2059 union aux_ext *ax;
2060
2061 if (es->ifd != ifdNil)
2062 {
2063 cur_fd = es->ifd;
2064 cur_fdr = debug_info->fdr + cur_fd;
2065 ax = debug_info->external_aux + cur_fdr->iauxBase;
2066 }
2067 else
2068 {
2069 cur_fdr = debug_info->fdr;
2070 ax = 0;
2071 }
2072
2073 /* Reading .o files */
2074 if (SC_IS_UNDEF (es->asym.sc) || es->asym.sc == scNil)
2075 {
2076 const char *what;
2077 switch (es->asym.st)
2078 {
2079 case stNil:
2080 /* These are generated for static symbols in .o files,
2081 ignore them. */
2082 return;
2083 case stStaticProc:
2084 case stProc:
2085 what = "procedure";
2086 n_undef_procs++;
2087 break;
2088 case stGlobal:
2089 what = "variable";
2090 n_undef_vars++;
2091 break;
2092 case stLabel:
2093 what = "label";
2094 n_undef_labels++;
2095 break;
2096 default:
2097 what = "symbol";
2098 break;
2099 }
2100 n_undef_symbols++;
2101 /* FIXME: Turn this into a complaint? */
2102 if (info_verbose)
2103 printf_filtered (_("Warning: %s `%s' is undefined (in %s)\n"),
2104 what, debug_info->ssext + es->asym.iss,
2105 fdr_name (cur_fdr));
2106 return;
2107 }
2108
2109 switch (es->asym.st)
2110 {
2111 case stProc:
2112 case stStaticProc:
2113 /* There is no need to parse the external procedure symbols.
2114 If they are from objects compiled without -g, their index will
2115 be indexNil, and the symbol definition from the minimal symbol
2116 is preferrable (yielding a function returning int instead of int).
2117 If the index points to a local procedure symbol, the local
2118 symbol already provides the correct type.
2119 Note that the index of the external procedure symbol points
2120 to the local procedure symbol in the local symbol table, and
2121 _not_ to the auxiliary symbol info. */
2122 break;
2123 case stGlobal:
2124 case stLabel:
2125 /* Global common symbols are resolved by the runtime loader,
2126 ignore them. */
2127 if (SC_IS_COMMON (es->asym.sc))
2128 break;
2129
2130 /* Note that the case of a symbol with indexNil must be handled
2131 anyways by parse_symbol(). */
2132 parse_symbol (&es->asym, ax, NULL,
2133 bigend, section_offsets, objfile);
2134 break;
2135 default:
2136 break;
2137 }
2138 }
2139
2140 /* Parse the line number info for file descriptor FH into
2141 GDB's linetable LT. MIPS' encoding requires a little bit
2142 of magic to get things out. Note also that MIPS' line
2143 numbers can go back and forth, apparently we can live
2144 with that and do not need to reorder our linetables. */
2145
2146 static void
2147 parse_lines (FDR *fh, PDR *pr, struct linetable *lt, int maxlines,
2148 CORE_ADDR textlow, CORE_ADDR lowest_pdr_addr)
2149 {
2150 unsigned char *base;
2151 int j, k;
2152 int delta, count, lineno = 0;
2153
2154 if (fh->cbLine == 0)
2155 return;
2156
2157 /* Scan by procedure descriptors. */
2158 k = 0;
2159 for (j = 0; j < fh->cpd; j++, pr++)
2160 {
2161 CORE_ADDR l;
2162 CORE_ADDR adr;
2163 unsigned char *halt;
2164
2165 /* No code for this one. */
2166 if (pr->iline == ilineNil ||
2167 pr->lnLow == -1 || pr->lnHigh == -1)
2168 continue;
2169
2170 /* Determine start and end address of compressed line bytes for
2171 this procedure. */
2172 base = debug_info->line + fh->cbLineOffset;
2173 if (j != (fh->cpd - 1))
2174 halt = base + pr[1].cbLineOffset;
2175 else
2176 halt = base + fh->cbLine;
2177 base += pr->cbLineOffset;
2178
2179 adr = textlow + pr->adr - lowest_pdr_addr;
2180
2181 l = adr >> 2; /* in words */
2182 for (lineno = pr->lnLow; base < halt;)
2183 {
2184 count = *base & 0x0f;
2185 delta = *base++ >> 4;
2186 if (delta >= 8)
2187 delta -= 16;
2188 if (delta == -8)
2189 {
2190 delta = (base[0] << 8) | base[1];
2191 if (delta >= 0x8000)
2192 delta -= 0x10000;
2193 base += 2;
2194 }
2195 lineno += delta; /* first delta is 0 */
2196
2197 /* Complain if the line table overflows. Could happen
2198 with corrupt binaries. */
2199 if (lt->nitems >= maxlines)
2200 {
2201 complaint (_("guessed size of linetable for %s incorrectly"),
2202 fdr_name (fh));
2203 break;
2204 }
2205 k = add_line (lt, lineno, l, k);
2206 l += count + 1;
2207 }
2208 }
2209 }
2210 \f
2211 static void
2212 function_outside_compilation_unit_complaint (const char *arg1)
2213 {
2214 complaint (_("function `%s' appears to be defined "
2215 "outside of all compilation units"),
2216 arg1);
2217 }
2218
2219 /* Use the STORAGE_CLASS to compute which section the given symbol
2220 belongs to, and then records this new minimal symbol. */
2221
2222 static void
2223 record_minimal_symbol (minimal_symbol_reader &reader,
2224 const char *name, const CORE_ADDR address,
2225 enum minimal_symbol_type ms_type, int storage_class,
2226 struct objfile *objfile)
2227 {
2228 int section;
2229
2230 switch (storage_class)
2231 {
2232 case scText:
2233 section = SECT_OFF_TEXT (objfile);
2234 break;
2235 case scData:
2236 section = SECT_OFF_DATA (objfile);
2237 break;
2238 case scBss:
2239 section = SECT_OFF_BSS (objfile);
2240 break;
2241 case scSData:
2242 section = get_section_index (objfile, ".sdata");
2243 break;
2244 case scSBss:
2245 section = get_section_index (objfile, ".sbss");
2246 break;
2247 case scRData:
2248 section = get_section_index (objfile, ".rdata");
2249 break;
2250 case scInit:
2251 section = get_section_index (objfile, ".init");
2252 break;
2253 case scXData:
2254 section = get_section_index (objfile, ".xdata");
2255 break;
2256 case scPData:
2257 section = get_section_index (objfile, ".pdata");
2258 break;
2259 case scFini:
2260 section = get_section_index (objfile, ".fini");
2261 break;
2262 case scRConst:
2263 section = get_section_index (objfile, ".rconst");
2264 break;
2265 #ifdef scTlsData
2266 case scTlsData:
2267 section = get_section_index (objfile, ".tlsdata");
2268 break;
2269 #endif
2270 #ifdef scTlsBss
2271 case scTlsBss:
2272 section = get_section_index (objfile, ".tlsbss");
2273 break;
2274 #endif
2275 default:
2276 /* This kind of symbol is not associated to a section. */
2277 section = -1;
2278 }
2279
2280 reader.record_with_info (name, address, ms_type, section);
2281 }
2282
2283 /* Master parsing procedure for first-pass reading of file symbols
2284 into a partial_symtab. */
2285
2286 static void
2287 parse_partial_symbols (minimal_symbol_reader &reader,
2288 psymtab_storage *partial_symtabs,
2289 struct objfile *objfile)
2290 {
2291 struct gdbarch *gdbarch = objfile->arch ();
2292 const bfd_size_type external_sym_size = debug_swap->external_sym_size;
2293 const bfd_size_type external_rfd_size = debug_swap->external_rfd_size;
2294 const bfd_size_type external_ext_size = debug_swap->external_ext_size;
2295 void (*const swap_ext_in) (bfd *, void *, EXTR *) = debug_swap->swap_ext_in;
2296 void (*const swap_sym_in) (bfd *, void *, SYMR *) = debug_swap->swap_sym_in;
2297 void (*const swap_rfd_in) (bfd *, void *, RFDT *) = debug_swap->swap_rfd_in;
2298 int f_idx, s_idx;
2299 HDRR *hdr = &debug_info->symbolic_header;
2300 /* Running pointers */
2301 FDR *fh;
2302 char *ext_out;
2303 char *ext_out_end;
2304 EXTR *ext_in;
2305 EXTR *ext_in_end;
2306 SYMR sh;
2307 legacy_psymtab *pst;
2308 int textlow_not_set = 1;
2309
2310 /* List of current psymtab's include files. */
2311 const char **psymtab_include_list;
2312 int includes_allocated;
2313 int includes_used;
2314 EXTR *extern_tab;
2315 struct pst_map *fdr_to_pst;
2316 /* Index within current psymtab dependency list. */
2317 legacy_psymtab **dependency_list;
2318 int dependencies_used, dependencies_allocated;
2319 char *name;
2320 enum language prev_language;
2321 asection *text_sect;
2322 int relocatable = 0;
2323
2324 /* Irix 5.2 shared libraries have a fh->adr field of zero, but
2325 the shared libraries are prelinked at a high memory address.
2326 We have to adjust the start address of the object file for this case,
2327 by setting it to the start address of the first procedure in the file.
2328 But we should do no adjustments if we are debugging a .o file, where
2329 the text section (and fh->adr) really starts at zero. */
2330 text_sect = bfd_get_section_by_name (cur_bfd, ".text");
2331 if (text_sect != NULL
2332 && (bfd_section_flags (text_sect) & SEC_RELOC))
2333 relocatable = 1;
2334
2335 extern_tab = XOBNEWVEC (&objfile->objfile_obstack, EXTR, hdr->iextMax);
2336
2337 includes_allocated = 30;
2338 includes_used = 0;
2339 psymtab_include_list = (const char **) alloca (includes_allocated *
2340 sizeof (const char *));
2341 next_symbol_text_func = mdebug_next_symbol_text;
2342
2343 dependencies_allocated = 30;
2344 dependencies_used = 0;
2345 dependency_list =
2346 (legacy_psymtab **) alloca (dependencies_allocated *
2347 sizeof (legacy_psymtab *));
2348
2349 set_last_source_file (NULL);
2350
2351 /*
2352 * Big plan:
2353 *
2354 * Only parse the Local and External symbols, and the Relative FDR.
2355 * Fixup enough of the loader symtab to be able to use it.
2356 * Allocate space only for the file's portions we need to
2357 * look at. (XXX)
2358 */
2359
2360 max_gdbinfo = 0;
2361 max_glevel = MIN_GLEVEL;
2362
2363 /* Allocate the map FDR -> PST.
2364 Minor hack: -O3 images might claim some global data belongs
2365 to FDR -1. We`ll go along with that. */
2366 gdb::def_vector<struct pst_map> fdr_to_pst_holder (hdr->ifdMax + 1);
2367 fdr_to_pst = fdr_to_pst_holder.data ();
2368 fdr_to_pst++;
2369 {
2370 legacy_psymtab *new_pst = new_psymtab ("", partial_symtabs, objfile);
2371
2372 fdr_to_pst[-1].pst = new_pst;
2373 FDR_IDX (new_pst) = -1;
2374 }
2375
2376 /* Allocate the global pending list. */
2377 pending_list = XOBNEWVEC (&objfile->objfile_obstack, mdebug_pending *,
2378 hdr->ifdMax);
2379 memset (pending_list, 0,
2380 hdr->ifdMax * sizeof (struct mdebug_pending *));
2381
2382 /* Pass 0 over external syms: swap them in. */
2383 gdb::def_vector<EXTR> ext_block (hdr->iextMax);
2384
2385 ext_out = (char *) debug_info->external_ext;
2386 ext_out_end = ext_out + hdr->iextMax * external_ext_size;
2387 ext_in = ext_block.data ();
2388 for (; ext_out < ext_out_end; ext_out += external_ext_size, ext_in++)
2389 (*swap_ext_in) (cur_bfd, ext_out, ext_in);
2390
2391 /* Pass 1 over external syms: Presize and partition the list. */
2392 ext_in = ext_block.data ();
2393 ext_in_end = ext_in + hdr->iextMax;
2394 for (; ext_in < ext_in_end; ext_in++)
2395 {
2396 /* See calls to complain below. */
2397 if (ext_in->ifd >= -1
2398 && ext_in->ifd < hdr->ifdMax
2399 && ext_in->asym.iss >= 0
2400 && ext_in->asym.iss < hdr->issExtMax)
2401 fdr_to_pst[ext_in->ifd].n_globals++;
2402 }
2403
2404 /* Pass 1.5 over files: partition out global symbol space. */
2405 s_idx = 0;
2406 for (f_idx = -1; f_idx < hdr->ifdMax; f_idx++)
2407 {
2408 fdr_to_pst[f_idx].globals_offset = s_idx;
2409 s_idx += fdr_to_pst[f_idx].n_globals;
2410 fdr_to_pst[f_idx].n_globals = 0;
2411 }
2412
2413 /* ECOFF in ELF:
2414
2415 For ECOFF in ELF, we skip the creation of the minimal symbols.
2416 The ECOFF symbols should be a subset of the Elf symbols, and the
2417 section information of the elf symbols will be more accurate.
2418 FIXME! What about Irix 5's native linker?
2419
2420 By default, Elf sections which don't exist in ECOFF
2421 get put in ECOFF's absolute section by the gnu linker.
2422 Since absolute sections don't get relocated, we
2423 end up calculating an address different from that of
2424 the symbol's minimal symbol (created earlier from the
2425 Elf symtab).
2426
2427 To fix this, either :
2428 1) don't create the duplicate symbol
2429 (assumes ECOFF symtab is a subset of the ELF symtab;
2430 assumes no side-effects result from ignoring ECOFF symbol)
2431 2) create it, only if lookup for existing symbol in ELF's minimal
2432 symbols fails
2433 (inefficient;
2434 assumes no side-effects result from ignoring ECOFF symbol)
2435 3) create it, but lookup ELF's minimal symbol and use it's section
2436 during relocation, then modify "uniquify" phase to merge and
2437 eliminate the duplicate symbol
2438 (highly inefficient)
2439
2440 I've implemented #1 here...
2441 Skip the creation of the minimal symbols based on the ECOFF
2442 symbol table. */
2443
2444 /* Pass 2 over external syms: fill in external symbols. */
2445 ext_in = ext_block.data ();
2446 ext_in_end = ext_in + hdr->iextMax;
2447 for (; ext_in < ext_in_end; ext_in++)
2448 {
2449 enum minimal_symbol_type ms_type = mst_text;
2450 CORE_ADDR svalue = ext_in->asym.value;
2451
2452 /* The Irix 5 native tools seem to sometimes generate bogus
2453 external symbols. */
2454 if (ext_in->ifd < -1 || ext_in->ifd >= hdr->ifdMax)
2455 {
2456 complaint (_("bad ifd for external symbol: %d (max %ld)"),
2457 ext_in->ifd, hdr->ifdMax);
2458 continue;
2459 }
2460 if (ext_in->asym.iss < 0 || ext_in->asym.iss >= hdr->issExtMax)
2461 {
2462 complaint (_("bad iss for external symbol: %ld (max %ld)"),
2463 ext_in->asym.iss, hdr->issExtMax);
2464 continue;
2465 }
2466
2467 extern_tab[fdr_to_pst[ext_in->ifd].globals_offset
2468 + fdr_to_pst[ext_in->ifd].n_globals++] = *ext_in;
2469
2470
2471 if (SC_IS_UNDEF (ext_in->asym.sc) || ext_in->asym.sc == scNil)
2472 continue;
2473
2474
2475 /* Pass 3 over files, over local syms: fill in static symbols. */
2476 name = debug_info->ssext + ext_in->asym.iss;
2477
2478 /* Process ECOFF Symbol Types and Storage Classes. */
2479 switch (ext_in->asym.st)
2480 {
2481 case stProc:
2482 /* Beginnning of Procedure */
2483 break;
2484 case stStaticProc:
2485 /* Load time only static procs */
2486 ms_type = mst_file_text;
2487 break;
2488 case stGlobal:
2489 /* External symbol */
2490 if (SC_IS_COMMON (ext_in->asym.sc))
2491 {
2492 /* The value of a common symbol is its size, not its address.
2493 Ignore it. */
2494 continue;
2495 }
2496 else if (SC_IS_DATA (ext_in->asym.sc))
2497 {
2498 ms_type = mst_data;
2499 }
2500 else if (SC_IS_BSS (ext_in->asym.sc))
2501 {
2502 ms_type = mst_bss;
2503 }
2504 else if (SC_IS_SBSS (ext_in->asym.sc))
2505 {
2506 ms_type = mst_bss;
2507 }
2508 else
2509 ms_type = mst_abs;
2510 break;
2511 case stLabel:
2512 /* Label */
2513
2514 /* On certain platforms, some extra label symbols can be
2515 generated by the linker. One possible usage for this kind
2516 of symbols is to represent the address of the begining of a
2517 given section. For instance, on Tru64 5.1, the address of
2518 the _ftext label is the start address of the .text section.
2519
2520 The storage class of these symbols is usually directly
2521 related to the section to which the symbol refers. For
2522 instance, on Tru64 5.1, the storage class for the _fdata
2523 label is scData, refering to the .data section.
2524
2525 It is actually possible that the section associated to the
2526 storage class of the label does not exist. On True64 5.1
2527 for instance, the libm.so shared library does not contain
2528 any .data section, although it contains a _fpdata label
2529 which storage class is scData... Since these symbols are
2530 usually useless for the debugger user anyway, we just
2531 discard these symbols. */
2532
2533 if (SC_IS_TEXT (ext_in->asym.sc))
2534 {
2535 if (objfile->sect_index_text == -1)
2536 continue;
2537
2538 ms_type = mst_file_text;
2539 }
2540 else if (SC_IS_DATA (ext_in->asym.sc))
2541 {
2542 if (objfile->sect_index_data == -1)
2543 continue;
2544
2545 ms_type = mst_file_data;
2546 }
2547 else if (SC_IS_BSS (ext_in->asym.sc))
2548 {
2549 if (objfile->sect_index_bss == -1)
2550 continue;
2551
2552 ms_type = mst_file_bss;
2553 }
2554 else if (SC_IS_SBSS (ext_in->asym.sc))
2555 {
2556 const int sbss_sect_index = get_section_index (objfile, ".sbss");
2557
2558 if (sbss_sect_index == -1)
2559 continue;
2560
2561 ms_type = mst_file_bss;
2562 }
2563 else
2564 ms_type = mst_abs;
2565 break;
2566 case stLocal:
2567 case stNil:
2568 /* The alpha has the section start addresses in stLocal symbols
2569 whose name starts with a `.'. Skip those but complain for all
2570 other stLocal symbols.
2571 Irix6 puts the section start addresses in stNil symbols, skip
2572 those too. */
2573 if (name[0] == '.')
2574 continue;
2575 /* Fall through. */
2576 default:
2577 ms_type = mst_unknown;
2578 unknown_ext_complaint (name);
2579 }
2580 if (!ECOFF_IN_ELF (cur_bfd))
2581 record_minimal_symbol (reader, name, svalue, ms_type, ext_in->asym.sc,
2582 objfile);
2583 }
2584
2585 /* Pass 3 over files, over local syms: fill in static symbols. */
2586 for (f_idx = 0; f_idx < hdr->ifdMax; f_idx++)
2587 {
2588 legacy_psymtab *save_pst;
2589 EXTR *ext_ptr;
2590 CORE_ADDR textlow;
2591
2592 cur_fdr = fh = debug_info->fdr + f_idx;
2593
2594 if (fh->csym == 0)
2595 {
2596 fdr_to_pst[f_idx].pst = NULL;
2597 continue;
2598 }
2599
2600 /* Determine the start address for this object file from the
2601 file header and relocate it, except for Irix 5.2 zero fh->adr. */
2602 if (fh->cpd)
2603 textlow = fh->adr;
2604 else
2605 textlow = 0;
2606 pst = new legacy_psymtab (fdr_name (fh), partial_symtabs, objfile,
2607 textlow);
2608 pst->read_symtab_private = XOBNEW (&objfile->objfile_obstack, symloc);
2609 memset (pst->read_symtab_private, 0, sizeof (struct symloc));
2610
2611 save_pst = pst;
2612 FDR_IDX (pst) = f_idx;
2613 CUR_BFD (pst) = cur_bfd;
2614 DEBUG_SWAP (pst) = debug_swap;
2615 DEBUG_INFO (pst) = debug_info;
2616 PENDING_LIST (pst) = pending_list;
2617
2618 /* The way to turn this into a symtab is to call... */
2619 pst->legacy_read_symtab = mdebug_read_symtab;
2620 pst->legacy_expand_psymtab = mdebug_expand_psymtab;
2621
2622 /* Set up language for the pst.
2623 The language from the FDR is used if it is unambigious (e.g. cfront
2624 with native cc and g++ will set the language to C).
2625 Otherwise we have to deduce the language from the filename.
2626 Native ecoff has every header file in a separate FDR, so
2627 deduce_language_from_filename will return language_unknown for
2628 a header file, which is not what we want.
2629 But the FDRs for the header files are after the FDR for the source
2630 file, so we can assign the language of the source file to the
2631 following header files. Then we save the language in the private
2632 pst data so that we can reuse it when building symtabs. */
2633 prev_language = psymtab_language;
2634
2635 switch (fh->lang)
2636 {
2637 case langCplusplusV2:
2638 psymtab_language = language_cplus;
2639 break;
2640 default:
2641 psymtab_language = deduce_language_from_filename (fdr_name (fh));
2642 break;
2643 }
2644 if (psymtab_language == language_unknown)
2645 psymtab_language = prev_language;
2646 PST_PRIVATE (pst)->pst_language = psymtab_language;
2647
2648 pst->set_text_high (pst->raw_text_low ());
2649
2650 /* For stabs-in-ecoff files, the second symbol must be @stab.
2651 This symbol is emitted by mips-tfile to signal that the
2652 current object file uses encapsulated stabs instead of mips
2653 ecoff for local symbols. (It is the second symbol because
2654 the first symbol is the stFile used to signal the start of a
2655 file). */
2656 processing_gcc_compilation = 0;
2657 if (fh->csym >= 2)
2658 {
2659 (*swap_sym_in) (cur_bfd,
2660 ((char *) debug_info->external_sym
2661 + (fh->isymBase + 1) * external_sym_size),
2662 &sh);
2663 if (strcmp (debug_info->ss + fh->issBase + sh.iss,
2664 stabs_symbol) == 0)
2665 processing_gcc_compilation = 2;
2666 }
2667
2668 if (processing_gcc_compilation != 0)
2669 {
2670 for (cur_sdx = 2; cur_sdx < fh->csym; cur_sdx++)
2671 {
2672 int type_code;
2673 const char *namestring;
2674
2675 (*swap_sym_in) (cur_bfd,
2676 (((char *) debug_info->external_sym)
2677 + (fh->isymBase + cur_sdx) * external_sym_size),
2678 &sh);
2679 type_code = ECOFF_UNMARK_STAB (sh.index);
2680 if (!ECOFF_IS_STAB (&sh))
2681 {
2682 if (sh.st == stProc || sh.st == stStaticProc)
2683 {
2684 CORE_ADDR procaddr;
2685 long isym;
2686
2687 if (sh.st == stStaticProc)
2688 {
2689 namestring = debug_info->ss + fh->issBase + sh.iss;
2690 record_minimal_symbol (reader, namestring, sh.value,
2691 mst_file_text, sh.sc,
2692 objfile);
2693 }
2694 procaddr = sh.value;
2695
2696 isym = AUX_GET_ISYM (fh->fBigendian,
2697 (debug_info->external_aux
2698 + fh->iauxBase
2699 + sh.index));
2700 (*swap_sym_in) (cur_bfd,
2701 ((char *) debug_info->external_sym
2702 + ((fh->isymBase + isym - 1)
2703 * external_sym_size)),
2704 &sh);
2705 if (sh.st == stEnd)
2706 {
2707 CORE_ADDR high = procaddr + sh.value;
2708
2709 /* Kludge for Irix 5.2 zero fh->adr. */
2710 if (!relocatable
2711 && (!pst->text_low_valid
2712 || procaddr < pst->raw_text_low ()))
2713 pst->set_text_low (procaddr);
2714 if (high > pst->raw_text_high ())
2715 pst->set_text_high (high);
2716 }
2717 }
2718 else if (sh.st == stStatic)
2719 {
2720 switch (sh.sc)
2721 {
2722 case scUndefined:
2723 case scSUndefined:
2724 case scNil:
2725 case scAbs:
2726 break;
2727
2728 case scData:
2729 case scSData:
2730 case scRData:
2731 case scPData:
2732 case scXData:
2733 namestring = debug_info->ss + fh->issBase + sh.iss;
2734 record_minimal_symbol (reader, namestring, sh.value,
2735 mst_file_data, sh.sc,
2736 objfile);
2737 break;
2738
2739 default:
2740 /* FIXME! Shouldn't this use cases for bss,
2741 then have the default be abs? */
2742 namestring = debug_info->ss + fh->issBase + sh.iss;
2743 record_minimal_symbol (reader, namestring, sh.value,
2744 mst_file_bss, sh.sc,
2745 objfile);
2746 break;
2747 }
2748 }
2749 continue;
2750 }
2751 /* Handle stabs continuation. */
2752 {
2753 char *stabstring = debug_info->ss + fh->issBase + sh.iss;
2754 /* If we need to heap-allocate STABSTRING, this owns
2755 it. */
2756 gdb::unique_xmalloc_ptr<char> stabstring_storage;
2757 int len = strlen (stabstring);
2758
2759 while (stabstring[len - 1] == '\\')
2760 {
2761 SYMR sh2;
2762 char *stabstring1 = stabstring;
2763 char *stabstring2;
2764 int len2;
2765
2766 /* Ignore continuation char from 1st string. */
2767 len--;
2768
2769 /* Read next stabstring. */
2770 cur_sdx++;
2771 (*swap_sym_in) (cur_bfd,
2772 (((char *) debug_info->external_sym)
2773 + (fh->isymBase + cur_sdx)
2774 * external_sym_size),
2775 &sh2);
2776 stabstring2 = debug_info->ss + fh->issBase + sh2.iss;
2777 len2 = strlen (stabstring2);
2778
2779 /* Concatenate stabstring2 with stabstring1. */
2780 if (stabstring_storage != nullptr)
2781 {
2782 stabstring_storage.reset
2783 ((char *) xrealloc (stabstring_storage.release (),
2784 len + len2 + 1));
2785 stabstring = stabstring_storage.get ();
2786 }
2787 else
2788 {
2789 stabstring_storage.reset
2790 ((char *) xmalloc (len + len2 + 1));
2791 stabstring = stabstring_storage.get ();
2792 strcpy (stabstring, stabstring1);
2793 }
2794 strcpy (stabstring + len, stabstring2);
2795 len += len2;
2796 }
2797
2798 switch (type_code)
2799 {
2800 const char *p;
2801
2802 /* Standard, external, non-debugger, symbols. */
2803
2804 case N_TEXT | N_EXT:
2805 case N_NBTEXT | N_EXT:
2806 goto record_it;
2807
2808 case N_DATA | N_EXT:
2809 case N_NBDATA | N_EXT:
2810 goto record_it;
2811
2812 case N_BSS:
2813 case N_BSS | N_EXT:
2814 case N_NBBSS | N_EXT:
2815 case N_SETV | N_EXT: /* FIXME, is this in BSS? */
2816 goto record_it;
2817
2818 case N_ABS | N_EXT:
2819 record_it:
2820 continue;
2821
2822 /* Standard, local, non-debugger, symbols. */
2823
2824 case N_NBTEXT:
2825
2826 /* We need to be able to deal with both N_FN or
2827 N_TEXT, because we have no way of knowing
2828 whether the sys-supplied ld or GNU ld was used
2829 to make the executable. Sequents throw in
2830 another wrinkle -- they renumbered N_FN. */
2831
2832 case N_FN:
2833 case N_FN_SEQ:
2834 case N_TEXT:
2835 continue;
2836
2837 case N_DATA:
2838 goto record_it;
2839
2840 case N_UNDF | N_EXT:
2841 continue; /* Just undefined, not COMMON. */
2842
2843 case N_UNDF:
2844 continue;
2845
2846 /* Lots of symbol types we can just ignore. */
2847
2848 case N_ABS:
2849 case N_NBDATA:
2850 case N_NBBSS:
2851 continue;
2852
2853 /* Keep going . . . */
2854
2855 /*
2856 * Special symbol types for GNU
2857 */
2858 case N_INDR:
2859 case N_INDR | N_EXT:
2860 case N_SETA:
2861 case N_SETA | N_EXT:
2862 case N_SETT:
2863 case N_SETT | N_EXT:
2864 case N_SETD:
2865 case N_SETD | N_EXT:
2866 case N_SETB:
2867 case N_SETB | N_EXT:
2868 case N_SETV:
2869 continue;
2870
2871 /*
2872 * Debugger symbols
2873 */
2874
2875 case N_SO:
2876 {
2877 static int prev_so_symnum = -10;
2878 const char *basename;
2879
2880 /* A zero value is probably an indication for the
2881 SunPRO 3.0 compiler. dbx_end_psymtab explicitly tests
2882 for zero, so don't relocate it. */
2883
2884 if (sh.value == 0
2885 && gdbarch_sofun_address_maybe_missing (gdbarch))
2886 textlow_not_set = 1;
2887 else
2888 textlow_not_set = 0;
2889
2890 if (prev_so_symnum != symnum - 1)
2891 { /* Here if prev stab wasn't N_SO. */
2892 if (pst)
2893 {
2894 pst = (legacy_psymtab *) 0;
2895 includes_used = 0;
2896 dependencies_used = 0;
2897 }
2898 }
2899
2900 prev_so_symnum = symnum;
2901
2902 /* End the current partial symtab and start a
2903 new one. */
2904
2905 /* SET_NAMESTRING ();*/
2906 namestring = stabstring;
2907
2908 /* Null name means end of .o file. Don't start a new
2909 one. */
2910 if (*namestring == '\000')
2911 continue;
2912
2913 /* Some compilers (including gcc) emit a pair of
2914 initial N_SOs. The first one is a directory name;
2915 the second the file name. If pst exists, is
2916 empty, and has a filename ending in '/', we assume
2917 the previous N_SO was a directory name. */
2918 basename = lbasename (namestring);
2919 if (basename != namestring && *basename == '\000')
2920 continue; /* Simply ignore directory
2921 name SOs. */
2922
2923 /* Some other compilers (C++ ones in particular) emit
2924 useless SOs for non-existant .c files. We ignore
2925 all subsequent SOs that immediately follow the
2926 first. */
2927
2928 if (!pst)
2929 pst = save_pst;
2930 continue;
2931 }
2932
2933 case N_BINCL:
2934 continue;
2935
2936 case N_SOL:
2937 {
2938 enum language tmp_language;
2939
2940 /* Mark down an include file in the current psymtab. */
2941
2942 /* SET_NAMESTRING (); */
2943 namestring = stabstring;
2944
2945 tmp_language
2946 = deduce_language_from_filename (namestring);
2947
2948 /* Only change the psymtab's language if we've
2949 learned something useful (eg. tmp_language is not
2950 language_unknown). In addition, to match what
2951 start_subfile does, never change from C++ to
2952 C. */
2953 if (tmp_language != language_unknown
2954 && (tmp_language != language_c
2955 || psymtab_language != language_cplus))
2956 psymtab_language = tmp_language;
2957
2958 /* In C++, one may expect the same filename to come
2959 round many times, when code is coming alternately
2960 from the main file and from inline functions in
2961 other files. So I check to see if this is a file
2962 we've seen before -- either the main source file,
2963 or a previously included file.
2964
2965 This seems to be a lot of time to be spending on
2966 N_SOL, but things like "break c-exp.y:435" need to
2967 work (I suppose the psymtab_include_list could be
2968 hashed or put in a binary tree, if profiling shows
2969 this is a major hog). */
2970 if (pst && filename_cmp (namestring, pst->filename) == 0)
2971 continue;
2972
2973 {
2974 int i;
2975
2976 for (i = 0; i < includes_used; i++)
2977 if (filename_cmp (namestring,
2978 psymtab_include_list[i]) == 0)
2979 {
2980 i = -1;
2981 break;
2982 }
2983 if (i == -1)
2984 continue;
2985 }
2986
2987 psymtab_include_list[includes_used++] = namestring;
2988 if (includes_used >= includes_allocated)
2989 {
2990 const char **orig = psymtab_include_list;
2991
2992 psymtab_include_list = (const char **)
2993 alloca ((includes_allocated *= 2) *
2994 sizeof (const char *));
2995 memcpy (psymtab_include_list, orig,
2996 includes_used * sizeof (const char *));
2997 }
2998 continue;
2999 }
3000 case N_LSYM: /* Typedef or automatic variable. */
3001 case N_STSYM: /* Data seg var -- static */
3002 case N_LCSYM: /* BSS " */
3003 case N_ROSYM: /* Read-only data seg var -- static. */
3004 case N_NBSTS: /* Gould nobase. */
3005 case N_NBLCS: /* symbols. */
3006 case N_FUN:
3007 case N_GSYM: /* Global (extern) variable; can be
3008 data or bss (sigh FIXME). */
3009
3010 /* Following may probably be ignored; I'll leave them here
3011 for now (until I do Pascal and Modula 2 extensions). */
3012
3013 case N_PC: /* I may or may not need this; I
3014 suspect not. */
3015 case N_M2C: /* I suspect that I can ignore this
3016 here. */
3017 case N_SCOPE: /* Same. */
3018
3019 /* SET_NAMESTRING (); */
3020 namestring = stabstring;
3021 p = (char *) strchr (namestring, ':');
3022 if (!p)
3023 continue; /* Not a debugging symbol. */
3024
3025
3026
3027 /* Main processing section for debugging symbols which
3028 the initial read through the symbol tables needs to
3029 worry about. If we reach this point, the symbol
3030 which we are considering is definitely one we are
3031 interested in. p must also contain the (valid)
3032 index into the namestring which indicates the
3033 debugging type symbol. */
3034
3035 switch (p[1])
3036 {
3037 case 'S':
3038 pst->add_psymbol (gdb::string_view (namestring,
3039 p - namestring),
3040 true, VAR_DOMAIN, LOC_STATIC,
3041 SECT_OFF_DATA (objfile),
3042 psymbol_placement::STATIC,
3043 sh.value,
3044 psymtab_language,
3045 partial_symtabs, objfile);
3046 continue;
3047 case 'G':
3048 /* The addresses in these entries are reported
3049 to be wrong. See the code that reads 'G's
3050 for symtabs. */
3051 pst->add_psymbol (gdb::string_view (namestring,
3052 p - namestring),
3053 true, VAR_DOMAIN, LOC_STATIC,
3054 SECT_OFF_DATA (objfile),
3055 psymbol_placement::GLOBAL,
3056 sh.value,
3057 psymtab_language,
3058 partial_symtabs, objfile);
3059 continue;
3060
3061 case 'T':
3062 /* When a 'T' entry is defining an anonymous enum, it
3063 may have a name which is the empty string, or a
3064 single space. Since they're not really defining a
3065 symbol, those shouldn't go in the partial symbol
3066 table. We do pick up the elements of such enums at
3067 'check_enum:', below. */
3068 if (p >= namestring + 2
3069 || (p == namestring + 1
3070 && namestring[0] != ' '))
3071 {
3072 pst->add_psymbol
3073 (gdb::string_view (namestring, p - namestring),
3074 true, STRUCT_DOMAIN, LOC_TYPEDEF, -1,
3075 psymbol_placement::STATIC, 0, psymtab_language,
3076 partial_symtabs, objfile);
3077 if (p[2] == 't')
3078 {
3079 /* Also a typedef with the same name. */
3080 pst->add_psymbol
3081 (gdb::string_view (namestring,
3082 p - namestring),
3083 true, VAR_DOMAIN, LOC_TYPEDEF, -1,
3084 psymbol_placement::STATIC, 0,
3085 psymtab_language,
3086 partial_symtabs, objfile);
3087 p += 1;
3088 }
3089 }
3090 goto check_enum;
3091 case 't':
3092 if (p != namestring) /* a name is there, not
3093 just :T... */
3094 {
3095 pst->add_psymbol
3096 (gdb::string_view (namestring,
3097 p - namestring),
3098 true, VAR_DOMAIN, LOC_TYPEDEF, -1,
3099 psymbol_placement::STATIC, 0, psymtab_language,
3100 partial_symtabs, objfile);
3101 }
3102 check_enum:
3103 /* If this is an enumerated type, we need to add
3104 all the enum constants to the partial symbol
3105 table. This does not cover enums without names,
3106 e.g. "enum {a, b} c;" in C, but fortunately
3107 those are rare. There is no way for GDB to find
3108 those from the enum type without spending too
3109 much time on it. Thus to solve this problem,
3110 the compiler needs to put out the enum in a
3111 nameless type. GCC2 does this. */
3112
3113 /* We are looking for something of the form
3114 <name> ":" ("t" | "T") [<number> "="] "e"
3115 {<constant> ":" <value> ","} ";". */
3116
3117 /* Skip over the colon and the 't' or 'T'. */
3118 p += 2;
3119 /* This type may be given a number. Also, numbers
3120 can come in pairs like (0,26). Skip over it. */
3121 while ((*p >= '0' && *p <= '9')
3122 || *p == '(' || *p == ',' || *p == ')'
3123 || *p == '=')
3124 p++;
3125
3126 if (*p++ == 'e')
3127 {
3128 /* The aix4 compiler emits extra crud before
3129 the members. */
3130 if (*p == '-')
3131 {
3132 /* Skip over the type (?). */
3133 while (*p != ':')
3134 p++;
3135
3136 /* Skip over the colon. */
3137 p++;
3138 }
3139
3140 /* We have found an enumerated type. */
3141 /* According to comments in read_enum_type
3142 a comma could end it instead of a semicolon.
3143 I don't know where that happens.
3144 Accept either. */
3145 while (*p && *p != ';' && *p != ',')
3146 {
3147 const char *q;
3148
3149 /* Check for and handle cretinous dbx
3150 symbol name continuation! */
3151 if (*p == '\\' || (*p == '?' && p[1] == '\0'))
3152 p = next_symbol_text (objfile);
3153
3154 /* Point to the character after the name
3155 of the enum constant. */
3156 for (q = p; *q && *q != ':'; q++)
3157 ;
3158 /* Note that the value doesn't matter for
3159 enum constants in psymtabs, just in
3160 symtabs. */
3161 pst->add_psymbol (gdb::string_view (p,
3162 q - p),
3163 true, VAR_DOMAIN,
3164 LOC_CONST, -1,
3165 psymbol_placement::STATIC,
3166 0, psymtab_language,
3167 partial_symtabs, objfile);
3168 /* Point past the name. */
3169 p = q;
3170 /* Skip over the value. */
3171 while (*p && *p != ',')
3172 p++;
3173 /* Advance past the comma. */
3174 if (*p)
3175 p++;
3176 }
3177 }
3178 continue;
3179 case 'c':
3180 /* Constant, e.g. from "const" in Pascal. */
3181 pst->add_psymbol (gdb::string_view (namestring,
3182 p - namestring),
3183 true, VAR_DOMAIN, LOC_CONST, -1,
3184 psymbol_placement::STATIC,
3185 0, psymtab_language,
3186 partial_symtabs, objfile);
3187 continue;
3188
3189 case 'f':
3190 if (! pst)
3191 {
3192 std::string copy (namestring, p);
3193 function_outside_compilation_unit_complaint
3194 (copy.c_str ());
3195 }
3196 pst->add_psymbol (gdb::string_view (namestring,
3197 p - namestring),
3198 true, VAR_DOMAIN, LOC_BLOCK,
3199 SECT_OFF_TEXT (objfile),
3200 psymbol_placement::STATIC,
3201 sh.value,
3202 psymtab_language,
3203 partial_symtabs, objfile);
3204 continue;
3205
3206 /* Global functions were ignored here, but now they
3207 are put into the global psymtab like one would
3208 expect. They're also in the minimal symbol
3209 table. */
3210 case 'F':
3211 if (! pst)
3212 {
3213 std::string copy (namestring, p);
3214 function_outside_compilation_unit_complaint
3215 (copy.c_str ());
3216 }
3217 pst->add_psymbol (gdb::string_view (namestring,
3218 p - namestring),
3219 true, VAR_DOMAIN, LOC_BLOCK,
3220 SECT_OFF_TEXT (objfile),
3221 psymbol_placement::GLOBAL,
3222 sh.value,
3223 psymtab_language,
3224 partial_symtabs, objfile);
3225 continue;
3226
3227 /* Two things show up here (hopefully); static
3228 symbols of local scope (static used inside
3229 braces) or extensions of structure symbols. We
3230 can ignore both. */
3231 case 'V':
3232 case '(':
3233 case '0':
3234 case '1':
3235 case '2':
3236 case '3':
3237 case '4':
3238 case '5':
3239 case '6':
3240 case '7':
3241 case '8':
3242 case '9':
3243 case '-':
3244 case '#': /* For symbol identification (used
3245 in live ranges). */
3246 continue;
3247
3248 case ':':
3249 /* It is a C++ nested symbol. We don't need to
3250 record it (I don't think); if we try to look up
3251 foo::bar::baz, then symbols for the symtab
3252 containing foo should get read in, I think. */
3253 /* Someone says sun cc puts out symbols like
3254 /foo/baz/maclib::/usr/local/bin/maclib,
3255 which would get here with a symbol type of ':'. */
3256 continue;
3257
3258 default:
3259 /* Unexpected symbol descriptor. The second and
3260 subsequent stabs of a continued stab can show up
3261 here. The question is whether they ever can
3262 mimic a normal stab--it would be nice if not,
3263 since we certainly don't want to spend the time
3264 searching to the end of every string looking for
3265 a backslash. */
3266
3267 complaint (_("unknown symbol descriptor `%c'"), p[1]);
3268
3269 /* Ignore it; perhaps it is an extension that we don't
3270 know about. */
3271 continue;
3272 }
3273
3274 case N_EXCL:
3275 continue;
3276
3277 case N_ENDM:
3278 /* Solaris 2 end of module, finish current partial
3279 symbol table. dbx_end_psymtab will set the
3280 high text address of PST to the proper value,
3281 which is necessary if a module compiled without
3282 debugging info follows this module. */
3283 if (pst
3284 && gdbarch_sofun_address_maybe_missing (gdbarch))
3285 {
3286 pst = (legacy_psymtab *) 0;
3287 includes_used = 0;
3288 dependencies_used = 0;
3289 }
3290 continue;
3291
3292 case N_RBRAC:
3293 if (sh.value > save_pst->raw_text_high ())
3294 save_pst->set_text_high (sh.value);
3295 continue;
3296 case N_EINCL:
3297 case N_DSLINE:
3298 case N_BSLINE:
3299 case N_SSYM: /* Claim: Structure or union
3300 element. Hopefully, I can
3301 ignore this. */
3302 case N_ENTRY: /* Alternate entry point; can
3303 ignore. */
3304 case N_MAIN: /* Can definitely ignore this. */
3305 case N_CATCH: /* These are GNU C++ extensions. */
3306 case N_EHDECL: /* that can safely be ignored here. */
3307 case N_LENG:
3308 case N_BCOMM:
3309 case N_ECOMM:
3310 case N_ECOML:
3311 case N_FNAME:
3312 case N_SLINE:
3313 case N_RSYM:
3314 case N_PSYM:
3315 case N_LBRAC:
3316 case N_NSYMS: /* Ultrix 4.0: symbol count */
3317 case N_DEFD: /* GNU Modula-2 */
3318 case N_ALIAS: /* SunPro F77: alias name, ignore
3319 for now. */
3320
3321 case N_OBJ: /* Useless types from Solaris. */
3322 case N_OPT:
3323 /* These symbols aren't interesting; don't worry about
3324 them. */
3325
3326 continue;
3327
3328 default:
3329 /* If we haven't found it yet, ignore it. It's
3330 probably some new type we don't know about yet. */
3331 complaint (_("unknown symbol type %s"),
3332 hex_string (type_code)); /* CUR_SYMBOL_TYPE */
3333 continue;
3334 }
3335 }
3336 /* end - Handle continuation */
3337 }
3338 }
3339 else
3340 {
3341 for (cur_sdx = 0; cur_sdx < fh->csym;)
3342 {
3343 char *sym_name;
3344 enum address_class theclass;
3345 CORE_ADDR minsym_value;
3346 short section = -1;
3347
3348 (*swap_sym_in) (cur_bfd,
3349 ((char *) debug_info->external_sym
3350 + ((fh->isymBase + cur_sdx)
3351 * external_sym_size)),
3352 &sh);
3353
3354 if (ECOFF_IS_STAB (&sh))
3355 {
3356 cur_sdx++;
3357 continue;
3358 }
3359
3360 /* Non absolute static symbols go into the minimal table. */
3361 if (SC_IS_UNDEF (sh.sc) || sh.sc == scNil
3362 || (sh.index == indexNil
3363 && (sh.st != stStatic || sh.sc == scAbs)))
3364 {
3365 /* FIXME, premature? */
3366 cur_sdx++;
3367 continue;
3368 }
3369
3370 sym_name = debug_info->ss + fh->issBase + sh.iss;
3371
3372 minsym_value = sh.value;
3373
3374 switch (sh.sc)
3375 {
3376 case scText:
3377 case scRConst:
3378 /* The value of a stEnd symbol is the displacement from the
3379 corresponding start symbol value, do not relocate it. */
3380 if (sh.st != stEnd)
3381 section = SECT_OFF_TEXT (objfile);
3382 break;
3383 case scData:
3384 case scSData:
3385 case scRData:
3386 case scPData:
3387 case scXData:
3388 section = SECT_OFF_DATA (objfile);
3389 break;
3390 case scBss:
3391 case scSBss:
3392 section = SECT_OFF_BSS (objfile);
3393 break;
3394 }
3395
3396 switch (sh.st)
3397 {
3398 CORE_ADDR high;
3399 CORE_ADDR procaddr;
3400 int new_sdx;
3401
3402 case stStaticProc:
3403 reader.record_with_info (sym_name, minsym_value,
3404 mst_file_text,
3405 SECT_OFF_TEXT (objfile));
3406
3407 /* FALLTHROUGH */
3408
3409 case stProc:
3410 /* Ignore all parameter symbol records. */
3411 if (sh.index >= hdr->iauxMax)
3412 {
3413 /* Should not happen, but does when cross-compiling
3414 with the MIPS compiler. FIXME -- pull later. */
3415 index_complaint (sym_name);
3416 new_sdx = cur_sdx + 1; /* Don't skip at all. */
3417 }
3418 else
3419 new_sdx = AUX_GET_ISYM (fh->fBigendian,
3420 (debug_info->external_aux
3421 + fh->iauxBase
3422 + sh.index));
3423
3424 if (new_sdx <= cur_sdx)
3425 {
3426 /* This should not happen either... FIXME. */
3427 complaint (_("bad proc end in aux found from symbol %s"),
3428 sym_name);
3429 new_sdx = cur_sdx + 1; /* Don't skip backward. */
3430 }
3431
3432 /* For stProc symbol records, we need to check the
3433 storage class as well, as only (stProc, scText)
3434 entries represent "real" procedures - See the
3435 Compaq document titled "Object File / Symbol Table
3436 Format Specification" for more information. If the
3437 storage class is not scText, we discard the whole
3438 block of symbol records for this stProc. */
3439 if (sh.st == stProc && sh.sc != scText)
3440 goto skip;
3441
3442 /* Usually there is a local and a global stProc symbol
3443 for a function. This means that the function name
3444 has already been entered into the minimal symbol table
3445 while processing the global symbols in pass 2 above.
3446 One notable exception is the PROGRAM name from
3447 f77 compiled executables, it is only put out as
3448 local stProc symbol, and a global MAIN__ stProc symbol
3449 points to it. It doesn't matter though, as gdb is
3450 still able to find the PROGRAM name via the partial
3451 symbol table, and the MAIN__ symbol via the minimal
3452 symbol table. */
3453 if (sh.st == stProc)
3454 pst->add_psymbol (sym_name, true,
3455 VAR_DOMAIN, LOC_BLOCK,
3456 section,
3457 psymbol_placement::GLOBAL,
3458 sh.value, psymtab_language,
3459 partial_symtabs, objfile);
3460 else
3461 pst->add_psymbol (sym_name, true,
3462 VAR_DOMAIN, LOC_BLOCK,
3463 section,
3464 psymbol_placement::STATIC,
3465 sh.value, psymtab_language,
3466 partial_symtabs, objfile);
3467
3468 procaddr = sh.value;
3469
3470 cur_sdx = new_sdx;
3471 (*swap_sym_in) (cur_bfd,
3472 ((char *) debug_info->external_sym
3473 + ((fh->isymBase + cur_sdx - 1)
3474 * external_sym_size)),
3475 &sh);
3476 if (sh.st != stEnd)
3477 continue;
3478
3479 /* Kludge for Irix 5.2 zero fh->adr. */
3480 if (!relocatable
3481 && (!pst->text_low_valid
3482 || procaddr < pst->raw_text_low ()))
3483 pst->set_text_low (procaddr);
3484
3485 high = procaddr + sh.value;
3486 if (high > pst->raw_text_high ())
3487 pst->set_text_high (high);
3488 continue;
3489
3490 case stStatic: /* Variable */
3491 if (SC_IS_DATA (sh.sc))
3492 reader.record_with_info (sym_name, minsym_value,
3493 mst_file_data,
3494 SECT_OFF_DATA (objfile));
3495 else
3496 reader.record_with_info (sym_name, minsym_value,
3497 mst_file_bss,
3498 SECT_OFF_BSS (objfile));
3499 theclass = LOC_STATIC;
3500 break;
3501
3502 case stIndirect: /* Irix5 forward declaration */
3503 /* Skip forward declarations from Irix5 cc. */
3504 goto skip;
3505
3506 case stTypedef: /* Typedef */
3507 /* Skip typedefs for forward declarations and opaque
3508 structs from alpha and mips cc. */
3509 if (sh.iss == 0 || has_opaque_xref (fh, &sh))
3510 goto skip;
3511 theclass = LOC_TYPEDEF;
3512 break;
3513
3514 case stConstant: /* Constant decl */
3515 theclass = LOC_CONST;
3516 break;
3517
3518 case stUnion:
3519 case stStruct:
3520 case stEnum:
3521 case stBlock: /* { }, str, un, enum */
3522 /* Do not create a partial symbol for cc unnamed aggregates
3523 and gcc empty aggregates. */
3524 if ((sh.sc == scInfo
3525 || SC_IS_COMMON (sh.sc))
3526 && sh.iss != 0
3527 && sh.index != cur_sdx + 2)
3528 {
3529 pst->add_psymbol (sym_name, true,
3530 STRUCT_DOMAIN, LOC_TYPEDEF, -1,
3531 psymbol_placement::STATIC,
3532 0, psymtab_language,
3533 partial_symtabs, objfile);
3534 }
3535 handle_psymbol_enumerators (objfile, partial_symtabs,
3536 pst, fh, sh.st, sh.value);
3537
3538 /* Skip over the block. */
3539 new_sdx = sh.index;
3540 if (new_sdx <= cur_sdx)
3541 {
3542 /* This happens with the Ultrix kernel. */
3543 complaint (_("bad aux index at block symbol %s"),
3544 sym_name);
3545 new_sdx = cur_sdx + 1; /* Don't skip backward. */
3546 }
3547 cur_sdx = new_sdx;
3548 continue;
3549
3550 case stFile: /* File headers */
3551 case stLabel: /* Labels */
3552 case stEnd: /* Ends of files */
3553 goto skip;
3554
3555 case stLocal: /* Local variables */
3556 /* Normally these are skipped because we skip over
3557 all blocks we see. However, these can occur
3558 as visible symbols in a .h file that contains code. */
3559 goto skip;
3560
3561 default:
3562 /* Both complaints are valid: one gives symbol sym_name,
3563 the other the offending symbol type. */
3564 complaint (_("unknown local symbol %s"),
3565 sym_name);
3566 complaint (_("with type %d"), sh.st);
3567 cur_sdx++;
3568 continue;
3569 }
3570 /* Use this gdb symbol. */
3571 pst->add_psymbol (sym_name, true,
3572 VAR_DOMAIN, theclass, section,
3573 psymbol_placement::STATIC,
3574 sh.value, psymtab_language,
3575 partial_symtabs, objfile);
3576 skip:
3577 cur_sdx++; /* Go to next file symbol. */
3578 }
3579
3580 /* Now do enter the external symbols. */
3581 ext_ptr = &extern_tab[fdr_to_pst[f_idx].globals_offset];
3582 cur_sdx = fdr_to_pst[f_idx].n_globals;
3583 PST_PRIVATE (save_pst)->extern_count = cur_sdx;
3584 PST_PRIVATE (save_pst)->extern_tab = ext_ptr;
3585 for (; --cur_sdx >= 0; ext_ptr++)
3586 {
3587 enum address_class theclass;
3588 SYMR *psh;
3589 CORE_ADDR svalue;
3590 short section;
3591
3592 gdb_assert (ext_ptr->ifd == f_idx);
3593
3594 psh = &ext_ptr->asym;
3595
3596 /* Do not add undefined symbols to the partial symbol table. */
3597 if (SC_IS_UNDEF (psh->sc) || psh->sc == scNil)
3598 continue;
3599
3600 svalue = psh->value;
3601 switch (psh->sc)
3602 {
3603 default:
3604 case scText:
3605 case scRConst:
3606 section = SECT_OFF_TEXT (objfile);
3607 break;
3608 case scData:
3609 case scSData:
3610 case scRData:
3611 case scPData:
3612 case scXData:
3613 section = SECT_OFF_DATA (objfile);
3614 break;
3615 case scBss:
3616 case scSBss:
3617 section = SECT_OFF_BSS (objfile);
3618 break;
3619 }
3620
3621 switch (psh->st)
3622 {
3623 case stNil:
3624 /* These are generated for static symbols in .o files,
3625 ignore them. */
3626 continue;
3627 case stProc:
3628 case stStaticProc:
3629 /* External procedure symbols have been entered
3630 into the minimal symbol table in pass 2 above.
3631 Ignore them, as parse_external will ignore them too. */
3632 continue;
3633 case stLabel:
3634 theclass = LOC_LABEL;
3635 break;
3636 default:
3637 unknown_ext_complaint (debug_info->ssext + psh->iss);
3638 /* Pretend it's global. */
3639 /* Fall through. */
3640 case stGlobal:
3641 /* Global common symbols are resolved by the runtime loader,
3642 ignore them. */
3643 if (SC_IS_COMMON (psh->sc))
3644 continue;
3645
3646 theclass = LOC_STATIC;
3647 break;
3648 }
3649 char *sym_name = debug_info->ssext + psh->iss;
3650 pst->add_psymbol (sym_name, true,
3651 VAR_DOMAIN, theclass,
3652 section,
3653 psymbol_placement::GLOBAL,
3654 svalue, psymtab_language,
3655 partial_symtabs, objfile);
3656 }
3657 }
3658
3659 /* Link pst to FDR. dbx_end_psymtab returns NULL if the psymtab was
3660 empty and put on the free list. */
3661 fdr_to_pst[f_idx].pst
3662 = dbx_end_psymtab (objfile, partial_symtabs, save_pst,
3663 psymtab_include_list, includes_used,
3664 -1, save_pst->raw_text_high (),
3665 dependency_list, dependencies_used,
3666 textlow_not_set);
3667 includes_used = 0;
3668 dependencies_used = 0;
3669
3670 /* The objfile has its functions reordered if this partial symbol
3671 table overlaps any other partial symbol table.
3672 We cannot assume a reordered objfile if a partial symbol table
3673 is contained within another partial symbol table, as partial symbol
3674 tables for include files with executable code are contained
3675 within the partial symbol table for the including source file,
3676 and we do not want to flag the objfile reordered for these cases.
3677
3678 This strategy works well for Irix-5.2 shared libraries, but we
3679 might have to use a more elaborate (and slower) algorithm for
3680 other cases. */
3681 save_pst = fdr_to_pst[f_idx].pst;
3682 if (save_pst != NULL
3683 && save_pst->text_low_valid
3684 && !(objfile->flags & OBJF_REORDERED))
3685 {
3686 for (partial_symtab *iter : partial_symtabs->range ())
3687 {
3688 if (save_pst != iter
3689 && save_pst->raw_text_low () >= iter->raw_text_low ()
3690 && save_pst->raw_text_low () < iter->raw_text_high ()
3691 && save_pst->raw_text_high () > iter->raw_text_high ())
3692 {
3693 objfile->flags |= OBJF_REORDERED;
3694 break;
3695 }
3696 }
3697 }
3698 }
3699
3700 /* Now scan the FDRs for dependencies. */
3701 for (f_idx = 0; f_idx < hdr->ifdMax; f_idx++)
3702 {
3703 fh = f_idx + debug_info->fdr;
3704 pst = fdr_to_pst[f_idx].pst;
3705
3706 if (pst == NULL)
3707 continue;
3708
3709 /* This should catch stabs-in-ecoff. */
3710 if (fh->crfd <= 1)
3711 continue;
3712
3713 /* Skip the first file indirect entry as it is a self dependency for
3714 source files or a reverse .h -> .c dependency for header files. */
3715 pst->number_of_dependencies = 0;
3716 pst->dependencies
3717 = partial_symtabs->allocate_dependencies (fh->crfd - 1);
3718 for (s_idx = 1; s_idx < fh->crfd; s_idx++)
3719 {
3720 RFDT rh;
3721
3722 (*swap_rfd_in) (cur_bfd,
3723 ((char *) debug_info->external_rfd
3724 + (fh->rfdBase + s_idx) * external_rfd_size),
3725 &rh);
3726 if (rh < 0 || rh >= hdr->ifdMax)
3727 {
3728 complaint (_("bad file number %ld"), rh);
3729 continue;
3730 }
3731
3732 /* Skip self dependencies of header files. */
3733 if (rh == f_idx)
3734 continue;
3735
3736 /* Do not add to dependency list if psymtab was empty. */
3737 if (fdr_to_pst[rh].pst == NULL)
3738 continue;
3739 pst->dependencies[pst->number_of_dependencies++]
3740 = fdr_to_pst[rh].pst;
3741 }
3742 }
3743
3744 /* Remove the dummy psymtab created for -O3 images above, if it is
3745 still empty, to enable the detection of stripped executables. */
3746 partial_symtab *pst_del = partial_symtabs->psymtabs;
3747 if (pst_del->next == NULL
3748 && pst_del->number_of_dependencies == 0
3749 && pst_del->empty ())
3750 partial_symtabs->discard_psymtab (pst_del);
3751 }
3752
3753 /* If the current psymbol has an enumerated type, we need to add
3754 all the enum constants to the partial symbol table. */
3755
3756 static void
3757 handle_psymbol_enumerators (struct objfile *objfile,
3758 psymtab_storage *partial_symtabs,
3759 partial_symtab *pst,
3760 FDR *fh, int stype, CORE_ADDR svalue)
3761 {
3762 const bfd_size_type external_sym_size = debug_swap->external_sym_size;
3763 void (*const swap_sym_in) (bfd *, void *, SYMR *) = debug_swap->swap_sym_in;
3764 char *ext_sym = ((char *) debug_info->external_sym
3765 + ((fh->isymBase + cur_sdx + 1) * external_sym_size));
3766 SYMR sh;
3767 TIR tir;
3768
3769 switch (stype)
3770 {
3771 case stEnum:
3772 break;
3773
3774 case stBlock:
3775 /* It is an enumerated type if the next symbol entry is a stMember
3776 and its auxiliary index is indexNil or its auxiliary entry
3777 is a plain btNil or btVoid.
3778 Alpha cc -migrate enums are recognized by a zero index and
3779 a zero symbol value.
3780 DU 4.0 cc enums are recognized by a member type of btEnum without
3781 qualifiers and a zero symbol value. */
3782 (*swap_sym_in) (cur_bfd, ext_sym, &sh);
3783 if (sh.st != stMember)
3784 return;
3785
3786 if (sh.index == indexNil
3787 || (sh.index == 0 && svalue == 0))
3788 break;
3789 (*debug_swap->swap_tir_in) (fh->fBigendian,
3790 &(debug_info->external_aux
3791 + fh->iauxBase + sh.index)->a_ti,
3792 &tir);
3793 if ((tir.bt != btNil
3794 && tir.bt != btVoid
3795 && (tir.bt != btEnum || svalue != 0))
3796 || tir.tq0 != tqNil)
3797 return;
3798 break;
3799
3800 default:
3801 return;
3802 }
3803
3804 for (;;)
3805 {
3806 char *name;
3807
3808 (*swap_sym_in) (cur_bfd, ext_sym, &sh);
3809 if (sh.st != stMember)
3810 break;
3811 name = debug_info->ss + cur_fdr->issBase + sh.iss;
3812
3813 /* Note that the value doesn't matter for enum constants
3814 in psymtabs, just in symtabs. */
3815 pst->add_psymbol (name, true,
3816 VAR_DOMAIN, LOC_CONST, -1,
3817 psymbol_placement::STATIC, 0,
3818 psymtab_language, partial_symtabs, objfile);
3819 ext_sym += external_sym_size;
3820 }
3821 }
3822
3823 /* Get the next symbol. OBJFILE is unused. */
3824
3825 static const char *
3826 mdebug_next_symbol_text (struct objfile *objfile)
3827 {
3828 SYMR sh;
3829
3830 cur_sdx++;
3831 (*debug_swap->swap_sym_in) (cur_bfd,
3832 ((char *) debug_info->external_sym
3833 + ((cur_fdr->isymBase + cur_sdx)
3834 * debug_swap->external_sym_size)),
3835 &sh);
3836 return debug_info->ss + cur_fdr->issBase + sh.iss;
3837 }
3838
3839 /* Ancillary function to psymtab_to_symtab(). Does all the work
3840 for turning the partial symtab PST into a symtab, recurring
3841 first on all dependent psymtabs. The argument FILENAME is
3842 only passed so we can see in debug stack traces what file
3843 is being read.
3844
3845 This function has a split personality, based on whether the
3846 symbol table contains ordinary ecoff symbols, or stabs-in-ecoff.
3847 The flow of control and even the memory allocation differs. FIXME. */
3848
3849 static void
3850 mdebug_expand_psymtab (legacy_psymtab *pst, struct objfile *objfile)
3851 {
3852 bfd_size_type external_sym_size;
3853 bfd_size_type external_pdr_size;
3854 void (*swap_sym_in) (bfd *, void *, SYMR *);
3855 void (*swap_pdr_in) (bfd *, void *, PDR *);
3856 int i;
3857 struct compunit_symtab *cust = NULL;
3858 FDR *fh;
3859 struct linetable *lines;
3860 CORE_ADDR lowest_pdr_addr = 0;
3861 int last_symtab_ended = 0;
3862 const section_offsets &section_offsets = objfile->section_offsets;
3863
3864 if (pst->readin)
3865 return;
3866 pst->readin = true;
3867
3868 /* Read in all partial symtabs on which this one is dependent.
3869 NOTE that we do have circular dependencies, sigh. We solved
3870 that by setting pst->readin before this point. */
3871 pst->expand_dependencies (objfile);
3872
3873 /* Do nothing if this is a dummy psymtab. */
3874
3875 if (pst->empty () && !pst->text_low_valid && !pst->text_high_valid)
3876 return;
3877
3878 /* Now read the symbols for this symtab. */
3879
3880 cur_bfd = CUR_BFD (pst);
3881 debug_swap = DEBUG_SWAP (pst);
3882 debug_info = DEBUG_INFO (pst);
3883 pending_list = PENDING_LIST (pst);
3884 external_sym_size = debug_swap->external_sym_size;
3885 external_pdr_size = debug_swap->external_pdr_size;
3886 swap_sym_in = debug_swap->swap_sym_in;
3887 swap_pdr_in = debug_swap->swap_pdr_in;
3888 mdebugread_objfile = objfile;
3889 cur_fd = FDR_IDX (pst);
3890 fh = ((cur_fd == -1)
3891 ? NULL
3892 : debug_info->fdr + cur_fd);
3893 cur_fdr = fh;
3894
3895 /* See comment in parse_partial_symbols about the @stabs sentinel. */
3896 processing_gcc_compilation = 0;
3897 if (fh != NULL && fh->csym >= 2)
3898 {
3899 SYMR sh;
3900
3901 (*swap_sym_in) (cur_bfd,
3902 ((char *) debug_info->external_sym
3903 + (fh->isymBase + 1) * external_sym_size),
3904 &sh);
3905 if (strcmp (debug_info->ss + fh->issBase + sh.iss,
3906 stabs_symbol) == 0)
3907 {
3908 /* We indicate that this is a GCC compilation so that certain
3909 features will be enabled in stabsread/dbxread. */
3910 processing_gcc_compilation = 2;
3911 }
3912 }
3913
3914 if (processing_gcc_compilation != 0)
3915 {
3916 struct gdbarch *gdbarch = objfile->arch ();
3917
3918 /* This symbol table contains stabs-in-ecoff entries. */
3919
3920 /* Parse local symbols first. */
3921
3922 if (fh->csym <= 2) /* FIXME, this blows psymtab->symtab ptr. */
3923 {
3924 mdebugread_objfile = NULL;
3925 return;
3926 }
3927 for (cur_sdx = 2; cur_sdx < fh->csym; cur_sdx++)
3928 {
3929 SYMR sh;
3930 char *name;
3931 CORE_ADDR valu;
3932
3933 (*swap_sym_in) (cur_bfd,
3934 (((char *) debug_info->external_sym)
3935 + (fh->isymBase + cur_sdx) * external_sym_size),
3936 &sh);
3937 name = debug_info->ss + fh->issBase + sh.iss;
3938 valu = sh.value;
3939 /* XXX This is a hack. It will go away! */
3940 if (ECOFF_IS_STAB (&sh) || (name[0] == '#'))
3941 {
3942 int type_code = ECOFF_UNMARK_STAB (sh.index);
3943 enum language language = PST_PRIVATE (pst)->pst_language;
3944
3945 /* We should never get non N_STAB symbols here, but they
3946 should be harmless, so keep process_one_symbol from
3947 complaining about them. */
3948 if (type_code & N_STAB)
3949 {
3950 /* If we found a trailing N_SO with no name, process
3951 it here instead of in process_one_symbol, so we
3952 can keep a handle to its symtab. The symtab
3953 would otherwise be ended twice, once in
3954 process_one_symbol, and once after this loop. */
3955 if (type_code == N_SO
3956 && get_last_source_file ()
3957 && previous_stab_code != (unsigned char) N_SO
3958 && *name == '\000')
3959 {
3960 valu += section_offsets[SECT_OFF_TEXT (objfile)];
3961 previous_stab_code = N_SO;
3962 cust = end_symtab (valu, SECT_OFF_TEXT (objfile));
3963 end_stabs ();
3964 last_symtab_ended = 1;
3965 }
3966 else
3967 {
3968 last_symtab_ended = 0;
3969 process_one_symbol (type_code, 0, valu, name,
3970 section_offsets, objfile, language);
3971 }
3972 }
3973 /* Similarly a hack. */
3974 else if (name[0] == '#')
3975 {
3976 process_one_symbol (N_SLINE, 0, valu, name,
3977 section_offsets, objfile, language);
3978 }
3979 if (type_code == N_FUN)
3980 {
3981 /* Make up special symbol to contain
3982 procedure specific info. */
3983 mdebug_extra_func_info *e
3984 = OBSTACK_ZALLOC (&mdebugread_objfile->objfile_obstack,
3985 mdebug_extra_func_info);
3986 struct symbol *s = new_symbol (MDEBUG_EFI_SYMBOL_NAME);
3987
3988 SYMBOL_DOMAIN (s) = LABEL_DOMAIN;
3989 SYMBOL_ACLASS_INDEX (s) = LOC_CONST;
3990 SYMBOL_TYPE (s) = objfile_type (objfile)->builtin_void;
3991 SYMBOL_VALUE_BYTES (s) = (gdb_byte *) e;
3992 e->pdr.framereg = -1;
3993 add_symbol_to_list (s, get_local_symbols ());
3994 }
3995 }
3996 else if (sh.st == stLabel)
3997 {
3998 if (sh.index == indexNil)
3999 {
4000 /* This is what the gcc2_compiled and __gnu_compiled_*
4001 show up as. So don't complain. */
4002 ;
4003 }
4004 else
4005 {
4006 /* Handle encoded stab line number. */
4007 valu += section_offsets[SECT_OFF_TEXT (objfile)];
4008 record_line (get_current_subfile (), sh.index,
4009 gdbarch_addr_bits_remove (gdbarch, valu));
4010 }
4011 }
4012 else if (sh.st == stProc || sh.st == stStaticProc
4013 || sh.st == stStatic || sh.st == stEnd)
4014 /* These are generated by gcc-2.x, do not complain. */
4015 ;
4016 else
4017 complaint (_("unknown stabs symbol %s"), name);
4018 }
4019
4020 if (! last_symtab_ended)
4021 {
4022 cust = end_symtab (pst->raw_text_high (), SECT_OFF_TEXT (objfile));
4023 end_stabs ();
4024 }
4025
4026 /* There used to be a call to sort_blocks here, but this should not
4027 be necessary for stabs symtabs. And as sort_blocks modifies the
4028 start address of the GLOBAL_BLOCK to the FIRST_LOCAL_BLOCK,
4029 it did the wrong thing if the first procedure in a file was
4030 generated via asm statements. */
4031
4032 /* Fill in procedure info next. */
4033 if (fh->cpd > 0)
4034 {
4035 char *pdr_ptr;
4036 char *pdr_end;
4037 PDR *pdr_in;
4038 PDR *pdr_in_end;
4039
4040 gdb::def_vector<PDR> pr_block (fh->cpd);
4041
4042 pdr_ptr = ((char *) debug_info->external_pdr
4043 + fh->ipdFirst * external_pdr_size);
4044 pdr_end = pdr_ptr + fh->cpd * external_pdr_size;
4045 pdr_in = pr_block.data ();
4046 for (;
4047 pdr_ptr < pdr_end;
4048 pdr_ptr += external_pdr_size, pdr_in++)
4049 {
4050 (*swap_pdr_in) (cur_bfd, pdr_ptr, pdr_in);
4051
4052 /* Determine lowest PDR address, the PDRs are not always
4053 sorted. */
4054 if (pdr_in == pr_block.data ())
4055 lowest_pdr_addr = pdr_in->adr;
4056 else if (pdr_in->adr < lowest_pdr_addr)
4057 lowest_pdr_addr = pdr_in->adr;
4058 }
4059
4060 pdr_in = pr_block.data ();
4061 pdr_in_end = pdr_in + fh->cpd;
4062 for (; pdr_in < pdr_in_end; pdr_in++)
4063 parse_procedure (pdr_in, cust, pst);
4064 }
4065 }
4066 else
4067 {
4068 /* This symbol table contains ordinary ecoff entries. */
4069
4070 int maxlines, size;
4071 EXTR *ext_ptr;
4072
4073 if (fh == 0)
4074 {
4075 maxlines = 0;
4076 cust = new_symtab ("unknown", 0, objfile);
4077 }
4078 else
4079 {
4080 maxlines = 2 * fh->cline;
4081 cust = new_symtab (pst->filename, maxlines, objfile);
4082
4083 /* The proper language was already determined when building
4084 the psymtab, use it. */
4085 COMPUNIT_FILETABS (cust)->language = PST_PRIVATE (pst)->pst_language;
4086 }
4087
4088 psymtab_language = COMPUNIT_FILETABS (cust)->language;
4089
4090 lines = SYMTAB_LINETABLE (COMPUNIT_FILETABS (cust));
4091
4092 /* Get a new lexical context. */
4093
4094 push_parse_stack ();
4095 top_stack->cur_st = COMPUNIT_FILETABS (cust);
4096 top_stack->cur_block
4097 = BLOCKVECTOR_BLOCK (COMPUNIT_BLOCKVECTOR (cust), STATIC_BLOCK);
4098 BLOCK_START (top_stack->cur_block) = pst->text_low (objfile);
4099 BLOCK_END (top_stack->cur_block) = 0;
4100 top_stack->blocktype = stFile;
4101 top_stack->cur_type = 0;
4102 top_stack->procadr = 0;
4103 top_stack->numargs = 0;
4104 found_ecoff_debugging_info = 0;
4105
4106 if (fh)
4107 {
4108 char *sym_ptr;
4109 char *sym_end;
4110
4111 /* Parse local symbols first. */
4112 sym_ptr = ((char *) debug_info->external_sym
4113 + fh->isymBase * external_sym_size);
4114 sym_end = sym_ptr + fh->csym * external_sym_size;
4115 while (sym_ptr < sym_end)
4116 {
4117 SYMR sh;
4118 int c;
4119
4120 (*swap_sym_in) (cur_bfd, sym_ptr, &sh);
4121 c = parse_symbol (&sh,
4122 debug_info->external_aux + fh->iauxBase,
4123 sym_ptr, fh->fBigendian,
4124 section_offsets, objfile);
4125 sym_ptr += c * external_sym_size;
4126 }
4127
4128 /* Linenumbers. At the end, check if we can save memory.
4129 parse_lines has to look ahead an arbitrary number of PDR
4130 structures, so we swap them all first. */
4131 if (fh->cpd > 0)
4132 {
4133 char *pdr_ptr;
4134 char *pdr_end;
4135 PDR *pdr_in;
4136 PDR *pdr_in_end;
4137
4138 gdb::def_vector<PDR> pr_block (fh->cpd);
4139
4140 pdr_ptr = ((char *) debug_info->external_pdr
4141 + fh->ipdFirst * external_pdr_size);
4142 pdr_end = pdr_ptr + fh->cpd * external_pdr_size;
4143 pdr_in = pr_block.data ();
4144 for (;
4145 pdr_ptr < pdr_end;
4146 pdr_ptr += external_pdr_size, pdr_in++)
4147 {
4148 (*swap_pdr_in) (cur_bfd, pdr_ptr, pdr_in);
4149
4150 /* Determine lowest PDR address, the PDRs are not always
4151 sorted. */
4152 if (pdr_in == pr_block.data ())
4153 lowest_pdr_addr = pdr_in->adr;
4154 else if (pdr_in->adr < lowest_pdr_addr)
4155 lowest_pdr_addr = pdr_in->adr;
4156 }
4157
4158 parse_lines (fh, pr_block.data (), lines, maxlines,
4159 pst->text_low (objfile), lowest_pdr_addr);
4160 if (lines->nitems < fh->cline)
4161 lines = shrink_linetable (lines);
4162
4163 /* Fill in procedure info next. */
4164 pdr_in = pr_block.data ();
4165 pdr_in_end = pdr_in + fh->cpd;
4166 for (; pdr_in < pdr_in_end; pdr_in++)
4167 parse_procedure (pdr_in, NULL, pst);
4168 }
4169 }
4170
4171 size = lines->nitems;
4172 if (size > 1)
4173 --size;
4174 SYMTAB_LINETABLE (COMPUNIT_FILETABS (cust))
4175 = ((struct linetable *)
4176 obstack_copy (&mdebugread_objfile->objfile_obstack,
4177 lines, (sizeof (struct linetable)
4178 + size * sizeof (lines->item))));
4179 xfree (lines);
4180
4181 /* .. and our share of externals.
4182 XXX use the global list to speed up things here. How?
4183 FIXME, Maybe quit once we have found the right number of ext's? */
4184 top_stack->cur_st = COMPUNIT_FILETABS (cust);
4185 top_stack->cur_block
4186 = BLOCKVECTOR_BLOCK (SYMTAB_BLOCKVECTOR (top_stack->cur_st),
4187 GLOBAL_BLOCK);
4188 top_stack->blocktype = stFile;
4189
4190 ext_ptr = PST_PRIVATE (pst)->extern_tab;
4191 for (i = PST_PRIVATE (pst)->extern_count; --i >= 0; ext_ptr++)
4192 parse_external (ext_ptr, fh->fBigendian,
4193 section_offsets, objfile);
4194
4195 /* If there are undefined symbols, tell the user.
4196 The alpha has an undefined symbol for every symbol that is
4197 from a shared library, so tell the user only if verbose is on. */
4198 if (info_verbose && n_undef_symbols)
4199 {
4200 printf_filtered (_("File %s contains %d unresolved references:"),
4201 symtab_to_filename_for_display
4202 (COMPUNIT_FILETABS (cust)),
4203 n_undef_symbols);
4204 printf_filtered ("\n\t%4d variables\n\t%4d "
4205 "procedures\n\t%4d labels\n",
4206 n_undef_vars, n_undef_procs, n_undef_labels);
4207 n_undef_symbols = n_undef_labels = n_undef_vars = n_undef_procs = 0;
4208
4209 }
4210 pop_parse_stack ();
4211
4212 sort_blocks (COMPUNIT_FILETABS (cust));
4213 }
4214
4215 /* Now link the psymtab and the symtab. */
4216 pst->compunit_symtab = cust;
4217
4218 mdebugread_objfile = NULL;
4219 }
4220 \f
4221 /* Ancillary parsing procedures. */
4222
4223 /* Return 1 if the symbol pointed to by SH has a cross reference
4224 to an opaque aggregate type, else 0. */
4225
4226 static int
4227 has_opaque_xref (FDR *fh, SYMR *sh)
4228 {
4229 TIR tir;
4230 union aux_ext *ax;
4231 RNDXR rn[1];
4232 unsigned int rf;
4233
4234 if (sh->index == indexNil)
4235 return 0;
4236
4237 ax = debug_info->external_aux + fh->iauxBase + sh->index;
4238 (*debug_swap->swap_tir_in) (fh->fBigendian, &ax->a_ti, &tir);
4239 if (tir.bt != btStruct && tir.bt != btUnion && tir.bt != btEnum)
4240 return 0;
4241
4242 ax++;
4243 (*debug_swap->swap_rndx_in) (fh->fBigendian, &ax->a_rndx, rn);
4244 if (rn->rfd == 0xfff)
4245 rf = AUX_GET_ISYM (fh->fBigendian, ax + 1);
4246 else
4247 rf = rn->rfd;
4248 if (rf != -1)
4249 return 0;
4250 return 1;
4251 }
4252
4253 /* Lookup the type at relative index RN. Return it in TPP
4254 if found and in any event come up with its name PNAME.
4255 BIGEND says whether aux symbols are big-endian or not (from fh->fBigendian).
4256 Return value says how many aux symbols we ate. */
4257
4258 static int
4259 cross_ref (int fd, union aux_ext *ax, struct type **tpp,
4260 enum type_code type_code,
4261 /* Use to alloc new type if none is found. */
4262 const char **pname, int bigend, const char *sym_name)
4263 {
4264 RNDXR rn[1];
4265 unsigned int rf;
4266 int result = 1;
4267 FDR *fh;
4268 char *esh;
4269 SYMR sh;
4270 int xref_fd;
4271 struct mdebug_pending *pend;
4272
4273 *tpp = NULL;
4274
4275 (*debug_swap->swap_rndx_in) (bigend, &ax->a_rndx, rn);
4276
4277 /* Escape index means 'the next one'. */
4278 if (rn->rfd == 0xfff)
4279 {
4280 result++;
4281 rf = AUX_GET_ISYM (bigend, ax + 1);
4282 }
4283 else
4284 {
4285 rf = rn->rfd;
4286 }
4287
4288 /* mips cc uses a rf of -1 for opaque struct definitions.
4289 Set TYPE_STUB for these types so that check_typedef will
4290 resolve them if the struct gets defined in another compilation unit. */
4291 if (rf == -1)
4292 {
4293 *pname = "<undefined>";
4294 *tpp = init_type (mdebugread_objfile, type_code, 0, NULL);
4295 (*tpp)->set_is_stub (true);
4296 return result;
4297 }
4298
4299 /* mips cc uses an escaped rn->index of 0 for struct return types
4300 of procedures that were compiled without -g. These will always remain
4301 undefined. */
4302 if (rn->rfd == 0xfff && rn->index == 0)
4303 {
4304 *pname = "<undefined>";
4305 return result;
4306 }
4307
4308 /* Find the relative file descriptor and the symbol in it. */
4309 fh = get_rfd (fd, rf);
4310 xref_fd = fh - debug_info->fdr;
4311
4312 if (rn->index >= fh->csym)
4313 {
4314 /* File indirect entry is corrupt. */
4315 *pname = "<illegal>";
4316 bad_rfd_entry_complaint (sym_name, xref_fd, rn->index);
4317 return result;
4318 }
4319
4320 /* If we have processed this symbol then we left a forwarding
4321 pointer to the type in the pending list. If not, we`ll put
4322 it in a list of pending types, to be processed later when
4323 the file will be. In any event, we collect the name for the
4324 type here. */
4325
4326 esh = ((char *) debug_info->external_sym
4327 + ((fh->isymBase + rn->index)
4328 * debug_swap->external_sym_size));
4329 (*debug_swap->swap_sym_in) (cur_bfd, esh, &sh);
4330
4331 /* Make sure that this type of cross reference can be handled. */
4332 if ((sh.sc != scInfo
4333 || (sh.st != stBlock && sh.st != stTypedef && sh.st != stIndirect
4334 && sh.st != stStruct && sh.st != stUnion
4335 && sh.st != stEnum))
4336 && (sh.st != stBlock || !SC_IS_COMMON (sh.sc)))
4337 {
4338 /* File indirect entry is corrupt. */
4339 *pname = "<illegal>";
4340 bad_rfd_entry_complaint (sym_name, xref_fd, rn->index);
4341 return result;
4342 }
4343
4344 *pname = debug_info->ss + fh->issBase + sh.iss;
4345
4346 pend = is_pending_symbol (fh, esh);
4347 if (pend)
4348 *tpp = pend->t;
4349 else
4350 {
4351 /* We have not yet seen this type. */
4352
4353 if ((sh.iss == 0 && sh.st == stTypedef) || sh.st == stIndirect)
4354 {
4355 TIR tir;
4356
4357 /* alpha cc puts out a stTypedef with a sh.iss of zero for
4358 two cases:
4359 a) forward declarations of structs/unions/enums which are not
4360 defined in this compilation unit.
4361 For these the type will be void. This is a bad design decision
4362 as cross referencing across compilation units is impossible
4363 due to the missing name.
4364 b) forward declarations of structs/unions/enums/typedefs which
4365 are defined later in this file or in another file in the same
4366 compilation unit. Irix5 cc uses a stIndirect symbol for this.
4367 Simply cross reference those again to get the true type.
4368 The forward references are not entered in the pending list and
4369 in the symbol table. */
4370
4371 (*debug_swap->swap_tir_in) (bigend,
4372 &(debug_info->external_aux
4373 + fh->iauxBase + sh.index)->a_ti,
4374 &tir);
4375 if (tir.tq0 != tqNil)
4376 complaint (_("illegal tq0 in forward typedef for %s"), sym_name);
4377 switch (tir.bt)
4378 {
4379 case btVoid:
4380 *tpp = init_type (mdebugread_objfile, type_code, 0, NULL);
4381 *pname = "<undefined>";
4382 break;
4383
4384 case btStruct:
4385 case btUnion:
4386 case btEnum:
4387 cross_ref (xref_fd,
4388 (debug_info->external_aux
4389 + fh->iauxBase + sh.index + 1),
4390 tpp, type_code, pname,
4391 fh->fBigendian, sym_name);
4392 break;
4393
4394 case btTypedef:
4395 /* Follow a forward typedef. This might recursively
4396 call cross_ref till we get a non typedef'ed type.
4397 FIXME: This is not correct behaviour, but gdb currently
4398 cannot handle typedefs without type copying. Type
4399 copying is impossible as we might have mutual forward
4400 references between two files and the copied type would not
4401 get filled in when we later parse its definition. */
4402 *tpp = parse_type (xref_fd,
4403 debug_info->external_aux + fh->iauxBase,
4404 sh.index,
4405 NULL,
4406 fh->fBigendian,
4407 debug_info->ss + fh->issBase + sh.iss);
4408 add_pending (fh, esh, *tpp);
4409 break;
4410
4411 default:
4412 complaint (_("illegal bt %d in forward typedef for %s"), tir.bt,
4413 sym_name);
4414 *tpp = init_type (mdebugread_objfile, type_code, 0, NULL);
4415 break;
4416 }
4417 return result;
4418 }
4419 else if (sh.st == stTypedef)
4420 {
4421 /* Parse the type for a normal typedef. This might recursively call
4422 cross_ref till we get a non typedef'ed type.
4423 FIXME: This is not correct behaviour, but gdb currently
4424 cannot handle typedefs without type copying. But type copying is
4425 impossible as we might have mutual forward references between
4426 two files and the copied type would not get filled in when
4427 we later parse its definition. */
4428 *tpp = parse_type (xref_fd,
4429 debug_info->external_aux + fh->iauxBase,
4430 sh.index,
4431 NULL,
4432 fh->fBigendian,
4433 debug_info->ss + fh->issBase + sh.iss);
4434 }
4435 else
4436 {
4437 /* Cross reference to a struct/union/enum which is defined
4438 in another file in the same compilation unit but that file
4439 has not been parsed yet.
4440 Initialize the type only, it will be filled in when
4441 it's definition is parsed. */
4442 *tpp = init_type (mdebugread_objfile, type_code, 0, NULL);
4443 }
4444 add_pending (fh, esh, *tpp);
4445 }
4446
4447 /* We used one auxent normally, two if we got a "next one" rf. */
4448 return result;
4449 }
4450
4451
4452 /* Quick&dirty lookup procedure, to avoid the MI ones that require
4453 keeping the symtab sorted. */
4454
4455 static struct symbol *
4456 mylookup_symbol (const char *name, const struct block *block,
4457 domain_enum domain, enum address_class theclass)
4458 {
4459 struct block_iterator iter;
4460 int inc;
4461 struct symbol *sym;
4462
4463 inc = name[0];
4464 ALL_BLOCK_SYMBOLS (block, iter, sym)
4465 {
4466 if (sym->linkage_name ()[0] == inc
4467 && SYMBOL_DOMAIN (sym) == domain
4468 && SYMBOL_CLASS (sym) == theclass
4469 && strcmp (sym->linkage_name (), name) == 0)
4470 return sym;
4471 }
4472
4473 block = BLOCK_SUPERBLOCK (block);
4474 if (block)
4475 return mylookup_symbol (name, block, domain, theclass);
4476 return 0;
4477 }
4478
4479
4480 /* Add a new symbol S to a block B. */
4481
4482 static void
4483 add_symbol (struct symbol *s, struct symtab *symtab, struct block *b)
4484 {
4485 symbol_set_symtab (s, symtab);
4486 mdict_add_symbol (BLOCK_MULTIDICT (b), s);
4487 }
4488
4489 /* Add a new block B to a symtab S. */
4490
4491 static void
4492 add_block (struct block *b, struct symtab *s)
4493 {
4494 /* Cast away "const", but that's ok because we're building the
4495 symtab and blockvector here. */
4496 struct blockvector *bv = (struct blockvector *) SYMTAB_BLOCKVECTOR (s);
4497
4498 bv = (struct blockvector *) xrealloc ((void *) bv,
4499 (sizeof (struct blockvector)
4500 + BLOCKVECTOR_NBLOCKS (bv)
4501 * sizeof (bv->block)));
4502 if (bv != SYMTAB_BLOCKVECTOR (s))
4503 SYMTAB_BLOCKVECTOR (s) = bv;
4504
4505 BLOCKVECTOR_BLOCK (bv, BLOCKVECTOR_NBLOCKS (bv)++) = b;
4506 }
4507
4508 /* Add a new linenumber entry (LINENO,ADR) to a linevector LT.
4509 MIPS' linenumber encoding might need more than one byte
4510 to describe it, LAST is used to detect these continuation lines.
4511
4512 Combining lines with the same line number seems like a bad idea.
4513 E.g: There could be a line number entry with the same line number after the
4514 prologue and GDB should not ignore it (this is a better way to find
4515 a prologue than mips_skip_prologue).
4516 But due to the compressed line table format there are line number entries
4517 for the same line which are needed to bridge the gap to the next
4518 line number entry. These entries have a bogus address info with them
4519 and we are unable to tell them from intended duplicate line number
4520 entries.
4521 This is another reason why -ggdb debugging format is preferable. */
4522
4523 static int
4524 add_line (struct linetable *lt, int lineno, CORE_ADDR adr, int last)
4525 {
4526 /* DEC c89 sometimes produces zero linenos which confuse gdb.
4527 Change them to something sensible. */
4528 if (lineno == 0)
4529 lineno = 1;
4530 if (last == 0)
4531 last = -2; /* Make sure we record first line. */
4532
4533 if (last == lineno) /* Skip continuation lines. */
4534 return lineno;
4535
4536 lt->item[lt->nitems].line = lineno;
4537 lt->item[lt->nitems++].pc = adr << 2;
4538 return lineno;
4539 }
4540 \f
4541 /* Sorting and reordering procedures. */
4542
4543 /* Blocks with a smaller low bound should come first. */
4544
4545 static bool
4546 block_is_less_than (const struct block *b1, const struct block *b2)
4547 {
4548 CORE_ADDR start1 = BLOCK_START (b1);
4549 CORE_ADDR start2 = BLOCK_START (b2);
4550
4551 if (start1 != start2)
4552 return start1 < start2;
4553
4554 return (BLOCK_END (b2)) < (BLOCK_END (b1));
4555 }
4556
4557 /* Sort the blocks of a symtab S.
4558 Reorder the blocks in the blockvector by code-address,
4559 as required by some MI search routines. */
4560
4561 static void
4562 sort_blocks (struct symtab *s)
4563 {
4564 /* We have to cast away const here, but this is ok because we're
4565 constructing the blockvector in this code. */
4566 struct blockvector *bv = (struct blockvector *) SYMTAB_BLOCKVECTOR (s);
4567
4568 if (BLOCKVECTOR_NBLOCKS (bv) <= FIRST_LOCAL_BLOCK)
4569 {
4570 /* Cosmetic */
4571 if (BLOCK_END (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK)) == 0)
4572 BLOCK_START (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK)) = 0;
4573 if (BLOCK_END (BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK)) == 0)
4574 BLOCK_START (BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK)) = 0;
4575 return;
4576 }
4577 /*
4578 * This is very unfortunate: normally all functions are compiled in
4579 * the order they are found, but if the file is compiled -O3 things
4580 * are very different. It would be nice to find a reliable test
4581 * to detect -O3 images in advance.
4582 */
4583 if (BLOCKVECTOR_NBLOCKS (bv) > FIRST_LOCAL_BLOCK + 1)
4584 std::sort (&BLOCKVECTOR_BLOCK (bv, FIRST_LOCAL_BLOCK),
4585 &BLOCKVECTOR_BLOCK (bv, BLOCKVECTOR_NBLOCKS (bv)),
4586 block_is_less_than);
4587
4588 {
4589 CORE_ADDR high = 0;
4590 int i, j = BLOCKVECTOR_NBLOCKS (bv);
4591
4592 for (i = FIRST_LOCAL_BLOCK; i < j; i++)
4593 if (high < BLOCK_END (BLOCKVECTOR_BLOCK (bv, i)))
4594 high = BLOCK_END (BLOCKVECTOR_BLOCK (bv, i));
4595 BLOCK_END (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK)) = high;
4596 }
4597
4598 BLOCK_START (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK)) =
4599 BLOCK_START (BLOCKVECTOR_BLOCK (bv, FIRST_LOCAL_BLOCK));
4600
4601 BLOCK_START (BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK)) =
4602 BLOCK_START (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK));
4603 BLOCK_END (BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK)) =
4604 BLOCK_END (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK));
4605 }
4606 \f
4607
4608 /* Constructor/restructor/destructor procedures. */
4609
4610 /* Allocate a new symtab for NAME. Needs an estimate of how many
4611 linenumbers MAXLINES we'll put in it. */
4612
4613 static struct compunit_symtab *
4614 new_symtab (const char *name, int maxlines, struct objfile *objfile)
4615 {
4616 struct compunit_symtab *cust = allocate_compunit_symtab (objfile, name);
4617 struct symtab *symtab;
4618 struct blockvector *bv;
4619 enum language lang;
4620
4621 add_compunit_symtab_to_objfile (cust);
4622 symtab = allocate_symtab (cust, name);
4623
4624 SYMTAB_LINETABLE (symtab) = new_linetable (maxlines);
4625 lang = compunit_language (cust);
4626
4627 /* All symtabs must have at least two blocks. */
4628 bv = new_bvect (2);
4629 BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK) = new_block (NON_FUNCTION_BLOCK, lang);
4630 BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK) = new_block (NON_FUNCTION_BLOCK, lang);
4631 BLOCK_SUPERBLOCK (BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK)) =
4632 BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK);
4633 COMPUNIT_BLOCKVECTOR (cust) = bv;
4634
4635 COMPUNIT_DEBUGFORMAT (cust) = "ECOFF";
4636 return cust;
4637 }
4638
4639 /* Allocate a new partial_symtab NAME. */
4640
4641 static legacy_psymtab *
4642 new_psymtab (const char *name, psymtab_storage *partial_symtabs,
4643 struct objfile *objfile)
4644 {
4645 legacy_psymtab *psymtab;
4646
4647 psymtab = new legacy_psymtab (name, partial_symtabs, objfile);
4648
4649 /* Keep a backpointer to the file's symbols. */
4650
4651 psymtab->read_symtab_private
4652 = OBSTACK_ZALLOC (&objfile->objfile_obstack, symloc);
4653 CUR_BFD (psymtab) = cur_bfd;
4654 DEBUG_SWAP (psymtab) = debug_swap;
4655 DEBUG_INFO (psymtab) = debug_info;
4656 PENDING_LIST (psymtab) = pending_list;
4657
4658 /* The way to turn this into a symtab is to call... */
4659 psymtab->legacy_read_symtab = mdebug_read_symtab;
4660 psymtab->legacy_expand_psymtab = mdebug_expand_psymtab;
4661 return (psymtab);
4662 }
4663
4664
4665 /* Allocate a linetable array of the given SIZE. Since the struct
4666 already includes one item, we subtract one when calculating the
4667 proper size to allocate. */
4668
4669 static struct linetable *
4670 new_linetable (int size)
4671 {
4672 struct linetable *l;
4673
4674 if (size > 1)
4675 --size;
4676 size = size * sizeof (l->item) + sizeof (struct linetable);
4677 l = (struct linetable *) xmalloc (size);
4678 l->nitems = 0;
4679 return l;
4680 }
4681
4682 /* Oops, too big. Shrink it. This was important with the 2.4 linetables,
4683 I am not so sure about the 3.4 ones.
4684
4685 Since the struct linetable already includes one item, we subtract one when
4686 calculating the proper size to allocate. */
4687
4688 static struct linetable *
4689 shrink_linetable (struct linetable *lt)
4690 {
4691 return (struct linetable *) xrealloc ((void *) lt,
4692 (sizeof (struct linetable)
4693 + ((lt->nitems - 1)
4694 * sizeof (lt->item))));
4695 }
4696
4697 /* Allocate and zero a new blockvector of NBLOCKS blocks. */
4698
4699 static struct blockvector *
4700 new_bvect (int nblocks)
4701 {
4702 struct blockvector *bv;
4703 int size;
4704
4705 size = sizeof (struct blockvector) + nblocks * sizeof (struct block *);
4706 bv = (struct blockvector *) xzalloc (size);
4707
4708 BLOCKVECTOR_NBLOCKS (bv) = nblocks;
4709
4710 return bv;
4711 }
4712
4713 /* Allocate and zero a new block of language LANGUAGE, and set its
4714 BLOCK_MULTIDICT. If function is non-zero, assume the block is
4715 associated to a function, and make sure that the symbols are stored
4716 linearly; otherwise, store them hashed. */
4717
4718 static struct block *
4719 new_block (enum block_type type, enum language language)
4720 {
4721 /* FIXME: carlton/2003-09-11: This should use allocate_block to
4722 allocate the block. Which, in turn, suggests that the block
4723 should be allocated on an obstack. */
4724 struct block *retval = XCNEW (struct block);
4725
4726 if (type == FUNCTION_BLOCK)
4727 BLOCK_MULTIDICT (retval) = mdict_create_linear_expandable (language);
4728 else
4729 BLOCK_MULTIDICT (retval) = mdict_create_hashed_expandable (language);
4730
4731 return retval;
4732 }
4733
4734 /* Create a new symbol with printname NAME. */
4735
4736 static struct symbol *
4737 new_symbol (const char *name)
4738 {
4739 struct symbol *s = new (&mdebugread_objfile->objfile_obstack) symbol;
4740
4741 s->set_language (psymtab_language, &mdebugread_objfile->objfile_obstack);
4742 s->compute_and_set_names (name, true, mdebugread_objfile->per_bfd);
4743 return s;
4744 }
4745
4746 /* Create a new type with printname NAME. */
4747
4748 static struct type *
4749 new_type (char *name)
4750 {
4751 struct type *t;
4752
4753 t = alloc_type (mdebugread_objfile);
4754 t->set_name (name);
4755 INIT_CPLUS_SPECIFIC (t);
4756 return t;
4757 }
4758 \f
4759 /* Read ECOFF debugging information from a BFD section. This is
4760 called from elfread.c. It parses the section into a
4761 ecoff_debug_info struct, and then lets the rest of the file handle
4762 it as normal. */
4763
4764 void
4765 elfmdebug_build_psymtabs (struct objfile *objfile,
4766 const struct ecoff_debug_swap *swap, asection *sec)
4767 {
4768 bfd *abfd = objfile->obfd;
4769 struct ecoff_debug_info *info;
4770
4771 /* FIXME: It's not clear whether we should be getting minimal symbol
4772 information from .mdebug in an ELF file, or whether we will.
4773 Re-initialize the minimal symbol reader in case we do. */
4774
4775 minimal_symbol_reader reader (objfile);
4776
4777 info = XOBNEW (&objfile->objfile_obstack, ecoff_debug_info);
4778
4779 if (!(*swap->read_debug_info) (abfd, sec, info))
4780 error (_("Error reading ECOFF debugging information: %s"),
4781 bfd_errmsg (bfd_get_error ()));
4782
4783 mdebug_build_psymtabs (reader, objfile, swap, info);
4784
4785 reader.install ();
4786 }
4787
4788 void _initialize_mdebugread ();
4789 void
4790 _initialize_mdebugread ()
4791 {
4792 mdebug_register_index
4793 = register_symbol_register_impl (LOC_REGISTER, &mdebug_register_funcs);
4794 mdebug_regparm_index
4795 = register_symbol_register_impl (LOC_REGPARM_ADDR, &mdebug_register_funcs);
4796 }
This page took 0.233042 seconds and 4 git commands to generate.