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