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