1 /* Read a symbol table in ECOFF format (Third-Eye).
2 Copyright 1986, 1987, 1989, 1990, 1991, 1992, 1993, 1994
3 Free Software Foundation, Inc.
5 CMU. Major work by Per Bothner, John Gilmore and Ian Lance Taylor
8 This file is part of GDB.
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2 of the License, or
13 (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with this program; if not, write to the Free Software
22 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
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.
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.
39 This module can read all four of the known byte-order combinations,
40 on any type of host. */
50 #include "stabsread.h"
51 #include "complaints.h"
53 #if !defined (SEEK_SET)
58 /* These are needed if the tm.h file does not contain the necessary
59 mips specific definitions. */
61 #ifndef MIPS_EFI_SYMBOL_NAME
62 #define MIPS_EFI_SYMBOL_NAME "__GDB_EFI_INFO__"
64 #include "coff/symconst.h"
65 typedef struct mips_extra_func_info {
68 } *mips_extra_func_info_t;
75 #include <sys/types.h>
78 #include <sys/param.h>
83 #include "gdb-stabs.h"
87 #include "coff/ecoff.h" /* COFF-like aspects of ecoff files */
89 #include "libaout.h" /* Private BFD a.out information. */
90 #include "aout/aout64.h"
91 #include "aout/stab_gnu.h" /* STABS information */
93 #include "expression.h"
94 #include "language.h" /* Needed inside partial-stab.h */
96 /* Provide a default mapping from a ecoff register number to a gdb REGNUM. */
97 #ifndef ECOFF_REG_TO_REGNUM
98 #define ECOFF_REG_TO_REGNUM(num) (num)
101 /* Each partial symbol table entry contains a pointer to private data
102 for the read_symtab() function to use when expanding a partial
103 symbol table entry to a full symbol table entry.
105 For mdebugread this structure contains the index of the FDR that this
106 psymtab represents and a pointer to the BFD that the psymtab was
109 #define PST_PRIVATE(p) ((struct symloc *)(p)->read_symtab_private)
110 #define FDR_IDX(p) (PST_PRIVATE(p)->fdr_idx)
111 #define CUR_BFD(p) (PST_PRIVATE(p)->cur_bfd)
112 #define DEBUG_SWAP(p) (PST_PRIVATE(p)->debug_swap)
113 #define DEBUG_INFO(p) (PST_PRIVATE(p)->debug_info)
114 #define PENDING_LIST(p) (PST_PRIVATE(p)->pending_list)
120 const struct ecoff_debug_swap *debug_swap;
121 struct ecoff_debug_info *debug_info;
122 struct mdebug_pending **pending_list;
123 EXTR *extern_tab; /* Pointer to external symbols for this file. */
124 int extern_count; /* Size of extern_tab. */
125 enum language pst_language;
128 /* Things we import explicitly from other modules */
130 extern int info_verbose;
132 /* Various complaints about symbol reading that don't abort the process */
134 static struct complaint bad_file_number_complaint =
135 {"bad file number %d", 0, 0};
137 static struct complaint index_complaint =
138 {"bad aux index at symbol %s", 0, 0};
140 static struct complaint aux_index_complaint =
141 {"bad proc end in aux found from symbol %s", 0, 0};
143 static struct complaint block_index_complaint =
144 {"bad aux index at block symbol %s", 0, 0};
146 static struct complaint unknown_ext_complaint =
147 {"unknown external symbol %s", 0, 0};
149 static struct complaint unknown_sym_complaint =
150 {"unknown local symbol %s", 0, 0};
152 static struct complaint unknown_st_complaint =
153 {"with type %d", 0, 0};
155 static struct complaint block_overflow_complaint =
156 {"block containing %s overfilled", 0, 0};
158 static struct complaint basic_type_complaint =
159 {"cannot map ECOFF basic type 0x%x for %s", 0, 0};
161 static struct complaint unknown_type_qual_complaint =
162 {"unknown type qualifier 0x%x", 0, 0};
164 static struct complaint array_index_type_complaint =
165 {"illegal array index type for %s, assuming int", 0, 0};
167 static struct complaint bad_tag_guess_complaint =
168 {"guessed tag type of %s incorrectly", 0, 0};
170 static struct complaint block_member_complaint =
171 {"declaration block contains unhandled symbol type %d", 0, 0};
173 static struct complaint stEnd_complaint =
174 {"stEnd with storage class %d not handled", 0, 0};
176 static struct complaint unknown_mdebug_symtype_complaint =
177 {"unknown symbol type 0x%x", 0, 0};
179 static struct complaint stab_unknown_complaint =
180 {"unknown stabs symbol %s", 0, 0};
182 static struct complaint pdr_for_nonsymbol_complaint =
183 {"PDR for %s, but no symbol", 0, 0};
185 static struct complaint pdr_static_symbol_complaint =
186 {"can't handle PDR for static proc at 0x%lx", 0, 0};
188 static struct complaint bad_setjmp_pdr_complaint =
189 {"fixing bad setjmp PDR from libc", 0, 0};
191 static struct complaint bad_fbitfield_complaint =
192 {"can't handle TIR fBitfield for %s", 0, 0};
194 static struct complaint bad_continued_complaint =
195 {"illegal TIR continued for %s", 0, 0};
197 static struct complaint bad_rfd_entry_complaint =
198 {"bad rfd entry for %s: file %d, index %d", 0, 0};
200 static struct complaint unexpected_type_code_complaint =
201 {"unexpected type code for %s", 0, 0};
203 static struct complaint unable_to_cross_ref_complaint =
204 {"unable to cross ref btTypedef for %s", 0, 0};
206 static struct complaint illegal_forward_tq0_complaint =
207 {"illegal tq0 in forward typedef for %s", 0, 0};
209 static struct complaint illegal_forward_bt_complaint =
210 {"illegal bt %d in forward typedef for %s", 0, 0};
212 static struct complaint bad_linetable_guess_complaint =
213 {"guessed size of linetable for %s incorrectly", 0, 0};
215 static struct complaint bad_ext_ifd_complaint =
216 {"bad ifd for external symbol: %d (max %d)", 0, 0};
218 static struct complaint bad_ext_iss_complaint =
219 {"bad iss for external symbol: %ld (max %ld)", 0, 0};
221 /* Macros and extra defs */
223 /* Puns: hard to find whether -g was used and how */
225 #define MIN_GLEVEL GLEVEL_0
226 #define compare_glevel(a,b) \
227 (((a) == GLEVEL_3) ? ((b) < GLEVEL_3) : \
228 ((b) == GLEVEL_3) ? -1 : (int)((b) - (a)))
230 /* Things that really are local to this module */
232 /* Remember what we deduced to be the source language of this psymtab. */
234 static enum language psymtab_language = language_unknown;
240 /* How to parse debugging information for CUR_BFD. */
242 static const struct ecoff_debug_swap *debug_swap;
244 /* Pointers to debugging information for CUR_BFD. */
246 static struct ecoff_debug_info *debug_info;
248 /* Pointer to current file decriptor record, and its index */
253 /* Index of current symbol */
257 /* Note how much "debuggable" this image is. We would like
258 to see at least one FDR with full symbols */
263 /* When examining .o files, report on undefined symbols */
265 static int n_undef_symbols, n_undef_labels, n_undef_vars, n_undef_procs;
267 /* Pseudo symbol to use when putting stabs into the symbol table. */
269 static char stabs_symbol[] = STABS_SYMBOL;
271 /* Types corresponding to btComplex, btDComplex, etc. These are here
272 rather than in gdbtypes.c or some such, because the meaning of codes
273 like btComplex is specific to the mdebug debug format. FIXME: We should
274 be using our own types thoughout this file, instead of sometimes using
277 static struct type *mdebug_type_complex;
278 static struct type *mdebug_type_double_complex;
279 static struct type *mdebug_type_fixed_dec;
280 static struct type *mdebug_type_float_dec;
281 static struct type *mdebug_type_string;
283 /* Forward declarations */
286 upgrade_type PARAMS ((int, struct type **, int, union aux_ext *, int, char *));
289 parse_partial_symbols PARAMS ((struct objfile *,
290 struct section_offsets *));
293 *get_rfd PARAMS ((int, int));
296 has_opaque_xref PARAMS ((FDR *, SYMR *));
299 cross_ref PARAMS ((int, union aux_ext *, struct type **, enum type_code,
300 char **, int, char *));
302 static struct symbol *
303 new_symbol PARAMS ((char *));
306 new_type PARAMS ((char *));
308 static struct block *
309 new_block PARAMS ((int));
311 static struct symtab *
312 new_symtab PARAMS ((char *, int, int, struct objfile *));
314 static struct linetable *
315 new_linetable PARAMS ((int));
317 static struct blockvector *
318 new_bvect PARAMS ((int));
321 parse_symbol PARAMS ((SYMR *, union aux_ext *, char *, int, struct section_offsets *));
324 parse_type PARAMS ((int, union aux_ext *, unsigned int, int *, int, char *));
326 static struct symbol *
327 mylookup_symbol PARAMS ((char *, struct block *, enum namespace,
328 enum address_class));
330 static struct block *
331 shrink_block PARAMS ((struct block *, struct symtab *));
334 xzalloc PARAMS ((unsigned int));
337 sort_blocks PARAMS ((struct symtab *));
340 compare_blocks PARAMS ((const void *, const void *));
342 static struct partial_symtab *
343 new_psymtab PARAMS ((char *, struct objfile *, struct section_offsets *));
346 psymtab_to_symtab_1 PARAMS ((struct partial_symtab *, char *));
349 add_block PARAMS ((struct block *, struct symtab *));
352 add_symbol PARAMS ((struct symbol *, struct block *));
355 add_line PARAMS ((struct linetable *, int, CORE_ADDR, int));
357 static struct linetable *
358 shrink_linetable PARAMS ((struct linetable *));
361 handle_psymbol_enumerators PARAMS ((struct objfile *, FDR *, int));
364 mdebug_next_symbol_text PARAMS ((void));
366 /* Address bounds for the signal trampoline in inferior, if any */
368 CORE_ADDR sigtramp_address, sigtramp_end;
370 /* Allocate zeroed memory */
376 PTR p = xmalloc (size);
382 /* Exported procedure: Builds a symtab from the PST partial one.
383 Restores the environment in effect when PST was created, delegates
384 most of the work to an ancillary procedure, and sorts
385 and reorders the symtab list at the end */
388 mdebug_psymtab_to_symtab (pst)
389 struct partial_symtab *pst;
397 printf_filtered ("Reading in symbols for %s...", pst->filename);
398 gdb_flush (gdb_stdout);
401 next_symbol_text_func = mdebug_next_symbol_text;
403 psymtab_to_symtab_1 (pst, pst->filename);
405 /* Match with global symbols. This only needs to be done once,
406 after all of the symtabs and dependencies have been read in. */
407 scan_file_globals (pst->objfile);
410 printf_filtered ("done.\n");
413 /* File-level interface functions */
415 /* Find a file descriptor given its index RF relative to a file CF */
425 fdrs = debug_info->fdr;
427 /* Object files do not have the RFD table, all refs are absolute */
430 (*debug_swap->swap_rfd_in) (cur_bfd,
431 ((char *) debug_info->external_rfd
433 * debug_swap->external_rfd_size)),
438 /* Return a safer print NAME for a file descriptor */
445 return "<stripped file>";
448 return debug_info->ss + f->issBase + f->rss;
452 /* Read in and parse the symtab of the file OBJFILE. Symbols from
453 different sections are relocated via the SECTION_OFFSETS. */
456 mdebug_build_psymtabs (objfile, swap, info, section_offsets)
457 struct objfile *objfile;
458 const struct ecoff_debug_swap *swap;
459 struct ecoff_debug_info *info;
460 struct section_offsets *section_offsets;
462 cur_bfd = objfile->obfd;
466 /* Make sure all the FDR information is swapped in. */
467 if (info->fdr == (FDR *) NULL)
473 info->fdr = (FDR *) obstack_alloc (&objfile->psymbol_obstack,
474 (info->symbolic_header.ifdMax
476 fdr_src = info->external_fdr;
478 + info->symbolic_header.ifdMax * swap->external_fdr_size);
480 for (; fdr_src < fdr_end; fdr_src += swap->external_fdr_size, fdr_ptr++)
481 (*swap->swap_fdr_in) (objfile->obfd, fdr_src, fdr_ptr);
484 parse_partial_symbols (objfile, section_offsets);
487 /* Check to make sure file was compiled with -g. If not, warn the
488 user of this limitation. */
489 if (compare_glevel (max_glevel, GLEVEL_2) < 0)
491 if (max_gdbinfo == 0)
492 printf_unfiltered ("\n%s not compiled with -g, debugging support is limited.\n",
494 printf_unfiltered ("You should compile with -g2 or -g3 for best debugging support.\n");
495 gdb_flush (gdb_stdout);
500 /* Local utilities */
502 /* Map of FDR indexes to partial symtabs */
506 struct partial_symtab *pst; /* the psymtab proper */
507 long n_globals; /* exported globals (external symbols) */
508 long globals_offset; /* cumulative */
512 /* Utility stack, used to nest procedures and blocks properly.
513 It is a doubly linked list, to avoid too many alloc/free.
514 Since we might need it quite a few times it is NOT deallocated
517 static struct parse_stack
519 struct parse_stack *next, *prev;
520 struct symtab *cur_st; /* Current symtab. */
521 struct block *cur_block; /* Block in it. */
523 /* What are we parsing. stFile, or stBlock are for files and
524 blocks. stProc or stStaticProc means we have seen the start of a
525 procedure, but not the start of the block within in. When we see
526 the start of that block, we change it to stNil, without pushing a
527 new block, i.e. stNil means both a procedure and a block. */
531 int maxsyms; /* Max symbols in this block. */
532 struct type *cur_type; /* Type we parse fields for. */
533 int cur_field; /* Field number in cur_type. */
534 CORE_ADDR procadr; /* Start addres of this procedure */
535 int numargs; /* Its argument count */
538 *top_stack; /* Top stack ptr */
541 /* Enter a new lexical context */
546 struct parse_stack *new;
548 /* Reuse frames if possible */
549 if (top_stack && top_stack->prev)
550 new = top_stack->prev;
552 new = (struct parse_stack *) xzalloc (sizeof (struct parse_stack));
553 /* Initialize new frame with previous content */
556 register struct parse_stack *prev = new->prev;
559 top_stack->prev = new;
561 new->next = top_stack;
566 /* Exit a lexical context */
574 top_stack = top_stack->next;
578 /* Cross-references might be to things we haven't looked at
579 yet, e.g. type references. To avoid too many type
580 duplications we keep a quick fixup table, an array
581 of lists of references indexed by file descriptor */
583 struct mdebug_pending
585 struct mdebug_pending *next; /* link */
586 char *s; /* the unswapped symbol */
587 struct type *t; /* its partial type descriptor */
591 /* The pending information is kept for an entire object file, and used
592 to be in the sym_private field. I took it out when I split
593 mdebugread from mipsread, because this might not be the only type
594 of symbols read from an object file. Instead, we allocate the
595 pending information table when we create the partial symbols, and
596 we store a pointer to the single table in each psymtab. */
598 static struct mdebug_pending **pending_list;
600 /* Check whether we already saw symbol SH in file FH */
602 static struct mdebug_pending *
603 is_pending_symbol (fh, sh)
607 int f_idx = fh - debug_info->fdr;
608 register struct mdebug_pending *p;
610 /* Linear search is ok, list is typically no more than 10 deep */
611 for (p = pending_list[f_idx]; p; p = p->next)
617 /* Add a new symbol SH of type T */
620 add_pending (fh, sh, t)
625 int f_idx = fh - debug_info->fdr;
626 struct mdebug_pending *p = is_pending_symbol (fh, sh);
628 /* Make sure we do not make duplicates */
631 p = ((struct mdebug_pending *)
632 obstack_alloc (¤t_objfile->psymbol_obstack,
633 sizeof (struct mdebug_pending)));
636 p->next = pending_list[f_idx];
637 pending_list[f_idx] = p;
642 /* Parsing Routines proper. */
644 /* Parse a single symbol. Mostly just make up a GDB symbol for it.
645 For blocks, procedures and types we open a new lexical context.
646 This is basically just a big switch on the symbol's type. Argument
647 AX is the base pointer of aux symbols for this file (fh->iauxBase).
648 EXT_SH points to the unswapped symbol, which is needed for struct,
649 union, etc., types; it is NULL for an EXTR. BIGEND says whether
650 aux symbols are big-endian or little-endian. Return count of
651 SYMR's handled (normally one). */
654 parse_symbol (sh, ax, ext_sh, bigend, section_offsets)
659 struct section_offsets *section_offsets;
661 const bfd_size_type external_sym_size = debug_swap->external_sym_size;
662 void (* const swap_sym_in) PARAMS ((bfd *, PTR, SYMR *)) =
663 debug_swap->swap_sym_in;
667 struct mdebug_pending *pend;
671 enum address_class class;
673 long svalue = sh->value;
676 if (ext_sh == (char *) NULL)
677 name = debug_info->ssext + sh->iss;
679 name = debug_info->ss + cur_fdr->issBase + sh->iss;
684 sh->value += ANOFFSET (section_offsets, SECT_OFF_TEXT);
687 sh->value += ANOFFSET (section_offsets, SECT_OFF_DATA);
690 sh->value += ANOFFSET (section_offsets, SECT_OFF_BSS);
699 case stGlobal: /* external symbol, goes into global block */
701 b = BLOCKVECTOR_BLOCK (BLOCKVECTOR (top_stack->cur_st),
703 s = new_symbol (name);
704 SYMBOL_VALUE_ADDRESS (s) = (CORE_ADDR) sh->value;
707 case stStatic: /* static data, goes into current block. */
709 b = top_stack->cur_block;
710 s = new_symbol (name);
711 if (sh->sc == scCommon)
713 /* It is a FORTRAN common block. At least for SGI Fortran the
714 address is not in the symbol; we need to fix it later in
715 scan_file_globals. */
716 int bucket = hashname (SYMBOL_NAME (s));
717 SYMBOL_VALUE_CHAIN (s) = global_sym_chain[bucket];
718 global_sym_chain[bucket] = s;
721 SYMBOL_VALUE_ADDRESS (s) = (CORE_ADDR) sh->value;
724 case stLocal: /* local variable, goes into current block */
725 if (sh->sc == scRegister)
727 class = LOC_REGISTER;
728 svalue = ECOFF_REG_TO_REGNUM (svalue);
732 b = top_stack->cur_block;
733 s = new_symbol (name);
734 SYMBOL_VALUE (s) = svalue;
736 data: /* Common code for symbols describing data */
737 SYMBOL_NAMESPACE (s) = VAR_NAMESPACE;
738 SYMBOL_CLASS (s) = class;
741 /* Type could be missing in a number of cases */
742 if (sh->sc == scUndefined || sh->sc == scNil)
743 SYMBOL_TYPE (s) = builtin_type_int; /* undefined? */
745 SYMBOL_TYPE (s) = parse_type (cur_fd, ax, sh->index, 0, bigend, name);
746 /* Value of a data symbol is its memory address */
749 case stParam: /* arg to procedure, goes into current block */
751 top_stack->numargs++;
753 /* Special GNU C++ name. */
754 if (name[0] == CPLUS_MARKER && name[1] == 't' && name[2] == 0)
755 name = "this"; /* FIXME, not alloc'd in obstack */
756 s = new_symbol (name);
758 SYMBOL_NAMESPACE (s) = VAR_NAMESPACE;
762 /* Pass by value in register. */
763 SYMBOL_CLASS(s) = LOC_REGPARM;
764 svalue = ECOFF_REG_TO_REGNUM (svalue);
767 /* Pass by reference on stack. */
768 SYMBOL_CLASS(s) = LOC_REF_ARG;
771 /* Pass by reference in register. */
772 SYMBOL_CLASS(s) = LOC_REGPARM_ADDR;
773 svalue = ECOFF_REG_TO_REGNUM (svalue);
776 /* Pass by value on stack. */
777 SYMBOL_CLASS(s) = LOC_ARG;
780 SYMBOL_VALUE (s) = svalue;
781 SYMBOL_TYPE (s) = parse_type (cur_fd, ax, sh->index, 0, bigend, name);
782 add_symbol (s, top_stack->cur_block);
784 /* FIXME: This has not been tested. See dbxread.c */
785 /* Add the type of this parameter to the function/procedure
786 type of this block. */
787 add_param_to_type (&top_stack->cur_block->function->type, s);
791 case stLabel: /* label, goes into current block */
792 s = new_symbol (name);
793 SYMBOL_NAMESPACE (s) = VAR_NAMESPACE; /* so that it can be used */
794 SYMBOL_CLASS (s) = LOC_LABEL; /* but not misused */
795 SYMBOL_VALUE_ADDRESS (s) = (CORE_ADDR) sh->value;
796 SYMBOL_TYPE (s) = builtin_type_int;
797 add_symbol (s, top_stack->cur_block);
800 case stProc: /* Procedure, usually goes into global block */
801 case stStaticProc: /* Static procedure, goes into current block */
802 s = new_symbol (name);
803 SYMBOL_NAMESPACE (s) = VAR_NAMESPACE;
804 SYMBOL_CLASS (s) = LOC_BLOCK;
805 /* Type of the return value */
806 if (sh->sc == scUndefined || sh->sc == scNil)
807 t = builtin_type_int;
809 t = parse_type (cur_fd, ax, sh->index + 1, 0, bigend, name);
810 b = top_stack->cur_block;
811 if (sh->st == stProc)
813 struct blockvector *bv = BLOCKVECTOR (top_stack->cur_st);
814 /* The next test should normally be true, but provides a
815 hook for nested functions (which we don't want to make
817 if (b == BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK))
818 b = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK);
819 /* Irix 5 sometimes has duplicate names for the same
820 function. We want to add such names up at the global
821 level, not as a nested function. */
822 else if (sh->value == top_stack->procadr)
823 b = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK);
827 /* Make a type for the procedure itself */
829 /* FIXME: This has not been tested yet! See dbxread.c */
830 /* Generate a template for the type of this function. The
831 types of the arguments will be added as we read the symbol
833 memcpy (lookup_function_type (t), SYMBOL_TYPE (s), sizeof (struct type));
835 SYMBOL_TYPE (s) = lookup_function_type (t);
838 /* Create and enter a new lexical context */
839 b = new_block (top_stack->maxsyms);
840 SYMBOL_BLOCK_VALUE (s) = b;
841 BLOCK_FUNCTION (b) = s;
842 BLOCK_START (b) = BLOCK_END (b) = sh->value;
843 BLOCK_SUPERBLOCK (b) = top_stack->cur_block;
844 add_block (b, top_stack->cur_st);
846 /* Not if we only have partial info */
847 if (sh->sc == scUndefined || sh->sc == scNil)
851 top_stack->cur_block = b;
852 top_stack->blocktype = sh->st;
853 top_stack->cur_type = SYMBOL_TYPE (s);
854 top_stack->cur_field = -1;
855 top_stack->procadr = sh->value;
856 top_stack->numargs = 0;
859 /* Beginning of code for structure, union, and enum definitions.
860 They all share a common set of local variables, defined here. */
862 enum type_code type_code;
868 case stStruct: /* Start a block defining a struct type */
869 type_code = TYPE_CODE_STRUCT;
870 goto structured_common;
872 case stUnion: /* Start a block defining a union type */
873 type_code = TYPE_CODE_UNION;
874 goto structured_common;
876 case stEnum: /* Start a block defining an enum type */
877 type_code = TYPE_CODE_ENUM;
878 goto structured_common;
880 case stBlock: /* Either a lexical block, or some type */
881 if (sh->sc != scInfo && sh->sc != scCommon)
882 goto case_stBlock_code; /* Lexical block */
884 type_code = TYPE_CODE_UNDEF; /* We have a type. */
886 /* Common code for handling struct, union, enum, and/or as-yet-
887 unknown-type blocks of info about structured data. `type_code'
888 has been set to the proper TYPE_CODE, if we know it. */
891 top_stack->blocktype = stBlock;
893 /* First count the number of fields and the highest value. */
896 for (ext_tsym = ext_sh + external_sym_size;
898 ext_tsym += external_sym_size)
902 (*swap_sym_in) (cur_bfd, ext_tsym, &tsym);
910 if (nfields == 0 && type_code == TYPE_CODE_UNDEF)
911 /* If the type of the member is Nil (or Void),
912 without qualifiers, assume the tag is an
914 if (tsym.index == indexNil)
915 type_code = TYPE_CODE_ENUM;
918 ecoff_swap_tir_in (bigend,
919 &ax[tsym.index].a_ti,
921 if ((tir.bt == btNil || tir.bt == btVoid)
923 type_code = TYPE_CODE_ENUM;
926 if (tsym.value > max_value)
927 max_value = tsym.value;
936 /* This is a no-op; is it trying to tell us something
937 we should be checking? */
938 if (tsym.sc == scVariant); /*UNIMPLEMENTED*/
942 /* This is something like a struct within a
943 struct. Skip over the fields of the inner
944 struct. The -1 is because the for loop will
945 increment ext_tsym. */
946 ext_tsym = ((char *) debug_info->external_sym
947 + ((cur_fdr->isymBase + tsym.index - 1)
948 * external_sym_size));
954 /* mips cc puts out a typedef for struct x if it is not yet
955 defined when it encounters
956 struct y { struct x *xp; };
961 complain (&block_member_complaint, tsym.st);
966 /* In an stBlock, there is no way to distinguish structs,
967 unions, and enums at this point. This is a bug in the
968 original design (that has been fixed with the recent
969 addition of the stStruct, stUnion, and stEnum symbol
970 types.) The way you can tell is if/when you see a variable
971 or field of that type. In that case the variable's type
972 (in the AUX table) says if the type is struct, union, or
973 enum, and points back to the stBlock here. So you can
974 patch the tag kind up later - but only if there actually is
975 a variable or field of that type.
977 So until we know for sure, we will guess at this point.
979 If the first member has index==indexNil or a void type,
980 assume we have an enumeration.
981 Otherwise, if there is more than one member, and all
982 the members have offset 0, assume we have a union.
983 Otherwise, assume we have a struct.
985 The heuristic could guess wrong in the case of of an
986 enumeration with no members or a union with one (or zero)
987 members, or when all except the last field of a struct have
988 width zero. These are uncommon and/or illegal situations,
989 and in any case guessing wrong probably doesn't matter
992 But if we later do find out we were wrong, we fixup the tag
993 kind. Members of an enumeration must be handled
994 differently from struct/union fields, and that is harder to
995 patch up, but luckily we shouldn't need to. (If there are
996 any enumeration members, we can tell for sure it's an enum
999 if (type_code == TYPE_CODE_UNDEF)
1000 if (nfields > 1 && max_value == 0)
1001 type_code = TYPE_CODE_UNION;
1003 type_code = TYPE_CODE_STRUCT;
1005 /* Create a new type or use the pending type. */
1006 pend = is_pending_symbol (cur_fdr, ext_sh);
1007 if (pend == (struct mdebug_pending *) NULL)
1009 t = new_type (NULL);
1010 add_pending (cur_fdr, ext_sh, t);
1015 /* Do not set the tag name if it is a compiler generated tag name
1016 (.Fxx or .xxfake or empty) for unnamed struct/union/enums.
1017 Alpha cc puts out an sh->iss of zero for those. */
1018 if (sh->iss == 0 || name[0] == '.' || name[0] == '\0')
1019 TYPE_TAG_NAME (t) = NULL;
1021 TYPE_TAG_NAME (t) = obconcat (¤t_objfile->symbol_obstack,
1024 TYPE_CODE (t) = type_code;
1025 TYPE_LENGTH (t) = sh->value;
1026 TYPE_NFIELDS (t) = nfields;
1027 TYPE_FIELDS (t) = f = ((struct field *)
1029 nfields * sizeof (struct field)));
1031 if (type_code == TYPE_CODE_ENUM)
1033 /* This is a non-empty enum. */
1035 /* DEC c89 has the number of enumerators in the sh.value field,
1036 not the type length, so we have to compensate for that
1037 incompatibility quirk.
1038 This might do the wrong thing for an enum with one or two
1039 enumerators and gcc -gcoff -fshort-enums, but these cases
1040 are hopefully rare enough. */
1041 if (TYPE_LENGTH (t) == TYPE_NFIELDS (t))
1042 TYPE_LENGTH (t) = TARGET_INT_BIT / HOST_CHAR_BIT;
1043 for (ext_tsym = ext_sh + external_sym_size;
1045 ext_tsym += external_sym_size)
1048 struct symbol *enum_sym;
1050 (*swap_sym_in) (cur_bfd, ext_tsym, &tsym);
1052 if (tsym.st != stMember)
1055 f->bitpos = tsym.value;
1057 f->name = debug_info->ss + cur_fdr->issBase + tsym.iss;
1060 enum_sym = ((struct symbol *)
1061 obstack_alloc (¤t_objfile->symbol_obstack,
1062 sizeof (struct symbol)));
1063 memset ((PTR) enum_sym, 0, sizeof (struct symbol));
1064 SYMBOL_NAME (enum_sym) = f->name;
1065 SYMBOL_CLASS (enum_sym) = LOC_CONST;
1066 SYMBOL_TYPE (enum_sym) = t;
1067 SYMBOL_NAMESPACE (enum_sym) = VAR_NAMESPACE;
1068 SYMBOL_VALUE (enum_sym) = tsym.value;
1069 add_symbol (enum_sym, top_stack->cur_block);
1071 /* Skip the stMembers that we've handled. */
1076 /* make this the current type */
1077 top_stack->cur_type = t;
1078 top_stack->cur_field = 0;
1080 /* Do not create a symbol for alpha cc unnamed structs. */
1084 /* gcc puts out an empty struct for an opaque struct definitions,
1085 do not create a symbol for it either. */
1086 if (TYPE_NFIELDS (t) == 0)
1088 TYPE_FLAGS (t) |= TYPE_FLAG_STUB;
1092 s = new_symbol (name);
1093 SYMBOL_NAMESPACE (s) = STRUCT_NAMESPACE;
1094 SYMBOL_CLASS (s) = LOC_TYPEDEF;
1095 SYMBOL_VALUE (s) = 0;
1096 SYMBOL_TYPE (s) = t;
1097 add_symbol (s, top_stack->cur_block);
1100 /* End of local variables shared by struct, union, enum, and
1101 block (as yet unknown struct/union/enum) processing. */
1105 /* beginnning of (code) block. Value of symbol
1106 is the displacement from procedure start */
1107 push_parse_stack ();
1109 /* Do not start a new block if this is the outermost block of a
1110 procedure. This allows the LOC_BLOCK symbol to point to the
1111 block with the local variables, so funcname::var works. */
1112 if (top_stack->blocktype == stProc
1113 || top_stack->blocktype == stStaticProc)
1115 top_stack->blocktype = stNil;
1119 top_stack->blocktype = stBlock;
1120 b = new_block (top_stack->maxsyms);
1121 BLOCK_START (b) = sh->value + top_stack->procadr;
1122 BLOCK_SUPERBLOCK (b) = top_stack->cur_block;
1123 top_stack->cur_block = b;
1124 add_block (b, top_stack->cur_st);
1127 case stEnd: /* end (of anything) */
1128 if (sh->sc == scInfo || sh->sc == scCommon)
1130 /* Finished with type */
1131 top_stack->cur_type = 0;
1133 else if (sh->sc == scText &&
1134 (top_stack->blocktype == stProc ||
1135 top_stack->blocktype == stStaticProc))
1137 /* Finished with procedure */
1138 struct blockvector *bv = BLOCKVECTOR (top_stack->cur_st);
1139 struct mips_extra_func_info *e;
1143 BLOCK_END (top_stack->cur_block) += sh->value; /* size */
1145 /* Make up special symbol to contain procedure specific info */
1146 s = new_symbol (MIPS_EFI_SYMBOL_NAME);
1147 SYMBOL_NAMESPACE (s) = LABEL_NAMESPACE;
1148 SYMBOL_CLASS (s) = LOC_CONST;
1149 SYMBOL_TYPE (s) = builtin_type_void;
1150 e = ((struct mips_extra_func_info *)
1151 obstack_alloc (¤t_objfile->symbol_obstack,
1152 sizeof (struct mips_extra_func_info)));
1153 SYMBOL_VALUE (s) = (long) e;
1154 e->numargs = top_stack->numargs;
1155 add_symbol (s, top_stack->cur_block);
1157 /* Reallocate symbols, saving memory */
1158 b = shrink_block (top_stack->cur_block, top_stack->cur_st);
1160 /* f77 emits proc-level with address bounds==[0,0],
1161 So look for such child blocks, and patch them. */
1162 for (i = 0; i < BLOCKVECTOR_NBLOCKS (bv); i++)
1164 struct block *b_bad = BLOCKVECTOR_BLOCK (bv, i);
1165 if (BLOCK_SUPERBLOCK (b_bad) == b
1166 && BLOCK_START (b_bad) == top_stack->procadr
1167 && BLOCK_END (b_bad) == top_stack->procadr)
1169 BLOCK_START (b_bad) = BLOCK_START (b);
1170 BLOCK_END (b_bad) = BLOCK_END (b);
1174 else if (sh->sc == scText && top_stack->blocktype == stBlock)
1176 /* End of (code) block. The value of the symbol is the
1177 displacement from the procedure`s start address of the
1178 end of this block. */
1179 BLOCK_END (top_stack->cur_block) = sh->value + top_stack->procadr;
1180 shrink_block (top_stack->cur_block, top_stack->cur_st);
1182 else if (sh->sc == scText && top_stack->blocktype == stNil)
1184 /* End of outermost block. Pop parse stack and ignore. The
1185 following stEnd of stProc will take care of the block. */
1188 else if (sh->sc == scText && top_stack->blocktype == stFile)
1190 /* End of file. Pop parse stack and ignore. Higher
1191 level code deals with this. */
1195 complain (&stEnd_complaint, sh->sc);
1197 pop_parse_stack (); /* restore previous lexical context */
1200 case stMember: /* member of struct or union */
1201 f = &TYPE_FIELDS (top_stack->cur_type)[top_stack->cur_field++];
1203 f->bitpos = sh->value;
1205 f->type = parse_type (cur_fd, ax, sh->index, &bitsize, bigend, name);
1206 f->bitsize = bitsize;
1209 case stTypedef: /* type definition */
1210 /* Typedefs for forward declarations and opaque structs from alpha cc
1211 are handled by cross_ref, skip them. */
1215 /* Parse the type or use the pending type. */
1216 pend = is_pending_symbol (cur_fdr, ext_sh);
1217 if (pend == (struct mdebug_pending *) NULL)
1219 t = parse_type (cur_fd, ax, sh->index, (int *)NULL, bigend, name);
1220 add_pending (cur_fdr, ext_sh, t);
1225 /* mips cc puts out a typedef with the name of the struct for forward
1226 declarations. These should not go into the symbol table and
1227 TYPE_NAME should not be set for them.
1228 They can't be distinguished from an intentional typedef to
1229 the same name however:
1231 struct x { int ix; int jx; };
1235 struct xx {int ixx; int jxx; };
1236 generates a cross referencing stTypedef for x and xx.
1237 The user visible effect of this is that the type of a pointer
1238 to struct foo sometimes is given as `foo *' instead of `struct foo *'.
1239 The problem is fixed with alpha cc. */
1241 /* However if the typedef cross references to an opaque aggregate, it
1242 is safe to omit it from the symbol table. */
1244 if (has_opaque_xref (cur_fdr, sh))
1246 s = new_symbol (name);
1247 SYMBOL_NAMESPACE (s) = VAR_NAMESPACE;
1248 SYMBOL_CLASS (s) = LOC_TYPEDEF;
1249 SYMBOL_BLOCK_VALUE (s) = top_stack->cur_block;
1250 SYMBOL_TYPE (s) = t;
1251 add_symbol (s, top_stack->cur_block);
1253 /* Incomplete definitions of structs should not get a name. */
1254 if (TYPE_NAME (SYMBOL_TYPE (s)) == NULL
1255 && (TYPE_NFIELDS (SYMBOL_TYPE (s)) != 0
1256 || (TYPE_CODE (SYMBOL_TYPE (s)) != TYPE_CODE_STRUCT
1257 && TYPE_CODE (SYMBOL_TYPE (s)) != TYPE_CODE_UNION)))
1259 if (TYPE_CODE (SYMBOL_TYPE (s)) == TYPE_CODE_PTR
1260 || TYPE_CODE (SYMBOL_TYPE (s)) == TYPE_CODE_FUNC)
1262 /* If we are giving a name to a type such as "pointer to
1263 foo" or "function returning foo", we better not set
1264 the TYPE_NAME. If the program contains "typedef char
1265 *caddr_t;", we don't want all variables of type char
1266 * to print as caddr_t. This is not just a
1267 consequence of GDB's type management; CC and GCC (at
1268 least through version 2.4) both output variables of
1269 either type char * or caddr_t with the type
1270 refering to the stTypedef symbol for caddr_t. If a future
1271 compiler cleans this up it GDB is not ready for it
1272 yet, but if it becomes ready we somehow need to
1273 disable this check (without breaking the PCC/GCC2.4
1278 Fortunately, this check seems not to be necessary
1279 for anything except pointers or functions. */
1282 TYPE_NAME (SYMBOL_TYPE (s)) = SYMBOL_NAME (s);
1286 case stFile: /* file name */
1287 push_parse_stack ();
1288 top_stack->blocktype = sh->st;
1291 /* I`ve never seen these for C */
1293 break; /* register relocation */
1295 break; /* forwarding address */
1297 break; /* constant */
1299 complain (&unknown_mdebug_symtype_complaint, sh->st);
1306 /* Parse the type information provided in the raw AX entries for
1307 the symbol SH. Return the bitfield size in BS, in case.
1308 We must byte-swap the AX entries before we use them; BIGEND says whether
1309 they are big-endian or little-endian (from fh->fBigendian). */
1311 static struct type *
1312 parse_type (fd, ax, aux_index, bs, bigend, sym_name)
1315 unsigned int aux_index;
1320 /* Null entries in this map are treated specially */
1321 static struct type **map_bt[] =
1323 &builtin_type_void, /* btNil */
1325 &builtin_type_char, /* btChar */
1326 &builtin_type_unsigned_char,/* btUChar */
1327 &builtin_type_short, /* btShort */
1328 &builtin_type_unsigned_short, /* btUShort */
1329 &builtin_type_int, /* btInt */
1330 &builtin_type_unsigned_int, /* btUInt */
1331 &builtin_type_long, /* btLong */
1332 &builtin_type_unsigned_long,/* btULong */
1333 &builtin_type_float, /* btFloat */
1334 &builtin_type_double, /* btDouble */
1341 &mdebug_type_complex, /* btComplex */
1342 &mdebug_type_double_complex, /* btDComplex */
1344 &mdebug_type_fixed_dec, /* btFixedDec */
1345 &mdebug_type_float_dec, /* btFloatDec */
1346 &mdebug_type_string, /* btString */
1349 &builtin_type_void, /* btVoid */
1350 0, /* DEC C++: Pointer to member */
1351 0, /* DEC C++: Virtual function table */
1352 0, /* DEC C++: Class (Record) */
1353 &builtin_type_long, /* btLong64 */
1354 &builtin_type_unsigned_long, /* btULong64 */
1355 &builtin_type_long_long, /* btLongLong64 */
1356 &builtin_type_unsigned_long_long, /* btULongLong64 */
1357 &builtin_type_unsigned_long, /* btAdr64 */
1358 &builtin_type_long, /* btInt64 */
1359 &builtin_type_unsigned_long, /* btUInt64 */
1363 struct type *tp = 0;
1364 enum type_code type_code = TYPE_CODE_UNDEF;
1366 /* Handle undefined types, they have indexNil. */
1367 if (aux_index == indexNil)
1368 return builtin_type_int;
1370 /* Handle corrupt aux indices. */
1371 if (aux_index >= (debug_info->fdr + fd)->caux)
1373 complain (&index_complaint, sym_name);
1374 return builtin_type_int;
1378 /* Use aux as a type information record, map its basic type. */
1379 ecoff_swap_tir_in (bigend, &ax->a_ti, t);
1380 if (t->bt >= (sizeof (map_bt) / sizeof (*map_bt)))
1382 complain (&basic_type_complaint, t->bt, sym_name);
1383 return builtin_type_int;
1387 tp = *map_bt[t->bt];
1392 /* Cannot use builtin types -- build our own */
1396 tp = lookup_pointer_type (builtin_type_void);
1399 type_code = TYPE_CODE_STRUCT;
1402 type_code = TYPE_CODE_UNION;
1405 type_code = TYPE_CODE_ENUM;
1408 type_code = TYPE_CODE_RANGE;
1411 type_code = TYPE_CODE_SET;
1414 /* alpha cc uses this for typedefs. The true type will be
1415 obtained by crossreferencing below. */
1416 type_code = TYPE_CODE_ERROR;
1419 complain (&basic_type_complaint, t->bt, sym_name);
1420 return builtin_type_int;
1424 /* Move on to next aux */
1429 /* Inhibit core dumps with some cfront generated objects that
1431 if (bs == (int *)NULL)
1433 complain (&bad_fbitfield_complaint, sym_name);
1434 return builtin_type_int;
1436 *bs = AUX_GET_WIDTH (bigend, ax);
1440 /* All these types really point to some (common) MIPS type
1441 definition, and only the type-qualifiers fully identify
1442 them. We'll make the same effort at sharing. */
1443 if (t->bt == btStruct ||
1447 /* btSet (I think) implies that the name is a tag name, not a typedef
1448 name. This apparently is a MIPS extension for C sets. */
1453 /* Try to cross reference this type, build new type on failure. */
1454 ax += cross_ref (fd, ax, &tp, type_code, &name, bigend, sym_name);
1455 if (tp == (struct type *) NULL)
1456 tp = init_type (type_code, 0, 0, (char *) NULL, current_objfile);
1458 /* DEC c89 produces cross references to qualified aggregate types,
1459 dereference them. */
1460 while (TYPE_CODE (tp) == TYPE_CODE_PTR
1461 || TYPE_CODE (tp) == TYPE_CODE_ARRAY)
1462 tp = tp->target_type;
1464 /* Make sure that TYPE_CODE(tp) has an expected type code.
1465 Any type may be returned from cross_ref if file indirect entries
1467 if (TYPE_CODE (tp) != TYPE_CODE_STRUCT
1468 && TYPE_CODE (tp) != TYPE_CODE_UNION
1469 && TYPE_CODE (tp) != TYPE_CODE_ENUM)
1471 complain (&unexpected_type_code_complaint, sym_name);
1476 /* Usually, TYPE_CODE(tp) is already type_code. The main
1477 exception is if we guessed wrong re struct/union/enum.
1478 But for struct vs. union a wrong guess is harmless, so
1479 don't complain(). */
1480 if ((TYPE_CODE (tp) == TYPE_CODE_ENUM
1481 && type_code != TYPE_CODE_ENUM)
1482 || (TYPE_CODE (tp) != TYPE_CODE_ENUM
1483 && type_code == TYPE_CODE_ENUM))
1485 complain (&bad_tag_guess_complaint, sym_name);
1488 if (TYPE_CODE (tp) != type_code)
1490 TYPE_CODE (tp) = type_code;
1493 /* Do not set the tag name if it is a compiler generated tag name
1494 (.Fxx or .xxfake or empty) for unnamed struct/union/enums. */
1495 if (name[0] == '.' || name[0] == '\0')
1496 TYPE_TAG_NAME (tp) = NULL;
1497 else if (TYPE_TAG_NAME (tp) == NULL
1498 || !STREQ (TYPE_TAG_NAME (tp), name))
1499 TYPE_TAG_NAME (tp) = obsavestring (name, strlen (name),
1500 ¤t_objfile->type_obstack);
1504 /* All these types really point to some (common) MIPS type
1505 definition, and only the type-qualifiers fully identify
1506 them. We'll make the same effort at sharing.
1507 FIXME: btIndirect cannot happen here as it is handled by the
1508 switch t->bt above. And we are not doing any guessing on range types. */
1509 if (t->bt == btIndirect ||
1514 /* Try to cross reference this type, build new type on failure. */
1515 ax += cross_ref (fd, ax, &tp, type_code, &name, bigend, sym_name);
1516 if (tp == (struct type *) NULL)
1517 tp = init_type (type_code, 0, 0, (char *) NULL, current_objfile);
1519 /* Make sure that TYPE_CODE(tp) has an expected type code.
1520 Any type may be returned from cross_ref if file indirect entries
1522 if (TYPE_CODE (tp) != TYPE_CODE_RANGE)
1524 complain (&unexpected_type_code_complaint, sym_name);
1528 /* Usually, TYPE_CODE(tp) is already type_code. The main
1529 exception is if we guessed wrong re struct/union/enum. */
1530 if (TYPE_CODE (tp) != type_code)
1532 complain (&bad_tag_guess_complaint, sym_name);
1533 TYPE_CODE (tp) = type_code;
1535 if (TYPE_NAME (tp) == NULL || !STREQ (TYPE_NAME (tp), name))
1536 TYPE_NAME (tp) = obsavestring (name, strlen (name),
1537 ¤t_objfile->type_obstack);
1540 if (t->bt == btTypedef)
1544 /* Try to cross reference this type, it should succeed. */
1545 ax += cross_ref (fd, ax, &tp, type_code, &name, bigend, sym_name);
1546 if (tp == (struct type *) NULL)
1548 complain (&unable_to_cross_ref_complaint, sym_name);
1549 tp = builtin_type_int;
1553 /* Deal with range types */
1554 if (t->bt == btRange)
1556 TYPE_NFIELDS (tp) = 2;
1557 TYPE_FIELDS (tp) = ((struct field *)
1558 TYPE_ALLOC (tp, 2 * sizeof (struct field)));
1559 TYPE_FIELD_NAME (tp, 0) = obsavestring ("Low", strlen ("Low"),
1560 ¤t_objfile->type_obstack);
1561 TYPE_FIELD_BITPOS (tp, 0) = AUX_GET_DNLOW (bigend, ax);
1563 TYPE_FIELD_NAME (tp, 1) = obsavestring ("High", strlen ("High"),
1564 ¤t_objfile->type_obstack);
1565 TYPE_FIELD_BITPOS (tp, 1) = AUX_GET_DNHIGH (bigend, ax);
1569 /* Parse all the type qualifiers now. If there are more
1570 than 6 the game will continue in the next aux */
1574 #define PARSE_TQ(tq) \
1575 if (t->tq != tqNil) \
1576 ax += upgrade_type(fd, &tp, t->tq, ax, bigend, sym_name); \
1588 /* mips cc 2.x and gcc never put out continued aux entries. */
1592 ecoff_swap_tir_in (bigend, &ax->a_ti, t);
1596 /* Complain for illegal continuations due to corrupt aux entries. */
1598 complain (&bad_continued_complaint, sym_name);
1603 /* Make up a complex type from a basic one. Type is passed by
1604 reference in TPP and side-effected as necessary. The type
1605 qualifier TQ says how to handle the aux symbols at AX for
1606 the symbol SX we are currently analyzing. BIGEND says whether
1607 aux symbols are big-endian or little-endian.
1608 Returns the number of aux symbols we parsed. */
1611 upgrade_type (fd, tpp, tq, ax, bigend, sym_name)
1622 /* Used in array processing */
1633 t = lookup_pointer_type (*tpp);
1638 t = lookup_function_type (*tpp);
1645 /* Determine and record the domain type (type of index) */
1646 ecoff_swap_rndx_in (bigend, &ax->a_rndx, &rndx);
1652 rf = AUX_GET_ISYM (bigend, ax);
1655 fh = get_rfd (fd, rf);
1657 indx = parse_type (fd, debug_info->external_aux + fh->iauxBase,
1658 id, (int *) NULL, bigend, sym_name);
1660 /* The bounds type should be an integer type, but might be anything
1661 else due to corrupt aux entries. */
1662 if (TYPE_CODE (indx) != TYPE_CODE_INT)
1664 complain (&array_index_type_complaint, sym_name);
1665 indx = builtin_type_int;
1668 /* Get the bounds, and create the array type. */
1670 lower = AUX_GET_DNLOW (bigend, ax);
1672 upper = AUX_GET_DNHIGH (bigend, ax);
1674 rf = AUX_GET_WIDTH (bigend, ax); /* bit size of array element */
1676 range = create_range_type ((struct type *) NULL, indx,
1679 t = create_array_type ((struct type *) NULL, *tpp, range);
1681 /* We used to fill in the supplied array element bitsize
1682 here if the TYPE_LENGTH of the target type was zero.
1683 This happens for a `pointer to an array of anonymous structs',
1684 but in this case the array element bitsize is also zero,
1685 so nothing is gained.
1686 And we used to check the TYPE_LENGTH of the target type against
1687 the supplied array element bitsize.
1688 gcc causes a mismatch for `pointer to array of object',
1689 since the sdb directives it uses do not have a way of
1690 specifying the bitsize, but it does no harm (the
1691 TYPE_LENGTH should be correct) and we should be able to
1692 ignore the erroneous bitsize from the auxiliary entry safely.
1693 dbx seems to ignore it too. */
1699 /* Volatile -- currently ignored */
1703 /* Const -- currently ignored */
1707 complain (&unknown_type_qual_complaint, tq);
1713 /* Parse a procedure descriptor record PR. Note that the procedure is
1714 parsed _after_ the local symbols, now we just insert the extra
1715 information we need into a MIPS_EFI_SYMBOL_NAME symbol that has
1716 already been placed in the procedure's main block. Note also that
1717 images that have been partially stripped (ld -x) have been deprived
1718 of local symbols, and we have to cope with them here. FIRST_OFF is
1719 the offset of the first procedure for this FDR; we adjust the
1720 address by this amount, but I don't know why. SEARCH_SYMTAB is the symtab
1721 to look for the function which contains the MIPS_EFI_SYMBOL_NAME symbol
1722 in question, or NULL to use top_stack->cur_block. */
1724 static void parse_procedure PARAMS ((PDR *, struct symtab *, unsigned long,
1725 struct section_offsets *));
1728 parse_procedure (pr, search_symtab, first_off, section_offsets)
1730 struct symtab *search_symtab;
1731 unsigned long first_off;
1732 struct section_offsets *section_offsets;
1734 struct symbol *s, *i;
1736 struct mips_extra_func_info *e;
1739 /* Simple rule to find files linked "-x" */
1740 if (cur_fdr->rss == -1)
1744 /* Static procedure at address pr->adr. Sigh. */
1745 /* FIXME-32x64. assuming pr->adr fits in long. */
1746 complain (&pdr_static_symbol_complaint, (unsigned long) pr->adr);
1754 (*debug_swap->swap_ext_in) (cur_bfd,
1755 ((char *) debug_info->external_ext
1757 * debug_swap->external_ext_size)),
1759 sh_name = debug_info->ssext + she.asym.iss;
1767 (*debug_swap->swap_sym_in) (cur_bfd,
1768 ((char *) debug_info->external_sym
1769 + ((cur_fdr->isymBase + pr->isym)
1770 * debug_swap->external_sym_size)),
1772 sh_name = debug_info->ss + cur_fdr->issBase + sh.iss;
1775 if (search_symtab != NULL)
1778 /* This loses both in the case mentioned (want a static, find a global),
1779 but also if we are looking up a non-mangled name which happens to
1780 match the name of a mangled function. */
1781 /* We have to save the cur_fdr across the call to lookup_symbol.
1782 If the pdr is for a static function and if a global function with
1783 the same name exists, lookup_symbol will eventually read in the symtab
1784 for the global function and clobber cur_fdr. */
1785 FDR *save_cur_fdr = cur_fdr;
1786 s = lookup_symbol (sh_name, NULL, VAR_NAMESPACE, 0, NULL);
1787 cur_fdr = save_cur_fdr;
1791 BLOCKVECTOR_BLOCK (BLOCKVECTOR (search_symtab), STATIC_BLOCK),
1797 s = mylookup_symbol (sh_name, top_stack->cur_block,
1798 VAR_NAMESPACE, LOC_BLOCK);
1802 b = SYMBOL_BLOCK_VALUE (s);
1806 complain (&pdr_for_nonsymbol_complaint, sh_name);
1810 /* FIXME -- delete. We can't do symbol allocation now; it's all done. */
1811 s = new_symbol (sh_name);
1812 SYMBOL_NAMESPACE (s) = VAR_NAMESPACE;
1813 SYMBOL_CLASS (s) = LOC_BLOCK;
1814 /* Donno its type, hope int is ok */
1815 SYMBOL_TYPE (s) = lookup_function_type (builtin_type_int);
1816 add_symbol (s, top_stack->cur_block);
1817 /* Wont have symbols for this one */
1819 SYMBOL_BLOCK_VALUE (s) = b;
1820 BLOCK_FUNCTION (b) = s;
1821 BLOCK_START (b) = pr->adr;
1822 /* BOUND used to be the end of procedure's text, but the
1823 argument is no longer passed in. */
1824 BLOCK_END (b) = bound;
1825 BLOCK_SUPERBLOCK (b) = top_stack->cur_block;
1826 add_block (b, top_stack->cur_st);
1830 i = mylookup_symbol (MIPS_EFI_SYMBOL_NAME, b, LABEL_NAMESPACE, LOC_CONST);
1834 e = (struct mips_extra_func_info *) SYMBOL_VALUE (i);
1836 e->pdr.isym = (long) s;
1837 e->pdr.adr += cur_fdr->adr - first_off
1838 + ANOFFSET (section_offsets, SECT_OFF_TEXT);
1840 /* Correct incorrect setjmp procedure descriptor from the library
1841 to make backtrace through setjmp work. */
1842 if (e->pdr.pcreg == 0 && STREQ (sh_name, "setjmp"))
1844 complain (&bad_setjmp_pdr_complaint, 0);
1845 e->pdr.pcreg = RA_REGNUM;
1846 e->pdr.regmask = 0x80000000;
1847 e->pdr.regoffset = -4;
1852 /* Relocate the extra function info pointed to by the symbol table. */
1855 ecoff_relocate_efi (sym, delta)
1859 struct mips_extra_func_info *e;
1861 e = (struct mips_extra_func_info *) SYMBOL_VALUE (sym);
1863 e->pdr.adr += delta;
1866 /* Parse the external symbol ES. Just call parse_symbol() after
1867 making sure we know where the aux are for it.
1868 BIGEND says whether aux entries are big-endian or little-endian.
1870 This routine clobbers top_stack->cur_block and ->cur_st. */
1872 static void parse_external PARAMS ((EXTR *, int, struct section_offsets *));
1875 parse_external (es, bigend, section_offsets)
1878 struct section_offsets *section_offsets;
1882 if (es->ifd != ifdNil)
1885 cur_fdr = debug_info->fdr + cur_fd;
1886 ax = debug_info->external_aux + cur_fdr->iauxBase;
1890 cur_fdr = debug_info->fdr;
1894 /* Reading .o files */
1895 if (es->asym.sc == scUndefined || es->asym.sc == scNil)
1898 switch (es->asym.st)
1901 /* These are generated for static symbols in .o files,
1922 /* FIXME: Turn this into a complaint? */
1924 printf_filtered ("Warning: %s `%s' is undefined (in %s)\n",
1925 what, debug_info->ssext + es->asym.iss,
1926 fdr_name (cur_fdr));
1930 switch (es->asym.st)
1934 /* There is no need to parse the external procedure symbols.
1935 If they are from objects compiled without -g, their index will
1936 be indexNil, and the symbol definition from the minimal symbol
1937 is preferrable (yielding a function returning int instead of int).
1938 If the index points to a local procedure symbol, the local
1939 symbol already provides the correct type.
1940 Note that the index of the external procedure symbol points
1941 to the local procedure symbol in the local symbol table, and
1942 _not_ to the auxiliary symbol info. */
1946 /* Note that the case of a symbol with indexNil must be handled
1947 anyways by parse_symbol(). */
1948 parse_symbol (&es->asym, ax, (char *) NULL, bigend, section_offsets);
1955 /* Parse the line number info for file descriptor FH into
1956 GDB's linetable LT. MIPS' encoding requires a little bit
1957 of magic to get things out. Note also that MIPS' line
1958 numbers can go back and forth, apparently we can live
1959 with that and do not need to reorder our linetables */
1962 parse_lines (fh, pr, lt, maxlines, section_offsets)
1965 struct linetable *lt;
1967 struct section_offsets *section_offsets;
1969 unsigned char *base;
1971 int delta, count, lineno = 0;
1972 unsigned long first_off = pr->adr;
1974 if (fh->cbLine == 0)
1977 /* Scan by procedure descriptors */
1979 for (j = 0; j < fh->cpd; j++, pr++)
1983 unsigned char *halt;
1985 /* No code for this one */
1986 if (pr->iline == ilineNil ||
1987 pr->lnLow == -1 || pr->lnHigh == -1)
1990 /* Determine start and end address of compressed line bytes for
1992 base = debug_info->line + fh->cbLineOffset;
1993 if (j != (fh->cpd - 1))
1994 halt = base + pr[1].cbLineOffset;
1996 halt = base + fh->cbLine;
1997 base += pr->cbLineOffset;
1999 adr = fh->adr + pr->adr - first_off
2000 + ANOFFSET (section_offsets, SECT_OFF_TEXT);
2002 l = adr >> 2; /* in words */
2003 for (lineno = pr->lnLow; base < halt; )
2005 count = *base & 0x0f;
2006 delta = *base++ >> 4;
2011 delta = (base[0] << 8) | base[1];
2012 if (delta >= 0x8000)
2016 lineno += delta; /* first delta is 0 */
2018 /* Complain if the line table overflows. Could happen
2019 with corrupt binaries. */
2020 if (lt->nitems >= maxlines)
2022 complain (&bad_linetable_guess_complaint, fdr_name (fh));
2025 k = add_line (lt, lineno, l, k);
2031 /* Master parsing procedure for first-pass reading of file symbols
2032 into a partial_symtab. */
2035 parse_partial_symbols (objfile, section_offsets)
2036 struct objfile *objfile;
2037 struct section_offsets *section_offsets;
2039 const bfd_size_type external_sym_size = debug_swap->external_sym_size;
2040 const bfd_size_type external_rfd_size = debug_swap->external_rfd_size;
2041 const bfd_size_type external_ext_size = debug_swap->external_ext_size;
2042 void (* const swap_ext_in) PARAMS ((bfd *, PTR, EXTR *))
2043 = debug_swap->swap_ext_in;
2044 void (* const swap_sym_in) PARAMS ((bfd *, PTR, SYMR *))
2045 = debug_swap->swap_sym_in;
2046 void (* const swap_rfd_in) PARAMS ((bfd *, PTR, RFDT *))
2047 = debug_swap->swap_rfd_in;
2049 HDRR *hdr = &debug_info->symbolic_header;
2050 /* Running pointers */
2055 register EXTR *ext_in;
2058 struct partial_symtab *pst;
2060 int past_first_source_file = 0;
2062 /* List of current psymtab's include files */
2063 char **psymtab_include_list;
2064 int includes_allocated;
2067 struct pst_map *fdr_to_pst;
2068 /* Index within current psymtab dependency list */
2069 struct partial_symtab **dependency_list;
2070 int dependencies_used, dependencies_allocated;
2071 struct cleanup *old_chain;
2073 enum language prev_language;
2075 extern_tab = (EXTR *) obstack_alloc (&objfile->psymbol_obstack,
2076 sizeof (EXTR) * hdr->iextMax);
2078 includes_allocated = 30;
2080 psymtab_include_list = (char **) alloca (includes_allocated *
2082 next_symbol_text_func = mdebug_next_symbol_text;
2084 dependencies_allocated = 30;
2085 dependencies_used = 0;
2087 (struct partial_symtab **) alloca (dependencies_allocated *
2088 sizeof (struct partial_symtab *));
2090 last_source_file = NULL;
2095 * Only parse the Local and External symbols, and the Relative FDR.
2096 * Fixup enough of the loader symtab to be able to use it.
2097 * Allocate space only for the file's portions we need to
2102 max_glevel = MIN_GLEVEL;
2104 /* Allocate the map FDR -> PST.
2105 Minor hack: -O3 images might claim some global data belongs
2106 to FDR -1. We`ll go along with that */
2107 fdr_to_pst = (struct pst_map *) xzalloc ((hdr->ifdMax + 1) * sizeof *fdr_to_pst);
2108 old_chain = make_cleanup (free, fdr_to_pst);
2111 struct partial_symtab *pst = new_psymtab ("", objfile, section_offsets);
2112 fdr_to_pst[-1].pst = pst;
2116 /* Allocate the global pending list. */
2118 ((struct mdebug_pending **)
2119 obstack_alloc (&objfile->psymbol_obstack,
2120 hdr->ifdMax * sizeof (struct mdebug_pending *)));
2121 memset ((PTR) pending_list, 0,
2122 hdr->ifdMax * sizeof (struct mdebug_pending *));
2124 /* Pass 0 over external syms: swap them in. */
2125 ext_block = (EXTR *) xmalloc (hdr->iextMax * sizeof (EXTR));
2126 make_cleanup (free, ext_block);
2128 ext_out = (char *) debug_info->external_ext;
2129 ext_out_end = ext_out + hdr->iextMax * external_ext_size;
2131 for (; ext_out < ext_out_end; ext_out += external_ext_size, ext_in++)
2132 (*swap_ext_in) (cur_bfd, ext_out, ext_in);
2134 /* Pass 1 over external syms: Presize and partition the list */
2136 ext_in_end = ext_in + hdr->iextMax;
2137 for (; ext_in < ext_in_end; ext_in++)
2139 /* See calls to complain below. */
2140 if (ext_in->ifd >= -1
2141 && ext_in->ifd < hdr->ifdMax
2142 && ext_in->asym.iss >= 0
2143 && ext_in->asym.iss < hdr->issExtMax)
2144 fdr_to_pst[ext_in->ifd].n_globals++;
2147 /* Pass 1.5 over files: partition out global symbol space */
2149 for (f_idx = -1; f_idx < hdr->ifdMax; f_idx++)
2151 fdr_to_pst[f_idx].globals_offset = s_idx;
2152 s_idx += fdr_to_pst[f_idx].n_globals;
2153 fdr_to_pst[f_idx].n_globals = 0;
2156 /* Pass 2 over external syms: fill in external symbols */
2158 ext_in_end = ext_in + hdr->iextMax;
2159 for (; ext_in < ext_in_end; ext_in++)
2161 enum minimal_symbol_type ms_type = mst_text;
2163 /* The Irix 5 native tools seem to sometimes generate bogus
2164 external symbols. */
2165 if (ext_in->ifd < -1 || ext_in->ifd >= hdr->ifdMax)
2167 complain (&bad_ext_ifd_complaint, ext_in->ifd, hdr->ifdMax);
2170 if (ext_in->asym.iss < 0 || ext_in->asym.iss >= hdr->issExtMax)
2172 complain (&bad_ext_iss_complaint, ext_in->asym.iss,
2177 extern_tab[fdr_to_pst[ext_in->ifd].globals_offset
2178 + fdr_to_pst[ext_in->ifd].n_globals++] = *ext_in;
2180 if (ext_in->asym.sc == scUndefined || ext_in->asym.sc == scNil)
2183 name = debug_info->ssext + ext_in->asym.iss;
2184 switch (ext_in->asym.st)
2189 ms_type = mst_file_text;
2192 if (ext_in->asym.sc == scCommon)
2194 /* The value of a common symbol is its size, not its address.
2198 else if (ext_in->asym.sc == scData
2199 || ext_in->asym.sc == scSData
2200 || ext_in->asym.sc == scRData
2201 || ext_in->asym.sc == scPData
2202 || ext_in->asym.sc == scXData)
2208 if (ext_in->asym.sc == scAbs)
2210 else if (ext_in->asym.sc == scText
2211 || ext_in->asym.sc == scInit
2212 || ext_in->asym.sc == scFini)
2213 ms_type = mst_file_text;
2214 else if (ext_in->asym.sc == scData
2215 || ext_in->asym.sc == scSData
2216 || ext_in->asym.sc == scRData
2217 || ext_in->asym.sc == scPData
2218 || ext_in->asym.sc == scXData)
2219 ms_type = mst_file_data;
2221 ms_type = mst_file_bss;
2224 /* The alpha has the section start addresses in stLocal symbols
2225 whose name starts with a `.'. Skip those but complain for all
2226 other stLocal symbols. */
2231 ms_type = mst_unknown;
2232 complain (&unknown_ext_complaint, name);
2234 prim_record_minimal_symbol (name, ext_in->asym.value, ms_type, objfile);
2237 /* Pass 3 over files, over local syms: fill in static symbols */
2238 for (f_idx = 0; f_idx < hdr->ifdMax; f_idx++)
2240 struct partial_symtab *save_pst;
2243 cur_fdr = fh = debug_info->fdr + f_idx;
2247 fdr_to_pst[f_idx].pst = NULL;
2250 pst = start_psymtab_common (objfile, section_offsets,
2252 fh->cpd ? fh->adr : 0,
2253 objfile->global_psymbols.next,
2254 objfile->static_psymbols.next);
2255 pst->read_symtab_private = ((char *)
2256 obstack_alloc (&objfile->psymbol_obstack,
2257 sizeof (struct symloc)));
2258 memset ((PTR) pst->read_symtab_private, 0, sizeof (struct symloc));
2261 FDR_IDX (pst) = f_idx;
2262 CUR_BFD (pst) = cur_bfd;
2263 DEBUG_SWAP (pst) = debug_swap;
2264 DEBUG_INFO (pst) = debug_info;
2265 PENDING_LIST (pst) = pending_list;
2267 /* The way to turn this into a symtab is to call... */
2268 pst->read_symtab = mdebug_psymtab_to_symtab;
2270 /* Set up language for the pst.
2271 The language from the FDR is used if it is unambigious (e.g. cfront
2272 with native cc and g++ will set the language to C).
2273 Otherwise we have to deduce the language from the filename.
2274 Native ecoff has every header file in a separate FDR, so
2275 deduce_language_from_filename will return language_unknown for
2276 a header file, which is not what we want.
2277 But the FDRs for the header files are after the FDR for the source
2278 file, so we can assign the language of the source file to the
2279 following header files. Then we save the language in the private
2280 pst data so that we can reuse it when building symtabs. */
2281 prev_language = psymtab_language;
2285 case langCplusplusV2:
2286 psymtab_language = language_cplus;
2289 psymtab_language = deduce_language_from_filename (fdr_name (fh));
2292 if (psymtab_language == language_unknown)
2293 psymtab_language = prev_language;
2294 PST_PRIVATE (pst)->pst_language = psymtab_language;
2296 pst->texthigh = pst->textlow;
2298 /* For stabs-in-ecoff files, the second symbol must be @stab.
2299 This symbol is emitted by mips-tfile to signal that the
2300 current object file uses encapsulated stabs instead of mips
2301 ecoff for local symbols. (It is the second symbol because
2302 the first symbol is the stFile used to signal the start of a
2304 processing_gcc_compilation = 0;
2307 (*swap_sym_in) (cur_bfd,
2308 ((char *) debug_info->external_sym
2309 + (fh->isymBase + 1) * external_sym_size),
2311 if (STREQ (debug_info->ss + fh->issBase + sh.iss, stabs_symbol))
2312 processing_gcc_compilation = 2;
2315 if (processing_gcc_compilation != 0)
2317 for (cur_sdx = 2; cur_sdx < fh->csym; cur_sdx++)
2322 (*swap_sym_in) (cur_bfd,
2323 (((char *) debug_info->external_sym)
2324 + (fh->isymBase + cur_sdx) * external_sym_size),
2326 type_code = ECOFF_UNMARK_STAB (sh.index);
2327 if (!ECOFF_IS_STAB (&sh))
2329 if (sh.st == stProc || sh.st == stStaticProc)
2334 sh.value += ANOFFSET (section_offsets, SECT_OFF_TEXT);
2335 if (sh.st == stStaticProc)
2337 namestring = debug_info->ss + fh->issBase + sh.iss;
2338 prim_record_minimal_symbol_and_info (namestring,
2345 procaddr = sh.value;
2347 isym = AUX_GET_ISYM (fh->fBigendian,
2348 (debug_info->external_aux
2351 (*swap_sym_in) (cur_bfd,
2352 ((char *) debug_info->external_sym
2353 + ((fh->isymBase + isym - 1)
2354 * external_sym_size)),
2358 long high = procaddr + sh.value;
2359 if (high > pst->texthigh)
2360 pst->texthigh = high;
2363 else if (sh.st == stStatic)
2377 namestring = debug_info->ss + fh->issBase + sh.iss;
2378 sh.value += ANOFFSET (section_offsets, SECT_OFF_DATA);
2379 prim_record_minimal_symbol_and_info (namestring,
2388 namestring = debug_info->ss + fh->issBase + sh.iss;
2389 sh.value += ANOFFSET (section_offsets, SECT_OFF_BSS);
2390 prim_record_minimal_symbol_and_info (namestring,
2401 #define SET_NAMESTRING() \
2402 namestring = debug_info->ss + fh->issBase + sh.iss
2403 #define CUR_SYMBOL_TYPE type_code
2404 #define CUR_SYMBOL_VALUE sh.value
2405 #define START_PSYMTAB(ofile,secoff,fname,low,symoff,global_syms,static_syms)\
2407 #define END_PSYMTAB(pst,ilist,ninc,c_off,c_text,dep_list,n_deps) (void)0
2408 #define HANDLE_RBRAC(val) \
2409 if ((val) > save_pst->texthigh) save_pst->texthigh = (val);
2410 #include "partial-stab.h"
2415 for (cur_sdx = 0; cur_sdx < fh->csym;)
2418 enum address_class class;
2420 (*swap_sym_in) (cur_bfd,
2421 ((char *) debug_info->external_sym
2422 + ((fh->isymBase + cur_sdx)
2423 * external_sym_size)),
2426 if (ECOFF_IS_STAB (&sh))
2432 /* Non absolute static symbols go into the minimal table. */
2433 if (sh.sc == scUndefined || sh.sc == scNil
2434 || (sh.index == indexNil
2435 && (sh.st != stStatic || sh.sc == scAbs)))
2437 /* FIXME, premature? */
2442 name = debug_info->ss + fh->issBase + sh.iss;
2451 prim_record_minimal_symbol_and_info (name, sh.value,
2452 mst_file_text, NULL,
2453 SECT_OFF_TEXT, objfile);
2458 /* Usually there is a local and a global stProc symbol
2459 for a function. This means that the function name
2460 has already been entered into the mimimal symbol table
2461 while processing the global symbols in pass 2 above.
2462 One notable exception is the PROGRAM name from
2463 f77 compiled executables, it is only put out as
2464 local stProc symbol, and a global MAIN__ stProc symbol
2465 points to it. It doesn't matter though, as gdb is
2466 still able to find the PROGRAM name via the partial
2467 symbol table, and the MAIN__ symbol via the minimal
2469 if (sh.st == stProc)
2470 ADD_PSYMBOL_TO_LIST (name, strlen (name),
2471 VAR_NAMESPACE, LOC_BLOCK,
2472 objfile->global_psymbols,
2473 sh.value, psymtab_language, objfile);
2475 ADD_PSYMBOL_TO_LIST (name, strlen (name),
2476 VAR_NAMESPACE, LOC_BLOCK,
2477 objfile->static_psymbols,
2478 sh.value, psymtab_language, objfile);
2480 /* Skip over procedure to next one. */
2481 if (sh.index >= hdr->iauxMax)
2483 /* Should not happen, but does when cross-compiling
2484 with the MIPS compiler. FIXME -- pull later. */
2485 complain (&index_complaint, name);
2486 new_sdx = cur_sdx + 1; /* Don't skip at all */
2489 new_sdx = AUX_GET_ISYM (fh->fBigendian,
2490 (debug_info->external_aux
2493 procaddr = sh.value;
2495 if (new_sdx <= cur_sdx)
2497 /* This should not happen either... FIXME. */
2498 complain (&aux_index_complaint, name);
2499 new_sdx = cur_sdx + 1; /* Don't skip backward */
2503 (*swap_sym_in) (cur_bfd,
2504 ((char *) debug_info->external_sym
2505 + ((fh->isymBase + cur_sdx - 1)
2506 * external_sym_size)),
2510 high = procaddr + sh.value;
2511 if (high > pst->texthigh)
2512 pst->texthigh = high;
2515 case stStatic: /* Variable */
2520 || sh.sc == scXData)
2521 prim_record_minimal_symbol_and_info (name, sh.value,
2522 mst_file_data, NULL,
2526 prim_record_minimal_symbol_and_info (name, sh.value,
2533 case stTypedef:/* Typedef */
2534 /* Skip typedefs for forward declarations and opaque
2535 structs from alpha and mips cc. */
2536 if (sh.iss == 0 || has_opaque_xref (fh, &sh))
2538 class = LOC_TYPEDEF;
2541 case stConstant: /* Constant decl */
2548 case stBlock: /* { }, str, un, enum*/
2549 /* Do not create a partial symbol for cc unnamed aggregates
2550 and gcc empty aggregates. */
2551 if ((sh.sc == scInfo || sh.sc == scCommon)
2553 && sh.index != cur_sdx + 2)
2555 ADD_PSYMBOL_TO_LIST (name, strlen (name),
2556 STRUCT_NAMESPACE, LOC_TYPEDEF,
2557 objfile->static_psymbols,
2559 psymtab_language, objfile);
2561 handle_psymbol_enumerators (objfile, fh, sh.st);
2563 /* Skip over the block */
2565 if (new_sdx <= cur_sdx)
2567 /* This happens with the Ultrix kernel. */
2568 complain (&block_index_complaint, name);
2569 new_sdx = cur_sdx + 1; /* Don't skip backward */
2574 case stFile: /* File headers */
2575 case stLabel: /* Labels */
2576 case stEnd: /* Ends of files */
2579 case stLocal: /* Local variables */
2580 /* Normally these are skipped because we skip over
2581 all blocks we see. However, these can occur
2582 as visible symbols in a .h file that contains code. */
2586 /* Both complaints are valid: one gives symbol name,
2587 the other the offending symbol type. */
2588 complain (&unknown_sym_complaint, name);
2589 complain (&unknown_st_complaint, sh.st);
2593 /* Use this gdb symbol */
2594 ADD_PSYMBOL_TO_LIST (name, strlen (name),
2595 VAR_NAMESPACE, class,
2596 objfile->static_psymbols, sh.value,
2597 psymtab_language, objfile);
2599 cur_sdx++; /* Go to next file symbol */
2602 /* Now do enter the external symbols. */
2603 ext_ptr = &extern_tab[fdr_to_pst[f_idx].globals_offset];
2604 cur_sdx = fdr_to_pst[f_idx].n_globals;
2605 PST_PRIVATE (save_pst)->extern_count = cur_sdx;
2606 PST_PRIVATE (save_pst)->extern_tab = ext_ptr;
2607 for (; --cur_sdx >= 0; ext_ptr++)
2609 enum address_class class;
2613 if (ext_ptr->ifd != f_idx)
2615 psh = &ext_ptr->asym;
2617 /* Do not add undefined symbols to the partial symbol table. */
2618 if (psh->sc == scUndefined || psh->sc == scNil)
2624 /* These are generated for static symbols in .o files,
2629 /* External procedure symbols have been entered
2630 into the minimal symbol table in pass 2 above.
2631 Ignore them, as parse_external will ignore them too. */
2637 complain (&unknown_ext_complaint,
2638 debug_info->ssext + psh->iss);
2639 /* Fall through, pretend it's global. */
2644 name = debug_info->ssext + psh->iss;
2645 ADD_PSYMBOL_ADDR_TO_LIST (name, strlen (name),
2646 VAR_NAMESPACE, class,
2647 objfile->global_psymbols,
2648 (CORE_ADDR) psh->value,
2649 psymtab_language, objfile);
2653 /* Link pst to FDR. end_psymtab returns NULL if the psymtab was
2654 empty and put on the free list. */
2655 fdr_to_pst[f_idx].pst = end_psymtab (save_pst,
2656 psymtab_include_list, includes_used,
2657 -1, save_pst->texthigh,
2658 dependency_list, dependencies_used);
2659 if (objfile->ei.entry_point >= save_pst->textlow &&
2660 objfile->ei.entry_point < save_pst->texthigh)
2662 objfile->ei.entry_file_lowpc = save_pst->textlow;
2663 objfile->ei.entry_file_highpc = save_pst->texthigh;
2667 /* Now scan the FDRs for dependencies */
2668 for (f_idx = 0; f_idx < hdr->ifdMax; f_idx++)
2670 fh = f_idx + debug_info->fdr;
2671 pst = fdr_to_pst[f_idx].pst;
2673 if (pst == (struct partial_symtab *)NULL)
2676 /* This should catch stabs-in-ecoff. */
2680 /* Skip the first file indirect entry as it is a self dependency
2681 for source files or a reverse .h -> .c dependency for header files. */
2682 pst->number_of_dependencies = 0;
2684 ((struct partial_symtab **)
2685 obstack_alloc (&objfile->psymbol_obstack,
2687 * sizeof (struct partial_symtab *))));
2688 for (s_idx = 1; s_idx < fh->crfd; s_idx++)
2692 (*swap_rfd_in) (cur_bfd,
2693 ((char *) debug_info->external_rfd
2694 + (fh->rfdBase + s_idx) * external_rfd_size),
2696 if (rh < 0 || rh >= hdr->ifdMax)
2698 complain (&bad_file_number_complaint, rh);
2702 /* Skip self dependencies of header files. */
2706 /* Do not add to dependeny list if psymtab was empty. */
2707 if (fdr_to_pst[rh].pst == (struct partial_symtab *)NULL)
2709 pst->dependencies[pst->number_of_dependencies++] = fdr_to_pst[rh].pst;
2713 /* Remove the dummy psymtab created for -O3 images above, if it is
2714 still empty, to enable the detection of stripped executables. */
2715 if (objfile->psymtabs->next == NULL
2716 && objfile->psymtabs->number_of_dependencies == 0
2717 && objfile->psymtabs->n_global_syms == 0
2718 && objfile->psymtabs->n_static_syms == 0)
2719 objfile->psymtabs = NULL;
2720 do_cleanups (old_chain);
2723 /* If the current psymbol has an enumerated type, we need to add
2724 all the the enum constants to the partial symbol table. */
2727 handle_psymbol_enumerators (objfile, fh, stype)
2728 struct objfile *objfile;
2732 const bfd_size_type external_sym_size = debug_swap->external_sym_size;
2733 void (* const swap_sym_in) PARAMS ((bfd *, PTR, SYMR *))
2734 = debug_swap->swap_sym_in;
2735 char *ext_sym = ((char *) debug_info->external_sym
2736 + ((fh->isymBase + cur_sdx + 1) * external_sym_size));
2746 /* It is an enumerated type if the next symbol entry is a stMember
2747 and its auxiliary index is indexNil or its auxiliary entry
2748 is a plain btNil or btVoid. */
2749 (*swap_sym_in) (cur_bfd, ext_sym, &sh);
2750 if (sh.st != stMember)
2753 if (sh.index == indexNil)
2755 ecoff_swap_tir_in (fh->fBigendian,
2756 &(debug_info->external_aux
2757 + fh->iauxBase + sh.index)->a_ti,
2759 if ((tir.bt != btNil && tir.bt != btVoid) || tir.tq0 != tqNil)
2771 (*swap_sym_in) (cur_bfd, ext_sym, &sh);
2772 if (sh.st != stMember)
2774 name = debug_info->ss + cur_fdr->issBase + sh.iss;
2776 /* Note that the value doesn't matter for enum constants
2777 in psymtabs, just in symtabs. */
2778 ADD_PSYMBOL_TO_LIST (name, strlen (name),
2779 VAR_NAMESPACE, LOC_CONST,
2780 objfile->static_psymbols, 0,
2781 psymtab_language, objfile);
2782 ext_sym += external_sym_size;
2787 mdebug_next_symbol_text ()
2792 (*debug_swap->swap_sym_in) (cur_bfd,
2793 ((char *) debug_info->external_sym
2794 + ((cur_fdr->isymBase + cur_sdx)
2795 * debug_swap->external_sym_size)),
2797 return debug_info->ss + cur_fdr->issBase + sh.iss;
2800 /* Ancillary function to psymtab_to_symtab(). Does all the work
2801 for turning the partial symtab PST into a symtab, recurring
2802 first on all dependent psymtabs. The argument FILENAME is
2803 only passed so we can see in debug stack traces what file
2806 This function has a split personality, based on whether the
2807 symbol table contains ordinary ecoff symbols, or stabs-in-ecoff.
2808 The flow of control and even the memory allocation differs. FIXME. */
2811 psymtab_to_symtab_1 (pst, filename)
2812 struct partial_symtab *pst;
2815 bfd_size_type external_sym_size;
2816 bfd_size_type external_pdr_size;
2817 void (*swap_sym_in) PARAMS ((bfd *, PTR, SYMR *));
2818 void (*swap_pdr_in) PARAMS ((bfd *, PTR, PDR *));
2822 struct linetable *lines;
2828 /* Read in all partial symbtabs on which this one is dependent.
2829 NOTE that we do have circular dependencies, sigh. We solved
2830 that by setting pst->readin before this point. */
2832 for (i = 0; i < pst->number_of_dependencies; i++)
2833 if (!pst->dependencies[i]->readin)
2835 /* Inform about additional files to be read in. */
2838 fputs_filtered (" ", gdb_stdout);
2840 fputs_filtered ("and ", gdb_stdout);
2842 printf_filtered ("%s...",
2843 pst->dependencies[i]->filename);
2844 wrap_here (""); /* Flush output */
2845 gdb_flush (gdb_stdout);
2847 /* We only pass the filename for debug purposes */
2848 psymtab_to_symtab_1 (pst->dependencies[i],
2849 pst->dependencies[i]->filename);
2852 /* Do nothing if this is a dummy psymtab. */
2854 if (pst->n_global_syms == 0 && pst->n_static_syms == 0
2855 && pst->textlow == 0 && pst->texthigh == 0)
2858 /* Now read the symbols for this symtab */
2860 cur_bfd = CUR_BFD (pst);
2861 debug_swap = DEBUG_SWAP (pst);
2862 debug_info = DEBUG_INFO (pst);
2863 pending_list = PENDING_LIST (pst);
2864 external_sym_size = debug_swap->external_sym_size;
2865 external_pdr_size = debug_swap->external_pdr_size;
2866 swap_sym_in = debug_swap->swap_sym_in;
2867 swap_pdr_in = debug_swap->swap_pdr_in;
2868 current_objfile = pst->objfile;
2869 cur_fd = FDR_IDX (pst);
2870 fh = ((cur_fd == -1)
2872 : debug_info->fdr + cur_fd);
2875 /* See comment in parse_partial_symbols about the @stabs sentinel. */
2876 processing_gcc_compilation = 0;
2877 if (fh != (FDR *) NULL && fh->csym >= 2)
2881 (*swap_sym_in) (cur_bfd,
2882 ((char *) debug_info->external_sym
2883 + (fh->isymBase + 1) * external_sym_size),
2885 if (STREQ (debug_info->ss + fh->issBase + sh.iss,
2888 /* We indicate that this is a GCC compilation so that certain
2889 features will be enabled in stabsread/dbxread. */
2890 processing_gcc_compilation = 2;
2894 if (processing_gcc_compilation != 0)
2899 unsigned long first_off = 0;
2901 /* This symbol table contains stabs-in-ecoff entries. */
2903 /* Parse local symbols first */
2905 if (fh->csym <= 2) /* FIXME, this blows psymtab->symtab ptr */
2907 current_objfile = NULL;
2910 for (cur_sdx = 2; cur_sdx < fh->csym; cur_sdx++)
2916 (*swap_sym_in) (cur_bfd,
2917 (((char *) debug_info->external_sym)
2918 + (fh->isymBase + cur_sdx) * external_sym_size),
2920 name = debug_info->ss + fh->issBase + sh.iss;
2922 if (ECOFF_IS_STAB (&sh))
2924 int type_code = ECOFF_UNMARK_STAB (sh.index);
2926 /* We should never get non N_STAB symbols here, but they
2927 should be harmless, so keep process_one_symbol from
2928 complaining about them. */
2929 if (type_code & N_STAB)
2931 process_one_symbol (type_code, 0, valu, name,
2932 pst->section_offsets, pst->objfile);
2934 if (type_code == N_FUN)
2936 /* Make up special symbol to contain
2937 procedure specific info */
2938 struct mips_extra_func_info *e =
2939 ((struct mips_extra_func_info *)
2940 obstack_alloc (¤t_objfile->symbol_obstack,
2941 sizeof (struct mips_extra_func_info)));
2942 struct symbol *s = new_symbol (MIPS_EFI_SYMBOL_NAME);
2943 SYMBOL_NAMESPACE (s) = LABEL_NAMESPACE;
2944 SYMBOL_CLASS (s) = LOC_CONST;
2945 SYMBOL_TYPE (s) = builtin_type_void;
2946 SYMBOL_VALUE (s) = (long) e;
2947 add_symbol_to_list (s, &local_symbols);
2950 else if (sh.st == stLabel)
2952 if (sh.index == indexNil)
2954 /* This is what the gcc2_compiled and __gnu_compiled_*
2955 show up as. So don't complain. */
2959 /* Handle encoded stab line number. */
2960 record_line (current_subfile, sh.index, valu);
2962 else if (sh.st == stProc || sh.st == stStaticProc
2963 || sh.st == stStatic || sh.st == stEnd)
2964 /* These are generated by gcc-2.x, do not complain */
2967 complain (&stab_unknown_complaint, name);
2969 st = end_symtab (pst->texthigh, 0, 0, pst->objfile, SECT_OFF_TEXT);
2972 /* Sort the symbol table now, we are done adding symbols to it.
2973 We must do this before parse_procedure calls lookup_symbol. */
2974 sort_symtab_syms (st);
2976 /* There used to be a call to sort_blocks here, but this should not
2977 be necessary for stabs symtabs. And as sort_blocks modifies the
2978 start address of the GLOBAL_BLOCK to the FIRST_LOCAL_BLOCK,
2979 it did the wrong thing if the first procedure in a file was
2980 generated via asm statements. */
2982 /* Fill in procedure info next. */
2984 pdr_ptr = ((char *) debug_info->external_pdr
2985 + fh->ipdFirst * external_pdr_size);
2986 pdr_end = pdr_ptr + fh->cpd * external_pdr_size;
2987 for (; pdr_ptr < pdr_end; pdr_ptr += external_pdr_size)
2991 (*swap_pdr_in) (cur_bfd, pdr_ptr, &pr);
2997 parse_procedure (&pr, st, first_off, pst->section_offsets);
3002 /* This symbol table contains ordinary ecoff entries. */
3004 /* FIXME: doesn't use pst->section_offsets. */
3010 /* How many symbols will we need */
3011 /* FIXME, this does not count enum values. */
3012 f_max = pst->n_global_syms + pst->n_static_syms;
3016 st = new_symtab ("unknown", f_max, 0, pst->objfile);
3020 f_max += fh->csym + fh->cpd;
3021 maxlines = 2 * fh->cline;
3022 st = new_symtab (pst->filename, 2 * f_max, maxlines, pst->objfile);
3024 /* The proper language was already determined when building
3025 the psymtab, use it. */
3026 st->language = PST_PRIVATE (pst)->pst_language;
3029 psymtab_language = st->language;
3031 lines = LINETABLE (st);
3033 /* Get a new lexical context */
3035 push_parse_stack ();
3036 top_stack->cur_st = st;
3037 top_stack->cur_block = BLOCKVECTOR_BLOCK (BLOCKVECTOR (st),
3039 BLOCK_START (top_stack->cur_block) = fh ? fh->adr : 0;
3040 BLOCK_END (top_stack->cur_block) = 0;
3041 top_stack->blocktype = stFile;
3042 top_stack->maxsyms = 2 * f_max;
3043 top_stack->cur_type = 0;
3044 top_stack->procadr = 0;
3045 top_stack->numargs = 0;
3052 /* Parse local symbols first */
3053 sym_ptr = ((char *) debug_info->external_sym
3054 + fh->isymBase * external_sym_size);
3055 sym_end = sym_ptr + fh->csym * external_sym_size;
3056 while (sym_ptr < sym_end)
3061 (*swap_sym_in) (cur_bfd, sym_ptr, &sh);
3062 c = parse_symbol (&sh,
3063 debug_info->external_aux + fh->iauxBase,
3064 sym_ptr, fh->fBigendian, pst->section_offsets);
3065 sym_ptr += c * external_sym_size;
3068 /* Linenumbers. At the end, check if we can save memory.
3069 parse_lines has to look ahead an arbitrary number of PDR
3070 structures, so we swap them all first. */
3074 struct cleanup *old_chain;
3080 pr_block = (PDR *) xmalloc (fh->cpd * sizeof (PDR));
3082 old_chain = make_cleanup (free, pr_block);
3084 pdr_ptr = ((char *) debug_info->external_pdr
3085 + fh->ipdFirst * external_pdr_size);
3086 pdr_end = pdr_ptr + fh->cpd * external_pdr_size;
3090 pdr_ptr += external_pdr_size, pdr_in++)
3091 (*swap_pdr_in) (cur_bfd, pdr_ptr, pdr_in);
3093 parse_lines (fh, pr_block, lines, maxlines,
3094 pst->section_offsets);
3095 if (lines->nitems < fh->cline)
3096 lines = shrink_linetable (lines);
3098 /* Fill in procedure info next. */
3100 pdr_in_end = pdr_in + fh->cpd;
3101 for (; pdr_in < pdr_in_end; pdr_in++)
3102 parse_procedure (pdr_in, 0, pr_block->adr,
3103 pst->section_offsets);
3105 do_cleanups (old_chain);
3109 LINETABLE (st) = lines;
3111 /* .. and our share of externals.
3112 XXX use the global list to speed up things here. how?
3113 FIXME, Maybe quit once we have found the right number of ext's? */
3114 top_stack->cur_st = st;
3115 top_stack->cur_block = BLOCKVECTOR_BLOCK (BLOCKVECTOR (top_stack->cur_st),
3117 top_stack->blocktype = stFile;
3119 = (debug_info->symbolic_header.isymMax
3120 + debug_info->symbolic_header.ipdMax
3121 + debug_info->symbolic_header.iextMax);
3123 ext_ptr = PST_PRIVATE (pst)->extern_tab;
3124 for (i = PST_PRIVATE (pst)->extern_count; --i >= 0; ext_ptr++)
3125 parse_external (ext_ptr, fh->fBigendian, pst->section_offsets);
3127 /* If there are undefined symbols, tell the user.
3128 The alpha has an undefined symbol for every symbol that is
3129 from a shared library, so tell the user only if verbose is on. */
3130 if (info_verbose && n_undef_symbols)
3132 printf_filtered ("File %s contains %d unresolved references:",
3133 st->filename, n_undef_symbols);
3134 printf_filtered ("\n\t%4d variables\n\t%4d procedures\n\t%4d labels\n",
3135 n_undef_vars, n_undef_procs, n_undef_labels);
3136 n_undef_symbols = n_undef_labels = n_undef_vars = n_undef_procs = 0;
3143 /* Sort the symbol table now, we are done adding symbols to it.*/
3144 sort_symtab_syms (st);
3149 /* Now link the psymtab and the symtab. */
3152 current_objfile = NULL;
3155 /* Ancillary parsing procedures. */
3157 /* Return 1 if the symbol pointed to by SH has a cross reference
3158 to an opaque aggregate type, else 0. */
3161 has_opaque_xref (fh, sh)
3170 if (sh->index == indexNil)
3173 ax = debug_info->external_aux + fh->iauxBase + sh->index;
3174 ecoff_swap_tir_in (fh->fBigendian, &ax->a_ti, &tir);
3175 if (tir.bt != btStruct && tir.bt != btUnion && tir.bt != btEnum)
3179 ecoff_swap_rndx_in (fh->fBigendian, &ax->a_rndx, rn);
3180 if (rn->rfd == 0xfff)
3181 rf = AUX_GET_ISYM (fh->fBigendian, ax + 1);
3189 /* Lookup the type at relative index RN. Return it in TPP
3190 if found and in any event come up with its name PNAME.
3191 BIGEND says whether aux symbols are big-endian or not (from fh->fBigendian).
3192 Return value says how many aux symbols we ate. */
3195 cross_ref (fd, ax, tpp, type_code, pname, bigend, sym_name)
3199 enum type_code type_code; /* Use to alloc new type if none is found. */
3211 struct mdebug_pending *pend;
3213 *tpp = (struct type *)NULL;
3215 ecoff_swap_rndx_in (bigend, &ax->a_rndx, rn);
3217 /* Escape index means 'the next one' */
3218 if (rn->rfd == 0xfff)
3221 rf = AUX_GET_ISYM (bigend, ax + 1);
3228 /* mips cc uses a rf of -1 for opaque struct definitions.
3229 Set TYPE_FLAG_STUB for these types so that check_stub_type will
3230 resolve them if the struct gets defined in another compilation unit. */
3233 *pname = "<undefined>";
3234 *tpp = init_type (type_code, 0, 0, (char *) NULL, current_objfile);
3235 TYPE_FLAGS (*tpp) |= TYPE_FLAG_STUB;
3239 /* mips cc uses an escaped rn->index of 0 for struct return types
3240 of procedures that were compiled without -g. These will always remain
3242 if (rn->rfd == 0xfff && rn->index == 0)
3244 *pname = "<undefined>";
3248 /* Find the relative file descriptor and the symbol in it. */
3249 fh = get_rfd (fd, rf);
3250 xref_fd = fh - debug_info->fdr;
3252 if (rn->index >= fh->csym)
3254 /* File indirect entry is corrupt. */
3255 *pname = "<illegal>";
3256 complain (&bad_rfd_entry_complaint,
3257 sym_name, xref_fd, rn->index);
3261 /* If we have processed this symbol then we left a forwarding
3262 pointer to the type in the pending list. If not, we`ll put
3263 it in a list of pending types, to be processed later when
3264 the file will be. In any event, we collect the name for the
3267 esh = ((char *) debug_info->external_sym
3268 + ((fh->isymBase + rn->index)
3269 * debug_swap->external_sym_size));
3270 (*debug_swap->swap_sym_in) (cur_bfd, esh, &sh);
3272 /* Make sure that this type of cross reference can be handled. */
3273 if ((sh.sc != scInfo
3274 || (sh.st != stBlock && sh.st != stTypedef
3275 && sh.st != stStruct && sh.st != stUnion
3276 && sh.st != stEnum))
3277 && (sh.sc != scCommon || sh.st != stBlock))
3279 /* File indirect entry is corrupt. */
3280 *pname = "<illegal>";
3281 complain (&bad_rfd_entry_complaint,
3282 sym_name, xref_fd, rn->index);
3286 *pname = debug_info->ss + fh->issBase + sh.iss;
3288 pend = is_pending_symbol (fh, esh);
3293 /* We have not yet seen this type. */
3295 if (sh.iss == 0 && sh.st == stTypedef)
3299 /* alpha cc puts out a stTypedef with a sh.iss of zero for
3301 a) forward declarations of structs/unions/enums which are not
3302 defined in this compilation unit.
3303 For these the type will be void. This is a bad design decision
3304 as cross referencing across compilation units is impossible
3305 due to the missing name.
3306 b) forward declarations of structs/unions/enums which are defined
3307 later in this file or in another file in the same compilation
3308 unit. Simply cross reference those again to get the
3310 The forward references are not entered in the pending list and
3311 in the symbol table. */
3313 ecoff_swap_tir_in (bigend,
3314 &(debug_info->external_aux
3315 + fh->iauxBase + sh.index)->a_ti,
3317 if (tir.tq0 != tqNil)
3318 complain (&illegal_forward_tq0_complaint, sym_name);
3322 *tpp = init_type (type_code, 0, 0, (char *) NULL,
3324 *pname = "<undefined>";
3331 (debug_info->external_aux
3332 + fh->iauxBase + sh.index + 1),
3333 tpp, type_code, pname,
3334 fh->fBigendian, sym_name);
3338 complain (&illegal_forward_bt_complaint, tir.bt, sym_name);
3339 *tpp = init_type (type_code, 0, 0, (char *) NULL,
3345 else if (sh.st == stTypedef)
3347 /* Parse the type for a normal typedef. This might recursively call
3348 cross_ref till we get a non typedef'ed type.
3349 FIXME: This is not correct behaviour, but gdb currently
3350 cannot handle typedefs without type copying. But type copying is
3351 impossible as we might have mutual forward references between
3352 two files and the copied type would not get filled in when
3353 we later parse its definition. */
3354 *tpp = parse_type (xref_fd,
3355 debug_info->external_aux + fh->iauxBase,
3359 debug_info->ss + fh->issBase + sh.iss);
3363 /* Cross reference to a struct/union/enum which is defined
3364 in another file in the same compilation unit but that file
3365 has not been parsed yet.
3366 Initialize the type only, it will be filled in when
3367 it's definition is parsed. */
3368 *tpp = init_type (type_code, 0, 0, (char *) NULL, current_objfile);
3370 add_pending (fh, esh, *tpp);
3373 /* We used one auxent normally, two if we got a "next one" rf. */
3378 /* Quick&dirty lookup procedure, to avoid the MI ones that require
3379 keeping the symtab sorted */
3381 static struct symbol *
3382 mylookup_symbol (name, block, namespace, class)
3384 register struct block *block;
3385 enum namespace namespace;
3386 enum address_class class;
3388 register int bot, top, inc;
3389 register struct symbol *sym;
3392 top = BLOCK_NSYMS (block);
3396 sym = BLOCK_SYM (block, bot);
3397 if (SYMBOL_NAME (sym)[0] == inc
3398 && SYMBOL_NAMESPACE (sym) == namespace
3399 && SYMBOL_CLASS (sym) == class
3400 && strcmp (SYMBOL_NAME (sym), name) == 0)
3404 block = BLOCK_SUPERBLOCK (block);
3406 return mylookup_symbol (name, block, namespace, class);
3411 /* Add a new symbol S to a block B.
3412 Infrequently, we will need to reallocate the block to make it bigger.
3413 We only detect this case when adding to top_stack->cur_block, since
3414 that's the only time we know how big the block is. FIXME. */
3421 int nsyms = BLOCK_NSYMS (b)++;
3422 struct block *origb;
3423 struct parse_stack *stackp;
3425 if (b == top_stack->cur_block &&
3426 nsyms >= top_stack->maxsyms)
3428 complain (&block_overflow_complaint, SYMBOL_NAME (s));
3429 /* In this case shrink_block is actually grow_block, since
3430 BLOCK_NSYMS(b) is larger than its current size. */
3432 b = shrink_block (top_stack->cur_block, top_stack->cur_st);
3434 /* Now run through the stack replacing pointers to the
3435 original block. shrink_block has already done this
3436 for the blockvector and BLOCK_FUNCTION. */
3437 for (stackp = top_stack; stackp; stackp = stackp->next)
3439 if (stackp->cur_block == origb)
3441 stackp->cur_block = b;
3442 stackp->maxsyms = BLOCK_NSYMS (b);
3446 BLOCK_SYM (b, nsyms) = s;
3449 /* Add a new block B to a symtab S */
3456 struct blockvector *bv = BLOCKVECTOR (s);
3458 bv = (struct blockvector *) xrealloc ((PTR) bv,
3459 (sizeof (struct blockvector)
3460 + BLOCKVECTOR_NBLOCKS (bv)
3461 * sizeof (bv->block)));
3462 if (bv != BLOCKVECTOR (s))
3463 BLOCKVECTOR (s) = bv;
3465 BLOCKVECTOR_BLOCK (bv, BLOCKVECTOR_NBLOCKS (bv)++) = b;
3468 /* Add a new linenumber entry (LINENO,ADR) to a linevector LT.
3469 MIPS' linenumber encoding might need more than one byte
3470 to describe it, LAST is used to detect these continuation lines.
3472 Combining lines with the same line number seems like a bad idea.
3473 E.g: There could be a line number entry with the same line number after the
3474 prologue and GDB should not ignore it (this is a better way to find
3475 a prologue than mips_skip_prologue).
3476 But due to the compressed line table format there are line number entries
3477 for the same line which are needed to bridge the gap to the next
3478 line number entry. These entries have a bogus address info with them
3479 and we are unable to tell them from intended duplicate line number
3481 This is another reason why -ggdb debugging format is preferable. */
3484 add_line (lt, lineno, adr, last)
3485 struct linetable *lt;
3490 /* DEC c89 sometimes produces zero linenos which confuse gdb.
3491 Change them to something sensible. */
3495 last = -2; /* make sure we record first line */
3497 if (last == lineno) /* skip continuation lines */
3500 lt->item[lt->nitems].line = lineno;
3501 lt->item[lt->nitems++].pc = adr << 2;
3505 /* Sorting and reordering procedures */
3507 /* Blocks with a smaller low bound should come first */
3510 compare_blocks (arg1, arg2)
3514 register int addr_diff;
3515 struct block **b1 = (struct block **) arg1;
3516 struct block **b2 = (struct block **) arg2;
3518 addr_diff = (BLOCK_START ((*b1))) - (BLOCK_START ((*b2)));
3520 return (BLOCK_END ((*b2))) - (BLOCK_END ((*b1)));
3524 /* Sort the blocks of a symtab S.
3525 Reorder the blocks in the blockvector by code-address,
3526 as required by some MI search routines */
3532 struct blockvector *bv = BLOCKVECTOR (s);
3534 if (BLOCKVECTOR_NBLOCKS (bv) <= 2)
3537 if (BLOCK_END (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK)) == 0)
3538 BLOCK_START (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK)) = 0;
3539 if (BLOCK_END (BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK)) == 0)
3540 BLOCK_START (BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK)) = 0;
3544 * This is very unfortunate: normally all functions are compiled in
3545 * the order they are found, but if the file is compiled -O3 things
3546 * are very different. It would be nice to find a reliable test
3547 * to detect -O3 images in advance.
3549 if (BLOCKVECTOR_NBLOCKS (bv) > 3)
3550 qsort (&BLOCKVECTOR_BLOCK (bv, FIRST_LOCAL_BLOCK),
3551 BLOCKVECTOR_NBLOCKS (bv) - FIRST_LOCAL_BLOCK,
3552 sizeof (struct block *),
3556 register CORE_ADDR high = 0;
3557 register int i, j = BLOCKVECTOR_NBLOCKS (bv);
3559 for (i = FIRST_LOCAL_BLOCK; i < j; i++)
3560 if (high < BLOCK_END (BLOCKVECTOR_BLOCK (bv, i)))
3561 high = BLOCK_END (BLOCKVECTOR_BLOCK (bv, i));
3562 BLOCK_END (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK)) = high;
3565 BLOCK_START (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK)) =
3566 BLOCK_START (BLOCKVECTOR_BLOCK (bv, FIRST_LOCAL_BLOCK));
3568 BLOCK_START (BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK)) =
3569 BLOCK_START (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK));
3570 BLOCK_END (BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK)) =
3571 BLOCK_END (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK));
3575 /* Constructor/restructor/destructor procedures */
3577 /* Allocate a new symtab for NAME. Needs an estimate of how many symbols
3578 MAXSYMS and linenumbers MAXLINES we'll put in it */
3580 static struct symtab *
3581 new_symtab (name, maxsyms, maxlines, objfile)
3585 struct objfile *objfile;
3587 struct symtab *s = allocate_symtab (name, objfile);
3589 LINETABLE (s) = new_linetable (maxlines);
3591 /* All symtabs must have at least two blocks */
3592 BLOCKVECTOR (s) = new_bvect (2);
3593 BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), GLOBAL_BLOCK) = new_block (maxsyms);
3594 BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), STATIC_BLOCK) = new_block (maxsyms);
3595 BLOCK_SUPERBLOCK (BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), STATIC_BLOCK)) =
3596 BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), GLOBAL_BLOCK);
3598 s->free_code = free_linetable;
3603 /* Allocate a new partial_symtab NAME */
3605 static struct partial_symtab *
3606 new_psymtab (name, objfile, section_offsets)
3608 struct objfile *objfile;
3609 struct section_offsets *section_offsets;
3611 struct partial_symtab *psymtab;
3613 psymtab = allocate_psymtab (name, objfile);
3614 psymtab->section_offsets = section_offsets;
3616 /* Keep a backpointer to the file's symbols */
3618 psymtab->read_symtab_private = ((char *)
3619 obstack_alloc (&objfile->psymbol_obstack,
3620 sizeof (struct symloc)));
3621 memset ((PTR) psymtab->read_symtab_private, 0, sizeof (struct symloc));
3622 CUR_BFD (psymtab) = cur_bfd;
3623 DEBUG_SWAP (psymtab) = debug_swap;
3624 DEBUG_INFO (psymtab) = debug_info;
3625 PENDING_LIST (psymtab) = pending_list;
3627 /* The way to turn this into a symtab is to call... */
3628 psymtab->read_symtab = mdebug_psymtab_to_symtab;
3633 /* Allocate a linetable array of the given SIZE. Since the struct
3634 already includes one item, we subtract one when calculating the
3635 proper size to allocate. */
3637 static struct linetable *
3638 new_linetable (size)
3641 struct linetable *l;
3643 size = (size - 1) * sizeof (l->item) + sizeof (struct linetable);
3644 l = (struct linetable *) xmalloc (size);
3649 /* Oops, too big. Shrink it. This was important with the 2.4 linetables,
3650 I am not so sure about the 3.4 ones.
3652 Since the struct linetable already includes one item, we subtract one when
3653 calculating the proper size to allocate. */
3655 static struct linetable *
3656 shrink_linetable (lt)
3657 struct linetable *lt;
3660 return (struct linetable *) xrealloc ((PTR) lt,
3661 (sizeof (struct linetable)
3663 * sizeof (lt->item))));
3666 /* Allocate and zero a new blockvector of NBLOCKS blocks. */
3668 static struct blockvector *
3672 struct blockvector *bv;
3675 size = sizeof (struct blockvector) + nblocks * sizeof (struct block *);
3676 bv = (struct blockvector *) xzalloc (size);
3678 BLOCKVECTOR_NBLOCKS (bv) = nblocks;
3683 /* Allocate and zero a new block of MAXSYMS symbols */
3685 static struct block *
3689 int size = sizeof (struct block) + (maxsyms - 1) * sizeof (struct symbol *);
3691 return (struct block *) xzalloc (size);
3694 /* Ooops, too big. Shrink block B in symtab S to its minimal size.
3695 Shrink_block can also be used by add_symbol to grow a block. */
3697 static struct block *
3703 struct blockvector *bv = BLOCKVECTOR (s);
3706 /* Just reallocate it and fix references to the old one */
3708 new = (struct block *) xrealloc ((PTR) b,
3709 (sizeof (struct block)
3710 + ((BLOCK_NSYMS (b) - 1)
3711 * sizeof (struct symbol *))));
3713 /* Should chase pointers to old one. Fortunately, that`s just
3714 the block`s function and inferior blocks */
3715 if (BLOCK_FUNCTION (new) && SYMBOL_BLOCK_VALUE (BLOCK_FUNCTION (new)) == b)
3716 SYMBOL_BLOCK_VALUE (BLOCK_FUNCTION (new)) = new;
3717 for (i = 0; i < BLOCKVECTOR_NBLOCKS (bv); i++)
3718 if (BLOCKVECTOR_BLOCK (bv, i) == b)
3719 BLOCKVECTOR_BLOCK (bv, i) = new;
3720 else if (BLOCK_SUPERBLOCK (BLOCKVECTOR_BLOCK (bv, i)) == b)
3721 BLOCK_SUPERBLOCK (BLOCKVECTOR_BLOCK (bv, i)) = new;
3725 /* Create a new symbol with printname NAME */
3727 static struct symbol *
3731 struct symbol *s = ((struct symbol *)
3732 obstack_alloc (¤t_objfile->symbol_obstack,
3733 sizeof (struct symbol)));
3735 memset ((PTR) s, 0, sizeof (*s));
3736 SYMBOL_NAME (s) = name;
3737 SYMBOL_LANGUAGE (s) = psymtab_language;
3738 SYMBOL_INIT_DEMANGLED_NAME (s, ¤t_objfile->symbol_obstack);
3742 /* Create a new type with printname NAME */
3744 static struct type *
3750 t = alloc_type (current_objfile);
3751 TYPE_NAME (t) = name;
3752 TYPE_CPLUS_SPECIFIC (t) = (struct cplus_struct_type *) &cplus_struct_default;
3756 /* Read ECOFF debugging information from a BFD section. This is
3757 called from elfread.c. It parses the section into a
3758 ecoff_debug_info struct, and then lets the rest of the file handle
3762 elfmdebug_build_psymtabs (objfile, swap, sec, section_offsets)
3763 struct objfile *objfile;
3764 const struct ecoff_debug_swap *swap;
3766 struct section_offsets *section_offsets;
3768 bfd *abfd = objfile->obfd;
3770 struct ecoff_debug_info *info;
3772 buf = alloca (swap->external_hdr_size);
3773 if (!bfd_get_section_contents (abfd, sec, buf, (file_ptr) 0,
3774 swap->external_hdr_size))
3775 perror_with_name (bfd_get_filename (abfd));
3777 info = ((struct ecoff_debug_info *)
3778 obstack_alloc (&objfile->psymbol_obstack,
3779 sizeof (struct ecoff_debug_info)));
3781 (*swap->swap_hdr_in) (abfd, buf, &info->symbolic_header);
3783 /* The offsets in symbolic_header are file offsets, not section
3784 offsets. Strangely, on Irix 5 the information is not entirely
3785 within the .mdebug section. There are parts of an executable
3786 file which are not within any ELF section at all. This means
3787 that we must read the information using bfd_read. */
3789 #define READ(ptr, count, off, size, type) \
3792 if (info->symbolic_header.count == 0) \
3793 info->ptr = (type) NULL; \
3796 info->ptr = ((type) \
3797 obstack_alloc (&objfile->psymbol_obstack, \
3798 (info->symbolic_header.count \
3800 if (bfd_seek (abfd, info->symbolic_header.off, SEEK_SET) < 0 \
3801 || (bfd_read ((PTR) info->ptr, size, \
3802 info->symbolic_header.count, abfd) \
3803 != info->symbolic_header.count * size)) \
3804 perror_with_name (bfd_get_filename (abfd)); \
3809 READ (line, cbLine, cbLineOffset, sizeof (unsigned char), unsigned char *);
3810 READ (external_dnr, idnMax, cbDnOffset, swap->external_dnr_size, PTR);
3811 READ (external_pdr, ipdMax, cbPdOffset, swap->external_pdr_size, PTR);
3812 READ (external_sym, isymMax, cbSymOffset, swap->external_sym_size, PTR);
3813 READ (external_opt, ioptMax, cbOptOffset, swap->external_opt_size, PTR);
3814 READ (external_aux, iauxMax, cbAuxOffset, sizeof (union aux_ext),
3816 READ (ss, issMax, cbSsOffset, sizeof (char), char *);
3817 READ (ssext, issExtMax, cbSsExtOffset, sizeof (char), char *);
3818 READ (external_fdr, ifdMax, cbFdOffset, swap->external_fdr_size, PTR);
3819 READ (external_rfd, crfd, cbRfdOffset, swap->external_rfd_size, PTR);
3820 READ (external_ext, iextMax, cbExtOffset, swap->external_ext_size, PTR);
3826 mdebug_build_psymtabs (objfile, swap, info, section_offsets);
3830 /* Things used for calling functions in the inferior.
3831 These functions are exported to our companion
3832 mips-tdep.c file and are here because they play
3833 with the symbol-table explicitly. */
3835 /* Sigtramp: make sure we have all the necessary information
3836 about the signal trampoline code. Since the official code
3837 from MIPS does not do so, we make up that information ourselves.
3838 If they fix the library (unlikely) this code will neutralize itself. */
3840 /* FIXME: This function is called only by mips-tdep.c. It needs to be
3841 here because it calls functions defined in this file, but perhaps
3842 this could be handled in a better way. */
3849 struct block *b, *b0 = NULL;
3851 sigtramp_address = -1;
3853 /* We have to handle the following cases here:
3854 a) The Mips library has a sigtramp label within sigvec.
3855 b) Irix has a _sigtramp which we want to use, but it also has sigvec. */
3856 s = lookup_symbol ("sigvec", 0, VAR_NAMESPACE, 0, NULL);
3859 b0 = SYMBOL_BLOCK_VALUE (s);
3860 s = lookup_symbol ("sigtramp", b0, VAR_NAMESPACE, 0, NULL);
3864 /* No sigvec or no sigtramp inside sigvec, try _sigtramp. */
3865 s = lookup_symbol ("_sigtramp", 0, VAR_NAMESPACE, 0, NULL);
3868 /* But maybe this program uses its own version of sigvec */
3872 /* Did we or MIPSco fix the library ? */
3873 if (SYMBOL_CLASS (s) == LOC_BLOCK)
3875 sigtramp_address = BLOCK_START (SYMBOL_BLOCK_VALUE (s));
3876 sigtramp_end = BLOCK_END (SYMBOL_BLOCK_VALUE (s));
3880 sigtramp_address = SYMBOL_VALUE (s);
3881 sigtramp_end = sigtramp_address + 0x88; /* black magic */
3883 /* But what symtab does it live in ? */
3884 st = find_pc_symtab (SYMBOL_VALUE (s));
3887 * Ok, there goes the fix: turn it into a procedure, with all the
3888 * needed info. Note we make it a nested procedure of sigvec,
3889 * which is the way the (assembly) code is actually written.
3891 SYMBOL_NAMESPACE (s) = VAR_NAMESPACE;
3892 SYMBOL_CLASS (s) = LOC_BLOCK;
3893 SYMBOL_TYPE (s) = init_type (TYPE_CODE_FUNC, 4, 0, (char *) NULL,
3895 TYPE_TARGET_TYPE (SYMBOL_TYPE (s)) = builtin_type_void;
3897 /* Need a block to allocate MIPS_EFI_SYMBOL_NAME in */
3899 SYMBOL_BLOCK_VALUE (s) = b;
3900 BLOCK_START (b) = sigtramp_address;
3901 BLOCK_END (b) = sigtramp_end;
3902 BLOCK_FUNCTION (b) = s;
3903 BLOCK_SUPERBLOCK (b) = BLOCK_SUPERBLOCK (b0);
3907 /* Make a MIPS_EFI_SYMBOL_NAME entry for it */
3909 struct mips_extra_func_info *e =
3910 ((struct mips_extra_func_info *)
3911 xzalloc (sizeof (struct mips_extra_func_info)));
3913 e->numargs = 0; /* the kernel thinks otherwise */
3914 e->pdr.frameoffset = 32;
3915 e->pdr.framereg = SP_REGNUM;
3916 /* Note that setting pcreg is no longer strictly necessary as
3917 mips_frame_saved_pc is now aware of signal handler frames. */
3918 e->pdr.pcreg = PC_REGNUM;
3919 e->pdr.regmask = -2;
3920 /* Offset to saved r31, in the sigtramp case the saved registers
3921 are above the frame in the sigcontext.
3922 We have 4 alignment bytes, 12 bytes for onstack, mask and pc,
3923 32 * 4 bytes for the general registers, 12 bytes for mdhi, mdlo, ownedfp
3924 and 32 * 4 bytes for the floating point registers. */
3925 e->pdr.regoffset = 4 + 12 + 31 * 4;
3926 e->pdr.fregmask = -1;
3927 /* Offset to saved f30 (first saved *double* register). */
3928 e->pdr.fregoffset = 4 + 12 + 32 * 4 + 12 + 30 * 4;
3929 e->pdr.isym = (long) s;
3930 e->pdr.adr = sigtramp_address;
3932 current_objfile = st->objfile; /* Keep new_symbol happy */
3933 s = new_symbol (MIPS_EFI_SYMBOL_NAME);
3934 SYMBOL_VALUE (s) = (long) e;
3935 SYMBOL_NAMESPACE (s) = LABEL_NAMESPACE;
3936 SYMBOL_CLASS (s) = LOC_CONST;
3937 SYMBOL_TYPE (s) = builtin_type_void;
3938 current_objfile = NULL;
3941 BLOCK_SYM (b, BLOCK_NSYMS (b)++) = s;
3945 _initialize_mdebugread ()
3947 /* Missing basic types */
3949 /* Is a "string" the way btString means it the same as TYPE_CODE_STRING?
3951 mdebug_type_string =
3952 init_type (TYPE_CODE_STRING,
3953 TARGET_CHAR_BIT / TARGET_CHAR_BIT,
3955 (struct objfile *) NULL);
3957 mdebug_type_complex =
3958 init_type (TYPE_CODE_ERROR,
3959 TARGET_COMPLEX_BIT / TARGET_CHAR_BIT,
3961 (struct objfile *) NULL);
3962 mdebug_type_double_complex =
3963 init_type (TYPE_CODE_ERROR,
3964 TARGET_DOUBLE_COMPLEX_BIT / TARGET_CHAR_BIT,
3965 0, "double complex",
3966 (struct objfile *) NULL);
3968 /* We use TYPE_CODE_INT to print these as integers. Does this do any
3969 good? Would we be better off with TYPE_CODE_ERROR? Should
3970 TYPE_CODE_ERROR print things in hex if it knows the size? */
3971 mdebug_type_fixed_dec =
3972 init_type (TYPE_CODE_INT,
3973 TARGET_INT_BIT / TARGET_CHAR_BIT,
3975 (struct objfile *) NULL);
3977 mdebug_type_float_dec =
3978 init_type (TYPE_CODE_ERROR,
3979 TARGET_DOUBLE_BIT / TARGET_CHAR_BIT,
3980 0, "floating decimal",
3981 (struct objfile *) NULL);