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