* values.c, value.h (modify_field), callers: Make fieldval a LONGEST.
[deliverable/binutils-gdb.git] / gdb / mipsread.c
1 /* Read a symbol table in MIPS' format (Third-Eye).
2 Copyright 1986, 1987, 1989, 1990, 1991, 1992, 1993 Free Software
3 Foundation, Inc.
4 Contributed by Alessandro Forin (af@cs.cmu.edu) at CMU. Major work
5 by Per Bothner, John Gilmore and Ian Lance Taylor at Cygnus Support.
6
7 This file is part of GDB.
8
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
13
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
22
23 /* This module provides three functions: mipscoff_symfile_init,
24 which initializes to read a symbol file; mipscoff_new_init, which
25 discards existing cached information when all symbols are being
26 discarded; and mipscoff_symfile_read, which reads a symbol table
27 from a file.
28
29 mipscoff_symfile_read only does the minimum work necessary for letting the
30 user "name" things symbolically; it does not read the entire symtab.
31 Instead, it reads the external and static symbols and puts them in partial
32 symbol tables. When more extensive information is requested of a
33 file, the corresponding partial symbol table is mutated into a full
34 fledged symbol table by going back and reading the symbols
35 for real. mipscoff_psymtab_to_symtab() is called indirectly through
36 a pointer in the psymtab to do this.
37
38 ECOFF symbol tables are mostly written in the byte order of the
39 target machine. However, one section of the table (the auxiliary
40 symbol information) is written in the host byte order. There is a
41 bit in the other symbol info which describes which host byte order
42 was used. ECOFF thereby takes the trophy from Intel `b.out' for
43 the most brain-dead adaptation of a file format to byte order.
44
45 This module can read all four of the known byte-order combinations,
46 on any type of host. */
47
48 #include "defs.h"
49 #include "symtab.h"
50 #include "gdbtypes.h"
51 #include "gdbcore.h"
52 #include "symfile.h"
53 #include "objfiles.h"
54 #include "obstack.h"
55 #include "buildsym.h"
56 #include "stabsread.h"
57 #include "complaints.h"
58
59 /* These are needed if the tm.h file does not contain the necessary
60 mips specific definitions. */
61
62 #ifndef MIPS_EFI_SYMBOL_NAME
63 #define MIPS_EFI_SYMBOL_NAME "__GDB_EFI_INFO__"
64 #include "coff/sym.h"
65 #include "coff/symconst.h"
66 typedef struct mips_extra_func_info {
67 long numargs;
68 PDR pdr;
69 } *mips_extra_func_info_t;
70 #ifndef RA_REGNUM
71 #define RA_REGNUM 0
72 #endif
73 #ifndef FP0_REGNUM
74 #define FP0_REGNUM 0
75 #endif
76 #endif
77
78 #ifdef USG
79 #include <sys/types.h>
80 #endif
81
82 #include <sys/param.h>
83 #include <sys/file.h>
84 #include <sys/stat.h>
85 #include <string.h>
86
87 #include "gdb-stabs.h"
88
89 #include "bfd.h"
90
91 #include "coff/internal.h"
92 #include "coff/mips.h" /* COFF-like aspects of ecoff files */
93 #include "coff/ecoff-ext.h" /* External forms of ecoff sym structures */
94
95 /* FIXME: coff/internal.h and aout/aout64.h both define N_ABS. We
96 want the definition from aout/aout64.h. */
97 #undef N_ABS
98 /* FIXME: coff/mips.h and aout/aout64.h both define ZMAGIC. We don't
99 use it. */
100 #undef ZMAGIC
101
102 #include "libaout.h" /* Private BFD a.out information. */
103 #include "aout/aout64.h"
104 #include "aout/stab_gnu.h" /* STABS information */
105
106 /* FIXME: libcoff.h and libaout.h both define a couple of macros. We
107 don't use them. */
108 #undef exec_hdr
109 #undef obj_sym_filepos
110
111 #include "libcoff.h" /* Private BFD COFF information. */
112 #include "libecoff.h" /* Private BFD ECOFF information. */
113
114 #include "expression.h"
115 #include "language.h" /* Needed inside partial-stab.h */
116
117 /* Each partial symbol table entry contains a pointer to private data
118 for the read_symtab() function to use when expanding a partial
119 symbol table entry to a full symbol table entry.
120
121 For mipsread this structure contains the index of the FDR that this
122 psymtab represents and a pointer to the BFD that the psymtab was
123 created from. */
124
125 #define PST_PRIVATE(p) ((struct symloc *)(p)->read_symtab_private)
126 #define FDR_IDX(p) (PST_PRIVATE(p)->fdr_idx)
127 #define CUR_BFD(p) (PST_PRIVATE(p)->cur_bfd)
128
129 struct symloc
130 {
131 int fdr_idx;
132 bfd *cur_bfd;
133 EXTR *extern_tab; /* Pointer to external symbols for this file. */
134 int extern_count; /* Size of extern_tab. */
135 struct mips_pending **pending_list;
136 };
137
138 /* Things we import explicitly from other modules */
139
140 extern int info_verbose;
141
142 /* Various complaints about symbol reading that don't abort the process */
143
144 struct complaint bad_file_number_complaint =
145 {"bad file number %d", 0, 0};
146
147 struct complaint index_complaint =
148 {"bad aux index at symbol %s", 0, 0};
149
150 struct complaint aux_index_complaint =
151 {"bad proc end in aux found from symbol %s", 0, 0};
152
153 struct complaint block_index_complaint =
154 {"bad aux index at block symbol %s", 0, 0};
155
156 struct complaint unknown_ext_complaint =
157 {"unknown external symbol %s", 0, 0};
158
159 struct complaint unknown_sym_complaint =
160 {"unknown local symbol %s", 0, 0};
161
162 struct complaint unknown_st_complaint =
163 {"with type %d", 0, 0};
164
165 struct complaint block_overflow_complaint =
166 {"block containing %s overfilled", 0, 0};
167
168 struct complaint basic_type_complaint =
169 {"cannot map MIPS basic type 0x%x", 0, 0};
170
171 struct complaint unknown_type_qual_complaint =
172 {"unknown type qualifier 0x%x", 0, 0};
173
174 struct complaint array_bitsize_complaint =
175 {"size of array target type not known, assuming %d bits", 0, 0};
176
177 struct complaint bad_tag_guess_complaint =
178 {"guessed tag type of %s incorrectly", 0, 0};
179
180 struct complaint block_member_complaint =
181 {"declaration block contains unhandled symbol type %d", 0, 0};
182
183 struct complaint stEnd_complaint =
184 {"stEnd with storage class %d not handled", 0, 0};
185
186 struct complaint unknown_mips_symtype_complaint =
187 {"unknown symbol type 0x%x", 0, 0};
188
189 struct complaint stab_unknown_complaint =
190 {"unknown stabs symbol %s", 0, 0};
191
192 struct complaint pdr_for_nonsymbol_complaint =
193 {"PDR for %s, but no symbol", 0, 0};
194
195 struct complaint pdr_static_symbol_complaint =
196 {"can't handle PDR for static proc at 0x%x", 0, 0};
197
198 struct complaint bad_setjmp_pdr_complaint =
199 {"fixing bad setjmp PDR from libc", 0, 0};
200
201 /* Macros and extra defs */
202
203 /* Already-parsed symbols are marked specially */
204
205 #define stParsed stType
206
207 /* Puns: hard to find whether -g was used and how */
208
209 #define MIN_GLEVEL GLEVEL_0
210 #define compare_glevel(a,b) \
211 (((a) == GLEVEL_3) ? ((b) < GLEVEL_3) : \
212 ((b) == GLEVEL_3) ? -1 : (int)((b) - (a)))
213 \f
214 /* Things that really are local to this module */
215
216 /* Remember what we deduced to be the source language of this psymtab. */
217
218 static enum language psymtab_language = language_unknown;
219
220 /* Current BFD. */
221
222 static bfd *cur_bfd;
223
224 /* Pointer to current file decriptor record, and its index */
225
226 static FDR *cur_fdr;
227 static int cur_fd;
228
229 /* Index of current symbol */
230
231 static int cur_sdx;
232
233 /* Note how much "debuggable" this image is. We would like
234 to see at least one FDR with full symbols */
235
236 static max_gdbinfo;
237 static max_glevel;
238
239 /* When examining .o files, report on undefined symbols */
240
241 static int n_undef_symbols, n_undef_labels, n_undef_vars, n_undef_procs;
242
243 /* Pseudo symbol to use when putting stabs into the symbol table. */
244
245 static char stabs_symbol[] = STABS_SYMBOL;
246
247 /* Extra builtin types */
248
249 struct type *builtin_type_complex;
250 struct type *builtin_type_double_complex;
251 struct type *builtin_type_fixed_dec;
252 struct type *builtin_type_float_dec;
253 struct type *builtin_type_string;
254
255 /* Forward declarations */
256
257 static void
258 read_mips_symtab PARAMS ((struct objfile *, struct section_offsets *));
259
260 static void
261 read_the_mips_symtab PARAMS ((bfd *));
262
263 static int
264 upgrade_type PARAMS ((struct type **, int, union aux_ext *, int));
265
266 static void
267 parse_partial_symbols PARAMS ((struct objfile *,
268 struct section_offsets *));
269
270 static int
271 cross_ref PARAMS ((union aux_ext *, struct type **, enum type_code, char **,
272 int));
273
274 static void
275 fixup_sigtramp PARAMS ((void));
276
277 static struct symbol *
278 new_symbol PARAMS ((char *));
279
280 static struct type *
281 new_type PARAMS ((char *));
282
283 static struct block *
284 new_block PARAMS ((int));
285
286 static struct symtab *
287 new_symtab PARAMS ((char *, int, int, struct objfile *));
288
289 static struct linetable *
290 new_linetable PARAMS ((int));
291
292 static struct blockvector *
293 new_bvect PARAMS ((int));
294
295 static struct type *
296 parse_type PARAMS ((union aux_ext *, int *, int));
297
298 static struct symbol *
299 mylookup_symbol PARAMS ((char *, struct block *, enum namespace,
300 enum address_class));
301
302 static struct block *
303 shrink_block PARAMS ((struct block *, struct symtab *));
304
305 static PTR
306 xzalloc PARAMS ((unsigned int));
307
308 static void
309 sort_blocks PARAMS ((struct symtab *));
310
311 static int
312 compare_blocks PARAMS ((const void *, const void *));
313
314 static struct partial_symtab *
315 new_psymtab PARAMS ((char *, struct objfile *));
316
317 #if 0
318 static struct partial_symtab *
319 parse_fdr PARAMS ((int, int, struct objfile *));
320 #endif
321
322 static void
323 psymtab_to_symtab_1 PARAMS ((struct partial_symtab *, char *));
324
325 static void
326 add_block PARAMS ((struct block *, struct symtab *));
327
328 static void
329 add_symbol PARAMS ((struct symbol *, struct block *));
330
331 static int
332 add_line PARAMS ((struct linetable *, int, CORE_ADDR, int));
333
334 static struct linetable *
335 shrink_linetable PARAMS ((struct linetable *));
336
337 static char *
338 mips_next_symbol_text PARAMS ((void));
339 \f
340 /* Things we export to other modules */
341
342 /* Address bounds for the signal trampoline in inferior, if any */
343 /* FIXME: Nothing really seems to use this. Why is it here? */
344
345 CORE_ADDR sigtramp_address, sigtramp_end;
346
347 static void
348 mipscoff_new_init (ignore)
349 struct objfile *ignore;
350 {
351 sigtramp_address = 0;
352 stabsread_new_init ();
353 buildsym_new_init ();
354 }
355
356 static void
357 mipscoff_symfile_init (objfile)
358 struct objfile *objfile;
359 {
360 if (objfile->sym_private != NULL)
361 {
362 mfree (objfile->md, objfile->sym_private);
363 }
364 objfile->sym_private = NULL;
365 }
366
367 static void
368 mipscoff_symfile_read (objfile, section_offsets, mainline)
369 struct objfile *objfile;
370 struct section_offsets *section_offsets;
371 int mainline;
372 {
373 init_minimal_symbol_collection ();
374 make_cleanup (discard_minimal_symbols, 0);
375
376 /* Now that the executable file is positioned at symbol table,
377 process it and define symbols accordingly. */
378
379 read_mips_symtab (objfile, section_offsets);
380
381 /* Install any minimal symbols that have been collected as the current
382 minimal symbols for this objfile. */
383
384 install_minimal_symbols (objfile);
385 }
386
387 /* Perform any local cleanups required when we are done with a particular
388 objfile. I.E, we are in the process of discarding all symbol information
389 for an objfile, freeing up all memory held for it, and unlinking the
390 objfile struct from the global list of known objfiles. */
391
392 static void
393 mipscoff_symfile_finish (objfile)
394 struct objfile *objfile;
395 {
396 if (objfile->sym_private != NULL)
397 {
398 mfree (objfile->md, objfile->sym_private);
399 }
400
401 cur_bfd = 0;
402 }
403
404 /* Allocate zeroed memory */
405
406 static PTR
407 xzalloc (size)
408 unsigned int size;
409 {
410 PTR p = xmalloc (size);
411
412 memset (p, 0, size);
413 return p;
414 }
415
416 /* Exported procedure: Builds a symtab from the PST partial one.
417 Restores the environment in effect when PST was created, delegates
418 most of the work to an ancillary procedure, and sorts
419 and reorders the symtab list at the end */
420
421 static void
422 mipscoff_psymtab_to_symtab (pst)
423 struct partial_symtab *pst;
424 {
425
426 if (!pst)
427 return;
428
429 if (info_verbose)
430 {
431 printf_filtered ("Reading in symbols for %s...", pst->filename);
432 fflush (stdout);
433 }
434
435 next_symbol_text_func = mips_next_symbol_text;
436
437 psymtab_to_symtab_1 (pst, pst->filename);
438
439 /* Match with global symbols. This only needs to be done once,
440 after all of the symtabs and dependencies have been read in. */
441 scan_file_globals (pst->objfile);
442
443 if (info_verbose)
444 printf_filtered ("done.\n");
445 }
446
447 /* Exported procedure: Is PC in the signal trampoline code */
448
449 int
450 in_sigtramp (pc, ignore)
451 CORE_ADDR pc;
452 char *ignore; /* function name */
453 {
454 if (sigtramp_address == 0)
455 fixup_sigtramp ();
456 return (pc >= sigtramp_address && pc < sigtramp_end);
457 }
458 \f
459 /* File-level interface functions */
460
461 /* Read the symtab information from file ABFD into memory. */
462
463 static void
464 read_the_mips_symtab (abfd)
465 bfd *abfd;
466 {
467 if (ecoff_slurp_symbolic_info (abfd) == false)
468 error ("Error reading symbol table: %s", bfd_errmsg (bfd_error));
469 }
470
471 /* Find a file descriptor given its index RF relative to a file CF */
472
473 static FDR *
474 get_rfd (cf, rf)
475 int cf, rf;
476 {
477 FDR *fdrs;
478 register FDR *f;
479 RFDT rfd;
480
481 fdrs = ecoff_data (cur_bfd)->fdr;
482 f = fdrs + cf;
483 /* Object files do not have the RFD table, all refs are absolute */
484 if (f->rfdBase == 0)
485 return fdrs + rf;
486 ecoff_swap_rfd_in (cur_bfd,
487 ecoff_data (cur_bfd)->external_rfd + f->rfdBase + rf,
488 &rfd);
489 return fdrs + rfd;
490 }
491
492 /* Return a safer print NAME for a file descriptor */
493
494 static char *
495 fdr_name (f)
496 FDR *f;
497 {
498 if (f->rss == -1)
499 return "<stripped file>";
500 if (f->rss == 0)
501 return "<NFY>";
502 return ecoff_data (cur_bfd)->ss + f->issBase + f->rss;
503 }
504
505
506 /* Read in and parse the symtab of the file OBJFILE. Symbols from
507 different sections are relocated via the SECTION_OFFSETS. */
508
509 static void
510 read_mips_symtab (objfile, section_offsets)
511 struct objfile *objfile;
512 struct section_offsets *section_offsets;
513 {
514 cur_bfd = objfile->obfd;
515
516 read_the_mips_symtab (objfile->obfd);
517
518 parse_partial_symbols (objfile, section_offsets);
519
520 #if 0
521 /* Check to make sure file was compiled with -g. If not, warn the
522 user of this limitation. */
523 if (compare_glevel (max_glevel, GLEVEL_2) < 0)
524 {
525 if (max_gdbinfo == 0)
526 printf ("\n%s not compiled with -g, debugging support is limited.\n",
527 objfile->name);
528 printf ("You should compile with -g2 or -g3 for best debugging support.\n");
529 fflush (stdout);
530 }
531 #endif
532 }
533 \f
534 /* Local utilities */
535
536 /* Map of FDR indexes to partial symtabs */
537
538 struct pst_map
539 {
540 struct partial_symtab *pst; /* the psymtab proper */
541 int n_globals; /* exported globals (external symbols) */
542 int globals_offset; /* cumulative */
543 };
544
545
546 /* Utility stack, used to nest procedures and blocks properly.
547 It is a doubly linked list, to avoid too many alloc/free.
548 Since we might need it quite a few times it is NOT deallocated
549 after use. */
550
551 static struct parse_stack
552 {
553 struct parse_stack *next, *prev;
554 struct symtab *cur_st; /* Current symtab. */
555 struct block *cur_block; /* Block in it. */
556 int blocktype; /* What are we parsing. */
557 int maxsyms; /* Max symbols in this block. */
558 struct type *cur_type; /* Type we parse fields for. */
559 int cur_field; /* Field number in cur_type. */
560 int procadr; /* Start addres of this procedure */
561 int numargs; /* Its argument count */
562 }
563
564 *top_stack; /* Top stack ptr */
565
566
567 /* Enter a new lexical context */
568
569 static void
570 push_parse_stack ()
571 {
572 struct parse_stack *new;
573
574 /* Reuse frames if possible */
575 if (top_stack && top_stack->prev)
576 new = top_stack->prev;
577 else
578 new = (struct parse_stack *) xzalloc (sizeof (struct parse_stack));
579 /* Initialize new frame with previous content */
580 if (top_stack)
581 {
582 register struct parse_stack *prev = new->prev;
583
584 *new = *top_stack;
585 top_stack->prev = new;
586 new->prev = prev;
587 new->next = top_stack;
588 }
589 top_stack = new;
590 }
591
592 /* Exit a lexical context */
593
594 static void
595 pop_parse_stack ()
596 {
597 if (!top_stack)
598 return;
599 if (top_stack->next)
600 top_stack = top_stack->next;
601 }
602
603
604 /* Cross-references might be to things we haven't looked at
605 yet, e.g. type references. To avoid too many type
606 duplications we keep a quick fixup table, an array
607 of lists of references indexed by file descriptor */
608
609 static struct mips_pending
610 {
611 struct mips_pending *next; /* link */
612 struct sym_ext *s; /* the symbol */
613 struct type *t; /* its partial type descriptor */
614 } **pending_list;
615
616
617 /* Check whether we already saw symbol SH in file FH as undefined */
618
619 static struct mips_pending *
620 is_pending_symbol (fh, sh)
621 FDR *fh;
622 struct sym_ext *sh;
623 {
624 int f_idx = fh - ecoff_data (cur_bfd)->fdr;
625 register struct mips_pending *p;
626
627 /* Linear search is ok, list is typically no more than 10 deep */
628 for (p = pending_list[f_idx]; p; p = p->next)
629 if (p->s == sh)
630 break;
631 return p;
632 }
633
634 /* Add a new undef symbol SH of type T */
635
636 static void
637 add_pending (fh, sh, t)
638 FDR *fh;
639 struct sym_ext *sh;
640 struct type *t;
641 {
642 int f_idx = fh - ecoff_data (cur_bfd)->fdr;
643 struct mips_pending *p = is_pending_symbol (fh, sh);
644
645 /* Make sure we do not make duplicates */
646 if (!p)
647 {
648 p = (struct mips_pending *) xmalloc (sizeof (*p));
649 p->s = sh;
650 p->t = t;
651 p->next = pending_list[f_idx];
652 pending_list[f_idx] = p;
653 }
654 }
655
656 /* Throw away undef entries when done with file index F_IDX */
657 /* FIXME -- storage leak. This is never called!!! --gnu */
658
659 #if 0
660
661 static void
662 free_pending (f_idx)
663 int f_idx;
664 {
665 register struct mips_pending *p, *q;
666
667 for (p = pending_list[f_idx]; p; p = q)
668 {
669 q = p->next;
670 free ((PTR) p);
671 }
672 pending_list[f_idx] = 0;
673 }
674
675 #endif
676
677 \f
678
679 /* Parsing Routines proper. */
680
681 /* Parse a single symbol. Mostly just make up a GDB symbol for it.
682 For blocks, procedures and types we open a new lexical context.
683 This is basically just a big switch on the symbol's type. Argument
684 AX is the base pointer of aux symbols for this file (fh->iauxBase).
685 EXT_SH points to the unswapped symbol, which is needed for struct,
686 union, etc., types; it is NULL for an EXTR. BIGEND says whether
687 aux symbols are big-endian or little-endian. Return count of
688 SYMR's handled (normally one).
689
690 FIXME: This modifies the symbol, but the only way we have to save
691 the modified information is to stuff it back into the BFD data. */
692
693 static int
694 parse_symbol (sh, ax, ext_sh, bigend)
695 SYMR *sh;
696 union aux_ext *ax;
697 struct sym_ext *ext_sh;
698 int bigend;
699 {
700 char *name;
701 struct symbol *s;
702 struct block *b;
703 struct mips_pending *pend;
704 struct type *t;
705 struct field *f;
706 int count = 1;
707 enum address_class class;
708 TIR tir;
709
710 if (ext_sh == (struct sym_ext *) NULL)
711 name = ecoff_data (cur_bfd)->ssext + sh->iss;
712 else
713 name = ecoff_data (cur_bfd)->ss + cur_fdr->issBase + sh->iss;
714
715 switch (sh->st)
716 {
717 case stNil:
718 break;
719
720 case stGlobal: /* external symbol, goes into global block */
721 class = LOC_STATIC;
722 b = BLOCKVECTOR_BLOCK (BLOCKVECTOR (top_stack->cur_st),
723 GLOBAL_BLOCK);
724 s = new_symbol (name);
725 SYMBOL_VALUE_ADDRESS (s) = (CORE_ADDR) sh->value;
726 goto data;
727
728 case stStatic: /* static data, goes into current block. */
729 class = LOC_STATIC;
730 b = top_stack->cur_block;
731 s = new_symbol (name);
732 if (sh->sc == scCommon)
733 {
734 /* It is a FORTRAN common block. At least for SGI Fortran the
735 address is not in the symbol; we need to fix it later in
736 scan_file_globals. */
737 int bucket = hashname (SYMBOL_NAME (s));
738 SYMBOL_VALUE_CHAIN (s) = global_sym_chain[bucket];
739 global_sym_chain[bucket] = s;
740 }
741 else
742 SYMBOL_VALUE_ADDRESS (s) = (CORE_ADDR) sh->value;
743 goto data;
744
745 case stLocal: /* local variable, goes into current block */
746 if (sh->sc == scRegister)
747 {
748 class = LOC_REGISTER;
749 if (sh->value > 31)
750 sh->value += FP0_REGNUM - 32;
751 }
752 else
753 class = LOC_LOCAL;
754 b = top_stack->cur_block;
755 s = new_symbol (name);
756 SYMBOL_VALUE (s) = sh->value;
757
758 data: /* Common code for symbols describing data */
759 SYMBOL_NAMESPACE (s) = VAR_NAMESPACE;
760 SYMBOL_CLASS (s) = class;
761 add_symbol (s, b);
762
763 /* Type could be missing in a number of cases */
764 if (sh->sc == scUndefined || sh->sc == scNil ||
765 sh->index == 0xfffff)
766 SYMBOL_TYPE (s) = builtin_type_int; /* undefined? */
767 else
768 SYMBOL_TYPE (s) = parse_type (ax + sh->index, 0, bigend);
769 /* Value of a data symbol is its memory address */
770 break;
771
772 case stParam: /* arg to procedure, goes into current block */
773 max_gdbinfo++;
774 top_stack->numargs++;
775
776 /* Special GNU C++ name. */
777 if (name[0] == CPLUS_MARKER && name[1] == 't' && name[2] == 0)
778 name = "this"; /* FIXME, not alloc'd in obstack */
779 s = new_symbol (name);
780
781 SYMBOL_NAMESPACE (s) = VAR_NAMESPACE;
782 switch (sh->sc)
783 {
784 case scRegister:
785 /* Pass by value in register. */
786 SYMBOL_CLASS(s) = LOC_REGPARM;
787 if (sh->value > 31)
788 sh->value += FP0_REGNUM-32;
789 break;
790 case scVar:
791 /* Pass by reference on stack. */
792 SYMBOL_CLASS(s) = LOC_REF_ARG;
793 break;
794 case scVarRegister:
795 /* Pass by reference in register. */
796 SYMBOL_CLASS(s) = LOC_REGPARM_ADDR;
797 break;
798 default:
799 /* Pass by value on stack. */
800 SYMBOL_CLASS(s) = LOC_ARG;
801 break;
802 }
803 SYMBOL_VALUE (s) = sh->value;
804 SYMBOL_TYPE (s) = parse_type (ax + sh->index, 0, bigend);
805 add_symbol (s, top_stack->cur_block);
806 #if 0
807 /* FIXME: This has not been tested. See dbxread.c */
808 /* Add the type of this parameter to the function/procedure
809 type of this block. */
810 add_param_to_type (&top_stack->cur_block->function->type, s);
811 #endif
812 break;
813
814 case stLabel: /* label, goes into current block */
815 s = new_symbol (name);
816 SYMBOL_NAMESPACE (s) = VAR_NAMESPACE; /* so that it can be used */
817 SYMBOL_CLASS (s) = LOC_LABEL; /* but not misused */
818 SYMBOL_VALUE_ADDRESS (s) = (CORE_ADDR) sh->value;
819 SYMBOL_TYPE (s) = builtin_type_int;
820 add_symbol (s, top_stack->cur_block);
821 break;
822
823 case stProc: /* Procedure, usually goes into global block */
824 case stStaticProc: /* Static procedure, goes into current block */
825 s = new_symbol (name);
826 SYMBOL_NAMESPACE (s) = VAR_NAMESPACE;
827 SYMBOL_CLASS (s) = LOC_BLOCK;
828 /* Type of the return value */
829 if (sh->sc == scUndefined || sh->sc == scNil)
830 t = builtin_type_int;
831 else
832 t = parse_type (ax + sh->index + 1, 0, bigend);
833 b = top_stack->cur_block;
834 if (sh->st == stProc)
835 {
836 struct blockvector *bv = BLOCKVECTOR (top_stack->cur_st);
837 /* The next test should normally be true,
838 but provides a hook for nested functions
839 (which we don't want to make global). */
840 if (b == BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK))
841 b = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK);
842 }
843 add_symbol (s, b);
844
845 /* Make a type for the procedure itself */
846 #if 0
847 /* FIXME: This has not been tested yet! See dbxread.c */
848 /* Generate a template for the type of this function. The
849 types of the arguments will be added as we read the symbol
850 table. */
851 bcopy (SYMBOL_TYPE (s), lookup_function_type (t), sizeof (struct type));
852 #else
853 SYMBOL_TYPE (s) = lookup_function_type (t);
854 #endif
855
856 /* Create and enter a new lexical context */
857 b = new_block (top_stack->maxsyms);
858 SYMBOL_BLOCK_VALUE (s) = b;
859 BLOCK_FUNCTION (b) = s;
860 BLOCK_START (b) = BLOCK_END (b) = sh->value;
861 BLOCK_SUPERBLOCK (b) = top_stack->cur_block;
862 add_block (b, top_stack->cur_st);
863
864 /* Not if we only have partial info */
865 if (sh->sc == scUndefined || sh->sc == scNil)
866 break;
867
868 push_parse_stack ();
869 top_stack->cur_block = b;
870 top_stack->blocktype = sh->st;
871 top_stack->cur_type = SYMBOL_TYPE (s);
872 top_stack->cur_field = -1;
873 top_stack->procadr = sh->value;
874 top_stack->numargs = 0;
875
876 sh->value = (long) SYMBOL_TYPE (s);
877 break;
878
879 /* Beginning of code for structure, union, and enum definitions.
880 They all share a common set of local variables, defined here. */
881 {
882 enum type_code type_code;
883 struct sym_ext *ext_tsym;
884 int nfields;
885 long max_value;
886 struct field *f;
887
888 case stStruct: /* Start a block defining a struct type */
889 type_code = TYPE_CODE_STRUCT;
890 goto structured_common;
891
892 case stUnion: /* Start a block defining a union type */
893 type_code = TYPE_CODE_UNION;
894 goto structured_common;
895
896 case stEnum: /* Start a block defining an enum type */
897 type_code = TYPE_CODE_ENUM;
898 goto structured_common;
899
900 case stBlock: /* Either a lexical block, or some type */
901 if (sh->sc != scInfo && sh->sc != scCommon)
902 goto case_stBlock_code; /* Lexical block */
903
904 type_code = TYPE_CODE_UNDEF; /* We have a type. */
905
906 /* Common code for handling struct, union, enum, and/or as-yet-
907 unknown-type blocks of info about structured data. `type_code'
908 has been set to the proper TYPE_CODE, if we know it. */
909 structured_common:
910 push_parse_stack ();
911 top_stack->blocktype = stBlock;
912
913 s = new_symbol (name);
914 SYMBOL_NAMESPACE (s) = STRUCT_NAMESPACE;
915 SYMBOL_CLASS (s) = LOC_TYPEDEF;
916 SYMBOL_VALUE (s) = 0;
917 add_symbol (s, top_stack->cur_block);
918
919 /* First count the number of fields and the highest value. */
920 nfields = 0;
921 max_value = 0;
922 for (ext_tsym = ext_sh + 1; ; ext_tsym++)
923 {
924 SYMR tsym;
925
926 ecoff_swap_sym_in (cur_bfd, ext_tsym, &tsym);
927
928 if (tsym.st == stEnd)
929 break;
930
931 if (tsym.st == stMember)
932 {
933 if (nfields == 0 && type_code == TYPE_CODE_UNDEF)
934 /* If the type of the member is Nil (or Void),
935 without qualifiers, assume the tag is an
936 enumeration. */
937 if (tsym.index == indexNil)
938 type_code = TYPE_CODE_ENUM;
939 else
940 {
941 ecoff_swap_tir_in (bigend,
942 &ax[tsym.index].a_ti,
943 &tir);
944 if ((tir.bt == btNil || tir.bt == btVoid)
945 && tir.tq0 == tqNil)
946 type_code = TYPE_CODE_ENUM;
947 }
948 nfields++;
949 if (tsym.value > max_value)
950 max_value = tsym.value;
951 }
952 else if (tsym.st == stBlock
953 || tsym.st == stUnion
954 || tsym.st == stEnum
955 || tsym.st == stStruct
956 || tsym.st == stParsed)
957 {
958 if (tsym.sc == scVariant); /*UNIMPLEMENTED*/
959 if (tsym.index != 0)
960 {
961 /* This is something like a struct within a
962 struct. Skip over the fields of the inner
963 struct. The -1 is because the for loop will
964 increment ext_tsym. */
965 ext_tsym = (ecoff_data (cur_bfd)->external_sym
966 + cur_fdr->isymBase
967 + tsym.index
968 - 1);
969 }
970 }
971 else
972 complain (&block_member_complaint, tsym.st);
973 }
974
975 /* In an stBlock, there is no way to distinguish structs,
976 unions, and enums at this point. This is a bug in the
977 original design (that has been fixed with the recent
978 addition of the stStruct, stUnion, and stEnum symbol
979 types.) The way you can tell is if/when you see a variable
980 or field of that type. In that case the variable's type
981 (in the AUX table) says if the type is struct, union, or
982 enum, and points back to the stBlock here. So you can
983 patch the tag kind up later - but only if there actually is
984 a variable or field of that type.
985
986 So until we know for sure, we will guess at this point.
987 The heuristic is:
988 If the first member has index==indexNil or a void type,
989 assume we have an enumeration.
990 Otherwise, if there is more than one member, and all
991 the members have offset 0, assume we have a union.
992 Otherwise, assume we have a struct.
993
994 The heuristic could guess wrong in the case of of an
995 enumeration with no members or a union with one (or zero)
996 members, or when all except the last field of a struct have
997 width zero. These are uncommon and/or illegal situations,
998 and in any case guessing wrong probably doesn't matter
999 much.
1000
1001 But if we later do find out we were wrong, we fixup the tag
1002 kind. Members of an enumeration must be handled
1003 differently from struct/union fields, and that is harder to
1004 patch up, but luckily we shouldn't need to. (If there are
1005 any enumeration members, we can tell for sure it's an enum
1006 here.) */
1007
1008 if (type_code == TYPE_CODE_UNDEF)
1009 if (nfields > 1 && max_value == 0)
1010 type_code = TYPE_CODE_UNION;
1011 else
1012 type_code = TYPE_CODE_STRUCT;
1013
1014 /* If this type was expected, use its partial definition */
1015 pend = is_pending_symbol (cur_fdr, ext_sh);
1016 if (pend != (struct mips_pending *) NULL)
1017 t = pend->t;
1018 else
1019 t = new_type (NULL);
1020
1021 TYPE_TAG_NAME (t) = obconcat (&current_objfile->symbol_obstack,
1022 "", "", name);
1023 TYPE_CODE (t) = type_code;
1024 TYPE_LENGTH (t) = sh->value;
1025 TYPE_NFIELDS (t) = nfields;
1026 TYPE_FIELDS (t) = f = ((struct field *)
1027 TYPE_ALLOC (t,
1028 nfields * sizeof (struct field)));
1029
1030 if (type_code == TYPE_CODE_ENUM)
1031 {
1032 /* This is a non-empty enum. */
1033 for (ext_tsym = ext_sh + 1; ; ext_tsym++)
1034 {
1035 SYMR tsym;
1036 struct symbol *enum_sym;
1037
1038 ecoff_swap_sym_in (cur_bfd, ext_tsym, &tsym);
1039
1040 if (tsym.st != stMember)
1041 break;
1042
1043 f->bitpos = tsym.value;
1044 f->type = t;
1045 f->name = (ecoff_data (cur_bfd)->ss
1046 + cur_fdr->issBase
1047 + tsym.iss);
1048 f->bitsize = 0;
1049
1050 enum_sym = ((struct symbol *)
1051 obstack_alloc (&current_objfile->symbol_obstack,
1052 sizeof (struct symbol)));
1053 memset ((PTR) enum_sym, 0, sizeof (struct symbol));
1054 SYMBOL_NAME (enum_sym) = f->name;
1055 SYMBOL_CLASS (enum_sym) = LOC_CONST;
1056 SYMBOL_TYPE (enum_sym) = t;
1057 SYMBOL_NAMESPACE (enum_sym) = VAR_NAMESPACE;
1058 SYMBOL_VALUE (enum_sym) = tsym.value;
1059 add_symbol (enum_sym, top_stack->cur_block);
1060
1061 /* Skip the stMembers that we've handled. */
1062 count++;
1063 f++;
1064 }
1065 }
1066 SYMBOL_TYPE (s) = t;
1067 /* make this the current type */
1068 top_stack->cur_type = t;
1069 top_stack->cur_field = 0;
1070 /* Mark that symbol has a type, and say which one */
1071 sh->value = (long) t;
1072 break;
1073
1074 /* End of local variables shared by struct, union, enum, and
1075 block (as yet unknown struct/union/enum) processing. */
1076 }
1077
1078 case_stBlock_code:
1079 /* beginnning of (code) block. Value of symbol
1080 is the displacement from procedure start */
1081 push_parse_stack ();
1082 top_stack->blocktype = stBlock;
1083 b = new_block (top_stack->maxsyms);
1084 BLOCK_START (b) = sh->value + top_stack->procadr;
1085 BLOCK_SUPERBLOCK (b) = top_stack->cur_block;
1086 top_stack->cur_block = b;
1087 add_block (b, top_stack->cur_st);
1088 break;
1089
1090 case stEnd: /* end (of anything) */
1091 if (sh->sc == scInfo || sh->sc == scCommon)
1092 {
1093 /* Finished with type */
1094 top_stack->cur_type = 0;
1095 }
1096 else if (sh->sc == scText &&
1097 (top_stack->blocktype == stProc ||
1098 top_stack->blocktype == stStaticProc))
1099 {
1100 /* Finished with procedure */
1101 struct blockvector *bv = BLOCKVECTOR (top_stack->cur_st);
1102 struct mips_extra_func_info *e;
1103 struct block *b;
1104 int i;
1105
1106 BLOCK_END (top_stack->cur_block) += sh->value; /* size */
1107
1108 /* Make up special symbol to contain procedure specific info */
1109 s = new_symbol (MIPS_EFI_SYMBOL_NAME);
1110 SYMBOL_NAMESPACE (s) = LABEL_NAMESPACE;
1111 SYMBOL_CLASS (s) = LOC_CONST;
1112 SYMBOL_TYPE (s) = builtin_type_void;
1113 e = ((struct mips_extra_func_info *)
1114 obstack_alloc (&current_objfile->symbol_obstack,
1115 sizeof (struct mips_extra_func_info)));
1116 SYMBOL_VALUE (s) = (int) e;
1117 e->numargs = top_stack->numargs;
1118 add_symbol (s, top_stack->cur_block);
1119
1120 /* Reallocate symbols, saving memory */
1121 b = shrink_block (top_stack->cur_block, top_stack->cur_st);
1122
1123 /* f77 emits proc-level with address bounds==[0,0],
1124 So look for such child blocks, and patch them. */
1125 for (i = 0; i < BLOCKVECTOR_NBLOCKS (bv); i++)
1126 {
1127 struct block *b_bad = BLOCKVECTOR_BLOCK (bv, i);
1128 if (BLOCK_SUPERBLOCK (b_bad) == b
1129 && BLOCK_START (b_bad) == top_stack->procadr
1130 && BLOCK_END (b_bad) == top_stack->procadr)
1131 {
1132 BLOCK_START (b_bad) = BLOCK_START (b);
1133 BLOCK_END (b_bad) = BLOCK_END (b);
1134 }
1135 }
1136 }
1137 else if (sh->sc == scText && top_stack->blocktype == stBlock)
1138 {
1139 /* End of (code) block. The value of the symbol is the
1140 displacement from the procedure`s start address of the
1141 end of this block. */
1142 BLOCK_END (top_stack->cur_block) = sh->value + top_stack->procadr;
1143 shrink_block (top_stack->cur_block, top_stack->cur_st);
1144 }
1145 else if (sh->sc == scText && top_stack->blocktype == stFile)
1146 {
1147 /* End of file. Pop parse stack and ignore. Higher
1148 level code deals with this. */
1149 ;
1150 }
1151 else
1152 complain (&stEnd_complaint, sh->sc);
1153
1154 pop_parse_stack (); /* restore previous lexical context */
1155 break;
1156
1157 case stMember: /* member of struct or union */
1158 f = &TYPE_FIELDS (top_stack->cur_type)[top_stack->cur_field++];
1159 f->name = name;
1160 f->bitpos = sh->value;
1161 f->bitsize = 0;
1162 f->type = parse_type (ax + sh->index, &f->bitsize, bigend);
1163 break;
1164
1165 case stTypedef: /* type definition */
1166 s = new_symbol (name);
1167 SYMBOL_NAMESPACE (s) = VAR_NAMESPACE;
1168 SYMBOL_CLASS (s) = LOC_TYPEDEF;
1169 SYMBOL_BLOCK_VALUE (s) = top_stack->cur_block;
1170 add_symbol (s, top_stack->cur_block);
1171 SYMBOL_TYPE (s) = parse_type (ax + sh->index, 0, bigend);
1172 sh->value = (long) SYMBOL_TYPE (s);
1173 break;
1174
1175 case stFile: /* file name */
1176 push_parse_stack ();
1177 top_stack->blocktype = sh->st;
1178 break;
1179
1180 /* I`ve never seen these for C */
1181 case stRegReloc:
1182 break; /* register relocation */
1183 case stForward:
1184 break; /* forwarding address */
1185 case stConstant:
1186 break; /* constant */
1187 default:
1188 complain (&unknown_mips_symtype_complaint, sh->st);
1189 break;
1190 }
1191
1192 sh->st = stParsed;
1193
1194 return count;
1195 }
1196
1197 /* Parse the type information provided in the raw AX entries for
1198 the symbol SH. Return the bitfield size in BS, in case.
1199 We must byte-swap the AX entries before we use them; BIGEND says whether
1200 they are big-endian or little-endian (from fh->fBigendian). */
1201
1202 static struct type *
1203 parse_type (ax, bs, bigend)
1204 union aux_ext *ax;
1205 int *bs;
1206 int bigend;
1207 {
1208 /* Null entries in this map are treated specially */
1209 static struct type **map_bt[] =
1210 {
1211 &builtin_type_void, /* btNil */
1212 0, /* btAdr */
1213 &builtin_type_char, /* btChar */
1214 &builtin_type_unsigned_char,/* btUChar */
1215 &builtin_type_short, /* btShort */
1216 &builtin_type_unsigned_short, /* btUShort */
1217 &builtin_type_int, /* btInt */
1218 &builtin_type_unsigned_int, /* btUInt */
1219 &builtin_type_long, /* btLong */
1220 &builtin_type_unsigned_long,/* btULong */
1221 &builtin_type_float, /* btFloat */
1222 &builtin_type_double, /* btDouble */
1223 0, /* btStruct */
1224 0, /* btUnion */
1225 0, /* btEnum */
1226 0, /* btTypedef */
1227 0, /* btRange */
1228 0, /* btSet */
1229 &builtin_type_complex, /* btComplex */
1230 &builtin_type_double_complex, /* btDComplex */
1231 0, /* btIndirect */
1232 &builtin_type_fixed_dec, /* btFixedDec */
1233 &builtin_type_float_dec, /* btFloatDec */
1234 &builtin_type_string, /* btString */
1235 0, /* btBit */
1236 0, /* btPicture */
1237 &builtin_type_void, /* btVoid */
1238 &builtin_type_long_long, /* btLongLong */
1239 &builtin_type_unsigned_long_long, /* btULongLong */
1240 };
1241
1242 TIR t[1];
1243 struct type *tp = 0;
1244 char *fmt;
1245 union aux_ext *tax;
1246 enum type_code type_code = TYPE_CODE_UNDEF;
1247
1248 /* Use aux as a type information record, map its basic type. */
1249 tax = ax;
1250 ecoff_swap_tir_in (bigend, &tax->a_ti, t);
1251 if (t->bt > (sizeof (map_bt) / sizeof (*map_bt)))
1252 {
1253 complain (&basic_type_complaint, t->bt);
1254 return builtin_type_int;
1255 }
1256 if (map_bt[t->bt])
1257 {
1258 tp = *map_bt[t->bt];
1259 }
1260 else
1261 {
1262 tp = NULL;
1263 /* Cannot use builtin types -- build our own */
1264 switch (t->bt)
1265 {
1266 case btAdr:
1267 tp = lookup_pointer_type (builtin_type_void);
1268 break;
1269 case btStruct:
1270 type_code = TYPE_CODE_STRUCT;
1271 break;
1272 case btUnion:
1273 type_code = TYPE_CODE_UNION;
1274 break;
1275 case btEnum:
1276 type_code = TYPE_CODE_ENUM;
1277 break;
1278 case btRange:
1279 type_code = TYPE_CODE_RANGE;
1280 break;
1281 case btSet:
1282 type_code = TYPE_CODE_SET;
1283 break;
1284 case btTypedef:
1285 default:
1286 complain (&basic_type_complaint, t->bt);
1287 return builtin_type_int;
1288 }
1289 }
1290
1291 /* Skip over any further type qualifiers (FIXME). */
1292 if (t->continued)
1293 {
1294 /* This is the way it would work if the compiler worked */
1295 TIR t1[1];
1296 do
1297 {
1298 ax++;
1299 ecoff_swap_tir_in (bigend, &ax->a_ti, t1);
1300 }
1301 while (t1->continued);
1302 }
1303
1304 /* Move on to next aux */
1305 ax++;
1306
1307 if (t->fBitfield)
1308 {
1309 *bs = AUX_GET_WIDTH (bigend, ax);
1310 ax++;
1311 }
1312
1313 /* All these types really point to some (common) MIPS type
1314 definition, and only the type-qualifiers fully identify
1315 them. We'll make the same effort at sharing. */
1316 if (t->bt == btStruct ||
1317 t->bt == btUnion ||
1318 t->bt == btEnum ||
1319
1320 /* btSet (I think) implies that the name is a tag name, not a typedef
1321 name. This apparently is a MIPS extension for C sets. */
1322 t->bt == btSet)
1323 {
1324 char *name;
1325
1326 /* Try to cross reference this type */
1327 ax += cross_ref (ax, &tp, type_code, &name, bigend);
1328 /* reading .o file ? */
1329 if (tp == (struct type *) NULL)
1330 tp = init_type (type_code, 0, 0, (char *) NULL,
1331 (struct objfile *) NULL);
1332
1333 /* Usually, TYPE_CODE(tp) is already type_code. The main
1334 exception is if we guessed wrong re struct/union/enum. */
1335 if (TYPE_CODE (tp) != type_code)
1336 {
1337 complain (&bad_tag_guess_complaint, name);
1338 TYPE_CODE (tp) = type_code;
1339 }
1340 if (TYPE_TAG_NAME (tp) == NULL || !STREQ (TYPE_TAG_NAME (tp), name))
1341 TYPE_TAG_NAME (tp) = obsavestring (name, strlen (name),
1342 &current_objfile->type_obstack);
1343 }
1344
1345 /* All these types really point to some (common) MIPS type
1346 definition, and only the type-qualifiers fully identify
1347 them. We'll make the same effort at sharing. */
1348 if (t->bt == btIndirect ||
1349 t->bt == btRange)
1350 {
1351 char *name;
1352
1353 /* Try to cross reference this type */
1354 ax += cross_ref (ax, &tp, type_code, &name, bigend);
1355 /* reading .o file ? */
1356 if (tp == (struct type *) NULL)
1357 tp = init_type (type_code, 0, 0, (char *) NULL,
1358 (struct objfile *) NULL);
1359
1360 /* Usually, TYPE_CODE(tp) is already type_code. The main
1361 exception is if we guessed wrong re struct/union/enum. */
1362 if (TYPE_CODE (tp) != type_code)
1363 {
1364 complain (&bad_tag_guess_complaint, name);
1365 TYPE_CODE (tp) = type_code;
1366 }
1367 if (TYPE_NAME (tp) == NULL || !STREQ (TYPE_NAME (tp), name))
1368 TYPE_NAME (tp) = obsavestring (name, strlen (name),
1369 &current_objfile->type_obstack);
1370 }
1371
1372 /* Deal with range types */
1373 if (t->bt == btRange)
1374 {
1375 TYPE_NFIELDS (tp) = 2;
1376 TYPE_FIELDS (tp) = ((struct field *)
1377 TYPE_ALLOC (tp, 2 * sizeof (struct field)));
1378 TYPE_FIELD_NAME (tp, 0) = obsavestring ("Low", strlen ("Low"),
1379 &current_objfile->type_obstack);
1380 TYPE_FIELD_BITPOS (tp, 0) = AUX_GET_DNLOW (bigend, ax);
1381 ax++;
1382 TYPE_FIELD_NAME (tp, 1) = obsavestring ("High", strlen ("High"),
1383 &current_objfile->type_obstack);
1384 TYPE_FIELD_BITPOS (tp, 1) = AUX_GET_DNHIGH (bigend, ax);
1385 ax++;
1386 }
1387
1388 /* Parse all the type qualifiers now. If there are more
1389 than 6 the game will continue in the next aux */
1390
1391 #define PARSE_TQ(tq) \
1392 if (t->tq != tqNil) ax += upgrade_type(&tp, t->tq, ax, bigend);
1393
1394 again:PARSE_TQ (tq0);
1395 PARSE_TQ (tq1);
1396 PARSE_TQ (tq2);
1397 PARSE_TQ (tq3);
1398 PARSE_TQ (tq4);
1399 PARSE_TQ (tq5);
1400 #undef PARSE_TQ
1401
1402 if (t->continued)
1403 {
1404 tax++;
1405 ecoff_swap_tir_in (bigend, &tax->a_ti, t);
1406 goto again;
1407 }
1408 return tp;
1409 }
1410
1411 /* Make up a complex type from a basic one. Type is passed by
1412 reference in TPP and side-effected as necessary. The type
1413 qualifier TQ says how to handle the aux symbols at AX for
1414 the symbol SX we are currently analyzing. BIGEND says whether
1415 aux symbols are big-endian or little-endian.
1416 Returns the number of aux symbols we parsed. */
1417
1418 static int
1419 upgrade_type (tpp, tq, ax, bigend)
1420 struct type **tpp;
1421 int tq;
1422 union aux_ext *ax;
1423 int bigend;
1424 {
1425 int off;
1426 struct type *t;
1427
1428 /* Used in array processing */
1429 int rf, id;
1430 FDR *fh;
1431 struct type *range;
1432 struct type *indx;
1433 int lower, upper;
1434 RNDXR rndx;
1435
1436 switch (tq)
1437 {
1438 case tqPtr:
1439 t = lookup_pointer_type (*tpp);
1440 *tpp = t;
1441 return 0;
1442
1443 case tqProc:
1444 t = lookup_function_type (*tpp);
1445 *tpp = t;
1446 return 0;
1447
1448 case tqArray:
1449 off = 0;
1450
1451 /* Determine and record the domain type (type of index) */
1452 ecoff_swap_rndx_in (bigend, &ax->a_rndx, &rndx);
1453 id = rndx.index;
1454 rf = rndx.rfd;
1455 if (rf == 0xfff)
1456 {
1457 ax++;
1458 rf = AUX_GET_ISYM (bigend, ax);
1459 off++;
1460 }
1461 fh = get_rfd (cur_fd, rf);
1462
1463 indx = parse_type ((ecoff_data (cur_bfd)->external_aux
1464 + fh->iauxBase
1465 + id),
1466 (int *) NULL, bigend);
1467
1468 /* Get the bounds, and create the array type. */
1469 ax++;
1470 lower = AUX_GET_DNLOW (bigend, ax);
1471 ax++;
1472 upper = AUX_GET_DNHIGH (bigend, ax);
1473 ax++;
1474 rf = AUX_GET_WIDTH (bigend, ax); /* bit size of array element */
1475
1476 range = create_range_type ((struct type *) NULL, indx,
1477 lower, upper);
1478
1479 t = create_array_type ((struct type *) NULL, *tpp, range);
1480
1481 /* Check whether supplied array element bit size matches
1482 the known size of the element type. If this complaint
1483 ends up not happening, we can remove this code. It's
1484 here because we aren't sure we understand this *&%&$
1485 symbol format. */
1486 id = TYPE_LENGTH (TYPE_TARGET_TYPE (t)) << 3; /* bitsize */
1487 if (id == 0)
1488 {
1489 /* Most likely an undefined type */
1490 id = rf;
1491 TYPE_LENGTH (TYPE_TARGET_TYPE (t)) = id >> 3;
1492 }
1493 if (id != rf)
1494 complain (&array_bitsize_complaint, rf);
1495
1496 *tpp = t;
1497 return 4 + off;
1498
1499 case tqVol:
1500 /* Volatile -- currently ignored */
1501 return 0;
1502
1503 case tqConst:
1504 /* Const -- currently ignored */
1505 return 0;
1506
1507 default:
1508 complain (&unknown_type_qual_complaint, tq);
1509 return 0;
1510 }
1511 }
1512
1513
1514 /* Parse a procedure descriptor record PR. Note that the procedure is
1515 parsed _after_ the local symbols, now we just insert the extra
1516 information we need into a MIPS_EFI_SYMBOL_NAME symbol that has
1517 already been placed in the procedure's main block. Note also that
1518 images that have been partially stripped (ld -x) have been deprived
1519 of local symbols, and we have to cope with them here. FIRST_OFF is
1520 the offset of the first procedure for this FDR; we adjust the
1521 address by this amount, but I don't know why. */
1522
1523 static void
1524 parse_procedure (pr, have_stabs, first_off)
1525 PDR *pr;
1526 int have_stabs;
1527 unsigned long first_off;
1528 {
1529 struct symbol *s, *i;
1530 struct block *b;
1531 struct mips_extra_func_info *e;
1532 char *sh_name;
1533
1534 /* Simple rule to find files linked "-x" */
1535 if (cur_fdr->rss == -1)
1536 {
1537 if (pr->isym == -1)
1538 {
1539 /* Static procedure at address pr->adr. Sigh. */
1540 complain (&pdr_static_symbol_complaint, pr->adr);
1541 return;
1542 }
1543 else
1544 {
1545 /* external */
1546 EXTR she;
1547
1548 ecoff_swap_ext_in (cur_bfd,
1549 ecoff_data (cur_bfd)->external_ext + pr->isym,
1550 &she);
1551 sh_name = ecoff_data (cur_bfd)->ssext + she.asym.iss;
1552 }
1553 }
1554 else
1555 {
1556 /* Full symbols */
1557 SYMR sh;
1558
1559 ecoff_swap_sym_in (cur_bfd,
1560 (ecoff_data (cur_bfd)->external_sym
1561 + cur_fdr->isymBase
1562 + pr->isym),
1563 &sh);
1564 sh_name = ecoff_data (cur_bfd)->ss + cur_fdr->issBase + sh.iss;
1565 }
1566
1567 if (have_stabs)
1568 {
1569 /* We have to save the cur_fdr across the call to lookup_symbol.
1570 If the pdr is for a static function and if a global function with
1571 the same name exists, lookup_symbol will eventually read in the symtab
1572 for the global function and clobber cur_fdr. */
1573 FDR *save_cur_fdr = cur_fdr;
1574 s = lookup_symbol (sh_name, NULL, VAR_NAMESPACE, 0, NULL);
1575 cur_fdr = save_cur_fdr;
1576 }
1577 else
1578 s = mylookup_symbol (sh_name, top_stack->cur_block,
1579 VAR_NAMESPACE, LOC_BLOCK);
1580
1581 if (s != 0)
1582 {
1583 b = SYMBOL_BLOCK_VALUE (s);
1584 }
1585 else
1586 {
1587 complain (&pdr_for_nonsymbol_complaint, sh_name);
1588 #if 1
1589 return;
1590 #else
1591 /* FIXME -- delete. We can't do symbol allocation now; it's all done. */
1592 s = new_symbol (sh_name);
1593 SYMBOL_NAMESPACE (s) = VAR_NAMESPACE;
1594 SYMBOL_CLASS (s) = LOC_BLOCK;
1595 /* Donno its type, hope int is ok */
1596 SYMBOL_TYPE (s) = lookup_function_type (builtin_type_int);
1597 add_symbol (s, top_stack->cur_block);
1598 /* Wont have symbols for this one */
1599 b = new_block (2);
1600 SYMBOL_BLOCK_VALUE (s) = b;
1601 BLOCK_FUNCTION (b) = s;
1602 BLOCK_START (b) = pr->adr;
1603 /* BOUND used to be the end of procedure's text, but the
1604 argument is no longer passed in. */
1605 BLOCK_END (b) = bound;
1606 BLOCK_SUPERBLOCK (b) = top_stack->cur_block;
1607 add_block (b, top_stack->cur_st);
1608 #endif
1609 }
1610
1611 i = mylookup_symbol (MIPS_EFI_SYMBOL_NAME, b, LABEL_NAMESPACE, LOC_CONST);
1612
1613 if (i)
1614 {
1615 e = (struct mips_extra_func_info *) SYMBOL_VALUE (i);
1616 e->pdr = *pr;
1617 e->pdr.isym = (long) s;
1618 e->pdr.adr += cur_fdr->adr - first_off;
1619
1620 /* Correct incorrect setjmp procedure descriptor from the library
1621 to make backtrace through setjmp work. */
1622 if (e->pdr.pcreg == 0 && strcmp (sh_name, "setjmp") == 0)
1623 {
1624 complain (&bad_setjmp_pdr_complaint, 0);
1625 e->pdr.pcreg = RA_REGNUM;
1626 e->pdr.regmask = 0x80000000;
1627 e->pdr.regoffset = -4;
1628 }
1629 }
1630 }
1631
1632 /* Parse the external symbol ES. Just call parse_symbol() after
1633 making sure we know where the aux are for it. For procedures,
1634 parsing of the PDRs has already provided all the needed
1635 information, we only parse them if SKIP_PROCEDURES is false,
1636 and only if this causes no symbol duplication.
1637 BIGEND says whether aux entries are big-endian or little-endian.
1638
1639 This routine clobbers top_stack->cur_block and ->cur_st. */
1640
1641 static void
1642 parse_external (es, skip_procedures, bigend)
1643 EXTR *es;
1644 int skip_procedures;
1645 int bigend;
1646 {
1647 union aux_ext *ax;
1648
1649 if (es->ifd != ifdNil)
1650 {
1651 cur_fd = es->ifd;
1652 cur_fdr = ecoff_data (cur_bfd)->fdr + cur_fd;
1653 ax = ecoff_data (cur_bfd)->external_aux + cur_fdr->iauxBase;
1654 }
1655 else
1656 {
1657 cur_fdr = ecoff_data (cur_bfd)->fdr;
1658 ax = 0;
1659 }
1660
1661 /* Reading .o files */
1662 if (es->asym.sc == scUndefined || es->asym.sc == scNil)
1663 {
1664 char *what;
1665 switch (es->asym.st)
1666 {
1667 case stStaticProc:
1668 case stProc:
1669 what = "procedure";
1670 n_undef_procs++;
1671 break;
1672 case stGlobal:
1673 what = "variable";
1674 n_undef_vars++;
1675 break;
1676 case stLabel:
1677 what = "label";
1678 n_undef_labels++;
1679 break;
1680 default:
1681 what = "symbol";
1682 break;
1683 }
1684 n_undef_symbols++;
1685 /* FIXME: Turn this into a complaint? */
1686 if (info_verbose)
1687 printf_filtered ("Warning: %s `%s' is undefined (in %s)\n",
1688 what,
1689 ecoff_data (cur_bfd)->ssext + es->asym.iss,
1690 fdr_name (cur_fdr));
1691 return;
1692 }
1693
1694 switch (es->asym.st)
1695 {
1696 case stProc:
1697 /* If we have full symbols we do not need more */
1698 if (skip_procedures)
1699 return;
1700 if (mylookup_symbol (ecoff_data (cur_bfd)->ssext + es->asym.iss,
1701 top_stack->cur_block,
1702 VAR_NAMESPACE, LOC_BLOCK))
1703 break;
1704 /* fall through */
1705 case stGlobal:
1706 case stLabel:
1707 /* Note that the case of a symbol with indexNil must be handled
1708 anyways by parse_symbol(). */
1709 parse_symbol (&es->asym, ax, (struct sym_ext *) NULL, bigend);
1710 /* Note that parse_symbol changed es->asym. */
1711 break;
1712 default:
1713 break;
1714 }
1715 }
1716
1717 /* Parse the line number info for file descriptor FH into
1718 GDB's linetable LT. MIPS' encoding requires a little bit
1719 of magic to get things out. Note also that MIPS' line
1720 numbers can go back and forth, apparently we can live
1721 with that and do not need to reorder our linetables */
1722
1723 static void
1724 parse_lines (fh, pr, lt)
1725 FDR *fh;
1726 PDR *pr;
1727 struct linetable *lt;
1728 {
1729 unsigned char *base;
1730 int j, k;
1731 int delta, count, lineno = 0;
1732 unsigned long first_off = pr->adr;
1733
1734 if (fh->cbLineOffset == 0)
1735 return;
1736
1737 base = ecoff_data (cur_bfd)->line + fh->cbLineOffset;
1738
1739 /* Scan by procedure descriptors */
1740 k = 0;
1741 for (j = 0; j < fh->cpd; j++, pr++)
1742 {
1743 int l, halt;
1744 unsigned long adr;
1745
1746 /* No code for this one */
1747 if (pr->iline == ilineNil ||
1748 pr->lnLow == -1 || pr->lnHigh == -1)
1749 continue;
1750
1751 /* Aurgh! To know where to stop expanding we must look-ahead. */
1752 for (l = 1; l < (fh->cpd - j); l++)
1753 if (pr[l].iline != -1)
1754 break;
1755 if (l == (fh->cpd - j))
1756 halt = fh->cline;
1757 else
1758 halt = pr[l].iline;
1759
1760 /* When procedures are moved around the linenumbers are
1761 attributed to the next procedure up. */
1762 if (pr->iline >= halt)
1763 continue;
1764
1765 base = ecoff_data (cur_bfd)->line + fh->cbLineOffset + pr->cbLineOffset;
1766 adr = fh->adr + pr->adr - first_off;
1767 l = adr >> 2; /* in words */
1768 halt += (adr >> 2) - pr->iline;
1769 for (lineno = pr->lnLow; l < halt;)
1770 {
1771 count = *base & 0x0f;
1772 delta = *base++ >> 4;
1773 if (delta >= 8)
1774 delta -= 16;
1775 if (delta == -8)
1776 {
1777 delta = (base[0] << 8) | base[1];
1778 if (delta >= 0x8000)
1779 delta -= 0x10000;
1780 base += 2;
1781 }
1782 lineno += delta; /* first delta is 0 */
1783 k = add_line (lt, lineno, l, k);
1784 l += count + 1;
1785 }
1786 }
1787 }
1788 \f
1789 /* Master parsing procedure for first-pass reading of file symbols
1790 into a partial_symtab. */
1791
1792 static void
1793 parse_partial_symbols (objfile, section_offsets)
1794 struct objfile *objfile;
1795 struct section_offsets *section_offsets;
1796 {
1797 int f_idx, s_idx;
1798 HDRR *hdr = &ecoff_data (cur_bfd)->symbolic_header;
1799 /* Running pointers */
1800 FDR *fh;
1801 struct ext_ext *ext_out;
1802 struct ext_ext *ext_out_end;
1803 EXTR *ext_block;
1804 register EXTR *ext_in;
1805 EXTR *ext_in_end;
1806 SYMR sh;
1807 struct partial_symtab *pst;
1808
1809 int past_first_source_file = 0;
1810
1811 /* List of current psymtab's include files */
1812 char **psymtab_include_list;
1813 int includes_allocated;
1814 int includes_used;
1815 EXTR *extern_tab;
1816 struct pst_map *fdr_to_pst;
1817 /* Index within current psymtab dependency list */
1818 struct partial_symtab **dependency_list;
1819 int dependencies_used, dependencies_allocated;
1820 struct cleanup *old_chain;
1821 char *name;
1822
1823 extern_tab = (EXTR *) obstack_alloc (&objfile->psymbol_obstack,
1824 sizeof (EXTR) * hdr->iextMax);
1825
1826 includes_allocated = 30;
1827 includes_used = 0;
1828 psymtab_include_list = (char **) alloca (includes_allocated *
1829 sizeof (char *));
1830 next_symbol_text_func = mips_next_symbol_text;
1831
1832 dependencies_allocated = 30;
1833 dependencies_used = 0;
1834 dependency_list =
1835 (struct partial_symtab **) alloca (dependencies_allocated *
1836 sizeof (struct partial_symtab *));
1837
1838 last_source_file = NULL;
1839
1840 /*
1841 * Big plan:
1842 *
1843 * Only parse the Local and External symbols, and the Relative FDR.
1844 * Fixup enough of the loader symtab to be able to use it.
1845 * Allocate space only for the file's portions we need to
1846 * look at. (XXX)
1847 */
1848
1849 max_gdbinfo = 0;
1850 max_glevel = MIN_GLEVEL;
1851
1852 /* Allocate the map FDR -> PST.
1853 Minor hack: -O3 images might claim some global data belongs
1854 to FDR -1. We`ll go along with that */
1855 fdr_to_pst = (struct pst_map *) xzalloc ((hdr->ifdMax + 1) * sizeof *fdr_to_pst);
1856 old_chain = make_cleanup (free, fdr_to_pst);
1857 fdr_to_pst++;
1858 {
1859 struct partial_symtab *pst = new_psymtab ("", objfile);
1860 fdr_to_pst[-1].pst = pst;
1861 FDR_IDX (pst) = -1;
1862 }
1863
1864 /* Pass 0 over external syms: swap them in. */
1865 ext_block = (EXTR *) xmalloc (hdr->iextMax * sizeof (EXTR));
1866 make_cleanup (free, ext_block);
1867
1868 ext_out = ecoff_data (cur_bfd)->external_ext;
1869 ext_out_end = ext_out + hdr->iextMax;
1870 ext_in = ext_block;
1871 for (; ext_out < ext_out_end; ext_out++, ext_in++)
1872 ecoff_swap_ext_in (cur_bfd, ext_out, ext_in);
1873
1874 /* Pass 1 over external syms: Presize and partition the list */
1875 ext_in = ext_block;
1876 ext_in_end = ext_in + hdr->iextMax;
1877 for (; ext_in < ext_in_end; ext_in++)
1878 fdr_to_pst[ext_in->ifd].n_globals++;
1879
1880 /* Pass 1.5 over files: partition out global symbol space */
1881 s_idx = 0;
1882 for (f_idx = -1; f_idx < hdr->ifdMax; f_idx++)
1883 {
1884 fdr_to_pst[f_idx].globals_offset = s_idx;
1885 s_idx += fdr_to_pst[f_idx].n_globals;
1886 fdr_to_pst[f_idx].n_globals = 0;
1887 }
1888
1889 /* Pass 2 over external syms: fill in external symbols */
1890 ext_in = ext_block;
1891 ext_in_end = ext_in + hdr->iextMax;
1892 for (; ext_in < ext_in_end; ext_in++)
1893 {
1894 enum minimal_symbol_type ms_type = mst_text;
1895
1896 extern_tab[fdr_to_pst[ext_in->ifd].globals_offset
1897 + fdr_to_pst[ext_in->ifd].n_globals++] = *ext_in;
1898
1899 if (ext_in->asym.sc == scUndefined || ext_in->asym.sc == scNil)
1900 continue;
1901
1902 name = ecoff_data (cur_bfd)->ssext + ext_in->asym.iss;
1903 switch (ext_in->asym.st)
1904 {
1905 case stProc:
1906 break;
1907 case stGlobal:
1908 ms_type = mst_data;
1909 break;
1910 case stLabel:
1911 break;
1912 default:
1913 ms_type = mst_unknown;
1914 complain (&unknown_ext_complaint, name);
1915 }
1916 prim_record_minimal_symbol (name, ext_in->asym.value, ms_type);
1917 }
1918
1919 /* Pass 3 over files, over local syms: fill in static symbols */
1920 for (f_idx = 0; f_idx < hdr->ifdMax; f_idx++)
1921 {
1922 struct partial_symtab *save_pst;
1923 EXTR *ext_ptr;
1924
1925 cur_fdr = fh = ecoff_data (cur_bfd)->fdr + f_idx;
1926
1927 if (fh->csym == 0)
1928 {
1929 fdr_to_pst[f_idx].pst = NULL;
1930 continue;
1931 }
1932 pst = start_psymtab_common (objfile, section_offsets,
1933 fdr_name (fh),
1934 fh->cpd ? fh->adr : 0,
1935 objfile->global_psymbols.next,
1936 objfile->static_psymbols.next);
1937 pst->read_symtab_private = ((char *)
1938 obstack_alloc (&objfile->psymbol_obstack,
1939 sizeof (struct symloc)));
1940 memset ((PTR) pst->read_symtab_private, 0, sizeof (struct symloc));
1941
1942 save_pst = pst;
1943 /* Make everything point to everything. */
1944 FDR_IDX (pst) = f_idx;
1945 fdr_to_pst[f_idx].pst = pst;
1946
1947 /* FIXME: This tampers with data from BFD. */
1948 fh->ioptBase = (int) pst;
1949
1950 CUR_BFD (pst) = cur_bfd;
1951
1952 /* The way to turn this into a symtab is to call... */
1953 pst->read_symtab = mipscoff_psymtab_to_symtab;
1954
1955 pst->texthigh = pst->textlow;
1956
1957 /* For stabs-in-ecoff files, the second symbol must be @stab.
1958 This symbol is emitted by mips-tfile to signal that the
1959 current object file uses encapsulated stabs instead of mips
1960 ecoff for local symbols. (It is the second symbol because
1961 the first symbol is the stFile used to signal the start of a
1962 file). */
1963 processing_gcc_compilation = 0;
1964 if (fh->csym >= 2)
1965 {
1966 ecoff_swap_sym_in (cur_bfd,
1967 (ecoff_data (cur_bfd)->external_sym
1968 + fh->isymBase
1969 + 1),
1970 &sh);
1971 if (STREQ (ecoff_data (cur_bfd)->ss + fh->issBase + sh.iss,
1972 stabs_symbol))
1973 processing_gcc_compilation = 2;
1974 }
1975
1976 if (processing_gcc_compilation != 0)
1977 {
1978 for (cur_sdx = 2; cur_sdx < fh->csym; cur_sdx++)
1979 {
1980 int type_code;
1981 char *namestring;
1982
1983 ecoff_swap_sym_in (cur_bfd,
1984 (ecoff_data (cur_bfd)->external_sym
1985 + fh->isymBase
1986 + cur_sdx),
1987 &sh);
1988 type_code = MIPS_UNMARK_STAB (sh.index);
1989 if (!MIPS_IS_STAB (&sh))
1990 {
1991 if (sh.st == stProc || sh.st == stStaticProc)
1992 {
1993 long procaddr = sh.value;
1994 long isym;
1995
1996
1997 isym = AUX_GET_ISYM (fh->fBigendian,
1998 (ecoff_data (cur_bfd)->external_aux
1999 + fh->iauxBase
2000 + sh.index));
2001 ecoff_swap_sym_in (cur_bfd,
2002 (ecoff_data (cur_bfd)->external_sym
2003 + fh->isymBase
2004 + isym
2005 - 1),
2006 &sh);
2007 if (sh.st == stEnd)
2008 {
2009 long high = procaddr + sh.value;
2010 if (high > pst->texthigh)
2011 pst->texthigh = high;
2012 }
2013 }
2014 continue;
2015 }
2016 #define SET_NAMESTRING() \
2017 namestring = ecoff_data (cur_bfd)->ss + fh->issBase + sh.iss
2018 #define CUR_SYMBOL_TYPE type_code
2019 #define CUR_SYMBOL_VALUE sh.value
2020 #define START_PSYMTAB(ofile,secoff,fname,low,symoff,global_syms,static_syms)\
2021 pst = save_pst
2022 #define END_PSYMTAB(pst,ilist,ninc,c_off,c_text,dep_list,n_deps) (void)0
2023 #define HANDLE_RBRAC(val) \
2024 if ((val) > save_pst->texthigh) save_pst->texthigh = (val);
2025 #include "partial-stab.h"
2026 }
2027 }
2028 else
2029 {
2030 for (cur_sdx = 0; cur_sdx < fh->csym;)
2031 {
2032 char *name;
2033 enum address_class class;
2034
2035 ecoff_swap_sym_in (cur_bfd,
2036 (ecoff_data (cur_bfd)->external_sym
2037 + fh->isymBase
2038 + cur_sdx),
2039 &sh);
2040
2041 if (MIPS_IS_STAB (&sh))
2042 {
2043 cur_sdx++;
2044 continue;
2045 }
2046
2047 if (sh.sc == scUndefined || sh.sc == scNil ||
2048 sh.index == 0xfffff)
2049 {
2050 /* FIXME, premature? */
2051 cur_sdx++;
2052 continue;
2053 }
2054
2055 name = ecoff_data (cur_bfd)->ss + fh->issBase + sh.iss;
2056
2057 switch (sh.st)
2058 {
2059 long high;
2060 long procaddr;
2061 int new_sdx;
2062
2063 case stProc: /* Asm labels apparently */
2064 case stStaticProc: /* Function */
2065 ADD_PSYMBOL_TO_LIST (name, strlen (name),
2066 VAR_NAMESPACE, LOC_BLOCK,
2067 objfile->static_psymbols, sh.value,
2068 psymtab_language, objfile);
2069 /* Skip over procedure to next one. */
2070 if (sh.index >= hdr->iauxMax)
2071 {
2072 /* Should not happen, but does when cross-compiling
2073 with the MIPS compiler. FIXME -- pull later. */
2074 complain (&index_complaint, name);
2075 new_sdx = cur_sdx + 1; /* Don't skip at all */
2076 }
2077 else
2078 new_sdx = AUX_GET_ISYM (fh->fBigendian,
2079 (ecoff_data (cur_bfd)->external_aux
2080 + fh->iauxBase
2081 + sh.index));
2082 procaddr = sh.value;
2083
2084 if (new_sdx <= cur_sdx)
2085 {
2086 /* This should not happen either... FIXME. */
2087 complain (&aux_index_complaint, name);
2088 new_sdx = cur_sdx + 1; /* Don't skip backward */
2089 }
2090
2091 cur_sdx = new_sdx;
2092 ecoff_swap_sym_in (cur_bfd,
2093 (ecoff_data (cur_bfd)->external_sym
2094 + fh->isymBase
2095 + cur_sdx
2096 - 1),
2097 &sh);
2098 if (sh.st != stEnd)
2099 continue;
2100 high = procaddr + sh.value;
2101 if (high > pst->texthigh)
2102 pst->texthigh = high;
2103 continue;
2104
2105 case stStatic: /* Variable */
2106 class = LOC_STATIC;
2107 break;
2108
2109 case stTypedef:/* Typedef */
2110 class = LOC_TYPEDEF;
2111 break;
2112
2113 case stConstant: /* Constant decl */
2114 class = LOC_CONST;
2115 break;
2116
2117 case stUnion:
2118 case stStruct:
2119 case stEnum:
2120 case stBlock: /* { }, str, un, enum*/
2121 if (sh.sc == scInfo || sh.sc == scCommon)
2122 {
2123 ADD_PSYMBOL_TO_LIST (name, strlen (name),
2124 STRUCT_NAMESPACE, LOC_TYPEDEF,
2125 objfile->static_psymbols,
2126 sh.value,
2127 psymtab_language, objfile);
2128 }
2129 /* Skip over the block */
2130 new_sdx = sh.index;
2131 if (new_sdx <= cur_sdx)
2132 {
2133 /* This happens with the Ultrix kernel. */
2134 complain (&block_index_complaint, name);
2135 new_sdx = cur_sdx + 1; /* Don't skip backward */
2136 }
2137 cur_sdx = new_sdx;
2138 continue;
2139
2140 case stFile: /* File headers */
2141 case stLabel: /* Labels */
2142 case stEnd: /* Ends of files */
2143 goto skip;
2144
2145 case stLocal: /* Local variables */
2146 /* Normally these are skipped because we skip over
2147 all blocks we see. However, these can occur
2148 as visible symbols in a .h file that contains code. */
2149 goto skip;
2150
2151 default:
2152 /* Both complaints are valid: one gives symbol name,
2153 the other the offending symbol type. */
2154 complain (&unknown_sym_complaint, name);
2155 complain (&unknown_st_complaint, sh.st);
2156 cur_sdx++;
2157 continue;
2158 }
2159 /* Use this gdb symbol */
2160 ADD_PSYMBOL_TO_LIST (name, strlen (name),
2161 VAR_NAMESPACE, class,
2162 objfile->static_psymbols, sh.value,
2163 psymtab_language, objfile);
2164 skip:
2165 cur_sdx++; /* Go to next file symbol */
2166 }
2167
2168 /* Now do enter the external symbols. */
2169 ext_ptr = &extern_tab[fdr_to_pst[f_idx].globals_offset];
2170 cur_sdx = fdr_to_pst[f_idx].n_globals;
2171 PST_PRIVATE (save_pst)->extern_count = cur_sdx;
2172 PST_PRIVATE (save_pst)->extern_tab = ext_ptr;
2173 for (; --cur_sdx >= 0; ext_ptr++)
2174 {
2175 register struct partial_symbol *psym;
2176 enum address_class class;
2177 SYMR *psh;
2178 char *name;
2179
2180 if (ext_ptr->ifd != f_idx)
2181 abort ();
2182 psh = &ext_ptr->asym;
2183 switch (psh->st)
2184 {
2185 case stProc:
2186 class = LOC_BLOCK;
2187 break;
2188 case stLabel:
2189 class = LOC_LABEL;
2190 break;
2191 default:
2192 complain (&unknown_ext_complaint,
2193 ecoff_data (cur_bfd)->ssext + psh->iss);
2194 /* Fall through, pretend it's global. */
2195 case stGlobal:
2196 class = LOC_STATIC;
2197 break;
2198 }
2199 name = ecoff_data (cur_bfd)->ssext + psh->iss;
2200 ADD_PSYMBOL_ADDR_TO_LIST (name, strlen (name),
2201 VAR_NAMESPACE, class,
2202 objfile->global_psymbols, (CORE_ADDR) psh->value,
2203 psymtab_language, objfile);
2204 }
2205 }
2206
2207 end_psymtab (save_pst, psymtab_include_list, includes_used,
2208 -1, save_pst->texthigh,
2209 dependency_list, dependencies_used);
2210 if (objfile->ei.entry_point >= save_pst->textlow &&
2211 objfile->ei.entry_point < save_pst->texthigh)
2212 {
2213 objfile->ei.entry_file_lowpc = save_pst->textlow;
2214 objfile->ei.entry_file_highpc = save_pst->texthigh;
2215 }
2216 }
2217
2218 /* Now scan the FDRs for dependencies */
2219 for (f_idx = 0; f_idx < hdr->ifdMax; f_idx++)
2220 {
2221 int s_id0 = 0;
2222 fh = f_idx + ecoff_data (cur_bfd)->fdr;
2223 pst = fdr_to_pst[f_idx].pst;
2224
2225 /* This should catch stabs-in-ecoff. */
2226 if (fh->crfd <= 1)
2227 continue;
2228
2229 if (fh->cpd == 0)
2230 { /* If there are no functions defined here ... */
2231 /* ...then presumably a .h file: drop reverse depends .h->.c */
2232 for (; s_id0 < fh->crfd; s_id0++)
2233 {
2234 RFDT rh;
2235
2236 ecoff_swap_rfd_in (cur_bfd,
2237 (ecoff_data (cur_bfd)->external_rfd
2238 + fh->rfdBase
2239 + s_id0),
2240 &rh);
2241 if (rh == f_idx)
2242 {
2243 s_id0++; /* Skip self-dependency */
2244 break;
2245 }
2246 }
2247 }
2248 pst->number_of_dependencies = fh->crfd - s_id0;
2249 pst->dependencies =
2250 ((struct partial_symtab **)
2251 obstack_alloc (&objfile->psymbol_obstack,
2252 (pst->number_of_dependencies
2253 * sizeof (struct partial_symtab *))));
2254 for (s_idx = s_id0; s_idx < fh->crfd; s_idx++)
2255 {
2256 RFDT rh;
2257
2258 ecoff_swap_rfd_in (cur_bfd,
2259 (ecoff_data (cur_bfd)->external_rfd
2260 + fh->rfdBase
2261 + s_idx),
2262 &rh);
2263 if (rh < 0 || rh >= hdr->ifdMax)
2264 complain (&bad_file_number_complaint, rh);
2265 else
2266 pst->dependencies[s_idx - s_id0] = fdr_to_pst[rh].pst;
2267 }
2268 }
2269 do_cleanups (old_chain);
2270 }
2271
2272
2273 #if 0
2274 /* Do the initial analisys of the F_IDX-th file descriptor.
2275 Allocates a partial symtab for it, and builds the list
2276 of dependent files by recursion. LEV says at which level
2277 of recursion we are called (to pretty up debug traces) */
2278
2279 static struct partial_symtab *
2280 parse_fdr (f_idx, lev, objfile)
2281 int f_idx;
2282 int lev;
2283 struct objfile *objfile;
2284 {
2285 register FDR *fh;
2286 register struct partial_symtab *pst;
2287 int s_idx, s_id0;
2288
2289 fh = ecoff_data (cur_bfd)->fdr + f_idx;
2290
2291 /* Use this to indicate into which symtab this file was parsed */
2292 if (fh->ioptBase)
2293 return (struct partial_symtab *) fh->ioptBase;
2294
2295 /* Debuggability level */
2296 if (compare_glevel (max_glevel, fh->glevel) < 0)
2297 max_glevel = fh->glevel;
2298
2299 /* Make a new partial_symtab */
2300 pst = new_psymtab (fdr_name (fh), objfile);
2301 if (fh->cpd == 0)
2302 {
2303 pst->textlow = 0;
2304 pst->texthigh = 0;
2305 }
2306 else
2307 {
2308 pst->textlow = fh->adr;
2309 pst->texthigh = fh->cpd; /* To be fixed later */
2310 }
2311
2312 /* Make everything point to everything. */
2313 FDR_IDX (pst) = f_idx;
2314 fdr_to_pst[f_idx].pst = pst;
2315 fh->ioptBase = (int) pst;
2316
2317 /* Analyze its dependencies */
2318 if (fh->crfd <= 1)
2319 return pst;
2320
2321 s_id0 = 0;
2322 if (fh->cpd == 0)
2323 { /* If there are no functions defined here ... */
2324 /* ...then presumably a .h file: drop reverse depends .h->.c */
2325 for (; s_id0 < fh->crfd; s_id0++)
2326 {
2327 RFDT rh;
2328
2329 ecoff_swap_rfd_in (cur_bfd,
2330 (ecoff_data (cur_bfd)->external_rfd
2331 + fh->rfdBase
2332 + s_id0),
2333 &rh);
2334 if (rh == f_idx)
2335 {
2336 s_id0++; /* Skip self-dependency */
2337 break;
2338 }
2339 }
2340 }
2341 pst->number_of_dependencies = fh->crfd - s_id0;
2342 pst->dependencies = ((struct partial_symtab **)
2343 obstack_alloc (&objfile->psymbol_obstack,
2344 (pst->number_of_dependencies
2345 * sizeof (struct partial_symtab *))));
2346 for (s_idx = s_id0; s_idx < fh->crfd; s_idx++)
2347 {
2348 RFDT rh;
2349
2350 ecoff_swap_rfd_in (cur_bfd,
2351 (ecoff_data (cur_bfd)->external_rfd
2352 + fh->rfdBase
2353 + s_idx),
2354 &rh);
2355 pst->dependencies[s_idx - s_id0] = parse_fdr (rh, lev + 1, objfile);
2356 }
2357
2358 return pst;
2359 }
2360
2361 #endif
2362
2363 static char *
2364 mips_next_symbol_text ()
2365 {
2366 SYMR sh;
2367
2368 cur_sdx++;
2369 ecoff_swap_sym_in (cur_bfd,
2370 (ecoff_data (cur_bfd)->external_sym
2371 + cur_fdr->isymBase
2372 + cur_sdx),
2373 &sh);
2374 return ecoff_data (cur_bfd)->ss + cur_fdr->issBase + sh.iss;
2375 }
2376
2377 /* Ancillary function to psymtab_to_symtab(). Does all the work
2378 for turning the partial symtab PST into a symtab, recurring
2379 first on all dependent psymtabs. The argument FILENAME is
2380 only passed so we can see in debug stack traces what file
2381 is being read.
2382
2383 This function has a split personality, based on whether the
2384 symbol table contains ordinary ecoff symbols, or stabs-in-ecoff.
2385 The flow of control and even the memory allocation differs. FIXME. */
2386
2387 static void
2388 psymtab_to_symtab_1 (pst, filename)
2389 struct partial_symtab *pst;
2390 char *filename;
2391 {
2392 int i;
2393 struct symtab *st;
2394 FDR *fh;
2395 struct linetable *lines;
2396
2397 if (pst->readin)
2398 return;
2399 pst->readin = 1;
2400
2401 /* Read in all partial symbtabs on which this one is dependent.
2402 NOTE that we do have circular dependencies, sigh. We solved
2403 that by setting pst->readin before this point. */
2404
2405 for (i = 0; i < pst->number_of_dependencies; i++)
2406 if (!pst->dependencies[i]->readin)
2407 {
2408 /* Inform about additional files to be read in. */
2409 if (info_verbose)
2410 {
2411 fputs_filtered (" ", stdout);
2412 wrap_here ("");
2413 fputs_filtered ("and ", stdout);
2414 wrap_here ("");
2415 printf_filtered ("%s...",
2416 pst->dependencies[i]->filename);
2417 wrap_here (""); /* Flush output */
2418 fflush (stdout);
2419 }
2420 /* We only pass the filename for debug purposes */
2421 psymtab_to_symtab_1 (pst->dependencies[i],
2422 pst->dependencies[i]->filename);
2423 }
2424
2425 /* Do nothing if this is a dummy psymtab. */
2426
2427 if (pst->n_global_syms == 0 && pst->n_static_syms == 0
2428 && pst->textlow == 0 && pst->texthigh == 0)
2429 return;
2430
2431 /* Now read the symbols for this symtab */
2432
2433 cur_bfd = CUR_BFD (pst);
2434 current_objfile = pst->objfile;
2435 cur_fd = FDR_IDX (pst);
2436 fh = (cur_fd == -1) ? (FDR *) NULL : ecoff_data (cur_bfd)->fdr + cur_fd;
2437 cur_fdr = fh;
2438
2439 /* See comment in parse_partial_symbols about the @stabs sentinel. */
2440 processing_gcc_compilation = 0;
2441 if (fh != (FDR *) NULL && fh->csym >= 2)
2442 {
2443 SYMR sh;
2444
2445 ecoff_swap_sym_in (cur_bfd,
2446 (ecoff_data (cur_bfd)->external_sym
2447 + fh->isymBase
2448 + 1),
2449 &sh);
2450 if (STREQ (ecoff_data (cur_bfd)->ss + fh->issBase + sh.iss,
2451 stabs_symbol))
2452 {
2453 /* We indicate that this is a GCC compilation so that certain
2454 features will be enabled in stabsread/dbxread. */
2455 processing_gcc_compilation = 2;
2456 }
2457 }
2458
2459 if (processing_gcc_compilation != 0)
2460 {
2461 struct pdr_ext *pdr_ptr;
2462 struct pdr_ext *pdr_end;
2463 int first_pdr;
2464 unsigned long first_off;
2465
2466 /* This symbol table contains stabs-in-ecoff entries. */
2467
2468 /* Parse local symbols first */
2469
2470 if (fh->csym <= 2) /* FIXME, this blows psymtab->symtab ptr */
2471 {
2472 current_objfile = NULL;
2473 return;
2474 }
2475 for (cur_sdx = 2; cur_sdx < fh->csym; cur_sdx++)
2476 {
2477 SYMR sh;
2478 char *name;
2479 CORE_ADDR valu;
2480
2481 ecoff_swap_sym_in (cur_bfd,
2482 (ecoff_data (cur_bfd)->external_sym
2483 + fh->isymBase
2484 + cur_sdx),
2485 &sh);
2486 name = ecoff_data (cur_bfd)->ss + fh->issBase + sh.iss;
2487 valu = sh.value;
2488 if (MIPS_IS_STAB (&sh))
2489 {
2490 int type_code = MIPS_UNMARK_STAB (sh.index);
2491 process_one_symbol (type_code, 0, valu, name,
2492 pst->section_offsets, pst->objfile);
2493 if (type_code == N_FUN)
2494 {
2495 /* Make up special symbol to contain
2496 procedure specific info */
2497 struct mips_extra_func_info *e =
2498 ((struct mips_extra_func_info *)
2499 obstack_alloc (&current_objfile->symbol_obstack,
2500 sizeof (struct mips_extra_func_info)));
2501 struct symbol *s = new_symbol (MIPS_EFI_SYMBOL_NAME);
2502 SYMBOL_NAMESPACE (s) = LABEL_NAMESPACE;
2503 SYMBOL_CLASS (s) = LOC_CONST;
2504 SYMBOL_TYPE (s) = builtin_type_void;
2505 SYMBOL_VALUE (s) = (int) e;
2506 add_symbol_to_list (s, &local_symbols);
2507 }
2508 }
2509 else if (sh.st == stLabel && sh.index != indexNil)
2510 {
2511 /* Handle encoded stab line number. */
2512 record_line (current_subfile, sh.index, valu);
2513 }
2514 else if (sh.st == stProc || sh.st == stStaticProc || sh.st == stEnd)
2515 /* These are generated by gcc-2.x, do not complain */
2516 ;
2517 else
2518 complain (&stab_unknown_complaint, name);
2519 }
2520 st = end_symtab (pst->texthigh, 0, 0, pst->objfile, SECT_OFF_TEXT);
2521 end_stabs ();
2522
2523 /* Sort the symbol table now, we are done adding symbols to it.
2524 We must do this before parse_procedure calls lookup_symbol. */
2525 sort_symtab_syms (st);
2526
2527 /* This may not be necessary for stabs symtabs. FIXME. */
2528 sort_blocks (st);
2529
2530 /* Fill in procedure info next. */
2531 first_pdr = 1;
2532 pdr_ptr = ecoff_data (cur_bfd)->external_pdr + fh->ipdFirst;
2533 pdr_end = pdr_ptr + fh->cpd;
2534 for (; pdr_ptr < pdr_end; pdr_ptr++)
2535 {
2536 PDR pr;
2537
2538 ecoff_swap_pdr_in (cur_bfd, pdr_ptr, &pr);
2539 if (first_pdr)
2540 {
2541 first_off = pr.adr;
2542 first_pdr = 0;
2543 }
2544 parse_procedure (&pr, 1, first_off);
2545 }
2546 }
2547 else
2548 {
2549 /* This symbol table contains ordinary ecoff entries. */
2550
2551 /* FIXME: doesn't use pst->section_offsets. */
2552
2553 int f_max;
2554 int maxlines;
2555 EXTR *ext_ptr;
2556
2557 /* How many symbols will we need */
2558 /* FIXME, this does not count enum values. */
2559 f_max = pst->n_global_syms + pst->n_static_syms;
2560 if (fh == 0)
2561 {
2562 maxlines = 0;
2563 st = new_symtab ("unknown", f_max, 0, pst->objfile);
2564 }
2565 else
2566 {
2567 f_max += fh->csym + fh->cpd;
2568 maxlines = 2 * fh->cline;
2569 st = new_symtab (pst->filename, 2 * f_max, maxlines, pst->objfile);
2570 }
2571
2572 lines = LINETABLE (st);
2573 pending_list = PST_PRIVATE (pst)->pending_list;
2574 if (pending_list == 0)
2575 {
2576 pending_list = ((struct mips_pending **)
2577 xzalloc (ecoff_data (cur_bfd)->symbolic_header.ifdMax
2578 * sizeof (struct mips_pending *)));
2579 PST_PRIVATE (pst)->pending_list = pending_list;
2580 }
2581
2582 /* Get a new lexical context */
2583
2584 push_parse_stack ();
2585 top_stack->cur_st = st;
2586 top_stack->cur_block = BLOCKVECTOR_BLOCK (BLOCKVECTOR (st),
2587 STATIC_BLOCK);
2588 BLOCK_START (top_stack->cur_block) = fh ? fh->adr : 0;
2589 BLOCK_END (top_stack->cur_block) = 0;
2590 top_stack->blocktype = stFile;
2591 top_stack->maxsyms = 2 * f_max;
2592 top_stack->cur_type = 0;
2593 top_stack->procadr = 0;
2594 top_stack->numargs = 0;
2595
2596 if (fh)
2597 {
2598 struct sym_ext *sym_ptr;
2599 struct sym_ext *sym_end;
2600
2601 /* Parse local symbols first */
2602 sym_ptr = ecoff_data (cur_bfd)->external_sym + fh->isymBase;
2603 sym_end = sym_ptr + fh->csym;
2604 while (sym_ptr < sym_end)
2605 {
2606 SYMR sh;
2607 int c;
2608
2609 ecoff_swap_sym_in (cur_bfd, sym_ptr, &sh);
2610 c = parse_symbol (&sh,
2611 (ecoff_data (cur_bfd)->external_aux
2612 + fh->iauxBase),
2613 sym_ptr, fh->fBigendian);
2614 /* FIXME: We must swap the modified symbol back out,
2615 although we would rather not. See parse_symbol. */
2616 ecoff_swap_sym_out (cur_bfd, &sh, sym_ptr);
2617 sym_ptr += c;
2618 }
2619
2620 /* Linenumbers. At the end, check if we can save memory.
2621 parse_lines has to look ahead an arbitrary number of PDR
2622 structures, so we swap them all first. */
2623 if (fh->cpd > 0)
2624 {
2625 PDR *pr_block;
2626 struct cleanup *old_chain;
2627 struct pdr_ext *pdr_ptr;
2628 struct pdr_ext *pdr_end;
2629 PDR *pdr_in;
2630 PDR *pdr_in_end;
2631
2632 pr_block = (PDR *) xmalloc (fh->cpd * sizeof (PDR));
2633
2634 old_chain = make_cleanup (free, pr_block);
2635
2636 pdr_ptr = ecoff_data (cur_bfd)->external_pdr + fh->ipdFirst;
2637 pdr_end = pdr_ptr + fh->cpd;
2638 pdr_in = pr_block;
2639 for (; pdr_ptr < pdr_end; pdr_ptr++, pdr_in++)
2640 ecoff_swap_pdr_in (cur_bfd, pdr_ptr, pdr_in);
2641
2642 parse_lines (fh, pr_block, lines);
2643 if (lines->nitems < fh->cline)
2644 lines = shrink_linetable (lines);
2645
2646 /* Fill in procedure info next. */
2647 pdr_in = pr_block;
2648 pdr_in_end = pdr_in + fh->cpd;
2649 for (; pdr_in < pdr_in_end; pdr_in++)
2650 parse_procedure (pdr_in, 0, pr_block->adr);
2651
2652 do_cleanups (old_chain);
2653 }
2654 }
2655
2656 LINETABLE (st) = lines;
2657
2658 /* .. and our share of externals.
2659 XXX use the global list to speed up things here. how?
2660 FIXME, Maybe quit once we have found the right number of ext's? */
2661 top_stack->cur_st = st;
2662 top_stack->cur_block = BLOCKVECTOR_BLOCK (BLOCKVECTOR (top_stack->cur_st),
2663 GLOBAL_BLOCK);
2664 top_stack->blocktype = stFile;
2665 top_stack->maxsyms = (ecoff_data (cur_bfd)->symbolic_header.isymMax
2666 + ecoff_data (cur_bfd)->symbolic_header.ipdMax
2667 + ecoff_data (cur_bfd)->symbolic_header.iextMax);
2668
2669 ext_ptr = PST_PRIVATE (pst)->extern_tab;
2670 for (i = PST_PRIVATE (pst)->extern_count; --i >= 0; ext_ptr++)
2671 parse_external (ext_ptr, 1, fh->fBigendian);
2672
2673 /* If there are undefined, tell the user */
2674 if (n_undef_symbols)
2675 {
2676 printf_filtered ("File %s contains %d unresolved references:",
2677 st->filename, n_undef_symbols);
2678 printf_filtered ("\n\t%4d variables\n\t%4d procedures\n\t%4d labels\n",
2679 n_undef_vars, n_undef_procs, n_undef_labels);
2680 n_undef_symbols = n_undef_labels = n_undef_vars = n_undef_procs = 0;
2681
2682 }
2683 pop_parse_stack ();
2684
2685 /* Sort the symbol table now, we are done adding symbols to it.*/
2686 sort_symtab_syms (st);
2687
2688 sort_blocks (st);
2689 }
2690
2691 /* Now link the psymtab and the symtab. */
2692 pst->symtab = st;
2693
2694 current_objfile = NULL;
2695 }
2696 \f
2697 /* Ancillary parsing procedures. */
2698
2699 /* Lookup the type at relative index RN. Return it in TPP
2700 if found and in any event come up with its name PNAME.
2701 BIGEND says whether aux symbols are big-endian or not (from fh->fBigendian).
2702 Return value says how many aux symbols we ate. */
2703
2704 static int
2705 cross_ref (ax, tpp, type_code, pname, bigend)
2706 union aux_ext *ax;
2707 struct type **tpp;
2708 enum type_code type_code; /* Use to alloc new type if none is found. */
2709 char **pname;
2710 int bigend;
2711 {
2712 RNDXR rn[1];
2713 unsigned rf;
2714 int result = 1;
2715
2716 ecoff_swap_rndx_in (bigend, &ax->a_rndx, rn);
2717
2718 /* Escape index means 'the next one' */
2719 if (rn->rfd == 0xfff)
2720 {
2721 result++;
2722 rf = AUX_GET_ISYM (bigend, ax + 1);
2723 }
2724 else
2725 {
2726 rf = rn->rfd;
2727 }
2728
2729 if (rf == -1)
2730 {
2731 /* Ooops */
2732 *pname = "<undefined>";
2733 }
2734 else
2735 {
2736 /*
2737 * Find the relative file descriptor and the symbol in it
2738 */
2739 FDR *fh = get_rfd (cur_fd, rf);
2740 struct sym_ext *esh;
2741 SYMR sh;
2742 struct type *t;
2743
2744 /* If we have processed this symbol then we left a forwarding
2745 pointer to the corresponding GDB symbol. If not, we`ll put
2746 it in a list of pending symbols, to be processed later when
2747 the file will be. In any event, we collect the name for the
2748 type here. Which is why we made a first pass at strings. */
2749
2750 esh = ecoff_data (cur_bfd)->external_sym + fh->isymBase + rn->index;
2751 ecoff_swap_sym_in (cur_bfd, esh, &sh);
2752
2753 /* Careful, we might be looking at .o files */
2754 if (sh.iss == 0)
2755 *pname = "<undefined>";
2756 else if (rn->rfd == 0xfff && rn->index == 0)
2757 /* For structs, unions and enums, rn->rfd is 0xfff and the index
2758 is a relative symbol number for the type, but an index of 0
2759 seems to mean that we don't know. This is said to fix a problem
2760 with "info func opendir" on an SGI showing
2761 "struct BSDopendir.c *BSDopendir();". */
2762 *pname = "<unknown>";
2763 else
2764 *pname = ecoff_data (cur_bfd)->ss + fh->issBase + sh.iss;
2765
2766 /* Have we parsed it ? */
2767 if (sh.value != 0 && sh.st == stParsed)
2768 {
2769 t = (struct type *) sh.value;
2770 *tpp = t;
2771 }
2772 else
2773 {
2774 /* Avoid duplicates */
2775 struct mips_pending *p = is_pending_symbol (fh, esh);
2776 if (p)
2777 *tpp = p->t;
2778 else
2779 {
2780 *tpp = init_type (type_code, 0, 0, (char *) NULL,
2781 (struct objfile *) NULL);
2782 add_pending (fh, esh, *tpp);
2783 }
2784 }
2785 }
2786
2787 /* We used one auxent normally, two if we got a "next one" rf. */
2788 return result;
2789 }
2790
2791
2792 /* Quick&dirty lookup procedure, to avoid the MI ones that require
2793 keeping the symtab sorted */
2794
2795 static struct symbol *
2796 mylookup_symbol (name, block, namespace, class)
2797 char *name;
2798 register struct block *block;
2799 enum namespace namespace;
2800 enum address_class class;
2801 {
2802 register int bot, top, inc;
2803 register struct symbol *sym;
2804
2805 bot = 0;
2806 top = BLOCK_NSYMS (block);
2807 inc = name[0];
2808 while (bot < top)
2809 {
2810 sym = BLOCK_SYM (block, bot);
2811 if (SYMBOL_NAME (sym)[0] == inc
2812 && SYMBOL_NAMESPACE (sym) == namespace
2813 && SYMBOL_CLASS (sym) == class
2814 && STREQ (SYMBOL_NAME (sym), name))
2815 return sym;
2816 bot++;
2817 }
2818 block = BLOCK_SUPERBLOCK (block);
2819 if (block)
2820 return mylookup_symbol (name, block, namespace, class);
2821 return 0;
2822 }
2823
2824
2825 /* Add a new symbol S to a block B.
2826 Infrequently, we will need to reallocate the block to make it bigger.
2827 We only detect this case when adding to top_stack->cur_block, since
2828 that's the only time we know how big the block is. FIXME. */
2829
2830 static void
2831 add_symbol (s, b)
2832 struct symbol *s;
2833 struct block *b;
2834 {
2835 int nsyms = BLOCK_NSYMS (b)++;
2836 struct block *origb;
2837 struct parse_stack *stackp;
2838
2839 if (b == top_stack->cur_block &&
2840 nsyms >= top_stack->maxsyms)
2841 {
2842 complain (&block_overflow_complaint, SYMBOL_NAME (s));
2843 /* In this case shrink_block is actually grow_block, since
2844 BLOCK_NSYMS(b) is larger than its current size. */
2845 origb = b;
2846 b = shrink_block (top_stack->cur_block, top_stack->cur_st);
2847
2848 /* Now run through the stack replacing pointers to the
2849 original block. shrink_block has already done this
2850 for the blockvector and BLOCK_FUNCTION. */
2851 for (stackp = top_stack; stackp; stackp = stackp->next)
2852 {
2853 if (stackp->cur_block == origb)
2854 {
2855 stackp->cur_block = b;
2856 stackp->maxsyms = BLOCK_NSYMS (b);
2857 }
2858 }
2859 }
2860 BLOCK_SYM (b, nsyms) = s;
2861 }
2862
2863 /* Add a new block B to a symtab S */
2864
2865 static void
2866 add_block (b, s)
2867 struct block *b;
2868 struct symtab *s;
2869 {
2870 struct blockvector *bv = BLOCKVECTOR (s);
2871
2872 bv = (struct blockvector *) xrealloc ((PTR) bv,
2873 (sizeof (struct blockvector)
2874 + BLOCKVECTOR_NBLOCKS (bv)
2875 * sizeof (bv->block)));
2876 if (bv != BLOCKVECTOR (s))
2877 BLOCKVECTOR (s) = bv;
2878
2879 BLOCKVECTOR_BLOCK (bv, BLOCKVECTOR_NBLOCKS (bv)++) = b;
2880 }
2881
2882 /* Add a new linenumber entry (LINENO,ADR) to a linevector LT.
2883 MIPS' linenumber encoding might need more than one byte
2884 to describe it, LAST is used to detect these continuation lines.
2885
2886 Combining lines with the same line number seems like a bad idea.
2887 E.g: There could be a line number entry with the same line number after the
2888 prologue and GDB should not ignore it (this is a better way to find
2889 a prologue than mips_skip_prologue).
2890 But due to the compressed line table format there are line number entries
2891 for the same line which are needed to bridge the gap to the next
2892 line number entry. These entries have a bogus address info with them
2893 and we are unable to tell them from intended duplicate line number
2894 entries.
2895 This is another reason why -ggdb debugging format is preferable. */
2896
2897 static int
2898 add_line (lt, lineno, adr, last)
2899 struct linetable *lt;
2900 int lineno;
2901 CORE_ADDR adr;
2902 int last;
2903 {
2904 if (last == 0)
2905 last = -2; /* make sure we record first line */
2906
2907 if (last == lineno) /* skip continuation lines */
2908 return lineno;
2909
2910 lt->item[lt->nitems].line = lineno;
2911 lt->item[lt->nitems++].pc = adr << 2;
2912 return lineno;
2913 }
2914 \f
2915 /* Sorting and reordering procedures */
2916
2917 /* Blocks with a smaller low bound should come first */
2918
2919 static int
2920 compare_blocks (arg1, arg2)
2921 const void *arg1, *arg2;
2922 {
2923 register int addr_diff;
2924 struct block **b1 = (struct block **) arg1;
2925 struct block **b2 = (struct block **) arg2;
2926
2927 addr_diff = (BLOCK_START ((*b1))) - (BLOCK_START ((*b2)));
2928 if (addr_diff == 0)
2929 return (BLOCK_END ((*b2))) - (BLOCK_END ((*b1)));
2930 return addr_diff;
2931 }
2932
2933 /* Sort the blocks of a symtab S.
2934 Reorder the blocks in the blockvector by code-address,
2935 as required by some MI search routines */
2936
2937 static void
2938 sort_blocks (s)
2939 struct symtab *s;
2940 {
2941 struct blockvector *bv = BLOCKVECTOR (s);
2942
2943 if (BLOCKVECTOR_NBLOCKS (bv) <= 2)
2944 {
2945 /* Cosmetic */
2946 if (BLOCK_END (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK)) == 0)
2947 BLOCK_START (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK)) = 0;
2948 if (BLOCK_END (BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK)) == 0)
2949 BLOCK_START (BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK)) = 0;
2950 return;
2951 }
2952 /*
2953 * This is very unfortunate: normally all functions are compiled in
2954 * the order they are found, but if the file is compiled -O3 things
2955 * are very different. It would be nice to find a reliable test
2956 * to detect -O3 images in advance.
2957 */
2958 if (BLOCKVECTOR_NBLOCKS (bv) > 3)
2959 qsort (&BLOCKVECTOR_BLOCK (bv, FIRST_LOCAL_BLOCK),
2960 BLOCKVECTOR_NBLOCKS (bv) - FIRST_LOCAL_BLOCK,
2961 sizeof (struct block *),
2962 compare_blocks);
2963
2964 {
2965 register CORE_ADDR high = 0;
2966 register int i, j = BLOCKVECTOR_NBLOCKS (bv);
2967
2968 for (i = FIRST_LOCAL_BLOCK; i < j; i++)
2969 if (high < BLOCK_END (BLOCKVECTOR_BLOCK (bv, i)))
2970 high = BLOCK_END (BLOCKVECTOR_BLOCK (bv, i));
2971 BLOCK_END (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK)) = high;
2972 }
2973
2974 BLOCK_START (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK)) =
2975 BLOCK_START (BLOCKVECTOR_BLOCK (bv, FIRST_LOCAL_BLOCK));
2976
2977 BLOCK_START (BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK)) =
2978 BLOCK_START (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK));
2979 BLOCK_END (BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK)) =
2980 BLOCK_END (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK));
2981 }
2982 \f
2983
2984 /* Constructor/restructor/destructor procedures */
2985
2986 /* Allocate a new symtab for NAME. Needs an estimate of how many symbols
2987 MAXSYMS and linenumbers MAXLINES we'll put in it */
2988
2989 static struct symtab *
2990 new_symtab (name, maxsyms, maxlines, objfile)
2991 char *name;
2992 int maxsyms;
2993 int maxlines;
2994 struct objfile *objfile;
2995 {
2996 struct symtab *s = allocate_symtab (name, objfile);
2997
2998 LINETABLE (s) = new_linetable (maxlines);
2999
3000 /* All symtabs must have at least two blocks */
3001 BLOCKVECTOR (s) = new_bvect (2);
3002 BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), GLOBAL_BLOCK) = new_block (maxsyms);
3003 BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), STATIC_BLOCK) = new_block (maxsyms);
3004 BLOCK_SUPERBLOCK (BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), STATIC_BLOCK)) =
3005 BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), GLOBAL_BLOCK);
3006
3007 s->free_code = free_linetable;
3008
3009 return (s);
3010 }
3011
3012 /* Allocate a new partial_symtab NAME */
3013
3014 static struct partial_symtab *
3015 new_psymtab (name, objfile)
3016 char *name;
3017 struct objfile *objfile;
3018 {
3019 struct partial_symtab *psymtab;
3020
3021 psymtab = allocate_psymtab (name, objfile);
3022
3023 /* Keep a backpointer to the file's symbols */
3024
3025 psymtab->read_symtab_private = ((char *)
3026 obstack_alloc (&objfile->psymbol_obstack,
3027 sizeof (struct symloc)));
3028 memset ((PTR) psymtab->read_symtab_private, 0, sizeof (struct symloc));
3029 CUR_BFD (psymtab) = cur_bfd;
3030
3031 /* The way to turn this into a symtab is to call... */
3032 psymtab->read_symtab = mipscoff_psymtab_to_symtab;
3033 return (psymtab);
3034 }
3035
3036
3037 /* Allocate a linetable array of the given SIZE. Since the struct
3038 already includes one item, we subtract one when calculating the
3039 proper size to allocate. */
3040
3041 static struct linetable *
3042 new_linetable (size)
3043 int size;
3044 {
3045 struct linetable *l;
3046
3047 size = (size - 1) * sizeof (l->item) + sizeof (struct linetable);
3048 l = (struct linetable *) xmalloc (size);
3049 l->nitems = 0;
3050 return l;
3051 }
3052
3053 /* Oops, too big. Shrink it. This was important with the 2.4 linetables,
3054 I am not so sure about the 3.4 ones.
3055
3056 Since the struct linetable already includes one item, we subtract one when
3057 calculating the proper size to allocate. */
3058
3059 static struct linetable *
3060 shrink_linetable (lt)
3061 struct linetable *lt;
3062 {
3063
3064 return (struct linetable *) xrealloc ((PTR) lt,
3065 (sizeof (struct linetable)
3066 + ((lt->nitems - 1)
3067 * sizeof (lt->item))));
3068 }
3069
3070 /* Allocate and zero a new blockvector of NBLOCKS blocks. */
3071
3072 static struct blockvector *
3073 new_bvect (nblocks)
3074 int nblocks;
3075 {
3076 struct blockvector *bv;
3077 int size;
3078
3079 size = sizeof (struct blockvector) + nblocks * sizeof (struct block *);
3080 bv = (struct blockvector *) xzalloc (size);
3081
3082 BLOCKVECTOR_NBLOCKS (bv) = nblocks;
3083
3084 return bv;
3085 }
3086
3087 /* Allocate and zero a new block of MAXSYMS symbols */
3088
3089 static struct block *
3090 new_block (maxsyms)
3091 int maxsyms;
3092 {
3093 int size = sizeof (struct block) + (maxsyms - 1) * sizeof (struct symbol *);
3094
3095 return (struct block *) xzalloc (size);
3096 }
3097
3098 /* Ooops, too big. Shrink block B in symtab S to its minimal size.
3099 Shrink_block can also be used by add_symbol to grow a block. */
3100
3101 static struct block *
3102 shrink_block (b, s)
3103 struct block *b;
3104 struct symtab *s;
3105 {
3106 struct block *new;
3107 struct blockvector *bv = BLOCKVECTOR (s);
3108 int i;
3109
3110 /* Just reallocate it and fix references to the old one */
3111
3112 new = (struct block *) xrealloc ((PTR) b,
3113 (sizeof (struct block)
3114 + ((BLOCK_NSYMS (b) - 1)
3115 * sizeof (struct symbol *))));
3116
3117 /* Should chase pointers to old one. Fortunately, that`s just
3118 the block`s function and inferior blocks */
3119 if (BLOCK_FUNCTION (new) && SYMBOL_BLOCK_VALUE (BLOCK_FUNCTION (new)) == b)
3120 SYMBOL_BLOCK_VALUE (BLOCK_FUNCTION (new)) = new;
3121 for (i = 0; i < BLOCKVECTOR_NBLOCKS (bv); i++)
3122 if (BLOCKVECTOR_BLOCK (bv, i) == b)
3123 BLOCKVECTOR_BLOCK (bv, i) = new;
3124 else if (BLOCK_SUPERBLOCK (BLOCKVECTOR_BLOCK (bv, i)) == b)
3125 BLOCK_SUPERBLOCK (BLOCKVECTOR_BLOCK (bv, i)) = new;
3126 return new;
3127 }
3128
3129 /* Create a new symbol with printname NAME */
3130
3131 static struct symbol *
3132 new_symbol (name)
3133 char *name;
3134 {
3135 struct symbol *s = ((struct symbol *)
3136 obstack_alloc (&current_objfile->symbol_obstack,
3137 sizeof (struct symbol)));
3138
3139 memset ((PTR) s, 0, sizeof (*s));
3140 SYMBOL_NAME (s) = name;
3141 return s;
3142 }
3143
3144 /* Create a new type with printname NAME */
3145
3146 static struct type *
3147 new_type (name)
3148 char *name;
3149 {
3150 struct type *t;
3151
3152 t = alloc_type (current_objfile);
3153 TYPE_NAME (t) = name;
3154 TYPE_CPLUS_SPECIFIC (t) = (struct cplus_struct_type *) &cplus_struct_default;
3155 return t;
3156 }
3157 \f
3158
3159 /* Things used for calling functions in the inferior.
3160 These functions are exported to our companion
3161 mips-tdep.c file and are here because they play
3162 with the symbol-table explicitly. */
3163
3164 /* Sigtramp: make sure we have all the necessary information
3165 about the signal trampoline code. Since the official code
3166 from MIPS does not do so, we make up that information ourselves.
3167 If they fix the library (unlikely) this code will neutralize itself. */
3168
3169 static void
3170 fixup_sigtramp ()
3171 {
3172 struct symbol *s;
3173 struct symtab *st;
3174 struct block *b, *b0;
3175
3176 sigtramp_address = -1;
3177
3178 /* We have to handle the following cases here:
3179 a) The Mips library has a sigtramp label within sigvec.
3180 b) Irix has a _sigtramp which we want to use, but it also has sigvec. */
3181 s = lookup_symbol ("sigvec", 0, VAR_NAMESPACE, 0, NULL);
3182 if (s != 0)
3183 {
3184 b0 = SYMBOL_BLOCK_VALUE (s);
3185 s = lookup_symbol ("sigtramp", b0, VAR_NAMESPACE, 0, NULL);
3186 }
3187 if (s == 0)
3188 {
3189 /* No sigvec or no sigtramp inside sigvec, try _sigtramp. */
3190 s = lookup_symbol ("_sigtramp", 0, VAR_NAMESPACE, 0, NULL);
3191 }
3192
3193 /* But maybe this program uses its own version of sigvec */
3194 if (s == 0)
3195 return;
3196
3197 /* Did we or MIPSco fix the library ? */
3198 if (SYMBOL_CLASS (s) == LOC_BLOCK)
3199 {
3200 sigtramp_address = BLOCK_START (SYMBOL_BLOCK_VALUE (s));
3201 sigtramp_end = BLOCK_END (SYMBOL_BLOCK_VALUE (s));
3202 return;
3203 }
3204
3205 sigtramp_address = SYMBOL_VALUE (s);
3206 sigtramp_end = sigtramp_address + 0x88; /* black magic */
3207
3208 /* But what symtab does it live in ? */
3209 st = find_pc_symtab (SYMBOL_VALUE (s));
3210
3211 /*
3212 * Ok, there goes the fix: turn it into a procedure, with all the
3213 * needed info. Note we make it a nested procedure of sigvec,
3214 * which is the way the (assembly) code is actually written.
3215 */
3216 SYMBOL_NAMESPACE (s) = VAR_NAMESPACE;
3217 SYMBOL_CLASS (s) = LOC_BLOCK;
3218 SYMBOL_TYPE (s) = init_type (TYPE_CODE_FUNC, 4, 0, (char *) NULL,
3219 (struct objfile *) NULL);
3220 TYPE_TARGET_TYPE (SYMBOL_TYPE (s)) = builtin_type_void;
3221
3222 /* Need a block to allocate MIPS_EFI_SYMBOL_NAME in */
3223 b = new_block (1);
3224 SYMBOL_BLOCK_VALUE (s) = b;
3225 BLOCK_START (b) = sigtramp_address;
3226 BLOCK_END (b) = sigtramp_end;
3227 BLOCK_FUNCTION (b) = s;
3228 BLOCK_SUPERBLOCK (b) = BLOCK_SUPERBLOCK (b0);
3229 add_block (b, st);
3230 sort_blocks (st);
3231
3232 /* Make a MIPS_EFI_SYMBOL_NAME entry for it */
3233 {
3234 struct mips_extra_func_info *e =
3235 ((struct mips_extra_func_info *)
3236 xzalloc (sizeof (struct mips_extra_func_info)));
3237
3238 e->numargs = 0; /* the kernel thinks otherwise */
3239 /* align_longword(sigcontext + SIGFRAME) */
3240 e->pdr.frameoffset = 0x150;
3241 e->pdr.framereg = SP_REGNUM;
3242 /* read_next_frame_reg provides the true pc at the time of signal */
3243 e->pdr.pcreg = PC_REGNUM;
3244 e->pdr.regmask = -2;
3245 e->pdr.regoffset = -(41 * sizeof (int));
3246 e->pdr.fregmask = -1;
3247 e->pdr.fregoffset = -(7 * sizeof (int));
3248 e->pdr.isym = (long) s;
3249
3250 current_objfile = st->objfile; /* Keep new_symbol happy */
3251 s = new_symbol (MIPS_EFI_SYMBOL_NAME);
3252 SYMBOL_VALUE (s) = (int) e;
3253 SYMBOL_NAMESPACE (s) = LABEL_NAMESPACE;
3254 SYMBOL_CLASS (s) = LOC_CONST;
3255 SYMBOL_TYPE (s) = builtin_type_void;
3256 current_objfile = NULL;
3257 }
3258
3259 BLOCK_SYM (b, BLOCK_NSYMS (b)++) = s;
3260 }
3261
3262
3263 /* Fake up identical offsets for all sections. */
3264
3265 struct section_offsets *
3266 mipscoff_symfile_offsets (objfile, addr)
3267 struct objfile *objfile;
3268 CORE_ADDR addr;
3269 {
3270 struct section_offsets *section_offsets;
3271 int i;
3272
3273 section_offsets = ((struct section_offsets *)
3274 obstack_alloc (&objfile->psymbol_obstack,
3275 (sizeof (struct section_offsets)
3276 + (sizeof (section_offsets->offsets)
3277 * (SECT_OFF_MAX - 1)))));
3278
3279 for (i = 0; i < SECT_OFF_MAX; i++)
3280 ANOFFSET (section_offsets, i) = addr;
3281
3282 return section_offsets;
3283 }
3284 \f
3285 /* Initialization */
3286
3287 static struct sym_fns ecoff_sym_fns =
3288 {
3289 "ecoff", /* sym_name: name or name prefix of BFD target type */
3290 5, /* sym_namelen: number of significant sym_name chars */
3291 mipscoff_new_init, /* sym_new_init: init anything gbl to entire symtab */
3292 mipscoff_symfile_init, /* sym_init: read initial info, setup for sym_read() */
3293 mipscoff_symfile_read, /* sym_read: read a symbol file into symtab */
3294 mipscoff_symfile_finish, /* sym_finish: finished with file, cleanup */
3295 mipscoff_symfile_offsets, /* sym_offsets: dummy FIXME til implem sym reloc */
3296 NULL /* next: pointer to next struct sym_fns */
3297 };
3298
3299
3300 void
3301 _initialize_mipsread ()
3302 {
3303 add_symtab_fns (&ecoff_sym_fns);
3304
3305 /* Missing basic types */
3306
3307 builtin_type_string =
3308 init_type (TYPE_CODE_STRING,
3309 TARGET_CHAR_BIT / TARGET_CHAR_BIT,
3310 0, "string",
3311 (struct objfile *) NULL);
3312 builtin_type_complex =
3313 init_type (TYPE_CODE_FLT,
3314 TARGET_COMPLEX_BIT / TARGET_CHAR_BIT,
3315 0, "complex",
3316 (struct objfile *) NULL);
3317 builtin_type_double_complex =
3318 init_type (TYPE_CODE_FLT,
3319 TARGET_DOUBLE_COMPLEX_BIT / TARGET_CHAR_BIT,
3320 0, "double complex",
3321 (struct objfile *) NULL);
3322 builtin_type_fixed_dec =
3323 init_type (TYPE_CODE_INT,
3324 TARGET_INT_BIT / TARGET_CHAR_BIT,
3325 0, "fixed decimal",
3326 (struct objfile *) NULL);
3327 builtin_type_float_dec =
3328 init_type (TYPE_CODE_FLT,
3329 TARGET_DOUBLE_BIT / TARGET_CHAR_BIT,
3330 0, "floating decimal",
3331 (struct objfile *) NULL);
3332 }
This page took 0.105472 seconds and 4 git commands to generate.