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