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