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