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