1 /* Read a symbol table in ECOFF format (Third-Eye).
2 Copyright 1986, 1987, 1989, 1990, 1991, 1992, 1993, 1994, 1995
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_fixed_dec;
278 static struct type *mdebug_type_float_dec;
279 static struct type *mdebug_type_string;
281 /* Forward declarations */
284 upgrade_type PARAMS ((int, struct type **, int, union aux_ext *, int, char *));
287 parse_partial_symbols PARAMS ((struct objfile *,
288 struct section_offsets *));
291 *get_rfd PARAMS ((int, int));
294 has_opaque_xref PARAMS ((FDR *, SYMR *));
297 cross_ref PARAMS ((int, union aux_ext *, struct type **, enum type_code,
298 char **, int, char *));
300 static struct symbol *
301 new_symbol PARAMS ((char *));
304 new_type PARAMS ((char *));
306 static struct block *
307 new_block PARAMS ((int));
309 static struct symtab *
310 new_symtab PARAMS ((char *, int, int, struct objfile *));
312 static struct linetable *
313 new_linetable PARAMS ((int));
315 static struct blockvector *
316 new_bvect PARAMS ((int));
319 parse_symbol PARAMS ((SYMR *, union aux_ext *, char *, int, struct section_offsets *));
322 parse_type PARAMS ((int, union aux_ext *, unsigned int, int *, int, char *));
324 static struct symbol *
325 mylookup_symbol PARAMS ((char *, struct block *, enum namespace,
326 enum address_class));
328 static struct block *
329 shrink_block PARAMS ((struct block *, struct symtab *));
332 xzalloc PARAMS ((unsigned int));
335 sort_blocks PARAMS ((struct symtab *));
338 compare_blocks PARAMS ((const void *, const void *));
340 static struct partial_symtab *
341 new_psymtab PARAMS ((char *, struct objfile *, struct section_offsets *));
344 psymtab_to_symtab_1 PARAMS ((struct partial_symtab *, char *));
347 add_block PARAMS ((struct block *, struct symtab *));
350 add_symbol PARAMS ((struct symbol *, struct block *));
353 add_line PARAMS ((struct linetable *, int, CORE_ADDR, int));
355 static struct linetable *
356 shrink_linetable PARAMS ((struct linetable *));
359 handle_psymbol_enumerators PARAMS ((struct objfile *, FDR *, int));
362 mdebug_next_symbol_text PARAMS ((void));
364 /* Address bounds for the signal trampoline in inferior, if any */
366 CORE_ADDR sigtramp_address, sigtramp_end;
368 /* Allocate zeroed memory */
374 PTR p = xmalloc (size);
380 /* Exported procedure: Builds a symtab from the PST partial one.
381 Restores the environment in effect when PST was created, delegates
382 most of the work to an ancillary procedure, and sorts
383 and reorders the symtab list at the end */
386 mdebug_psymtab_to_symtab (pst)
387 struct partial_symtab *pst;
395 printf_filtered ("Reading in symbols for %s...", pst->filename);
396 gdb_flush (gdb_stdout);
399 next_symbol_text_func = mdebug_next_symbol_text;
401 psymtab_to_symtab_1 (pst, pst->filename);
403 /* Match with global symbols. This only needs to be done once,
404 after all of the symtabs and dependencies have been read in. */
405 scan_file_globals (pst->objfile);
408 printf_filtered ("done.\n");
411 /* File-level interface functions */
413 /* Find a file descriptor given its index RF relative to a file CF */
423 fdrs = debug_info->fdr;
425 /* Object files do not have the RFD table, all refs are absolute */
428 (*debug_swap->swap_rfd_in) (cur_bfd,
429 ((char *) debug_info->external_rfd
431 * debug_swap->external_rfd_size)),
436 /* Return a safer print NAME for a file descriptor */
443 return "<stripped file>";
446 return debug_info->ss + f->issBase + f->rss;
450 /* Read in and parse the symtab of the file OBJFILE. Symbols from
451 different sections are relocated via the SECTION_OFFSETS. */
454 mdebug_build_psymtabs (objfile, swap, info, section_offsets)
455 struct objfile *objfile;
456 const struct ecoff_debug_swap *swap;
457 struct ecoff_debug_info *info;
458 struct section_offsets *section_offsets;
460 cur_bfd = objfile->obfd;
464 /* Make sure all the FDR information is swapped in. */
465 if (info->fdr == (FDR *) NULL)
471 info->fdr = (FDR *) obstack_alloc (&objfile->psymbol_obstack,
472 (info->symbolic_header.ifdMax
474 fdr_src = info->external_fdr;
476 + info->symbolic_header.ifdMax * swap->external_fdr_size);
478 for (; fdr_src < fdr_end; fdr_src += swap->external_fdr_size, fdr_ptr++)
479 (*swap->swap_fdr_in) (objfile->obfd, fdr_src, fdr_ptr);
482 parse_partial_symbols (objfile, section_offsets);
485 /* Check to make sure file was compiled with -g. If not, warn the
486 user of this limitation. */
487 if (compare_glevel (max_glevel, GLEVEL_2) < 0)
489 if (max_gdbinfo == 0)
490 printf_unfiltered ("\n%s not compiled with -g, debugging support is limited.\n",
492 printf_unfiltered ("You should compile with -g2 or -g3 for best debugging support.\n");
493 gdb_flush (gdb_stdout);
498 /* Local utilities */
500 /* Map of FDR indexes to partial symtabs */
504 struct partial_symtab *pst; /* the psymtab proper */
505 long n_globals; /* exported globals (external symbols) */
506 long globals_offset; /* cumulative */
510 /* Utility stack, used to nest procedures and blocks properly.
511 It is a doubly linked list, to avoid too many alloc/free.
512 Since we might need it quite a few times it is NOT deallocated
515 static struct parse_stack
517 struct parse_stack *next, *prev;
518 struct symtab *cur_st; /* Current symtab. */
519 struct block *cur_block; /* Block in it. */
521 /* What are we parsing. stFile, or stBlock are for files and
522 blocks. stProc or stStaticProc means we have seen the start of a
523 procedure, but not the start of the block within in. When we see
524 the start of that block, we change it to stNil, without pushing a
525 new block, i.e. stNil means both a procedure and a block. */
529 int maxsyms; /* Max symbols in this block. */
530 struct type *cur_type; /* Type we parse fields for. */
531 int cur_field; /* Field number in cur_type. */
532 CORE_ADDR procadr; /* Start addres of this procedure */
533 int numargs; /* Its argument count */
536 *top_stack; /* Top stack ptr */
539 /* Enter a new lexical context */
544 struct parse_stack *new;
546 /* Reuse frames if possible */
547 if (top_stack && top_stack->prev)
548 new = top_stack->prev;
550 new = (struct parse_stack *) xzalloc (sizeof (struct parse_stack));
551 /* Initialize new frame with previous content */
554 register struct parse_stack *prev = new->prev;
557 top_stack->prev = new;
559 new->next = top_stack;
564 /* Exit a lexical context */
572 top_stack = top_stack->next;
576 /* Cross-references might be to things we haven't looked at
577 yet, e.g. type references. To avoid too many type
578 duplications we keep a quick fixup table, an array
579 of lists of references indexed by file descriptor */
581 struct mdebug_pending
583 struct mdebug_pending *next; /* link */
584 char *s; /* the unswapped symbol */
585 struct type *t; /* its partial type descriptor */
589 /* The pending information is kept for an entire object file, and used
590 to be in the sym_private field. I took it out when I split
591 mdebugread from mipsread, because this might not be the only type
592 of symbols read from an object file. Instead, we allocate the
593 pending information table when we create the partial symbols, and
594 we store a pointer to the single table in each psymtab. */
596 static struct mdebug_pending **pending_list;
598 /* Check whether we already saw symbol SH in file FH */
600 static struct mdebug_pending *
601 is_pending_symbol (fh, sh)
605 int f_idx = fh - debug_info->fdr;
606 register struct mdebug_pending *p;
608 /* Linear search is ok, list is typically no more than 10 deep */
609 for (p = pending_list[f_idx]; p; p = p->next)
615 /* Add a new symbol SH of type T */
618 add_pending (fh, sh, t)
623 int f_idx = fh - debug_info->fdr;
624 struct mdebug_pending *p = is_pending_symbol (fh, sh);
626 /* Make sure we do not make duplicates */
629 p = ((struct mdebug_pending *)
630 obstack_alloc (¤t_objfile->psymbol_obstack,
631 sizeof (struct mdebug_pending)));
634 p->next = pending_list[f_idx];
635 pending_list[f_idx] = p;
640 /* Parsing Routines proper. */
642 /* Parse a single symbol. Mostly just make up a GDB symbol for it.
643 For blocks, procedures and types we open a new lexical context.
644 This is basically just a big switch on the symbol's type. Argument
645 AX is the base pointer of aux symbols for this file (fh->iauxBase).
646 EXT_SH points to the unswapped symbol, which is needed for struct,
647 union, etc., types; it is NULL for an EXTR. BIGEND says whether
648 aux symbols are big-endian or little-endian. Return count of
649 SYMR's handled (normally one). */
652 parse_symbol (sh, ax, ext_sh, bigend, section_offsets)
657 struct section_offsets *section_offsets;
659 const bfd_size_type external_sym_size = debug_swap->external_sym_size;
660 void (* const swap_sym_in) PARAMS ((bfd *, PTR, SYMR *)) =
661 debug_swap->swap_sym_in;
665 struct mdebug_pending *pend;
669 enum address_class class;
671 long svalue = sh->value;
674 if (ext_sh == (char *) NULL)
675 name = debug_info->ssext + sh->iss;
677 name = debug_info->ss + cur_fdr->issBase + sh->iss;
682 /* The value of a stEnd symbol is the displacement from the
683 corresponding start symbol value, do not relocate it. */
685 sh->value += ANOFFSET (section_offsets, SECT_OFF_TEXT);
692 sh->value += ANOFFSET (section_offsets, SECT_OFF_DATA);
696 sh->value += ANOFFSET (section_offsets, SECT_OFF_BSS);
705 case stGlobal: /* external symbol, goes into global block */
707 b = BLOCKVECTOR_BLOCK (BLOCKVECTOR (top_stack->cur_st),
709 s = new_symbol (name);
710 SYMBOL_VALUE_ADDRESS (s) = (CORE_ADDR) sh->value;
713 case stStatic: /* static data, goes into current block. */
715 b = top_stack->cur_block;
716 s = new_symbol (name);
717 if (sh->sc == scCommon || sh->sc == scSCommon)
719 /* It is a FORTRAN common block. At least for SGI Fortran the
720 address is not in the symbol; we need to fix it later in
721 scan_file_globals. */
722 int bucket = hashname (SYMBOL_NAME (s));
723 SYMBOL_VALUE_CHAIN (s) = global_sym_chain[bucket];
724 global_sym_chain[bucket] = s;
727 SYMBOL_VALUE_ADDRESS (s) = (CORE_ADDR) sh->value;
730 case stLocal: /* local variable, goes into current block */
731 if (sh->sc == scRegister)
733 class = LOC_REGISTER;
734 svalue = ECOFF_REG_TO_REGNUM (svalue);
738 b = top_stack->cur_block;
739 s = new_symbol (name);
740 SYMBOL_VALUE (s) = svalue;
742 data: /* Common code for symbols describing data */
743 SYMBOL_NAMESPACE (s) = VAR_NAMESPACE;
744 SYMBOL_CLASS (s) = class;
747 /* Type could be missing in a number of cases */
748 if (sh->sc == scUndefined || sh->sc == scNil)
749 SYMBOL_TYPE (s) = builtin_type_int; /* undefined? */
751 SYMBOL_TYPE (s) = parse_type (cur_fd, ax, sh->index, 0, bigend, name);
752 /* Value of a data symbol is its memory address */
755 case stParam: /* arg to procedure, goes into current block */
757 top_stack->numargs++;
759 /* Special GNU C++ name. */
760 if (name[0] == CPLUS_MARKER && name[1] == 't' && name[2] == 0)
761 name = "this"; /* FIXME, not alloc'd in obstack */
762 s = new_symbol (name);
764 SYMBOL_NAMESPACE (s) = VAR_NAMESPACE;
768 /* Pass by value in register. */
769 SYMBOL_CLASS(s) = LOC_REGPARM;
770 svalue = ECOFF_REG_TO_REGNUM (svalue);
773 /* Pass by reference on stack. */
774 SYMBOL_CLASS(s) = LOC_REF_ARG;
777 /* Pass by reference in register. */
778 SYMBOL_CLASS(s) = LOC_REGPARM_ADDR;
779 svalue = ECOFF_REG_TO_REGNUM (svalue);
782 /* Pass by value on stack. */
783 SYMBOL_CLASS(s) = LOC_ARG;
786 SYMBOL_VALUE (s) = svalue;
787 SYMBOL_TYPE (s) = parse_type (cur_fd, ax, sh->index, 0, bigend, name);
788 add_symbol (s, top_stack->cur_block);
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 */
828 SYMBOL_TYPE (s) = lookup_function_type (t);
830 /* Create and enter a new lexical context */
831 b = new_block (top_stack->maxsyms);
832 SYMBOL_BLOCK_VALUE (s) = b;
833 BLOCK_FUNCTION (b) = s;
834 BLOCK_START (b) = BLOCK_END (b) = sh->value;
835 BLOCK_SUPERBLOCK (b) = top_stack->cur_block;
836 add_block (b, top_stack->cur_st);
838 /* Not if we only have partial info */
839 if (sh->sc == scUndefined || sh->sc == scNil)
843 top_stack->cur_block = b;
844 top_stack->blocktype = sh->st;
845 top_stack->cur_type = SYMBOL_TYPE (s);
846 top_stack->cur_field = -1;
847 top_stack->procadr = sh->value;
848 top_stack->numargs = 0;
851 /* Beginning of code for structure, union, and enum definitions.
852 They all share a common set of local variables, defined here. */
854 enum type_code type_code;
860 case stStruct: /* Start a block defining a struct type */
861 type_code = TYPE_CODE_STRUCT;
862 goto structured_common;
864 case stUnion: /* Start a block defining a union type */
865 type_code = TYPE_CODE_UNION;
866 goto structured_common;
868 case stEnum: /* Start a block defining an enum type */
869 type_code = TYPE_CODE_ENUM;
870 goto structured_common;
872 case stBlock: /* Either a lexical block, or some type */
873 if (sh->sc != scInfo && sh->sc != scCommon && sh->sc != scSCommon)
874 goto case_stBlock_code; /* Lexical block */
876 type_code = TYPE_CODE_UNDEF; /* We have a type. */
878 /* Common code for handling struct, union, enum, and/or as-yet-
879 unknown-type blocks of info about structured data. `type_code'
880 has been set to the proper TYPE_CODE, if we know it. */
883 top_stack->blocktype = stBlock;
885 /* First count the number of fields and the highest value. */
888 for (ext_tsym = ext_sh + external_sym_size;
890 ext_tsym += external_sym_size)
894 (*swap_sym_in) (cur_bfd, ext_tsym, &tsym);
902 if (nfields == 0 && type_code == TYPE_CODE_UNDEF)
903 /* If the type of the member is Nil (or Void),
904 without qualifiers, assume the tag is an
906 if (tsym.index == indexNil)
907 type_code = TYPE_CODE_ENUM;
910 (*debug_swap->swap_tir_in) (bigend,
911 &ax[tsym.index].a_ti,
913 if ((tir.bt == btNil || tir.bt == btVoid)
915 type_code = TYPE_CODE_ENUM;
918 if (tsym.value > max_value)
919 max_value = tsym.value;
928 /* This is a no-op; is it trying to tell us something
929 we should be checking? */
930 if (tsym.sc == scVariant); /*UNIMPLEMENTED*/
934 /* This is something like a struct within a
935 struct. Skip over the fields of the inner
936 struct. The -1 is because the for loop will
937 increment ext_tsym. */
938 ext_tsym = ((char *) debug_info->external_sym
939 + ((cur_fdr->isymBase + tsym.index - 1)
940 * external_sym_size));
946 /* mips cc puts out a typedef for struct x if it is not yet
947 defined when it encounters
948 struct y { struct x *xp; };
953 /* Irix5 cc puts out a stIndirect for struct x if it is not
954 yet defined when it encounters
955 struct y { struct x *xp; };
960 complain (&block_member_complaint, tsym.st);
965 /* In an stBlock, there is no way to distinguish structs,
966 unions, and enums at this point. This is a bug in the
967 original design (that has been fixed with the recent
968 addition of the stStruct, stUnion, and stEnum symbol
969 types.) The way you can tell is if/when you see a variable
970 or field of that type. In that case the variable's type
971 (in the AUX table) says if the type is struct, union, or
972 enum, and points back to the stBlock here. So you can
973 patch the tag kind up later - but only if there actually is
974 a variable or field of that type.
976 So until we know for sure, we will guess at this point.
978 If the first member has index==indexNil or a void type,
979 assume we have an enumeration.
980 Otherwise, if there is more than one member, and all
981 the members have offset 0, assume we have a union.
982 Otherwise, assume we have a struct.
984 The heuristic could guess wrong in the case of of an
985 enumeration with no members or a union with one (or zero)
986 members, or when all except the last field of a struct have
987 width zero. These are uncommon and/or illegal situations,
988 and in any case guessing wrong probably doesn't matter
991 But if we later do find out we were wrong, we fixup the tag
992 kind. Members of an enumeration must be handled
993 differently from struct/union fields, and that is harder to
994 patch up, but luckily we shouldn't need to. (If there are
995 any enumeration members, we can tell for sure it's an enum
998 if (type_code == TYPE_CODE_UNDEF)
999 if (nfields > 1 && max_value == 0)
1000 type_code = TYPE_CODE_UNION;
1002 type_code = TYPE_CODE_STRUCT;
1004 /* Create a new type or use the pending type. */
1005 pend = is_pending_symbol (cur_fdr, ext_sh);
1006 if (pend == (struct mdebug_pending *) NULL)
1008 t = new_type (NULL);
1009 add_pending (cur_fdr, ext_sh, t);
1014 /* Do not set the tag name if it is a compiler generated tag name
1015 (.Fxx or .xxfake or empty) for unnamed struct/union/enums.
1016 Alpha cc puts out an sh->iss of zero for those. */
1017 if (sh->iss == 0 || name[0] == '.' || name[0] == '\0')
1018 TYPE_TAG_NAME (t) = NULL;
1020 TYPE_TAG_NAME (t) = obconcat (¤t_objfile->symbol_obstack,
1023 TYPE_CODE (t) = type_code;
1024 TYPE_LENGTH (t) = sh->value;
1025 TYPE_NFIELDS (t) = nfields;
1026 TYPE_FIELDS (t) = f = ((struct field *)
1028 nfields * sizeof (struct field)));
1030 if (type_code == TYPE_CODE_ENUM)
1032 /* This is a non-empty enum. */
1034 /* DEC c89 has the number of enumerators in the sh.value field,
1035 not the type length, so we have to compensate for that
1036 incompatibility quirk.
1037 This might do the wrong thing for an enum with one or two
1038 enumerators and gcc -gcoff -fshort-enums, but these cases
1039 are hopefully rare enough. */
1040 if (TYPE_LENGTH (t) == TYPE_NFIELDS (t))
1041 TYPE_LENGTH (t) = TARGET_INT_BIT / HOST_CHAR_BIT;
1042 for (ext_tsym = ext_sh + external_sym_size;
1044 ext_tsym += external_sym_size)
1047 struct symbol *enum_sym;
1049 (*swap_sym_in) (cur_bfd, ext_tsym, &tsym);
1051 if (tsym.st != stMember)
1054 f->bitpos = tsym.value;
1056 f->name = debug_info->ss + cur_fdr->issBase + tsym.iss;
1059 enum_sym = ((struct symbol *)
1060 obstack_alloc (¤t_objfile->symbol_obstack,
1061 sizeof (struct symbol)));
1062 memset ((PTR) enum_sym, 0, sizeof (struct symbol));
1063 SYMBOL_NAME (enum_sym) = f->name;
1064 SYMBOL_CLASS (enum_sym) = LOC_CONST;
1065 SYMBOL_TYPE (enum_sym) = t;
1066 SYMBOL_NAMESPACE (enum_sym) = VAR_NAMESPACE;
1067 SYMBOL_VALUE (enum_sym) = tsym.value;
1068 add_symbol (enum_sym, top_stack->cur_block);
1070 /* Skip the stMembers that we've handled. */
1075 /* make this the current type */
1076 top_stack->cur_type = t;
1077 top_stack->cur_field = 0;
1079 /* Do not create a symbol for alpha cc unnamed structs. */
1083 /* gcc puts out an empty struct for an opaque struct definitions,
1084 do not create a symbol for it either. */
1085 if (TYPE_NFIELDS (t) == 0)
1087 TYPE_FLAGS (t) |= TYPE_FLAG_STUB;
1091 s = new_symbol (name);
1092 SYMBOL_NAMESPACE (s) = STRUCT_NAMESPACE;
1093 SYMBOL_CLASS (s) = LOC_TYPEDEF;
1094 SYMBOL_VALUE (s) = 0;
1095 SYMBOL_TYPE (s) = t;
1096 add_symbol (s, top_stack->cur_block);
1099 /* End of local variables shared by struct, union, enum, and
1100 block (as yet unknown struct/union/enum) processing. */
1104 /* beginnning of (code) block. Value of symbol
1105 is the displacement from procedure start */
1106 push_parse_stack ();
1108 /* Do not start a new block if this is the outermost block of a
1109 procedure. This allows the LOC_BLOCK symbol to point to the
1110 block with the local variables, so funcname::var works. */
1111 if (top_stack->blocktype == stProc
1112 || top_stack->blocktype == stStaticProc)
1114 top_stack->blocktype = stNil;
1118 top_stack->blocktype = stBlock;
1119 b = new_block (top_stack->maxsyms);
1120 BLOCK_START (b) = sh->value + top_stack->procadr;
1121 BLOCK_SUPERBLOCK (b) = top_stack->cur_block;
1122 top_stack->cur_block = b;
1123 add_block (b, top_stack->cur_st);
1126 case stEnd: /* end (of anything) */
1127 if (sh->sc == scInfo || sh->sc == scCommon || sh->sc == scSCommon)
1129 /* Finished with type */
1130 top_stack->cur_type = 0;
1132 else if (sh->sc == scText &&
1133 (top_stack->blocktype == stProc ||
1134 top_stack->blocktype == stStaticProc))
1136 /* Finished with procedure */
1137 struct blockvector *bv = BLOCKVECTOR (top_stack->cur_st);
1138 struct mips_extra_func_info *e;
1140 struct type *ftype = top_stack->cur_type;
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 e->pdr.framereg = -1;
1156 add_symbol (s, top_stack->cur_block);
1158 /* Reallocate symbols, saving memory */
1159 b = shrink_block (top_stack->cur_block, top_stack->cur_st);
1161 /* f77 emits proc-level with address bounds==[0,0],
1162 So look for such child blocks, and patch them. */
1163 for (i = 0; i < BLOCKVECTOR_NBLOCKS (bv); i++)
1165 struct block *b_bad = BLOCKVECTOR_BLOCK (bv, i);
1166 if (BLOCK_SUPERBLOCK (b_bad) == b
1167 && BLOCK_START (b_bad) == top_stack->procadr
1168 && BLOCK_END (b_bad) == top_stack->procadr)
1170 BLOCK_START (b_bad) = BLOCK_START (b);
1171 BLOCK_END (b_bad) = BLOCK_END (b);
1175 if (TYPE_NFIELDS (ftype) <= 0)
1177 /* No parameter type information is recorded with the function's
1178 type. Set that from the type of the parameter symbols. */
1179 int nparams = top_stack->numargs;
1185 TYPE_NFIELDS (ftype) = nparams;
1186 TYPE_FIELDS (ftype) = (struct field *)
1187 TYPE_ALLOC (ftype, nparams * sizeof (struct field));
1189 for (i = iparams = 0; iparams < nparams; i++)
1191 sym = BLOCK_SYM (b, i);
1192 switch (SYMBOL_CLASS (sym))
1197 case LOC_REGPARM_ADDR:
1198 TYPE_FIELD_TYPE (ftype, iparams) = SYMBOL_TYPE (sym);
1208 else if (sh->sc == scText && top_stack->blocktype == stBlock)
1210 /* End of (code) block. The value of the symbol is the
1211 displacement from the procedure`s start address of the
1212 end of this block. */
1213 BLOCK_END (top_stack->cur_block) = sh->value + top_stack->procadr;
1214 shrink_block (top_stack->cur_block, top_stack->cur_st);
1216 else if (sh->sc == scText && top_stack->blocktype == stNil)
1218 /* End of outermost block. Pop parse stack and ignore. The
1219 following stEnd of stProc will take care of the block. */
1222 else if (sh->sc == scText && top_stack->blocktype == stFile)
1224 /* End of file. Pop parse stack and ignore. Higher
1225 level code deals with this. */
1229 complain (&stEnd_complaint, sh->sc);
1231 pop_parse_stack (); /* restore previous lexical context */
1234 case stMember: /* member of struct or union */
1235 f = &TYPE_FIELDS (top_stack->cur_type)[top_stack->cur_field++];
1237 f->bitpos = sh->value;
1239 f->type = parse_type (cur_fd, ax, sh->index, &bitsize, bigend, name);
1240 f->bitsize = bitsize;
1243 case stIndirect: /* forward declaration on Irix5 */
1244 /* Forward declarations from Irix5 cc are handled by cross_ref,
1248 case stTypedef: /* type definition */
1249 /* Typedefs for forward declarations and opaque structs from alpha cc
1250 are handled by cross_ref, skip them. */
1254 /* Parse the type or use the pending type. */
1255 pend = is_pending_symbol (cur_fdr, ext_sh);
1256 if (pend == (struct mdebug_pending *) NULL)
1258 t = parse_type (cur_fd, ax, sh->index, (int *)NULL, bigend, name);
1259 add_pending (cur_fdr, ext_sh, t);
1264 /* mips cc puts out a typedef with the name of the struct for forward
1265 declarations. These should not go into the symbol table and
1266 TYPE_NAME should not be set for them.
1267 They can't be distinguished from an intentional typedef to
1268 the same name however:
1270 struct x { int ix; int jx; };
1274 struct xx {int ixx; int jxx; };
1275 generates a cross referencing stTypedef for x and xx.
1276 The user visible effect of this is that the type of a pointer
1277 to struct foo sometimes is given as `foo *' instead of `struct foo *'.
1278 The problem is fixed with alpha cc and Irix5 cc. */
1280 /* However if the typedef cross references to an opaque aggregate, it
1281 is safe to omit it from the symbol table. */
1283 if (has_opaque_xref (cur_fdr, sh))
1285 s = new_symbol (name);
1286 SYMBOL_NAMESPACE (s) = VAR_NAMESPACE;
1287 SYMBOL_CLASS (s) = LOC_TYPEDEF;
1288 SYMBOL_BLOCK_VALUE (s) = top_stack->cur_block;
1289 SYMBOL_TYPE (s) = t;
1290 add_symbol (s, top_stack->cur_block);
1292 /* Incomplete definitions of structs should not get a name. */
1293 if (TYPE_NAME (SYMBOL_TYPE (s)) == NULL
1294 && (TYPE_NFIELDS (SYMBOL_TYPE (s)) != 0
1295 || (TYPE_CODE (SYMBOL_TYPE (s)) != TYPE_CODE_STRUCT
1296 && TYPE_CODE (SYMBOL_TYPE (s)) != TYPE_CODE_UNION)))
1298 if (TYPE_CODE (SYMBOL_TYPE (s)) == TYPE_CODE_PTR
1299 || TYPE_CODE (SYMBOL_TYPE (s)) == TYPE_CODE_FUNC)
1301 /* If we are giving a name to a type such as "pointer to
1302 foo" or "function returning foo", we better not set
1303 the TYPE_NAME. If the program contains "typedef char
1304 *caddr_t;", we don't want all variables of type char
1305 * to print as caddr_t. This is not just a
1306 consequence of GDB's type management; CC and GCC (at
1307 least through version 2.4) both output variables of
1308 either type char * or caddr_t with the type
1309 refering to the stTypedef symbol for caddr_t. If a future
1310 compiler cleans this up it GDB is not ready for it
1311 yet, but if it becomes ready we somehow need to
1312 disable this check (without breaking the PCC/GCC2.4
1317 Fortunately, this check seems not to be necessary
1318 for anything except pointers or functions. */
1321 TYPE_NAME (SYMBOL_TYPE (s)) = SYMBOL_NAME (s);
1325 case stFile: /* file name */
1326 push_parse_stack ();
1327 top_stack->blocktype = sh->st;
1330 /* I`ve never seen these for C */
1332 break; /* register relocation */
1334 break; /* forwarding address */
1336 break; /* constant */
1338 complain (&unknown_mdebug_symtype_complaint, sh->st);
1345 /* Parse the type information provided in the raw AX entries for
1346 the symbol SH. Return the bitfield size in BS, in case.
1347 We must byte-swap the AX entries before we use them; BIGEND says whether
1348 they are big-endian or little-endian (from fh->fBigendian). */
1350 static struct type *
1351 parse_type (fd, ax, aux_index, bs, bigend, sym_name)
1354 unsigned int aux_index;
1359 /* Null entries in this map are treated specially */
1360 static struct type **map_bt[] =
1362 &builtin_type_void, /* btNil */
1364 &builtin_type_char, /* btChar */
1365 &builtin_type_unsigned_char,/* btUChar */
1366 &builtin_type_short, /* btShort */
1367 &builtin_type_unsigned_short, /* btUShort */
1368 &builtin_type_int, /* btInt */
1369 &builtin_type_unsigned_int, /* btUInt */
1370 &builtin_type_long, /* btLong */
1371 &builtin_type_unsigned_long,/* btULong */
1372 &builtin_type_float, /* btFloat */
1373 &builtin_type_double, /* btDouble */
1380 &builtin_type_complex, /* btComplex */
1381 &builtin_type_double_complex,/* btDComplex */
1383 &mdebug_type_fixed_dec, /* btFixedDec */
1384 &mdebug_type_float_dec, /* btFloatDec */
1385 &mdebug_type_string, /* btString */
1388 &builtin_type_void, /* btVoid */
1389 0, /* DEC C++: Pointer to member */
1390 0, /* DEC C++: Virtual function table */
1391 0, /* DEC C++: Class (Record) */
1392 &builtin_type_long, /* btLong64 */
1393 &builtin_type_unsigned_long, /* btULong64 */
1394 &builtin_type_long_long, /* btLongLong64 */
1395 &builtin_type_unsigned_long_long, /* btULongLong64 */
1396 &builtin_type_unsigned_long, /* btAdr64 */
1397 &builtin_type_long, /* btInt64 */
1398 &builtin_type_unsigned_long, /* btUInt64 */
1402 struct type *tp = 0;
1403 enum type_code type_code = TYPE_CODE_UNDEF;
1405 /* Handle undefined types, they have indexNil. */
1406 if (aux_index == indexNil)
1407 return builtin_type_int;
1409 /* Handle corrupt aux indices. */
1410 if (aux_index >= (debug_info->fdr + fd)->caux)
1412 complain (&index_complaint, sym_name);
1413 return builtin_type_int;
1417 /* Use aux as a type information record, map its basic type. */
1418 (*debug_swap->swap_tir_in) (bigend, &ax->a_ti, t);
1419 if (t->bt >= (sizeof (map_bt) / sizeof (*map_bt)))
1421 complain (&basic_type_complaint, t->bt, sym_name);
1422 return builtin_type_int;
1426 tp = *map_bt[t->bt];
1431 /* Cannot use builtin types -- build our own */
1435 tp = lookup_pointer_type (builtin_type_void);
1438 type_code = TYPE_CODE_STRUCT;
1441 type_code = TYPE_CODE_UNION;
1444 type_code = TYPE_CODE_ENUM;
1447 type_code = TYPE_CODE_RANGE;
1450 type_code = TYPE_CODE_SET;
1453 /* alpha cc uses this for typedefs. The true type will be
1454 obtained by crossreferencing below. */
1455 type_code = TYPE_CODE_ERROR;
1458 complain (&basic_type_complaint, t->bt, sym_name);
1459 return builtin_type_int;
1463 /* Move on to next aux */
1468 /* Inhibit core dumps with some cfront generated objects that
1470 if (bs == (int *)NULL)
1472 complain (&bad_fbitfield_complaint, sym_name);
1473 return builtin_type_int;
1475 *bs = AUX_GET_WIDTH (bigend, ax);
1479 /* All these types really point to some (common) MIPS type
1480 definition, and only the type-qualifiers fully identify
1481 them. We'll make the same effort at sharing. */
1482 if (t->bt == btStruct ||
1486 /* btSet (I think) implies that the name is a tag name, not a typedef
1487 name. This apparently is a MIPS extension for C sets. */
1492 /* Try to cross reference this type, build new type on failure. */
1493 ax += cross_ref (fd, ax, &tp, type_code, &name, bigend, sym_name);
1494 if (tp == (struct type *) NULL)
1495 tp = init_type (type_code, 0, 0, (char *) NULL, current_objfile);
1497 /* DEC c89 produces cross references to qualified aggregate types,
1498 dereference them. */
1499 while (TYPE_CODE (tp) == TYPE_CODE_PTR
1500 || TYPE_CODE (tp) == TYPE_CODE_ARRAY)
1501 tp = tp->target_type;
1503 /* Make sure that TYPE_CODE(tp) has an expected type code.
1504 Any type may be returned from cross_ref if file indirect entries
1506 if (TYPE_CODE (tp) != TYPE_CODE_STRUCT
1507 && TYPE_CODE (tp) != TYPE_CODE_UNION
1508 && TYPE_CODE (tp) != TYPE_CODE_ENUM)
1510 complain (&unexpected_type_code_complaint, sym_name);
1515 /* Usually, TYPE_CODE(tp) is already type_code. The main
1516 exception is if we guessed wrong re struct/union/enum.
1517 But for struct vs. union a wrong guess is harmless, so
1518 don't complain(). */
1519 if ((TYPE_CODE (tp) == TYPE_CODE_ENUM
1520 && type_code != TYPE_CODE_ENUM)
1521 || (TYPE_CODE (tp) != TYPE_CODE_ENUM
1522 && type_code == TYPE_CODE_ENUM))
1524 complain (&bad_tag_guess_complaint, sym_name);
1527 if (TYPE_CODE (tp) != type_code)
1529 TYPE_CODE (tp) = type_code;
1532 /* Do not set the tag name if it is a compiler generated tag name
1533 (.Fxx or .xxfake or empty) for unnamed struct/union/enums. */
1534 if (name[0] == '.' || name[0] == '\0')
1535 TYPE_TAG_NAME (tp) = NULL;
1536 else if (TYPE_TAG_NAME (tp) == NULL
1537 || !STREQ (TYPE_TAG_NAME (tp), name))
1538 TYPE_TAG_NAME (tp) = obsavestring (name, strlen (name),
1539 ¤t_objfile->type_obstack);
1543 /* All these types really point to some (common) MIPS type
1544 definition, and only the type-qualifiers fully identify
1545 them. We'll make the same effort at sharing.
1546 FIXME: btIndirect cannot happen here as it is handled by the
1547 switch t->bt above. And we are not doing any guessing on range types. */
1548 if (t->bt == btIndirect ||
1553 /* Try to cross reference this type, build new type on failure. */
1554 ax += cross_ref (fd, ax, &tp, type_code, &name, bigend, sym_name);
1555 if (tp == (struct type *) NULL)
1556 tp = init_type (type_code, 0, 0, (char *) NULL, current_objfile);
1558 /* Make sure that TYPE_CODE(tp) has an expected type code.
1559 Any type may be returned from cross_ref if file indirect entries
1561 if (TYPE_CODE (tp) != TYPE_CODE_RANGE)
1563 complain (&unexpected_type_code_complaint, sym_name);
1567 /* Usually, TYPE_CODE(tp) is already type_code. The main
1568 exception is if we guessed wrong re struct/union/enum. */
1569 if (TYPE_CODE (tp) != type_code)
1571 complain (&bad_tag_guess_complaint, sym_name);
1572 TYPE_CODE (tp) = type_code;
1574 if (TYPE_NAME (tp) == NULL || !STREQ (TYPE_NAME (tp), name))
1575 TYPE_NAME (tp) = obsavestring (name, strlen (name),
1576 ¤t_objfile->type_obstack);
1579 if (t->bt == btTypedef)
1583 /* Try to cross reference this type, it should succeed. */
1584 ax += cross_ref (fd, ax, &tp, type_code, &name, bigend, sym_name);
1585 if (tp == (struct type *) NULL)
1587 complain (&unable_to_cross_ref_complaint, sym_name);
1588 tp = builtin_type_int;
1592 /* Deal with range types */
1593 if (t->bt == btRange)
1595 TYPE_NFIELDS (tp) = 2;
1596 TYPE_FIELDS (tp) = ((struct field *)
1597 TYPE_ALLOC (tp, 2 * sizeof (struct field)));
1598 TYPE_FIELD_NAME (tp, 0) = obsavestring ("Low", strlen ("Low"),
1599 ¤t_objfile->type_obstack);
1600 TYPE_FIELD_BITPOS (tp, 0) = AUX_GET_DNLOW (bigend, ax);
1602 TYPE_FIELD_NAME (tp, 1) = obsavestring ("High", strlen ("High"),
1603 ¤t_objfile->type_obstack);
1604 TYPE_FIELD_BITPOS (tp, 1) = AUX_GET_DNHIGH (bigend, ax);
1608 /* Parse all the type qualifiers now. If there are more
1609 than 6 the game will continue in the next aux */
1613 #define PARSE_TQ(tq) \
1614 if (t->tq != tqNil) \
1615 ax += upgrade_type(fd, &tp, t->tq, ax, bigend, sym_name); \
1627 /* mips cc 2.x and gcc never put out continued aux entries. */
1631 (*debug_swap->swap_tir_in) (bigend, &ax->a_ti, t);
1635 /* Complain for illegal continuations due to corrupt aux entries. */
1637 complain (&bad_continued_complaint, sym_name);
1642 /* Make up a complex type from a basic one. Type is passed by
1643 reference in TPP and side-effected as necessary. The type
1644 qualifier TQ says how to handle the aux symbols at AX for
1645 the symbol SX we are currently analyzing. BIGEND says whether
1646 aux symbols are big-endian or little-endian.
1647 Returns the number of aux symbols we parsed. */
1650 upgrade_type (fd, tpp, tq, ax, bigend, sym_name)
1661 /* Used in array processing */
1672 t = lookup_pointer_type (*tpp);
1677 t = lookup_function_type (*tpp);
1684 /* Determine and record the domain type (type of index) */
1685 (*debug_swap->swap_rndx_in) (bigend, &ax->a_rndx, &rndx);
1691 rf = AUX_GET_ISYM (bigend, ax);
1694 fh = get_rfd (fd, rf);
1696 indx = parse_type (fd, debug_info->external_aux + fh->iauxBase,
1697 id, (int *) NULL, bigend, sym_name);
1699 /* The bounds type should be an integer type, but might be anything
1700 else due to corrupt aux entries. */
1701 if (TYPE_CODE (indx) != TYPE_CODE_INT)
1703 complain (&array_index_type_complaint, sym_name);
1704 indx = builtin_type_int;
1707 /* Get the bounds, and create the array type. */
1709 lower = AUX_GET_DNLOW (bigend, ax);
1711 upper = AUX_GET_DNHIGH (bigend, ax);
1713 rf = AUX_GET_WIDTH (bigend, ax); /* bit size of array element */
1715 range = create_range_type ((struct type *) NULL, indx,
1718 t = create_array_type ((struct type *) NULL, *tpp, range);
1720 /* We used to fill in the supplied array element bitsize
1721 here if the TYPE_LENGTH of the target type was zero.
1722 This happens for a `pointer to an array of anonymous structs',
1723 but in this case the array element bitsize is also zero,
1724 so nothing is gained.
1725 And we used to check the TYPE_LENGTH of the target type against
1726 the supplied array element bitsize.
1727 gcc causes a mismatch for `pointer to array of object',
1728 since the sdb directives it uses do not have a way of
1729 specifying the bitsize, but it does no harm (the
1730 TYPE_LENGTH should be correct) and we should be able to
1731 ignore the erroneous bitsize from the auxiliary entry safely.
1732 dbx seems to ignore it too. */
1738 /* Volatile -- currently ignored */
1742 /* Const -- currently ignored */
1746 complain (&unknown_type_qual_complaint, tq);
1752 /* Parse a procedure descriptor record PR. Note that the procedure is
1753 parsed _after_ the local symbols, now we just insert the extra
1754 information we need into a MIPS_EFI_SYMBOL_NAME symbol that has
1755 already been placed in the procedure's main block. Note also that
1756 images that have been partially stripped (ld -x) have been deprived
1757 of local symbols, and we have to cope with them here. FIRST_OFF is
1758 the offset of the first procedure for this FDR; we adjust the
1759 address by this amount, but I don't know why. SEARCH_SYMTAB is the symtab
1760 to look for the function which contains the MIPS_EFI_SYMBOL_NAME symbol
1761 in question, or NULL to use top_stack->cur_block. */
1763 static void parse_procedure PARAMS ((PDR *, struct symtab *, unsigned long,
1764 struct partial_symtab *));
1767 parse_procedure (pr, search_symtab, first_off, pst)
1769 struct symtab *search_symtab;
1770 unsigned long first_off;
1771 struct partial_symtab *pst;
1773 struct symbol *s, *i;
1775 struct mips_extra_func_info *e;
1778 /* Simple rule to find files linked "-x" */
1779 if (cur_fdr->rss == -1)
1783 /* Static procedure at address pr->adr. Sigh. */
1784 /* FIXME-32x64. assuming pr->adr fits in long. */
1785 complain (&pdr_static_symbol_complaint, (unsigned long) pr->adr);
1793 (*debug_swap->swap_ext_in) (cur_bfd,
1794 ((char *) debug_info->external_ext
1796 * debug_swap->external_ext_size)),
1798 sh_name = debug_info->ssext + she.asym.iss;
1806 (*debug_swap->swap_sym_in) (cur_bfd,
1807 ((char *) debug_info->external_sym
1808 + ((cur_fdr->isymBase + pr->isym)
1809 * debug_swap->external_sym_size)),
1811 sh_name = debug_info->ss + cur_fdr->issBase + sh.iss;
1814 if (search_symtab != NULL)
1817 /* This loses both in the case mentioned (want a static, find a global),
1818 but also if we are looking up a non-mangled name which happens to
1819 match the name of a mangled function. */
1820 /* We have to save the cur_fdr across the call to lookup_symbol.
1821 If the pdr is for a static function and if a global function with
1822 the same name exists, lookup_symbol will eventually read in the symtab
1823 for the global function and clobber cur_fdr. */
1824 FDR *save_cur_fdr = cur_fdr;
1825 s = lookup_symbol (sh_name, NULL, VAR_NAMESPACE, 0, NULL);
1826 cur_fdr = save_cur_fdr;
1830 BLOCKVECTOR_BLOCK (BLOCKVECTOR (search_symtab), STATIC_BLOCK),
1836 s = mylookup_symbol (sh_name, top_stack->cur_block,
1837 VAR_NAMESPACE, LOC_BLOCK);
1841 b = SYMBOL_BLOCK_VALUE (s);
1845 complain (&pdr_for_nonsymbol_complaint, sh_name);
1849 /* FIXME -- delete. We can't do symbol allocation now; it's all done. */
1850 s = new_symbol (sh_name);
1851 SYMBOL_NAMESPACE (s) = VAR_NAMESPACE;
1852 SYMBOL_CLASS (s) = LOC_BLOCK;
1853 /* Donno its type, hope int is ok */
1854 SYMBOL_TYPE (s) = lookup_function_type (builtin_type_int);
1855 add_symbol (s, top_stack->cur_block);
1856 /* Wont have symbols for this one */
1858 SYMBOL_BLOCK_VALUE (s) = b;
1859 BLOCK_FUNCTION (b) = s;
1860 BLOCK_START (b) = pr->adr;
1861 /* BOUND used to be the end of procedure's text, but the
1862 argument is no longer passed in. */
1863 BLOCK_END (b) = bound;
1864 BLOCK_SUPERBLOCK (b) = top_stack->cur_block;
1865 add_block (b, top_stack->cur_st);
1869 i = mylookup_symbol (MIPS_EFI_SYMBOL_NAME, b, LABEL_NAMESPACE, LOC_CONST);
1873 e = (struct mips_extra_func_info *) SYMBOL_VALUE (i);
1875 e->pdr.isym = (long) s;
1876 e->pdr.adr += pst->textlow - first_off;
1878 /* Correct incorrect setjmp procedure descriptor from the library
1879 to make backtrace through setjmp work. */
1880 if (e->pdr.pcreg == 0 && STREQ (sh_name, "setjmp"))
1882 complain (&bad_setjmp_pdr_complaint, 0);
1883 e->pdr.pcreg = RA_REGNUM;
1884 e->pdr.regmask = 0x80000000;
1885 e->pdr.regoffset = -4;
1890 /* Relocate the extra function info pointed to by the symbol table. */
1893 ecoff_relocate_efi (sym, delta)
1897 struct mips_extra_func_info *e;
1899 e = (struct mips_extra_func_info *) SYMBOL_VALUE (sym);
1901 e->pdr.adr += delta;
1904 /* Parse the external symbol ES. Just call parse_symbol() after
1905 making sure we know where the aux are for it.
1906 BIGEND says whether aux entries are big-endian or little-endian.
1908 This routine clobbers top_stack->cur_block and ->cur_st. */
1910 static void parse_external PARAMS ((EXTR *, int, struct section_offsets *));
1913 parse_external (es, bigend, section_offsets)
1916 struct section_offsets *section_offsets;
1920 if (es->ifd != ifdNil)
1923 cur_fdr = debug_info->fdr + cur_fd;
1924 ax = debug_info->external_aux + cur_fdr->iauxBase;
1928 cur_fdr = debug_info->fdr;
1932 /* Reading .o files */
1933 if (es->asym.sc == scUndefined || es->asym.sc == scNil)
1936 switch (es->asym.st)
1939 /* These are generated for static symbols in .o files,
1960 /* FIXME: Turn this into a complaint? */
1962 printf_filtered ("Warning: %s `%s' is undefined (in %s)\n",
1963 what, debug_info->ssext + es->asym.iss,
1964 fdr_name (cur_fdr));
1968 switch (es->asym.st)
1972 /* There is no need to parse the external procedure symbols.
1973 If they are from objects compiled without -g, their index will
1974 be indexNil, and the symbol definition from the minimal symbol
1975 is preferrable (yielding a function returning int instead of int).
1976 If the index points to a local procedure symbol, the local
1977 symbol already provides the correct type.
1978 Note that the index of the external procedure symbol points
1979 to the local procedure symbol in the local symbol table, and
1980 _not_ to the auxiliary symbol info. */
1984 /* Global common symbols are resolved by the runtime loader,
1986 if (es->asym.sc == scCommon || es->asym.sc == scSCommon)
1989 /* Note that the case of a symbol with indexNil must be handled
1990 anyways by parse_symbol(). */
1991 parse_symbol (&es->asym, ax, (char *) NULL, bigend, section_offsets);
1998 /* Parse the line number info for file descriptor FH into
1999 GDB's linetable LT. MIPS' encoding requires a little bit
2000 of magic to get things out. Note also that MIPS' line
2001 numbers can go back and forth, apparently we can live
2002 with that and do not need to reorder our linetables */
2004 static void parse_lines PARAMS ((FDR *, PDR *, struct linetable *, int,
2005 struct partial_symtab *));
2008 parse_lines (fh, pr, lt, maxlines, pst)
2011 struct linetable *lt;
2013 struct partial_symtab *pst;
2015 unsigned char *base;
2017 int delta, count, lineno = 0;
2018 unsigned long first_off = pr->adr;
2020 if (fh->cbLine == 0)
2023 /* Scan by procedure descriptors */
2025 for (j = 0; j < fh->cpd; j++, pr++)
2029 unsigned char *halt;
2031 /* No code for this one */
2032 if (pr->iline == ilineNil ||
2033 pr->lnLow == -1 || pr->lnHigh == -1)
2036 /* Determine start and end address of compressed line bytes for
2038 base = debug_info->line + fh->cbLineOffset;
2039 if (j != (fh->cpd - 1))
2040 halt = base + pr[1].cbLineOffset;
2042 halt = base + fh->cbLine;
2043 base += pr->cbLineOffset;
2045 adr = pst->textlow + pr->adr - first_off;
2047 l = adr >> 2; /* in words */
2048 for (lineno = pr->lnLow; base < halt; )
2050 count = *base & 0x0f;
2051 delta = *base++ >> 4;
2056 delta = (base[0] << 8) | base[1];
2057 if (delta >= 0x8000)
2061 lineno += delta; /* first delta is 0 */
2063 /* Complain if the line table overflows. Could happen
2064 with corrupt binaries. */
2065 if (lt->nitems >= maxlines)
2067 complain (&bad_linetable_guess_complaint, fdr_name (fh));
2070 k = add_line (lt, lineno, l, k);
2076 /* Master parsing procedure for first-pass reading of file symbols
2077 into a partial_symtab. */
2080 parse_partial_symbols (objfile, section_offsets)
2081 struct objfile *objfile;
2082 struct section_offsets *section_offsets;
2084 const bfd_size_type external_sym_size = debug_swap->external_sym_size;
2085 const bfd_size_type external_rfd_size = debug_swap->external_rfd_size;
2086 const bfd_size_type external_ext_size = debug_swap->external_ext_size;
2087 void (* const swap_ext_in) PARAMS ((bfd *, PTR, EXTR *))
2088 = debug_swap->swap_ext_in;
2089 void (* const swap_sym_in) PARAMS ((bfd *, PTR, SYMR *))
2090 = debug_swap->swap_sym_in;
2091 void (* const swap_rfd_in) PARAMS ((bfd *, PTR, RFDT *))
2092 = debug_swap->swap_rfd_in;
2094 HDRR *hdr = &debug_info->symbolic_header;
2095 /* Running pointers */
2100 register EXTR *ext_in;
2103 struct partial_symtab *pst;
2105 int past_first_source_file = 0;
2107 /* List of current psymtab's include files */
2108 char **psymtab_include_list;
2109 int includes_allocated;
2112 struct pst_map *fdr_to_pst;
2113 /* Index within current psymtab dependency list */
2114 struct partial_symtab **dependency_list;
2115 int dependencies_used, dependencies_allocated;
2116 struct cleanup *old_chain;
2118 enum language prev_language;
2119 asection *text_sect;
2120 int relocatable = 0;
2122 /* Irix 5.2 shared libraries have a fh->adr field of zero, but
2123 the shared libraries are prelinked at a high memory address.
2124 We have to adjust the start address of the object file for this case,
2125 by setting it to the start address of the first procedure in the file.
2126 But we should do no adjustments if we are debugging a .o file, where
2127 the text section (and fh->adr) really starts at zero. */
2128 text_sect = bfd_get_section_by_name (cur_bfd, ".text");
2129 if (text_sect != NULL
2130 && (bfd_get_section_flags (cur_bfd, text_sect) & SEC_RELOC))
2133 extern_tab = (EXTR *) obstack_alloc (&objfile->psymbol_obstack,
2134 sizeof (EXTR) * hdr->iextMax);
2136 includes_allocated = 30;
2138 psymtab_include_list = (char **) alloca (includes_allocated *
2140 next_symbol_text_func = mdebug_next_symbol_text;
2142 dependencies_allocated = 30;
2143 dependencies_used = 0;
2145 (struct partial_symtab **) alloca (dependencies_allocated *
2146 sizeof (struct partial_symtab *));
2148 last_source_file = NULL;
2153 * Only parse the Local and External symbols, and the Relative FDR.
2154 * Fixup enough of the loader symtab to be able to use it.
2155 * Allocate space only for the file's portions we need to
2160 max_glevel = MIN_GLEVEL;
2162 /* Allocate the map FDR -> PST.
2163 Minor hack: -O3 images might claim some global data belongs
2164 to FDR -1. We`ll go along with that */
2165 fdr_to_pst = (struct pst_map *) xzalloc ((hdr->ifdMax + 1) * sizeof *fdr_to_pst);
2166 old_chain = make_cleanup (free, fdr_to_pst);
2169 struct partial_symtab *pst = new_psymtab ("", objfile, section_offsets);
2170 fdr_to_pst[-1].pst = pst;
2174 /* Allocate the global pending list. */
2176 ((struct mdebug_pending **)
2177 obstack_alloc (&objfile->psymbol_obstack,
2178 hdr->ifdMax * sizeof (struct mdebug_pending *)));
2179 memset ((PTR) pending_list, 0,
2180 hdr->ifdMax * sizeof (struct mdebug_pending *));
2182 /* Pass 0 over external syms: swap them in. */
2183 ext_block = (EXTR *) xmalloc (hdr->iextMax * sizeof (EXTR));
2184 make_cleanup (free, ext_block);
2186 ext_out = (char *) debug_info->external_ext;
2187 ext_out_end = ext_out + hdr->iextMax * external_ext_size;
2189 for (; ext_out < ext_out_end; ext_out += external_ext_size, ext_in++)
2190 (*swap_ext_in) (cur_bfd, ext_out, ext_in);
2192 /* Pass 1 over external syms: Presize and partition the list */
2194 ext_in_end = ext_in + hdr->iextMax;
2195 for (; ext_in < ext_in_end; ext_in++)
2197 /* See calls to complain below. */
2198 if (ext_in->ifd >= -1
2199 && ext_in->ifd < hdr->ifdMax
2200 && ext_in->asym.iss >= 0
2201 && ext_in->asym.iss < hdr->issExtMax)
2202 fdr_to_pst[ext_in->ifd].n_globals++;
2205 /* Pass 1.5 over files: partition out global symbol space */
2207 for (f_idx = -1; f_idx < hdr->ifdMax; f_idx++)
2209 fdr_to_pst[f_idx].globals_offset = s_idx;
2210 s_idx += fdr_to_pst[f_idx].n_globals;
2211 fdr_to_pst[f_idx].n_globals = 0;
2214 /* Pass 2 over external syms: fill in external symbols */
2216 ext_in_end = ext_in + hdr->iextMax;
2217 for (; ext_in < ext_in_end; ext_in++)
2219 enum minimal_symbol_type ms_type = mst_text;
2220 CORE_ADDR svalue = ext_in->asym.value;
2222 /* The Irix 5 native tools seem to sometimes generate bogus
2223 external symbols. */
2224 if (ext_in->ifd < -1 || ext_in->ifd >= hdr->ifdMax)
2226 complain (&bad_ext_ifd_complaint, ext_in->ifd, hdr->ifdMax);
2229 if (ext_in->asym.iss < 0 || ext_in->asym.iss >= hdr->issExtMax)
2231 complain (&bad_ext_iss_complaint, ext_in->asym.iss,
2236 extern_tab[fdr_to_pst[ext_in->ifd].globals_offset
2237 + fdr_to_pst[ext_in->ifd].n_globals++] = *ext_in;
2239 if (ext_in->asym.sc == scUndefined || ext_in->asym.sc == scNil)
2242 name = debug_info->ssext + ext_in->asym.iss;
2243 switch (ext_in->asym.st)
2246 svalue += ANOFFSET (section_offsets, SECT_OFF_TEXT);
2249 ms_type = mst_file_text;
2250 svalue += ANOFFSET (section_offsets, SECT_OFF_TEXT);
2253 if (ext_in->asym.sc == scCommon || ext_in->asym.sc == scSCommon)
2255 /* The value of a common symbol is its size, not its address.
2259 else if (ext_in->asym.sc == scData
2260 || ext_in->asym.sc == scSData
2261 || ext_in->asym.sc == scRData
2262 || ext_in->asym.sc == scPData
2263 || ext_in->asym.sc == scXData)
2266 svalue += ANOFFSET (section_offsets, SECT_OFF_DATA);
2271 svalue += ANOFFSET (section_offsets, SECT_OFF_BSS);
2275 if (ext_in->asym.sc == scAbs)
2277 else if (ext_in->asym.sc == scText
2278 || ext_in->asym.sc == scInit
2279 || ext_in->asym.sc == scFini)
2281 ms_type = mst_file_text;
2282 svalue += ANOFFSET (section_offsets, SECT_OFF_TEXT);
2284 else if (ext_in->asym.sc == scData
2285 || ext_in->asym.sc == scSData
2286 || ext_in->asym.sc == scRData
2287 || ext_in->asym.sc == scPData
2288 || ext_in->asym.sc == scXData)
2290 ms_type = mst_file_data;
2291 svalue += ANOFFSET (section_offsets, SECT_OFF_DATA);
2295 ms_type = mst_file_bss;
2296 svalue += ANOFFSET (section_offsets, SECT_OFF_BSS);
2300 /* The alpha has the section start addresses in stLocal symbols
2301 whose name starts with a `.'. Skip those but complain for all
2302 other stLocal symbols. */
2307 ms_type = mst_unknown;
2308 complain (&unknown_ext_complaint, name);
2310 prim_record_minimal_symbol (name, svalue, ms_type, objfile);
2313 /* Pass 3 over files, over local syms: fill in static symbols */
2314 for (f_idx = 0; f_idx < hdr->ifdMax; f_idx++)
2316 struct partial_symtab *save_pst;
2320 cur_fdr = fh = debug_info->fdr + f_idx;
2324 fdr_to_pst[f_idx].pst = NULL;
2328 /* Determine the start address for this object file from the
2329 file header and relocate it, except for Irix 5.2 zero fh->adr. */
2333 if (relocatable || textlow != 0)
2334 textlow += ANOFFSET (section_offsets, SECT_OFF_TEXT);
2338 pst = start_psymtab_common (objfile, section_offsets,
2341 objfile->global_psymbols.next,
2342 objfile->static_psymbols.next);
2343 pst->read_symtab_private = ((char *)
2344 obstack_alloc (&objfile->psymbol_obstack,
2345 sizeof (struct symloc)));
2346 memset ((PTR) pst->read_symtab_private, 0, sizeof (struct symloc));
2349 FDR_IDX (pst) = f_idx;
2350 CUR_BFD (pst) = cur_bfd;
2351 DEBUG_SWAP (pst) = debug_swap;
2352 DEBUG_INFO (pst) = debug_info;
2353 PENDING_LIST (pst) = pending_list;
2355 /* The way to turn this into a symtab is to call... */
2356 pst->read_symtab = mdebug_psymtab_to_symtab;
2358 /* Set up language for the pst.
2359 The language from the FDR is used if it is unambigious (e.g. cfront
2360 with native cc and g++ will set the language to C).
2361 Otherwise we have to deduce the language from the filename.
2362 Native ecoff has every header file in a separate FDR, so
2363 deduce_language_from_filename will return language_unknown for
2364 a header file, which is not what we want.
2365 But the FDRs for the header files are after the FDR for the source
2366 file, so we can assign the language of the source file to the
2367 following header files. Then we save the language in the private
2368 pst data so that we can reuse it when building symtabs. */
2369 prev_language = psymtab_language;
2373 case langCplusplusV2:
2374 psymtab_language = language_cplus;
2377 psymtab_language = deduce_language_from_filename (fdr_name (fh));
2380 if (psymtab_language == language_unknown)
2381 psymtab_language = prev_language;
2382 PST_PRIVATE (pst)->pst_language = psymtab_language;
2384 pst->texthigh = pst->textlow;
2386 /* For stabs-in-ecoff files, the second symbol must be @stab.
2387 This symbol is emitted by mips-tfile to signal that the
2388 current object file uses encapsulated stabs instead of mips
2389 ecoff for local symbols. (It is the second symbol because
2390 the first symbol is the stFile used to signal the start of a
2392 processing_gcc_compilation = 0;
2395 (*swap_sym_in) (cur_bfd,
2396 ((char *) debug_info->external_sym
2397 + (fh->isymBase + 1) * external_sym_size),
2399 if (STREQ (debug_info->ss + fh->issBase + sh.iss, stabs_symbol))
2400 processing_gcc_compilation = 2;
2403 if (processing_gcc_compilation != 0)
2405 for (cur_sdx = 2; cur_sdx < fh->csym; cur_sdx++)
2410 (*swap_sym_in) (cur_bfd,
2411 (((char *) debug_info->external_sym)
2412 + (fh->isymBase + cur_sdx) * external_sym_size),
2414 type_code = ECOFF_UNMARK_STAB (sh.index);
2415 if (!ECOFF_IS_STAB (&sh))
2417 if (sh.st == stProc || sh.st == stStaticProc)
2422 sh.value += ANOFFSET (section_offsets, SECT_OFF_TEXT);
2423 if (sh.st == stStaticProc)
2425 namestring = debug_info->ss + fh->issBase + sh.iss;
2426 prim_record_minimal_symbol_and_info (namestring,
2433 procaddr = sh.value;
2435 isym = AUX_GET_ISYM (fh->fBigendian,
2436 (debug_info->external_aux
2439 (*swap_sym_in) (cur_bfd,
2440 ((char *) debug_info->external_sym
2441 + ((fh->isymBase + isym - 1)
2442 * external_sym_size)),
2446 long high = procaddr + sh.value;
2448 /* Kludge for Irix 5.2 zero fh->adr. */
2450 && (pst->textlow == 0 || procaddr < pst->textlow))
2451 pst->textlow = procaddr;
2452 if (high > pst->texthigh)
2453 pst->texthigh = high;
2456 else if (sh.st == stStatic)
2470 namestring = debug_info->ss + fh->issBase + sh.iss;
2471 sh.value += ANOFFSET (section_offsets, SECT_OFF_DATA);
2472 prim_record_minimal_symbol_and_info (namestring,
2481 namestring = debug_info->ss + fh->issBase + sh.iss;
2482 sh.value += ANOFFSET (section_offsets, SECT_OFF_BSS);
2483 prim_record_minimal_symbol_and_info (namestring,
2494 #define SET_NAMESTRING() \
2495 namestring = debug_info->ss + fh->issBase + sh.iss
2496 #define CUR_SYMBOL_TYPE type_code
2497 #define CUR_SYMBOL_VALUE sh.value
2498 #define START_PSYMTAB(ofile,secoff,fname,low,symoff,global_syms,static_syms)\
2500 #define END_PSYMTAB(pst,ilist,ninc,c_off,c_text,dep_list,n_deps) (void)0
2501 #define HANDLE_RBRAC(val) \
2502 if ((val) > save_pst->texthigh) save_pst->texthigh = (val);
2503 #include "partial-stab.h"
2508 for (cur_sdx = 0; cur_sdx < fh->csym;)
2511 enum address_class class;
2513 (*swap_sym_in) (cur_bfd,
2514 ((char *) debug_info->external_sym
2515 + ((fh->isymBase + cur_sdx)
2516 * external_sym_size)),
2519 if (ECOFF_IS_STAB (&sh))
2525 /* Non absolute static symbols go into the minimal table. */
2526 if (sh.sc == scUndefined || sh.sc == scNil
2527 || (sh.index == indexNil
2528 && (sh.st != stStatic || sh.sc == scAbs)))
2530 /* FIXME, premature? */
2535 name = debug_info->ss + fh->issBase + sh.iss;
2540 /* The value of a stEnd symbol is the displacement from the
2541 corresponding start symbol value, do not relocate it. */
2543 sh.value += ANOFFSET (section_offsets, SECT_OFF_TEXT);
2550 sh.value += ANOFFSET (section_offsets, SECT_OFF_DATA);
2554 sh.value += ANOFFSET (section_offsets, SECT_OFF_BSS);
2565 prim_record_minimal_symbol_and_info (name, sh.value,
2566 mst_file_text, NULL,
2567 SECT_OFF_TEXT, objfile);
2572 /* Usually there is a local and a global stProc symbol
2573 for a function. This means that the function name
2574 has already been entered into the mimimal symbol table
2575 while processing the global symbols in pass 2 above.
2576 One notable exception is the PROGRAM name from
2577 f77 compiled executables, it is only put out as
2578 local stProc symbol, and a global MAIN__ stProc symbol
2579 points to it. It doesn't matter though, as gdb is
2580 still able to find the PROGRAM name via the partial
2581 symbol table, and the MAIN__ symbol via the minimal
2583 if (sh.st == stProc)
2584 ADD_PSYMBOL_TO_LIST (name, strlen (name),
2585 VAR_NAMESPACE, LOC_BLOCK,
2586 objfile->global_psymbols,
2587 sh.value, psymtab_language, objfile);
2589 ADD_PSYMBOL_TO_LIST (name, strlen (name),
2590 VAR_NAMESPACE, LOC_BLOCK,
2591 objfile->static_psymbols,
2592 sh.value, psymtab_language, objfile);
2594 /* Skip over procedure to next one. */
2595 if (sh.index >= hdr->iauxMax)
2597 /* Should not happen, but does when cross-compiling
2598 with the MIPS compiler. FIXME -- pull later. */
2599 complain (&index_complaint, name);
2600 new_sdx = cur_sdx + 1; /* Don't skip at all */
2603 new_sdx = AUX_GET_ISYM (fh->fBigendian,
2604 (debug_info->external_aux
2607 procaddr = sh.value;
2609 if (new_sdx <= cur_sdx)
2611 /* This should not happen either... FIXME. */
2612 complain (&aux_index_complaint, name);
2613 new_sdx = cur_sdx + 1; /* Don't skip backward */
2617 (*swap_sym_in) (cur_bfd,
2618 ((char *) debug_info->external_sym
2619 + ((fh->isymBase + cur_sdx - 1)
2620 * external_sym_size)),
2625 /* Kludge for Irix 5.2 zero fh->adr. */
2627 && (pst->textlow == 0 || procaddr < pst->textlow))
2628 pst->textlow = procaddr;
2630 high = procaddr + sh.value;
2631 if (high > pst->texthigh)
2632 pst->texthigh = high;
2635 case stStatic: /* Variable */
2640 || sh.sc == scXData)
2641 prim_record_minimal_symbol_and_info (name, sh.value,
2642 mst_file_data, NULL,
2646 prim_record_minimal_symbol_and_info (name, sh.value,
2653 case stIndirect:/* Irix5 forward declaration */
2654 /* Skip forward declarations from Irix5 cc */
2657 case stTypedef:/* Typedef */
2658 /* Skip typedefs for forward declarations and opaque
2659 structs from alpha and mips cc. */
2660 if (sh.iss == 0 || has_opaque_xref (fh, &sh))
2662 class = LOC_TYPEDEF;
2665 case stConstant: /* Constant decl */
2672 case stBlock: /* { }, str, un, enum*/
2673 /* Do not create a partial symbol for cc unnamed aggregates
2674 and gcc empty aggregates. */
2675 if ((sh.sc == scInfo
2676 || sh.sc == scCommon || sh.sc == scSCommon)
2678 && sh.index != cur_sdx + 2)
2680 ADD_PSYMBOL_TO_LIST (name, strlen (name),
2681 STRUCT_NAMESPACE, LOC_TYPEDEF,
2682 objfile->static_psymbols,
2684 psymtab_language, objfile);
2686 handle_psymbol_enumerators (objfile, fh, sh.st);
2688 /* Skip over the block */
2690 if (new_sdx <= cur_sdx)
2692 /* This happens with the Ultrix kernel. */
2693 complain (&block_index_complaint, name);
2694 new_sdx = cur_sdx + 1; /* Don't skip backward */
2699 case stFile: /* File headers */
2700 case stLabel: /* Labels */
2701 case stEnd: /* Ends of files */
2704 case stLocal: /* Local variables */
2705 /* Normally these are skipped because we skip over
2706 all blocks we see. However, these can occur
2707 as visible symbols in a .h file that contains code. */
2711 /* Both complaints are valid: one gives symbol name,
2712 the other the offending symbol type. */
2713 complain (&unknown_sym_complaint, name);
2714 complain (&unknown_st_complaint, sh.st);
2718 /* Use this gdb symbol */
2719 ADD_PSYMBOL_TO_LIST (name, strlen (name),
2720 VAR_NAMESPACE, class,
2721 objfile->static_psymbols, sh.value,
2722 psymtab_language, objfile);
2724 cur_sdx++; /* Go to next file symbol */
2727 /* Now do enter the external symbols. */
2728 ext_ptr = &extern_tab[fdr_to_pst[f_idx].globals_offset];
2729 cur_sdx = fdr_to_pst[f_idx].n_globals;
2730 PST_PRIVATE (save_pst)->extern_count = cur_sdx;
2731 PST_PRIVATE (save_pst)->extern_tab = ext_ptr;
2732 for (; --cur_sdx >= 0; ext_ptr++)
2734 enum address_class class;
2739 if (ext_ptr->ifd != f_idx)
2741 psh = &ext_ptr->asym;
2743 /* Do not add undefined symbols to the partial symbol table. */
2744 if (psh->sc == scUndefined || psh->sc == scNil)
2747 svalue = psh->value;
2751 svalue += ANOFFSET (section_offsets, SECT_OFF_TEXT);
2758 svalue += ANOFFSET (section_offsets, SECT_OFF_DATA);
2762 svalue += ANOFFSET (section_offsets, SECT_OFF_BSS);
2769 /* These are generated for static symbols in .o files,
2774 /* External procedure symbols have been entered
2775 into the minimal symbol table in pass 2 above.
2776 Ignore them, as parse_external will ignore them too. */
2782 complain (&unknown_ext_complaint,
2783 debug_info->ssext + psh->iss);
2784 /* Fall through, pretend it's global. */
2786 /* Global common symbols are resolved by the runtime loader,
2788 if (psh->sc == scCommon || psh->sc == scSCommon)
2794 name = debug_info->ssext + psh->iss;
2795 ADD_PSYMBOL_ADDR_TO_LIST (name, strlen (name),
2796 VAR_NAMESPACE, class,
2797 objfile->global_psymbols,
2799 psymtab_language, objfile);
2803 /* Link pst to FDR. end_psymtab returns NULL if the psymtab was
2804 empty and put on the free list. */
2805 fdr_to_pst[f_idx].pst = end_psymtab (save_pst,
2806 psymtab_include_list, includes_used,
2807 -1, save_pst->texthigh,
2808 dependency_list, dependencies_used);
2809 if (objfile->ei.entry_point >= save_pst->textlow &&
2810 objfile->ei.entry_point < save_pst->texthigh)
2812 objfile->ei.entry_file_lowpc = save_pst->textlow;
2813 objfile->ei.entry_file_highpc = save_pst->texthigh;
2816 /* The objfile has its functions reordered if this partial symbol
2817 table overlaps any other partial symbol table.
2818 We cannot assume a reordered objfile if a partial symbol table
2819 is contained within another partial symbol table, as partial symbol
2820 tables for include files with executable code are contained
2821 within the partial symbol table for the including source file,
2822 and we do not want to flag the objfile reordered for these cases.
2824 This strategy works well for Irix-5.2 shared libraries, but we
2825 might have to use a more elaborate (and slower) algorithm for
2827 save_pst = fdr_to_pst[f_idx].pst;
2828 if (save_pst != NULL
2829 && save_pst->textlow != 0
2830 && !(objfile->flags & OBJF_REORDERED))
2832 ALL_OBJFILE_PSYMTABS (objfile, pst)
2835 && save_pst->textlow >= pst->textlow
2836 && save_pst->textlow < pst->texthigh
2837 && save_pst->texthigh > pst->texthigh)
2839 objfile->flags |= OBJF_REORDERED;
2846 /* Now scan the FDRs for dependencies */
2847 for (f_idx = 0; f_idx < hdr->ifdMax; f_idx++)
2849 fh = f_idx + debug_info->fdr;
2850 pst = fdr_to_pst[f_idx].pst;
2852 if (pst == (struct partial_symtab *)NULL)
2855 /* This should catch stabs-in-ecoff. */
2859 /* Skip the first file indirect entry as it is a self dependency
2860 for source files or a reverse .h -> .c dependency for header files. */
2861 pst->number_of_dependencies = 0;
2863 ((struct partial_symtab **)
2864 obstack_alloc (&objfile->psymbol_obstack,
2866 * sizeof (struct partial_symtab *))));
2867 for (s_idx = 1; s_idx < fh->crfd; s_idx++)
2871 (*swap_rfd_in) (cur_bfd,
2872 ((char *) debug_info->external_rfd
2873 + (fh->rfdBase + s_idx) * external_rfd_size),
2875 if (rh < 0 || rh >= hdr->ifdMax)
2877 complain (&bad_file_number_complaint, rh);
2881 /* Skip self dependencies of header files. */
2885 /* Do not add to dependeny list if psymtab was empty. */
2886 if (fdr_to_pst[rh].pst == (struct partial_symtab *)NULL)
2888 pst->dependencies[pst->number_of_dependencies++] = fdr_to_pst[rh].pst;
2892 /* Remove the dummy psymtab created for -O3 images above, if it is
2893 still empty, to enable the detection of stripped executables. */
2894 if (objfile->psymtabs->next == NULL
2895 && objfile->psymtabs->number_of_dependencies == 0
2896 && objfile->psymtabs->n_global_syms == 0
2897 && objfile->psymtabs->n_static_syms == 0)
2898 objfile->psymtabs = NULL;
2899 do_cleanups (old_chain);
2902 /* If the current psymbol has an enumerated type, we need to add
2903 all the the enum constants to the partial symbol table. */
2906 handle_psymbol_enumerators (objfile, fh, stype)
2907 struct objfile *objfile;
2911 const bfd_size_type external_sym_size = debug_swap->external_sym_size;
2912 void (* const swap_sym_in) PARAMS ((bfd *, PTR, SYMR *))
2913 = debug_swap->swap_sym_in;
2914 char *ext_sym = ((char *) debug_info->external_sym
2915 + ((fh->isymBase + cur_sdx + 1) * external_sym_size));
2925 /* It is an enumerated type if the next symbol entry is a stMember
2926 and its auxiliary index is indexNil or its auxiliary entry
2927 is a plain btNil or btVoid. */
2928 (*swap_sym_in) (cur_bfd, ext_sym, &sh);
2929 if (sh.st != stMember)
2932 if (sh.index == indexNil)
2934 (*debug_swap->swap_tir_in) (fh->fBigendian,
2935 &(debug_info->external_aux
2936 + fh->iauxBase + sh.index)->a_ti,
2938 if ((tir.bt != btNil && tir.bt != btVoid) || tir.tq0 != tqNil)
2950 (*swap_sym_in) (cur_bfd, ext_sym, &sh);
2951 if (sh.st != stMember)
2953 name = debug_info->ss + cur_fdr->issBase + sh.iss;
2955 /* Note that the value doesn't matter for enum constants
2956 in psymtabs, just in symtabs. */
2957 ADD_PSYMBOL_TO_LIST (name, strlen (name),
2958 VAR_NAMESPACE, LOC_CONST,
2959 objfile->static_psymbols, 0,
2960 psymtab_language, objfile);
2961 ext_sym += external_sym_size;
2966 mdebug_next_symbol_text ()
2971 (*debug_swap->swap_sym_in) (cur_bfd,
2972 ((char *) debug_info->external_sym
2973 + ((cur_fdr->isymBase + cur_sdx)
2974 * debug_swap->external_sym_size)),
2976 return debug_info->ss + cur_fdr->issBase + sh.iss;
2979 /* Ancillary function to psymtab_to_symtab(). Does all the work
2980 for turning the partial symtab PST into a symtab, recurring
2981 first on all dependent psymtabs. The argument FILENAME is
2982 only passed so we can see in debug stack traces what file
2985 This function has a split personality, based on whether the
2986 symbol table contains ordinary ecoff symbols, or stabs-in-ecoff.
2987 The flow of control and even the memory allocation differs. FIXME. */
2990 psymtab_to_symtab_1 (pst, filename)
2991 struct partial_symtab *pst;
2994 bfd_size_type external_sym_size;
2995 bfd_size_type external_pdr_size;
2996 void (*swap_sym_in) PARAMS ((bfd *, PTR, SYMR *));
2997 void (*swap_pdr_in) PARAMS ((bfd *, PTR, PDR *));
3001 struct linetable *lines;
3007 /* Read in all partial symbtabs on which this one is dependent.
3008 NOTE that we do have circular dependencies, sigh. We solved
3009 that by setting pst->readin before this point. */
3011 for (i = 0; i < pst->number_of_dependencies; i++)
3012 if (!pst->dependencies[i]->readin)
3014 /* Inform about additional files to be read in. */
3017 fputs_filtered (" ", gdb_stdout);
3019 fputs_filtered ("and ", gdb_stdout);
3021 printf_filtered ("%s...",
3022 pst->dependencies[i]->filename);
3023 wrap_here (""); /* Flush output */
3024 gdb_flush (gdb_stdout);
3026 /* We only pass the filename for debug purposes */
3027 psymtab_to_symtab_1 (pst->dependencies[i],
3028 pst->dependencies[i]->filename);
3031 /* Do nothing if this is a dummy psymtab. */
3033 if (pst->n_global_syms == 0 && pst->n_static_syms == 0
3034 && pst->textlow == 0 && pst->texthigh == 0)
3037 /* Now read the symbols for this symtab */
3039 cur_bfd = CUR_BFD (pst);
3040 debug_swap = DEBUG_SWAP (pst);
3041 debug_info = DEBUG_INFO (pst);
3042 pending_list = PENDING_LIST (pst);
3043 external_sym_size = debug_swap->external_sym_size;
3044 external_pdr_size = debug_swap->external_pdr_size;
3045 swap_sym_in = debug_swap->swap_sym_in;
3046 swap_pdr_in = debug_swap->swap_pdr_in;
3047 current_objfile = pst->objfile;
3048 cur_fd = FDR_IDX (pst);
3049 fh = ((cur_fd == -1)
3051 : debug_info->fdr + cur_fd);
3054 /* See comment in parse_partial_symbols about the @stabs sentinel. */
3055 processing_gcc_compilation = 0;
3056 if (fh != (FDR *) NULL && fh->csym >= 2)
3060 (*swap_sym_in) (cur_bfd,
3061 ((char *) debug_info->external_sym
3062 + (fh->isymBase + 1) * external_sym_size),
3064 if (STREQ (debug_info->ss + fh->issBase + sh.iss,
3067 /* We indicate that this is a GCC compilation so that certain
3068 features will be enabled in stabsread/dbxread. */
3069 processing_gcc_compilation = 2;
3073 if (processing_gcc_compilation != 0)
3078 unsigned long first_off = 0;
3080 /* This symbol table contains stabs-in-ecoff entries. */
3082 /* Parse local symbols first */
3084 if (fh->csym <= 2) /* FIXME, this blows psymtab->symtab ptr */
3086 current_objfile = NULL;
3089 for (cur_sdx = 2; cur_sdx < fh->csym; cur_sdx++)
3095 (*swap_sym_in) (cur_bfd,
3096 (((char *) debug_info->external_sym)
3097 + (fh->isymBase + cur_sdx) * external_sym_size),
3099 name = debug_info->ss + fh->issBase + sh.iss;
3101 if (ECOFF_IS_STAB (&sh))
3103 int type_code = ECOFF_UNMARK_STAB (sh.index);
3105 /* We should never get non N_STAB symbols here, but they
3106 should be harmless, so keep process_one_symbol from
3107 complaining about them. */
3108 if (type_code & N_STAB)
3110 process_one_symbol (type_code, 0, valu, name,
3111 pst->section_offsets, pst->objfile);
3113 if (type_code == N_FUN)
3115 /* Make up special symbol to contain
3116 procedure specific info */
3117 struct mips_extra_func_info *e =
3118 ((struct mips_extra_func_info *)
3119 obstack_alloc (¤t_objfile->symbol_obstack,
3120 sizeof (struct mips_extra_func_info)));
3121 struct symbol *s = new_symbol (MIPS_EFI_SYMBOL_NAME);
3122 SYMBOL_NAMESPACE (s) = LABEL_NAMESPACE;
3123 SYMBOL_CLASS (s) = LOC_CONST;
3124 SYMBOL_TYPE (s) = builtin_type_void;
3125 SYMBOL_VALUE (s) = (long) e;
3126 e->pdr.framereg = -1;
3127 add_symbol_to_list (s, &local_symbols);
3130 else if (sh.st == stLabel)
3132 if (sh.index == indexNil)
3134 /* This is what the gcc2_compiled and __gnu_compiled_*
3135 show up as. So don't complain. */
3139 /* Handle encoded stab line number. */
3140 record_line (current_subfile, sh.index, valu);
3142 else if (sh.st == stProc || sh.st == stStaticProc
3143 || sh.st == stStatic || sh.st == stEnd)
3144 /* These are generated by gcc-2.x, do not complain */
3147 complain (&stab_unknown_complaint, name);
3149 st = end_symtab (pst->texthigh, 0, 0, pst->objfile, SECT_OFF_TEXT);
3152 /* Sort the symbol table now, we are done adding symbols to it.
3153 We must do this before parse_procedure calls lookup_symbol. */
3154 sort_symtab_syms (st);
3156 /* There used to be a call to sort_blocks here, but this should not
3157 be necessary for stabs symtabs. And as sort_blocks modifies the
3158 start address of the GLOBAL_BLOCK to the FIRST_LOCAL_BLOCK,
3159 it did the wrong thing if the first procedure in a file was
3160 generated via asm statements. */
3162 /* Fill in procedure info next. */
3164 pdr_ptr = ((char *) debug_info->external_pdr
3165 + fh->ipdFirst * external_pdr_size);
3166 pdr_end = pdr_ptr + fh->cpd * external_pdr_size;
3167 for (; pdr_ptr < pdr_end; pdr_ptr += external_pdr_size)
3171 (*swap_pdr_in) (cur_bfd, pdr_ptr, &pr);
3177 parse_procedure (&pr, st, first_off, pst);
3182 /* This symbol table contains ordinary ecoff entries. */
3184 /* FIXME: doesn't use pst->section_offsets. */
3190 /* How many symbols will we need */
3191 /* FIXME, this does not count enum values. */
3192 f_max = pst->n_global_syms + pst->n_static_syms;
3196 st = new_symtab ("unknown", f_max, 0, pst->objfile);
3200 f_max += fh->csym + fh->cpd;
3201 maxlines = 2 * fh->cline;
3202 st = new_symtab (pst->filename, 2 * f_max, maxlines, pst->objfile);
3204 /* The proper language was already determined when building
3205 the psymtab, use it. */
3206 st->language = PST_PRIVATE (pst)->pst_language;
3209 psymtab_language = st->language;
3211 lines = LINETABLE (st);
3213 /* Get a new lexical context */
3215 push_parse_stack ();
3216 top_stack->cur_st = st;
3217 top_stack->cur_block = BLOCKVECTOR_BLOCK (BLOCKVECTOR (st),
3219 BLOCK_START (top_stack->cur_block) = pst->textlow;
3220 BLOCK_END (top_stack->cur_block) = 0;
3221 top_stack->blocktype = stFile;
3222 top_stack->maxsyms = 2 * f_max;
3223 top_stack->cur_type = 0;
3224 top_stack->procadr = 0;
3225 top_stack->numargs = 0;
3232 /* Parse local symbols first */
3233 sym_ptr = ((char *) debug_info->external_sym
3234 + fh->isymBase * external_sym_size);
3235 sym_end = sym_ptr + fh->csym * external_sym_size;
3236 while (sym_ptr < sym_end)
3241 (*swap_sym_in) (cur_bfd, sym_ptr, &sh);
3242 c = parse_symbol (&sh,
3243 debug_info->external_aux + fh->iauxBase,
3244 sym_ptr, fh->fBigendian, pst->section_offsets);
3245 sym_ptr += c * external_sym_size;
3248 /* Linenumbers. At the end, check if we can save memory.
3249 parse_lines has to look ahead an arbitrary number of PDR
3250 structures, so we swap them all first. */
3254 struct cleanup *old_chain;
3260 pr_block = (PDR *) xmalloc (fh->cpd * sizeof (PDR));
3262 old_chain = make_cleanup (free, pr_block);
3264 pdr_ptr = ((char *) debug_info->external_pdr
3265 + fh->ipdFirst * external_pdr_size);
3266 pdr_end = pdr_ptr + fh->cpd * external_pdr_size;
3270 pdr_ptr += external_pdr_size, pdr_in++)
3271 (*swap_pdr_in) (cur_bfd, pdr_ptr, pdr_in);
3273 parse_lines (fh, pr_block, lines, maxlines, pst);
3274 if (lines->nitems < fh->cline)
3275 lines = shrink_linetable (lines);
3277 /* Fill in procedure info next. */
3279 pdr_in_end = pdr_in + fh->cpd;
3280 for (; pdr_in < pdr_in_end; pdr_in++)
3281 parse_procedure (pdr_in, 0, pr_block->adr, pst);
3283 do_cleanups (old_chain);
3287 LINETABLE (st) = lines;
3289 /* .. and our share of externals.
3290 XXX use the global list to speed up things here. how?
3291 FIXME, Maybe quit once we have found the right number of ext's? */
3292 top_stack->cur_st = st;
3293 top_stack->cur_block = BLOCKVECTOR_BLOCK (BLOCKVECTOR (top_stack->cur_st),
3295 top_stack->blocktype = stFile;
3297 = (debug_info->symbolic_header.isymMax
3298 + debug_info->symbolic_header.ipdMax
3299 + debug_info->symbolic_header.iextMax);
3301 ext_ptr = PST_PRIVATE (pst)->extern_tab;
3302 for (i = PST_PRIVATE (pst)->extern_count; --i >= 0; ext_ptr++)
3303 parse_external (ext_ptr, fh->fBigendian, pst->section_offsets);
3305 /* If there are undefined symbols, tell the user.
3306 The alpha has an undefined symbol for every symbol that is
3307 from a shared library, so tell the user only if verbose is on. */
3308 if (info_verbose && n_undef_symbols)
3310 printf_filtered ("File %s contains %d unresolved references:",
3311 st->filename, n_undef_symbols);
3312 printf_filtered ("\n\t%4d variables\n\t%4d procedures\n\t%4d labels\n",
3313 n_undef_vars, n_undef_procs, n_undef_labels);
3314 n_undef_symbols = n_undef_labels = n_undef_vars = n_undef_procs = 0;
3321 /* Sort the symbol table now, we are done adding symbols to it.*/
3322 sort_symtab_syms (st);
3327 /* Now link the psymtab and the symtab. */
3330 current_objfile = NULL;
3333 /* Ancillary parsing procedures. */
3335 /* Return 1 if the symbol pointed to by SH has a cross reference
3336 to an opaque aggregate type, else 0. */
3339 has_opaque_xref (fh, sh)
3348 if (sh->index == indexNil)
3351 ax = debug_info->external_aux + fh->iauxBase + sh->index;
3352 (*debug_swap->swap_tir_in) (fh->fBigendian, &ax->a_ti, &tir);
3353 if (tir.bt != btStruct && tir.bt != btUnion && tir.bt != btEnum)
3357 (*debug_swap->swap_rndx_in) (fh->fBigendian, &ax->a_rndx, rn);
3358 if (rn->rfd == 0xfff)
3359 rf = AUX_GET_ISYM (fh->fBigendian, ax + 1);
3367 /* Lookup the type at relative index RN. Return it in TPP
3368 if found and in any event come up with its name PNAME.
3369 BIGEND says whether aux symbols are big-endian or not (from fh->fBigendian).
3370 Return value says how many aux symbols we ate. */
3373 cross_ref (fd, ax, tpp, type_code, pname, bigend, sym_name)
3377 enum type_code type_code; /* Use to alloc new type if none is found. */
3389 struct mdebug_pending *pend;
3391 *tpp = (struct type *)NULL;
3393 (*debug_swap->swap_rndx_in) (bigend, &ax->a_rndx, rn);
3395 /* Escape index means 'the next one' */
3396 if (rn->rfd == 0xfff)
3399 rf = AUX_GET_ISYM (bigend, ax + 1);
3406 /* mips cc uses a rf of -1 for opaque struct definitions.
3407 Set TYPE_FLAG_STUB for these types so that check_stub_type will
3408 resolve them if the struct gets defined in another compilation unit. */
3411 *pname = "<undefined>";
3412 *tpp = init_type (type_code, 0, 0, (char *) NULL, current_objfile);
3413 TYPE_FLAGS (*tpp) |= TYPE_FLAG_STUB;
3417 /* mips cc uses an escaped rn->index of 0 for struct return types
3418 of procedures that were compiled without -g. These will always remain
3420 if (rn->rfd == 0xfff && rn->index == 0)
3422 *pname = "<undefined>";
3426 /* Find the relative file descriptor and the symbol in it. */
3427 fh = get_rfd (fd, rf);
3428 xref_fd = fh - debug_info->fdr;
3430 if (rn->index >= fh->csym)
3432 /* File indirect entry is corrupt. */
3433 *pname = "<illegal>";
3434 complain (&bad_rfd_entry_complaint,
3435 sym_name, xref_fd, rn->index);
3439 /* If we have processed this symbol then we left a forwarding
3440 pointer to the type in the pending list. If not, we`ll put
3441 it in a list of pending types, to be processed later when
3442 the file will be. In any event, we collect the name for the
3445 esh = ((char *) debug_info->external_sym
3446 + ((fh->isymBase + rn->index)
3447 * debug_swap->external_sym_size));
3448 (*debug_swap->swap_sym_in) (cur_bfd, esh, &sh);
3450 /* Make sure that this type of cross reference can be handled. */
3451 if ((sh.sc != scInfo
3452 || (sh.st != stBlock && sh.st != stTypedef && sh.st != stIndirect
3453 && sh.st != stStruct && sh.st != stUnion
3454 && sh.st != stEnum))
3455 && (sh.st != stBlock || (sh.sc != scCommon && sh.sc != scSCommon)))
3457 /* File indirect entry is corrupt. */
3458 *pname = "<illegal>";
3459 complain (&bad_rfd_entry_complaint,
3460 sym_name, xref_fd, rn->index);
3464 *pname = debug_info->ss + fh->issBase + sh.iss;
3466 pend = is_pending_symbol (fh, esh);
3471 /* We have not yet seen this type. */
3473 if ((sh.iss == 0 && sh.st == stTypedef) || sh.st == stIndirect)
3477 /* alpha cc puts out a stTypedef with a sh.iss of zero for
3479 a) forward declarations of structs/unions/enums which are not
3480 defined in this compilation unit.
3481 For these the type will be void. This is a bad design decision
3482 as cross referencing across compilation units is impossible
3483 due to the missing name.
3484 b) forward declarations of structs/unions/enums which are defined
3485 later in this file or in another file in the same compilation
3486 unit. Irix5 cc uses a stIndirect symbol for this.
3487 Simply cross reference those again to get the true type.
3488 The forward references are not entered in the pending list and
3489 in the symbol table. */
3491 (*debug_swap->swap_tir_in) (bigend,
3492 &(debug_info->external_aux
3493 + fh->iauxBase + sh.index)->a_ti,
3495 if (tir.tq0 != tqNil)
3496 complain (&illegal_forward_tq0_complaint, sym_name);
3500 *tpp = init_type (type_code, 0, 0, (char *) NULL,
3502 *pname = "<undefined>";
3509 (debug_info->external_aux
3510 + fh->iauxBase + sh.index + 1),
3511 tpp, type_code, pname,
3512 fh->fBigendian, sym_name);
3516 complain (&illegal_forward_bt_complaint, tir.bt, sym_name);
3517 *tpp = init_type (type_code, 0, 0, (char *) NULL,
3523 else if (sh.st == stTypedef)
3525 /* Parse the type for a normal typedef. This might recursively call
3526 cross_ref till we get a non typedef'ed type.
3527 FIXME: This is not correct behaviour, but gdb currently
3528 cannot handle typedefs without type copying. But type copying is
3529 impossible as we might have mutual forward references between
3530 two files and the copied type would not get filled in when
3531 we later parse its definition. */
3532 *tpp = parse_type (xref_fd,
3533 debug_info->external_aux + fh->iauxBase,
3537 debug_info->ss + fh->issBase + sh.iss);
3541 /* Cross reference to a struct/union/enum which is defined
3542 in another file in the same compilation unit but that file
3543 has not been parsed yet.
3544 Initialize the type only, it will be filled in when
3545 it's definition is parsed. */
3546 *tpp = init_type (type_code, 0, 0, (char *) NULL, current_objfile);
3548 add_pending (fh, esh, *tpp);
3551 /* We used one auxent normally, two if we got a "next one" rf. */
3556 /* Quick&dirty lookup procedure, to avoid the MI ones that require
3557 keeping the symtab sorted */
3559 static struct symbol *
3560 mylookup_symbol (name, block, namespace, class)
3562 register struct block *block;
3563 enum namespace namespace;
3564 enum address_class class;
3566 register int bot, top, inc;
3567 register struct symbol *sym;
3570 top = BLOCK_NSYMS (block);
3574 sym = BLOCK_SYM (block, bot);
3575 if (SYMBOL_NAME (sym)[0] == inc
3576 && SYMBOL_NAMESPACE (sym) == namespace
3577 && SYMBOL_CLASS (sym) == class
3578 && strcmp (SYMBOL_NAME (sym), name) == 0)
3582 block = BLOCK_SUPERBLOCK (block);
3584 return mylookup_symbol (name, block, namespace, class);
3589 /* Add a new symbol S to a block B.
3590 Infrequently, we will need to reallocate the block to make it bigger.
3591 We only detect this case when adding to top_stack->cur_block, since
3592 that's the only time we know how big the block is. FIXME. */
3599 int nsyms = BLOCK_NSYMS (b)++;
3600 struct block *origb;
3601 struct parse_stack *stackp;
3603 if (b == top_stack->cur_block &&
3604 nsyms >= top_stack->maxsyms)
3606 complain (&block_overflow_complaint, SYMBOL_NAME (s));
3607 /* In this case shrink_block is actually grow_block, since
3608 BLOCK_NSYMS(b) is larger than its current size. */
3610 b = shrink_block (top_stack->cur_block, top_stack->cur_st);
3612 /* Now run through the stack replacing pointers to the
3613 original block. shrink_block has already done this
3614 for the blockvector and BLOCK_FUNCTION. */
3615 for (stackp = top_stack; stackp; stackp = stackp->next)
3617 if (stackp->cur_block == origb)
3619 stackp->cur_block = b;
3620 stackp->maxsyms = BLOCK_NSYMS (b);
3624 BLOCK_SYM (b, nsyms) = s;
3627 /* Add a new block B to a symtab S */
3634 struct blockvector *bv = BLOCKVECTOR (s);
3636 bv = (struct blockvector *) xrealloc ((PTR) bv,
3637 (sizeof (struct blockvector)
3638 + BLOCKVECTOR_NBLOCKS (bv)
3639 * sizeof (bv->block)));
3640 if (bv != BLOCKVECTOR (s))
3641 BLOCKVECTOR (s) = bv;
3643 BLOCKVECTOR_BLOCK (bv, BLOCKVECTOR_NBLOCKS (bv)++) = b;
3646 /* Add a new linenumber entry (LINENO,ADR) to a linevector LT.
3647 MIPS' linenumber encoding might need more than one byte
3648 to describe it, LAST is used to detect these continuation lines.
3650 Combining lines with the same line number seems like a bad idea.
3651 E.g: There could be a line number entry with the same line number after the
3652 prologue and GDB should not ignore it (this is a better way to find
3653 a prologue than mips_skip_prologue).
3654 But due to the compressed line table format there are line number entries
3655 for the same line which are needed to bridge the gap to the next
3656 line number entry. These entries have a bogus address info with them
3657 and we are unable to tell them from intended duplicate line number
3659 This is another reason why -ggdb debugging format is preferable. */
3662 add_line (lt, lineno, adr, last)
3663 struct linetable *lt;
3668 /* DEC c89 sometimes produces zero linenos which confuse gdb.
3669 Change them to something sensible. */
3673 last = -2; /* make sure we record first line */
3675 if (last == lineno) /* skip continuation lines */
3678 lt->item[lt->nitems].line = lineno;
3679 lt->item[lt->nitems++].pc = adr << 2;
3683 /* Sorting and reordering procedures */
3685 /* Blocks with a smaller low bound should come first */
3688 compare_blocks (arg1, arg2)
3692 register int addr_diff;
3693 struct block **b1 = (struct block **) arg1;
3694 struct block **b2 = (struct block **) arg2;
3696 addr_diff = (BLOCK_START ((*b1))) - (BLOCK_START ((*b2)));
3698 return (BLOCK_END ((*b2))) - (BLOCK_END ((*b1)));
3702 /* Sort the blocks of a symtab S.
3703 Reorder the blocks in the blockvector by code-address,
3704 as required by some MI search routines */
3710 struct blockvector *bv = BLOCKVECTOR (s);
3712 if (BLOCKVECTOR_NBLOCKS (bv) <= 2)
3715 if (BLOCK_END (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK)) == 0)
3716 BLOCK_START (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK)) = 0;
3717 if (BLOCK_END (BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK)) == 0)
3718 BLOCK_START (BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK)) = 0;
3722 * This is very unfortunate: normally all functions are compiled in
3723 * the order they are found, but if the file is compiled -O3 things
3724 * are very different. It would be nice to find a reliable test
3725 * to detect -O3 images in advance.
3727 if (BLOCKVECTOR_NBLOCKS (bv) > 3)
3728 qsort (&BLOCKVECTOR_BLOCK (bv, FIRST_LOCAL_BLOCK),
3729 BLOCKVECTOR_NBLOCKS (bv) - FIRST_LOCAL_BLOCK,
3730 sizeof (struct block *),
3734 register CORE_ADDR high = 0;
3735 register int i, j = BLOCKVECTOR_NBLOCKS (bv);
3737 for (i = FIRST_LOCAL_BLOCK; i < j; i++)
3738 if (high < BLOCK_END (BLOCKVECTOR_BLOCK (bv, i)))
3739 high = BLOCK_END (BLOCKVECTOR_BLOCK (bv, i));
3740 BLOCK_END (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK)) = high;
3743 BLOCK_START (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK)) =
3744 BLOCK_START (BLOCKVECTOR_BLOCK (bv, FIRST_LOCAL_BLOCK));
3746 BLOCK_START (BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK)) =
3747 BLOCK_START (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK));
3748 BLOCK_END (BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK)) =
3749 BLOCK_END (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK));
3753 /* Constructor/restructor/destructor procedures */
3755 /* Allocate a new symtab for NAME. Needs an estimate of how many symbols
3756 MAXSYMS and linenumbers MAXLINES we'll put in it */
3758 static struct symtab *
3759 new_symtab (name, maxsyms, maxlines, objfile)
3763 struct objfile *objfile;
3765 struct symtab *s = allocate_symtab (name, objfile);
3767 LINETABLE (s) = new_linetable (maxlines);
3769 /* All symtabs must have at least two blocks */
3770 BLOCKVECTOR (s) = new_bvect (2);
3771 BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), GLOBAL_BLOCK) = new_block (maxsyms);
3772 BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), STATIC_BLOCK) = new_block (maxsyms);
3773 BLOCK_SUPERBLOCK (BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), STATIC_BLOCK)) =
3774 BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), GLOBAL_BLOCK);
3776 s->free_code = free_linetable;
3781 /* Allocate a new partial_symtab NAME */
3783 static struct partial_symtab *
3784 new_psymtab (name, objfile, section_offsets)
3786 struct objfile *objfile;
3787 struct section_offsets *section_offsets;
3789 struct partial_symtab *psymtab;
3791 psymtab = allocate_psymtab (name, objfile);
3792 psymtab->section_offsets = section_offsets;
3794 /* Keep a backpointer to the file's symbols */
3796 psymtab->read_symtab_private = ((char *)
3797 obstack_alloc (&objfile->psymbol_obstack,
3798 sizeof (struct symloc)));
3799 memset ((PTR) psymtab->read_symtab_private, 0, sizeof (struct symloc));
3800 CUR_BFD (psymtab) = cur_bfd;
3801 DEBUG_SWAP (psymtab) = debug_swap;
3802 DEBUG_INFO (psymtab) = debug_info;
3803 PENDING_LIST (psymtab) = pending_list;
3805 /* The way to turn this into a symtab is to call... */
3806 psymtab->read_symtab = mdebug_psymtab_to_symtab;
3811 /* Allocate a linetable array of the given SIZE. Since the struct
3812 already includes one item, we subtract one when calculating the
3813 proper size to allocate. */
3815 static struct linetable *
3816 new_linetable (size)
3819 struct linetable *l;
3821 size = (size - 1) * sizeof (l->item) + sizeof (struct linetable);
3822 l = (struct linetable *) xmalloc (size);
3827 /* Oops, too big. Shrink it. This was important with the 2.4 linetables,
3828 I am not so sure about the 3.4 ones.
3830 Since the struct linetable already includes one item, we subtract one when
3831 calculating the proper size to allocate. */
3833 static struct linetable *
3834 shrink_linetable (lt)
3835 struct linetable *lt;
3838 return (struct linetable *) xrealloc ((PTR) lt,
3839 (sizeof (struct linetable)
3841 * sizeof (lt->item))));
3844 /* Allocate and zero a new blockvector of NBLOCKS blocks. */
3846 static struct blockvector *
3850 struct blockvector *bv;
3853 size = sizeof (struct blockvector) + nblocks * sizeof (struct block *);
3854 bv = (struct blockvector *) xzalloc (size);
3856 BLOCKVECTOR_NBLOCKS (bv) = nblocks;
3861 /* Allocate and zero a new block of MAXSYMS symbols */
3863 static struct block *
3867 int size = sizeof (struct block) + (maxsyms - 1) * sizeof (struct symbol *);
3869 return (struct block *) xzalloc (size);
3872 /* Ooops, too big. Shrink block B in symtab S to its minimal size.
3873 Shrink_block can also be used by add_symbol to grow a block. */
3875 static struct block *
3881 struct blockvector *bv = BLOCKVECTOR (s);
3884 /* Just reallocate it and fix references to the old one */
3886 new = (struct block *) xrealloc ((PTR) b,
3887 (sizeof (struct block)
3888 + ((BLOCK_NSYMS (b) - 1)
3889 * sizeof (struct symbol *))));
3891 /* Should chase pointers to old one. Fortunately, that`s just
3892 the block`s function and inferior blocks */
3893 if (BLOCK_FUNCTION (new) && SYMBOL_BLOCK_VALUE (BLOCK_FUNCTION (new)) == b)
3894 SYMBOL_BLOCK_VALUE (BLOCK_FUNCTION (new)) = new;
3895 for (i = 0; i < BLOCKVECTOR_NBLOCKS (bv); i++)
3896 if (BLOCKVECTOR_BLOCK (bv, i) == b)
3897 BLOCKVECTOR_BLOCK (bv, i) = new;
3898 else if (BLOCK_SUPERBLOCK (BLOCKVECTOR_BLOCK (bv, i)) == b)
3899 BLOCK_SUPERBLOCK (BLOCKVECTOR_BLOCK (bv, i)) = new;
3903 /* Create a new symbol with printname NAME */
3905 static struct symbol *
3909 struct symbol *s = ((struct symbol *)
3910 obstack_alloc (¤t_objfile->symbol_obstack,
3911 sizeof (struct symbol)));
3913 memset ((PTR) s, 0, sizeof (*s));
3914 SYMBOL_NAME (s) = name;
3915 SYMBOL_LANGUAGE (s) = psymtab_language;
3916 SYMBOL_INIT_DEMANGLED_NAME (s, ¤t_objfile->symbol_obstack);
3920 /* Create a new type with printname NAME */
3922 static struct type *
3928 t = alloc_type (current_objfile);
3929 TYPE_NAME (t) = name;
3930 TYPE_CPLUS_SPECIFIC (t) = (struct cplus_struct_type *) &cplus_struct_default;
3934 /* Read ECOFF debugging information from a BFD section. This is
3935 called from elfread.c. It parses the section into a
3936 ecoff_debug_info struct, and then lets the rest of the file handle
3940 elfmdebug_build_psymtabs (objfile, swap, sec, section_offsets)
3941 struct objfile *objfile;
3942 const struct ecoff_debug_swap *swap;
3944 struct section_offsets *section_offsets;
3946 bfd *abfd = objfile->obfd;
3947 struct ecoff_debug_info *info;
3949 info = ((struct ecoff_debug_info *)
3950 obstack_alloc (&objfile->psymbol_obstack,
3951 sizeof (struct ecoff_debug_info)));
3953 if (!(*swap->read_debug_info) (abfd, sec, info))
3954 error ("Error reading ECOFF debugging information: %s",
3955 bfd_errmsg (bfd_get_error ()));
3957 mdebug_build_psymtabs (objfile, swap, info, section_offsets);
3961 /* Things used for calling functions in the inferior.
3962 These functions are exported to our companion
3963 mips-tdep.c file and are here because they play
3964 with the symbol-table explicitly. */
3966 /* Sigtramp: make sure we have all the necessary information
3967 about the signal trampoline code. Since the official code
3968 from MIPS does not do so, we make up that information ourselves.
3969 If they fix the library (unlikely) this code will neutralize itself. */
3971 /* FIXME: This function is called only by mips-tdep.c. It needs to be
3972 here because it calls functions defined in this file, but perhaps
3973 this could be handled in a better way. */
3980 struct block *b, *b0 = NULL;
3982 sigtramp_address = -1;
3984 /* We have to handle the following cases here:
3985 a) The Mips library has a sigtramp label within sigvec.
3986 b) Irix has a _sigtramp which we want to use, but it also has sigvec. */
3987 s = lookup_symbol ("sigvec", 0, VAR_NAMESPACE, 0, NULL);
3990 b0 = SYMBOL_BLOCK_VALUE (s);
3991 s = lookup_symbol ("sigtramp", b0, VAR_NAMESPACE, 0, NULL);
3995 /* No sigvec or no sigtramp inside sigvec, try _sigtramp. */
3996 s = lookup_symbol ("_sigtramp", 0, VAR_NAMESPACE, 0, NULL);
3999 /* But maybe this program uses its own version of sigvec */
4003 /* Did we or MIPSco fix the library ? */
4004 if (SYMBOL_CLASS (s) == LOC_BLOCK)
4006 sigtramp_address = BLOCK_START (SYMBOL_BLOCK_VALUE (s));
4007 sigtramp_end = BLOCK_END (SYMBOL_BLOCK_VALUE (s));
4011 sigtramp_address = SYMBOL_VALUE (s);
4012 sigtramp_end = sigtramp_address + 0x88; /* black magic */
4014 /* But what symtab does it live in ? */
4015 st = find_pc_symtab (SYMBOL_VALUE (s));
4018 * Ok, there goes the fix: turn it into a procedure, with all the
4019 * needed info. Note we make it a nested procedure of sigvec,
4020 * which is the way the (assembly) code is actually written.
4022 SYMBOL_NAMESPACE (s) = VAR_NAMESPACE;
4023 SYMBOL_CLASS (s) = LOC_BLOCK;
4024 SYMBOL_TYPE (s) = init_type (TYPE_CODE_FUNC, 4, 0, (char *) NULL,
4026 TYPE_TARGET_TYPE (SYMBOL_TYPE (s)) = builtin_type_void;
4028 /* Need a block to allocate MIPS_EFI_SYMBOL_NAME in */
4030 SYMBOL_BLOCK_VALUE (s) = b;
4031 BLOCK_START (b) = sigtramp_address;
4032 BLOCK_END (b) = sigtramp_end;
4033 BLOCK_FUNCTION (b) = s;
4034 BLOCK_SUPERBLOCK (b) = BLOCK_SUPERBLOCK (b0);
4038 /* Make a MIPS_EFI_SYMBOL_NAME entry for it */
4040 struct mips_extra_func_info *e =
4041 ((struct mips_extra_func_info *)
4042 xzalloc (sizeof (struct mips_extra_func_info)));
4044 e->numargs = 0; /* the kernel thinks otherwise */
4045 e->pdr.frameoffset = 32;
4046 e->pdr.framereg = SP_REGNUM;
4047 /* Note that setting pcreg is no longer strictly necessary as
4048 mips_frame_saved_pc is now aware of signal handler frames. */
4049 e->pdr.pcreg = PC_REGNUM;
4050 e->pdr.regmask = -2;
4051 /* Offset to saved r31, in the sigtramp case the saved registers
4052 are above the frame in the sigcontext.
4053 We have 4 alignment bytes, 12 bytes for onstack, mask and pc,
4054 32 * 4 bytes for the general registers, 12 bytes for mdhi, mdlo, ownedfp
4055 and 32 * 4 bytes for the floating point registers. */
4056 e->pdr.regoffset = 4 + 12 + 31 * 4;
4057 e->pdr.fregmask = -1;
4058 /* Offset to saved f30 (first saved *double* register). */
4059 e->pdr.fregoffset = 4 + 12 + 32 * 4 + 12 + 30 * 4;
4060 e->pdr.isym = (long) s;
4061 e->pdr.adr = sigtramp_address;
4063 current_objfile = st->objfile; /* Keep new_symbol happy */
4064 s = new_symbol (MIPS_EFI_SYMBOL_NAME);
4065 SYMBOL_VALUE (s) = (long) e;
4066 SYMBOL_NAMESPACE (s) = LABEL_NAMESPACE;
4067 SYMBOL_CLASS (s) = LOC_CONST;
4068 SYMBOL_TYPE (s) = builtin_type_void;
4069 current_objfile = NULL;
4072 BLOCK_SYM (b, BLOCK_NSYMS (b)++) = s;
4076 _initialize_mdebugread ()
4078 /* Missing basic types */
4080 /* Is a "string" the way btString means it the same as TYPE_CODE_STRING?
4082 mdebug_type_string =
4083 init_type (TYPE_CODE_STRING,
4084 TARGET_CHAR_BIT / TARGET_CHAR_BIT,
4086 (struct objfile *) NULL);
4088 /* We use TYPE_CODE_INT to print these as integers. Does this do any
4089 good? Would we be better off with TYPE_CODE_ERROR? Should
4090 TYPE_CODE_ERROR print things in hex if it knows the size? */
4091 mdebug_type_fixed_dec =
4092 init_type (TYPE_CODE_INT,
4093 TARGET_INT_BIT / TARGET_CHAR_BIT,
4095 (struct objfile *) NULL);
4097 mdebug_type_float_dec =
4098 init_type (TYPE_CODE_ERROR,
4099 TARGET_DOUBLE_BIT / TARGET_CHAR_BIT,
4100 0, "floating decimal",
4101 (struct objfile *) NULL);