gdb: add target_ops::supports_displaced_step
[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);
c906108c
SS
1054 FIELD_TYPE (*f) = t;
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 {
c906108c 1201 TYPE_FIELD_TYPE (ftype, iparams) = 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;
1241 FIELD_TYPE (*f) = parse_type (cur_fd, ax, sh->index,
1242 &bitsize, bigend, name);
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':
5e2b427d 3032 if (gdbarch_static_transform_name_p (gdbarch))
149ad273 3033 namestring = gdbarch_static_transform_name
5e2b427d 3034 (gdbarch, namestring);
149ad273 3035
31edb802
CB
3036 add_psymbol_to_list (gdb::string_view (namestring,
3037 p - namestring),
3038 true, VAR_DOMAIN, LOC_STATIC,
79748972 3039 SECT_OFF_DATA (objfile),
75aedd27 3040 psymbol_placement::STATIC,
1762568f 3041 sh.value,
d3119d1e
EZ
3042 psymtab_language, objfile);
3043 continue;
3044 case 'G':
025bb325
MS
3045 /* The addresses in these entries are reported
3046 to be wrong. See the code that reads 'G's
3047 for symtabs. */
31edb802
CB
3048 add_psymbol_to_list (gdb::string_view (namestring,
3049 p - namestring),
3050 true, VAR_DOMAIN, LOC_STATIC,
79748972 3051 SECT_OFF_DATA (objfile),
75aedd27 3052 psymbol_placement::GLOBAL,
1762568f 3053 sh.value,
d3119d1e
EZ
3054 psymtab_language, objfile);
3055 continue;
3056
3057 case 'T':
3058 /* When a 'T' entry is defining an anonymous enum, it
3059 may have a name which is the empty string, or a
3060 single space. Since they're not really defining a
3061 symbol, those shouldn't go in the partial symbol
3062 table. We do pick up the elements of such enums at
3063 'check_enum:', below. */
3064 if (p >= namestring + 2
3065 || (p == namestring + 1
3066 && namestring[0] != ' '))
3067 {
31edb802
CB
3068 add_psymbol_to_list
3069 (gdb::string_view (namestring, p - namestring),
3070 true, STRUCT_DOMAIN, LOC_TYPEDEF, -1,
3071 psymbol_placement::STATIC, 0, psymtab_language,
3072 objfile);
d3119d1e
EZ
3073 if (p[2] == 't')
3074 {
3075 /* Also a typedef with the same name. */
31edb802
CB
3076 add_psymbol_to_list
3077 (gdb::string_view (namestring,
3078 p - namestring),
3079 true, VAR_DOMAIN, LOC_TYPEDEF, -1,
3080 psymbol_placement::STATIC, 0,
3081 psymtab_language, objfile);
d3119d1e
EZ
3082 p += 1;
3083 }
d3119d1e
EZ
3084 }
3085 goto check_enum;
3086 case 't':
3e43a32a 3087 if (p != namestring) /* a name is there, not
025bb325 3088 just :T... */
d3119d1e 3089 {
31edb802
CB
3090 add_psymbol_to_list
3091 (gdb::string_view (namestring,
3092 p - namestring),
3093 true, VAR_DOMAIN, LOC_TYPEDEF, -1,
3094 psymbol_placement::STATIC, 0, psymtab_language,
3095 objfile);
d3119d1e
EZ
3096 }
3097 check_enum:
3e43a32a
MS
3098 /* If this is an enumerated type, we need to add
3099 all the enum constants to the partial symbol
3100 table. This does not cover enums without names,
025bb325 3101 e.g. "enum {a, b} c;" in C, but fortunately
3e43a32a
MS
3102 those are rare. There is no way for GDB to find
3103 those from the enum type without spending too
3104 much time on it. Thus to solve this problem,
3105 the compiler needs to put out the enum in a
3106 nameless type. GCC2 does this. */
d3119d1e
EZ
3107
3108 /* We are looking for something of the form
3109 <name> ":" ("t" | "T") [<number> "="] "e"
3110 {<constant> ":" <value> ","} ";". */
3111
3112 /* Skip over the colon and the 't' or 'T'. */
3113 p += 2;
3e43a32a
MS
3114 /* This type may be given a number. Also, numbers
3115 can come in pairs like (0,26). Skip over it. */
d3119d1e
EZ
3116 while ((*p >= '0' && *p <= '9')
3117 || *p == '(' || *p == ',' || *p == ')'
3118 || *p == '=')
3119 p++;
3120
3121 if (*p++ == 'e')
3122 {
3e43a32a
MS
3123 /* The aix4 compiler emits extra crud before
3124 the members. */
d3119d1e
EZ
3125 if (*p == '-')
3126 {
3127 /* Skip over the type (?). */
3128 while (*p != ':')
3129 p++;
3130
3131 /* Skip over the colon. */
3132 p++;
3133 }
3134
3135 /* We have found an enumerated type. */
3136 /* According to comments in read_enum_type
3137 a comma could end it instead of a semicolon.
3138 I don't know where that happens.
3139 Accept either. */
3140 while (*p && *p != ';' && *p != ',')
3141 {
a121b7c1 3142 const char *q;
d3119d1e 3143
3e43a32a
MS
3144 /* Check for and handle cretinous dbx
3145 symbol name continuation! */
d3119d1e
EZ
3146 if (*p == '\\' || (*p == '?' && p[1] == '\0'))
3147 p = next_symbol_text (objfile);
3148
3149 /* Point to the character after the name
3150 of the enum constant. */
3151 for (q = p; *q && *q != ':'; q++)
3152 ;
3153 /* Note that the value doesn't matter for
3e43a32a
MS
3154 enum constants in psymtabs, just in
3155 symtabs. */
31edb802
CB
3156 add_psymbol_to_list (gdb::string_view (p,
3157 q - p),
3158 true, VAR_DOMAIN,
3159 LOC_CONST, -1,
75aedd27 3160 psymbol_placement::STATIC,
1762568f 3161 0, psymtab_language,
3e43a32a 3162 objfile);
d3119d1e
EZ
3163 /* Point past the name. */
3164 p = q;
3165 /* Skip over the value. */
3166 while (*p && *p != ',')
3167 p++;
3168 /* Advance past the comma. */
3169 if (*p)
3170 p++;
3171 }
3172 }
3173 continue;
3174 case 'c':
3175 /* Constant, e.g. from "const" in Pascal. */
31edb802
CB
3176 add_psymbol_to_list (gdb::string_view (namestring,
3177 p - namestring),
3178 true, VAR_DOMAIN, LOC_CONST, -1,
75aedd27 3179 psymbol_placement::STATIC,
1762568f 3180 0, psymtab_language, objfile);
d3119d1e
EZ
3181 continue;
3182
3183 case 'f':
3184 if (! pst)
3185 {
795afcbb
TT
3186 std::string copy (namestring, p);
3187 function_outside_compilation_unit_complaint
3188 (copy.c_str ());
d3119d1e 3189 }
31edb802
CB
3190 add_psymbol_to_list (gdb::string_view (namestring,
3191 p - namestring),
3192 true, VAR_DOMAIN, LOC_BLOCK,
79748972 3193 SECT_OFF_TEXT (objfile),
75aedd27 3194 psymbol_placement::STATIC,
1762568f 3195 sh.value,
d3119d1e
EZ
3196 psymtab_language, objfile);
3197 continue;
3198
3199 /* Global functions were ignored here, but now they
3e43a32a
MS
3200 are put into the global psymtab like one would
3201 expect. They're also in the minimal symbol
3202 table. */
d3119d1e
EZ
3203 case 'F':
3204 if (! pst)
3205 {
795afcbb
TT
3206 std::string copy (namestring, p);
3207 function_outside_compilation_unit_complaint
3208 (copy.c_str ());
d3119d1e 3209 }
31edb802
CB
3210 add_psymbol_to_list (gdb::string_view (namestring,
3211 p - namestring),
3212 true, VAR_DOMAIN, LOC_BLOCK,
79748972 3213 SECT_OFF_TEXT (objfile),
75aedd27 3214 psymbol_placement::GLOBAL,
1762568f 3215 sh.value,
d3119d1e
EZ
3216 psymtab_language, objfile);
3217 continue;
3218
3e43a32a
MS
3219 /* Two things show up here (hopefully); static
3220 symbols of local scope (static used inside
3221 braces) or extensions of structure symbols. We
3222 can ignore both. */
d3119d1e
EZ
3223 case 'V':
3224 case '(':
3225 case '0':
3226 case '1':
3227 case '2':
3228 case '3':
3229 case '4':
3230 case '5':
3231 case '6':
3232 case '7':
3233 case '8':
3234 case '9':
3235 case '-':
3e43a32a
MS
3236 case '#': /* For symbol identification (used
3237 in live ranges). */
d3119d1e
EZ
3238 continue;
3239
3240 case ':':
3e43a32a
MS
3241 /* It is a C++ nested symbol. We don't need to
3242 record it (I don't think); if we try to look up
3243 foo::bar::baz, then symbols for the symtab
3244 containing foo should get read in, I think. */
d3119d1e
EZ
3245 /* Someone says sun cc puts out symbols like
3246 /foo/baz/maclib::/usr/local/bin/maclib,
3247 which would get here with a symbol type of ':'. */
3248 continue;
3249
3250 default:
3e43a32a
MS
3251 /* Unexpected symbol descriptor. The second and
3252 subsequent stabs of a continued stab can show up
3253 here. The question is whether they ever can
3254 mimic a normal stab--it would be nice if not,
3255 since we certainly don't want to spend the time
3256 searching to the end of every string looking for
d3119d1e
EZ
3257 a backslash. */
3258
b98664d3 3259 complaint (_("unknown symbol descriptor `%c'"), p[1]);
d3119d1e
EZ
3260
3261 /* Ignore it; perhaps it is an extension that we don't
3262 know about. */
3263 continue;
3264 }
3265
3266 case N_EXCL:
3267 continue;
3268
3269 case N_ENDM:
5afc051b 3270 /* Solaris 2 end of module, finish current partial
4ae976d1
TT
3271 symbol table. dbx_end_psymtab will set the
3272 high text address of PST to the proper value,
3273 which is necessary if a module compiled without
5afc051b 3274 debugging info follows this module. */
203c3895 3275 if (pst
5e2b427d 3276 && gdbarch_sofun_address_maybe_missing (gdbarch))
d3119d1e 3277 {
891813be 3278 pst = (legacy_psymtab *) 0;
d3119d1e
EZ
3279 includes_used = 0;
3280 dependencies_used = 0;
3281 }
d3119d1e
EZ
3282 continue;
3283
3284 case N_RBRAC:
79748972 3285 if (sh.value > save_pst->raw_text_high ())
4ae976d1 3286 save_pst->set_text_high (sh.value);
d3119d1e
EZ
3287 continue;
3288 case N_EINCL:
3289 case N_DSLINE:
3290 case N_BSLINE:
3e43a32a
MS
3291 case N_SSYM: /* Claim: Structure or union
3292 element. Hopefully, I can
3293 ignore this. */
3294 case N_ENTRY: /* Alternate entry point; can
025bb325 3295 ignore. */
3e43a32a 3296 case N_MAIN: /* Can definitely ignore this. */
025bb325
MS
3297 case N_CATCH: /* These are GNU C++ extensions. */
3298 case N_EHDECL: /* that can safely be ignored here. */
d3119d1e
EZ
3299 case N_LENG:
3300 case N_BCOMM:
3301 case N_ECOMM:
3302 case N_ECOML:
3303 case N_FNAME:
3304 case N_SLINE:
3305 case N_RSYM:
3306 case N_PSYM:
3307 case N_LBRAC:
3308 case N_NSYMS: /* Ultrix 4.0: symbol count */
3309 case N_DEFD: /* GNU Modula-2 */
3e43a32a
MS
3310 case N_ALIAS: /* SunPro F77: alias name, ignore
3311 for now. */
d3119d1e 3312
025bb325 3313 case N_OBJ: /* Useless types from Solaris. */
d3119d1e 3314 case N_OPT:
3e43a32a 3315 /* These symbols aren't interesting; don't worry about
025bb325 3316 them. */
d3119d1e
EZ
3317
3318 continue;
3319
3320 default:
3e43a32a
MS
3321 /* If we haven't found it yet, ignore it. It's
3322 probably some new type we don't know about yet. */
b98664d3 3323 complaint (_("unknown symbol type %s"),
025bb325 3324 hex_string (type_code)); /* CUR_SYMBOL_TYPE */
d3119d1e
EZ
3325 continue;
3326 }
c906108c 3327 }
c5aa993b 3328 /* end - Handle continuation */
c906108c
SS
3329 }
3330 }
3331 else
3332 {
3333 for (cur_sdx = 0; cur_sdx < fh->csym;)
3334 {
b926417a 3335 char *sym_name;
fe978cb0 3336 enum address_class theclass;
2273f0ac 3337 CORE_ADDR minsym_value;
79748972 3338 short section = -1;
c906108c
SS
3339
3340 (*swap_sym_in) (cur_bfd,
3341 ((char *) debug_info->external_sym
3342 + ((fh->isymBase + cur_sdx)
3343 * external_sym_size)),
3344 &sh);
3345
3346 if (ECOFF_IS_STAB (&sh))
3347 {
3348 cur_sdx++;
3349 continue;
3350 }
3351
3352 /* Non absolute static symbols go into the minimal table. */
c5aa993b 3353 if (SC_IS_UNDEF (sh.sc) || sh.sc == scNil
c906108c
SS
3354 || (sh.index == indexNil
3355 && (sh.st != stStatic || sh.sc == scAbs)))
3356 {
025bb325 3357 /* FIXME, premature? */
c906108c
SS
3358 cur_sdx++;
3359 continue;
3360 }
3361
b926417a 3362 sym_name = debug_info->ss + fh->issBase + sh.iss;
c906108c 3363
2273f0ac
TT
3364 minsym_value = sh.value;
3365
c906108c
SS
3366 switch (sh.sc)
3367 {
3368 case scText:
3369 case scRConst:
3370 /* The value of a stEnd symbol is the displacement from the
3371 corresponding start symbol value, do not relocate it. */
3372 if (sh.st != stEnd)
79748972 3373 section = SECT_OFF_TEXT (objfile);
c906108c
SS
3374 break;
3375 case scData:
3376 case scSData:
3377 case scRData:
3378 case scPData:
3379 case scXData:
79748972 3380 section = SECT_OFF_DATA (objfile);
c906108c
SS
3381 break;
3382 case scBss:
3383 case scSBss:
79748972 3384 section = SECT_OFF_BSS (objfile);
c906108c
SS
3385 break;
3386 }
3387
3388 switch (sh.st)
3389 {
3390 CORE_ADDR high;
3391 CORE_ADDR procaddr;
3392 int new_sdx;
3393
3394 case stStaticProc:
b926417a 3395 reader.record_with_info (sym_name, minsym_value,
8dddcb8f
TT
3396 mst_file_text,
3397 SECT_OFF_TEXT (objfile));
c906108c
SS
3398
3399 /* FALLTHROUGH */
3400
3401 case stProc:
1fb4c65b
JB
3402 /* Ignore all parameter symbol records. */
3403 if (sh.index >= hdr->iauxMax)
3404 {
3405 /* Should not happen, but does when cross-compiling
3406 with the MIPS compiler. FIXME -- pull later. */
b926417a 3407 index_complaint (sym_name);
025bb325 3408 new_sdx = cur_sdx + 1; /* Don't skip at all. */
1fb4c65b
JB
3409 }
3410 else
3411 new_sdx = AUX_GET_ISYM (fh->fBigendian,
3412 (debug_info->external_aux
3413 + fh->iauxBase
3414 + sh.index));
3415
3416 if (new_sdx <= cur_sdx)
3417 {
3418 /* This should not happen either... FIXME. */
b98664d3 3419 complaint (_("bad proc end in aux found from symbol %s"),
b926417a 3420 sym_name);
025bb325 3421 new_sdx = cur_sdx + 1; /* Don't skip backward. */
1fb4c65b
JB
3422 }
3423
3424 /* For stProc symbol records, we need to check the
3425 storage class as well, as only (stProc, scText)
3426 entries represent "real" procedures - See the
3427 Compaq document titled "Object File / Symbol Table
3428 Format Specification" for more information. If the
3429 storage class is not scText, we discard the whole
3430 block of symbol records for this stProc. */
3431 if (sh.st == stProc && sh.sc != scText)
3432 goto skip;
3433
c906108c 3434 /* Usually there is a local and a global stProc symbol
025bb325 3435 for a function. This means that the function name
85102364 3436 has already been entered into the minimal symbol table
c906108c
SS
3437 while processing the global symbols in pass 2 above.
3438 One notable exception is the PROGRAM name from
3439 f77 compiled executables, it is only put out as
3440 local stProc symbol, and a global MAIN__ stProc symbol
3441 points to it. It doesn't matter though, as gdb is
3442 still able to find the PROGRAM name via the partial
3443 symbol table, and the MAIN__ symbol via the minimal
3444 symbol table. */
3445 if (sh.st == stProc)
31edb802 3446 add_psymbol_to_list (sym_name, true,
176620f1 3447 VAR_DOMAIN, LOC_BLOCK,
79748972 3448 section,
75aedd27 3449 psymbol_placement::GLOBAL,
1762568f 3450 sh.value, psymtab_language, objfile);
c906108c 3451 else
31edb802 3452 add_psymbol_to_list (sym_name, true,
176620f1 3453 VAR_DOMAIN, LOC_BLOCK,
79748972 3454 section,
75aedd27 3455 psymbol_placement::STATIC,
1762568f 3456 sh.value, psymtab_language, objfile);
c906108c 3457
c906108c
SS
3458 procaddr = sh.value;
3459
c906108c
SS
3460 cur_sdx = new_sdx;
3461 (*swap_sym_in) (cur_bfd,
3462 ((char *) debug_info->external_sym
3463 + ((fh->isymBase + cur_sdx - 1)
3464 * external_sym_size)),
3465 &sh);
3466 if (sh.st != stEnd)
3467 continue;
3468
3469 /* Kludge for Irix 5.2 zero fh->adr. */
3470 if (!relocatable
52948f01 3471 && (!pst->text_low_valid
79748972 3472 || procaddr < pst->raw_text_low ()))
4ae976d1 3473 pst->set_text_low (procaddr);
c906108c
SS
3474
3475 high = procaddr + sh.value;
79748972 3476 if (high > pst->raw_text_high ())
4ae976d1 3477 pst->set_text_high (high);
c906108c
SS
3478 continue;
3479
3480 case stStatic: /* Variable */
c5aa993b 3481 if (SC_IS_DATA (sh.sc))
b926417a 3482 reader.record_with_info (sym_name, minsym_value,
8dddcb8f
TT
3483 mst_file_data,
3484 SECT_OFF_DATA (objfile));
c906108c 3485 else
b926417a 3486 reader.record_with_info (sym_name, minsym_value,
8dddcb8f
TT
3487 mst_file_bss,
3488 SECT_OFF_BSS (objfile));
fe978cb0 3489 theclass = LOC_STATIC;
c906108c
SS
3490 break;
3491
c5aa993b 3492 case stIndirect: /* Irix5 forward declaration */
025bb325 3493 /* Skip forward declarations from Irix5 cc. */
c906108c
SS
3494 goto skip;
3495
c5aa993b 3496 case stTypedef: /* Typedef */
c906108c
SS
3497 /* Skip typedefs for forward declarations and opaque
3498 structs from alpha and mips cc. */
3499 if (sh.iss == 0 || has_opaque_xref (fh, &sh))
3500 goto skip;
fe978cb0 3501 theclass = LOC_TYPEDEF;
c906108c
SS
3502 break;
3503
3504 case stConstant: /* Constant decl */
fe978cb0 3505 theclass = LOC_CONST;
c906108c
SS
3506 break;
3507
3508 case stUnion:
3509 case stStruct:
3510 case stEnum:
c5aa993b 3511 case stBlock: /* { }, str, un, enum */
c906108c 3512 /* Do not create a partial symbol for cc unnamed aggregates
025bb325 3513 and gcc empty aggregates. */
c906108c 3514 if ((sh.sc == scInfo
c5aa993b 3515 || SC_IS_COMMON (sh.sc))
c906108c
SS
3516 && sh.iss != 0
3517 && sh.index != cur_sdx + 2)
3518 {
31edb802 3519 add_psymbol_to_list (sym_name, true,
79748972 3520 STRUCT_DOMAIN, LOC_TYPEDEF, -1,
75aedd27 3521 psymbol_placement::STATIC,
1762568f 3522 0, psymtab_language, objfile);
c906108c
SS
3523 }
3524 handle_psymbol_enumerators (objfile, fh, sh.st, sh.value);
3525
025bb325 3526 /* Skip over the block. */
c906108c
SS
3527 new_sdx = sh.index;
3528 if (new_sdx <= cur_sdx)
3529 {
025bb325 3530 /* This happens with the Ultrix kernel. */
b926417a
TT
3531 complaint (_("bad aux index at block symbol %s"),
3532 sym_name);
025bb325 3533 new_sdx = cur_sdx + 1; /* Don't skip backward. */
c906108c
SS
3534 }
3535 cur_sdx = new_sdx;
3536 continue;
3537
3538 case stFile: /* File headers */
3539 case stLabel: /* Labels */
3540 case stEnd: /* Ends of files */
3541 goto skip;
3542
3543 case stLocal: /* Local variables */
3544 /* Normally these are skipped because we skip over
3545 all blocks we see. However, these can occur
025bb325 3546 as visible symbols in a .h file that contains code. */
c906108c
SS
3547 goto skip;
3548
3549 default:
b926417a 3550 /* Both complaints are valid: one gives symbol sym_name,
c906108c 3551 the other the offending symbol type. */
b98664d3 3552 complaint (_("unknown local symbol %s"),
b926417a 3553 sym_name);
b98664d3 3554 complaint (_("with type %d"), sh.st);
c906108c
SS
3555 cur_sdx++;
3556 continue;
3557 }
025bb325 3558 /* Use this gdb symbol. */
31edb802 3559 add_psymbol_to_list (sym_name, true,
79748972 3560 VAR_DOMAIN, theclass, section,
75aedd27 3561 psymbol_placement::STATIC,
1762568f 3562 sh.value, psymtab_language, objfile);
c906108c 3563 skip:
025bb325 3564 cur_sdx++; /* Go to next file symbol. */
c906108c
SS
3565 }
3566
025bb325 3567 /* Now do enter the external symbols. */
c906108c
SS
3568 ext_ptr = &extern_tab[fdr_to_pst[f_idx].globals_offset];
3569 cur_sdx = fdr_to_pst[f_idx].n_globals;
3570 PST_PRIVATE (save_pst)->extern_count = cur_sdx;
3571 PST_PRIVATE (save_pst)->extern_tab = ext_ptr;
3572 for (; --cur_sdx >= 0; ext_ptr++)
3573 {
fe978cb0 3574 enum address_class theclass;
c906108c 3575 SYMR *psh;
c906108c 3576 CORE_ADDR svalue;
79748972 3577 short section;
c906108c 3578
e2ff18a0
SM
3579 gdb_assert (ext_ptr->ifd == f_idx);
3580
c906108c
SS
3581 psh = &ext_ptr->asym;
3582
3583 /* Do not add undefined symbols to the partial symbol table. */
c5aa993b 3584 if (SC_IS_UNDEF (psh->sc) || psh->sc == scNil)
c906108c
SS
3585 continue;
3586
3587 svalue = psh->value;
3588 switch (psh->sc)
3589 {
79748972 3590 default:
c906108c
SS
3591 case scText:
3592 case scRConst:
79748972 3593 section = SECT_OFF_TEXT (objfile);
c906108c
SS
3594 break;
3595 case scData:
3596 case scSData:
3597 case scRData:
3598 case scPData:
3599 case scXData:
79748972 3600 section = SECT_OFF_DATA (objfile);
c906108c
SS
3601 break;
3602 case scBss:
3603 case scSBss:
79748972 3604 section = SECT_OFF_BSS (objfile);
c906108c
SS
3605 break;
3606 }
3607
3608 switch (psh->st)
3609 {
3610 case stNil:
3611 /* These are generated for static symbols in .o files,
3612 ignore them. */
3613 continue;
3614 case stProc:
3615 case stStaticProc:
3616 /* External procedure symbols have been entered
3617 into the minimal symbol table in pass 2 above.
3618 Ignore them, as parse_external will ignore them too. */
3619 continue;
3620 case stLabel:
fe978cb0 3621 theclass = LOC_LABEL;
c906108c
SS
3622 break;
3623 default:
23136709 3624 unknown_ext_complaint (debug_info->ssext + psh->iss);
86a73007
TT
3625 /* Pretend it's global. */
3626 /* Fall through. */
c906108c
SS
3627 case stGlobal:
3628 /* Global common symbols are resolved by the runtime loader,
3629 ignore them. */
c5aa993b 3630 if (SC_IS_COMMON (psh->sc))
c906108c
SS
3631 continue;
3632
fe978cb0 3633 theclass = LOC_STATIC;
c906108c
SS
3634 break;
3635 }
b926417a 3636 char *sym_name = debug_info->ssext + psh->iss;
31edb802 3637 add_psymbol_to_list (sym_name, true,
fe978cb0 3638 VAR_DOMAIN, theclass,
79748972 3639 section,
75aedd27 3640 psymbol_placement::GLOBAL,
1762568f 3641 svalue, psymtab_language, objfile);
c906108c
SS
3642 }
3643 }
3644
8763cede 3645 /* Link pst to FDR. dbx_end_psymtab returns NULL if the psymtab was
c5aa993b 3646 empty and put on the free list. */
8763cede
DE
3647 fdr_to_pst[f_idx].pst
3648 = dbx_end_psymtab (objfile, save_pst,
3649 psymtab_include_list, includes_used,
79748972 3650 -1, save_pst->raw_text_high (),
8763cede
DE
3651 dependency_list, dependencies_used,
3652 textlow_not_set);
c906108c
SS
3653 includes_used = 0;
3654 dependencies_used = 0;
3655
c906108c 3656 /* The objfile has its functions reordered if this partial symbol
c5aa993b
JM
3657 table overlaps any other partial symbol table.
3658 We cannot assume a reordered objfile if a partial symbol table
3659 is contained within another partial symbol table, as partial symbol
3660 tables for include files with executable code are contained
3661 within the partial symbol table for the including source file,
3662 and we do not want to flag the objfile reordered for these cases.
3663
3664 This strategy works well for Irix-5.2 shared libraries, but we
3665 might have to use a more elaborate (and slower) algorithm for
3666 other cases. */
c906108c
SS
3667 save_pst = fdr_to_pst[f_idx].pst;
3668 if (save_pst != NULL
52948f01 3669 && save_pst->text_low_valid
c906108c
SS
3670 && !(objfile->flags & OBJF_REORDERED))
3671 {
f252c6d5 3672 for (partial_symtab *iter : objfile->psymtabs ())
b22a7c6a
TT
3673 {
3674 if (save_pst != iter
3675 && save_pst->raw_text_low () >= iter->raw_text_low ()
3676 && save_pst->raw_text_low () < iter->raw_text_high ()
3677 && save_pst->raw_text_high () > iter->raw_text_high ())
3678 {
3679 objfile->flags |= OBJF_REORDERED;
3680 break;
3681 }
3682 }
c906108c
SS
3683 }
3684 }
3685
025bb325 3686 /* Now scan the FDRs for dependencies. */
c906108c
SS
3687 for (f_idx = 0; f_idx < hdr->ifdMax; f_idx++)
3688 {
3689 fh = f_idx + debug_info->fdr;
3690 pst = fdr_to_pst[f_idx].pst;
3691
cafb3438 3692 if (pst == NULL)
c906108c
SS
3693 continue;
3694
025bb325 3695 /* This should catch stabs-in-ecoff. */
c906108c
SS
3696 if (fh->crfd <= 1)
3697 continue;
3698
3e43a32a
MS
3699 /* Skip the first file indirect entry as it is a self dependency for
3700 source files or a reverse .h -> .c dependency for header files. */
c906108c 3701 pst->number_of_dependencies = 0;
a9342b62
TT
3702 pst->dependencies
3703 = objfile->partial_symtabs->allocate_dependencies (fh->crfd - 1);
c906108c
SS
3704 for (s_idx = 1; s_idx < fh->crfd; s_idx++)
3705 {
3706 RFDT rh;
3707
3708 (*swap_rfd_in) (cur_bfd,
3709 ((char *) debug_info->external_rfd
3710 + (fh->rfdBase + s_idx) * external_rfd_size),
3711 &rh);
3712 if (rh < 0 || rh >= hdr->ifdMax)
3713 {
b98664d3 3714 complaint (_("bad file number %ld"), rh);
c906108c
SS
3715 continue;
3716 }
3717
3718 /* Skip self dependencies of header files. */
3719 if (rh == f_idx)
3720 continue;
3721
405feb71 3722 /* Do not add to dependency list if psymtab was empty. */
cafb3438 3723 if (fdr_to_pst[rh].pst == NULL)
c906108c 3724 continue;
3e43a32a
MS
3725 pst->dependencies[pst->number_of_dependencies++]
3726 = fdr_to_pst[rh].pst;
c906108c
SS
3727 }
3728 }
3729
3730 /* Remove the dummy psymtab created for -O3 images above, if it is
3731 still empty, to enable the detection of stripped executables. */
891813be
TT
3732 partial_symtab *pst_del = objfile->partial_symtabs->psymtabs;
3733 if (pst_del->next == NULL
3734 && pst_del->number_of_dependencies == 0
3735 && pst_del->n_global_syms == 0
3736 && pst_del->n_static_syms == 0)
3737 objfile->partial_symtabs->discard_psymtab (pst_del);
c906108c
SS
3738}
3739
3740/* If the current psymbol has an enumerated type, we need to add
b021a221 3741 all the enum constants to the partial symbol table. */
c906108c
SS
3742
3743static void
fba45db2
KB
3744handle_psymbol_enumerators (struct objfile *objfile, FDR *fh, int stype,
3745 CORE_ADDR svalue)
c906108c
SS
3746{
3747 const bfd_size_type external_sym_size = debug_swap->external_sym_size;
12b9c64f 3748 void (*const swap_sym_in) (bfd *, void *, SYMR *) = debug_swap->swap_sym_in;
c906108c 3749 char *ext_sym = ((char *) debug_info->external_sym
c5aa993b 3750 + ((fh->isymBase + cur_sdx + 1) * external_sym_size));
c906108c
SS
3751 SYMR sh;
3752 TIR tir;
3753
3754 switch (stype)
3755 {
3756 case stEnum:
3757 break;
3758
3759 case stBlock:
3760 /* It is an enumerated type if the next symbol entry is a stMember
c5aa993b
JM
3761 and its auxiliary index is indexNil or its auxiliary entry
3762 is a plain btNil or btVoid.
3763 Alpha cc -migrate enums are recognized by a zero index and
3764 a zero symbol value.
3765 DU 4.0 cc enums are recognized by a member type of btEnum without
3766 qualifiers and a zero symbol value. */
c906108c
SS
3767 (*swap_sym_in) (cur_bfd, ext_sym, &sh);
3768 if (sh.st != stMember)
3769 return;
3770
3771 if (sh.index == indexNil
3772 || (sh.index == 0 && svalue == 0))
3773 break;
3774 (*debug_swap->swap_tir_in) (fh->fBigendian,
3775 &(debug_info->external_aux
3776 + fh->iauxBase + sh.index)->a_ti,
3777 &tir);
3778 if ((tir.bt != btNil
3779 && tir.bt != btVoid
3780 && (tir.bt != btEnum || svalue != 0))
3781 || tir.tq0 != tqNil)
3782 return;
3783 break;
3784
3785 default:
3786 return;
3787 }
3788
3789 for (;;)
3790 {
3791 char *name;
3792
3793 (*swap_sym_in) (cur_bfd, ext_sym, &sh);
3794 if (sh.st != stMember)
3795 break;
3796 name = debug_info->ss + cur_fdr->issBase + sh.iss;
3797
3798 /* Note that the value doesn't matter for enum constants
c5aa993b 3799 in psymtabs, just in symtabs. */
31edb802 3800 add_psymbol_to_list (name, true,
79748972 3801 VAR_DOMAIN, LOC_CONST, -1,
75aedd27 3802 psymbol_placement::STATIC, 0,
79748972 3803 psymtab_language, objfile);
c906108c
SS
3804 ext_sym += external_sym_size;
3805 }
3806}
3807
025bb325 3808/* Get the next symbol. OBJFILE is unused. */
0e7e8d51 3809
a121b7c1 3810static const char *
0e7e8d51 3811mdebug_next_symbol_text (struct objfile *objfile)
c906108c
SS
3812{
3813 SYMR sh;
3814
3815 cur_sdx++;
3816 (*debug_swap->swap_sym_in) (cur_bfd,
3817 ((char *) debug_info->external_sym
3818 + ((cur_fdr->isymBase + cur_sdx)
3819 * debug_swap->external_sym_size)),
3820 &sh);
3821 return debug_info->ss + cur_fdr->issBase + sh.iss;
3822}
3823
3824/* Ancillary function to psymtab_to_symtab(). Does all the work
3825 for turning the partial symtab PST into a symtab, recurring
3826 first on all dependent psymtabs. The argument FILENAME is
3827 only passed so we can see in debug stack traces what file
3828 is being read.
3829
3830 This function has a split personality, based on whether the
3831 symbol table contains ordinary ecoff symbols, or stabs-in-ecoff.
3832 The flow of control and even the memory allocation differs. FIXME. */
3833
3834static void
69b037c3 3835mdebug_expand_psymtab (legacy_psymtab *pst, struct objfile *objfile)
c906108c
SS
3836{
3837 bfd_size_type external_sym_size;
3838 bfd_size_type external_pdr_size;
12b9c64f
AO
3839 void (*swap_sym_in) (bfd *, void *, SYMR *);
3840 void (*swap_pdr_in) (bfd *, void *, PDR *);
c906108c 3841 int i;
43f3e411 3842 struct compunit_symtab *cust = NULL;
c906108c
SS
3843 FDR *fh;
3844 struct linetable *lines;
3845 CORE_ADDR lowest_pdr_addr = 0;
16db6055 3846 int last_symtab_ended = 0;
6a053cb1 3847 const section_offsets &section_offsets = objfile->section_offsets;
c906108c
SS
3848
3849 if (pst->readin)
3850 return;
6d94535f 3851 pst->readin = true;
c906108c 3852
85102364 3853 /* Read in all partial symtabs on which this one is dependent.
c906108c
SS
3854 NOTE that we do have circular dependencies, sigh. We solved
3855 that by setting pst->readin before this point. */
48993951 3856 pst->expand_dependencies (objfile);
c906108c
SS
3857
3858 /* Do nothing if this is a dummy psymtab. */
3859
3860 if (pst->n_global_syms == 0 && pst->n_static_syms == 0
52948f01 3861 && !pst->text_low_valid && !pst->text_high_valid)
c906108c
SS
3862 return;
3863
025bb325 3864 /* Now read the symbols for this symtab. */
c906108c
SS
3865
3866 cur_bfd = CUR_BFD (pst);
3867 debug_swap = DEBUG_SWAP (pst);
3868 debug_info = DEBUG_INFO (pst);
3869 pending_list = PENDING_LIST (pst);
3870 external_sym_size = debug_swap->external_sym_size;
3871 external_pdr_size = debug_swap->external_pdr_size;
3872 swap_sym_in = debug_swap->swap_sym_in;
3873 swap_pdr_in = debug_swap->swap_pdr_in;
5c80ed9d 3874 mdebugread_objfile = objfile;
c906108c
SS
3875 cur_fd = FDR_IDX (pst);
3876 fh = ((cur_fd == -1)
cafb3438 3877 ? NULL
c906108c
SS
3878 : debug_info->fdr + cur_fd);
3879 cur_fdr = fh;
3880
025bb325 3881 /* See comment in parse_partial_symbols about the @stabs sentinel. */
c906108c 3882 processing_gcc_compilation = 0;
cafb3438 3883 if (fh != NULL && fh->csym >= 2)
c906108c
SS
3884 {
3885 SYMR sh;
3886
3887 (*swap_sym_in) (cur_bfd,
3888 ((char *) debug_info->external_sym
3889 + (fh->isymBase + 1) * external_sym_size),
3890 &sh);
ee300cd4
AC
3891 if (strcmp (debug_info->ss + fh->issBase + sh.iss,
3892 stabs_symbol) == 0)
c906108c
SS
3893 {
3894 /* We indicate that this is a GCC compilation so that certain
3895 features will be enabled in stabsread/dbxread. */
3896 processing_gcc_compilation = 2;
3897 }
3898 }
3899
3900 if (processing_gcc_compilation != 0)
3901 {
08feed99 3902 struct gdbarch *gdbarch = objfile->arch ();
c906108c
SS
3903
3904 /* This symbol table contains stabs-in-ecoff entries. */
3905
025bb325 3906 /* Parse local symbols first. */
c906108c 3907
025bb325 3908 if (fh->csym <= 2) /* FIXME, this blows psymtab->symtab ptr. */
c906108c 3909 {
dd707e8e 3910 mdebugread_objfile = NULL;
c906108c
SS
3911 return;
3912 }
3913 for (cur_sdx = 2; cur_sdx < fh->csym; cur_sdx++)
3914 {
3915 SYMR sh;
3916 char *name;
3917 CORE_ADDR valu;
3918
3919 (*swap_sym_in) (cur_bfd,
3920 (((char *) debug_info->external_sym)
3921 + (fh->isymBase + cur_sdx) * external_sym_size),
3922 &sh);
3923 name = debug_info->ss + fh->issBase + sh.iss;
3924 valu = sh.value;
3925 /* XXX This is a hack. It will go away! */
3926 if (ECOFF_IS_STAB (&sh) || (name[0] == '#'))
3927 {
3928 int type_code = ECOFF_UNMARK_STAB (sh.index);
5ffa0793 3929 enum language language = PST_PRIVATE (pst)->pst_language;
c906108c
SS
3930
3931 /* We should never get non N_STAB symbols here, but they
c5aa993b
JM
3932 should be harmless, so keep process_one_symbol from
3933 complaining about them. */
c906108c
SS
3934 if (type_code & N_STAB)
3935 {
16db6055
EZ
3936 /* If we found a trailing N_SO with no name, process
3937 it here instead of in process_one_symbol, so we
3938 can keep a handle to its symtab. The symtab
3939 would otherwise be ended twice, once in
025bb325 3940 process_one_symbol, and once after this loop. */
16db6055 3941 if (type_code == N_SO
46212e0b 3942 && get_last_source_file ()
16db6055
EZ
3943 && previous_stab_code != (unsigned char) N_SO
3944 && *name == '\000')
3945 {
6a053cb1 3946 valu += section_offsets[SECT_OFF_TEXT (objfile)];
16db6055 3947 previous_stab_code = N_SO;
43f3e411 3948 cust = end_symtab (valu, SECT_OFF_TEXT (objfile));
16db6055
EZ
3949 end_stabs ();
3950 last_symtab_ended = 1;
3951 }
3952 else
3953 {
3954 last_symtab_ended = 0;
3955 process_one_symbol (type_code, 0, valu, name,
5ffa0793 3956 section_offsets, objfile, language);
16db6055 3957 }
c906108c
SS
3958 }
3959 /* Similarly a hack. */
3960 else if (name[0] == '#')
3961 {
3962 process_one_symbol (N_SLINE, 0, valu, name,
5ffa0793 3963 section_offsets, objfile, language);
c906108c
SS
3964 }
3965 if (type_code == N_FUN)
3966 {
3967 /* Make up special symbol to contain
025bb325 3968 procedure specific info. */
e39db4db
SM
3969 mdebug_extra_func_info *e
3970 = OBSTACK_ZALLOC (&mdebugread_objfile->objfile_obstack,
3971 mdebug_extra_func_info);
f92761ec 3972 struct symbol *s = new_symbol (MDEBUG_EFI_SYMBOL_NAME);
c906108c 3973
176620f1 3974 SYMBOL_DOMAIN (s) = LABEL_DOMAIN;
f1e6e072 3975 SYMBOL_ACLASS_INDEX (s) = LOC_CONST;
5c80ed9d 3976 SYMBOL_TYPE (s) = objfile_type (objfile)->builtin_void;
9918cab9 3977 SYMBOL_VALUE_BYTES (s) = (gdb_byte *) e;
c906108c 3978 e->pdr.framereg = -1;
e148f09d 3979 add_symbol_to_list (s, get_local_symbols ());
c906108c
SS
3980 }
3981 }
3982 else if (sh.st == stLabel)
3983 {
3984 if (sh.index == indexNil)
3985 {
3986 /* This is what the gcc2_compiled and __gnu_compiled_*
3987 show up as. So don't complain. */
3988 ;
3989 }
3990 else
3991 {
025bb325 3992 /* Handle encoded stab line number. */
6a053cb1 3993 valu += section_offsets[SECT_OFF_TEXT (objfile)];
3c65e5b3 3994 record_line (get_current_subfile (), sh.index,
fbf65064 3995 gdbarch_addr_bits_remove (gdbarch, valu));
c906108c
SS
3996 }
3997 }
3998 else if (sh.st == stProc || sh.st == stStaticProc
3999 || sh.st == stStatic || sh.st == stEnd)
025bb325 4000 /* These are generated by gcc-2.x, do not complain. */
c906108c
SS
4001 ;
4002 else
b98664d3 4003 complaint (_("unknown stabs symbol %s"), name);
c906108c 4004 }
16db6055
EZ
4005
4006 if (! last_symtab_ended)
4007 {
79748972 4008 cust = end_symtab (pst->raw_text_high (), SECT_OFF_TEXT (objfile));
16db6055
EZ
4009 end_stabs ();
4010 }
c906108c 4011
c906108c 4012 /* There used to be a call to sort_blocks here, but this should not
c5aa993b
JM
4013 be necessary for stabs symtabs. And as sort_blocks modifies the
4014 start address of the GLOBAL_BLOCK to the FIRST_LOCAL_BLOCK,
4015 it did the wrong thing if the first procedure in a file was
4016 generated via asm statements. */
c906108c
SS
4017
4018 /* Fill in procedure info next. */
4019 if (fh->cpd > 0)
4020 {
c906108c
SS
4021 char *pdr_ptr;
4022 char *pdr_end;
4023 PDR *pdr_in;
4024 PDR *pdr_in_end;
4025
633cf254 4026 gdb::def_vector<PDR> pr_block (fh->cpd);
c906108c
SS
4027
4028 pdr_ptr = ((char *) debug_info->external_pdr
4029 + fh->ipdFirst * external_pdr_size);
4030 pdr_end = pdr_ptr + fh->cpd * external_pdr_size;
633cf254 4031 pdr_in = pr_block.data ();
c906108c
SS
4032 for (;
4033 pdr_ptr < pdr_end;
4034 pdr_ptr += external_pdr_size, pdr_in++)
4035 {
4036 (*swap_pdr_in) (cur_bfd, pdr_ptr, pdr_in);
4037
4038 /* Determine lowest PDR address, the PDRs are not always
c5aa993b 4039 sorted. */
633cf254 4040 if (pdr_in == pr_block.data ())
c906108c
SS
4041 lowest_pdr_addr = pdr_in->adr;
4042 else if (pdr_in->adr < lowest_pdr_addr)
4043 lowest_pdr_addr = pdr_in->adr;
4044 }
4045
633cf254 4046 pdr_in = pr_block.data ();
c906108c
SS
4047 pdr_in_end = pdr_in + fh->cpd;
4048 for (; pdr_in < pdr_in_end; pdr_in++)
43f3e411 4049 parse_procedure (pdr_in, cust, pst);
c906108c
SS
4050 }
4051 }
4052 else
4053 {
4054 /* This symbol table contains ordinary ecoff entries. */
4055
30cc903e 4056 int maxlines, size;
c906108c
SS
4057 EXTR *ext_ptr;
4058
c906108c
SS
4059 if (fh == 0)
4060 {
4061 maxlines = 0;
43f3e411 4062 cust = new_symtab ("unknown", 0, objfile);
c906108c
SS
4063 }
4064 else
4065 {
c906108c 4066 maxlines = 2 * fh->cline;
43f3e411 4067 cust = new_symtab (pst->filename, maxlines, objfile);
c906108c
SS
4068
4069 /* The proper language was already determined when building
4070 the psymtab, use it. */
43f3e411 4071 COMPUNIT_FILETABS (cust)->language = PST_PRIVATE (pst)->pst_language;
c906108c
SS
4072 }
4073
43f3e411 4074 psymtab_language = COMPUNIT_FILETABS (cust)->language;
c906108c 4075
43f3e411 4076 lines = SYMTAB_LINETABLE (COMPUNIT_FILETABS (cust));
c906108c 4077
025bb325 4078 /* Get a new lexical context. */
c906108c
SS
4079
4080 push_parse_stack ();
43f3e411
DE
4081 top_stack->cur_st = COMPUNIT_FILETABS (cust);
4082 top_stack->cur_block
4083 = BLOCKVECTOR_BLOCK (COMPUNIT_BLOCKVECTOR (cust), STATIC_BLOCK);
79748972 4084 BLOCK_START (top_stack->cur_block) = pst->text_low (objfile);
c906108c
SS
4085 BLOCK_END (top_stack->cur_block) = 0;
4086 top_stack->blocktype = stFile;
c906108c
SS
4087 top_stack->cur_type = 0;
4088 top_stack->procadr = 0;
4089 top_stack->numargs = 0;
4090 found_ecoff_debugging_info = 0;
4091
4092 if (fh)
4093 {
4094 char *sym_ptr;
4095 char *sym_end;
4096
025bb325 4097 /* Parse local symbols first. */
c906108c
SS
4098 sym_ptr = ((char *) debug_info->external_sym
4099 + fh->isymBase * external_sym_size);
4100 sym_end = sym_ptr + fh->csym * external_sym_size;
4101 while (sym_ptr < sym_end)
4102 {
4103 SYMR sh;
4104 int c;
4105
4106 (*swap_sym_in) (cur_bfd, sym_ptr, &sh);
4107 c = parse_symbol (&sh,
4108 debug_info->external_aux + fh->iauxBase,
3e43a32a 4109 sym_ptr, fh->fBigendian,
18a94d75 4110 section_offsets, objfile);
c906108c
SS
4111 sym_ptr += c * external_sym_size;
4112 }
4113
4114 /* Linenumbers. At the end, check if we can save memory.
4115 parse_lines has to look ahead an arbitrary number of PDR
4116 structures, so we swap them all first. */
4117 if (fh->cpd > 0)
4118 {
c906108c
SS
4119 char *pdr_ptr;
4120 char *pdr_end;
4121 PDR *pdr_in;
4122 PDR *pdr_in_end;
4123
633cf254 4124 gdb::def_vector<PDR> pr_block (fh->cpd);
c906108c
SS
4125
4126 pdr_ptr = ((char *) debug_info->external_pdr
4127 + fh->ipdFirst * external_pdr_size);
4128 pdr_end = pdr_ptr + fh->cpd * external_pdr_size;
633cf254 4129 pdr_in = pr_block.data ();
c906108c
SS
4130 for (;
4131 pdr_ptr < pdr_end;
4132 pdr_ptr += external_pdr_size, pdr_in++)
4133 {
4134 (*swap_pdr_in) (cur_bfd, pdr_ptr, pdr_in);
4135
4136 /* Determine lowest PDR address, the PDRs are not always
4137 sorted. */
633cf254 4138 if (pdr_in == pr_block.data ())
c906108c
SS
4139 lowest_pdr_addr = pdr_in->adr;
4140 else if (pdr_in->adr < lowest_pdr_addr)
4141 lowest_pdr_addr = pdr_in->adr;
4142 }
4143
633cf254 4144 parse_lines (fh, pr_block.data (), lines, maxlines,
79748972 4145 pst->text_low (objfile), lowest_pdr_addr);
c906108c
SS
4146 if (lines->nitems < fh->cline)
4147 lines = shrink_linetable (lines);
4148
4149 /* Fill in procedure info next. */
633cf254 4150 pdr_in = pr_block.data ();
c906108c
SS
4151 pdr_in_end = pdr_in + fh->cpd;
4152 for (; pdr_in < pdr_in_end; pdr_in++)
43f3e411 4153 parse_procedure (pdr_in, NULL, pst);
c906108c
SS
4154 }
4155 }
4156
30cc903e
TT
4157 size = lines->nitems;
4158 if (size > 1)
4159 --size;
43f3e411 4160 SYMTAB_LINETABLE (COMPUNIT_FILETABS (cust))
224c3ddb
SM
4161 = ((struct linetable *)
4162 obstack_copy (&mdebugread_objfile->objfile_obstack,
4163 lines, (sizeof (struct linetable)
4164 + size * sizeof (lines->item))));
30cc903e 4165 xfree (lines);
c906108c
SS
4166
4167 /* .. and our share of externals.
025bb325
MS
4168 XXX use the global list to speed up things here. How?
4169 FIXME, Maybe quit once we have found the right number of ext's? */
43f3e411 4170 top_stack->cur_st = COMPUNIT_FILETABS (cust);
3e43a32a 4171 top_stack->cur_block
439247b6 4172 = BLOCKVECTOR_BLOCK (SYMTAB_BLOCKVECTOR (top_stack->cur_st),
3e43a32a 4173 GLOBAL_BLOCK);
c906108c 4174 top_stack->blocktype = stFile;
c906108c
SS
4175
4176 ext_ptr = PST_PRIVATE (pst)->extern_tab;
4177 for (i = PST_PRIVATE (pst)->extern_count; --i >= 0; ext_ptr++)
3e43a32a 4178 parse_external (ext_ptr, fh->fBigendian,
18a94d75 4179 section_offsets, objfile);
c906108c
SS
4180
4181 /* If there are undefined symbols, tell the user.
c5aa993b
JM
4182 The alpha has an undefined symbol for every symbol that is
4183 from a shared library, so tell the user only if verbose is on. */
c906108c
SS
4184 if (info_verbose && n_undef_symbols)
4185 {
a3f17187 4186 printf_filtered (_("File %s contains %d unresolved references:"),
43f3e411
DE
4187 symtab_to_filename_for_display
4188 (COMPUNIT_FILETABS (cust)),
05cba821 4189 n_undef_symbols);
3e43a32a
MS
4190 printf_filtered ("\n\t%4d variables\n\t%4d "
4191 "procedures\n\t%4d labels\n",
c906108c
SS
4192 n_undef_vars, n_undef_procs, n_undef_labels);
4193 n_undef_symbols = n_undef_labels = n_undef_vars = n_undef_procs = 0;
4194
4195 }
4196 pop_parse_stack ();
4197
43f3e411 4198 sort_blocks (COMPUNIT_FILETABS (cust));
c906108c
SS
4199 }
4200
4201 /* Now link the psymtab and the symtab. */
43f3e411 4202 pst->compunit_symtab = cust;
c906108c 4203
dd707e8e 4204 mdebugread_objfile = NULL;
c906108c
SS
4205}
4206\f
025bb325 4207/* Ancillary parsing procedures. */
c906108c
SS
4208
4209/* Return 1 if the symbol pointed to by SH has a cross reference
4210 to an opaque aggregate type, else 0. */
4211
4212static int
fba45db2 4213has_opaque_xref (FDR *fh, SYMR *sh)
c906108c
SS
4214{
4215 TIR tir;
4216 union aux_ext *ax;
4217 RNDXR rn[1];
4218 unsigned int rf;
4219
4220 if (sh->index == indexNil)
4221 return 0;
4222
4223 ax = debug_info->external_aux + fh->iauxBase + sh->index;
4224 (*debug_swap->swap_tir_in) (fh->fBigendian, &ax->a_ti, &tir);
4225 if (tir.bt != btStruct && tir.bt != btUnion && tir.bt != btEnum)
4226 return 0;
4227
4228 ax++;
4229 (*debug_swap->swap_rndx_in) (fh->fBigendian, &ax->a_rndx, rn);
4230 if (rn->rfd == 0xfff)
4231 rf = AUX_GET_ISYM (fh->fBigendian, ax + 1);
4232 else
4233 rf = rn->rfd;
4234 if (rf != -1)
4235 return 0;
4236 return 1;
4237}
4238
4239/* Lookup the type at relative index RN. Return it in TPP
4240 if found and in any event come up with its name PNAME.
4241 BIGEND says whether aux symbols are big-endian or not (from fh->fBigendian).
025bb325 4242 Return value says how many aux symbols we ate. */
c906108c
SS
4243
4244static int
3e43a32a
MS
4245cross_ref (int fd, union aux_ext *ax, struct type **tpp,
4246 enum type_code type_code,
025bb325 4247 /* Use to alloc new type if none is found. */
a121b7c1 4248 const char **pname, int bigend, const char *sym_name)
c906108c
SS
4249{
4250 RNDXR rn[1];
4251 unsigned int rf;
4252 int result = 1;
4253 FDR *fh;
4254 char *esh;
4255 SYMR sh;
4256 int xref_fd;
4257 struct mdebug_pending *pend;
4258
be903358 4259 *tpp = NULL;
c906108c
SS
4260
4261 (*debug_swap->swap_rndx_in) (bigend, &ax->a_rndx, rn);
4262
025bb325 4263 /* Escape index means 'the next one'. */
c906108c
SS
4264 if (rn->rfd == 0xfff)
4265 {
4266 result++;
4267 rf = AUX_GET_ISYM (bigend, ax + 1);
4268 }
4269 else
4270 {
4271 rf = rn->rfd;
4272 }
4273
4274 /* mips cc uses a rf of -1 for opaque struct definitions.
19f392bc 4275 Set TYPE_STUB for these types so that check_typedef will
c906108c
SS
4276 resolve them if the struct gets defined in another compilation unit. */
4277 if (rf == -1)
4278 {
4279 *pname = "<undefined>";
19f392bc
UW
4280 *tpp = init_type (mdebugread_objfile, type_code, 0, NULL);
4281 TYPE_STUB (*tpp) = 1;
c906108c
SS
4282 return result;
4283 }
4284
4285 /* mips cc uses an escaped rn->index of 0 for struct return types
025bb325 4286 of procedures that were compiled without -g. These will always remain
c906108c
SS
4287 undefined. */
4288 if (rn->rfd == 0xfff && rn->index == 0)
4289 {
4290 *pname = "<undefined>";
4291 return result;
4292 }
4293
4294 /* Find the relative file descriptor and the symbol in it. */
4295 fh = get_rfd (fd, rf);
4296 xref_fd = fh - debug_info->fdr;
4297
4298 if (rn->index >= fh->csym)
4299 {
4300 /* File indirect entry is corrupt. */
4301 *pname = "<illegal>";
23136709 4302 bad_rfd_entry_complaint (sym_name, xref_fd, rn->index);
c906108c
SS
4303 return result;
4304 }
4305
4306 /* If we have processed this symbol then we left a forwarding
4307 pointer to the type in the pending list. If not, we`ll put
4308 it in a list of pending types, to be processed later when
4309 the file will be. In any event, we collect the name for the
4310 type here. */
4311
4312 esh = ((char *) debug_info->external_sym
4313 + ((fh->isymBase + rn->index)
4314 * debug_swap->external_sym_size));
4315 (*debug_swap->swap_sym_in) (cur_bfd, esh, &sh);
4316
4317 /* Make sure that this type of cross reference can be handled. */
4318 if ((sh.sc != scInfo
4319 || (sh.st != stBlock && sh.st != stTypedef && sh.st != stIndirect
4320 && sh.st != stStruct && sh.st != stUnion
4321 && sh.st != stEnum))
c5aa993b 4322 && (sh.st != stBlock || !SC_IS_COMMON (sh.sc)))
c906108c
SS
4323 {
4324 /* File indirect entry is corrupt. */
4325 *pname = "<illegal>";
23136709 4326 bad_rfd_entry_complaint (sym_name, xref_fd, rn->index);
c906108c
SS
4327 return result;
4328 }
4329
4330 *pname = debug_info->ss + fh->issBase + sh.iss;
4331
4332 pend = is_pending_symbol (fh, esh);
4333 if (pend)
4334 *tpp = pend->t;
4335 else
4336 {
4337 /* We have not yet seen this type. */
4338
4339 if ((sh.iss == 0 && sh.st == stTypedef) || sh.st == stIndirect)
4340 {
4341 TIR tir;
4342
4343 /* alpha cc puts out a stTypedef with a sh.iss of zero for
4344 two cases:
4345 a) forward declarations of structs/unions/enums which are not
c5aa993b 4346 defined in this compilation unit.
025bb325 4347 For these the type will be void. This is a bad design decision
c5aa993b
JM
4348 as cross referencing across compilation units is impossible
4349 due to the missing name.
c906108c 4350 b) forward declarations of structs/unions/enums/typedefs which
c5aa993b 4351 are defined later in this file or in another file in the same
025bb325 4352 compilation unit. Irix5 cc uses a stIndirect symbol for this.
c5aa993b 4353 Simply cross reference those again to get the true type.
c906108c
SS
4354 The forward references are not entered in the pending list and
4355 in the symbol table. */
4356
4357 (*debug_swap->swap_tir_in) (bigend,
4358 &(debug_info->external_aux
4359 + fh->iauxBase + sh.index)->a_ti,
4360 &tir);
4361 if (tir.tq0 != tqNil)
b98664d3 4362 complaint (_("illegal tq0 in forward typedef for %s"), sym_name);
c906108c
SS
4363 switch (tir.bt)
4364 {
4365 case btVoid:
19f392bc 4366 *tpp = init_type (mdebugread_objfile, type_code, 0, NULL);
c5aa993b 4367 *pname = "<undefined>";
c906108c
SS
4368 break;
4369
4370 case btStruct:
4371 case btUnion:
4372 case btEnum:
4373 cross_ref (xref_fd,
4374 (debug_info->external_aux
4375 + fh->iauxBase + sh.index + 1),
4376 tpp, type_code, pname,
4377 fh->fBigendian, sym_name);
4378 break;
4379
4380 case btTypedef:
025bb325 4381 /* Follow a forward typedef. This might recursively
c5aa993b
JM
4382 call cross_ref till we get a non typedef'ed type.
4383 FIXME: This is not correct behaviour, but gdb currently
025bb325 4384 cannot handle typedefs without type copying. Type
c5aa993b
JM
4385 copying is impossible as we might have mutual forward
4386 references between two files and the copied type would not
4387 get filled in when we later parse its definition. */
c906108c
SS
4388 *tpp = parse_type (xref_fd,
4389 debug_info->external_aux + fh->iauxBase,
4390 sh.index,
cafb3438 4391 NULL,
c906108c
SS
4392 fh->fBigendian,
4393 debug_info->ss + fh->issBase + sh.iss);
4394 add_pending (fh, esh, *tpp);
4395 break;
4396
4397 default:
b98664d3 4398 complaint (_("illegal bt %d in forward typedef for %s"), tir.bt,
23136709 4399 sym_name);
19f392bc 4400 *tpp = init_type (mdebugread_objfile, type_code, 0, NULL);
c906108c
SS
4401 break;
4402 }
4403 return result;
4404 }
4405 else if (sh.st == stTypedef)
4406 {
025bb325 4407 /* Parse the type for a normal typedef. This might recursively call
c906108c
SS
4408 cross_ref till we get a non typedef'ed type.
4409 FIXME: This is not correct behaviour, but gdb currently
025bb325 4410 cannot handle typedefs without type copying. But type copying is
c906108c
SS
4411 impossible as we might have mutual forward references between
4412 two files and the copied type would not get filled in when
4413 we later parse its definition. */
4414 *tpp = parse_type (xref_fd,
4415 debug_info->external_aux + fh->iauxBase,
4416 sh.index,
cafb3438 4417 NULL,
c906108c
SS
4418 fh->fBigendian,
4419 debug_info->ss + fh->issBase + sh.iss);
4420 }
4421 else
4422 {
4423 /* Cross reference to a struct/union/enum which is defined
4424 in another file in the same compilation unit but that file
4425 has not been parsed yet.
4426 Initialize the type only, it will be filled in when
4427 it's definition is parsed. */
19f392bc 4428 *tpp = init_type (mdebugread_objfile, type_code, 0, NULL);
c906108c
SS
4429 }
4430 add_pending (fh, esh, *tpp);
4431 }
4432
025bb325 4433 /* We used one auxent normally, two if we got a "next one" rf. */
c906108c
SS
4434 return result;
4435}
4436
4437
4438/* Quick&dirty lookup procedure, to avoid the MI ones that require
025bb325 4439 keeping the symtab sorted. */
c906108c
SS
4440
4441static struct symbol *
a121b7c1 4442mylookup_symbol (const char *name, const struct block *block,
fe978cb0 4443 domain_enum domain, enum address_class theclass)
c906108c 4444{
8157b174 4445 struct block_iterator iter;
de4f826b 4446 int inc;
e88c90f2 4447 struct symbol *sym;
c906108c 4448
c906108c 4449 inc = name[0];
de4f826b 4450 ALL_BLOCK_SYMBOLS (block, iter, sym)
c906108c 4451 {
987012b8 4452 if (sym->linkage_name ()[0] == inc
176620f1 4453 && SYMBOL_DOMAIN (sym) == domain
fe978cb0 4454 && SYMBOL_CLASS (sym) == theclass
987012b8 4455 && strcmp (sym->linkage_name (), name) == 0)
c906108c 4456 return sym;
c906108c 4457 }
e88c90f2 4458
c906108c
SS
4459 block = BLOCK_SUPERBLOCK (block);
4460 if (block)
fe978cb0 4461 return mylookup_symbol (name, block, domain, theclass);
c906108c
SS
4462 return 0;
4463}
4464
4465
de4f826b 4466/* Add a new symbol S to a block B. */
c906108c
SS
4467
4468static void
c7efd0b9 4469add_symbol (struct symbol *s, struct symtab *symtab, struct block *b)
c906108c 4470{
08be3fe3 4471 symbol_set_symtab (s, symtab);
b026f593 4472 mdict_add_symbol (BLOCK_MULTIDICT (b), s);
c906108c
SS
4473}
4474
025bb325 4475/* Add a new block B to a symtab S. */
c906108c
SS
4476
4477static void
fba45db2 4478add_block (struct block *b, struct symtab *s)
c906108c 4479{
346d1dfe
TT
4480 /* Cast away "const", but that's ok because we're building the
4481 symtab and blockvector here. */
439247b6 4482 struct blockvector *bv = (struct blockvector *) SYMTAB_BLOCKVECTOR (s);
c906108c 4483
12b9c64f 4484 bv = (struct blockvector *) xrealloc ((void *) bv,
c906108c
SS
4485 (sizeof (struct blockvector)
4486 + BLOCKVECTOR_NBLOCKS (bv)
4487 * sizeof (bv->block)));
439247b6
DE
4488 if (bv != SYMTAB_BLOCKVECTOR (s))
4489 SYMTAB_BLOCKVECTOR (s) = bv;
c906108c
SS
4490
4491 BLOCKVECTOR_BLOCK (bv, BLOCKVECTOR_NBLOCKS (bv)++) = b;
4492}
4493
4494/* Add a new linenumber entry (LINENO,ADR) to a linevector LT.
4495 MIPS' linenumber encoding might need more than one byte
4496 to describe it, LAST is used to detect these continuation lines.
4497
4498 Combining lines with the same line number seems like a bad idea.
4499 E.g: There could be a line number entry with the same line number after the
4500 prologue and GDB should not ignore it (this is a better way to find
4501 a prologue than mips_skip_prologue).
4502 But due to the compressed line table format there are line number entries
4503 for the same line which are needed to bridge the gap to the next
025bb325 4504 line number entry. These entries have a bogus address info with them
c906108c
SS
4505 and we are unable to tell them from intended duplicate line number
4506 entries.
4507 This is another reason why -ggdb debugging format is preferable. */
4508
4509static int
fba45db2 4510add_line (struct linetable *lt, int lineno, CORE_ADDR adr, int last)
c906108c
SS
4511{
4512 /* DEC c89 sometimes produces zero linenos which confuse gdb.
025bb325 4513 Change them to something sensible. */
c906108c
SS
4514 if (lineno == 0)
4515 lineno = 1;
4516 if (last == 0)
025bb325 4517 last = -2; /* Make sure we record first line. */
c906108c 4518
025bb325 4519 if (last == lineno) /* Skip continuation lines. */
c906108c
SS
4520 return lineno;
4521
4522 lt->item[lt->nitems].line = lineno;
4523 lt->item[lt->nitems++].pc = adr << 2;
4524 return lineno;
4525}
4526\f
025bb325 4527/* Sorting and reordering procedures. */
c906108c 4528
025bb325 4529/* Blocks with a smaller low bound should come first. */
c906108c 4530
39ef2f62
CB
4531static bool
4532block_is_less_than (const struct block *b1, const struct block *b2)
c906108c 4533{
39ef2f62
CB
4534 CORE_ADDR start1 = BLOCK_START (b1);
4535 CORE_ADDR start2 = BLOCK_START (b2);
4536
4537 if (start1 != start2)
4538 return start1 < start2;
4539
4540 return (BLOCK_END (b2)) < (BLOCK_END (b1));
c906108c
SS
4541}
4542
4543/* Sort the blocks of a symtab S.
4544 Reorder the blocks in the blockvector by code-address,
025bb325 4545 as required by some MI search routines. */
c906108c
SS
4546
4547static void
fba45db2 4548sort_blocks (struct symtab *s)
c906108c 4549{
346d1dfe
TT
4550 /* We have to cast away const here, but this is ok because we're
4551 constructing the blockvector in this code. */
439247b6 4552 struct blockvector *bv = (struct blockvector *) SYMTAB_BLOCKVECTOR (s);
c906108c 4553
49323895 4554 if (BLOCKVECTOR_NBLOCKS (bv) <= FIRST_LOCAL_BLOCK)
c906108c
SS
4555 {
4556 /* Cosmetic */
4557 if (BLOCK_END (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK)) == 0)
4558 BLOCK_START (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK)) = 0;
4559 if (BLOCK_END (BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK)) == 0)
4560 BLOCK_START (BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK)) = 0;
4561 return;
4562 }
4563 /*
4564 * This is very unfortunate: normally all functions are compiled in
4565 * the order they are found, but if the file is compiled -O3 things
4566 * are very different. It would be nice to find a reliable test
4567 * to detect -O3 images in advance.
4568 */
49323895 4569 if (BLOCKVECTOR_NBLOCKS (bv) > FIRST_LOCAL_BLOCK + 1)
39ef2f62
CB
4570 std::sort (&BLOCKVECTOR_BLOCK (bv, FIRST_LOCAL_BLOCK),
4571 &BLOCKVECTOR_BLOCK (bv, BLOCKVECTOR_NBLOCKS (bv)),
4572 block_is_less_than);
c906108c
SS
4573
4574 {
aa1ee363
AC
4575 CORE_ADDR high = 0;
4576 int i, j = BLOCKVECTOR_NBLOCKS (bv);
c906108c
SS
4577
4578 for (i = FIRST_LOCAL_BLOCK; i < j; i++)
4579 if (high < BLOCK_END (BLOCKVECTOR_BLOCK (bv, i)))
4580 high = BLOCK_END (BLOCKVECTOR_BLOCK (bv, i));
4581 BLOCK_END (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK)) = high;
4582 }
4583
4584 BLOCK_START (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK)) =
4585 BLOCK_START (BLOCKVECTOR_BLOCK (bv, FIRST_LOCAL_BLOCK));
4586
4587 BLOCK_START (BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK)) =
4588 BLOCK_START (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK));
4589 BLOCK_END (BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK)) =
4590 BLOCK_END (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK));
4591}
4592\f
4593
025bb325 4594/* Constructor/restructor/destructor procedures. */
c906108c 4595
de4f826b 4596/* Allocate a new symtab for NAME. Needs an estimate of how many
025bb325 4597 linenumbers MAXLINES we'll put in it. */
c906108c 4598
43f3e411 4599static struct compunit_symtab *
72b9f47f 4600new_symtab (const char *name, int maxlines, struct objfile *objfile)
c906108c 4601{
43f3e411
DE
4602 struct compunit_symtab *cust = allocate_compunit_symtab (objfile, name);
4603 struct symtab *symtab;
346d1dfe 4604 struct blockvector *bv;
5ffa0793 4605 enum language lang;
c906108c 4606
43f3e411
DE
4607 add_compunit_symtab_to_objfile (cust);
4608 symtab = allocate_symtab (cust, name);
4609
4610 SYMTAB_LINETABLE (symtab) = new_linetable (maxlines);
5ffa0793 4611 lang = compunit_language (cust);
c906108c 4612
025bb325 4613 /* All symtabs must have at least two blocks. */
346d1dfe 4614 bv = new_bvect (2);
5ffa0793
PA
4615 BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK) = new_block (NON_FUNCTION_BLOCK, lang);
4616 BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK) = new_block (NON_FUNCTION_BLOCK, lang);
346d1dfe
TT
4617 BLOCK_SUPERBLOCK (BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK)) =
4618 BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK);
43f3e411 4619 COMPUNIT_BLOCKVECTOR (cust) = bv;
c906108c 4620
43f3e411
DE
4621 COMPUNIT_DEBUGFORMAT (cust) = "ECOFF";
4622 return cust;
c906108c
SS
4623}
4624
025bb325 4625/* Allocate a new partial_symtab NAME. */
c906108c 4626
891813be 4627static legacy_psymtab *
a121b7c1 4628new_psymtab (const char *name, struct objfile *objfile)
c906108c 4629{
891813be 4630 legacy_psymtab *psymtab;
c906108c 4631
891813be 4632 psymtab = new legacy_psymtab (name, objfile);
c906108c 4633
025bb325 4634 /* Keep a backpointer to the file's symbols. */
c906108c 4635
e39db4db
SM
4636 psymtab->read_symtab_private
4637 = OBSTACK_ZALLOC (&objfile->objfile_obstack, symloc);
c906108c
SS
4638 CUR_BFD (psymtab) = cur_bfd;
4639 DEBUG_SWAP (psymtab) = debug_swap;
4640 DEBUG_INFO (psymtab) = debug_info;
4641 PENDING_LIST (psymtab) = pending_list;
4642
025bb325 4643 /* The way to turn this into a symtab is to call... */
891813be 4644 psymtab->legacy_read_symtab = mdebug_read_symtab;
69b037c3 4645 psymtab->legacy_expand_psymtab = mdebug_expand_psymtab;
c906108c
SS
4646 return (psymtab);
4647}
4648
4649
4650/* Allocate a linetable array of the given SIZE. Since the struct
4651 already includes one item, we subtract one when calculating the
4652 proper size to allocate. */
4653
4654static struct linetable *
fba45db2 4655new_linetable (int size)
c906108c
SS
4656{
4657 struct linetable *l;
4658
30cc903e
TT
4659 if (size > 1)
4660 --size;
4661 size = size * sizeof (l->item) + sizeof (struct linetable);
c906108c
SS
4662 l = (struct linetable *) xmalloc (size);
4663 l->nitems = 0;
4664 return l;
4665}
4666
025bb325 4667/* Oops, too big. Shrink it. This was important with the 2.4 linetables,
c906108c
SS
4668 I am not so sure about the 3.4 ones.
4669
4670 Since the struct linetable already includes one item, we subtract one when
4671 calculating the proper size to allocate. */
4672
4673static struct linetable *
fba45db2 4674shrink_linetable (struct linetable *lt)
c906108c 4675{
12b9c64f 4676 return (struct linetable *) xrealloc ((void *) lt,
c906108c
SS
4677 (sizeof (struct linetable)
4678 + ((lt->nitems - 1)
4679 * sizeof (lt->item))));
4680}
4681
025bb325 4682/* Allocate and zero a new blockvector of NBLOCKS blocks. */
c906108c
SS
4683
4684static struct blockvector *
fba45db2 4685new_bvect (int nblocks)
c906108c
SS
4686{
4687 struct blockvector *bv;
4688 int size;
4689
4690 size = sizeof (struct blockvector) + nblocks * sizeof (struct block *);
4691 bv = (struct blockvector *) xzalloc (size);
4692
4693 BLOCKVECTOR_NBLOCKS (bv) = nblocks;
4694
4695 return bv;
4696}
4697
5ffa0793 4698/* Allocate and zero a new block of language LANGUAGE, and set its
b026f593 4699 BLOCK_MULTIDICT. If function is non-zero, assume the block is
5ffa0793
PA
4700 associated to a function, and make sure that the symbols are stored
4701 linearly; otherwise, store them hashed. */
c906108c
SS
4702
4703static struct block *
5ffa0793 4704new_block (enum block_type type, enum language language)
c906108c 4705{
a1632d59
DC
4706 /* FIXME: carlton/2003-09-11: This should use allocate_block to
4707 allocate the block. Which, in turn, suggests that the block
4708 should be allocated on an obstack. */
8d749320 4709 struct block *retval = XCNEW (struct block);
c906108c 4710
de4f826b 4711 if (type == FUNCTION_BLOCK)
b026f593 4712 BLOCK_MULTIDICT (retval) = mdict_create_linear_expandable (language);
de4f826b 4713 else
b026f593 4714 BLOCK_MULTIDICT (retval) = mdict_create_hashed_expandable (language);
c906108c 4715
de4f826b 4716 return retval;
c906108c
SS
4717}
4718
025bb325 4719/* Create a new symbol with printname NAME. */
c906108c
SS
4720
4721static struct symbol *
a121b7c1 4722new_symbol (const char *name)
c906108c 4723{
8c14c3a3 4724 struct symbol *s = new (&mdebugread_objfile->objfile_obstack) symbol;
c906108c 4725
d3ecddab 4726 s->set_language (psymtab_language, &mdebugread_objfile->objfile_obstack);
4d4eaa30 4727 s->compute_and_set_names (name, true, mdebugread_objfile->per_bfd);
c906108c
SS
4728 return s;
4729}
4730
025bb325 4731/* Create a new type with printname NAME. */
c906108c
SS
4732
4733static struct type *
fba45db2 4734new_type (char *name)
c906108c
SS
4735{
4736 struct type *t;
4737
dd707e8e 4738 t = alloc_type (mdebugread_objfile);
d0e39ea2 4739 t->set_name (name);
b4ba55a1 4740 INIT_CPLUS_SPECIFIC (t);
c906108c
SS
4741 return t;
4742}
4743\f
4744/* Read ECOFF debugging information from a BFD section. This is
4745 called from elfread.c. It parses the section into a
4746 ecoff_debug_info struct, and then lets the rest of the file handle
4747 it as normal. */
4748
4749void
fba45db2
KB
4750elfmdebug_build_psymtabs (struct objfile *objfile,
4751 const struct ecoff_debug_swap *swap, asection *sec)
c906108c
SS
4752{
4753 bfd *abfd = objfile->obfd;
4754 struct ecoff_debug_info *info;
7134143f
DJ
4755
4756 /* FIXME: It's not clear whether we should be getting minimal symbol
4757 information from .mdebug in an ELF file, or whether we will.
4758 Re-initialize the minimal symbol reader in case we do. */
4759
d25e8719 4760 minimal_symbol_reader reader (objfile);
c906108c 4761
e39db4db 4762 info = XOBNEW (&objfile->objfile_obstack, ecoff_debug_info);
c906108c
SS
4763
4764 if (!(*swap->read_debug_info) (abfd, sec, info))
8a3fe4f8 4765 error (_("Error reading ECOFF debugging information: %s"),
c906108c
SS
4766 bfd_errmsg (bfd_get_error ()));
4767
8dddcb8f 4768 mdebug_build_psymtabs (reader, objfile, swap, info);
7134143f 4769
d25e8719 4770 reader.install ();
c906108c 4771}
c906108c 4772
6c265988 4773void _initialize_mdebugread ();
c906108c 4774void
6c265988 4775_initialize_mdebugread ()
c906108c 4776{
f1e6e072
TT
4777 mdebug_register_index
4778 = register_symbol_register_impl (LOC_REGISTER, &mdebug_register_funcs);
4779 mdebug_regparm_index
4780 = register_symbol_register_impl (LOC_REGPARM_ADDR, &mdebug_register_funcs);
c906108c 4781}
This page took 2.403566 seconds and 4 git commands to generate.