1 /* Read a symbol table in ECOFF format (Third-Eye).
2 Copyright 1986, 1987, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996
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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, 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"
54 /* These are needed if the tm.h file does not contain the necessary
55 mips specific definitions. */
57 #ifndef MIPS_EFI_SYMBOL_NAME
58 #define MIPS_EFI_SYMBOL_NAME "__GDB_EFI_INFO__"
60 #include "coff/symconst.h"
61 typedef struct mips_extra_func_info {
64 } *mips_extra_func_info_t;
71 #include <sys/types.h>
74 #include <sys/param.h>
77 #include "gdb_string.h"
79 #include "gdb-stabs.h"
83 #include "coff/ecoff.h" /* COFF-like aspects of ecoff files */
85 #include "libaout.h" /* Private BFD a.out information. */
86 #include "aout/aout64.h"
87 #include "aout/stab_gnu.h" /* STABS information */
89 #include "expression.h"
90 #include "language.h" /* Needed inside partial-stab.h */
92 /* Provide a default mapping from a ecoff register number to a gdb REGNUM. */
93 #ifndef ECOFF_REG_TO_REGNUM
94 #define ECOFF_REG_TO_REGNUM(num) (num)
97 /* We put a pointer to this structure in the read_symtab_private field
102 /* Index of the FDR that this psymtab represents. */
104 /* The BFD that the psymtab was created from. */
106 const struct ecoff_debug_swap *debug_swap;
107 struct ecoff_debug_info *debug_info;
108 struct mdebug_pending **pending_list;
109 /* Pointer to external symbols for this file. */
111 /* Size of extern_tab. */
113 enum language pst_language;
116 #define PST_PRIVATE(p) ((struct symloc *)(p)->read_symtab_private)
117 #define FDR_IDX(p) (PST_PRIVATE(p)->fdr_idx)
118 #define CUR_BFD(p) (PST_PRIVATE(p)->cur_bfd)
119 #define DEBUG_SWAP(p) (PST_PRIVATE(p)->debug_swap)
120 #define DEBUG_INFO(p) (PST_PRIVATE(p)->debug_info)
121 #define PENDING_LIST(p) (PST_PRIVATE(p)->pending_list)
123 /* Things we import explicitly from other modules */
125 extern int info_verbose;
127 /* Various complaints about symbol reading that don't abort the process */
129 static struct complaint bad_file_number_complaint =
130 {"bad file number %d", 0, 0};
132 static struct complaint index_complaint =
133 {"bad aux index at symbol %s", 0, 0};
135 static struct complaint aux_index_complaint =
136 {"bad proc end in aux found from symbol %s", 0, 0};
138 static struct complaint block_index_complaint =
139 {"bad aux index at block symbol %s", 0, 0};
141 static struct complaint unknown_ext_complaint =
142 {"unknown external symbol %s", 0, 0};
144 static struct complaint unknown_sym_complaint =
145 {"unknown local symbol %s", 0, 0};
147 static struct complaint unknown_st_complaint =
148 {"with type %d", 0, 0};
150 static struct complaint block_overflow_complaint =
151 {"block containing %s overfilled", 0, 0};
153 static struct complaint basic_type_complaint =
154 {"cannot map ECOFF basic type 0x%x for %s", 0, 0};
156 static struct complaint unknown_type_qual_complaint =
157 {"unknown type qualifier 0x%x", 0, 0};
159 static struct complaint array_index_type_complaint =
160 {"illegal array index type for %s, assuming int", 0, 0};
162 static struct complaint bad_tag_guess_complaint =
163 {"guessed tag type of %s incorrectly", 0, 0};
165 static struct complaint block_member_complaint =
166 {"declaration block contains unhandled symbol type %d", 0, 0};
168 static struct complaint stEnd_complaint =
169 {"stEnd with storage class %d not handled", 0, 0};
171 static struct complaint unknown_mdebug_symtype_complaint =
172 {"unknown symbol type 0x%x", 0, 0};
174 static struct complaint stab_unknown_complaint =
175 {"unknown stabs symbol %s", 0, 0};
177 static struct complaint pdr_for_nonsymbol_complaint =
178 {"PDR for %s, but no symbol", 0, 0};
180 static struct complaint pdr_static_symbol_complaint =
181 {"can't handle PDR for static proc at 0x%lx", 0, 0};
183 static struct complaint bad_setjmp_pdr_complaint =
184 {"fixing bad setjmp PDR from libc", 0, 0};
186 static struct complaint bad_fbitfield_complaint =
187 {"can't handle TIR fBitfield for %s", 0, 0};
189 static struct complaint bad_continued_complaint =
190 {"illegal TIR continued for %s", 0, 0};
192 static struct complaint bad_rfd_entry_complaint =
193 {"bad rfd entry for %s: file %d, index %d", 0, 0};
195 static struct complaint unexpected_type_code_complaint =
196 {"unexpected type code for %s", 0, 0};
198 static struct complaint unable_to_cross_ref_complaint =
199 {"unable to cross ref btTypedef for %s", 0, 0};
201 static struct complaint bad_indirect_xref_complaint =
202 {"unable to cross ref btIndirect for %s", 0, 0};
204 static struct complaint illegal_forward_tq0_complaint =
205 {"illegal tq0 in forward typedef for %s", 0, 0};
207 static struct complaint illegal_forward_bt_complaint =
208 {"illegal bt %d in forward typedef for %s", 0, 0};
210 static struct complaint bad_linetable_guess_complaint =
211 {"guessed size of linetable for %s incorrectly", 0, 0};
213 static struct complaint bad_ext_ifd_complaint =
214 {"bad ifd for external symbol: %d (max %d)", 0, 0};
216 static struct complaint bad_ext_iss_complaint =
217 {"bad iss for external symbol: %ld (max %ld)", 0, 0};
219 /* Macros and extra defs */
221 /* Puns: hard to find whether -g was used and how */
223 #define MIN_GLEVEL GLEVEL_0
224 #define compare_glevel(a,b) \
225 (((a) == GLEVEL_3) ? ((b) < GLEVEL_3) : \
226 ((b) == GLEVEL_3) ? -1 : (int)((b) - (a)))
228 /* Things that really are local to this module */
230 /* Remember what we deduced to be the source language of this psymtab. */
232 static enum language psymtab_language = language_unknown;
238 /* How to parse debugging information for CUR_BFD. */
240 static const struct ecoff_debug_swap *debug_swap;
242 /* Pointers to debugging information for CUR_BFD. */
244 static struct ecoff_debug_info *debug_info;
246 /* Pointer to current file decriptor record, and its index */
251 /* Index of current symbol */
255 /* Note how much "debuggable" this image is. We would like
256 to see at least one FDR with full symbols */
261 /* When examining .o files, report on undefined symbols */
263 static int n_undef_symbols, n_undef_labels, n_undef_vars, n_undef_procs;
265 /* Pseudo symbol to use when putting stabs into the symbol table. */
267 static char stabs_symbol[] = STABS_SYMBOL;
269 /* Types corresponding to mdebug format bt* basic types. */
271 static struct type *mdebug_type_void;
272 static struct type *mdebug_type_char;
273 static struct type *mdebug_type_short;
274 static struct type *mdebug_type_int_32;
275 #define mdebug_type_int mdebug_type_int_32
276 static struct type *mdebug_type_int_64;
277 static struct type *mdebug_type_long_32;
278 static struct type *mdebug_type_long_64;
279 static struct type *mdebug_type_long_long_64;
280 static struct type *mdebug_type_unsigned_char;
281 static struct type *mdebug_type_unsigned_short;
282 static struct type *mdebug_type_unsigned_int_32;
283 static struct type *mdebug_type_unsigned_int_64;
284 static struct type *mdebug_type_unsigned_long_32;
285 static struct type *mdebug_type_unsigned_long_64;
286 static struct type *mdebug_type_unsigned_long_long_64;
287 static struct type *mdebug_type_adr_32;
288 static struct type *mdebug_type_adr_64;
289 static struct type *mdebug_type_float;
290 static struct type *mdebug_type_double;
291 static struct type *mdebug_type_complex;
292 static struct type *mdebug_type_double_complex;
293 static struct type *mdebug_type_fixed_dec;
294 static struct type *mdebug_type_float_dec;
295 static struct type *mdebug_type_string;
297 /* Types for symbols from files compiled without debugging info. */
299 static struct type *nodebug_func_symbol_type;
300 static struct type *nodebug_var_symbol_type;
302 /* Nonzero if we have seen ecoff debugging info for a file. */
304 static int found_ecoff_debugging_info;
306 /* Forward declarations */
309 upgrade_type PARAMS ((int, struct type **, int, union aux_ext *, int, char *));
312 parse_partial_symbols PARAMS ((struct objfile *,
313 struct section_offsets *));
316 *get_rfd PARAMS ((int, int));
319 has_opaque_xref PARAMS ((FDR *, SYMR *));
322 cross_ref PARAMS ((int, union aux_ext *, struct type **, enum type_code,
323 char **, int, char *));
325 static struct symbol *
326 new_symbol PARAMS ((char *));
329 new_type PARAMS ((char *));
331 static struct block *
332 new_block PARAMS ((int));
334 static struct symtab *
335 new_symtab PARAMS ((char *, int, int, struct objfile *));
337 static struct linetable *
338 new_linetable PARAMS ((int));
340 static struct blockvector *
341 new_bvect PARAMS ((int));
344 parse_symbol PARAMS ((SYMR *, union aux_ext *, char *, int, struct section_offsets *));
347 parse_type PARAMS ((int, union aux_ext *, unsigned int, int *, int, char *));
349 static struct symbol *
350 mylookup_symbol PARAMS ((char *, struct block *, namespace_enum,
351 enum address_class));
353 static struct block *
354 shrink_block PARAMS ((struct block *, struct symtab *));
357 xzalloc PARAMS ((unsigned int));
360 sort_blocks PARAMS ((struct symtab *));
363 compare_blocks PARAMS ((const void *, const void *));
365 static struct partial_symtab *
366 new_psymtab PARAMS ((char *, struct objfile *, struct section_offsets *));
369 psymtab_to_symtab_1 PARAMS ((struct partial_symtab *, char *));
372 add_block PARAMS ((struct block *, struct symtab *));
375 add_symbol PARAMS ((struct symbol *, struct block *));
378 add_line PARAMS ((struct linetable *, int, CORE_ADDR, int));
380 static struct linetable *
381 shrink_linetable PARAMS ((struct linetable *));
384 handle_psymbol_enumerators PARAMS ((struct objfile *, FDR *, int, CORE_ADDR));
387 mdebug_next_symbol_text PARAMS ((struct objfile *));
389 /* Address bounds for the signal trampoline in inferior, if any */
391 CORE_ADDR sigtramp_address, sigtramp_end;
393 /* Allocate zeroed memory */
399 PTR p = xmalloc (size);
405 /* Exported procedure: Builds a symtab from the PST partial one.
406 Restores the environment in effect when PST was created, delegates
407 most of the work to an ancillary procedure, and sorts
408 and reorders the symtab list at the end */
411 mdebug_psymtab_to_symtab (pst)
412 struct partial_symtab *pst;
420 printf_filtered ("Reading in symbols for %s...", pst->filename);
421 gdb_flush (gdb_stdout);
424 next_symbol_text_func = mdebug_next_symbol_text;
426 psymtab_to_symtab_1 (pst, pst->filename);
428 /* Match with global symbols. This only needs to be done once,
429 after all of the symtabs and dependencies have been read in. */
430 scan_file_globals (pst->objfile);
433 printf_filtered ("done.\n");
436 /* File-level interface functions */
438 /* Find a file descriptor given its index RF relative to a file CF */
448 fdrs = debug_info->fdr;
450 /* Object files do not have the RFD table, all refs are absolute */
453 (*debug_swap->swap_rfd_in) (cur_bfd,
454 ((char *) debug_info->external_rfd
456 * debug_swap->external_rfd_size)),
461 /* Return a safer print NAME for a file descriptor */
468 return "<stripped file>";
471 return debug_info->ss + f->issBase + f->rss;
475 /* Read in and parse the symtab of the file OBJFILE. Symbols from
476 different sections are relocated via the SECTION_OFFSETS. */
479 mdebug_build_psymtabs (objfile, swap, info, section_offsets)
480 struct objfile *objfile;
481 const struct ecoff_debug_swap *swap;
482 struct ecoff_debug_info *info;
483 struct section_offsets *section_offsets;
485 cur_bfd = objfile->obfd;
489 /* Make sure all the FDR information is swapped in. */
490 if (info->fdr == (FDR *) NULL)
496 info->fdr = (FDR *) obstack_alloc (&objfile->psymbol_obstack,
497 (info->symbolic_header.ifdMax
499 fdr_src = info->external_fdr;
501 + info->symbolic_header.ifdMax * swap->external_fdr_size);
503 for (; fdr_src < fdr_end; fdr_src += swap->external_fdr_size, fdr_ptr++)
504 (*swap->swap_fdr_in) (objfile->obfd, fdr_src, fdr_ptr);
507 parse_partial_symbols (objfile, section_offsets);
510 /* Check to make sure file was compiled with -g. If not, warn the
511 user of this limitation. */
512 if (compare_glevel (max_glevel, GLEVEL_2) < 0)
514 if (max_gdbinfo == 0)
515 printf_unfiltered ("\n%s not compiled with -g, debugging support is limited.\n",
517 printf_unfiltered ("You should compile with -g2 or -g3 for best debugging support.\n");
518 gdb_flush (gdb_stdout);
523 /* Local utilities */
525 /* Map of FDR indexes to partial symtabs */
529 struct partial_symtab *pst; /* the psymtab proper */
530 long n_globals; /* exported globals (external symbols) */
531 long globals_offset; /* cumulative */
535 /* Utility stack, used to nest procedures and blocks properly.
536 It is a doubly linked list, to avoid too many alloc/free.
537 Since we might need it quite a few times it is NOT deallocated
540 static struct parse_stack
542 struct parse_stack *next, *prev;
543 struct symtab *cur_st; /* Current symtab. */
544 struct block *cur_block; /* Block in it. */
546 /* What are we parsing. stFile, or stBlock are for files and
547 blocks. stProc or stStaticProc means we have seen the start of a
548 procedure, but not the start of the block within in. When we see
549 the start of that block, we change it to stNil, without pushing a
550 new block, i.e. stNil means both a procedure and a block. */
554 int maxsyms; /* Max symbols in this block. */
555 struct type *cur_type; /* Type we parse fields for. */
556 int cur_field; /* Field number in cur_type. */
557 CORE_ADDR procadr; /* Start addres of this procedure */
558 int numargs; /* Its argument count */
561 *top_stack; /* Top stack ptr */
564 /* Enter a new lexical context */
569 struct parse_stack *new;
571 /* Reuse frames if possible */
572 if (top_stack && top_stack->prev)
573 new = top_stack->prev;
575 new = (struct parse_stack *) xzalloc (sizeof (struct parse_stack));
576 /* Initialize new frame with previous content */
579 register struct parse_stack *prev = new->prev;
582 top_stack->prev = new;
584 new->next = top_stack;
589 /* Exit a lexical context */
597 top_stack = top_stack->next;
601 /* Cross-references might be to things we haven't looked at
602 yet, e.g. type references. To avoid too many type
603 duplications we keep a quick fixup table, an array
604 of lists of references indexed by file descriptor */
606 struct mdebug_pending
608 struct mdebug_pending *next; /* link */
609 char *s; /* the unswapped symbol */
610 struct type *t; /* its partial type descriptor */
614 /* The pending information is kept for an entire object file, and used
615 to be in the sym_private field. I took it out when I split
616 mdebugread from mipsread, because this might not be the only type
617 of symbols read from an object file. Instead, we allocate the
618 pending information table when we create the partial symbols, and
619 we store a pointer to the single table in each psymtab. */
621 static struct mdebug_pending **pending_list;
623 /* Check whether we already saw symbol SH in file FH */
625 static struct mdebug_pending *
626 is_pending_symbol (fh, sh)
630 int f_idx = fh - debug_info->fdr;
631 register struct mdebug_pending *p;
633 /* Linear search is ok, list is typically no more than 10 deep */
634 for (p = pending_list[f_idx]; p; p = p->next)
640 /* Add a new symbol SH of type T */
643 add_pending (fh, sh, t)
648 int f_idx = fh - debug_info->fdr;
649 struct mdebug_pending *p = is_pending_symbol (fh, sh);
651 /* Make sure we do not make duplicates */
654 p = ((struct mdebug_pending *)
655 obstack_alloc (¤t_objfile->psymbol_obstack,
656 sizeof (struct mdebug_pending)));
659 p->next = pending_list[f_idx];
660 pending_list[f_idx] = p;
665 /* Parsing Routines proper. */
667 /* Parse a single symbol. Mostly just make up a GDB symbol for it.
668 For blocks, procedures and types we open a new lexical context.
669 This is basically just a big switch on the symbol's type. Argument
670 AX is the base pointer of aux symbols for this file (fh->iauxBase).
671 EXT_SH points to the unswapped symbol, which is needed for struct,
672 union, etc., types; it is NULL for an EXTR. BIGEND says whether
673 aux symbols are big-endian or little-endian. Return count of
674 SYMR's handled (normally one). */
677 parse_symbol (sh, ax, ext_sh, bigend, section_offsets)
682 struct section_offsets *section_offsets;
684 const bfd_size_type external_sym_size = debug_swap->external_sym_size;
685 void (* const swap_sym_in) PARAMS ((bfd *, PTR, SYMR *)) =
686 debug_swap->swap_sym_in;
690 struct mdebug_pending *pend;
694 enum address_class class;
696 long svalue = sh->value;
699 if (ext_sh == (char *) NULL)
700 name = debug_info->ssext + sh->iss;
702 name = debug_info->ss + cur_fdr->issBase + sh->iss;
707 /* Do not relocate relative values.
708 The value of a stEnd symbol is the displacement from the
709 corresponding start symbol value.
710 The value of a stBlock symbol is the displacement from the
711 procedure address. */
712 if (sh->st != stEnd && sh->st != stBlock)
713 sh->value += ANOFFSET (section_offsets, SECT_OFF_TEXT);
720 sh->value += ANOFFSET (section_offsets, SECT_OFF_DATA);
724 sh->value += ANOFFSET (section_offsets, SECT_OFF_BSS);
733 case stGlobal: /* external symbol, goes into global block */
735 b = BLOCKVECTOR_BLOCK (BLOCKVECTOR (top_stack->cur_st),
737 s = new_symbol (name);
738 SYMBOL_VALUE_ADDRESS (s) = (CORE_ADDR) sh->value;
741 case stStatic: /* static data, goes into current block. */
743 b = top_stack->cur_block;
744 s = new_symbol (name);
745 if (sh->sc == scCommon || sh->sc == scSCommon)
747 /* It is a FORTRAN common block. At least for SGI Fortran the
748 address is not in the symbol; we need to fix it later in
749 scan_file_globals. */
750 int bucket = hashname (SYMBOL_NAME (s));
751 SYMBOL_VALUE_CHAIN (s) = global_sym_chain[bucket];
752 global_sym_chain[bucket] = s;
755 SYMBOL_VALUE_ADDRESS (s) = (CORE_ADDR) sh->value;
758 case stLocal: /* local variable, goes into current block */
759 if (sh->sc == scRegister)
761 class = LOC_REGISTER;
762 svalue = ECOFF_REG_TO_REGNUM (svalue);
766 b = top_stack->cur_block;
767 s = new_symbol (name);
768 SYMBOL_VALUE (s) = svalue;
770 data: /* Common code for symbols describing data */
771 SYMBOL_NAMESPACE (s) = VAR_NAMESPACE;
772 SYMBOL_CLASS (s) = class;
775 /* Type could be missing if file is compiled without debugging info. */
776 if (sh->sc == scUndefined || sh->sc == scNil || sh->index == indexNil)
777 SYMBOL_TYPE (s) = nodebug_var_symbol_type;
779 SYMBOL_TYPE (s) = parse_type (cur_fd, ax, sh->index, 0, bigend, name);
780 /* Value of a data symbol is its memory address */
783 case stParam: /* arg to procedure, goes into current block */
785 found_ecoff_debugging_info = 1;
786 top_stack->numargs++;
788 /* Special GNU C++ name. */
789 if (is_cplus_marker (name[0]) && name[1] == 't' && name[2] == 0)
790 name = "this"; /* FIXME, not alloc'd in obstack */
791 s = new_symbol (name);
793 SYMBOL_NAMESPACE (s) = VAR_NAMESPACE;
797 /* Pass by value in register. */
798 SYMBOL_CLASS(s) = LOC_REGPARM;
799 svalue = ECOFF_REG_TO_REGNUM (svalue);
802 /* Pass by reference on stack. */
803 SYMBOL_CLASS(s) = LOC_REF_ARG;
806 /* Pass by reference in register. */
807 SYMBOL_CLASS(s) = LOC_REGPARM_ADDR;
808 svalue = ECOFF_REG_TO_REGNUM (svalue);
811 /* Pass by value on stack. */
812 SYMBOL_CLASS(s) = LOC_ARG;
815 SYMBOL_VALUE (s) = svalue;
816 SYMBOL_TYPE (s) = parse_type (cur_fd, ax, sh->index, 0, bigend, name);
817 add_symbol (s, top_stack->cur_block);
820 case stLabel: /* label, goes into current block */
821 s = new_symbol (name);
822 SYMBOL_NAMESPACE (s) = VAR_NAMESPACE; /* so that it can be used */
823 SYMBOL_CLASS (s) = LOC_LABEL; /* but not misused */
824 SYMBOL_VALUE_ADDRESS (s) = (CORE_ADDR) sh->value;
825 SYMBOL_TYPE (s) = mdebug_type_int;
826 add_symbol (s, top_stack->cur_block);
829 case stProc: /* Procedure, usually goes into global block */
830 case stStaticProc: /* Static procedure, goes into current block */
831 s = new_symbol (name);
832 SYMBOL_NAMESPACE (s) = VAR_NAMESPACE;
833 SYMBOL_CLASS (s) = LOC_BLOCK;
834 /* Type of the return value */
835 if (sh->sc == scUndefined || sh->sc == scNil)
839 t = parse_type (cur_fd, ax, sh->index + 1, 0, bigend, name);
840 if (STREQ(name, "malloc") && t->code == TYPE_CODE_VOID)
842 /* I don't know why, but, at least under Linux/Alpha,
843 when linking against a malloc without debugging
844 symbols, its read as a function returning void---this
845 is bad because it means we cannot call functions with
846 string arguments interactively; i.e., "call
847 printf("howdy\n")" would fail with the error message
848 "program has no memory available". To avoid this, we
849 patch up the type and make it void*
855 b = top_stack->cur_block;
856 if (sh->st == stProc)
858 struct blockvector *bv = BLOCKVECTOR (top_stack->cur_st);
859 /* The next test should normally be true, but provides a
860 hook for nested functions (which we don't want to make
862 if (b == BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK))
863 b = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK);
864 /* Irix 5 sometimes has duplicate names for the same
865 function. We want to add such names up at the global
866 level, not as a nested function. */
867 else if (sh->value == top_stack->procadr)
868 b = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK);
872 /* Make a type for the procedure itself */
873 SYMBOL_TYPE (s) = lookup_function_type (t);
875 /* Create and enter a new lexical context */
876 b = new_block (top_stack->maxsyms);
877 SYMBOL_BLOCK_VALUE (s) = b;
878 BLOCK_FUNCTION (b) = s;
879 BLOCK_START (b) = BLOCK_END (b) = sh->value;
880 BLOCK_SUPERBLOCK (b) = top_stack->cur_block;
881 add_block (b, top_stack->cur_st);
883 /* Not if we only have partial info */
884 if (sh->sc == scUndefined || sh->sc == scNil)
888 top_stack->cur_block = b;
889 top_stack->blocktype = sh->st;
890 top_stack->cur_type = SYMBOL_TYPE (s);
891 top_stack->cur_field = -1;
892 top_stack->procadr = sh->value;
893 top_stack->numargs = 0;
896 /* Beginning of code for structure, union, and enum definitions.
897 They all share a common set of local variables, defined here. */
899 enum type_code type_code;
905 case stStruct: /* Start a block defining a struct type */
906 type_code = TYPE_CODE_STRUCT;
907 goto structured_common;
909 case stUnion: /* Start a block defining a union type */
910 type_code = TYPE_CODE_UNION;
911 goto structured_common;
913 case stEnum: /* Start a block defining an enum type */
914 type_code = TYPE_CODE_ENUM;
915 goto structured_common;
917 case stBlock: /* Either a lexical block, or some type */
918 if (sh->sc != scInfo && sh->sc != scCommon && sh->sc != scSCommon)
919 goto case_stBlock_code; /* Lexical block */
921 type_code = TYPE_CODE_UNDEF; /* We have a type. */
923 /* Common code for handling struct, union, enum, and/or as-yet-
924 unknown-type blocks of info about structured data. `type_code'
925 has been set to the proper TYPE_CODE, if we know it. */
927 found_ecoff_debugging_info = 1;
929 top_stack->blocktype = stBlock;
931 /* First count the number of fields and the highest value. */
934 for (ext_tsym = ext_sh + external_sym_size;
936 ext_tsym += external_sym_size)
940 (*swap_sym_in) (cur_bfd, ext_tsym, &tsym);
948 if (nfields == 0 && type_code == TYPE_CODE_UNDEF)
949 /* If the type of the member is Nil (or Void),
950 without qualifiers, assume the tag is an
952 Alpha cc -migrate enums are recognized by a zero
953 index and a zero symbol value. */
954 if (tsym.index == indexNil
955 || (tsym.index == 0 && sh->value == 0))
956 type_code = TYPE_CODE_ENUM;
959 (*debug_swap->swap_tir_in) (bigend,
960 &ax[tsym.index].a_ti,
962 if ((tir.bt == btNil || tir.bt == btVoid)
964 type_code = TYPE_CODE_ENUM;
967 if (tsym.value > max_value)
968 max_value = tsym.value;
977 /* This is a no-op; is it trying to tell us something
978 we should be checking? */
979 if (tsym.sc == scVariant); /*UNIMPLEMENTED*/
983 /* This is something like a struct within a
984 struct. Skip over the fields of the inner
985 struct. The -1 is because the for loop will
986 increment ext_tsym. */
987 ext_tsym = ((char *) debug_info->external_sym
988 + ((cur_fdr->isymBase + tsym.index - 1)
989 * external_sym_size));
995 /* mips cc puts out a typedef for struct x if it is not yet
996 defined when it encounters
997 struct y { struct x *xp; };
1002 /* Irix5 cc puts out a stIndirect for struct x if it is not
1003 yet defined when it encounters
1004 struct y { struct x *xp; };
1009 complain (&block_member_complaint, tsym.st);
1014 /* In an stBlock, there is no way to distinguish structs,
1015 unions, and enums at this point. This is a bug in the
1016 original design (that has been fixed with the recent
1017 addition of the stStruct, stUnion, and stEnum symbol
1018 types.) The way you can tell is if/when you see a variable
1019 or field of that type. In that case the variable's type
1020 (in the AUX table) says if the type is struct, union, or
1021 enum, and points back to the stBlock here. So you can
1022 patch the tag kind up later - but only if there actually is
1023 a variable or field of that type.
1025 So until we know for sure, we will guess at this point.
1027 If the first member has index==indexNil or a void type,
1028 assume we have an enumeration.
1029 Otherwise, if there is more than one member, and all
1030 the members have offset 0, assume we have a union.
1031 Otherwise, assume we have a struct.
1033 The heuristic could guess wrong in the case of of an
1034 enumeration with no members or a union with one (or zero)
1035 members, or when all except the last field of a struct have
1036 width zero. These are uncommon and/or illegal situations,
1037 and in any case guessing wrong probably doesn't matter
1040 But if we later do find out we were wrong, we fixup the tag
1041 kind. Members of an enumeration must be handled
1042 differently from struct/union fields, and that is harder to
1043 patch up, but luckily we shouldn't need to. (If there are
1044 any enumeration members, we can tell for sure it's an enum
1047 if (type_code == TYPE_CODE_UNDEF)
1048 if (nfields > 1 && max_value == 0)
1049 type_code = TYPE_CODE_UNION;
1051 type_code = TYPE_CODE_STRUCT;
1053 /* Create a new type or use the pending type. */
1054 pend = is_pending_symbol (cur_fdr, ext_sh);
1055 if (pend == (struct mdebug_pending *) NULL)
1057 t = new_type (NULL);
1058 add_pending (cur_fdr, ext_sh, t);
1063 /* Do not set the tag name if it is a compiler generated tag name
1064 (.Fxx or .xxfake or empty) for unnamed struct/union/enums.
1065 Alpha cc puts out an sh->iss of zero for those. */
1066 if (sh->iss == 0 || name[0] == '.' || name[0] == '\0')
1067 TYPE_TAG_NAME (t) = NULL;
1069 TYPE_TAG_NAME (t) = obconcat (¤t_objfile->symbol_obstack,
1072 TYPE_CODE (t) = type_code;
1073 TYPE_LENGTH (t) = sh->value;
1074 TYPE_NFIELDS (t) = nfields;
1075 TYPE_FIELDS (t) = f = ((struct field *)
1077 nfields * sizeof (struct field)));
1079 if (type_code == TYPE_CODE_ENUM)
1081 int unsigned_enum = 1;
1083 /* This is a non-empty enum. */
1085 /* DEC c89 has the number of enumerators in the sh.value field,
1086 not the type length, so we have to compensate for that
1087 incompatibility quirk.
1088 This might do the wrong thing for an enum with one or two
1089 enumerators and gcc -gcoff -fshort-enums, but these cases
1090 are hopefully rare enough.
1091 Alpha cc -migrate has a sh.value field of zero, we adjust
1093 if (TYPE_LENGTH (t) == TYPE_NFIELDS (t)
1094 || TYPE_LENGTH (t) == 0)
1095 TYPE_LENGTH (t) = TARGET_INT_BIT / HOST_CHAR_BIT;
1096 for (ext_tsym = ext_sh + external_sym_size;
1098 ext_tsym += external_sym_size)
1101 struct symbol *enum_sym;
1103 (*swap_sym_in) (cur_bfd, ext_tsym, &tsym);
1105 if (tsym.st != stMember)
1108 f->bitpos = tsym.value;
1110 f->name = debug_info->ss + cur_fdr->issBase + tsym.iss;
1113 enum_sym = ((struct symbol *)
1114 obstack_alloc (¤t_objfile->symbol_obstack,
1115 sizeof (struct symbol)));
1116 memset ((PTR) enum_sym, 0, sizeof (struct symbol));
1117 SYMBOL_NAME (enum_sym) =
1118 obsavestring (f->name, strlen (f->name),
1119 ¤t_objfile->symbol_obstack);
1120 SYMBOL_CLASS (enum_sym) = LOC_CONST;
1121 SYMBOL_TYPE (enum_sym) = t;
1122 SYMBOL_NAMESPACE (enum_sym) = VAR_NAMESPACE;
1123 SYMBOL_VALUE (enum_sym) = tsym.value;
1124 if (SYMBOL_VALUE (enum_sym) < 0)
1126 add_symbol (enum_sym, top_stack->cur_block);
1128 /* Skip the stMembers that we've handled. */
1133 TYPE_FLAGS (t) |= TYPE_FLAG_UNSIGNED;
1135 /* make this the current type */
1136 top_stack->cur_type = t;
1137 top_stack->cur_field = 0;
1139 /* Do not create a symbol for alpha cc unnamed structs. */
1143 /* gcc puts out an empty struct for an opaque struct definitions,
1144 do not create a symbol for it either. */
1145 if (TYPE_NFIELDS (t) == 0)
1147 TYPE_FLAGS (t) |= TYPE_FLAG_STUB;
1151 s = new_symbol (name);
1152 SYMBOL_NAMESPACE (s) = STRUCT_NAMESPACE;
1153 SYMBOL_CLASS (s) = LOC_TYPEDEF;
1154 SYMBOL_VALUE (s) = 0;
1155 SYMBOL_TYPE (s) = t;
1156 add_symbol (s, top_stack->cur_block);
1159 /* End of local variables shared by struct, union, enum, and
1160 block (as yet unknown struct/union/enum) processing. */
1164 found_ecoff_debugging_info = 1;
1165 /* beginnning of (code) block. Value of symbol
1166 is the displacement from procedure start */
1167 push_parse_stack ();
1169 /* Do not start a new block if this is the outermost block of a
1170 procedure. This allows the LOC_BLOCK symbol to point to the
1171 block with the local variables, so funcname::var works. */
1172 if (top_stack->blocktype == stProc
1173 || top_stack->blocktype == stStaticProc)
1175 top_stack->blocktype = stNil;
1179 top_stack->blocktype = stBlock;
1180 b = new_block (top_stack->maxsyms);
1181 BLOCK_START (b) = sh->value + top_stack->procadr;
1182 BLOCK_SUPERBLOCK (b) = top_stack->cur_block;
1183 top_stack->cur_block = b;
1184 add_block (b, top_stack->cur_st);
1187 case stEnd: /* end (of anything) */
1188 if (sh->sc == scInfo || sh->sc == scCommon || sh->sc == scSCommon)
1190 /* Finished with type */
1191 top_stack->cur_type = 0;
1193 else if (sh->sc == scText &&
1194 (top_stack->blocktype == stProc ||
1195 top_stack->blocktype == stStaticProc))
1197 /* Finished with procedure */
1198 struct blockvector *bv = BLOCKVECTOR (top_stack->cur_st);
1199 struct mips_extra_func_info *e;
1201 struct type *ftype = top_stack->cur_type;
1204 BLOCK_END (top_stack->cur_block) += sh->value; /* size */
1206 /* Make up special symbol to contain procedure specific info */
1207 s = new_symbol (MIPS_EFI_SYMBOL_NAME);
1208 SYMBOL_NAMESPACE (s) = LABEL_NAMESPACE;
1209 SYMBOL_CLASS (s) = LOC_CONST;
1210 SYMBOL_TYPE (s) = mdebug_type_void;
1211 e = ((struct mips_extra_func_info *)
1212 obstack_alloc (¤t_objfile->symbol_obstack,
1213 sizeof (struct mips_extra_func_info)));
1214 memset ((PTR) e, 0, sizeof (struct mips_extra_func_info));
1215 SYMBOL_VALUE (s) = (long) e;
1216 e->numargs = top_stack->numargs;
1217 e->pdr.framereg = -1;
1218 add_symbol (s, top_stack->cur_block);
1220 /* Reallocate symbols, saving memory */
1221 b = shrink_block (top_stack->cur_block, top_stack->cur_st);
1223 /* f77 emits proc-level with address bounds==[0,0],
1224 So look for such child blocks, and patch them. */
1225 for (i = 0; i < BLOCKVECTOR_NBLOCKS (bv); i++)
1227 struct block *b_bad = BLOCKVECTOR_BLOCK (bv, i);
1228 if (BLOCK_SUPERBLOCK (b_bad) == b
1229 && BLOCK_START (b_bad) == top_stack->procadr
1230 && BLOCK_END (b_bad) == top_stack->procadr)
1232 BLOCK_START (b_bad) = BLOCK_START (b);
1233 BLOCK_END (b_bad) = BLOCK_END (b);
1237 if (TYPE_NFIELDS (ftype) <= 0)
1239 /* No parameter type information is recorded with the function's
1240 type. Set that from the type of the parameter symbols. */
1241 int nparams = top_stack->numargs;
1247 TYPE_NFIELDS (ftype) = nparams;
1248 TYPE_FIELDS (ftype) = (struct field *)
1249 TYPE_ALLOC (ftype, nparams * sizeof (struct field));
1251 for (i = iparams = 0; iparams < nparams; i++)
1253 sym = BLOCK_SYM (b, i);
1254 switch (SYMBOL_CLASS (sym))
1259 case LOC_REGPARM_ADDR:
1260 TYPE_FIELD_TYPE (ftype, iparams) = SYMBOL_TYPE (sym);
1270 else if (sh->sc == scText && top_stack->blocktype == stBlock)
1272 /* End of (code) block. The value of the symbol is the
1273 displacement from the procedure`s start address of the
1274 end of this block. */
1275 BLOCK_END (top_stack->cur_block) = sh->value + top_stack->procadr;
1276 shrink_block (top_stack->cur_block, top_stack->cur_st);
1278 else if (sh->sc == scText && top_stack->blocktype == stNil)
1280 /* End of outermost block. Pop parse stack and ignore. The
1281 following stEnd of stProc will take care of the block. */
1284 else if (sh->sc == scText && top_stack->blocktype == stFile)
1286 /* End of file. Pop parse stack and ignore. Higher
1287 level code deals with this. */
1291 complain (&stEnd_complaint, sh->sc);
1293 pop_parse_stack (); /* restore previous lexical context */
1296 case stMember: /* member of struct or union */
1297 f = &TYPE_FIELDS (top_stack->cur_type)[top_stack->cur_field++];
1299 f->bitpos = sh->value;
1301 f->type = parse_type (cur_fd, ax, sh->index, &bitsize, bigend, name);
1302 f->bitsize = bitsize;
1305 case stIndirect: /* forward declaration on Irix5 */
1306 /* Forward declarations from Irix5 cc are handled by cross_ref,
1310 case stTypedef: /* type definition */
1311 found_ecoff_debugging_info = 1;
1313 /* Typedefs for forward declarations and opaque structs from alpha cc
1314 are handled by cross_ref, skip them. */
1318 /* Parse the type or use the pending type. */
1319 pend = is_pending_symbol (cur_fdr, ext_sh);
1320 if (pend == (struct mdebug_pending *) NULL)
1322 t = parse_type (cur_fd, ax, sh->index, (int *)NULL, bigend, name);
1323 add_pending (cur_fdr, ext_sh, t);
1328 /* mips cc puts out a typedef with the name of the struct for forward
1329 declarations. These should not go into the symbol table and
1330 TYPE_NAME should not be set for them.
1331 They can't be distinguished from an intentional typedef to
1332 the same name however:
1334 struct x { int ix; int jx; };
1338 struct xx {int ixx; int jxx; };
1339 generates a cross referencing stTypedef for x and xx.
1340 The user visible effect of this is that the type of a pointer
1341 to struct foo sometimes is given as `foo *' instead of `struct foo *'.
1342 The problem is fixed with alpha cc and Irix5 cc. */
1344 /* However if the typedef cross references to an opaque aggregate, it
1345 is safe to omit it from the symbol table. */
1347 if (has_opaque_xref (cur_fdr, sh))
1349 s = new_symbol (name);
1350 SYMBOL_NAMESPACE (s) = VAR_NAMESPACE;
1351 SYMBOL_CLASS (s) = LOC_TYPEDEF;
1352 SYMBOL_BLOCK_VALUE (s) = top_stack->cur_block;
1353 SYMBOL_TYPE (s) = t;
1354 add_symbol (s, top_stack->cur_block);
1356 /* Incomplete definitions of structs should not get a name. */
1357 if (TYPE_NAME (SYMBOL_TYPE (s)) == NULL
1358 && (TYPE_NFIELDS (SYMBOL_TYPE (s)) != 0
1359 || (TYPE_CODE (SYMBOL_TYPE (s)) != TYPE_CODE_STRUCT
1360 && TYPE_CODE (SYMBOL_TYPE (s)) != TYPE_CODE_UNION)))
1362 if (TYPE_CODE (SYMBOL_TYPE (s)) == TYPE_CODE_PTR
1363 || TYPE_CODE (SYMBOL_TYPE (s)) == TYPE_CODE_FUNC)
1365 /* If we are giving a name to a type such as "pointer to
1366 foo" or "function returning foo", we better not set
1367 the TYPE_NAME. If the program contains "typedef char
1368 *caddr_t;", we don't want all variables of type char
1369 * to print as caddr_t. This is not just a
1370 consequence of GDB's type management; CC and GCC (at
1371 least through version 2.4) both output variables of
1372 either type char * or caddr_t with the type
1373 refering to the stTypedef symbol for caddr_t. If a future
1374 compiler cleans this up it GDB is not ready for it
1375 yet, but if it becomes ready we somehow need to
1376 disable this check (without breaking the PCC/GCC2.4
1381 Fortunately, this check seems not to be necessary
1382 for anything except pointers or functions. */
1385 TYPE_NAME (SYMBOL_TYPE (s)) = SYMBOL_NAME (s);
1389 case stFile: /* file name */
1390 push_parse_stack ();
1391 top_stack->blocktype = sh->st;
1394 /* I`ve never seen these for C */
1396 break; /* register relocation */
1398 break; /* forwarding address */
1400 break; /* constant */
1402 complain (&unknown_mdebug_symtype_complaint, sh->st);
1409 /* Parse the type information provided in the raw AX entries for
1410 the symbol SH. Return the bitfield size in BS, in case.
1411 We must byte-swap the AX entries before we use them; BIGEND says whether
1412 they are big-endian or little-endian (from fh->fBigendian). */
1414 static struct type *
1415 parse_type (fd, ax, aux_index, bs, bigend, sym_name)
1418 unsigned int aux_index;
1423 /* Null entries in this map are treated specially */
1424 static struct type **map_bt[] =
1426 &mdebug_type_void, /* btNil */
1427 &mdebug_type_adr_32, /* btAdr */
1428 &mdebug_type_char, /* btChar */
1429 &mdebug_type_unsigned_char, /* btUChar */
1430 &mdebug_type_short, /* btShort */
1431 &mdebug_type_unsigned_short, /* btUShort */
1432 &mdebug_type_int_32, /* btInt */
1433 &mdebug_type_unsigned_int_32, /* btUInt */
1434 &mdebug_type_long_32, /* btLong */
1435 &mdebug_type_unsigned_long_32, /* btULong */
1436 &mdebug_type_float, /* btFloat */
1437 &mdebug_type_double, /* btDouble */
1444 &mdebug_type_complex, /* btComplex */
1445 &mdebug_type_double_complex, /* btDComplex */
1447 &mdebug_type_fixed_dec, /* btFixedDec */
1448 &mdebug_type_float_dec, /* btFloatDec */
1449 &mdebug_type_string, /* btString */
1452 &mdebug_type_void, /* btVoid */
1453 0, /* DEC C++: Pointer to member */
1454 0, /* DEC C++: Virtual function table */
1455 0, /* DEC C++: Class (Record) */
1456 &mdebug_type_long_64, /* btLong64 */
1457 &mdebug_type_unsigned_long_64, /* btULong64 */
1458 &mdebug_type_long_long_64, /* btLongLong64 */
1459 &mdebug_type_unsigned_long_long_64, /* btULongLong64 */
1460 &mdebug_type_adr_64, /* btAdr64 */
1461 &mdebug_type_int_64, /* btInt64 */
1462 &mdebug_type_unsigned_int_64, /* btUInt64 */
1466 struct type *tp = 0;
1467 enum type_code type_code = TYPE_CODE_UNDEF;
1469 /* Handle undefined types, they have indexNil. */
1470 if (aux_index == indexNil)
1471 return mdebug_type_int;
1473 /* Handle corrupt aux indices. */
1474 if (aux_index >= (debug_info->fdr + fd)->caux)
1476 complain (&index_complaint, sym_name);
1477 return mdebug_type_int;
1481 /* Use aux as a type information record, map its basic type. */
1482 (*debug_swap->swap_tir_in) (bigend, &ax->a_ti, t);
1483 if (t->bt >= (sizeof (map_bt) / sizeof (*map_bt)))
1485 complain (&basic_type_complaint, t->bt, sym_name);
1486 return mdebug_type_int;
1490 tp = *map_bt[t->bt];
1495 /* Cannot use builtin types -- build our own */
1499 type_code = TYPE_CODE_STRUCT;
1502 type_code = TYPE_CODE_UNION;
1505 type_code = TYPE_CODE_ENUM;
1508 type_code = TYPE_CODE_RANGE;
1511 type_code = TYPE_CODE_SET;
1514 /* alpha cc -migrate uses this for typedefs. The true type will
1515 be obtained by crossreferencing below. */
1516 type_code = TYPE_CODE_ERROR;
1519 /* alpha cc uses this for typedefs. The true type will be
1520 obtained by crossreferencing below. */
1521 type_code = TYPE_CODE_ERROR;
1524 complain (&basic_type_complaint, t->bt, sym_name);
1525 return mdebug_type_int;
1529 /* Move on to next aux */
1534 int width = AUX_GET_WIDTH (bigend, ax);
1536 /* Inhibit core dumps with some cfront generated objects that
1538 if (bs == (int *)NULL)
1540 /* Alpha cc -migrate encodes char and unsigned char types
1541 as short and unsigned short types with a field width of 8.
1542 Enum types also have a field width which we ignore for now. */
1543 if (t->bt == btShort && width == 8)
1544 tp = mdebug_type_char;
1545 else if (t->bt == btUShort && width == 8)
1546 tp = mdebug_type_unsigned_char;
1547 else if (t->bt == btEnum)
1550 complain (&bad_fbitfield_complaint, sym_name);
1557 /* A btIndirect entry cross references to an aux entry containing
1559 if (t->bt == btIndirect)
1566 (*debug_swap->swap_rndx_in) (bigend, &ax->a_rndx, rn);
1568 if (rn->rfd == 0xfff)
1570 rf = AUX_GET_ISYM (bigend, ax);
1578 complain (&bad_indirect_xref_complaint, sym_name);
1579 return mdebug_type_int;
1581 xref_fh = get_rfd (fd, rf);
1582 xref_fd = xref_fh - debug_info->fdr;
1583 tp = parse_type (xref_fd, debug_info->external_aux + xref_fh->iauxBase,
1584 rn->index, (int *) NULL, xref_fh->fBigendian, sym_name);
1587 /* All these types really point to some (common) MIPS type
1588 definition, and only the type-qualifiers fully identify
1589 them. We'll make the same effort at sharing. */
1590 if (t->bt == btStruct ||
1594 /* btSet (I think) implies that the name is a tag name, not a typedef
1595 name. This apparently is a MIPS extension for C sets. */
1600 /* Try to cross reference this type, build new type on failure. */
1601 ax += cross_ref (fd, ax, &tp, type_code, &name, bigend, sym_name);
1602 if (tp == (struct type *) NULL)
1603 tp = init_type (type_code, 0, 0, (char *) NULL, current_objfile);
1605 /* DEC c89 produces cross references to qualified aggregate types,
1606 dereference them. */
1607 while (TYPE_CODE (tp) == TYPE_CODE_PTR
1608 || TYPE_CODE (tp) == TYPE_CODE_ARRAY)
1609 tp = tp->target_type;
1611 /* Make sure that TYPE_CODE(tp) has an expected type code.
1612 Any type may be returned from cross_ref if file indirect entries
1614 if (TYPE_CODE (tp) != TYPE_CODE_STRUCT
1615 && TYPE_CODE (tp) != TYPE_CODE_UNION
1616 && TYPE_CODE (tp) != TYPE_CODE_ENUM)
1618 complain (&unexpected_type_code_complaint, sym_name);
1623 /* Usually, TYPE_CODE(tp) is already type_code. The main
1624 exception is if we guessed wrong re struct/union/enum.
1625 But for struct vs. union a wrong guess is harmless, so
1626 don't complain(). */
1627 if ((TYPE_CODE (tp) == TYPE_CODE_ENUM
1628 && type_code != TYPE_CODE_ENUM)
1629 || (TYPE_CODE (tp) != TYPE_CODE_ENUM
1630 && type_code == TYPE_CODE_ENUM))
1632 complain (&bad_tag_guess_complaint, sym_name);
1635 if (TYPE_CODE (tp) != type_code)
1637 TYPE_CODE (tp) = type_code;
1640 /* Do not set the tag name if it is a compiler generated tag name
1641 (.Fxx or .xxfake or empty) for unnamed struct/union/enums. */
1642 if (name[0] == '.' || name[0] == '\0')
1643 TYPE_TAG_NAME (tp) = NULL;
1644 else if (TYPE_TAG_NAME (tp) == NULL
1645 || !STREQ (TYPE_TAG_NAME (tp), name))
1646 TYPE_TAG_NAME (tp) = obsavestring (name, strlen (name),
1647 ¤t_objfile->type_obstack);
1651 /* All these types really point to some (common) MIPS type
1652 definition, and only the type-qualifiers fully identify
1653 them. We'll make the same effort at sharing.
1654 FIXME: We are not doing any guessing on range types. */
1655 if (t->bt == btRange)
1659 /* Try to cross reference this type, build new type on failure. */
1660 ax += cross_ref (fd, ax, &tp, type_code, &name, bigend, sym_name);
1661 if (tp == (struct type *) NULL)
1662 tp = init_type (type_code, 0, 0, (char *) NULL, current_objfile);
1664 /* Make sure that TYPE_CODE(tp) has an expected type code.
1665 Any type may be returned from cross_ref if file indirect entries
1667 if (TYPE_CODE (tp) != TYPE_CODE_RANGE)
1669 complain (&unexpected_type_code_complaint, sym_name);
1673 /* Usually, TYPE_CODE(tp) is already type_code. The main
1674 exception is if we guessed wrong re struct/union/enum. */
1675 if (TYPE_CODE (tp) != type_code)
1677 complain (&bad_tag_guess_complaint, sym_name);
1678 TYPE_CODE (tp) = type_code;
1680 if (TYPE_NAME (tp) == NULL || !STREQ (TYPE_NAME (tp), name))
1681 TYPE_NAME (tp) = obsavestring (name, strlen (name),
1682 ¤t_objfile->type_obstack);
1685 if (t->bt == btTypedef)
1689 /* Try to cross reference this type, it should succeed. */
1690 ax += cross_ref (fd, ax, &tp, type_code, &name, bigend, sym_name);
1691 if (tp == (struct type *) NULL)
1693 complain (&unable_to_cross_ref_complaint, sym_name);
1694 tp = mdebug_type_int;
1698 /* Deal with range types */
1699 if (t->bt == btRange)
1701 TYPE_NFIELDS (tp) = 2;
1702 TYPE_FIELDS (tp) = ((struct field *)
1703 TYPE_ALLOC (tp, 2 * sizeof (struct field)));
1704 TYPE_FIELD_NAME (tp, 0) = obsavestring ("Low", strlen ("Low"),
1705 ¤t_objfile->type_obstack);
1706 TYPE_FIELD_BITPOS (tp, 0) = AUX_GET_DNLOW (bigend, ax);
1708 TYPE_FIELD_NAME (tp, 1) = obsavestring ("High", strlen ("High"),
1709 ¤t_objfile->type_obstack);
1710 TYPE_FIELD_BITPOS (tp, 1) = AUX_GET_DNHIGH (bigend, ax);
1714 /* Parse all the type qualifiers now. If there are more
1715 than 6 the game will continue in the next aux */
1719 #define PARSE_TQ(tq) \
1720 if (t->tq != tqNil) \
1721 ax += upgrade_type(fd, &tp, t->tq, ax, bigend, sym_name); \
1733 /* mips cc 2.x and gcc never put out continued aux entries. */
1737 (*debug_swap->swap_tir_in) (bigend, &ax->a_ti, t);
1741 /* Complain for illegal continuations due to corrupt aux entries. */
1743 complain (&bad_continued_complaint, sym_name);
1748 /* Make up a complex type from a basic one. Type is passed by
1749 reference in TPP and side-effected as necessary. The type
1750 qualifier TQ says how to handle the aux symbols at AX for
1751 the symbol SX we are currently analyzing. BIGEND says whether
1752 aux symbols are big-endian or little-endian.
1753 Returns the number of aux symbols we parsed. */
1756 upgrade_type (fd, tpp, tq, ax, bigend, sym_name)
1767 /* Used in array processing */
1778 t = lookup_pointer_type (*tpp);
1783 t = lookup_function_type (*tpp);
1790 /* Determine and record the domain type (type of index) */
1791 (*debug_swap->swap_rndx_in) (bigend, &ax->a_rndx, &rndx);
1797 rf = AUX_GET_ISYM (bigend, ax);
1800 fh = get_rfd (fd, rf);
1802 indx = parse_type (fh - debug_info->fdr,
1803 debug_info->external_aux + fh->iauxBase,
1804 id, (int *) NULL, bigend, sym_name);
1806 /* The bounds type should be an integer type, but might be anything
1807 else due to corrupt aux entries. */
1808 if (TYPE_CODE (indx) != TYPE_CODE_INT)
1810 complain (&array_index_type_complaint, sym_name);
1811 indx = mdebug_type_int;
1814 /* Get the bounds, and create the array type. */
1816 lower = AUX_GET_DNLOW (bigend, ax);
1818 upper = AUX_GET_DNHIGH (bigend, ax);
1820 rf = AUX_GET_WIDTH (bigend, ax); /* bit size of array element */
1822 range = create_range_type ((struct type *) NULL, indx,
1825 t = create_array_type ((struct type *) NULL, *tpp, range);
1827 /* We used to fill in the supplied array element bitsize
1828 here if the TYPE_LENGTH of the target type was zero.
1829 This happens for a `pointer to an array of anonymous structs',
1830 but in this case the array element bitsize is also zero,
1831 so nothing is gained.
1832 And we used to check the TYPE_LENGTH of the target type against
1833 the supplied array element bitsize.
1834 gcc causes a mismatch for `pointer to array of object',
1835 since the sdb directives it uses do not have a way of
1836 specifying the bitsize, but it does no harm (the
1837 TYPE_LENGTH should be correct) and we should be able to
1838 ignore the erroneous bitsize from the auxiliary entry safely.
1839 dbx seems to ignore it too. */
1841 /* TYPE_FLAG_TARGET_STUB now takes care of the zero TYPE_LENGTH
1843 if (TYPE_LENGTH (*tpp) == 0)
1845 TYPE_FLAGS (t) |= TYPE_FLAG_TARGET_STUB;
1852 /* Volatile -- currently ignored */
1856 /* Const -- currently ignored */
1860 complain (&unknown_type_qual_complaint, tq);
1866 /* Parse a procedure descriptor record PR. Note that the procedure is
1867 parsed _after_ the local symbols, now we just insert the extra
1868 information we need into a MIPS_EFI_SYMBOL_NAME symbol that has
1869 already been placed in the procedure's main block. Note also that
1870 images that have been partially stripped (ld -x) have been deprived
1871 of local symbols, and we have to cope with them here. FIRST_OFF is
1872 the offset of the first procedure for this FDR; we adjust the
1873 address by this amount, but I don't know why. SEARCH_SYMTAB is the symtab
1874 to look for the function which contains the MIPS_EFI_SYMBOL_NAME symbol
1875 in question, or NULL to use top_stack->cur_block. */
1877 static void parse_procedure PARAMS ((PDR *, struct symtab *, CORE_ADDR,
1878 struct partial_symtab *));
1881 parse_procedure (pr, search_symtab, lowest_pdr_addr, pst)
1883 struct symtab *search_symtab;
1884 CORE_ADDR lowest_pdr_addr;
1885 struct partial_symtab *pst;
1887 struct symbol *s, *i;
1889 struct mips_extra_func_info *e;
1892 /* Simple rule to find files linked "-x" */
1893 if (cur_fdr->rss == -1)
1897 /* Static procedure at address pr->adr. Sigh. */
1898 /* FIXME-32x64. assuming pr->adr fits in long. */
1899 complain (&pdr_static_symbol_complaint, (unsigned long) pr->adr);
1907 (*debug_swap->swap_ext_in) (cur_bfd,
1908 ((char *) debug_info->external_ext
1910 * debug_swap->external_ext_size)),
1912 sh_name = debug_info->ssext + she.asym.iss;
1920 (*debug_swap->swap_sym_in) (cur_bfd,
1921 ((char *) debug_info->external_sym
1922 + ((cur_fdr->isymBase + pr->isym)
1923 * debug_swap->external_sym_size)),
1925 sh_name = debug_info->ss + cur_fdr->issBase + sh.iss;
1928 if (search_symtab != NULL)
1931 /* This loses both in the case mentioned (want a static, find a global),
1932 but also if we are looking up a non-mangled name which happens to
1933 match the name of a mangled function. */
1934 /* We have to save the cur_fdr across the call to lookup_symbol.
1935 If the pdr is for a static function and if a global function with
1936 the same name exists, lookup_symbol will eventually read in the symtab
1937 for the global function and clobber cur_fdr. */
1938 FDR *save_cur_fdr = cur_fdr;
1939 s = lookup_symbol (sh_name, NULL, VAR_NAMESPACE, 0, NULL);
1940 cur_fdr = save_cur_fdr;
1944 BLOCKVECTOR_BLOCK (BLOCKVECTOR (search_symtab), STATIC_BLOCK),
1950 s = mylookup_symbol (sh_name, top_stack->cur_block,
1951 VAR_NAMESPACE, LOC_BLOCK);
1955 b = SYMBOL_BLOCK_VALUE (s);
1959 complain (&pdr_for_nonsymbol_complaint, sh_name);
1963 /* FIXME -- delete. We can't do symbol allocation now; it's all done. */
1964 s = new_symbol (sh_name);
1965 SYMBOL_NAMESPACE (s) = VAR_NAMESPACE;
1966 SYMBOL_CLASS (s) = LOC_BLOCK;
1967 /* Donno its type, hope int is ok */
1968 SYMBOL_TYPE (s) = lookup_function_type (mdebug_type_int);
1969 add_symbol (s, top_stack->cur_block);
1970 /* Wont have symbols for this one */
1972 SYMBOL_BLOCK_VALUE (s) = b;
1973 BLOCK_FUNCTION (b) = s;
1974 BLOCK_START (b) = pr->adr;
1975 /* BOUND used to be the end of procedure's text, but the
1976 argument is no longer passed in. */
1977 BLOCK_END (b) = bound;
1978 BLOCK_SUPERBLOCK (b) = top_stack->cur_block;
1979 add_block (b, top_stack->cur_st);
1983 i = mylookup_symbol (MIPS_EFI_SYMBOL_NAME, b, LABEL_NAMESPACE, LOC_CONST);
1987 e = (struct mips_extra_func_info *) SYMBOL_VALUE (i);
1989 e->pdr.isym = (long) s;
1990 e->pdr.adr += pst->textlow - lowest_pdr_addr;
1992 /* Correct incorrect setjmp procedure descriptor from the library
1993 to make backtrace through setjmp work. */
1994 if (e->pdr.pcreg == 0 && STREQ (sh_name, "setjmp"))
1996 complain (&bad_setjmp_pdr_complaint, 0);
1997 e->pdr.pcreg = RA_REGNUM;
1998 e->pdr.regmask = 0x80000000;
1999 e->pdr.regoffset = -4;
2003 /* It would be reasonable that functions that have been compiled
2004 without debugging info have a btNil type for their return value,
2005 and functions that are void and are compiled with debugging info
2007 gcc and DEC f77 put out btNil types for both cases, so btNil is mapped
2008 to TYPE_CODE_VOID in parse_type to get the `compiled with debugging info'
2010 The glevel field in cur_fdr could be used to determine the presence
2011 of debugging info, but GCC doesn't always pass the -g switch settings
2012 to the assembler and GAS doesn't set the glevel field from the -g switch
2014 To work around these problems, the return value type of a TYPE_CODE_VOID
2015 function is adjusted accordingly if no debugging info was found in the
2016 compilation unit. */
2018 if (processing_gcc_compilation == 0
2019 && found_ecoff_debugging_info == 0
2020 && TYPE_CODE (TYPE_TARGET_TYPE (SYMBOL_TYPE (s))) == TYPE_CODE_VOID)
2021 SYMBOL_TYPE (s) = nodebug_func_symbol_type;
2024 /* Relocate the extra function info pointed to by the symbol table. */
2027 ecoff_relocate_efi (sym, delta)
2031 struct mips_extra_func_info *e;
2033 e = (struct mips_extra_func_info *) SYMBOL_VALUE (sym);
2035 e->pdr.adr += delta;
2038 /* Parse the external symbol ES. Just call parse_symbol() after
2039 making sure we know where the aux are for it.
2040 BIGEND says whether aux entries are big-endian or little-endian.
2042 This routine clobbers top_stack->cur_block and ->cur_st. */
2044 static void parse_external PARAMS ((EXTR *, int, struct section_offsets *));
2047 parse_external (es, bigend, section_offsets)
2050 struct section_offsets *section_offsets;
2054 if (es->ifd != ifdNil)
2057 cur_fdr = debug_info->fdr + cur_fd;
2058 ax = debug_info->external_aux + cur_fdr->iauxBase;
2062 cur_fdr = debug_info->fdr;
2066 /* Reading .o files */
2067 if (es->asym.sc == scUndefined || es->asym.sc == scNil)
2070 switch (es->asym.st)
2073 /* These are generated for static symbols in .o files,
2094 /* FIXME: Turn this into a complaint? */
2096 printf_filtered ("Warning: %s `%s' is undefined (in %s)\n",
2097 what, debug_info->ssext + es->asym.iss,
2098 fdr_name (cur_fdr));
2102 switch (es->asym.st)
2106 /* There is no need to parse the external procedure symbols.
2107 If they are from objects compiled without -g, their index will
2108 be indexNil, and the symbol definition from the minimal symbol
2109 is preferrable (yielding a function returning int instead of int).
2110 If the index points to a local procedure symbol, the local
2111 symbol already provides the correct type.
2112 Note that the index of the external procedure symbol points
2113 to the local procedure symbol in the local symbol table, and
2114 _not_ to the auxiliary symbol info. */
2118 /* Global common symbols are resolved by the runtime loader,
2120 if (es->asym.sc == scCommon || es->asym.sc == scSCommon)
2123 /* Note that the case of a symbol with indexNil must be handled
2124 anyways by parse_symbol(). */
2125 parse_symbol (&es->asym, ax, (char *) NULL, bigend, section_offsets);
2132 /* Parse the line number info for file descriptor FH into
2133 GDB's linetable LT. MIPS' encoding requires a little bit
2134 of magic to get things out. Note also that MIPS' line
2135 numbers can go back and forth, apparently we can live
2136 with that and do not need to reorder our linetables */
2138 static void parse_lines PARAMS ((FDR *, PDR *, struct linetable *, int,
2139 struct partial_symtab *, CORE_ADDR));
2142 parse_lines (fh, pr, lt, maxlines, pst, lowest_pdr_addr)
2145 struct linetable *lt;
2147 struct partial_symtab *pst;
2148 CORE_ADDR lowest_pdr_addr;
2150 unsigned char *base;
2152 int delta, count, lineno = 0;
2154 if (fh->cbLine == 0)
2157 /* Scan by procedure descriptors */
2159 for (j = 0; j < fh->cpd; j++, pr++)
2163 unsigned char *halt;
2165 /* No code for this one */
2166 if (pr->iline == ilineNil ||
2167 pr->lnLow == -1 || pr->lnHigh == -1)
2170 /* Determine start and end address of compressed line bytes for
2172 base = debug_info->line + fh->cbLineOffset;
2173 if (j != (fh->cpd - 1))
2174 halt = base + pr[1].cbLineOffset;
2176 halt = base + fh->cbLine;
2177 base += pr->cbLineOffset;
2179 adr = pst->textlow + pr->adr - lowest_pdr_addr;
2181 l = adr >> 2; /* in words */
2182 for (lineno = pr->lnLow; base < halt; )
2184 count = *base & 0x0f;
2185 delta = *base++ >> 4;
2190 delta = (base[0] << 8) | base[1];
2191 if (delta >= 0x8000)
2195 lineno += delta; /* first delta is 0 */
2197 /* Complain if the line table overflows. Could happen
2198 with corrupt binaries. */
2199 if (lt->nitems >= maxlines)
2201 complain (&bad_linetable_guess_complaint, fdr_name (fh));
2204 k = add_line (lt, lineno, l, k);
2210 /* Master parsing procedure for first-pass reading of file symbols
2211 into a partial_symtab. */
2214 parse_partial_symbols (objfile, section_offsets)
2215 struct objfile *objfile;
2216 struct section_offsets *section_offsets;
2218 const bfd_size_type external_sym_size = debug_swap->external_sym_size;
2219 const bfd_size_type external_rfd_size = debug_swap->external_rfd_size;
2220 const bfd_size_type external_ext_size = debug_swap->external_ext_size;
2221 void (* const swap_ext_in) PARAMS ((bfd *, PTR, EXTR *))
2222 = debug_swap->swap_ext_in;
2223 void (* const swap_sym_in) PARAMS ((bfd *, PTR, SYMR *))
2224 = debug_swap->swap_sym_in;
2225 void (* const swap_rfd_in) PARAMS ((bfd *, PTR, RFDT *))
2226 = debug_swap->swap_rfd_in;
2228 HDRR *hdr = &debug_info->symbolic_header;
2229 /* Running pointers */
2234 register EXTR *ext_in;
2237 struct partial_symtab *pst;
2239 int past_first_source_file = 0;
2241 /* List of current psymtab's include files */
2242 char **psymtab_include_list;
2243 int includes_allocated;
2246 struct pst_map *fdr_to_pst;
2247 /* Index within current psymtab dependency list */
2248 struct partial_symtab **dependency_list;
2249 int dependencies_used, dependencies_allocated;
2250 struct cleanup *old_chain;
2252 enum language prev_language;
2253 asection *text_sect;
2254 int relocatable = 0;
2256 /* Irix 5.2 shared libraries have a fh->adr field of zero, but
2257 the shared libraries are prelinked at a high memory address.
2258 We have to adjust the start address of the object file for this case,
2259 by setting it to the start address of the first procedure in the file.
2260 But we should do no adjustments if we are debugging a .o file, where
2261 the text section (and fh->adr) really starts at zero. */
2262 text_sect = bfd_get_section_by_name (cur_bfd, ".text");
2263 if (text_sect != NULL
2264 && (bfd_get_section_flags (cur_bfd, text_sect) & SEC_RELOC))
2267 extern_tab = (EXTR *) obstack_alloc (&objfile->psymbol_obstack,
2268 sizeof (EXTR) * hdr->iextMax);
2270 includes_allocated = 30;
2272 psymtab_include_list = (char **) alloca (includes_allocated *
2274 next_symbol_text_func = mdebug_next_symbol_text;
2276 dependencies_allocated = 30;
2277 dependencies_used = 0;
2279 (struct partial_symtab **) alloca (dependencies_allocated *
2280 sizeof (struct partial_symtab *));
2282 last_source_file = NULL;
2287 * Only parse the Local and External symbols, and the Relative FDR.
2288 * Fixup enough of the loader symtab to be able to use it.
2289 * Allocate space only for the file's portions we need to
2294 max_glevel = MIN_GLEVEL;
2296 /* Allocate the map FDR -> PST.
2297 Minor hack: -O3 images might claim some global data belongs
2298 to FDR -1. We`ll go along with that */
2299 fdr_to_pst = (struct pst_map *) xzalloc ((hdr->ifdMax + 1) * sizeof *fdr_to_pst);
2300 old_chain = make_cleanup (free, fdr_to_pst);
2303 struct partial_symtab *pst = new_psymtab ("", objfile, section_offsets);
2304 fdr_to_pst[-1].pst = pst;
2308 /* Allocate the global pending list. */
2310 ((struct mdebug_pending **)
2311 obstack_alloc (&objfile->psymbol_obstack,
2312 hdr->ifdMax * sizeof (struct mdebug_pending *)));
2313 memset ((PTR) pending_list, 0,
2314 hdr->ifdMax * sizeof (struct mdebug_pending *));
2316 /* Pass 0 over external syms: swap them in. */
2317 ext_block = (EXTR *) xmalloc (hdr->iextMax * sizeof (EXTR));
2318 make_cleanup (free, ext_block);
2320 ext_out = (char *) debug_info->external_ext;
2321 ext_out_end = ext_out + hdr->iextMax * external_ext_size;
2323 for (; ext_out < ext_out_end; ext_out += external_ext_size, ext_in++)
2324 (*swap_ext_in) (cur_bfd, ext_out, ext_in);
2326 /* Pass 1 over external syms: Presize and partition the list */
2328 ext_in_end = ext_in + hdr->iextMax;
2329 for (; ext_in < ext_in_end; ext_in++)
2331 /* See calls to complain below. */
2332 if (ext_in->ifd >= -1
2333 && ext_in->ifd < hdr->ifdMax
2334 && ext_in->asym.iss >= 0
2335 && ext_in->asym.iss < hdr->issExtMax)
2336 fdr_to_pst[ext_in->ifd].n_globals++;
2339 /* Pass 1.5 over files: partition out global symbol space */
2341 for (f_idx = -1; f_idx < hdr->ifdMax; f_idx++)
2343 fdr_to_pst[f_idx].globals_offset = s_idx;
2344 s_idx += fdr_to_pst[f_idx].n_globals;
2345 fdr_to_pst[f_idx].n_globals = 0;
2348 /* Pass 2 over external syms: fill in external symbols */
2350 ext_in_end = ext_in + hdr->iextMax;
2351 for (; ext_in < ext_in_end; ext_in++)
2353 enum minimal_symbol_type ms_type = mst_text;
2354 CORE_ADDR svalue = ext_in->asym.value;
2356 /* The Irix 5 native tools seem to sometimes generate bogus
2357 external symbols. */
2358 if (ext_in->ifd < -1 || ext_in->ifd >= hdr->ifdMax)
2360 complain (&bad_ext_ifd_complaint, ext_in->ifd, hdr->ifdMax);
2363 if (ext_in->asym.iss < 0 || ext_in->asym.iss >= hdr->issExtMax)
2365 complain (&bad_ext_iss_complaint, ext_in->asym.iss,
2370 extern_tab[fdr_to_pst[ext_in->ifd].globals_offset
2371 + fdr_to_pst[ext_in->ifd].n_globals++] = *ext_in;
2373 if (ext_in->asym.sc == scUndefined || ext_in->asym.sc == scNil)
2376 name = debug_info->ssext + ext_in->asym.iss;
2377 switch (ext_in->asym.st)
2380 svalue += ANOFFSET (section_offsets, SECT_OFF_TEXT);
2383 ms_type = mst_file_text;
2384 svalue += ANOFFSET (section_offsets, SECT_OFF_TEXT);
2387 if (ext_in->asym.sc == scCommon || ext_in->asym.sc == scSCommon)
2389 /* The value of a common symbol is its size, not its address.
2393 else if (ext_in->asym.sc == scData
2394 || ext_in->asym.sc == scSData
2395 || ext_in->asym.sc == scRData
2396 || ext_in->asym.sc == scPData
2397 || ext_in->asym.sc == scXData)
2400 svalue += ANOFFSET (section_offsets, SECT_OFF_DATA);
2405 svalue += ANOFFSET (section_offsets, SECT_OFF_BSS);
2409 if (ext_in->asym.sc == scAbs)
2411 else if (ext_in->asym.sc == scText
2412 || ext_in->asym.sc == scInit
2413 || ext_in->asym.sc == scFini)
2415 ms_type = mst_file_text;
2416 svalue += ANOFFSET (section_offsets, SECT_OFF_TEXT);
2418 else if (ext_in->asym.sc == scData
2419 || ext_in->asym.sc == scSData
2420 || ext_in->asym.sc == scRData
2421 || ext_in->asym.sc == scPData
2422 || ext_in->asym.sc == scXData)
2424 ms_type = mst_file_data;
2425 svalue += ANOFFSET (section_offsets, SECT_OFF_DATA);
2429 ms_type = mst_file_bss;
2430 svalue += ANOFFSET (section_offsets, SECT_OFF_BSS);
2434 /* The alpha has the section start addresses in stLocal symbols
2435 whose name starts with a `.'. Skip those but complain for all
2436 other stLocal symbols. */
2441 ms_type = mst_unknown;
2442 complain (&unknown_ext_complaint, name);
2444 prim_record_minimal_symbol (name, svalue, ms_type, objfile);
2447 /* Pass 3 over files, over local syms: fill in static symbols */
2448 for (f_idx = 0; f_idx < hdr->ifdMax; f_idx++)
2450 struct partial_symtab *save_pst;
2454 cur_fdr = fh = debug_info->fdr + f_idx;
2458 fdr_to_pst[f_idx].pst = NULL;
2462 /* Determine the start address for this object file from the
2463 file header and relocate it, except for Irix 5.2 zero fh->adr. */
2467 if (relocatable || textlow != 0)
2468 textlow += ANOFFSET (section_offsets, SECT_OFF_TEXT);
2472 pst = start_psymtab_common (objfile, section_offsets,
2475 objfile->global_psymbols.next,
2476 objfile->static_psymbols.next);
2477 pst->read_symtab_private = ((char *)
2478 obstack_alloc (&objfile->psymbol_obstack,
2479 sizeof (struct symloc)));
2480 memset ((PTR) pst->read_symtab_private, 0, sizeof (struct symloc));
2483 FDR_IDX (pst) = f_idx;
2484 CUR_BFD (pst) = cur_bfd;
2485 DEBUG_SWAP (pst) = debug_swap;
2486 DEBUG_INFO (pst) = debug_info;
2487 PENDING_LIST (pst) = pending_list;
2489 /* The way to turn this into a symtab is to call... */
2490 pst->read_symtab = mdebug_psymtab_to_symtab;
2492 /* Set up language for the pst.
2493 The language from the FDR is used if it is unambigious (e.g. cfront
2494 with native cc and g++ will set the language to C).
2495 Otherwise we have to deduce the language from the filename.
2496 Native ecoff has every header file in a separate FDR, so
2497 deduce_language_from_filename will return language_unknown for
2498 a header file, which is not what we want.
2499 But the FDRs for the header files are after the FDR for the source
2500 file, so we can assign the language of the source file to the
2501 following header files. Then we save the language in the private
2502 pst data so that we can reuse it when building symtabs. */
2503 prev_language = psymtab_language;
2507 case langCplusplusV2:
2508 psymtab_language = language_cplus;
2511 psymtab_language = deduce_language_from_filename (fdr_name (fh));
2514 if (psymtab_language == language_unknown)
2515 psymtab_language = prev_language;
2516 PST_PRIVATE (pst)->pst_language = psymtab_language;
2518 pst->texthigh = pst->textlow;
2520 /* For stabs-in-ecoff files, the second symbol must be @stab.
2521 This symbol is emitted by mips-tfile to signal that the
2522 current object file uses encapsulated stabs instead of mips
2523 ecoff for local symbols. (It is the second symbol because
2524 the first symbol is the stFile used to signal the start of a
2526 processing_gcc_compilation = 0;
2529 (*swap_sym_in) (cur_bfd,
2530 ((char *) debug_info->external_sym
2531 + (fh->isymBase + 1) * external_sym_size),
2533 if (STREQ (debug_info->ss + fh->issBase + sh.iss, stabs_symbol))
2534 processing_gcc_compilation = 2;
2537 if (processing_gcc_compilation != 0)
2539 for (cur_sdx = 2; cur_sdx < fh->csym; cur_sdx++)
2544 (*swap_sym_in) (cur_bfd,
2545 (((char *) debug_info->external_sym)
2546 + (fh->isymBase + cur_sdx) * external_sym_size),
2548 type_code = ECOFF_UNMARK_STAB (sh.index);
2549 if (!ECOFF_IS_STAB (&sh))
2551 if (sh.st == stProc || sh.st == stStaticProc)
2556 sh.value += ANOFFSET (section_offsets, SECT_OFF_TEXT);
2557 if (sh.st == stStaticProc)
2559 namestring = debug_info->ss + fh->issBase + sh.iss;
2560 prim_record_minimal_symbol_and_info (namestring,
2567 procaddr = sh.value;
2569 isym = AUX_GET_ISYM (fh->fBigendian,
2570 (debug_info->external_aux
2573 (*swap_sym_in) (cur_bfd,
2574 ((char *) debug_info->external_sym
2575 + ((fh->isymBase + isym - 1)
2576 * external_sym_size)),
2580 long high = procaddr + sh.value;
2582 /* Kludge for Irix 5.2 zero fh->adr. */
2584 && (pst->textlow == 0 || procaddr < pst->textlow))
2585 pst->textlow = procaddr;
2586 if (high > pst->texthigh)
2587 pst->texthigh = high;
2590 else if (sh.st == stStatic)
2604 namestring = debug_info->ss + fh->issBase + sh.iss;
2605 sh.value += ANOFFSET (section_offsets, SECT_OFF_DATA);
2606 prim_record_minimal_symbol_and_info (namestring,
2615 namestring = debug_info->ss + fh->issBase + sh.iss;
2616 sh.value += ANOFFSET (section_offsets, SECT_OFF_BSS);
2617 prim_record_minimal_symbol_and_info (namestring,
2628 #define SET_NAMESTRING() \
2629 namestring = debug_info->ss + fh->issBase + sh.iss
2630 #define CUR_SYMBOL_TYPE type_code
2631 #define CUR_SYMBOL_VALUE sh.value
2632 #define START_PSYMTAB(ofile,secoff,fname,low,symoff,global_syms,static_syms)\
2634 #define END_PSYMTAB(pst,ilist,ninc,c_off,c_text,dep_list,n_deps) (void)0
2635 #define HANDLE_RBRAC(val) \
2636 if ((val) > save_pst->texthigh) save_pst->texthigh = (val);
2637 #include "partial-stab.h"
2642 for (cur_sdx = 0; cur_sdx < fh->csym;)
2645 enum address_class class;
2647 (*swap_sym_in) (cur_bfd,
2648 ((char *) debug_info->external_sym
2649 + ((fh->isymBase + cur_sdx)
2650 * external_sym_size)),
2653 if (ECOFF_IS_STAB (&sh))
2659 /* Non absolute static symbols go into the minimal table. */
2660 if (sh.sc == scUndefined || sh.sc == scNil
2661 || (sh.index == indexNil
2662 && (sh.st != stStatic || sh.sc == scAbs)))
2664 /* FIXME, premature? */
2669 name = debug_info->ss + fh->issBase + sh.iss;
2674 /* The value of a stEnd symbol is the displacement from the
2675 corresponding start symbol value, do not relocate it. */
2677 sh.value += ANOFFSET (section_offsets, SECT_OFF_TEXT);
2684 sh.value += ANOFFSET (section_offsets, SECT_OFF_DATA);
2688 sh.value += ANOFFSET (section_offsets, SECT_OFF_BSS);
2699 prim_record_minimal_symbol_and_info (name, sh.value,
2700 mst_file_text, NULL,
2701 SECT_OFF_TEXT, objfile);
2706 /* Usually there is a local and a global stProc symbol
2707 for a function. This means that the function name
2708 has already been entered into the mimimal symbol table
2709 while processing the global symbols in pass 2 above.
2710 One notable exception is the PROGRAM name from
2711 f77 compiled executables, it is only put out as
2712 local stProc symbol, and a global MAIN__ stProc symbol
2713 points to it. It doesn't matter though, as gdb is
2714 still able to find the PROGRAM name via the partial
2715 symbol table, and the MAIN__ symbol via the minimal
2717 if (sh.st == stProc)
2718 add_psymbol_to_list (name, strlen (name),
2719 VAR_NAMESPACE, LOC_BLOCK,
2720 &objfile->global_psymbols,
2721 sh.value, 0, psymtab_language, objfile);
2723 add_psymbol_to_list (name, strlen (name),
2724 VAR_NAMESPACE, LOC_BLOCK,
2725 &objfile->static_psymbols,
2726 sh.value, 0, psymtab_language, objfile);
2728 /* Skip over procedure to next one. */
2729 if (sh.index >= hdr->iauxMax)
2731 /* Should not happen, but does when cross-compiling
2732 with the MIPS compiler. FIXME -- pull later. */
2733 complain (&index_complaint, name);
2734 new_sdx = cur_sdx + 1; /* Don't skip at all */
2737 new_sdx = AUX_GET_ISYM (fh->fBigendian,
2738 (debug_info->external_aux
2741 procaddr = sh.value;
2743 if (new_sdx <= cur_sdx)
2745 /* This should not happen either... FIXME. */
2746 complain (&aux_index_complaint, name);
2747 new_sdx = cur_sdx + 1; /* Don't skip backward */
2751 (*swap_sym_in) (cur_bfd,
2752 ((char *) debug_info->external_sym
2753 + ((fh->isymBase + cur_sdx - 1)
2754 * external_sym_size)),
2759 /* Kludge for Irix 5.2 zero fh->adr. */
2761 && (pst->textlow == 0 || procaddr < pst->textlow))
2762 pst->textlow = procaddr;
2764 high = procaddr + sh.value;
2765 if (high > pst->texthigh)
2766 pst->texthigh = high;
2769 case stStatic: /* Variable */
2774 || sh.sc == scXData)
2775 prim_record_minimal_symbol_and_info (name, sh.value,
2776 mst_file_data, NULL,
2780 prim_record_minimal_symbol_and_info (name, sh.value,
2787 case stIndirect:/* Irix5 forward declaration */
2788 /* Skip forward declarations from Irix5 cc */
2791 case stTypedef:/* Typedef */
2792 /* Skip typedefs for forward declarations and opaque
2793 structs from alpha and mips cc. */
2794 if (sh.iss == 0 || has_opaque_xref (fh, &sh))
2796 class = LOC_TYPEDEF;
2799 case stConstant: /* Constant decl */
2806 case stBlock: /* { }, str, un, enum*/
2807 /* Do not create a partial symbol for cc unnamed aggregates
2808 and gcc empty aggregates. */
2809 if ((sh.sc == scInfo
2810 || sh.sc == scCommon || sh.sc == scSCommon)
2812 && sh.index != cur_sdx + 2)
2814 add_psymbol_to_list (name, strlen (name),
2815 STRUCT_NAMESPACE, LOC_TYPEDEF,
2816 &objfile->static_psymbols,
2818 psymtab_language, objfile);
2820 handle_psymbol_enumerators (objfile, fh, sh.st, sh.value);
2822 /* Skip over the block */
2824 if (new_sdx <= cur_sdx)
2826 /* This happens with the Ultrix kernel. */
2827 complain (&block_index_complaint, name);
2828 new_sdx = cur_sdx + 1; /* Don't skip backward */
2833 case stFile: /* File headers */
2834 case stLabel: /* Labels */
2835 case stEnd: /* Ends of files */
2838 case stLocal: /* Local variables */
2839 /* Normally these are skipped because we skip over
2840 all blocks we see. However, these can occur
2841 as visible symbols in a .h file that contains code. */
2845 /* Both complaints are valid: one gives symbol name,
2846 the other the offending symbol type. */
2847 complain (&unknown_sym_complaint, name);
2848 complain (&unknown_st_complaint, sh.st);
2852 /* Use this gdb symbol */
2853 add_psymbol_to_list (name, strlen (name),
2854 VAR_NAMESPACE, class,
2855 &objfile->static_psymbols, sh.value,
2856 0, psymtab_language, objfile);
2858 cur_sdx++; /* Go to next file symbol */
2861 /* Now do enter the external symbols. */
2862 ext_ptr = &extern_tab[fdr_to_pst[f_idx].globals_offset];
2863 cur_sdx = fdr_to_pst[f_idx].n_globals;
2864 PST_PRIVATE (save_pst)->extern_count = cur_sdx;
2865 PST_PRIVATE (save_pst)->extern_tab = ext_ptr;
2866 for (; --cur_sdx >= 0; ext_ptr++)
2868 enum address_class class;
2873 if (ext_ptr->ifd != f_idx)
2875 psh = &ext_ptr->asym;
2877 /* Do not add undefined symbols to the partial symbol table. */
2878 if (psh->sc == scUndefined || psh->sc == scNil)
2881 svalue = psh->value;
2885 svalue += ANOFFSET (section_offsets, SECT_OFF_TEXT);
2892 svalue += ANOFFSET (section_offsets, SECT_OFF_DATA);
2896 svalue += ANOFFSET (section_offsets, SECT_OFF_BSS);
2903 /* These are generated for static symbols in .o files,
2908 /* External procedure symbols have been entered
2909 into the minimal symbol table in pass 2 above.
2910 Ignore them, as parse_external will ignore them too. */
2916 complain (&unknown_ext_complaint,
2917 debug_info->ssext + psh->iss);
2918 /* Fall through, pretend it's global. */
2920 /* Global common symbols are resolved by the runtime loader,
2922 if (psh->sc == scCommon || psh->sc == scSCommon)
2928 name = debug_info->ssext + psh->iss;
2929 add_psymbol_to_list (name, strlen (name),
2930 VAR_NAMESPACE, class,
2931 &objfile->global_psymbols,
2933 psymtab_language, objfile);
2937 /* Link pst to FDR. end_psymtab returns NULL if the psymtab was
2938 empty and put on the free list. */
2939 fdr_to_pst[f_idx].pst = end_psymtab (save_pst,
2940 psymtab_include_list, includes_used,
2941 -1, save_pst->texthigh,
2942 dependency_list, dependencies_used);
2944 dependencies_used = 0;
2946 if (objfile->ei.entry_point >= save_pst->textlow &&
2947 objfile->ei.entry_point < save_pst->texthigh)
2949 objfile->ei.entry_file_lowpc = save_pst->textlow;
2950 objfile->ei.entry_file_highpc = save_pst->texthigh;
2953 /* The objfile has its functions reordered if this partial symbol
2954 table overlaps any other partial symbol table.
2955 We cannot assume a reordered objfile if a partial symbol table
2956 is contained within another partial symbol table, as partial symbol
2957 tables for include files with executable code are contained
2958 within the partial symbol table for the including source file,
2959 and we do not want to flag the objfile reordered for these cases.
2961 This strategy works well for Irix-5.2 shared libraries, but we
2962 might have to use a more elaborate (and slower) algorithm for
2964 save_pst = fdr_to_pst[f_idx].pst;
2965 if (save_pst != NULL
2966 && save_pst->textlow != 0
2967 && !(objfile->flags & OBJF_REORDERED))
2969 ALL_OBJFILE_PSYMTABS (objfile, pst)
2972 && save_pst->textlow >= pst->textlow
2973 && save_pst->textlow < pst->texthigh
2974 && save_pst->texthigh > pst->texthigh)
2976 objfile->flags |= OBJF_REORDERED;
2983 /* Now scan the FDRs for dependencies */
2984 for (f_idx = 0; f_idx < hdr->ifdMax; f_idx++)
2986 fh = f_idx + debug_info->fdr;
2987 pst = fdr_to_pst[f_idx].pst;
2989 if (pst == (struct partial_symtab *)NULL)
2992 /* This should catch stabs-in-ecoff. */
2996 /* Skip the first file indirect entry as it is a self dependency
2997 for source files or a reverse .h -> .c dependency for header files. */
2998 pst->number_of_dependencies = 0;
3000 ((struct partial_symtab **)
3001 obstack_alloc (&objfile->psymbol_obstack,
3003 * sizeof (struct partial_symtab *))));
3004 for (s_idx = 1; s_idx < fh->crfd; s_idx++)
3008 (*swap_rfd_in) (cur_bfd,
3009 ((char *) debug_info->external_rfd
3010 + (fh->rfdBase + s_idx) * external_rfd_size),
3012 if (rh < 0 || rh >= hdr->ifdMax)
3014 complain (&bad_file_number_complaint, rh);
3018 /* Skip self dependencies of header files. */
3022 /* Do not add to dependeny list if psymtab was empty. */
3023 if (fdr_to_pst[rh].pst == (struct partial_symtab *)NULL)
3025 pst->dependencies[pst->number_of_dependencies++] = fdr_to_pst[rh].pst;
3029 /* Remove the dummy psymtab created for -O3 images above, if it is
3030 still empty, to enable the detection of stripped executables. */
3031 if (objfile->psymtabs->next == NULL
3032 && objfile->psymtabs->number_of_dependencies == 0
3033 && objfile->psymtabs->n_global_syms == 0
3034 && objfile->psymtabs->n_static_syms == 0)
3035 objfile->psymtabs = NULL;
3036 do_cleanups (old_chain);
3039 /* If the current psymbol has an enumerated type, we need to add
3040 all the the enum constants to the partial symbol table. */
3043 handle_psymbol_enumerators (objfile, fh, stype, svalue)
3044 struct objfile *objfile;
3049 const bfd_size_type external_sym_size = debug_swap->external_sym_size;
3050 void (* const swap_sym_in) PARAMS ((bfd *, PTR, SYMR *))
3051 = debug_swap->swap_sym_in;
3052 char *ext_sym = ((char *) debug_info->external_sym
3053 + ((fh->isymBase + cur_sdx + 1) * external_sym_size));
3063 /* It is an enumerated type if the next symbol entry is a stMember
3064 and its auxiliary index is indexNil or its auxiliary entry
3065 is a plain btNil or btVoid.
3066 Alpha cc -migrate enums are recognized by a zero index and
3067 a zero symbol value. */
3068 (*swap_sym_in) (cur_bfd, ext_sym, &sh);
3069 if (sh.st != stMember)
3072 if (sh.index == indexNil
3073 || (sh.index == 0 && svalue == 0))
3075 (*debug_swap->swap_tir_in) (fh->fBigendian,
3076 &(debug_info->external_aux
3077 + fh->iauxBase + sh.index)->a_ti,
3079 if ((tir.bt != btNil && tir.bt != btVoid) || tir.tq0 != tqNil)
3091 (*swap_sym_in) (cur_bfd, ext_sym, &sh);
3092 if (sh.st != stMember)
3094 name = debug_info->ss + cur_fdr->issBase + sh.iss;
3096 /* Note that the value doesn't matter for enum constants
3097 in psymtabs, just in symtabs. */
3098 add_psymbol_to_list (name, strlen (name),
3099 VAR_NAMESPACE, LOC_CONST,
3100 &objfile->static_psymbols, 0,
3101 0, psymtab_language, objfile);
3102 ext_sym += external_sym_size;
3107 mdebug_next_symbol_text (objfile)
3108 struct objfile *objfile; /* argument objfile is currently unused */
3113 (*debug_swap->swap_sym_in) (cur_bfd,
3114 ((char *) debug_info->external_sym
3115 + ((cur_fdr->isymBase + cur_sdx)
3116 * debug_swap->external_sym_size)),
3118 return debug_info->ss + cur_fdr->issBase + sh.iss;
3121 /* Ancillary function to psymtab_to_symtab(). Does all the work
3122 for turning the partial symtab PST into a symtab, recurring
3123 first on all dependent psymtabs. The argument FILENAME is
3124 only passed so we can see in debug stack traces what file
3127 This function has a split personality, based on whether the
3128 symbol table contains ordinary ecoff symbols, or stabs-in-ecoff.
3129 The flow of control and even the memory allocation differs. FIXME. */
3132 psymtab_to_symtab_1 (pst, filename)
3133 struct partial_symtab *pst;
3136 bfd_size_type external_sym_size;
3137 bfd_size_type external_pdr_size;
3138 void (*swap_sym_in) PARAMS ((bfd *, PTR, SYMR *));
3139 void (*swap_pdr_in) PARAMS ((bfd *, PTR, PDR *));
3143 struct linetable *lines;
3144 CORE_ADDR lowest_pdr_addr = 0;
3150 /* Read in all partial symbtabs on which this one is dependent.
3151 NOTE that we do have circular dependencies, sigh. We solved
3152 that by setting pst->readin before this point. */
3154 for (i = 0; i < pst->number_of_dependencies; i++)
3155 if (!pst->dependencies[i]->readin)
3157 /* Inform about additional files to be read in. */
3160 fputs_filtered (" ", gdb_stdout);
3162 fputs_filtered ("and ", gdb_stdout);
3164 printf_filtered ("%s...",
3165 pst->dependencies[i]->filename);
3166 wrap_here (""); /* Flush output */
3167 gdb_flush (gdb_stdout);
3169 /* We only pass the filename for debug purposes */
3170 psymtab_to_symtab_1 (pst->dependencies[i],
3171 pst->dependencies[i]->filename);
3174 /* Do nothing if this is a dummy psymtab. */
3176 if (pst->n_global_syms == 0 && pst->n_static_syms == 0
3177 && pst->textlow == 0 && pst->texthigh == 0)
3180 /* Now read the symbols for this symtab */
3182 cur_bfd = CUR_BFD (pst);
3183 debug_swap = DEBUG_SWAP (pst);
3184 debug_info = DEBUG_INFO (pst);
3185 pending_list = PENDING_LIST (pst);
3186 external_sym_size = debug_swap->external_sym_size;
3187 external_pdr_size = debug_swap->external_pdr_size;
3188 swap_sym_in = debug_swap->swap_sym_in;
3189 swap_pdr_in = debug_swap->swap_pdr_in;
3190 current_objfile = pst->objfile;
3191 cur_fd = FDR_IDX (pst);
3192 fh = ((cur_fd == -1)
3194 : debug_info->fdr + cur_fd);
3197 /* See comment in parse_partial_symbols about the @stabs sentinel. */
3198 processing_gcc_compilation = 0;
3199 if (fh != (FDR *) NULL && fh->csym >= 2)
3203 (*swap_sym_in) (cur_bfd,
3204 ((char *) debug_info->external_sym
3205 + (fh->isymBase + 1) * external_sym_size),
3207 if (STREQ (debug_info->ss + fh->issBase + sh.iss,
3210 /* We indicate that this is a GCC compilation so that certain
3211 features will be enabled in stabsread/dbxread. */
3212 processing_gcc_compilation = 2;
3216 if (processing_gcc_compilation != 0)
3219 /* This symbol table contains stabs-in-ecoff entries. */
3221 /* Parse local symbols first */
3223 if (fh->csym <= 2) /* FIXME, this blows psymtab->symtab ptr */
3225 current_objfile = NULL;
3228 for (cur_sdx = 2; cur_sdx < fh->csym; cur_sdx++)
3234 (*swap_sym_in) (cur_bfd,
3235 (((char *) debug_info->external_sym)
3236 + (fh->isymBase + cur_sdx) * external_sym_size),
3238 name = debug_info->ss + fh->issBase + sh.iss;
3240 if (ECOFF_IS_STAB (&sh))
3242 int type_code = ECOFF_UNMARK_STAB (sh.index);
3244 /* We should never get non N_STAB symbols here, but they
3245 should be harmless, so keep process_one_symbol from
3246 complaining about them. */
3247 if (type_code & N_STAB)
3249 process_one_symbol (type_code, 0, valu, name,
3250 pst->section_offsets, pst->objfile);
3252 if (type_code == N_FUN)
3254 /* Make up special symbol to contain
3255 procedure specific info */
3256 struct mips_extra_func_info *e =
3257 ((struct mips_extra_func_info *)
3258 obstack_alloc (¤t_objfile->symbol_obstack,
3259 sizeof (struct mips_extra_func_info)));
3260 struct symbol *s = new_symbol (MIPS_EFI_SYMBOL_NAME);
3262 memset ((PTR) e, 0, sizeof (struct mips_extra_func_info));
3263 SYMBOL_NAMESPACE (s) = LABEL_NAMESPACE;
3264 SYMBOL_CLASS (s) = LOC_CONST;
3265 SYMBOL_TYPE (s) = mdebug_type_void;
3266 SYMBOL_VALUE (s) = (long) e;
3267 e->pdr.framereg = -1;
3268 add_symbol_to_list (s, &local_symbols);
3271 else if (sh.st == stLabel)
3273 if (sh.index == indexNil)
3275 /* This is what the gcc2_compiled and __gnu_compiled_*
3276 show up as. So don't complain. */
3281 /* Handle encoded stab line number. */
3282 valu += ANOFFSET (pst->section_offsets, SECT_OFF_TEXT);
3283 record_line (current_subfile, sh.index, valu);
3286 else if (sh.st == stProc || sh.st == stStaticProc
3287 || sh.st == stStatic || sh.st == stEnd)
3288 /* These are generated by gcc-2.x, do not complain */
3291 complain (&stab_unknown_complaint, name);
3293 st = end_symtab (pst->texthigh, pst->objfile, SECT_OFF_TEXT);
3296 /* Sort the symbol table now, we are done adding symbols to it.
3297 We must do this before parse_procedure calls lookup_symbol. */
3298 sort_symtab_syms (st);
3300 /* There used to be a call to sort_blocks here, but this should not
3301 be necessary for stabs symtabs. And as sort_blocks modifies the
3302 start address of the GLOBAL_BLOCK to the FIRST_LOCAL_BLOCK,
3303 it did the wrong thing if the first procedure in a file was
3304 generated via asm statements. */
3306 /* Fill in procedure info next. */
3310 struct cleanup *old_chain;
3316 pr_block = (PDR *) xmalloc (fh->cpd * sizeof (PDR));
3317 old_chain = make_cleanup (free, pr_block);
3319 pdr_ptr = ((char *) debug_info->external_pdr
3320 + fh->ipdFirst * external_pdr_size);
3321 pdr_end = pdr_ptr + fh->cpd * external_pdr_size;
3325 pdr_ptr += external_pdr_size, pdr_in++)
3327 (*swap_pdr_in) (cur_bfd, pdr_ptr, pdr_in);
3329 /* Determine lowest PDR address, the PDRs are not always
3331 if (pdr_in == pr_block)
3332 lowest_pdr_addr = pdr_in->adr;
3333 else if (pdr_in->adr < lowest_pdr_addr)
3334 lowest_pdr_addr = pdr_in->adr;
3338 pdr_in_end = pdr_in + fh->cpd;
3339 for (; pdr_in < pdr_in_end; pdr_in++)
3340 parse_procedure (pdr_in, st, lowest_pdr_addr, pst);
3342 do_cleanups (old_chain);
3347 /* This symbol table contains ordinary ecoff entries. */
3353 /* How many symbols will we need */
3354 /* FIXME, this does not count enum values. */
3355 f_max = pst->n_global_syms + pst->n_static_syms;
3359 st = new_symtab ("unknown", f_max, 0, pst->objfile);
3363 f_max += fh->csym + fh->cpd;
3364 maxlines = 2 * fh->cline;
3365 st = new_symtab (pst->filename, 2 * f_max, maxlines, pst->objfile);
3367 /* The proper language was already determined when building
3368 the psymtab, use it. */
3369 st->language = PST_PRIVATE (pst)->pst_language;
3372 psymtab_language = st->language;
3374 lines = LINETABLE (st);
3376 /* Get a new lexical context */
3378 push_parse_stack ();
3379 top_stack->cur_st = st;
3380 top_stack->cur_block = BLOCKVECTOR_BLOCK (BLOCKVECTOR (st),
3382 BLOCK_START (top_stack->cur_block) = pst->textlow;
3383 BLOCK_END (top_stack->cur_block) = 0;
3384 top_stack->blocktype = stFile;
3385 top_stack->maxsyms = 2 * f_max;
3386 top_stack->cur_type = 0;
3387 top_stack->procadr = 0;
3388 top_stack->numargs = 0;
3389 found_ecoff_debugging_info = 0;
3396 /* Parse local symbols first */
3397 sym_ptr = ((char *) debug_info->external_sym
3398 + fh->isymBase * external_sym_size);
3399 sym_end = sym_ptr + fh->csym * external_sym_size;
3400 while (sym_ptr < sym_end)
3405 (*swap_sym_in) (cur_bfd, sym_ptr, &sh);
3406 c = parse_symbol (&sh,
3407 debug_info->external_aux + fh->iauxBase,
3408 sym_ptr, fh->fBigendian, pst->section_offsets);
3409 sym_ptr += c * external_sym_size;
3412 /* Linenumbers. At the end, check if we can save memory.
3413 parse_lines has to look ahead an arbitrary number of PDR
3414 structures, so we swap them all first. */
3418 struct cleanup *old_chain;
3424 pr_block = (PDR *) xmalloc (fh->cpd * sizeof (PDR));
3426 old_chain = make_cleanup (free, pr_block);
3428 pdr_ptr = ((char *) debug_info->external_pdr
3429 + fh->ipdFirst * external_pdr_size);
3430 pdr_end = pdr_ptr + fh->cpd * external_pdr_size;
3434 pdr_ptr += external_pdr_size, pdr_in++)
3436 (*swap_pdr_in) (cur_bfd, pdr_ptr, pdr_in);
3438 /* Determine lowest PDR address, the PDRs are not always
3440 if (pdr_in == pr_block)
3441 lowest_pdr_addr = pdr_in->adr;
3442 else if (pdr_in->adr < lowest_pdr_addr)
3443 lowest_pdr_addr = pdr_in->adr;
3446 parse_lines (fh, pr_block, lines, maxlines, pst, lowest_pdr_addr);
3447 if (lines->nitems < fh->cline)
3448 lines = shrink_linetable (lines);
3450 /* Fill in procedure info next. */
3452 pdr_in_end = pdr_in + fh->cpd;
3453 for (; pdr_in < pdr_in_end; pdr_in++)
3454 parse_procedure (pdr_in, 0, lowest_pdr_addr, pst);
3456 do_cleanups (old_chain);
3460 LINETABLE (st) = lines;
3462 /* .. and our share of externals.
3463 XXX use the global list to speed up things here. how?
3464 FIXME, Maybe quit once we have found the right number of ext's? */
3465 top_stack->cur_st = st;
3466 top_stack->cur_block = BLOCKVECTOR_BLOCK (BLOCKVECTOR (top_stack->cur_st),
3468 top_stack->blocktype = stFile;
3470 = (debug_info->symbolic_header.isymMax
3471 + debug_info->symbolic_header.ipdMax
3472 + debug_info->symbolic_header.iextMax);
3474 ext_ptr = PST_PRIVATE (pst)->extern_tab;
3475 for (i = PST_PRIVATE (pst)->extern_count; --i >= 0; ext_ptr++)
3476 parse_external (ext_ptr, fh->fBigendian, pst->section_offsets);
3478 /* If there are undefined symbols, tell the user.
3479 The alpha has an undefined symbol for every symbol that is
3480 from a shared library, so tell the user only if verbose is on. */
3481 if (info_verbose && n_undef_symbols)
3483 printf_filtered ("File %s contains %d unresolved references:",
3484 st->filename, n_undef_symbols);
3485 printf_filtered ("\n\t%4d variables\n\t%4d procedures\n\t%4d labels\n",
3486 n_undef_vars, n_undef_procs, n_undef_labels);
3487 n_undef_symbols = n_undef_labels = n_undef_vars = n_undef_procs = 0;
3494 /* Sort the symbol table now, we are done adding symbols to it.*/
3495 sort_symtab_syms (st);
3500 /* Now link the psymtab and the symtab. */
3503 current_objfile = NULL;
3506 /* Ancillary parsing procedures. */
3508 /* Return 1 if the symbol pointed to by SH has a cross reference
3509 to an opaque aggregate type, else 0. */
3512 has_opaque_xref (fh, sh)
3521 if (sh->index == indexNil)
3524 ax = debug_info->external_aux + fh->iauxBase + sh->index;
3525 (*debug_swap->swap_tir_in) (fh->fBigendian, &ax->a_ti, &tir);
3526 if (tir.bt != btStruct && tir.bt != btUnion && tir.bt != btEnum)
3530 (*debug_swap->swap_rndx_in) (fh->fBigendian, &ax->a_rndx, rn);
3531 if (rn->rfd == 0xfff)
3532 rf = AUX_GET_ISYM (fh->fBigendian, ax + 1);
3540 /* Lookup the type at relative index RN. Return it in TPP
3541 if found and in any event come up with its name PNAME.
3542 BIGEND says whether aux symbols are big-endian or not (from fh->fBigendian).
3543 Return value says how many aux symbols we ate. */
3546 cross_ref (fd, ax, tpp, type_code, pname, bigend, sym_name)
3550 enum type_code type_code; /* Use to alloc new type if none is found. */
3562 struct mdebug_pending *pend;
3564 *tpp = (struct type *)NULL;
3566 (*debug_swap->swap_rndx_in) (bigend, &ax->a_rndx, rn);
3568 /* Escape index means 'the next one' */
3569 if (rn->rfd == 0xfff)
3572 rf = AUX_GET_ISYM (bigend, ax + 1);
3579 /* mips cc uses a rf of -1 for opaque struct definitions.
3580 Set TYPE_FLAG_STUB for these types so that check_typedef will
3581 resolve them if the struct gets defined in another compilation unit. */
3584 *pname = "<undefined>";
3585 *tpp = init_type (type_code, 0, 0, (char *) NULL, current_objfile);
3586 TYPE_FLAGS (*tpp) |= TYPE_FLAG_STUB;
3590 /* mips cc uses an escaped rn->index of 0 for struct return types
3591 of procedures that were compiled without -g. These will always remain
3593 if (rn->rfd == 0xfff && rn->index == 0)
3595 *pname = "<undefined>";
3599 /* Find the relative file descriptor and the symbol in it. */
3600 fh = get_rfd (fd, rf);
3601 xref_fd = fh - debug_info->fdr;
3603 if (rn->index >= fh->csym)
3605 /* File indirect entry is corrupt. */
3606 *pname = "<illegal>";
3607 complain (&bad_rfd_entry_complaint,
3608 sym_name, xref_fd, rn->index);
3612 /* If we have processed this symbol then we left a forwarding
3613 pointer to the type in the pending list. If not, we`ll put
3614 it in a list of pending types, to be processed later when
3615 the file will be. In any event, we collect the name for the
3618 esh = ((char *) debug_info->external_sym
3619 + ((fh->isymBase + rn->index)
3620 * debug_swap->external_sym_size));
3621 (*debug_swap->swap_sym_in) (cur_bfd, esh, &sh);
3623 /* Make sure that this type of cross reference can be handled. */
3624 if ((sh.sc != scInfo
3625 || (sh.st != stBlock && sh.st != stTypedef && sh.st != stIndirect
3626 && sh.st != stStruct && sh.st != stUnion
3627 && sh.st != stEnum))
3628 && (sh.st != stBlock || (sh.sc != scCommon && sh.sc != scSCommon)))
3630 /* File indirect entry is corrupt. */
3631 *pname = "<illegal>";
3632 complain (&bad_rfd_entry_complaint,
3633 sym_name, xref_fd, rn->index);
3637 *pname = debug_info->ss + fh->issBase + sh.iss;
3639 pend = is_pending_symbol (fh, esh);
3644 /* We have not yet seen this type. */
3646 if ((sh.iss == 0 && sh.st == stTypedef) || sh.st == stIndirect)
3650 /* alpha cc puts out a stTypedef with a sh.iss of zero for
3652 a) forward declarations of structs/unions/enums which are not
3653 defined in this compilation unit.
3654 For these the type will be void. This is a bad design decision
3655 as cross referencing across compilation units is impossible
3656 due to the missing name.
3657 b) forward declarations of structs/unions/enums/typedefs which
3658 are defined later in this file or in another file in the same
3659 compilation unit. Irix5 cc uses a stIndirect symbol for this.
3660 Simply cross reference those again to get the true type.
3661 The forward references are not entered in the pending list and
3662 in the symbol table. */
3664 (*debug_swap->swap_tir_in) (bigend,
3665 &(debug_info->external_aux
3666 + fh->iauxBase + sh.index)->a_ti,
3668 if (tir.tq0 != tqNil)
3669 complain (&illegal_forward_tq0_complaint, sym_name);
3673 *tpp = init_type (type_code, 0, 0, (char *) NULL,
3675 *pname = "<undefined>";
3682 (debug_info->external_aux
3683 + fh->iauxBase + sh.index + 1),
3684 tpp, type_code, pname,
3685 fh->fBigendian, sym_name);
3689 /* Follow a forward typedef. This might recursively
3690 call cross_ref till we get a non typedef'ed type.
3691 FIXME: This is not correct behaviour, but gdb currently
3692 cannot handle typedefs without type copying. Type
3693 copying is impossible as we might have mutual forward
3694 references between two files and the copied type would not
3695 get filled in when we later parse its definition. */
3696 *tpp = parse_type (xref_fd,
3697 debug_info->external_aux + fh->iauxBase,
3701 debug_info->ss + fh->issBase + sh.iss);
3702 add_pending (fh, esh, *tpp);
3706 complain (&illegal_forward_bt_complaint, tir.bt, sym_name);
3707 *tpp = init_type (type_code, 0, 0, (char *) NULL,
3713 else if (sh.st == stTypedef)
3715 /* Parse the type for a normal typedef. This might recursively call
3716 cross_ref till we get a non typedef'ed type.
3717 FIXME: This is not correct behaviour, but gdb currently
3718 cannot handle typedefs without type copying. But type copying is
3719 impossible as we might have mutual forward references between
3720 two files and the copied type would not get filled in when
3721 we later parse its definition. */
3722 *tpp = parse_type (xref_fd,
3723 debug_info->external_aux + fh->iauxBase,
3727 debug_info->ss + fh->issBase + sh.iss);
3731 /* Cross reference to a struct/union/enum which is defined
3732 in another file in the same compilation unit but that file
3733 has not been parsed yet.
3734 Initialize the type only, it will be filled in when
3735 it's definition is parsed. */
3736 *tpp = init_type (type_code, 0, 0, (char *) NULL, current_objfile);
3738 add_pending (fh, esh, *tpp);
3741 /* We used one auxent normally, two if we got a "next one" rf. */
3746 /* Quick&dirty lookup procedure, to avoid the MI ones that require
3747 keeping the symtab sorted */
3749 static struct symbol *
3750 mylookup_symbol (name, block, namespace, class)
3752 register struct block *block;
3753 namespace_enum namespace;
3754 enum address_class class;
3756 register int bot, top, inc;
3757 register struct symbol *sym;
3760 top = BLOCK_NSYMS (block);
3764 sym = BLOCK_SYM (block, bot);
3765 if (SYMBOL_NAME (sym)[0] == inc
3766 && SYMBOL_NAMESPACE (sym) == namespace
3767 && SYMBOL_CLASS (sym) == class
3768 && strcmp (SYMBOL_NAME (sym), name) == 0)
3772 block = BLOCK_SUPERBLOCK (block);
3774 return mylookup_symbol (name, block, namespace, class);
3779 /* Add a new symbol S to a block B.
3780 Infrequently, we will need to reallocate the block to make it bigger.
3781 We only detect this case when adding to top_stack->cur_block, since
3782 that's the only time we know how big the block is. FIXME. */
3789 int nsyms = BLOCK_NSYMS (b)++;
3790 struct block *origb;
3791 struct parse_stack *stackp;
3793 if (b == top_stack->cur_block &&
3794 nsyms >= top_stack->maxsyms)
3796 complain (&block_overflow_complaint, SYMBOL_NAME (s));
3797 /* In this case shrink_block is actually grow_block, since
3798 BLOCK_NSYMS(b) is larger than its current size. */
3800 b = shrink_block (top_stack->cur_block, top_stack->cur_st);
3802 /* Now run through the stack replacing pointers to the
3803 original block. shrink_block has already done this
3804 for the blockvector and BLOCK_FUNCTION. */
3805 for (stackp = top_stack; stackp; stackp = stackp->next)
3807 if (stackp->cur_block == origb)
3809 stackp->cur_block = b;
3810 stackp->maxsyms = BLOCK_NSYMS (b);
3814 BLOCK_SYM (b, nsyms) = s;
3817 /* Add a new block B to a symtab S */
3824 struct blockvector *bv = BLOCKVECTOR (s);
3826 bv = (struct blockvector *) xrealloc ((PTR) bv,
3827 (sizeof (struct blockvector)
3828 + BLOCKVECTOR_NBLOCKS (bv)
3829 * sizeof (bv->block)));
3830 if (bv != BLOCKVECTOR (s))
3831 BLOCKVECTOR (s) = bv;
3833 BLOCKVECTOR_BLOCK (bv, BLOCKVECTOR_NBLOCKS (bv)++) = b;
3836 /* Add a new linenumber entry (LINENO,ADR) to a linevector LT.
3837 MIPS' linenumber encoding might need more than one byte
3838 to describe it, LAST is used to detect these continuation lines.
3840 Combining lines with the same line number seems like a bad idea.
3841 E.g: There could be a line number entry with the same line number after the
3842 prologue and GDB should not ignore it (this is a better way to find
3843 a prologue than mips_skip_prologue).
3844 But due to the compressed line table format there are line number entries
3845 for the same line which are needed to bridge the gap to the next
3846 line number entry. These entries have a bogus address info with them
3847 and we are unable to tell them from intended duplicate line number
3849 This is another reason why -ggdb debugging format is preferable. */
3852 add_line (lt, lineno, adr, last)
3853 struct linetable *lt;
3858 /* DEC c89 sometimes produces zero linenos which confuse gdb.
3859 Change them to something sensible. */
3863 last = -2; /* make sure we record first line */
3865 if (last == lineno) /* skip continuation lines */
3868 lt->item[lt->nitems].line = lineno;
3869 lt->item[lt->nitems++].pc = adr << 2;
3873 /* Sorting and reordering procedures */
3875 /* Blocks with a smaller low bound should come first */
3878 compare_blocks (arg1, arg2)
3882 register int addr_diff;
3883 struct block **b1 = (struct block **) arg1;
3884 struct block **b2 = (struct block **) arg2;
3886 addr_diff = (BLOCK_START ((*b1))) - (BLOCK_START ((*b2)));
3888 return (BLOCK_END ((*b2))) - (BLOCK_END ((*b1)));
3892 /* Sort the blocks of a symtab S.
3893 Reorder the blocks in the blockvector by code-address,
3894 as required by some MI search routines */
3900 struct blockvector *bv = BLOCKVECTOR (s);
3902 if (BLOCKVECTOR_NBLOCKS (bv) <= 2)
3905 if (BLOCK_END (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK)) == 0)
3906 BLOCK_START (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK)) = 0;
3907 if (BLOCK_END (BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK)) == 0)
3908 BLOCK_START (BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK)) = 0;
3912 * This is very unfortunate: normally all functions are compiled in
3913 * the order they are found, but if the file is compiled -O3 things
3914 * are very different. It would be nice to find a reliable test
3915 * to detect -O3 images in advance.
3917 if (BLOCKVECTOR_NBLOCKS (bv) > 3)
3918 qsort (&BLOCKVECTOR_BLOCK (bv, FIRST_LOCAL_BLOCK),
3919 BLOCKVECTOR_NBLOCKS (bv) - FIRST_LOCAL_BLOCK,
3920 sizeof (struct block *),
3924 register CORE_ADDR high = 0;
3925 register int i, j = BLOCKVECTOR_NBLOCKS (bv);
3927 for (i = FIRST_LOCAL_BLOCK; i < j; i++)
3928 if (high < BLOCK_END (BLOCKVECTOR_BLOCK (bv, i)))
3929 high = BLOCK_END (BLOCKVECTOR_BLOCK (bv, i));
3930 BLOCK_END (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK)) = high;
3933 BLOCK_START (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK)) =
3934 BLOCK_START (BLOCKVECTOR_BLOCK (bv, FIRST_LOCAL_BLOCK));
3936 BLOCK_START (BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK)) =
3937 BLOCK_START (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK));
3938 BLOCK_END (BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK)) =
3939 BLOCK_END (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK));
3943 /* Constructor/restructor/destructor procedures */
3945 /* Allocate a new symtab for NAME. Needs an estimate of how many symbols
3946 MAXSYMS and linenumbers MAXLINES we'll put in it */
3948 static struct symtab *
3949 new_symtab (name, maxsyms, maxlines, objfile)
3953 struct objfile *objfile;
3955 struct symtab *s = allocate_symtab (name, objfile);
3957 LINETABLE (s) = new_linetable (maxlines);
3959 /* All symtabs must have at least two blocks */
3960 BLOCKVECTOR (s) = new_bvect (2);
3961 BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), GLOBAL_BLOCK) = new_block (maxsyms);
3962 BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), STATIC_BLOCK) = new_block (maxsyms);
3963 BLOCK_SUPERBLOCK (BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), STATIC_BLOCK)) =
3964 BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), GLOBAL_BLOCK);
3966 s->free_code = free_linetable;
3971 /* Allocate a new partial_symtab NAME */
3973 static struct partial_symtab *
3974 new_psymtab (name, objfile, section_offsets)
3976 struct objfile *objfile;
3977 struct section_offsets *section_offsets;
3979 struct partial_symtab *psymtab;
3981 psymtab = allocate_psymtab (name, objfile);
3982 psymtab->section_offsets = section_offsets;
3984 /* Keep a backpointer to the file's symbols */
3986 psymtab->read_symtab_private = ((char *)
3987 obstack_alloc (&objfile->psymbol_obstack,
3988 sizeof (struct symloc)));
3989 memset ((PTR) psymtab->read_symtab_private, 0, sizeof (struct symloc));
3990 CUR_BFD (psymtab) = cur_bfd;
3991 DEBUG_SWAP (psymtab) = debug_swap;
3992 DEBUG_INFO (psymtab) = debug_info;
3993 PENDING_LIST (psymtab) = pending_list;
3995 /* The way to turn this into a symtab is to call... */
3996 psymtab->read_symtab = mdebug_psymtab_to_symtab;
4001 /* Allocate a linetable array of the given SIZE. Since the struct
4002 already includes one item, we subtract one when calculating the
4003 proper size to allocate. */
4005 static struct linetable *
4006 new_linetable (size)
4009 struct linetable *l;
4011 size = (size - 1) * sizeof (l->item) + sizeof (struct linetable);
4012 l = (struct linetable *) xmalloc (size);
4017 /* Oops, too big. Shrink it. This was important with the 2.4 linetables,
4018 I am not so sure about the 3.4 ones.
4020 Since the struct linetable already includes one item, we subtract one when
4021 calculating the proper size to allocate. */
4023 static struct linetable *
4024 shrink_linetable (lt)
4025 struct linetable *lt;
4028 return (struct linetable *) xrealloc ((PTR) lt,
4029 (sizeof (struct linetable)
4031 * sizeof (lt->item))));
4034 /* Allocate and zero a new blockvector of NBLOCKS blocks. */
4036 static struct blockvector *
4040 struct blockvector *bv;
4043 size = sizeof (struct blockvector) + nblocks * sizeof (struct block *);
4044 bv = (struct blockvector *) xzalloc (size);
4046 BLOCKVECTOR_NBLOCKS (bv) = nblocks;
4051 /* Allocate and zero a new block of MAXSYMS symbols */
4053 static struct block *
4057 int size = sizeof (struct block) + (maxsyms - 1) * sizeof (struct symbol *);
4059 return (struct block *) xzalloc (size);
4062 /* Ooops, too big. Shrink block B in symtab S to its minimal size.
4063 Shrink_block can also be used by add_symbol to grow a block. */
4065 static struct block *
4071 struct blockvector *bv = BLOCKVECTOR (s);
4074 /* Just reallocate it and fix references to the old one */
4076 new = (struct block *) xrealloc ((PTR) b,
4077 (sizeof (struct block)
4078 + ((BLOCK_NSYMS (b) - 1)
4079 * sizeof (struct symbol *))));
4081 /* Should chase pointers to old one. Fortunately, that`s just
4082 the block`s function and inferior blocks */
4083 if (BLOCK_FUNCTION (new) && SYMBOL_BLOCK_VALUE (BLOCK_FUNCTION (new)) == b)
4084 SYMBOL_BLOCK_VALUE (BLOCK_FUNCTION (new)) = new;
4085 for (i = 0; i < BLOCKVECTOR_NBLOCKS (bv); i++)
4086 if (BLOCKVECTOR_BLOCK (bv, i) == b)
4087 BLOCKVECTOR_BLOCK (bv, i) = new;
4088 else if (BLOCK_SUPERBLOCK (BLOCKVECTOR_BLOCK (bv, i)) == b)
4089 BLOCK_SUPERBLOCK (BLOCKVECTOR_BLOCK (bv, i)) = new;
4093 /* Create a new symbol with printname NAME */
4095 static struct symbol *
4099 struct symbol *s = ((struct symbol *)
4100 obstack_alloc (¤t_objfile->symbol_obstack,
4101 sizeof (struct symbol)));
4103 memset ((PTR) s, 0, sizeof (*s));
4104 SYMBOL_NAME (s) = obsavestring (name, strlen (name),
4105 ¤t_objfile->symbol_obstack);
4106 SYMBOL_LANGUAGE (s) = psymtab_language;
4107 SYMBOL_INIT_DEMANGLED_NAME (s, ¤t_objfile->symbol_obstack);
4111 /* Create a new type with printname NAME */
4113 static struct type *
4119 t = alloc_type (current_objfile);
4120 TYPE_NAME (t) = name;
4121 TYPE_CPLUS_SPECIFIC (t) = (struct cplus_struct_type *) &cplus_struct_default;
4125 /* Read ECOFF debugging information from a BFD section. This is
4126 called from elfread.c. It parses the section into a
4127 ecoff_debug_info struct, and then lets the rest of the file handle
4131 elfmdebug_build_psymtabs (objfile, swap, sec, section_offsets)
4132 struct objfile *objfile;
4133 const struct ecoff_debug_swap *swap;
4135 struct section_offsets *section_offsets;
4137 bfd *abfd = objfile->obfd;
4138 struct ecoff_debug_info *info;
4140 info = ((struct ecoff_debug_info *)
4141 obstack_alloc (&objfile->psymbol_obstack,
4142 sizeof (struct ecoff_debug_info)));
4144 if (!(*swap->read_debug_info) (abfd, sec, info))
4145 error ("Error reading ECOFF debugging information: %s",
4146 bfd_errmsg (bfd_get_error ()));
4148 mdebug_build_psymtabs (objfile, swap, info, section_offsets);
4152 /* Things used for calling functions in the inferior.
4153 These functions are exported to our companion
4154 mips-tdep.c file and are here because they play
4155 with the symbol-table explicitly. */
4157 /* Sigtramp: make sure we have all the necessary information
4158 about the signal trampoline code. Since the official code
4159 from MIPS does not do so, we make up that information ourselves.
4160 If they fix the library (unlikely) this code will neutralize itself. */
4162 /* FIXME: This function is called only by mips-tdep.c. It needs to be
4163 here because it calls functions defined in this file, but perhaps
4164 this could be handled in a better way. */
4171 struct block *b, *b0 = NULL;
4173 sigtramp_address = -1;
4175 /* We have to handle the following cases here:
4176 a) The Mips library has a sigtramp label within sigvec.
4177 b) Irix has a _sigtramp which we want to use, but it also has sigvec. */
4178 s = lookup_symbol ("sigvec", 0, VAR_NAMESPACE, 0, NULL);
4181 b0 = SYMBOL_BLOCK_VALUE (s);
4182 s = lookup_symbol ("sigtramp", b0, VAR_NAMESPACE, 0, NULL);
4186 /* No sigvec or no sigtramp inside sigvec, try _sigtramp. */
4187 s = lookup_symbol ("_sigtramp", 0, VAR_NAMESPACE, 0, NULL);
4190 /* But maybe this program uses its own version of sigvec */
4194 /* Did we or MIPSco fix the library ? */
4195 if (SYMBOL_CLASS (s) == LOC_BLOCK)
4197 sigtramp_address = BLOCK_START (SYMBOL_BLOCK_VALUE (s));
4198 sigtramp_end = BLOCK_END (SYMBOL_BLOCK_VALUE (s));
4202 sigtramp_address = SYMBOL_VALUE (s);
4203 sigtramp_end = sigtramp_address + 0x88; /* black magic */
4205 /* But what symtab does it live in ? */
4206 st = find_pc_symtab (SYMBOL_VALUE (s));
4209 * Ok, there goes the fix: turn it into a procedure, with all the
4210 * needed info. Note we make it a nested procedure of sigvec,
4211 * which is the way the (assembly) code is actually written.
4213 SYMBOL_NAMESPACE (s) = VAR_NAMESPACE;
4214 SYMBOL_CLASS (s) = LOC_BLOCK;
4215 SYMBOL_TYPE (s) = init_type (TYPE_CODE_FUNC, 4, 0, (char *) NULL,
4217 TYPE_TARGET_TYPE (SYMBOL_TYPE (s)) = mdebug_type_void;
4219 /* Need a block to allocate MIPS_EFI_SYMBOL_NAME in */
4221 SYMBOL_BLOCK_VALUE (s) = b;
4222 BLOCK_START (b) = sigtramp_address;
4223 BLOCK_END (b) = sigtramp_end;
4224 BLOCK_FUNCTION (b) = s;
4225 BLOCK_SUPERBLOCK (b) = BLOCK_SUPERBLOCK (b0);
4229 /* Make a MIPS_EFI_SYMBOL_NAME entry for it */
4231 struct mips_extra_func_info *e =
4232 ((struct mips_extra_func_info *)
4233 xzalloc (sizeof (struct mips_extra_func_info)));
4235 e->numargs = 0; /* the kernel thinks otherwise */
4236 e->pdr.frameoffset = 32;
4237 e->pdr.framereg = SP_REGNUM;
4238 /* Note that setting pcreg is no longer strictly necessary as
4239 mips_frame_saved_pc is now aware of signal handler frames. */
4240 e->pdr.pcreg = PC_REGNUM;
4241 e->pdr.regmask = -2;
4242 /* Offset to saved r31, in the sigtramp case the saved registers
4243 are above the frame in the sigcontext.
4244 We have 4 alignment bytes, 12 bytes for onstack, mask and pc,
4245 32 * 4 bytes for the general registers, 12 bytes for mdhi, mdlo, ownedfp
4246 and 32 * 4 bytes for the floating point registers. */
4247 e->pdr.regoffset = 4 + 12 + 31 * 4;
4248 e->pdr.fregmask = -1;
4249 /* Offset to saved f30 (first saved *double* register). */
4250 e->pdr.fregoffset = 4 + 12 + 32 * 4 + 12 + 30 * 4;
4251 e->pdr.isym = (long) s;
4252 e->pdr.adr = sigtramp_address;
4254 current_objfile = st->objfile; /* Keep new_symbol happy */
4255 s = new_symbol (MIPS_EFI_SYMBOL_NAME);
4256 SYMBOL_VALUE (s) = (long) e;
4257 SYMBOL_NAMESPACE (s) = LABEL_NAMESPACE;
4258 SYMBOL_CLASS (s) = LOC_CONST;
4259 SYMBOL_TYPE (s) = mdebug_type_void;
4260 current_objfile = NULL;
4263 BLOCK_SYM (b, BLOCK_NSYMS (b)++) = s;
4267 _initialize_mdebugread ()
4270 init_type (TYPE_CODE_VOID, 1,
4272 "void", (struct objfile *) NULL);
4274 init_type (TYPE_CODE_INT, 1,
4276 "char", (struct objfile *) NULL);
4277 mdebug_type_unsigned_char =
4278 init_type (TYPE_CODE_INT, 1,
4280 "unsigned char", (struct objfile *) NULL);
4282 init_type (TYPE_CODE_INT, 2,
4284 "short", (struct objfile *) NULL);
4285 mdebug_type_unsigned_short =
4286 init_type (TYPE_CODE_INT, 2,
4288 "unsigned short", (struct objfile *) NULL);
4289 mdebug_type_int_32 =
4290 init_type (TYPE_CODE_INT, 4,
4292 "int", (struct objfile *) NULL);
4293 mdebug_type_unsigned_int_32 =
4294 init_type (TYPE_CODE_INT, 4,
4296 "unsigned int", (struct objfile *) NULL);
4297 mdebug_type_int_64 =
4298 init_type (TYPE_CODE_INT, 8,
4300 "int", (struct objfile *) NULL);
4301 mdebug_type_unsigned_int_64 =
4302 init_type (TYPE_CODE_INT, 8,
4304 "unsigned int", (struct objfile *) NULL);
4305 mdebug_type_long_32 =
4306 init_type (TYPE_CODE_INT, 4,
4308 "long", (struct objfile *) NULL);
4309 mdebug_type_unsigned_long_32 =
4310 init_type (TYPE_CODE_INT, 4,
4312 "unsigned long", (struct objfile *) NULL);
4313 mdebug_type_long_64 =
4314 init_type (TYPE_CODE_INT, 8,
4316 "long", (struct objfile *) NULL);
4317 mdebug_type_unsigned_long_64 =
4318 init_type (TYPE_CODE_INT, 8,
4320 "unsigned long", (struct objfile *) NULL);
4321 mdebug_type_long_long_64 =
4322 init_type (TYPE_CODE_INT, 8,
4324 "long long", (struct objfile *) NULL);
4325 mdebug_type_unsigned_long_long_64 =
4326 init_type (TYPE_CODE_INT, 8,
4328 "unsigned long long", (struct objfile *) NULL);
4329 mdebug_type_adr_32 =
4330 init_type (TYPE_CODE_PTR, 4,
4332 "adr_32", (struct objfile *) NULL);
4333 TYPE_TARGET_TYPE (mdebug_type_adr_32) = mdebug_type_void;
4334 mdebug_type_adr_64 =
4335 init_type (TYPE_CODE_PTR, 8,
4337 "adr_64", (struct objfile *) NULL);
4338 TYPE_TARGET_TYPE (mdebug_type_adr_64) = mdebug_type_void;
4340 init_type (TYPE_CODE_FLT, TARGET_FLOAT_BIT / TARGET_CHAR_BIT,
4342 "float", (struct objfile *) NULL);
4343 mdebug_type_double =
4344 init_type (TYPE_CODE_FLT, TARGET_DOUBLE_BIT / TARGET_CHAR_BIT,
4346 "double", (struct objfile *) NULL);
4347 mdebug_type_complex =
4348 init_type (TYPE_CODE_COMPLEX, 2 * TARGET_FLOAT_BIT / TARGET_CHAR_BIT,
4350 "complex", (struct objfile *) NULL);
4351 TYPE_TARGET_TYPE (mdebug_type_complex) = mdebug_type_float;
4352 mdebug_type_double_complex =
4353 init_type (TYPE_CODE_COMPLEX, 2 * TARGET_DOUBLE_BIT / TARGET_CHAR_BIT,
4355 "double complex", (struct objfile *) NULL);
4356 TYPE_TARGET_TYPE (mdebug_type_double_complex) = mdebug_type_double;
4358 /* Is a "string" the way btString means it the same as TYPE_CODE_STRING?
4360 mdebug_type_string =
4361 init_type (TYPE_CODE_STRING,
4362 TARGET_CHAR_BIT / TARGET_CHAR_BIT,
4364 (struct objfile *) NULL);
4366 /* We use TYPE_CODE_INT to print these as integers. Does this do any
4367 good? Would we be better off with TYPE_CODE_ERROR? Should
4368 TYPE_CODE_ERROR print things in hex if it knows the size? */
4369 mdebug_type_fixed_dec =
4370 init_type (TYPE_CODE_INT,
4371 TARGET_INT_BIT / TARGET_CHAR_BIT,
4373 (struct objfile *) NULL);
4375 mdebug_type_float_dec =
4376 init_type (TYPE_CODE_ERROR,
4377 TARGET_DOUBLE_BIT / TARGET_CHAR_BIT,
4378 0, "floating decimal",
4379 (struct objfile *) NULL);
4381 nodebug_func_symbol_type = init_type (TYPE_CODE_FUNC, 1, 0,
4382 "<function, no debug info>", NULL);
4383 TYPE_TARGET_TYPE (nodebug_func_symbol_type) = mdebug_type_int;
4384 nodebug_var_symbol_type =
4385 init_type (TYPE_CODE_INT, TARGET_INT_BIT / HOST_CHAR_BIT, 0,
4386 "<variable, no debug info>", NULL);