1 /* Read a symbol table in ECOFF format (Third-Eye).
3 Copyright 1986, 1987, 1989, 1990, 1991, 1992, 1993, 1994, 1995,
4 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 Free Software
8 CMU. Major work by Per Bothner, John Gilmore and Ian Lance Taylor
11 This file is part of GDB.
13 This program is free software; you can redistribute it and/or modify
14 it under the terms of the GNU General Public License as published by
15 the Free Software Foundation; either version 2 of the License, or
16 (at your option) any later version.
18 This program is distributed in the hope that it will be useful,
19 but WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 GNU General Public License for more details.
23 You should have received a copy of the GNU General Public License
24 along with this program; if not, write to the Free Software
25 Foundation, Inc., 59 Temple Place - Suite 330,
26 Boston, MA 02111-1307, USA. */
28 /* This module provides the function mdebug_build_psymtabs. It reads
29 ECOFF debugging information into partial symbol tables. The
30 debugging information is read from two structures. A struct
31 ecoff_debug_swap includes the sizes of each ECOFF structure and
32 swapping routines; these are fixed for a particular target. A
33 struct ecoff_debug_info points to the debugging information for a
34 particular object file.
36 ECOFF symbol tables are mostly written in the byte order of the
37 target machine. However, one section of the table (the auxiliary
38 symbol information) is written in the host byte order. There is a
39 bit in the other symbol info which describes which host byte order
40 was used. ECOFF thereby takes the trophy from Intel `b.out' for
41 the most brain-dead adaptation of a file format to byte order.
43 This module can read all four of the known byte-order combinations,
44 on any type of host. */
52 #include "gdb_obstack.h"
54 #include "stabsread.h"
55 #include "complaints.h"
57 #include "gdb_assert.h"
59 #include "dictionary.h"
61 /* These are needed if the tm.h file does not contain the necessary
62 mips specific definitions. */
64 #ifndef MIPS_EFI_SYMBOL_NAME
65 #define MIPS_EFI_SYMBOL_NAME "__GDB_EFI_INFO__"
66 extern void ecoff_relocate_efi (struct symbol *, CORE_ADDR);
68 #include "coff/symconst.h"
69 typedef struct mips_extra_func_info
74 *mips_extra_func_info_t;
81 #include <sys/types.h>
85 #include "gdb_string.h"
89 #include "coff/ecoff.h" /* COFF-like aspects of ecoff files */
91 #include "libaout.h" /* Private BFD a.out information. */
92 #include "aout/aout64.h"
93 #include "aout/stab_gnu.h" /* STABS information */
95 #include "expression.h"
96 #include "language.h" /* For local_hex_string() */
98 extern void _initialize_mdebugread (void);
100 /* Provide a way to test if we have both ECOFF and ELF symbol tables.
101 We use this define in order to know whether we should override a
102 symbol's ECOFF section with its ELF section. This is necessary in
103 case the symbol's ELF section could not be represented in ECOFF. */
104 #define ECOFF_IN_ELF(bfd) (bfd_get_flavour (bfd) == bfd_target_elf_flavour \
105 && bfd_get_section_by_name (bfd, ".mdebug") != NULL)
108 /* We put a pointer to this structure in the read_symtab_private field
113 /* Index of the FDR that this psymtab represents. */
115 /* The BFD that the psymtab was created from. */
117 const struct ecoff_debug_swap *debug_swap;
118 struct ecoff_debug_info *debug_info;
119 struct mdebug_pending **pending_list;
120 /* Pointer to external symbols for this file. */
122 /* Size of extern_tab. */
124 enum language pst_language;
127 #define PST_PRIVATE(p) ((struct symloc *)(p)->read_symtab_private)
128 #define FDR_IDX(p) (PST_PRIVATE(p)->fdr_idx)
129 #define CUR_BFD(p) (PST_PRIVATE(p)->cur_bfd)
130 #define DEBUG_SWAP(p) (PST_PRIVATE(p)->debug_swap)
131 #define DEBUG_INFO(p) (PST_PRIVATE(p)->debug_info)
132 #define PENDING_LIST(p) (PST_PRIVATE(p)->pending_list)
134 #define SC_IS_TEXT(sc) ((sc) == scText \
135 || (sc) == scRConst \
138 #define SC_IS_DATA(sc) ((sc) == scData \
143 #define SC_IS_COMMON(sc) ((sc) == scCommon || (sc) == scSCommon)
144 #define SC_IS_BSS(sc) ((sc) == scBss)
145 #define SC_IS_SBSS(sc) ((sc) == scSBss)
146 #define SC_IS_UNDEF(sc) ((sc) == scUndefined || (sc) == scSUndefined)
148 /* Various complaints about symbol reading that don't abort the process */
150 index_complaint (const char *arg1)
152 complaint (&symfile_complaints, "bad aux index at symbol %s", arg1);
156 unknown_ext_complaint (const char *arg1)
158 complaint (&symfile_complaints, "unknown external symbol %s", arg1);
162 basic_type_complaint (int arg1, const char *arg2)
164 complaint (&symfile_complaints, "cannot map ECOFF basic type 0x%x for %s",
169 bad_tag_guess_complaint (const char *arg1)
171 complaint (&symfile_complaints, "guessed tag type of %s incorrectly", arg1);
175 bad_rfd_entry_complaint (const char *arg1, int arg2, int arg3)
177 complaint (&symfile_complaints, "bad rfd entry for %s: file %d, index %d",
182 unexpected_type_code_complaint (const char *arg1)
184 complaint (&symfile_complaints, "unexpected type code for %s", arg1);
187 /* Macros and extra defs */
189 /* Puns: hard to find whether -g was used and how */
191 #define MIN_GLEVEL GLEVEL_0
192 #define compare_glevel(a,b) \
193 (((a) == GLEVEL_3) ? ((b) < GLEVEL_3) : \
194 ((b) == GLEVEL_3) ? -1 : (int)((b) - (a)))
196 /* Things that really are local to this module */
198 /* Remember what we deduced to be the source language of this psymtab. */
200 static enum language psymtab_language = language_unknown;
206 /* How to parse debugging information for CUR_BFD. */
208 static const struct ecoff_debug_swap *debug_swap;
210 /* Pointers to debugging information for CUR_BFD. */
212 static struct ecoff_debug_info *debug_info;
214 /* Pointer to current file decriptor record, and its index */
219 /* Index of current symbol */
223 /* Note how much "debuggable" this image is. We would like
224 to see at least one FDR with full symbols */
226 static int max_gdbinfo;
227 static int max_glevel;
229 /* When examining .o files, report on undefined symbols */
231 static int n_undef_symbols, n_undef_labels, n_undef_vars, n_undef_procs;
233 /* Pseudo symbol to use when putting stabs into the symbol table. */
235 static char stabs_symbol[] = STABS_SYMBOL;
237 /* Types corresponding to mdebug format bt* basic types. */
239 static struct type *mdebug_type_void;
240 static struct type *mdebug_type_char;
241 static struct type *mdebug_type_short;
242 static struct type *mdebug_type_int_32;
243 #define mdebug_type_int mdebug_type_int_32
244 static struct type *mdebug_type_int_64;
245 static struct type *mdebug_type_long_32;
246 static struct type *mdebug_type_long_64;
247 static struct type *mdebug_type_long_long_64;
248 static struct type *mdebug_type_unsigned_char;
249 static struct type *mdebug_type_unsigned_short;
250 static struct type *mdebug_type_unsigned_int_32;
251 static struct type *mdebug_type_unsigned_int_64;
252 static struct type *mdebug_type_unsigned_long_32;
253 static struct type *mdebug_type_unsigned_long_64;
254 static struct type *mdebug_type_unsigned_long_long_64;
255 static struct type *mdebug_type_adr_32;
256 static struct type *mdebug_type_adr_64;
257 static struct type *mdebug_type_float;
258 static struct type *mdebug_type_double;
259 static struct type *mdebug_type_complex;
260 static struct type *mdebug_type_double_complex;
261 static struct type *mdebug_type_fixed_dec;
262 static struct type *mdebug_type_float_dec;
263 static struct type *mdebug_type_string;
265 /* Types for symbols from files compiled without debugging info. */
267 static struct type *nodebug_func_symbol_type;
268 static struct type *nodebug_var_symbol_type;
270 /* Nonzero if we have seen ecoff debugging info for a file. */
272 static int found_ecoff_debugging_info;
274 /* Forward declarations */
276 static int upgrade_type (int, struct type **, int, union aux_ext *,
279 static void parse_partial_symbols (struct objfile *);
281 static int has_opaque_xref (FDR *, SYMR *);
283 static int cross_ref (int, union aux_ext *, struct type **, enum type_code,
284 char **, int, char *);
286 static struct symbol *new_symbol (char *);
288 static struct type *new_type (char *);
290 enum block_type { FUNCTION_BLOCK, NON_FUNCTION_BLOCK };
292 static struct block *new_block (enum block_type);
294 static struct symtab *new_symtab (char *, int, struct objfile *);
296 static struct linetable *new_linetable (int);
298 static struct blockvector *new_bvect (int);
300 static struct type *parse_type (int, union aux_ext *, unsigned int, int *,
303 static struct symbol *mylookup_symbol (char *, struct block *, domain_enum,
306 static void sort_blocks (struct symtab *);
308 static struct partial_symtab *new_psymtab (char *, struct objfile *);
310 static void psymtab_to_symtab_1 (struct partial_symtab *, char *);
312 static void add_block (struct block *, struct symtab *);
314 static void add_symbol (struct symbol *, struct block *);
316 static int add_line (struct linetable *, int, CORE_ADDR, int);
318 static struct linetable *shrink_linetable (struct linetable *);
320 static void handle_psymbol_enumerators (struct objfile *, FDR *, int,
323 static char *mdebug_next_symbol_text (struct objfile *);
325 /* Address bounds for the signal trampoline in inferior, if any */
327 CORE_ADDR sigtramp_address, sigtramp_end;
329 /* Allocate zeroed memory */
332 xzalloc (unsigned int size)
334 void *p = xmalloc (size);
340 /* Exported procedure: Builds a symtab from the PST partial one.
341 Restores the environment in effect when PST was created, delegates
342 most of the work to an ancillary procedure, and sorts
343 and reorders the symtab list at the end */
346 mdebug_psymtab_to_symtab (struct partial_symtab *pst)
354 printf_filtered ("Reading in symbols for %s...", pst->filename);
355 gdb_flush (gdb_stdout);
358 next_symbol_text_func = mdebug_next_symbol_text;
360 psymtab_to_symtab_1 (pst, pst->filename);
362 /* Match with global symbols. This only needs to be done once,
363 after all of the symtabs and dependencies have been read in. */
364 scan_file_globals (pst->objfile);
367 printf_filtered ("done.\n");
370 /* File-level interface functions */
372 /* Find a file descriptor given its index RF relative to a file CF */
375 get_rfd (int cf, int rf)
381 fdrs = debug_info->fdr;
383 /* Object files do not have the RFD table, all refs are absolute */
386 (*debug_swap->swap_rfd_in) (cur_bfd,
387 ((char *) debug_info->external_rfd
389 * debug_swap->external_rfd_size)),
394 /* Return a safer print NAME for a file descriptor */
400 return "<stripped file>";
403 return debug_info->ss + f->issBase + f->rss;
407 /* Read in and parse the symtab of the file OBJFILE. Symbols from
408 different sections are relocated via the SECTION_OFFSETS. */
411 mdebug_build_psymtabs (struct objfile *objfile,
412 const struct ecoff_debug_swap *swap,
413 struct ecoff_debug_info *info)
415 cur_bfd = objfile->obfd;
419 stabsread_new_init ();
420 buildsym_new_init ();
421 free_header_files ();
422 init_header_files ();
424 /* Make sure all the FDR information is swapped in. */
425 if (info->fdr == (FDR *) NULL)
431 info->fdr = (FDR *) obstack_alloc (&objfile->objfile_obstack,
432 (info->symbolic_header.ifdMax
434 fdr_src = info->external_fdr;
436 + info->symbolic_header.ifdMax * swap->external_fdr_size);
438 for (; fdr_src < fdr_end; fdr_src += swap->external_fdr_size, fdr_ptr++)
439 (*swap->swap_fdr_in) (objfile->obfd, fdr_src, fdr_ptr);
442 parse_partial_symbols (objfile);
445 /* Check to make sure file was compiled with -g. If not, warn the
446 user of this limitation. */
447 if (compare_glevel (max_glevel, GLEVEL_2) < 0)
449 if (max_gdbinfo == 0)
450 printf_unfiltered ("\n%s not compiled with -g, debugging support is limited.\n",
452 printf_unfiltered ("You should compile with -g2 or -g3 for best debugging support.\n");
453 gdb_flush (gdb_stdout);
458 /* Local utilities */
460 /* Map of FDR indexes to partial symtabs */
464 struct partial_symtab *pst; /* the psymtab proper */
465 long n_globals; /* exported globals (external symbols) */
466 long globals_offset; /* cumulative */
470 /* Utility stack, used to nest procedures and blocks properly.
471 It is a doubly linked list, to avoid too many alloc/free.
472 Since we might need it quite a few times it is NOT deallocated
475 static struct parse_stack
477 struct parse_stack *next, *prev;
478 struct symtab *cur_st; /* Current symtab. */
479 struct block *cur_block; /* Block in it. */
481 /* What are we parsing. stFile, or stBlock are for files and
482 blocks. stProc or stStaticProc means we have seen the start of a
483 procedure, but not the start of the block within in. When we see
484 the start of that block, we change it to stNil, without pushing a
485 new block, i.e. stNil means both a procedure and a block. */
489 struct type *cur_type; /* Type we parse fields for. */
490 int cur_field; /* Field number in cur_type. */
491 CORE_ADDR procadr; /* Start addres of this procedure */
492 int numargs; /* Its argument count */
495 *top_stack; /* Top stack ptr */
498 /* Enter a new lexical context */
501 push_parse_stack (void)
503 struct parse_stack *new;
505 /* Reuse frames if possible */
506 if (top_stack && top_stack->prev)
507 new = top_stack->prev;
509 new = (struct parse_stack *) xzalloc (sizeof (struct parse_stack));
510 /* Initialize new frame with previous content */
513 struct parse_stack *prev = new->prev;
516 top_stack->prev = new;
518 new->next = top_stack;
523 /* Exit a lexical context */
526 pop_parse_stack (void)
531 top_stack = top_stack->next;
535 /* Cross-references might be to things we haven't looked at
536 yet, e.g. type references. To avoid too many type
537 duplications we keep a quick fixup table, an array
538 of lists of references indexed by file descriptor */
540 struct mdebug_pending
542 struct mdebug_pending *next; /* link */
543 char *s; /* the unswapped symbol */
544 struct type *t; /* its partial type descriptor */
548 /* The pending information is kept for an entire object file, and used
549 to be in the sym_private field. I took it out when I split
550 mdebugread from mipsread, because this might not be the only type
551 of symbols read from an object file. Instead, we allocate the
552 pending information table when we create the partial symbols, and
553 we store a pointer to the single table in each psymtab. */
555 static struct mdebug_pending **pending_list;
557 /* Check whether we already saw symbol SH in file FH */
559 static struct mdebug_pending *
560 is_pending_symbol (FDR *fh, char *sh)
562 int f_idx = fh - debug_info->fdr;
563 struct mdebug_pending *p;
565 /* Linear search is ok, list is typically no more than 10 deep */
566 for (p = pending_list[f_idx]; p; p = p->next)
572 /* Add a new symbol SH of type T */
575 add_pending (FDR *fh, char *sh, struct type *t)
577 int f_idx = fh - debug_info->fdr;
578 struct mdebug_pending *p = is_pending_symbol (fh, sh);
580 /* Make sure we do not make duplicates */
583 p = ((struct mdebug_pending *)
584 obstack_alloc (¤t_objfile->objfile_obstack,
585 sizeof (struct mdebug_pending)));
588 p->next = pending_list[f_idx];
589 pending_list[f_idx] = p;
594 /* Parsing Routines proper. */
596 /* Parse a single symbol. Mostly just make up a GDB symbol for it.
597 For blocks, procedures and types we open a new lexical context.
598 This is basically just a big switch on the symbol's type. Argument
599 AX is the base pointer of aux symbols for this file (fh->iauxBase).
600 EXT_SH points to the unswapped symbol, which is needed for struct,
601 union, etc., types; it is NULL for an EXTR. BIGEND says whether
602 aux symbols are big-endian or little-endian. Return count of
603 SYMR's handled (normally one). */
606 parse_symbol (SYMR *sh, union aux_ext *ax, char *ext_sh, int bigend,
607 struct section_offsets *section_offsets, struct objfile *objfile)
609 const bfd_size_type external_sym_size = debug_swap->external_sym_size;
610 void (*const swap_sym_in) (bfd *, void *, SYMR *) = debug_swap->swap_sym_in;
614 struct mdebug_pending *pend;
618 enum address_class class;
620 long svalue = sh->value;
623 if (ext_sh == (char *) NULL)
624 name = debug_info->ssext + sh->iss;
626 name = debug_info->ss + cur_fdr->issBase + sh->iss;
632 /* Do not relocate relative values.
633 The value of a stEnd symbol is the displacement from the
634 corresponding start symbol value.
635 The value of a stBlock symbol is the displacement from the
636 procedure address. */
637 if (sh->st != stEnd && sh->st != stBlock)
638 sh->value += ANOFFSET (section_offsets, SECT_OFF_TEXT (objfile));
645 sh->value += ANOFFSET (section_offsets, SECT_OFF_DATA (objfile));
649 sh->value += ANOFFSET (section_offsets, SECT_OFF_BSS (objfile));
658 case stGlobal: /* external symbol, goes into global block */
660 b = BLOCKVECTOR_BLOCK (BLOCKVECTOR (top_stack->cur_st),
662 s = new_symbol (name);
663 SYMBOL_VALUE_ADDRESS (s) = (CORE_ADDR) sh->value;
666 case stStatic: /* static data, goes into current block. */
668 b = top_stack->cur_block;
669 s = new_symbol (name);
670 if (SC_IS_COMMON (sh->sc))
672 /* It is a FORTRAN common block. At least for SGI Fortran the
673 address is not in the symbol; we need to fix it later in
674 scan_file_globals. */
675 int bucket = hashname (DEPRECATED_SYMBOL_NAME (s));
676 SYMBOL_VALUE_CHAIN (s) = global_sym_chain[bucket];
677 global_sym_chain[bucket] = s;
680 SYMBOL_VALUE_ADDRESS (s) = (CORE_ADDR) sh->value;
683 case stLocal: /* local variable, goes into current block */
684 if (sh->sc == scRegister)
686 class = LOC_REGISTER;
687 svalue = ECOFF_REG_TO_REGNUM (svalue);
691 b = top_stack->cur_block;
692 s = new_symbol (name);
693 SYMBOL_VALUE (s) = svalue;
695 data: /* Common code for symbols describing data */
696 SYMBOL_DOMAIN (s) = VAR_DOMAIN;
697 SYMBOL_CLASS (s) = class;
700 /* Type could be missing if file is compiled without debugging info. */
701 if (SC_IS_UNDEF (sh->sc)
702 || sh->sc == scNil || sh->index == indexNil)
703 SYMBOL_TYPE (s) = nodebug_var_symbol_type;
705 SYMBOL_TYPE (s) = parse_type (cur_fd, ax, sh->index, 0, bigend, name);
706 /* Value of a data symbol is its memory address */
709 case stParam: /* arg to procedure, goes into current block */
711 found_ecoff_debugging_info = 1;
712 top_stack->numargs++;
714 /* Special GNU C++ name. */
715 if (is_cplus_marker (name[0]) && name[1] == 't' && name[2] == 0)
716 name = "this"; /* FIXME, not alloc'd in obstack */
717 s = new_symbol (name);
719 SYMBOL_DOMAIN (s) = VAR_DOMAIN;
723 /* Pass by value in register. */
724 SYMBOL_CLASS (s) = LOC_REGPARM;
725 svalue = ECOFF_REG_TO_REGNUM (svalue);
728 /* Pass by reference on stack. */
729 SYMBOL_CLASS (s) = LOC_REF_ARG;
732 /* Pass by reference in register. */
733 SYMBOL_CLASS (s) = LOC_REGPARM_ADDR;
734 svalue = ECOFF_REG_TO_REGNUM (svalue);
737 /* Pass by value on stack. */
738 SYMBOL_CLASS (s) = LOC_ARG;
741 SYMBOL_VALUE (s) = svalue;
742 SYMBOL_TYPE (s) = parse_type (cur_fd, ax, sh->index, 0, bigend, name);
743 add_symbol (s, top_stack->cur_block);
746 case stLabel: /* label, goes into current block */
747 s = new_symbol (name);
748 SYMBOL_DOMAIN (s) = VAR_DOMAIN; /* so that it can be used */
749 SYMBOL_CLASS (s) = LOC_LABEL; /* but not misused */
750 SYMBOL_VALUE_ADDRESS (s) = (CORE_ADDR) sh->value;
751 SYMBOL_TYPE (s) = mdebug_type_int;
752 add_symbol (s, top_stack->cur_block);
755 case stProc: /* Procedure, usually goes into global block */
756 case stStaticProc: /* Static procedure, goes into current block */
757 /* For stProc symbol records, we need to check the storage class
758 as well, as only (stProc, scText) entries represent "real"
759 procedures - See the Compaq document titled "Object File /
760 Symbol Table Format Specification" for more information.
761 If the storage class is not scText, we discard the whole block
762 of symbol records for this stProc. */
763 if (sh->st == stProc && sh->sc != scText)
765 char *ext_tsym = ext_sh;
766 int keep_counting = 1;
769 while (keep_counting)
771 ext_tsym += external_sym_size;
772 (*swap_sym_in) (cur_bfd, ext_tsym, &tsym);
782 complaint (&symfile_complaints,
783 "unknown symbol type 0x%x", sh->st);
789 s = new_symbol (name);
790 SYMBOL_DOMAIN (s) = VAR_DOMAIN;
791 SYMBOL_CLASS (s) = LOC_BLOCK;
792 /* Type of the return value */
793 if (SC_IS_UNDEF (sh->sc) || sh->sc == scNil)
797 t = parse_type (cur_fd, ax, sh->index + 1, 0, bigend, name);
798 if (strcmp (name, "malloc") == 0
799 && TYPE_CODE (t) == TYPE_CODE_VOID)
801 /* I don't know why, but, at least under Alpha GNU/Linux,
802 when linking against a malloc without debugging
803 symbols, its read as a function returning void---this
804 is bad because it means we cannot call functions with
805 string arguments interactively; i.e., "call
806 printf("howdy\n")" would fail with the error message
807 "program has no memory available". To avoid this, we
808 patch up the type and make it void*
811 t = make_pointer_type (t, NULL);
814 b = top_stack->cur_block;
815 if (sh->st == stProc)
817 struct blockvector *bv = BLOCKVECTOR (top_stack->cur_st);
818 /* The next test should normally be true, but provides a
819 hook for nested functions (which we don't want to make
821 if (b == BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK))
822 b = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK);
823 /* Irix 5 sometimes has duplicate names for the same
824 function. We want to add such names up at the global
825 level, not as a nested function. */
826 else if (sh->value == top_stack->procadr)
827 b = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK);
831 /* Make a type for the procedure itself */
832 SYMBOL_TYPE (s) = lookup_function_type (t);
834 /* All functions in C++ have prototypes. For C we don't have enough
835 information in the debug info. */
836 if (SYMBOL_LANGUAGE (s) == language_cplus)
837 TYPE_FLAGS (SYMBOL_TYPE (s)) |= TYPE_FLAG_PROTOTYPED;
839 /* Create and enter a new lexical context */
840 b = new_block (FUNCTION_BLOCK);
841 SYMBOL_BLOCK_VALUE (s) = b;
842 BLOCK_FUNCTION (b) = s;
843 BLOCK_START (b) = BLOCK_END (b) = sh->value;
844 BLOCK_SUPERBLOCK (b) = top_stack->cur_block;
845 add_block (b, top_stack->cur_st);
847 /* Not if we only have partial info */
848 if (SC_IS_UNDEF (sh->sc) || sh->sc == scNil)
852 top_stack->cur_block = b;
853 top_stack->blocktype = sh->st;
854 top_stack->cur_type = SYMBOL_TYPE (s);
855 top_stack->cur_field = -1;
856 top_stack->procadr = sh->value;
857 top_stack->numargs = 0;
860 /* Beginning of code for structure, union, and enum definitions.
861 They all share a common set of local variables, defined here. */
863 enum type_code type_code;
869 case stStruct: /* Start a block defining a struct type */
870 type_code = TYPE_CODE_STRUCT;
871 goto structured_common;
873 case stUnion: /* Start a block defining a union type */
874 type_code = TYPE_CODE_UNION;
875 goto structured_common;
877 case stEnum: /* Start a block defining an enum type */
878 type_code = TYPE_CODE_ENUM;
879 goto structured_common;
881 case stBlock: /* Either a lexical block, or some type */
882 if (sh->sc != scInfo && !SC_IS_COMMON (sh->sc))
883 goto case_stBlock_code; /* Lexical block */
885 type_code = TYPE_CODE_UNDEF; /* We have a type. */
887 /* Common code for handling struct, union, enum, and/or as-yet-
888 unknown-type blocks of info about structured data. `type_code'
889 has been set to the proper TYPE_CODE, if we know it. */
891 found_ecoff_debugging_info = 1;
893 top_stack->blocktype = stBlock;
895 /* First count the number of fields and the highest value. */
898 for (ext_tsym = ext_sh + external_sym_size;
900 ext_tsym += external_sym_size)
904 (*swap_sym_in) (cur_bfd, ext_tsym, &tsym);
909 /* C++ encodes class types as structures where there the
910 methods are encoded as stProc. The scope of stProc
911 symbols also ends with stEnd, thus creating a risk of
912 taking the wrong stEnd symbol record as the end of
913 the current struct, which would cause GDB to undercount
914 the real number of fields in this struct. To make sure
915 we really reached the right stEnd symbol record, we
916 check the associated name, and match it against the
917 struct name. Since method names are mangled while
918 the class name is not, there is no risk of having a
919 method whose name is identical to the class name
920 (in particular constructor method names are different
921 from the class name). There is therefore no risk that
922 this check stops the count on the StEnd of a method.
924 Also, assume that we're really at the end when tsym.iss
926 if (tsym.iss == issNull
927 || strcmp (debug_info->ss + cur_fdr->issBase + tsym.iss,
933 if (nfields == 0 && type_code == TYPE_CODE_UNDEF)
935 /* If the type of the member is Nil (or Void),
936 without qualifiers, assume the tag is an
938 Alpha cc -migrate enums are recognized by a zero
939 index and a zero symbol value.
940 DU 4.0 cc enums are recognized by a member type of
941 btEnum without qualifiers and a zero symbol value. */
942 if (tsym.index == indexNil
943 || (tsym.index == 0 && sh->value == 0))
944 type_code = TYPE_CODE_ENUM;
947 (*debug_swap->swap_tir_in) (bigend,
948 &ax[tsym.index].a_ti,
950 if ((tir.bt == btNil || tir.bt == btVoid
951 || (tir.bt == btEnum && sh->value == 0))
953 type_code = TYPE_CODE_ENUM;
957 if (tsym.value > max_value)
958 max_value = tsym.value;
967 /* This is a no-op; is it trying to tell us something
968 we should be checking? */
969 if (tsym.sc == scVariant); /*UNIMPLEMENTED */
973 /* This is something like a struct within a
974 struct. Skip over the fields of the inner
975 struct. The -1 is because the for loop will
976 increment ext_tsym. */
977 ext_tsym = ((char *) debug_info->external_sym
978 + ((cur_fdr->isymBase + tsym.index - 1)
979 * external_sym_size));
985 /* mips cc puts out a typedef for struct x if it is not yet
986 defined when it encounters
987 struct y { struct x *xp; };
992 /* Irix5 cc puts out a stIndirect for struct x if it is not
993 yet defined when it encounters
994 struct y { struct x *xp; };
999 complaint (&symfile_complaints,
1000 "declaration block contains unhandled symbol type %d",
1006 /* In an stBlock, there is no way to distinguish structs,
1007 unions, and enums at this point. This is a bug in the
1008 original design (that has been fixed with the recent
1009 addition of the stStruct, stUnion, and stEnum symbol
1010 types.) The way you can tell is if/when you see a variable
1011 or field of that type. In that case the variable's type
1012 (in the AUX table) says if the type is struct, union, or
1013 enum, and points back to the stBlock here. So you can
1014 patch the tag kind up later - but only if there actually is
1015 a variable or field of that type.
1017 So until we know for sure, we will guess at this point.
1019 If the first member has index==indexNil or a void type,
1020 assume we have an enumeration.
1021 Otherwise, if there is more than one member, and all
1022 the members have offset 0, assume we have a union.
1023 Otherwise, assume we have a struct.
1025 The heuristic could guess wrong in the case of of an
1026 enumeration with no members or a union with one (or zero)
1027 members, or when all except the last field of a struct have
1028 width zero. These are uncommon and/or illegal situations,
1029 and in any case guessing wrong probably doesn't matter
1032 But if we later do find out we were wrong, we fixup the tag
1033 kind. Members of an enumeration must be handled
1034 differently from struct/union fields, and that is harder to
1035 patch up, but luckily we shouldn't need to. (If there are
1036 any enumeration members, we can tell for sure it's an enum
1039 if (type_code == TYPE_CODE_UNDEF)
1041 if (nfields > 1 && max_value == 0)
1042 type_code = TYPE_CODE_UNION;
1044 type_code = TYPE_CODE_STRUCT;
1047 /* Create a new type or use the pending type. */
1048 pend = is_pending_symbol (cur_fdr, ext_sh);
1049 if (pend == (struct mdebug_pending *) NULL)
1051 t = new_type (NULL);
1052 add_pending (cur_fdr, ext_sh, t);
1057 /* Do not set the tag name if it is a compiler generated tag name
1058 (.Fxx or .xxfake or empty) for unnamed struct/union/enums.
1059 Alpha cc puts out an sh->iss of zero for those. */
1060 if (sh->iss == 0 || name[0] == '.' || name[0] == '\0')
1061 TYPE_TAG_NAME (t) = NULL;
1063 TYPE_TAG_NAME (t) = obconcat (¤t_objfile->objfile_obstack,
1066 TYPE_CODE (t) = type_code;
1067 TYPE_LENGTH (t) = sh->value;
1068 TYPE_NFIELDS (t) = nfields;
1069 TYPE_FIELDS (t) = f = ((struct field *)
1071 nfields * sizeof (struct field)));
1073 if (type_code == TYPE_CODE_ENUM)
1075 int unsigned_enum = 1;
1077 /* This is a non-empty enum. */
1079 /* DEC c89 has the number of enumerators in the sh.value field,
1080 not the type length, so we have to compensate for that
1081 incompatibility quirk.
1082 This might do the wrong thing for an enum with one or two
1083 enumerators and gcc -gcoff -fshort-enums, but these cases
1084 are hopefully rare enough.
1085 Alpha cc -migrate has a sh.value field of zero, we adjust
1087 if (TYPE_LENGTH (t) == TYPE_NFIELDS (t)
1088 || TYPE_LENGTH (t) == 0)
1089 TYPE_LENGTH (t) = TARGET_INT_BIT / HOST_CHAR_BIT;
1090 for (ext_tsym = ext_sh + external_sym_size;
1092 ext_tsym += external_sym_size)
1095 struct symbol *enum_sym;
1097 (*swap_sym_in) (cur_bfd, ext_tsym, &tsym);
1099 if (tsym.st != stMember)
1102 FIELD_BITPOS (*f) = tsym.value;
1103 FIELD_TYPE (*f) = t;
1104 FIELD_NAME (*f) = debug_info->ss + cur_fdr->issBase + tsym.iss;
1105 FIELD_BITSIZE (*f) = 0;
1106 FIELD_STATIC_KIND (*f) = 0;
1108 enum_sym = ((struct symbol *)
1109 obstack_alloc (¤t_objfile->objfile_obstack,
1110 sizeof (struct symbol)));
1111 memset (enum_sym, 0, sizeof (struct symbol));
1112 DEPRECATED_SYMBOL_NAME (enum_sym) =
1113 obsavestring (f->name, strlen (f->name),
1114 ¤t_objfile->objfile_obstack);
1115 SYMBOL_CLASS (enum_sym) = LOC_CONST;
1116 SYMBOL_TYPE (enum_sym) = t;
1117 SYMBOL_DOMAIN (enum_sym) = VAR_DOMAIN;
1118 SYMBOL_VALUE (enum_sym) = tsym.value;
1119 if (SYMBOL_VALUE (enum_sym) < 0)
1121 add_symbol (enum_sym, top_stack->cur_block);
1123 /* Skip the stMembers that we've handled. */
1128 TYPE_FLAGS (t) |= TYPE_FLAG_UNSIGNED;
1130 /* make this the current type */
1131 top_stack->cur_type = t;
1132 top_stack->cur_field = 0;
1134 /* Do not create a symbol for alpha cc unnamed structs. */
1138 /* gcc puts out an empty struct for an opaque struct definitions,
1139 do not create a symbol for it either. */
1140 if (TYPE_NFIELDS (t) == 0)
1142 TYPE_FLAGS (t) |= TYPE_FLAG_STUB;
1146 s = new_symbol (name);
1147 SYMBOL_DOMAIN (s) = STRUCT_DOMAIN;
1148 SYMBOL_CLASS (s) = LOC_TYPEDEF;
1149 SYMBOL_VALUE (s) = 0;
1150 SYMBOL_TYPE (s) = t;
1151 add_symbol (s, top_stack->cur_block);
1154 /* End of local variables shared by struct, union, enum, and
1155 block (as yet unknown struct/union/enum) processing. */
1159 found_ecoff_debugging_info = 1;
1160 /* beginnning of (code) block. Value of symbol
1161 is the displacement from procedure start */
1162 push_parse_stack ();
1164 /* Do not start a new block if this is the outermost block of a
1165 procedure. This allows the LOC_BLOCK symbol to point to the
1166 block with the local variables, so funcname::var works. */
1167 if (top_stack->blocktype == stProc
1168 || top_stack->blocktype == stStaticProc)
1170 top_stack->blocktype = stNil;
1174 top_stack->blocktype = stBlock;
1175 b = new_block (NON_FUNCTION_BLOCK);
1176 BLOCK_START (b) = sh->value + top_stack->procadr;
1177 BLOCK_SUPERBLOCK (b) = top_stack->cur_block;
1178 top_stack->cur_block = b;
1179 add_block (b, top_stack->cur_st);
1182 case stEnd: /* end (of anything) */
1183 if (sh->sc == scInfo || SC_IS_COMMON (sh->sc))
1185 /* Finished with type */
1186 top_stack->cur_type = 0;
1188 else if (sh->sc == scText &&
1189 (top_stack->blocktype == stProc ||
1190 top_stack->blocktype == stStaticProc))
1192 /* Finished with procedure */
1193 struct blockvector *bv = BLOCKVECTOR (top_stack->cur_st);
1194 struct mips_extra_func_info *e;
1195 struct block *b = top_stack->cur_block;
1196 struct type *ftype = top_stack->cur_type;
1199 BLOCK_END (top_stack->cur_block) += sh->value; /* size */
1201 /* Make up special symbol to contain procedure specific info */
1202 s = new_symbol (MIPS_EFI_SYMBOL_NAME);
1203 SYMBOL_DOMAIN (s) = LABEL_DOMAIN;
1204 SYMBOL_CLASS (s) = LOC_CONST;
1205 SYMBOL_TYPE (s) = mdebug_type_void;
1206 e = ((struct mips_extra_func_info *)
1207 obstack_alloc (¤t_objfile->objfile_obstack,
1208 sizeof (struct mips_extra_func_info)));
1209 memset (e, 0, sizeof (struct mips_extra_func_info));
1210 SYMBOL_VALUE (s) = (long) e;
1211 e->numargs = top_stack->numargs;
1212 e->pdr.framereg = -1;
1213 add_symbol (s, top_stack->cur_block);
1215 /* f77 emits proc-level with address bounds==[0,0],
1216 So look for such child blocks, and patch them. */
1217 for (i = 0; i < BLOCKVECTOR_NBLOCKS (bv); i++)
1219 struct block *b_bad = BLOCKVECTOR_BLOCK (bv, i);
1220 if (BLOCK_SUPERBLOCK (b_bad) == b
1221 && BLOCK_START (b_bad) == top_stack->procadr
1222 && BLOCK_END (b_bad) == top_stack->procadr)
1224 BLOCK_START (b_bad) = BLOCK_START (b);
1225 BLOCK_END (b_bad) = BLOCK_END (b);
1229 if (TYPE_NFIELDS (ftype) <= 0)
1231 /* No parameter type information is recorded with the function's
1232 type. Set that from the type of the parameter symbols. */
1233 int nparams = top_stack->numargs;
1239 struct dict_iterator iter;
1240 TYPE_NFIELDS (ftype) = nparams;
1241 TYPE_FIELDS (ftype) = (struct field *)
1242 TYPE_ALLOC (ftype, nparams * sizeof (struct field));
1245 ALL_BLOCK_SYMBOLS (b, iter, sym)
1247 if (iparams == nparams)
1250 switch (SYMBOL_CLASS (sym))
1255 case LOC_REGPARM_ADDR:
1256 TYPE_FIELD_TYPE (ftype, iparams) = SYMBOL_TYPE (sym);
1257 TYPE_FIELD_ARTIFICIAL (ftype, iparams) = 0;
1267 else if (sh->sc == scText && top_stack->blocktype == stBlock)
1269 /* End of (code) block. The value of the symbol is the
1270 displacement from the procedure`s start address of the
1271 end of this block. */
1272 BLOCK_END (top_stack->cur_block) = sh->value + top_stack->procadr;
1274 else if (sh->sc == scText && top_stack->blocktype == stNil)
1276 /* End of outermost block. Pop parse stack and ignore. The
1277 following stEnd of stProc will take care of the block. */
1280 else if (sh->sc == scText && top_stack->blocktype == stFile)
1282 /* End of file. Pop parse stack and ignore. Higher
1283 level code deals with this. */
1287 complaint (&symfile_complaints,
1288 "stEnd with storage class %d not handled", sh->sc);
1290 pop_parse_stack (); /* restore previous lexical context */
1293 case stMember: /* member of struct or union */
1294 f = &TYPE_FIELDS (top_stack->cur_type)[top_stack->cur_field++];
1295 FIELD_NAME (*f) = name;
1296 FIELD_BITPOS (*f) = sh->value;
1298 FIELD_TYPE (*f) = parse_type (cur_fd, ax, sh->index, &bitsize, bigend, name);
1299 FIELD_BITSIZE (*f) = bitsize;
1300 FIELD_STATIC_KIND (*f) = 0;
1303 case stIndirect: /* forward declaration on Irix5 */
1304 /* Forward declarations from Irix5 cc are handled by cross_ref,
1308 case stTypedef: /* type definition */
1309 found_ecoff_debugging_info = 1;
1311 /* Typedefs for forward declarations and opaque structs from alpha cc
1312 are handled by cross_ref, skip them. */
1316 /* Parse the type or use the pending type. */
1317 pend = is_pending_symbol (cur_fdr, ext_sh);
1318 if (pend == (struct mdebug_pending *) NULL)
1320 t = parse_type (cur_fd, ax, sh->index, (int *) NULL, bigend, name);
1321 add_pending (cur_fdr, ext_sh, t);
1326 /* mips cc puts out a typedef with the name of the struct for forward
1327 declarations. These should not go into the symbol table and
1328 TYPE_NAME should not be set for them.
1329 They can't be distinguished from an intentional typedef to
1330 the same name however:
1332 struct x { int ix; int jx; };
1336 struct xx {int ixx; int jxx; };
1337 generates a cross referencing stTypedef for x and xx.
1338 The user visible effect of this is that the type of a pointer
1339 to struct foo sometimes is given as `foo *' instead of `struct foo *'.
1340 The problem is fixed with alpha cc and Irix5 cc. */
1342 /* However if the typedef cross references to an opaque aggregate, it
1343 is safe to omit it from the symbol table. */
1345 if (has_opaque_xref (cur_fdr, sh))
1347 s = new_symbol (name);
1348 SYMBOL_DOMAIN (s) = VAR_DOMAIN;
1349 SYMBOL_CLASS (s) = LOC_TYPEDEF;
1350 SYMBOL_BLOCK_VALUE (s) = top_stack->cur_block;
1351 SYMBOL_TYPE (s) = t;
1352 add_symbol (s, top_stack->cur_block);
1354 /* Incomplete definitions of structs should not get a name. */
1355 if (TYPE_NAME (SYMBOL_TYPE (s)) == NULL
1356 && (TYPE_NFIELDS (SYMBOL_TYPE (s)) != 0
1357 || (TYPE_CODE (SYMBOL_TYPE (s)) != TYPE_CODE_STRUCT
1358 && TYPE_CODE (SYMBOL_TYPE (s)) != TYPE_CODE_UNION)))
1360 if (TYPE_CODE (SYMBOL_TYPE (s)) == TYPE_CODE_PTR
1361 || TYPE_CODE (SYMBOL_TYPE (s)) == TYPE_CODE_FUNC)
1363 /* If we are giving a name to a type such as "pointer to
1364 foo" or "function returning foo", we better not set
1365 the TYPE_NAME. If the program contains "typedef char
1366 *caddr_t;", we don't want all variables of type char
1367 * to print as caddr_t. This is not just a
1368 consequence of GDB's type management; CC and GCC (at
1369 least through version 2.4) both output variables of
1370 either type char * or caddr_t with the type
1371 refering to the stTypedef symbol for caddr_t. If a future
1372 compiler cleans this up it GDB is not ready for it
1373 yet, but if it becomes ready we somehow need to
1374 disable this check (without breaking the PCC/GCC2.4
1379 Fortunately, this check seems not to be necessary
1380 for anything except pointers or functions. */
1383 TYPE_NAME (SYMBOL_TYPE (s)) = DEPRECATED_SYMBOL_NAME (s);
1387 case stFile: /* file name */
1388 push_parse_stack ();
1389 top_stack->blocktype = sh->st;
1392 /* I`ve never seen these for C */
1394 break; /* register relocation */
1396 break; /* forwarding address */
1398 break; /* constant */
1400 complaint (&symfile_complaints, "unknown symbol type 0x%x", sh->st);
1407 /* Parse the type information provided in the raw AX entries for
1408 the symbol SH. Return the bitfield size in BS, in case.
1409 We must byte-swap the AX entries before we use them; BIGEND says whether
1410 they are big-endian or little-endian (from fh->fBigendian). */
1412 static struct type *
1413 parse_type (int fd, union aux_ext *ax, unsigned int aux_index, int *bs,
1414 int bigend, char *sym_name)
1416 /* Null entries in this map are treated specially */
1417 static struct type **map_bt[] =
1419 &mdebug_type_void, /* btNil */
1420 &mdebug_type_adr_32, /* btAdr */
1421 &mdebug_type_char, /* btChar */
1422 &mdebug_type_unsigned_char, /* btUChar */
1423 &mdebug_type_short, /* btShort */
1424 &mdebug_type_unsigned_short, /* btUShort */
1425 &mdebug_type_int_32, /* btInt */
1426 &mdebug_type_unsigned_int_32, /* btUInt */
1427 &mdebug_type_long_32, /* btLong */
1428 &mdebug_type_unsigned_long_32, /* btULong */
1429 &mdebug_type_float, /* btFloat */
1430 &mdebug_type_double, /* btDouble */
1437 &mdebug_type_complex, /* btComplex */
1438 &mdebug_type_double_complex, /* btDComplex */
1440 &mdebug_type_fixed_dec, /* btFixedDec */
1441 &mdebug_type_float_dec, /* btFloatDec */
1442 &mdebug_type_string, /* btString */
1445 &mdebug_type_void, /* btVoid */
1446 0, /* DEC C++: Pointer to member */
1447 0, /* DEC C++: Virtual function table */
1448 0, /* DEC C++: Class (Record) */
1449 &mdebug_type_long_64, /* btLong64 */
1450 &mdebug_type_unsigned_long_64, /* btULong64 */
1451 &mdebug_type_long_long_64, /* btLongLong64 */
1452 &mdebug_type_unsigned_long_long_64, /* btULongLong64 */
1453 &mdebug_type_adr_64, /* btAdr64 */
1454 &mdebug_type_int_64, /* btInt64 */
1455 &mdebug_type_unsigned_int_64, /* btUInt64 */
1459 struct type *tp = 0;
1460 enum type_code type_code = TYPE_CODE_UNDEF;
1462 /* Handle undefined types, they have indexNil. */
1463 if (aux_index == indexNil)
1464 return mdebug_type_int;
1466 /* Handle corrupt aux indices. */
1467 if (aux_index >= (debug_info->fdr + fd)->caux)
1469 index_complaint (sym_name);
1470 return mdebug_type_int;
1474 /* Use aux as a type information record, map its basic type. */
1475 (*debug_swap->swap_tir_in) (bigend, &ax->a_ti, t);
1476 if (t->bt >= (sizeof (map_bt) / sizeof (*map_bt)))
1478 basic_type_complaint (t->bt, sym_name);
1479 return mdebug_type_int;
1483 tp = *map_bt[t->bt];
1488 /* Cannot use builtin types -- build our own */
1492 type_code = TYPE_CODE_STRUCT;
1495 type_code = TYPE_CODE_UNION;
1498 type_code = TYPE_CODE_ENUM;
1501 type_code = TYPE_CODE_RANGE;
1504 type_code = TYPE_CODE_SET;
1507 /* alpha cc -migrate uses this for typedefs. The true type will
1508 be obtained by crossreferencing below. */
1509 type_code = TYPE_CODE_ERROR;
1512 /* alpha cc uses this for typedefs. The true type will be
1513 obtained by crossreferencing below. */
1514 type_code = TYPE_CODE_ERROR;
1517 basic_type_complaint (t->bt, sym_name);
1518 return mdebug_type_int;
1522 /* Move on to next aux */
1527 int width = AUX_GET_WIDTH (bigend, ax);
1528 /* Inhibit core dumps if TIR is corrupted. */
1529 if (bs == (int *) NULL)
1531 /* Alpha cc -migrate encodes char and unsigned char types
1532 as short and unsigned short types with a field width of 8.
1533 Enum types also have a field width which we ignore for now. */
1534 if (t->bt == btShort && width == 8)
1535 tp = mdebug_type_char;
1536 else if (t->bt == btUShort && width == 8)
1537 tp = mdebug_type_unsigned_char;
1538 else if (t->bt == btEnum)
1541 complaint (&symfile_complaints, "can't handle TIR fBitfield for %s",
1549 /* A btIndirect entry cross references to an aux entry containing
1551 if (t->bt == btIndirect)
1558 (*debug_swap->swap_rndx_in) (bigend, &ax->a_rndx, rn);
1560 if (rn->rfd == 0xfff)
1562 rf = AUX_GET_ISYM (bigend, ax);
1570 complaint (&symfile_complaints,
1571 "unable to cross ref btIndirect for %s", sym_name);
1572 return mdebug_type_int;
1574 xref_fh = get_rfd (fd, rf);
1575 xref_fd = xref_fh - debug_info->fdr;
1576 tp = parse_type (xref_fd, debug_info->external_aux + xref_fh->iauxBase,
1577 rn->index, (int *) NULL, xref_fh->fBigendian, sym_name);
1580 /* All these types really point to some (common) MIPS type
1581 definition, and only the type-qualifiers fully identify
1582 them. We'll make the same effort at sharing. */
1583 if (t->bt == btStruct ||
1587 /* btSet (I think) implies that the name is a tag name, not a typedef
1588 name. This apparently is a MIPS extension for C sets. */
1593 /* Try to cross reference this type, build new type on failure. */
1594 ax += cross_ref (fd, ax, &tp, type_code, &name, bigend, sym_name);
1595 if (tp == (struct type *) NULL)
1596 tp = init_type (type_code, 0, 0, (char *) NULL, current_objfile);
1598 /* DEC c89 produces cross references to qualified aggregate types,
1599 dereference them. */
1600 while (TYPE_CODE (tp) == TYPE_CODE_PTR
1601 || TYPE_CODE (tp) == TYPE_CODE_ARRAY)
1602 tp = TYPE_TARGET_TYPE (tp);
1604 /* Make sure that TYPE_CODE(tp) has an expected type code.
1605 Any type may be returned from cross_ref if file indirect entries
1607 if (TYPE_CODE (tp) != TYPE_CODE_STRUCT
1608 && TYPE_CODE (tp) != TYPE_CODE_UNION
1609 && TYPE_CODE (tp) != TYPE_CODE_ENUM)
1611 unexpected_type_code_complaint (sym_name);
1616 /* Usually, TYPE_CODE(tp) is already type_code. The main
1617 exception is if we guessed wrong re struct/union/enum.
1618 But for struct vs. union a wrong guess is harmless, so
1619 don't complain(). */
1620 if ((TYPE_CODE (tp) == TYPE_CODE_ENUM
1621 && type_code != TYPE_CODE_ENUM)
1622 || (TYPE_CODE (tp) != TYPE_CODE_ENUM
1623 && type_code == TYPE_CODE_ENUM))
1625 bad_tag_guess_complaint (sym_name);
1628 if (TYPE_CODE (tp) != type_code)
1630 TYPE_CODE (tp) = type_code;
1633 /* Do not set the tag name if it is a compiler generated tag name
1634 (.Fxx or .xxfake or empty) for unnamed struct/union/enums. */
1635 if (name[0] == '.' || name[0] == '\0')
1636 TYPE_TAG_NAME (tp) = NULL;
1637 else if (TYPE_TAG_NAME (tp) == NULL
1638 || strcmp (TYPE_TAG_NAME (tp), name) != 0)
1639 TYPE_TAG_NAME (tp) = obsavestring (name, strlen (name),
1640 ¤t_objfile->objfile_obstack);
1644 /* All these types really point to some (common) MIPS type
1645 definition, and only the type-qualifiers fully identify
1646 them. We'll make the same effort at sharing.
1647 FIXME: We are not doing any guessing on range types. */
1648 if (t->bt == btRange)
1652 /* Try to cross reference this type, build new type on failure. */
1653 ax += cross_ref (fd, ax, &tp, type_code, &name, bigend, sym_name);
1654 if (tp == (struct type *) NULL)
1655 tp = init_type (type_code, 0, 0, (char *) NULL, current_objfile);
1657 /* Make sure that TYPE_CODE(tp) has an expected type code.
1658 Any type may be returned from cross_ref if file indirect entries
1660 if (TYPE_CODE (tp) != TYPE_CODE_RANGE)
1662 unexpected_type_code_complaint (sym_name);
1666 /* Usually, TYPE_CODE(tp) is already type_code. The main
1667 exception is if we guessed wrong re struct/union/enum. */
1668 if (TYPE_CODE (tp) != type_code)
1670 bad_tag_guess_complaint (sym_name);
1671 TYPE_CODE (tp) = type_code;
1673 if (TYPE_NAME (tp) == NULL
1674 || strcmp (TYPE_NAME (tp), name) != 0)
1675 TYPE_NAME (tp) = obsavestring (name, strlen (name),
1676 ¤t_objfile->objfile_obstack);
1679 if (t->bt == btTypedef)
1683 /* Try to cross reference this type, it should succeed. */
1684 ax += cross_ref (fd, ax, &tp, type_code, &name, bigend, sym_name);
1685 if (tp == (struct type *) NULL)
1687 complaint (&symfile_complaints,
1688 "unable to cross ref btTypedef for %s", sym_name);
1689 tp = mdebug_type_int;
1693 /* Deal with range types */
1694 if (t->bt == btRange)
1696 TYPE_NFIELDS (tp) = 2;
1697 TYPE_FIELDS (tp) = ((struct field *)
1698 TYPE_ALLOC (tp, 2 * sizeof (struct field)));
1699 TYPE_FIELD_NAME (tp, 0) = obsavestring ("Low", strlen ("Low"),
1700 ¤t_objfile->objfile_obstack);
1701 TYPE_FIELD_BITPOS (tp, 0) = AUX_GET_DNLOW (bigend, ax);
1703 TYPE_FIELD_NAME (tp, 1) = obsavestring ("High", strlen ("High"),
1704 ¤t_objfile->objfile_obstack);
1705 TYPE_FIELD_BITPOS (tp, 1) = AUX_GET_DNHIGH (bigend, ax);
1709 /* Parse all the type qualifiers now. If there are more
1710 than 6 the game will continue in the next aux */
1714 #define PARSE_TQ(tq) \
1715 if (t->tq != tqNil) \
1716 ax += upgrade_type(fd, &tp, t->tq, ax, bigend, sym_name); \
1728 /* mips cc 2.x and gcc never put out continued aux entries. */
1732 (*debug_swap->swap_tir_in) (bigend, &ax->a_ti, t);
1736 /* Complain for illegal continuations due to corrupt aux entries. */
1738 complaint (&symfile_complaints, "illegal TIR continued for %s", sym_name);
1743 /* Make up a complex type from a basic one. Type is passed by
1744 reference in TPP and side-effected as necessary. The type
1745 qualifier TQ says how to handle the aux symbols at AX for
1746 the symbol SX we are currently analyzing. BIGEND says whether
1747 aux symbols are big-endian or little-endian.
1748 Returns the number of aux symbols we parsed. */
1751 upgrade_type (int fd, struct type **tpp, int tq, union aux_ext *ax, int bigend,
1757 /* Used in array processing */
1768 t = lookup_pointer_type (*tpp);
1773 t = lookup_function_type (*tpp);
1780 /* Determine and record the domain type (type of index) */
1781 (*debug_swap->swap_rndx_in) (bigend, &ax->a_rndx, &rndx);
1787 rf = AUX_GET_ISYM (bigend, ax);
1790 fh = get_rfd (fd, rf);
1792 indx = parse_type (fh - debug_info->fdr,
1793 debug_info->external_aux + fh->iauxBase,
1794 id, (int *) NULL, bigend, sym_name);
1796 /* The bounds type should be an integer type, but might be anything
1797 else due to corrupt aux entries. */
1798 if (TYPE_CODE (indx) != TYPE_CODE_INT)
1800 complaint (&symfile_complaints,
1801 "illegal array index type for %s, assuming int", sym_name);
1802 indx = mdebug_type_int;
1805 /* Get the bounds, and create the array type. */
1807 lower = AUX_GET_DNLOW (bigend, ax);
1809 upper = AUX_GET_DNHIGH (bigend, ax);
1811 rf = AUX_GET_WIDTH (bigend, ax); /* bit size of array element */
1813 range = create_range_type ((struct type *) NULL, indx,
1816 t = create_array_type ((struct type *) NULL, *tpp, range);
1818 /* We used to fill in the supplied array element bitsize
1819 here if the TYPE_LENGTH of the target type was zero.
1820 This happens for a `pointer to an array of anonymous structs',
1821 but in this case the array element bitsize is also zero,
1822 so nothing is gained.
1823 And we used to check the TYPE_LENGTH of the target type against
1824 the supplied array element bitsize.
1825 gcc causes a mismatch for `pointer to array of object',
1826 since the sdb directives it uses do not have a way of
1827 specifying the bitsize, but it does no harm (the
1828 TYPE_LENGTH should be correct) and we should be able to
1829 ignore the erroneous bitsize from the auxiliary entry safely.
1830 dbx seems to ignore it too. */
1832 /* TYPE_FLAG_TARGET_STUB now takes care of the zero TYPE_LENGTH
1834 if (TYPE_LENGTH (*tpp) == 0)
1836 TYPE_FLAGS (t) |= TYPE_FLAG_TARGET_STUB;
1843 /* Volatile -- currently ignored */
1847 /* Const -- currently ignored */
1851 complaint (&symfile_complaints, "unknown type qualifier 0x%x", tq);
1857 /* Parse a procedure descriptor record PR. Note that the procedure is
1858 parsed _after_ the local symbols, now we just insert the extra
1859 information we need into a MIPS_EFI_SYMBOL_NAME symbol that has
1860 already been placed in the procedure's main block. Note also that
1861 images that have been partially stripped (ld -x) have been deprived
1862 of local symbols, and we have to cope with them here. FIRST_OFF is
1863 the offset of the first procedure for this FDR; we adjust the
1864 address by this amount, but I don't know why. SEARCH_SYMTAB is the symtab
1865 to look for the function which contains the MIPS_EFI_SYMBOL_NAME symbol
1866 in question, or NULL to use top_stack->cur_block. */
1868 static void parse_procedure (PDR *, struct symtab *, struct partial_symtab *);
1871 parse_procedure (PDR *pr, struct symtab *search_symtab,
1872 struct partial_symtab *pst)
1874 struct symbol *s, *i;
1876 struct mips_extra_func_info *e;
1879 /* Simple rule to find files linked "-x" */
1880 if (cur_fdr->rss == -1)
1884 /* Static procedure at address pr->adr. Sigh. */
1885 /* FIXME-32x64. assuming pr->adr fits in long. */
1886 complaint (&symfile_complaints,
1887 "can't handle PDR for static proc at 0x%lx",
1888 (unsigned long) pr->adr);
1896 (*debug_swap->swap_ext_in) (cur_bfd,
1897 ((char *) debug_info->external_ext
1899 * debug_swap->external_ext_size)),
1901 sh_name = debug_info->ssext + she.asym.iss;
1909 (*debug_swap->swap_sym_in) (cur_bfd,
1910 ((char *) debug_info->external_sym
1911 + ((cur_fdr->isymBase + pr->isym)
1912 * debug_swap->external_sym_size)),
1914 sh_name = debug_info->ss + cur_fdr->issBase + sh.iss;
1917 if (search_symtab != NULL)
1920 /* This loses both in the case mentioned (want a static, find a global),
1921 but also if we are looking up a non-mangled name which happens to
1922 match the name of a mangled function. */
1923 /* We have to save the cur_fdr across the call to lookup_symbol.
1924 If the pdr is for a static function and if a global function with
1925 the same name exists, lookup_symbol will eventually read in the symtab
1926 for the global function and clobber cur_fdr. */
1927 FDR *save_cur_fdr = cur_fdr;
1928 s = lookup_symbol (sh_name, NULL, VAR_DOMAIN, 0, NULL);
1929 cur_fdr = save_cur_fdr;
1933 BLOCKVECTOR_BLOCK (BLOCKVECTOR (search_symtab), STATIC_BLOCK),
1939 s = mylookup_symbol (sh_name, top_stack->cur_block,
1940 VAR_DOMAIN, LOC_BLOCK);
1944 b = SYMBOL_BLOCK_VALUE (s);
1948 complaint (&symfile_complaints, "PDR for %s, but no symbol", sh_name);
1952 /* FIXME -- delete. We can't do symbol allocation now; it's all done. */
1953 s = new_symbol (sh_name);
1954 SYMBOL_DOMAIN (s) = VAR_DOMAIN;
1955 SYMBOL_CLASS (s) = LOC_BLOCK;
1956 /* Donno its type, hope int is ok */
1957 SYMBOL_TYPE (s) = lookup_function_type (mdebug_type_int);
1958 add_symbol (s, top_stack->cur_block);
1959 /* Wont have symbols for this one */
1961 SYMBOL_BLOCK_VALUE (s) = b;
1962 BLOCK_FUNCTION (b) = s;
1963 BLOCK_START (b) = pr->adr;
1964 /* BOUND used to be the end of procedure's text, but the
1965 argument is no longer passed in. */
1966 BLOCK_END (b) = bound;
1967 BLOCK_SUPERBLOCK (b) = top_stack->cur_block;
1968 add_block (b, top_stack->cur_st);
1972 i = mylookup_symbol (MIPS_EFI_SYMBOL_NAME, b, LABEL_DOMAIN, LOC_CONST);
1976 e = (struct mips_extra_func_info *) SYMBOL_VALUE (i);
1978 e->pdr.isym = (long) s;
1980 /* GDB expects the absolute function start address for the
1981 procedure descriptor in e->pdr.adr.
1982 As the address in the procedure descriptor is usually relative,
1983 we would have to relocate e->pdr.adr with cur_fdr->adr and
1984 ANOFFSET (pst->section_offsets, SECT_OFF_TEXT (pst->objfile)).
1985 Unfortunately cur_fdr->adr and e->pdr.adr are both absolute
1986 in shared libraries on some systems, and on other systems
1987 e->pdr.adr is sometimes offset by a bogus value.
1988 To work around these problems, we replace e->pdr.adr with
1989 the start address of the function. */
1990 e->pdr.adr = BLOCK_START (b);
1992 /* Correct incorrect setjmp procedure descriptor from the library
1993 to make backtrace through setjmp work. */
1994 if (e->pdr.pcreg == 0
1995 && strcmp (sh_name, "setjmp") == 0)
1997 complaint (&symfile_complaints, "fixing bad setjmp PDR from libc");
1998 e->pdr.pcreg = RA_REGNUM;
1999 e->pdr.regmask = 0x80000000;
2000 e->pdr.regoffset = -4;
2004 /* It would be reasonable that functions that have been compiled
2005 without debugging info have a btNil type for their return value,
2006 and functions that are void and are compiled with debugging info
2008 gcc and DEC f77 put out btNil types for both cases, so btNil is mapped
2009 to TYPE_CODE_VOID in parse_type to get the `compiled with debugging info'
2011 The glevel field in cur_fdr could be used to determine the presence
2012 of debugging info, but GCC doesn't always pass the -g switch settings
2013 to the assembler and GAS doesn't set the glevel field from the -g switch
2015 To work around these problems, the return value type of a TYPE_CODE_VOID
2016 function is adjusted accordingly if no debugging info was found in the
2017 compilation unit. */
2019 if (processing_gcc_compilation == 0
2020 && found_ecoff_debugging_info == 0
2021 && TYPE_CODE (TYPE_TARGET_TYPE (SYMBOL_TYPE (s))) == TYPE_CODE_VOID)
2022 SYMBOL_TYPE (s) = nodebug_func_symbol_type;
2025 /* Relocate the extra function info pointed to by the symbol table. */
2028 ecoff_relocate_efi (struct symbol *sym, CORE_ADDR delta)
2030 struct mips_extra_func_info *e;
2032 e = (struct mips_extra_func_info *) SYMBOL_VALUE (sym);
2034 e->pdr.adr += delta;
2037 /* Parse the external symbol ES. Just call parse_symbol() after
2038 making sure we know where the aux are for it.
2039 BIGEND says whether aux entries are big-endian or little-endian.
2041 This routine clobbers top_stack->cur_block and ->cur_st. */
2043 static void parse_external (EXTR *, int, struct section_offsets *,
2047 parse_external (EXTR *es, int bigend, struct section_offsets *section_offsets,
2048 struct objfile *objfile)
2052 if (es->ifd != ifdNil)
2055 cur_fdr = debug_info->fdr + cur_fd;
2056 ax = debug_info->external_aux + cur_fdr->iauxBase;
2060 cur_fdr = debug_info->fdr;
2064 /* Reading .o files */
2065 if (SC_IS_UNDEF (es->asym.sc) || es->asym.sc == scNil)
2068 switch (es->asym.st)
2071 /* These are generated for static symbols in .o files,
2092 /* FIXME: Turn this into a complaint? */
2094 printf_filtered ("Warning: %s `%s' is undefined (in %s)\n",
2095 what, debug_info->ssext + es->asym.iss,
2096 fdr_name (cur_fdr));
2100 switch (es->asym.st)
2104 /* There is no need to parse the external procedure symbols.
2105 If they are from objects compiled without -g, their index will
2106 be indexNil, and the symbol definition from the minimal symbol
2107 is preferrable (yielding a function returning int instead of int).
2108 If the index points to a local procedure symbol, the local
2109 symbol already provides the correct type.
2110 Note that the index of the external procedure symbol points
2111 to the local procedure symbol in the local symbol table, and
2112 _not_ to the auxiliary symbol info. */
2116 /* Global common symbols are resolved by the runtime loader,
2118 if (SC_IS_COMMON (es->asym.sc))
2121 /* Note that the case of a symbol with indexNil must be handled
2122 anyways by parse_symbol(). */
2123 parse_symbol (&es->asym, ax, (char *) NULL, bigend, section_offsets, objfile);
2130 /* Parse the line number info for file descriptor FH into
2131 GDB's linetable LT. MIPS' encoding requires a little bit
2132 of magic to get things out. Note also that MIPS' line
2133 numbers can go back and forth, apparently we can live
2134 with that and do not need to reorder our linetables */
2136 static void parse_lines (FDR *, PDR *, struct linetable *, int,
2137 struct partial_symtab *, CORE_ADDR);
2140 parse_lines (FDR *fh, PDR *pr, struct linetable *lt, int maxlines,
2141 struct partial_symtab *pst, CORE_ADDR lowest_pdr_addr)
2143 unsigned char *base;
2145 int delta, count, lineno = 0;
2147 if (fh->cbLine == 0)
2150 /* Scan by procedure descriptors */
2152 for (j = 0; j < fh->cpd; j++, pr++)
2156 unsigned char *halt;
2158 /* No code for this one */
2159 if (pr->iline == ilineNil ||
2160 pr->lnLow == -1 || pr->lnHigh == -1)
2163 /* Determine start and end address of compressed line bytes for
2165 base = debug_info->line + fh->cbLineOffset;
2166 if (j != (fh->cpd - 1))
2167 halt = base + pr[1].cbLineOffset;
2169 halt = base + fh->cbLine;
2170 base += pr->cbLineOffset;
2172 adr = pst->textlow + pr->adr - lowest_pdr_addr;
2174 l = adr >> 2; /* in words */
2175 for (lineno = pr->lnLow; base < halt;)
2177 count = *base & 0x0f;
2178 delta = *base++ >> 4;
2183 delta = (base[0] << 8) | base[1];
2184 if (delta >= 0x8000)
2188 lineno += delta; /* first delta is 0 */
2190 /* Complain if the line table overflows. Could happen
2191 with corrupt binaries. */
2192 if (lt->nitems >= maxlines)
2194 complaint (&symfile_complaints,
2195 "guessed size of linetable for %s incorrectly",
2199 k = add_line (lt, lineno, l, k);
2206 function_outside_compilation_unit_complaint (const char *arg1)
2208 complaint (&symfile_complaints,
2209 "function `%s' appears to be defined outside of all compilation units",
2213 /* Master parsing procedure for first-pass reading of file symbols
2214 into a partial_symtab. */
2217 parse_partial_symbols (struct objfile *objfile)
2219 const bfd_size_type external_sym_size = debug_swap->external_sym_size;
2220 const bfd_size_type external_rfd_size = debug_swap->external_rfd_size;
2221 const bfd_size_type external_ext_size = debug_swap->external_ext_size;
2222 void (*const swap_ext_in) (bfd *, void *, EXTR *) = debug_swap->swap_ext_in;
2223 void (*const swap_sym_in) (bfd *, void *, SYMR *) = debug_swap->swap_sym_in;
2224 void (*const swap_rfd_in) (bfd *, void *, RFDT *) = debug_swap->swap_rfd_in;
2226 HDRR *hdr = &debug_info->symbolic_header;
2227 /* Running pointers */
2235 struct partial_symtab *pst;
2236 int textlow_not_set = 1;
2237 int past_first_source_file = 0;
2239 /* List of current psymtab's include files */
2240 char **psymtab_include_list;
2241 int includes_allocated;
2244 struct pst_map *fdr_to_pst;
2245 /* Index within current psymtab dependency list */
2246 struct partial_symtab **dependency_list;
2247 int dependencies_used, dependencies_allocated;
2248 struct cleanup *old_chain;
2250 enum language prev_language;
2251 asection *text_sect;
2252 int relocatable = 0;
2254 /* Irix 5.2 shared libraries have a fh->adr field of zero, but
2255 the shared libraries are prelinked at a high memory address.
2256 We have to adjust the start address of the object file for this case,
2257 by setting it to the start address of the first procedure in the file.
2258 But we should do no adjustments if we are debugging a .o file, where
2259 the text section (and fh->adr) really starts at zero. */
2260 text_sect = bfd_get_section_by_name (cur_bfd, ".text");
2261 if (text_sect != NULL
2262 && (bfd_get_section_flags (cur_bfd, text_sect) & SEC_RELOC))
2265 extern_tab = (EXTR *) obstack_alloc (&objfile->objfile_obstack,
2266 sizeof (EXTR) * hdr->iextMax);
2268 includes_allocated = 30;
2270 psymtab_include_list = (char **) alloca (includes_allocated *
2272 next_symbol_text_func = mdebug_next_symbol_text;
2274 dependencies_allocated = 30;
2275 dependencies_used = 0;
2277 (struct partial_symtab **) alloca (dependencies_allocated *
2278 sizeof (struct partial_symtab *));
2280 last_source_file = NULL;
2285 * Only parse the Local and External symbols, and the Relative FDR.
2286 * Fixup enough of the loader symtab to be able to use it.
2287 * Allocate space only for the file's portions we need to
2292 max_glevel = MIN_GLEVEL;
2294 /* Allocate the map FDR -> PST.
2295 Minor hack: -O3 images might claim some global data belongs
2296 to FDR -1. We`ll go along with that */
2297 fdr_to_pst = (struct pst_map *) xzalloc ((hdr->ifdMax + 1) * sizeof *fdr_to_pst);
2298 old_chain = make_cleanup (xfree, fdr_to_pst);
2301 struct partial_symtab *pst = new_psymtab ("", objfile);
2302 fdr_to_pst[-1].pst = pst;
2306 /* Allocate the global pending list. */
2308 ((struct mdebug_pending **)
2309 obstack_alloc (&objfile->objfile_obstack,
2310 hdr->ifdMax * sizeof (struct mdebug_pending *)));
2311 memset (pending_list, 0,
2312 hdr->ifdMax * sizeof (struct mdebug_pending *));
2314 /* Pass 0 over external syms: swap them in. */
2315 ext_block = (EXTR *) xmalloc (hdr->iextMax * sizeof (EXTR));
2316 make_cleanup (xfree, ext_block);
2318 ext_out = (char *) debug_info->external_ext;
2319 ext_out_end = ext_out + hdr->iextMax * external_ext_size;
2321 for (; ext_out < ext_out_end; ext_out += external_ext_size, ext_in++)
2322 (*swap_ext_in) (cur_bfd, ext_out, ext_in);
2324 /* Pass 1 over external syms: Presize and partition the list */
2326 ext_in_end = ext_in + hdr->iextMax;
2327 for (; ext_in < ext_in_end; ext_in++)
2329 /* See calls to complain below. */
2330 if (ext_in->ifd >= -1
2331 && ext_in->ifd < hdr->ifdMax
2332 && ext_in->asym.iss >= 0
2333 && ext_in->asym.iss < hdr->issExtMax)
2334 fdr_to_pst[ext_in->ifd].n_globals++;
2337 /* Pass 1.5 over files: partition out global symbol space */
2339 for (f_idx = -1; f_idx < hdr->ifdMax; f_idx++)
2341 fdr_to_pst[f_idx].globals_offset = s_idx;
2342 s_idx += fdr_to_pst[f_idx].n_globals;
2343 fdr_to_pst[f_idx].n_globals = 0;
2348 For ECOFF in ELF, we skip the creation of the minimal symbols.
2349 The ECOFF symbols should be a subset of the Elf symbols, and the
2350 section information of the elf symbols will be more accurate.
2351 FIXME! What about Irix 5's native linker?
2353 By default, Elf sections which don't exist in ECOFF
2354 get put in ECOFF's absolute section by the gnu linker.
2355 Since absolute sections don't get relocated, we
2356 end up calculating an address different from that of
2357 the symbol's minimal symbol (created earlier from the
2360 To fix this, either :
2361 1) don't create the duplicate symbol
2362 (assumes ECOFF symtab is a subset of the ELF symtab;
2363 assumes no side-effects result from ignoring ECOFF symbol)
2364 2) create it, only if lookup for existing symbol in ELF's minimal
2367 assumes no side-effects result from ignoring ECOFF symbol)
2368 3) create it, but lookup ELF's minimal symbol and use it's section
2369 during relocation, then modify "uniqify" phase to merge and
2370 eliminate the duplicate symbol
2371 (highly inefficient)
2373 I've implemented #1 here...
2374 Skip the creation of the minimal symbols based on the ECOFF
2377 /* Pass 2 over external syms: fill in external symbols */
2379 ext_in_end = ext_in + hdr->iextMax;
2380 for (; ext_in < ext_in_end; ext_in++)
2382 enum minimal_symbol_type ms_type = mst_text;
2383 CORE_ADDR svalue = ext_in->asym.value;
2385 /* The Irix 5 native tools seem to sometimes generate bogus
2386 external symbols. */
2387 if (ext_in->ifd < -1 || ext_in->ifd >= hdr->ifdMax)
2389 complaint (&symfile_complaints,
2390 "bad ifd for external symbol: %d (max %ld)", ext_in->ifd,
2394 if (ext_in->asym.iss < 0 || ext_in->asym.iss >= hdr->issExtMax)
2396 complaint (&symfile_complaints,
2397 "bad iss for external symbol: %ld (max %ld)",
2398 ext_in->asym.iss, hdr->issExtMax);
2402 extern_tab[fdr_to_pst[ext_in->ifd].globals_offset
2403 + fdr_to_pst[ext_in->ifd].n_globals++] = *ext_in;
2406 if (SC_IS_UNDEF (ext_in->asym.sc) || ext_in->asym.sc == scNil)
2410 /* Pass 3 over files, over local syms: fill in static symbols */
2411 name = debug_info->ssext + ext_in->asym.iss;
2413 /* Process ECOFF Symbol Types and Storage Classes */
2414 switch (ext_in->asym.st)
2417 /* Beginnning of Procedure */
2418 svalue += ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
2421 /* Load time only static procs */
2422 ms_type = mst_file_text;
2423 svalue += ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
2426 /* External symbol */
2427 if (SC_IS_COMMON (ext_in->asym.sc))
2429 /* The value of a common symbol is its size, not its address.
2433 else if (SC_IS_DATA (ext_in->asym.sc))
2436 svalue += ANOFFSET (objfile->section_offsets, SECT_OFF_DATA (objfile));
2438 else if (SC_IS_BSS (ext_in->asym.sc))
2441 svalue += ANOFFSET (objfile->section_offsets, SECT_OFF_BSS (objfile));
2443 else if (SC_IS_SBSS (ext_in->asym.sc))
2446 svalue += ANOFFSET (objfile->section_offsets,
2447 get_section_index (objfile, ".sbss"));
2455 /* On certain platforms, some extra label symbols can be
2456 generated by the linker. One possible usage for this kind
2457 of symbols is to represent the address of the begining of a
2458 given section. For instance, on Tru64 5.1, the address of
2459 the _ftext label is the start address of the .text section.
2461 The storage class of these symbols is usually directly
2462 related to the section to which the symbol refers. For
2463 instance, on Tru64 5.1, the storage class for the _fdata
2464 label is scData, refering to the .data section.
2466 It is actually possible that the section associated to the
2467 storage class of the label does not exist. On True64 5.1
2468 for instance, the libm.so shared library does not contain
2469 any .data section, although it contains a _fpdata label
2470 which storage class is scData... Since these symbols are
2471 usually useless for the debugger user anyway, we just
2472 discard these symbols.
2475 if (SC_IS_TEXT (ext_in->asym.sc))
2477 if (objfile->sect_index_text == -1)
2480 ms_type = mst_file_text;
2481 svalue += ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
2483 else if (SC_IS_DATA (ext_in->asym.sc))
2485 if (objfile->sect_index_data == -1)
2488 ms_type = mst_file_data;
2489 svalue += ANOFFSET (objfile->section_offsets, SECT_OFF_DATA (objfile));
2491 else if (SC_IS_BSS (ext_in->asym.sc))
2493 if (objfile->sect_index_bss == -1)
2496 ms_type = mst_file_bss;
2497 svalue += ANOFFSET (objfile->section_offsets, SECT_OFF_BSS (objfile));
2499 else if (SC_IS_SBSS (ext_in->asym.sc))
2501 const int sbss_sect_index = get_section_index (objfile, ".sbss");
2503 if (sbss_sect_index == -1)
2506 ms_type = mst_file_bss;
2507 svalue += ANOFFSET (objfile->section_offsets, sbss_sect_index);
2514 /* The alpha has the section start addresses in stLocal symbols
2515 whose name starts with a `.'. Skip those but complain for all
2516 other stLocal symbols.
2517 Irix6 puts the section start addresses in stNil symbols, skip
2523 ms_type = mst_unknown;
2524 unknown_ext_complaint (name);
2526 if (!ECOFF_IN_ELF (cur_bfd))
2527 prim_record_minimal_symbol (name, svalue, ms_type, objfile);
2530 /* Pass 3 over files, over local syms: fill in static symbols */
2531 for (f_idx = 0; f_idx < hdr->ifdMax; f_idx++)
2533 struct partial_symtab *save_pst;
2537 cur_fdr = fh = debug_info->fdr + f_idx;
2541 fdr_to_pst[f_idx].pst = NULL;
2545 /* Determine the start address for this object file from the
2546 file header and relocate it, except for Irix 5.2 zero fh->adr. */
2550 if (relocatable || textlow != 0)
2551 textlow += ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
2555 pst = start_psymtab_common (objfile, objfile->section_offsets,
2558 objfile->global_psymbols.next,
2559 objfile->static_psymbols.next);
2560 pst->read_symtab_private = ((char *)
2561 obstack_alloc (&objfile->objfile_obstack,
2562 sizeof (struct symloc)));
2563 memset (pst->read_symtab_private, 0, sizeof (struct symloc));
2566 FDR_IDX (pst) = f_idx;
2567 CUR_BFD (pst) = cur_bfd;
2568 DEBUG_SWAP (pst) = debug_swap;
2569 DEBUG_INFO (pst) = debug_info;
2570 PENDING_LIST (pst) = pending_list;
2572 /* The way to turn this into a symtab is to call... */
2573 pst->read_symtab = mdebug_psymtab_to_symtab;
2575 /* Set up language for the pst.
2576 The language from the FDR is used if it is unambigious (e.g. cfront
2577 with native cc and g++ will set the language to C).
2578 Otherwise we have to deduce the language from the filename.
2579 Native ecoff has every header file in a separate FDR, so
2580 deduce_language_from_filename will return language_unknown for
2581 a header file, which is not what we want.
2582 But the FDRs for the header files are after the FDR for the source
2583 file, so we can assign the language of the source file to the
2584 following header files. Then we save the language in the private
2585 pst data so that we can reuse it when building symtabs. */
2586 prev_language = psymtab_language;
2590 case langCplusplusV2:
2591 psymtab_language = language_cplus;
2594 psymtab_language = deduce_language_from_filename (fdr_name (fh));
2597 if (psymtab_language == language_unknown)
2598 psymtab_language = prev_language;
2599 PST_PRIVATE (pst)->pst_language = psymtab_language;
2601 pst->texthigh = pst->textlow;
2603 /* For stabs-in-ecoff files, the second symbol must be @stab.
2604 This symbol is emitted by mips-tfile to signal that the
2605 current object file uses encapsulated stabs instead of mips
2606 ecoff for local symbols. (It is the second symbol because
2607 the first symbol is the stFile used to signal the start of a
2609 processing_gcc_compilation = 0;
2612 (*swap_sym_in) (cur_bfd,
2613 ((char *) debug_info->external_sym
2614 + (fh->isymBase + 1) * external_sym_size),
2616 if (strcmp (debug_info->ss + fh->issBase + sh.iss,
2618 processing_gcc_compilation = 2;
2621 if (processing_gcc_compilation != 0)
2623 for (cur_sdx = 2; cur_sdx < fh->csym; cur_sdx++)
2628 (*swap_sym_in) (cur_bfd,
2629 (((char *) debug_info->external_sym)
2630 + (fh->isymBase + cur_sdx) * external_sym_size),
2632 type_code = ECOFF_UNMARK_STAB (sh.index);
2633 if (!ECOFF_IS_STAB (&sh))
2635 if (sh.st == stProc || sh.st == stStaticProc)
2640 sh.value += ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
2641 if (sh.st == stStaticProc)
2643 namestring = debug_info->ss + fh->issBase + sh.iss;
2644 prim_record_minimal_symbol_and_info (namestring,
2648 SECT_OFF_TEXT (objfile),
2652 procaddr = sh.value;
2654 isym = AUX_GET_ISYM (fh->fBigendian,
2655 (debug_info->external_aux
2658 (*swap_sym_in) (cur_bfd,
2659 ((char *) debug_info->external_sym
2660 + ((fh->isymBase + isym - 1)
2661 * external_sym_size)),
2665 CORE_ADDR high = procaddr + sh.value;
2667 /* Kludge for Irix 5.2 zero fh->adr. */
2669 && (pst->textlow == 0 || procaddr < pst->textlow))
2670 pst->textlow = procaddr;
2671 if (high > pst->texthigh)
2672 pst->texthigh = high;
2675 else if (sh.st == stStatic)
2690 namestring = debug_info->ss + fh->issBase + sh.iss;
2691 sh.value += ANOFFSET (objfile->section_offsets, SECT_OFF_DATA (objfile));
2692 prim_record_minimal_symbol_and_info (namestring,
2696 SECT_OFF_DATA (objfile),
2702 /* FIXME! Shouldn't this use cases for bss,
2703 then have the default be abs? */
2704 namestring = debug_info->ss + fh->issBase + sh.iss;
2705 sh.value += ANOFFSET (objfile->section_offsets, SECT_OFF_BSS (objfile));
2706 prim_record_minimal_symbol_and_info (namestring,
2710 SECT_OFF_BSS (objfile),
2718 /* Handle stabs continuation */
2720 char *stabstring = debug_info->ss + fh->issBase + sh.iss;
2721 int len = strlen (stabstring);
2722 while (stabstring[len - 1] == '\\')
2725 char *stabstring1 = stabstring;
2729 /* Ignore continuation char from 1st string */
2732 /* Read next stabstring */
2734 (*swap_sym_in) (cur_bfd,
2735 (((char *) debug_info->external_sym)
2736 + (fh->isymBase + cur_sdx)
2737 * external_sym_size),
2739 stabstring2 = debug_info->ss + fh->issBase + sh2.iss;
2740 len2 = strlen (stabstring2);
2742 /* Concatinate stabstring2 with stabstring1 */
2744 && stabstring != debug_info->ss + fh->issBase + sh.iss)
2745 stabstring = xrealloc (stabstring, len + len2 + 1);
2748 stabstring = xmalloc (len + len2 + 1);
2749 strcpy (stabstring, stabstring1);
2751 strcpy (stabstring + len, stabstring2);
2759 * Standard, external, non-debugger, symbols
2762 case N_TEXT | N_EXT:
2763 case N_NBTEXT | N_EXT:
2764 sh.value += ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
2767 case N_DATA | N_EXT:
2768 case N_NBDATA | N_EXT:
2769 sh.value += ANOFFSET (objfile->section_offsets, SECT_OFF_DATA (objfile));
2774 case N_NBBSS | N_EXT:
2775 case N_SETV | N_EXT: /* FIXME, is this in BSS? */
2776 sh.value += ANOFFSET (objfile->section_offsets, SECT_OFF_BSS (objfile));
2783 /* Standard, local, non-debugger, symbols */
2787 /* We need to be able to deal with both N_FN or N_TEXT,
2788 because we have no way of knowing whether the sys-supplied ld
2789 or GNU ld was used to make the executable. Sequents throw
2790 in another wrinkle -- they renumbered N_FN. */
2798 sh.value += ANOFFSET (objfile->section_offsets, SECT_OFF_DATA (objfile));
2801 case N_UNDF | N_EXT:
2802 continue; /* Just undefined, not COMMON */
2807 /* Lots of symbol types we can just ignore. */
2814 /* Keep going . . . */
2817 * Special symbol types for GNU
2820 case N_INDR | N_EXT:
2822 case N_SETA | N_EXT:
2824 case N_SETT | N_EXT:
2826 case N_SETD | N_EXT:
2828 case N_SETB | N_EXT:
2839 static int prev_so_symnum = -10;
2840 static int first_so_symnum;
2842 int prev_textlow_not_set;
2844 valu = sh.value + ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
2846 prev_textlow_not_set = textlow_not_set;
2848 #ifdef SOFUN_ADDRESS_MAYBE_MISSING
2849 /* A zero value is probably an indication for the SunPRO 3.0
2850 compiler. end_psymtab explicitly tests for zero, so
2851 don't relocate it. */
2855 textlow_not_set = 1;
2859 textlow_not_set = 0;
2861 textlow_not_set = 0;
2863 past_first_source_file = 1;
2865 if (prev_so_symnum != symnum - 1)
2866 { /* Here if prev stab wasn't N_SO */
2867 first_so_symnum = symnum;
2871 pst = (struct partial_symtab *) 0;
2873 dependencies_used = 0;
2877 prev_so_symnum = symnum;
2879 /* End the current partial symtab and start a new one */
2881 /* SET_NAMESTRING ();*/
2882 namestring = stabstring;
2884 /* Null name means end of .o file. Don't start a new one. */
2885 if (*namestring == '\000')
2888 /* Some compilers (including gcc) emit a pair of initial N_SOs.
2889 The first one is a directory name; the second the file name.
2890 If pst exists, is empty, and has a filename ending in '/',
2891 we assume the previous N_SO was a directory name. */
2893 p = strrchr (namestring, '/');
2894 if (p && *(p + 1) == '\000')
2895 continue; /* Simply ignore directory name SOs */
2897 /* Some other compilers (C++ ones in particular) emit useless
2898 SOs for non-existant .c files. We ignore all subsequent SOs that
2899 immediately follow the first. */
2911 enum language tmp_language;
2912 /* Mark down an include file in the current psymtab */
2914 /* SET_NAMESTRING ();*/
2915 namestring = stabstring;
2917 tmp_language = deduce_language_from_filename (namestring);
2919 /* Only change the psymtab's language if we've learned
2920 something useful (eg. tmp_language is not language_unknown).
2921 In addition, to match what start_subfile does, never change
2923 if (tmp_language != language_unknown
2924 && (tmp_language != language_c
2925 || psymtab_language != language_cplus))
2926 psymtab_language = tmp_language;
2928 /* In C++, one may expect the same filename to come round many
2929 times, when code is coming alternately from the main file
2930 and from inline functions in other files. So I check to see
2931 if this is a file we've seen before -- either the main
2932 source file, or a previously included file.
2934 This seems to be a lot of time to be spending on N_SOL, but
2935 things like "break c-exp.y:435" need to work (I
2936 suppose the psymtab_include_list could be hashed or put
2937 in a binary tree, if profiling shows this is a major hog). */
2938 if (pst && strcmp (namestring, pst->filename) == 0)
2942 for (i = 0; i < includes_used; i++)
2943 if (strcmp (namestring,
2944 psymtab_include_list[i]) == 0)
2953 psymtab_include_list[includes_used++] = namestring;
2954 if (includes_used >= includes_allocated)
2956 char **orig = psymtab_include_list;
2958 psymtab_include_list = (char **)
2959 alloca ((includes_allocated *= 2) *
2961 memcpy (psymtab_include_list, orig,
2962 includes_used * sizeof (char *));
2966 case N_LSYM: /* Typedef or automatic variable. */
2967 case N_STSYM: /* Data seg var -- static */
2968 case N_LCSYM: /* BSS " */
2969 case N_ROSYM: /* Read-only data seg var -- static. */
2970 case N_NBSTS: /* Gould nobase. */
2971 case N_NBLCS: /* symbols. */
2973 case N_GSYM: /* Global (extern) variable; can be
2974 data or bss (sigh FIXME). */
2976 /* Following may probably be ignored; I'll leave them here
2977 for now (until I do Pascal and Modula 2 extensions). */
2979 case N_PC: /* I may or may not need this; I
2981 case N_M2C: /* I suspect that I can ignore this here. */
2982 case N_SCOPE: /* Same. */
2984 /* SET_NAMESTRING ();*/
2985 namestring = stabstring;
2986 p = (char *) strchr (namestring, ':');
2988 continue; /* Not a debugging symbol. */
2992 /* Main processing section for debugging symbols which
2993 the initial read through the symbol tables needs to worry
2994 about. If we reach this point, the symbol which we are
2995 considering is definitely one we are interested in.
2996 p must also contain the (valid) index into the namestring
2997 which indicates the debugging type symbol. */
3002 sh.value += ANOFFSET (objfile->section_offsets, SECT_OFF_DATA (objfile));
3003 #ifdef STATIC_TRANSFORM_NAME
3004 namestring = STATIC_TRANSFORM_NAME (namestring);
3006 add_psymbol_to_list (namestring, p - namestring,
3007 VAR_DOMAIN, LOC_STATIC,
3008 &objfile->static_psymbols,
3010 psymtab_language, objfile);
3013 sh.value += ANOFFSET (objfile->section_offsets, SECT_OFF_DATA (objfile));
3014 /* The addresses in these entries are reported to be
3015 wrong. See the code that reads 'G's for symtabs. */
3016 add_psymbol_to_list (namestring, p - namestring,
3017 VAR_DOMAIN, LOC_STATIC,
3018 &objfile->global_psymbols,
3020 psymtab_language, objfile);
3024 /* When a 'T' entry is defining an anonymous enum, it
3025 may have a name which is the empty string, or a
3026 single space. Since they're not really defining a
3027 symbol, those shouldn't go in the partial symbol
3028 table. We do pick up the elements of such enums at
3029 'check_enum:', below. */
3030 if (p >= namestring + 2
3031 || (p == namestring + 1
3032 && namestring[0] != ' '))
3034 add_psymbol_to_list (namestring, p - namestring,
3035 STRUCT_DOMAIN, LOC_TYPEDEF,
3036 &objfile->static_psymbols,
3038 psymtab_language, objfile);
3041 /* Also a typedef with the same name. */
3042 add_psymbol_to_list (namestring, p - namestring,
3043 VAR_DOMAIN, LOC_TYPEDEF,
3044 &objfile->static_psymbols,
3046 psymtab_language, objfile);
3052 if (p != namestring) /* a name is there, not just :T... */
3054 add_psymbol_to_list (namestring, p - namestring,
3055 VAR_DOMAIN, LOC_TYPEDEF,
3056 &objfile->static_psymbols,
3058 psymtab_language, objfile);
3061 /* If this is an enumerated type, we need to
3062 add all the enum constants to the partial symbol
3063 table. This does not cover enums without names, e.g.
3064 "enum {a, b} c;" in C, but fortunately those are
3065 rare. There is no way for GDB to find those from the
3066 enum type without spending too much time on it. Thus
3067 to solve this problem, the compiler needs to put out the
3068 enum in a nameless type. GCC2 does this. */
3070 /* We are looking for something of the form
3071 <name> ":" ("t" | "T") [<number> "="] "e"
3072 {<constant> ":" <value> ","} ";". */
3074 /* Skip over the colon and the 't' or 'T'. */
3076 /* This type may be given a number. Also, numbers can come
3077 in pairs like (0,26). Skip over it. */
3078 while ((*p >= '0' && *p <= '9')
3079 || *p == '(' || *p == ',' || *p == ')'
3085 /* The aix4 compiler emits extra crud before the members. */
3088 /* Skip over the type (?). */
3092 /* Skip over the colon. */
3096 /* We have found an enumerated type. */
3097 /* According to comments in read_enum_type
3098 a comma could end it instead of a semicolon.
3099 I don't know where that happens.
3101 while (*p && *p != ';' && *p != ',')
3105 /* Check for and handle cretinous dbx symbol name
3107 if (*p == '\\' || (*p == '?' && p[1] == '\0'))
3108 p = next_symbol_text (objfile);
3110 /* Point to the character after the name
3111 of the enum constant. */
3112 for (q = p; *q && *q != ':'; q++)
3114 /* Note that the value doesn't matter for
3115 enum constants in psymtabs, just in symtabs. */
3116 add_psymbol_to_list (p, q - p,
3117 VAR_DOMAIN, LOC_CONST,
3118 &objfile->static_psymbols, 0,
3119 0, psymtab_language, objfile);
3120 /* Point past the name. */
3122 /* Skip over the value. */
3123 while (*p && *p != ',')
3125 /* Advance past the comma. */
3132 /* Constant, e.g. from "const" in Pascal. */
3133 add_psymbol_to_list (namestring, p - namestring,
3134 VAR_DOMAIN, LOC_CONST,
3135 &objfile->static_psymbols, sh.value,
3136 0, psymtab_language, objfile);
3142 int name_len = p - namestring;
3143 char *name = xmalloc (name_len + 1);
3144 memcpy (name, namestring, name_len);
3145 name[name_len] = '\0';
3146 function_outside_compilation_unit_complaint (name);
3149 sh.value += ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
3150 add_psymbol_to_list (namestring, p - namestring,
3151 VAR_DOMAIN, LOC_BLOCK,
3152 &objfile->static_psymbols,
3154 psymtab_language, objfile);
3157 /* Global functions were ignored here, but now they
3158 are put into the global psymtab like one would expect.
3159 They're also in the minimal symbol table. */
3163 int name_len = p - namestring;
3164 char *name = xmalloc (name_len + 1);
3165 memcpy (name, namestring, name_len);
3166 name[name_len] = '\0';
3167 function_outside_compilation_unit_complaint (name);
3170 sh.value += ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
3171 add_psymbol_to_list (namestring, p - namestring,
3172 VAR_DOMAIN, LOC_BLOCK,
3173 &objfile->global_psymbols,
3175 psymtab_language, objfile);
3178 /* Two things show up here (hopefully); static symbols of
3179 local scope (static used inside braces) or extensions
3180 of structure symbols. We can ignore both. */
3194 case '#': /* for symbol identification (used in live ranges) */
3198 /* It is a C++ nested symbol. We don't need to record it
3199 (I don't think); if we try to look up foo::bar::baz,
3200 then symbols for the symtab containing foo should get
3201 read in, I think. */
3202 /* Someone says sun cc puts out symbols like
3203 /foo/baz/maclib::/usr/local/bin/maclib,
3204 which would get here with a symbol type of ':'. */
3208 /* Unexpected symbol descriptor. The second and subsequent stabs
3209 of a continued stab can show up here. The question is
3210 whether they ever can mimic a normal stab--it would be
3211 nice if not, since we certainly don't want to spend the
3212 time searching to the end of every string looking for
3215 complaint (&symfile_complaints,
3216 "unknown symbol descriptor `%c'", p[1]);
3218 /* Ignore it; perhaps it is an extension that we don't
3227 #ifdef SOFUN_ADDRESS_MAYBE_MISSING
3228 /* Solaris 2 end of module, finish current partial
3229 symbol table. END_PSYMTAB will set
3230 pst->texthigh to the proper value, which is
3231 necessary if a module compiled without
3232 debugging info follows this module. */
3235 pst = (struct partial_symtab *) 0;
3237 dependencies_used = 0;
3243 if (sh.value > save_pst->texthigh)
3244 save_pst->texthigh = sh.value;
3249 case N_SSYM: /* Claim: Structure or union element.
3250 Hopefully, I can ignore this. */
3251 case N_ENTRY: /* Alternate entry point; can ignore. */
3252 case N_MAIN: /* Can definitely ignore this. */
3253 case N_CATCH: /* These are GNU C++ extensions */
3254 case N_EHDECL: /* that can safely be ignored here. */
3264 case N_NSYMS: /* Ultrix 4.0: symbol count */
3265 case N_DEFD: /* GNU Modula-2 */
3266 case N_ALIAS: /* SunPro F77: alias name, ignore for now. */
3268 case N_OBJ: /* useless types from Solaris */
3270 /* These symbols aren't interesting; don't worry about them */
3275 /* If we haven't found it yet, ignore it. It's probably some
3276 new type we don't know about yet. */
3277 complaint (&symfile_complaints, "unknown symbol type %s",
3278 local_hex_string (type_code)); /*CUR_SYMBOL_TYPE*/
3282 && stabstring != debug_info->ss + fh->issBase + sh.iss)
3285 /* end - Handle continuation */
3290 for (cur_sdx = 0; cur_sdx < fh->csym;)
3293 enum address_class class;
3295 (*swap_sym_in) (cur_bfd,
3296 ((char *) debug_info->external_sym
3297 + ((fh->isymBase + cur_sdx)
3298 * external_sym_size)),
3301 if (ECOFF_IS_STAB (&sh))
3307 /* Non absolute static symbols go into the minimal table. */
3308 if (SC_IS_UNDEF (sh.sc) || sh.sc == scNil
3309 || (sh.index == indexNil
3310 && (sh.st != stStatic || sh.sc == scAbs)))
3312 /* FIXME, premature? */
3317 name = debug_info->ss + fh->issBase + sh.iss;
3323 /* The value of a stEnd symbol is the displacement from the
3324 corresponding start symbol value, do not relocate it. */
3326 sh.value += ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
3333 sh.value += ANOFFSET (objfile->section_offsets, SECT_OFF_DATA (objfile));
3337 sh.value += ANOFFSET (objfile->section_offsets, SECT_OFF_BSS (objfile));
3348 prim_record_minimal_symbol_and_info (name, sh.value,
3349 mst_file_text, NULL,
3350 SECT_OFF_TEXT (objfile), NULL,
3356 /* Ignore all parameter symbol records. */
3357 if (sh.index >= hdr->iauxMax)
3359 /* Should not happen, but does when cross-compiling
3360 with the MIPS compiler. FIXME -- pull later. */
3361 index_complaint (name);
3362 new_sdx = cur_sdx + 1; /* Don't skip at all */
3365 new_sdx = AUX_GET_ISYM (fh->fBigendian,
3366 (debug_info->external_aux
3370 if (new_sdx <= cur_sdx)
3372 /* This should not happen either... FIXME. */
3373 complaint (&symfile_complaints,
3374 "bad proc end in aux found from symbol %s",
3376 new_sdx = cur_sdx + 1; /* Don't skip backward */
3379 /* For stProc symbol records, we need to check the
3380 storage class as well, as only (stProc, scText)
3381 entries represent "real" procedures - See the
3382 Compaq document titled "Object File / Symbol Table
3383 Format Specification" for more information. If the
3384 storage class is not scText, we discard the whole
3385 block of symbol records for this stProc. */
3386 if (sh.st == stProc && sh.sc != scText)
3389 /* Usually there is a local and a global stProc symbol
3390 for a function. This means that the function name
3391 has already been entered into the mimimal symbol table
3392 while processing the global symbols in pass 2 above.
3393 One notable exception is the PROGRAM name from
3394 f77 compiled executables, it is only put out as
3395 local stProc symbol, and a global MAIN__ stProc symbol
3396 points to it. It doesn't matter though, as gdb is
3397 still able to find the PROGRAM name via the partial
3398 symbol table, and the MAIN__ symbol via the minimal
3400 if (sh.st == stProc)
3401 add_psymbol_to_list (name, strlen (name),
3402 VAR_DOMAIN, LOC_BLOCK,
3403 &objfile->global_psymbols,
3404 0, sh.value, psymtab_language, objfile);
3406 add_psymbol_to_list (name, strlen (name),
3407 VAR_DOMAIN, LOC_BLOCK,
3408 &objfile->static_psymbols,
3409 0, sh.value, psymtab_language, objfile);
3411 procaddr = sh.value;
3414 (*swap_sym_in) (cur_bfd,
3415 ((char *) debug_info->external_sym
3416 + ((fh->isymBase + cur_sdx - 1)
3417 * external_sym_size)),
3422 /* Kludge for Irix 5.2 zero fh->adr. */
3424 && (pst->textlow == 0 || procaddr < pst->textlow))
3425 pst->textlow = procaddr;
3427 high = procaddr + sh.value;
3428 if (high > pst->texthigh)
3429 pst->texthigh = high;
3432 case stStatic: /* Variable */
3433 if (SC_IS_DATA (sh.sc))
3434 prim_record_minimal_symbol_and_info (name, sh.value,
3435 mst_file_data, NULL,
3436 SECT_OFF_DATA (objfile),
3440 prim_record_minimal_symbol_and_info (name, sh.value,
3442 SECT_OFF_BSS (objfile),
3448 case stIndirect: /* Irix5 forward declaration */
3449 /* Skip forward declarations from Irix5 cc */
3452 case stTypedef: /* Typedef */
3453 /* Skip typedefs for forward declarations and opaque
3454 structs from alpha and mips cc. */
3455 if (sh.iss == 0 || has_opaque_xref (fh, &sh))
3457 class = LOC_TYPEDEF;
3460 case stConstant: /* Constant decl */
3467 case stBlock: /* { }, str, un, enum */
3468 /* Do not create a partial symbol for cc unnamed aggregates
3469 and gcc empty aggregates. */
3470 if ((sh.sc == scInfo
3471 || SC_IS_COMMON (sh.sc))
3473 && sh.index != cur_sdx + 2)
3475 add_psymbol_to_list (name, strlen (name),
3476 STRUCT_DOMAIN, LOC_TYPEDEF,
3477 &objfile->static_psymbols,
3479 psymtab_language, objfile);
3481 handle_psymbol_enumerators (objfile, fh, sh.st, sh.value);
3483 /* Skip over the block */
3485 if (new_sdx <= cur_sdx)
3487 /* This happens with the Ultrix kernel. */
3488 complaint (&symfile_complaints,
3489 "bad aux index at block symbol %s", name);
3490 new_sdx = cur_sdx + 1; /* Don't skip backward */
3495 case stFile: /* File headers */
3496 case stLabel: /* Labels */
3497 case stEnd: /* Ends of files */
3500 case stLocal: /* Local variables */
3501 /* Normally these are skipped because we skip over
3502 all blocks we see. However, these can occur
3503 as visible symbols in a .h file that contains code. */
3507 /* Both complaints are valid: one gives symbol name,
3508 the other the offending symbol type. */
3509 complaint (&symfile_complaints, "unknown local symbol %s",
3511 complaint (&symfile_complaints, "with type %d", sh.st);
3515 /* Use this gdb symbol */
3516 add_psymbol_to_list (name, strlen (name),
3518 &objfile->static_psymbols,
3519 0, sh.value, psymtab_language, objfile);
3521 cur_sdx++; /* Go to next file symbol */
3524 /* Now do enter the external symbols. */
3525 ext_ptr = &extern_tab[fdr_to_pst[f_idx].globals_offset];
3526 cur_sdx = fdr_to_pst[f_idx].n_globals;
3527 PST_PRIVATE (save_pst)->extern_count = cur_sdx;
3528 PST_PRIVATE (save_pst)->extern_tab = ext_ptr;
3529 for (; --cur_sdx >= 0; ext_ptr++)
3531 enum address_class class;
3536 if (ext_ptr->ifd != f_idx)
3537 internal_error (__FILE__, __LINE__, "failed internal consistency check");
3538 psh = &ext_ptr->asym;
3540 /* Do not add undefined symbols to the partial symbol table. */
3541 if (SC_IS_UNDEF (psh->sc) || psh->sc == scNil)
3544 svalue = psh->value;
3549 svalue += ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
3556 svalue += ANOFFSET (objfile->section_offsets, SECT_OFF_DATA (objfile));
3560 svalue += ANOFFSET (objfile->section_offsets, SECT_OFF_BSS (objfile));
3567 /* These are generated for static symbols in .o files,
3572 /* External procedure symbols have been entered
3573 into the minimal symbol table in pass 2 above.
3574 Ignore them, as parse_external will ignore them too. */
3580 unknown_ext_complaint (debug_info->ssext + psh->iss);
3581 /* Fall through, pretend it's global. */
3583 /* Global common symbols are resolved by the runtime loader,
3585 if (SC_IS_COMMON (psh->sc))
3591 name = debug_info->ssext + psh->iss;
3592 add_psymbol_to_list (name, strlen (name),
3594 &objfile->global_psymbols,
3596 psymtab_language, objfile);
3600 /* Link pst to FDR. end_psymtab returns NULL if the psymtab was
3601 empty and put on the free list. */
3602 fdr_to_pst[f_idx].pst = end_psymtab (save_pst,
3603 psymtab_include_list, includes_used,
3604 -1, save_pst->texthigh,
3605 dependency_list, dependencies_used, textlow_not_set);
3607 dependencies_used = 0;
3609 if (objfile->ei.entry_point >= save_pst->textlow &&
3610 objfile->ei.entry_point < save_pst->texthigh)
3612 objfile->ei.deprecated_entry_file_lowpc = save_pst->textlow;
3613 objfile->ei.deprecated_entry_file_highpc = save_pst->texthigh;
3616 /* The objfile has its functions reordered if this partial symbol
3617 table overlaps any other partial symbol table.
3618 We cannot assume a reordered objfile if a partial symbol table
3619 is contained within another partial symbol table, as partial symbol
3620 tables for include files with executable code are contained
3621 within the partial symbol table for the including source file,
3622 and we do not want to flag the objfile reordered for these cases.
3624 This strategy works well for Irix-5.2 shared libraries, but we
3625 might have to use a more elaborate (and slower) algorithm for
3627 save_pst = fdr_to_pst[f_idx].pst;
3628 if (save_pst != NULL
3629 && save_pst->textlow != 0
3630 && !(objfile->flags & OBJF_REORDERED))
3632 ALL_OBJFILE_PSYMTABS (objfile, pst)
3635 && save_pst->textlow >= pst->textlow
3636 && save_pst->textlow < pst->texthigh
3637 && save_pst->texthigh > pst->texthigh)
3639 objfile->flags |= OBJF_REORDERED;
3646 /* Now scan the FDRs for dependencies */
3647 for (f_idx = 0; f_idx < hdr->ifdMax; f_idx++)
3649 fh = f_idx + debug_info->fdr;
3650 pst = fdr_to_pst[f_idx].pst;
3652 if (pst == (struct partial_symtab *) NULL)
3655 /* This should catch stabs-in-ecoff. */
3659 /* Skip the first file indirect entry as it is a self dependency
3660 for source files or a reverse .h -> .c dependency for header files. */
3661 pst->number_of_dependencies = 0;
3663 ((struct partial_symtab **)
3664 obstack_alloc (&objfile->objfile_obstack,
3666 * sizeof (struct partial_symtab *))));
3667 for (s_idx = 1; s_idx < fh->crfd; s_idx++)
3671 (*swap_rfd_in) (cur_bfd,
3672 ((char *) debug_info->external_rfd
3673 + (fh->rfdBase + s_idx) * external_rfd_size),
3675 if (rh < 0 || rh >= hdr->ifdMax)
3677 complaint (&symfile_complaints, "bad file number %ld", rh);
3681 /* Skip self dependencies of header files. */
3685 /* Do not add to dependeny list if psymtab was empty. */
3686 if (fdr_to_pst[rh].pst == (struct partial_symtab *) NULL)
3688 pst->dependencies[pst->number_of_dependencies++] = fdr_to_pst[rh].pst;
3692 /* Remove the dummy psymtab created for -O3 images above, if it is
3693 still empty, to enable the detection of stripped executables. */
3694 if (objfile->psymtabs->next == NULL
3695 && objfile->psymtabs->number_of_dependencies == 0
3696 && objfile->psymtabs->n_global_syms == 0
3697 && objfile->psymtabs->n_static_syms == 0)
3698 objfile->psymtabs = NULL;
3699 do_cleanups (old_chain);
3702 /* If the current psymbol has an enumerated type, we need to add
3703 all the the enum constants to the partial symbol table. */
3706 handle_psymbol_enumerators (struct objfile *objfile, FDR *fh, int stype,
3709 const bfd_size_type external_sym_size = debug_swap->external_sym_size;
3710 void (*const swap_sym_in) (bfd *, void *, SYMR *) = debug_swap->swap_sym_in;
3711 char *ext_sym = ((char *) debug_info->external_sym
3712 + ((fh->isymBase + cur_sdx + 1) * external_sym_size));
3722 /* It is an enumerated type if the next symbol entry is a stMember
3723 and its auxiliary index is indexNil or its auxiliary entry
3724 is a plain btNil or btVoid.
3725 Alpha cc -migrate enums are recognized by a zero index and
3726 a zero symbol value.
3727 DU 4.0 cc enums are recognized by a member type of btEnum without
3728 qualifiers and a zero symbol value. */
3729 (*swap_sym_in) (cur_bfd, ext_sym, &sh);
3730 if (sh.st != stMember)
3733 if (sh.index == indexNil
3734 || (sh.index == 0 && svalue == 0))
3736 (*debug_swap->swap_tir_in) (fh->fBigendian,
3737 &(debug_info->external_aux
3738 + fh->iauxBase + sh.index)->a_ti,
3740 if ((tir.bt != btNil
3742 && (tir.bt != btEnum || svalue != 0))
3743 || tir.tq0 != tqNil)
3755 (*swap_sym_in) (cur_bfd, ext_sym, &sh);
3756 if (sh.st != stMember)
3758 name = debug_info->ss + cur_fdr->issBase + sh.iss;
3760 /* Note that the value doesn't matter for enum constants
3761 in psymtabs, just in symtabs. */
3762 add_psymbol_to_list (name, strlen (name),
3763 VAR_DOMAIN, LOC_CONST,
3764 &objfile->static_psymbols, 0,
3765 (CORE_ADDR) 0, psymtab_language, objfile);
3766 ext_sym += external_sym_size;
3770 /* Get the next symbol. OBJFILE is unused. */
3773 mdebug_next_symbol_text (struct objfile *objfile)
3778 (*debug_swap->swap_sym_in) (cur_bfd,
3779 ((char *) debug_info->external_sym
3780 + ((cur_fdr->isymBase + cur_sdx)
3781 * debug_swap->external_sym_size)),
3783 return debug_info->ss + cur_fdr->issBase + sh.iss;
3786 /* Ancillary function to psymtab_to_symtab(). Does all the work
3787 for turning the partial symtab PST into a symtab, recurring
3788 first on all dependent psymtabs. The argument FILENAME is
3789 only passed so we can see in debug stack traces what file
3792 This function has a split personality, based on whether the
3793 symbol table contains ordinary ecoff symbols, or stabs-in-ecoff.
3794 The flow of control and even the memory allocation differs. FIXME. */
3797 psymtab_to_symtab_1 (struct partial_symtab *pst, char *filename)
3799 bfd_size_type external_sym_size;
3800 bfd_size_type external_pdr_size;
3801 void (*swap_sym_in) (bfd *, void *, SYMR *);
3802 void (*swap_pdr_in) (bfd *, void *, PDR *);
3804 struct symtab *st = NULL;
3806 struct linetable *lines;
3807 CORE_ADDR lowest_pdr_addr = 0;
3808 int last_symtab_ended = 0;
3814 /* Read in all partial symbtabs on which this one is dependent.
3815 NOTE that we do have circular dependencies, sigh. We solved
3816 that by setting pst->readin before this point. */
3818 for (i = 0; i < pst->number_of_dependencies; i++)
3819 if (!pst->dependencies[i]->readin)
3821 /* Inform about additional files to be read in. */
3824 fputs_filtered (" ", gdb_stdout);
3826 fputs_filtered ("and ", gdb_stdout);
3828 printf_filtered ("%s...",
3829 pst->dependencies[i]->filename);
3830 wrap_here (""); /* Flush output */
3831 gdb_flush (gdb_stdout);
3833 /* We only pass the filename for debug purposes */
3834 psymtab_to_symtab_1 (pst->dependencies[i],
3835 pst->dependencies[i]->filename);
3838 /* Do nothing if this is a dummy psymtab. */
3840 if (pst->n_global_syms == 0 && pst->n_static_syms == 0
3841 && pst->textlow == 0 && pst->texthigh == 0)
3844 /* Now read the symbols for this symtab */
3846 cur_bfd = CUR_BFD (pst);
3847 debug_swap = DEBUG_SWAP (pst);
3848 debug_info = DEBUG_INFO (pst);
3849 pending_list = PENDING_LIST (pst);
3850 external_sym_size = debug_swap->external_sym_size;
3851 external_pdr_size = debug_swap->external_pdr_size;
3852 swap_sym_in = debug_swap->swap_sym_in;
3853 swap_pdr_in = debug_swap->swap_pdr_in;
3854 current_objfile = pst->objfile;
3855 cur_fd = FDR_IDX (pst);
3856 fh = ((cur_fd == -1)
3858 : debug_info->fdr + cur_fd);
3861 /* See comment in parse_partial_symbols about the @stabs sentinel. */
3862 processing_gcc_compilation = 0;
3863 if (fh != (FDR *) NULL && fh->csym >= 2)
3867 (*swap_sym_in) (cur_bfd,
3868 ((char *) debug_info->external_sym
3869 + (fh->isymBase + 1) * external_sym_size),
3871 if (strcmp (debug_info->ss + fh->issBase + sh.iss,
3874 /* We indicate that this is a GCC compilation so that certain
3875 features will be enabled in stabsread/dbxread. */
3876 processing_gcc_compilation = 2;
3880 if (processing_gcc_compilation != 0)
3883 /* This symbol table contains stabs-in-ecoff entries. */
3885 /* Parse local symbols first */
3887 if (fh->csym <= 2) /* FIXME, this blows psymtab->symtab ptr */
3889 current_objfile = NULL;
3892 for (cur_sdx = 2; cur_sdx < fh->csym; cur_sdx++)
3898 (*swap_sym_in) (cur_bfd,
3899 (((char *) debug_info->external_sym)
3900 + (fh->isymBase + cur_sdx) * external_sym_size),
3902 name = debug_info->ss + fh->issBase + sh.iss;
3904 /* XXX This is a hack. It will go away! */
3905 if (ECOFF_IS_STAB (&sh) || (name[0] == '#'))
3907 int type_code = ECOFF_UNMARK_STAB (sh.index);
3909 /* We should never get non N_STAB symbols here, but they
3910 should be harmless, so keep process_one_symbol from
3911 complaining about them. */
3912 if (type_code & N_STAB)
3914 /* If we found a trailing N_SO with no name, process
3915 it here instead of in process_one_symbol, so we
3916 can keep a handle to its symtab. The symtab
3917 would otherwise be ended twice, once in
3918 process_one_symbol, and once after this loop. */
3919 if (type_code == N_SO
3921 && previous_stab_code != (unsigned char) N_SO
3924 valu += ANOFFSET (pst->section_offsets,
3925 SECT_OFF_TEXT (pst->objfile));
3926 previous_stab_code = N_SO;
3927 st = end_symtab (valu, pst->objfile,
3928 SECT_OFF_TEXT (pst->objfile));
3930 last_symtab_ended = 1;
3934 last_symtab_ended = 0;
3935 process_one_symbol (type_code, 0, valu, name,
3936 pst->section_offsets, pst->objfile);
3939 /* Similarly a hack. */
3940 else if (name[0] == '#')
3942 process_one_symbol (N_SLINE, 0, valu, name,
3943 pst->section_offsets, pst->objfile);
3945 if (type_code == N_FUN)
3947 /* Make up special symbol to contain
3948 procedure specific info */
3949 struct mips_extra_func_info *e =
3950 ((struct mips_extra_func_info *)
3951 obstack_alloc (¤t_objfile->objfile_obstack,
3952 sizeof (struct mips_extra_func_info)));
3953 struct symbol *s = new_symbol (MIPS_EFI_SYMBOL_NAME);
3955 memset (e, 0, sizeof (struct mips_extra_func_info));
3956 SYMBOL_DOMAIN (s) = LABEL_DOMAIN;
3957 SYMBOL_CLASS (s) = LOC_CONST;
3958 SYMBOL_TYPE (s) = mdebug_type_void;
3959 SYMBOL_VALUE (s) = (long) e;
3960 e->pdr.framereg = -1;
3961 add_symbol_to_list (s, &local_symbols);
3964 else if (sh.st == stLabel)
3966 if (sh.index == indexNil)
3968 /* This is what the gcc2_compiled and __gnu_compiled_*
3969 show up as. So don't complain. */
3974 /* Handle encoded stab line number. */
3975 valu += ANOFFSET (pst->section_offsets, SECT_OFF_TEXT (pst->objfile));
3976 record_line (current_subfile, sh.index, valu);
3979 else if (sh.st == stProc || sh.st == stStaticProc
3980 || sh.st == stStatic || sh.st == stEnd)
3981 /* These are generated by gcc-2.x, do not complain */
3984 complaint (&symfile_complaints, "unknown stabs symbol %s", name);
3987 if (! last_symtab_ended)
3989 st = end_symtab (pst->texthigh, pst->objfile, SECT_OFF_TEXT (pst->objfile));
3993 /* There used to be a call to sort_blocks here, but this should not
3994 be necessary for stabs symtabs. And as sort_blocks modifies the
3995 start address of the GLOBAL_BLOCK to the FIRST_LOCAL_BLOCK,
3996 it did the wrong thing if the first procedure in a file was
3997 generated via asm statements. */
3999 /* Fill in procedure info next. */
4003 struct cleanup *old_chain;
4009 pr_block = (PDR *) xmalloc (fh->cpd * sizeof (PDR));
4010 old_chain = make_cleanup (xfree, pr_block);
4012 pdr_ptr = ((char *) debug_info->external_pdr
4013 + fh->ipdFirst * external_pdr_size);
4014 pdr_end = pdr_ptr + fh->cpd * external_pdr_size;
4018 pdr_ptr += external_pdr_size, pdr_in++)
4020 (*swap_pdr_in) (cur_bfd, pdr_ptr, pdr_in);
4022 /* Determine lowest PDR address, the PDRs are not always
4024 if (pdr_in == pr_block)
4025 lowest_pdr_addr = pdr_in->adr;
4026 else if (pdr_in->adr < lowest_pdr_addr)
4027 lowest_pdr_addr = pdr_in->adr;
4031 pdr_in_end = pdr_in + fh->cpd;
4032 for (; pdr_in < pdr_in_end; pdr_in++)
4033 parse_procedure (pdr_in, st, pst);
4035 do_cleanups (old_chain);
4040 /* This symbol table contains ordinary ecoff entries. */
4049 st = new_symtab ("unknown", 0, pst->objfile);
4053 maxlines = 2 * fh->cline;
4054 st = new_symtab (pst->filename, maxlines, pst->objfile);
4056 /* The proper language was already determined when building
4057 the psymtab, use it. */
4058 st->language = PST_PRIVATE (pst)->pst_language;
4061 psymtab_language = st->language;
4063 lines = LINETABLE (st);
4065 /* Get a new lexical context */
4067 push_parse_stack ();
4068 top_stack->cur_st = st;
4069 top_stack->cur_block = BLOCKVECTOR_BLOCK (BLOCKVECTOR (st),
4071 BLOCK_START (top_stack->cur_block) = pst->textlow;
4072 BLOCK_END (top_stack->cur_block) = 0;
4073 top_stack->blocktype = stFile;
4074 top_stack->cur_type = 0;
4075 top_stack->procadr = 0;
4076 top_stack->numargs = 0;
4077 found_ecoff_debugging_info = 0;
4084 /* Parse local symbols first */
4085 sym_ptr = ((char *) debug_info->external_sym
4086 + fh->isymBase * external_sym_size);
4087 sym_end = sym_ptr + fh->csym * external_sym_size;
4088 while (sym_ptr < sym_end)
4093 (*swap_sym_in) (cur_bfd, sym_ptr, &sh);
4094 c = parse_symbol (&sh,
4095 debug_info->external_aux + fh->iauxBase,
4096 sym_ptr, fh->fBigendian, pst->section_offsets, pst->objfile);
4097 sym_ptr += c * external_sym_size;
4100 /* Linenumbers. At the end, check if we can save memory.
4101 parse_lines has to look ahead an arbitrary number of PDR
4102 structures, so we swap them all first. */
4106 struct cleanup *old_chain;
4112 pr_block = (PDR *) xmalloc (fh->cpd * sizeof (PDR));
4114 old_chain = make_cleanup (xfree, pr_block);
4116 pdr_ptr = ((char *) debug_info->external_pdr
4117 + fh->ipdFirst * external_pdr_size);
4118 pdr_end = pdr_ptr + fh->cpd * external_pdr_size;
4122 pdr_ptr += external_pdr_size, pdr_in++)
4124 (*swap_pdr_in) (cur_bfd, pdr_ptr, pdr_in);
4126 /* Determine lowest PDR address, the PDRs are not always
4128 if (pdr_in == pr_block)
4129 lowest_pdr_addr = pdr_in->adr;
4130 else if (pdr_in->adr < lowest_pdr_addr)
4131 lowest_pdr_addr = pdr_in->adr;
4134 parse_lines (fh, pr_block, lines, maxlines, pst, lowest_pdr_addr);
4135 if (lines->nitems < fh->cline)
4136 lines = shrink_linetable (lines);
4138 /* Fill in procedure info next. */
4140 pdr_in_end = pdr_in + fh->cpd;
4141 for (; pdr_in < pdr_in_end; pdr_in++)
4142 parse_procedure (pdr_in, 0, pst);
4144 do_cleanups (old_chain);
4148 LINETABLE (st) = lines;
4150 /* .. and our share of externals.
4151 XXX use the global list to speed up things here. how?
4152 FIXME, Maybe quit once we have found the right number of ext's? */
4153 top_stack->cur_st = st;
4154 top_stack->cur_block = BLOCKVECTOR_BLOCK (BLOCKVECTOR (top_stack->cur_st),
4156 top_stack->blocktype = stFile;
4158 ext_ptr = PST_PRIVATE (pst)->extern_tab;
4159 for (i = PST_PRIVATE (pst)->extern_count; --i >= 0; ext_ptr++)
4160 parse_external (ext_ptr, fh->fBigendian, pst->section_offsets, pst->objfile);
4162 /* If there are undefined symbols, tell the user.
4163 The alpha has an undefined symbol for every symbol that is
4164 from a shared library, so tell the user only if verbose is on. */
4165 if (info_verbose && n_undef_symbols)
4167 printf_filtered ("File %s contains %d unresolved references:",
4168 st->filename, n_undef_symbols);
4169 printf_filtered ("\n\t%4d variables\n\t%4d procedures\n\t%4d labels\n",
4170 n_undef_vars, n_undef_procs, n_undef_labels);
4171 n_undef_symbols = n_undef_labels = n_undef_vars = n_undef_procs = 0;
4181 /* Now link the psymtab and the symtab. */
4184 current_objfile = NULL;
4187 /* Ancillary parsing procedures. */
4189 /* Return 1 if the symbol pointed to by SH has a cross reference
4190 to an opaque aggregate type, else 0. */
4193 has_opaque_xref (FDR *fh, SYMR *sh)
4200 if (sh->index == indexNil)
4203 ax = debug_info->external_aux + fh->iauxBase + sh->index;
4204 (*debug_swap->swap_tir_in) (fh->fBigendian, &ax->a_ti, &tir);
4205 if (tir.bt != btStruct && tir.bt != btUnion && tir.bt != btEnum)
4209 (*debug_swap->swap_rndx_in) (fh->fBigendian, &ax->a_rndx, rn);
4210 if (rn->rfd == 0xfff)
4211 rf = AUX_GET_ISYM (fh->fBigendian, ax + 1);
4219 /* Lookup the type at relative index RN. Return it in TPP
4220 if found and in any event come up with its name PNAME.
4221 BIGEND says whether aux symbols are big-endian or not (from fh->fBigendian).
4222 Return value says how many aux symbols we ate. */
4225 cross_ref (int fd, union aux_ext *ax, struct type **tpp, enum type_code type_code, /* Use to alloc new type if none is found. */
4226 char **pname, int bigend, char *sym_name)
4235 struct mdebug_pending *pend;
4237 *tpp = (struct type *) NULL;
4239 (*debug_swap->swap_rndx_in) (bigend, &ax->a_rndx, rn);
4241 /* Escape index means 'the next one' */
4242 if (rn->rfd == 0xfff)
4245 rf = AUX_GET_ISYM (bigend, ax + 1);
4252 /* mips cc uses a rf of -1 for opaque struct definitions.
4253 Set TYPE_FLAG_STUB for these types so that check_typedef will
4254 resolve them if the struct gets defined in another compilation unit. */
4257 *pname = "<undefined>";
4258 *tpp = init_type (type_code, 0, TYPE_FLAG_STUB, (char *) NULL, current_objfile);
4262 /* mips cc uses an escaped rn->index of 0 for struct return types
4263 of procedures that were compiled without -g. These will always remain
4265 if (rn->rfd == 0xfff && rn->index == 0)
4267 *pname = "<undefined>";
4271 /* Find the relative file descriptor and the symbol in it. */
4272 fh = get_rfd (fd, rf);
4273 xref_fd = fh - debug_info->fdr;
4275 if (rn->index >= fh->csym)
4277 /* File indirect entry is corrupt. */
4278 *pname = "<illegal>";
4279 bad_rfd_entry_complaint (sym_name, xref_fd, rn->index);
4283 /* If we have processed this symbol then we left a forwarding
4284 pointer to the type in the pending list. If not, we`ll put
4285 it in a list of pending types, to be processed later when
4286 the file will be. In any event, we collect the name for the
4289 esh = ((char *) debug_info->external_sym
4290 + ((fh->isymBase + rn->index)
4291 * debug_swap->external_sym_size));
4292 (*debug_swap->swap_sym_in) (cur_bfd, esh, &sh);
4294 /* Make sure that this type of cross reference can be handled. */
4295 if ((sh.sc != scInfo
4296 || (sh.st != stBlock && sh.st != stTypedef && sh.st != stIndirect
4297 && sh.st != stStruct && sh.st != stUnion
4298 && sh.st != stEnum))
4299 && (sh.st != stBlock || !SC_IS_COMMON (sh.sc)))
4301 /* File indirect entry is corrupt. */
4302 *pname = "<illegal>";
4303 bad_rfd_entry_complaint (sym_name, xref_fd, rn->index);
4307 *pname = debug_info->ss + fh->issBase + sh.iss;
4309 pend = is_pending_symbol (fh, esh);
4314 /* We have not yet seen this type. */
4316 if ((sh.iss == 0 && sh.st == stTypedef) || sh.st == stIndirect)
4320 /* alpha cc puts out a stTypedef with a sh.iss of zero for
4322 a) forward declarations of structs/unions/enums which are not
4323 defined in this compilation unit.
4324 For these the type will be void. This is a bad design decision
4325 as cross referencing across compilation units is impossible
4326 due to the missing name.
4327 b) forward declarations of structs/unions/enums/typedefs which
4328 are defined later in this file or in another file in the same
4329 compilation unit. Irix5 cc uses a stIndirect symbol for this.
4330 Simply cross reference those again to get the true type.
4331 The forward references are not entered in the pending list and
4332 in the symbol table. */
4334 (*debug_swap->swap_tir_in) (bigend,
4335 &(debug_info->external_aux
4336 + fh->iauxBase + sh.index)->a_ti,
4338 if (tir.tq0 != tqNil)
4339 complaint (&symfile_complaints,
4340 "illegal tq0 in forward typedef for %s", sym_name);
4344 *tpp = init_type (type_code, 0, 0, (char *) NULL,
4346 *pname = "<undefined>";
4353 (debug_info->external_aux
4354 + fh->iauxBase + sh.index + 1),
4355 tpp, type_code, pname,
4356 fh->fBigendian, sym_name);
4360 /* Follow a forward typedef. This might recursively
4361 call cross_ref till we get a non typedef'ed type.
4362 FIXME: This is not correct behaviour, but gdb currently
4363 cannot handle typedefs without type copying. Type
4364 copying is impossible as we might have mutual forward
4365 references between two files and the copied type would not
4366 get filled in when we later parse its definition. */
4367 *tpp = parse_type (xref_fd,
4368 debug_info->external_aux + fh->iauxBase,
4372 debug_info->ss + fh->issBase + sh.iss);
4373 add_pending (fh, esh, *tpp);
4377 complaint (&symfile_complaints,
4378 "illegal bt %d in forward typedef for %s", tir.bt,
4380 *tpp = init_type (type_code, 0, 0, (char *) NULL,
4386 else if (sh.st == stTypedef)
4388 /* Parse the type for a normal typedef. This might recursively call
4389 cross_ref till we get a non typedef'ed type.
4390 FIXME: This is not correct behaviour, but gdb currently
4391 cannot handle typedefs without type copying. But type copying is
4392 impossible as we might have mutual forward references between
4393 two files and the copied type would not get filled in when
4394 we later parse its definition. */
4395 *tpp = parse_type (xref_fd,
4396 debug_info->external_aux + fh->iauxBase,
4400 debug_info->ss + fh->issBase + sh.iss);
4404 /* Cross reference to a struct/union/enum which is defined
4405 in another file in the same compilation unit but that file
4406 has not been parsed yet.
4407 Initialize the type only, it will be filled in when
4408 it's definition is parsed. */
4409 *tpp = init_type (type_code, 0, 0, (char *) NULL, current_objfile);
4411 add_pending (fh, esh, *tpp);
4414 /* We used one auxent normally, two if we got a "next one" rf. */
4419 /* Quick&dirty lookup procedure, to avoid the MI ones that require
4420 keeping the symtab sorted */
4422 static struct symbol *
4423 mylookup_symbol (char *name, struct block *block,
4424 domain_enum domain, enum address_class class)
4426 struct dict_iterator iter;
4431 ALL_BLOCK_SYMBOLS (block, iter, sym)
4433 if (DEPRECATED_SYMBOL_NAME (sym)[0] == inc
4434 && SYMBOL_DOMAIN (sym) == domain
4435 && SYMBOL_CLASS (sym) == class
4436 && strcmp (DEPRECATED_SYMBOL_NAME (sym), name) == 0)
4440 block = BLOCK_SUPERBLOCK (block);
4442 return mylookup_symbol (name, block, domain, class);
4447 /* Add a new symbol S to a block B. */
4450 add_symbol (struct symbol *s, struct block *b)
4452 dict_add_symbol (BLOCK_DICT (b), s);
4455 /* Add a new block B to a symtab S */
4458 add_block (struct block *b, struct symtab *s)
4460 struct blockvector *bv = BLOCKVECTOR (s);
4462 bv = (struct blockvector *) xrealloc ((void *) bv,
4463 (sizeof (struct blockvector)
4464 + BLOCKVECTOR_NBLOCKS (bv)
4465 * sizeof (bv->block)));
4466 if (bv != BLOCKVECTOR (s))
4467 BLOCKVECTOR (s) = bv;
4469 BLOCKVECTOR_BLOCK (bv, BLOCKVECTOR_NBLOCKS (bv)++) = b;
4472 /* Add a new linenumber entry (LINENO,ADR) to a linevector LT.
4473 MIPS' linenumber encoding might need more than one byte
4474 to describe it, LAST is used to detect these continuation lines.
4476 Combining lines with the same line number seems like a bad idea.
4477 E.g: There could be a line number entry with the same line number after the
4478 prologue and GDB should not ignore it (this is a better way to find
4479 a prologue than mips_skip_prologue).
4480 But due to the compressed line table format there are line number entries
4481 for the same line which are needed to bridge the gap to the next
4482 line number entry. These entries have a bogus address info with them
4483 and we are unable to tell them from intended duplicate line number
4485 This is another reason why -ggdb debugging format is preferable. */
4488 add_line (struct linetable *lt, int lineno, CORE_ADDR adr, int last)
4490 /* DEC c89 sometimes produces zero linenos which confuse gdb.
4491 Change them to something sensible. */
4495 last = -2; /* make sure we record first line */
4497 if (last == lineno) /* skip continuation lines */
4500 lt->item[lt->nitems].line = lineno;
4501 lt->item[lt->nitems++].pc = adr << 2;
4505 /* Sorting and reordering procedures */
4507 /* Blocks with a smaller low bound should come first */
4510 compare_blocks (const void *arg1, const void *arg2)
4513 struct block **b1 = (struct block **) arg1;
4514 struct block **b2 = (struct block **) arg2;
4516 addr_diff = (BLOCK_START ((*b1))) - (BLOCK_START ((*b2)));
4518 return (BLOCK_END ((*b2))) - (BLOCK_END ((*b1)));
4522 /* Sort the blocks of a symtab S.
4523 Reorder the blocks in the blockvector by code-address,
4524 as required by some MI search routines */
4527 sort_blocks (struct symtab *s)
4529 struct blockvector *bv = BLOCKVECTOR (s);
4531 if (BLOCKVECTOR_NBLOCKS (bv) <= 2)
4534 if (BLOCK_END (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK)) == 0)
4535 BLOCK_START (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK)) = 0;
4536 if (BLOCK_END (BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK)) == 0)
4537 BLOCK_START (BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK)) = 0;
4541 * This is very unfortunate: normally all functions are compiled in
4542 * the order they are found, but if the file is compiled -O3 things
4543 * are very different. It would be nice to find a reliable test
4544 * to detect -O3 images in advance.
4546 if (BLOCKVECTOR_NBLOCKS (bv) > 3)
4547 qsort (&BLOCKVECTOR_BLOCK (bv, FIRST_LOCAL_BLOCK),
4548 BLOCKVECTOR_NBLOCKS (bv) - FIRST_LOCAL_BLOCK,
4549 sizeof (struct block *),
4554 int i, j = BLOCKVECTOR_NBLOCKS (bv);
4556 for (i = FIRST_LOCAL_BLOCK; i < j; i++)
4557 if (high < BLOCK_END (BLOCKVECTOR_BLOCK (bv, i)))
4558 high = BLOCK_END (BLOCKVECTOR_BLOCK (bv, i));
4559 BLOCK_END (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK)) = high;
4562 BLOCK_START (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK)) =
4563 BLOCK_START (BLOCKVECTOR_BLOCK (bv, FIRST_LOCAL_BLOCK));
4565 BLOCK_START (BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK)) =
4566 BLOCK_START (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK));
4567 BLOCK_END (BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK)) =
4568 BLOCK_END (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK));
4572 /* Constructor/restructor/destructor procedures */
4574 /* Allocate a new symtab for NAME. Needs an estimate of how many
4575 linenumbers MAXLINES we'll put in it */
4577 static struct symtab *
4578 new_symtab (char *name, int maxlines, struct objfile *objfile)
4580 struct symtab *s = allocate_symtab (name, objfile);
4582 LINETABLE (s) = new_linetable (maxlines);
4584 /* All symtabs must have at least two blocks */
4585 BLOCKVECTOR (s) = new_bvect (2);
4586 BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), GLOBAL_BLOCK)
4587 = new_block (NON_FUNCTION_BLOCK);
4588 BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), STATIC_BLOCK)
4589 = new_block (NON_FUNCTION_BLOCK);
4590 BLOCK_SUPERBLOCK (BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), STATIC_BLOCK)) =
4591 BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), GLOBAL_BLOCK);
4593 s->free_code = free_linetable;
4594 s->debugformat = obsavestring ("ECOFF", 5,
4595 &objfile->objfile_obstack);
4599 /* Allocate a new partial_symtab NAME */
4601 static struct partial_symtab *
4602 new_psymtab (char *name, struct objfile *objfile)
4604 struct partial_symtab *psymtab;
4606 psymtab = allocate_psymtab (name, objfile);
4607 psymtab->section_offsets = objfile->section_offsets;
4609 /* Keep a backpointer to the file's symbols */
4611 psymtab->read_symtab_private = ((char *)
4612 obstack_alloc (&objfile->objfile_obstack,
4613 sizeof (struct symloc)));
4614 memset (psymtab->read_symtab_private, 0, sizeof (struct symloc));
4615 CUR_BFD (psymtab) = cur_bfd;
4616 DEBUG_SWAP (psymtab) = debug_swap;
4617 DEBUG_INFO (psymtab) = debug_info;
4618 PENDING_LIST (psymtab) = pending_list;
4620 /* The way to turn this into a symtab is to call... */
4621 psymtab->read_symtab = mdebug_psymtab_to_symtab;
4626 /* Allocate a linetable array of the given SIZE. Since the struct
4627 already includes one item, we subtract one when calculating the
4628 proper size to allocate. */
4630 static struct linetable *
4631 new_linetable (int size)
4633 struct linetable *l;
4635 size = (size - 1) * sizeof (l->item) + sizeof (struct linetable);
4636 l = (struct linetable *) xmalloc (size);
4641 /* Oops, too big. Shrink it. This was important with the 2.4 linetables,
4642 I am not so sure about the 3.4 ones.
4644 Since the struct linetable already includes one item, we subtract one when
4645 calculating the proper size to allocate. */
4647 static struct linetable *
4648 shrink_linetable (struct linetable *lt)
4651 return (struct linetable *) xrealloc ((void *) lt,
4652 (sizeof (struct linetable)
4654 * sizeof (lt->item))));
4657 /* Allocate and zero a new blockvector of NBLOCKS blocks. */
4659 static struct blockvector *
4660 new_bvect (int nblocks)
4662 struct blockvector *bv;
4665 size = sizeof (struct blockvector) + nblocks * sizeof (struct block *);
4666 bv = (struct blockvector *) xzalloc (size);
4668 BLOCKVECTOR_NBLOCKS (bv) = nblocks;
4673 /* Allocate and zero a new block, and set its BLOCK_DICT. If function
4674 is non-zero, assume the block is associated to a function, and make
4675 sure that the symbols are stored linearly; otherwise, store them
4678 static struct block *
4679 new_block (enum block_type type)
4681 /* FIXME: carlton/2003-09-11: This should use allocate_block to
4682 allocate the block. Which, in turn, suggests that the block
4683 should be allocated on an obstack. */
4684 struct block *retval = xzalloc (sizeof (struct block));
4686 if (type == FUNCTION_BLOCK)
4687 BLOCK_DICT (retval) = dict_create_linear_expandable ();
4689 BLOCK_DICT (retval) = dict_create_hashed_expandable ();
4694 /* Create a new symbol with printname NAME */
4696 static struct symbol *
4697 new_symbol (char *name)
4699 struct symbol *s = ((struct symbol *)
4700 obstack_alloc (¤t_objfile->objfile_obstack,
4701 sizeof (struct symbol)));
4703 memset (s, 0, sizeof (*s));
4704 SYMBOL_LANGUAGE (s) = psymtab_language;
4705 SYMBOL_SET_NAMES (s, name, strlen (name), current_objfile);
4709 /* Create a new type with printname NAME */
4711 static struct type *
4712 new_type (char *name)
4716 t = alloc_type (current_objfile);
4717 TYPE_NAME (t) = name;
4718 TYPE_CPLUS_SPECIFIC (t) = (struct cplus_struct_type *) &cplus_struct_default;
4722 /* Read ECOFF debugging information from a BFD section. This is
4723 called from elfread.c. It parses the section into a
4724 ecoff_debug_info struct, and then lets the rest of the file handle
4728 elfmdebug_build_psymtabs (struct objfile *objfile,
4729 const struct ecoff_debug_swap *swap, asection *sec)
4731 bfd *abfd = objfile->obfd;
4732 struct ecoff_debug_info *info;
4733 struct cleanup *back_to;
4735 /* FIXME: It's not clear whether we should be getting minimal symbol
4736 information from .mdebug in an ELF file, or whether we will.
4737 Re-initialize the minimal symbol reader in case we do. */
4739 init_minimal_symbol_collection ();
4740 back_to = make_cleanup_discard_minimal_symbols ();
4742 info = ((struct ecoff_debug_info *)
4743 obstack_alloc (&objfile->objfile_obstack,
4744 sizeof (struct ecoff_debug_info)));
4746 if (!(*swap->read_debug_info) (abfd, sec, info))
4747 error ("Error reading ECOFF debugging information: %s",
4748 bfd_errmsg (bfd_get_error ()));
4750 mdebug_build_psymtabs (objfile, swap, info);
4752 install_minimal_symbols (objfile);
4753 do_cleanups (back_to);
4757 /* Things used for calling functions in the inferior.
4758 These functions are exported to our companion
4759 mips-tdep.c file and are here because they play
4760 with the symbol-table explicitly. */
4762 /* Sigtramp: make sure we have all the necessary information
4763 about the signal trampoline code. Since the official code
4764 from MIPS does not do so, we make up that information ourselves.
4765 If they fix the library (unlikely) this code will neutralize itself. */
4767 /* FIXME: This function is called only by mips-tdep.c. It needs to be
4768 here because it calls functions defined in this file, but perhaps
4769 this could be handled in a better way. Only compile it in when
4770 tm-mips.h is included. */
4775 fixup_sigtramp (void)
4779 struct block *b, *b0 = NULL;
4781 sigtramp_address = -1;
4783 /* We have to handle the following cases here:
4784 a) The Mips library has a sigtramp label within sigvec.
4785 b) Irix has a _sigtramp which we want to use, but it also has sigvec. */
4786 s = lookup_symbol ("sigvec", 0, VAR_DOMAIN, 0, NULL);
4789 b0 = SYMBOL_BLOCK_VALUE (s);
4790 s = lookup_symbol ("sigtramp", b0, VAR_DOMAIN, 0, NULL);
4794 /* No sigvec or no sigtramp inside sigvec, try _sigtramp. */
4795 s = lookup_symbol ("_sigtramp", 0, VAR_DOMAIN, 0, NULL);
4798 /* But maybe this program uses its own version of sigvec */
4802 /* Did we or MIPSco fix the library ? */
4803 if (SYMBOL_CLASS (s) == LOC_BLOCK)
4805 sigtramp_address = BLOCK_START (SYMBOL_BLOCK_VALUE (s));
4806 sigtramp_end = BLOCK_END (SYMBOL_BLOCK_VALUE (s));
4810 sigtramp_address = SYMBOL_VALUE (s);
4811 sigtramp_end = sigtramp_address + 0x88; /* black magic */
4813 /* But what symtab does it live in ? */
4814 st = find_pc_symtab (SYMBOL_VALUE (s));
4817 * Ok, there goes the fix: turn it into a procedure, with all the
4818 * needed info. Note we make it a nested procedure of sigvec,
4819 * which is the way the (assembly) code is actually written.
4821 SYMBOL_DOMAIN (s) = VAR_DOMAIN;
4822 SYMBOL_CLASS (s) = LOC_BLOCK;
4823 SYMBOL_TYPE (s) = init_type (TYPE_CODE_FUNC, 4, 0, (char *) NULL,
4825 TYPE_TARGET_TYPE (SYMBOL_TYPE (s)) = mdebug_type_void;
4827 /* Need a block to allocate MIPS_EFI_SYMBOL_NAME in */
4828 b = new_block (NON_FUNCTION_BLOCK);
4829 SYMBOL_BLOCK_VALUE (s) = b;
4830 BLOCK_START (b) = sigtramp_address;
4831 BLOCK_END (b) = sigtramp_end;
4832 BLOCK_FUNCTION (b) = s;
4833 BLOCK_SUPERBLOCK (b) = BLOCK_SUPERBLOCK (b0);
4837 /* Make a MIPS_EFI_SYMBOL_NAME entry for it */
4839 struct mips_extra_func_info *e =
4840 ((struct mips_extra_func_info *)
4841 xzalloc (sizeof (struct mips_extra_func_info)));
4843 e->numargs = 0; /* the kernel thinks otherwise */
4844 e->pdr.frameoffset = 32;
4845 e->pdr.framereg = SP_REGNUM;
4846 /* Note that setting pcreg is no longer strictly necessary as
4847 mips_frame_saved_pc is now aware of signal handler frames. */
4848 e->pdr.pcreg = PC_REGNUM;
4849 e->pdr.regmask = -2;
4850 /* Offset to saved r31, in the sigtramp case the saved registers
4851 are above the frame in the sigcontext.
4852 We have 4 alignment bytes, 12 bytes for onstack, mask and pc,
4853 32 * 4 bytes for the general registers, 12 bytes for mdhi, mdlo, ownedfp
4854 and 32 * 4 bytes for the floating point registers. */
4855 e->pdr.regoffset = 4 + 12 + 31 * 4;
4856 e->pdr.fregmask = -1;
4857 /* Offset to saved f30 (first saved *double* register). */
4858 e->pdr.fregoffset = 4 + 12 + 32 * 4 + 12 + 30 * 4;
4859 e->pdr.isym = (long) s;
4860 e->pdr.adr = sigtramp_address;
4862 current_objfile = st->objfile; /* Keep new_symbol happy */
4863 s = new_symbol (MIPS_EFI_SYMBOL_NAME);
4864 SYMBOL_VALUE (s) = (long) e;
4865 SYMBOL_DOMAIN (s) = LABEL_DOMAIN;
4866 SYMBOL_CLASS (s) = LOC_CONST;
4867 SYMBOL_TYPE (s) = mdebug_type_void;
4868 current_objfile = NULL;
4871 dict_add_symbol (BLOCK_DICT (b), s);
4874 #endif /* TM_MIPS_H */
4877 _initialize_mdebugread (void)
4880 init_type (TYPE_CODE_VOID, 1,
4882 "void", (struct objfile *) NULL);
4884 init_type (TYPE_CODE_INT, 1,
4886 "char", (struct objfile *) NULL);
4887 mdebug_type_unsigned_char =
4888 init_type (TYPE_CODE_INT, 1,
4890 "unsigned char", (struct objfile *) NULL);
4892 init_type (TYPE_CODE_INT, 2,
4894 "short", (struct objfile *) NULL);
4895 mdebug_type_unsigned_short =
4896 init_type (TYPE_CODE_INT, 2,
4898 "unsigned short", (struct objfile *) NULL);
4899 mdebug_type_int_32 =
4900 init_type (TYPE_CODE_INT, 4,
4902 "int", (struct objfile *) NULL);
4903 mdebug_type_unsigned_int_32 =
4904 init_type (TYPE_CODE_INT, 4,
4906 "unsigned int", (struct objfile *) NULL);
4907 mdebug_type_int_64 =
4908 init_type (TYPE_CODE_INT, 8,
4910 "int", (struct objfile *) NULL);
4911 mdebug_type_unsigned_int_64 =
4912 init_type (TYPE_CODE_INT, 8,
4914 "unsigned int", (struct objfile *) NULL);
4915 mdebug_type_long_32 =
4916 init_type (TYPE_CODE_INT, 4,
4918 "long", (struct objfile *) NULL);
4919 mdebug_type_unsigned_long_32 =
4920 init_type (TYPE_CODE_INT, 4,
4922 "unsigned long", (struct objfile *) NULL);
4923 mdebug_type_long_64 =
4924 init_type (TYPE_CODE_INT, 8,
4926 "long", (struct objfile *) NULL);
4927 mdebug_type_unsigned_long_64 =
4928 init_type (TYPE_CODE_INT, 8,
4930 "unsigned long", (struct objfile *) NULL);
4931 mdebug_type_long_long_64 =
4932 init_type (TYPE_CODE_INT, 8,
4934 "long long", (struct objfile *) NULL);
4935 mdebug_type_unsigned_long_long_64 =
4936 init_type (TYPE_CODE_INT, 8,
4938 "unsigned long long", (struct objfile *) NULL);
4939 mdebug_type_adr_32 =
4940 init_type (TYPE_CODE_PTR, 4,
4942 "adr_32", (struct objfile *) NULL);
4943 TYPE_TARGET_TYPE (mdebug_type_adr_32) = mdebug_type_void;
4944 mdebug_type_adr_64 =
4945 init_type (TYPE_CODE_PTR, 8,
4947 "adr_64", (struct objfile *) NULL);
4948 TYPE_TARGET_TYPE (mdebug_type_adr_64) = mdebug_type_void;
4950 init_type (TYPE_CODE_FLT, TARGET_FLOAT_BIT / TARGET_CHAR_BIT,
4952 "float", (struct objfile *) NULL);
4953 mdebug_type_double =
4954 init_type (TYPE_CODE_FLT, TARGET_DOUBLE_BIT / TARGET_CHAR_BIT,
4956 "double", (struct objfile *) NULL);
4957 mdebug_type_complex =
4958 init_type (TYPE_CODE_COMPLEX, 2 * TARGET_FLOAT_BIT / TARGET_CHAR_BIT,
4960 "complex", (struct objfile *) NULL);
4961 TYPE_TARGET_TYPE (mdebug_type_complex) = mdebug_type_float;
4962 mdebug_type_double_complex =
4963 init_type (TYPE_CODE_COMPLEX, 2 * TARGET_DOUBLE_BIT / TARGET_CHAR_BIT,
4965 "double complex", (struct objfile *) NULL);
4966 TYPE_TARGET_TYPE (mdebug_type_double_complex) = mdebug_type_double;
4968 /* Is a "string" the way btString means it the same as TYPE_CODE_STRING?
4970 mdebug_type_string =
4971 init_type (TYPE_CODE_STRING,
4972 TARGET_CHAR_BIT / TARGET_CHAR_BIT,
4974 (struct objfile *) NULL);
4976 /* We use TYPE_CODE_INT to print these as integers. Does this do any
4977 good? Would we be better off with TYPE_CODE_ERROR? Should
4978 TYPE_CODE_ERROR print things in hex if it knows the size? */
4979 mdebug_type_fixed_dec =
4980 init_type (TYPE_CODE_INT,
4981 TARGET_INT_BIT / TARGET_CHAR_BIT,
4983 (struct objfile *) NULL);
4985 mdebug_type_float_dec =
4986 init_type (TYPE_CODE_ERROR,
4987 TARGET_DOUBLE_BIT / TARGET_CHAR_BIT,
4988 0, "floating decimal",
4989 (struct objfile *) NULL);
4991 nodebug_func_symbol_type = init_type (TYPE_CODE_FUNC, 1, 0,
4992 "<function, no debug info>", NULL);
4993 TYPE_TARGET_TYPE (nodebug_func_symbol_type) = mdebug_type_int;
4994 nodebug_var_symbol_type =
4995 init_type (TYPE_CODE_INT, TARGET_INT_BIT / HOST_CHAR_BIT, 0,
4996 "<variable, no debug info>", NULL);