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