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