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