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