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