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