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