1 /* Read AIX xcoff symbol tables and convert to internal format, for GDB.
2 Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995,
3 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2007, 2008, 2009,
4 2010, 2011 Free Software Foundation, Inc.
5 Derived from coffread.c, dbxread.c, and a lot of hacking.
6 Contributed by IBM Corporation.
8 This file is part of GDB.
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 3 of the License, or
13 (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with this program. If not, see <http://www.gnu.org/licenses/>. */
26 #include <sys/types.h>
29 #include "gdb_string.h"
31 #include <sys/param.h>
32 #ifdef HAVE_SYS_FILE_H
37 #include "coff/internal.h"
38 #include "libcoff.h" /* FIXME, internal data from BFD */
39 #include "coff/xcoff.h"
41 #include "coff/rs6000.h"
42 #include "xcoffread.h"
46 /* FIXME: ezannoni/2004-02-13 Verify if the include below is really needed. */
50 #include "stabsread.h"
51 #include "expression.h"
52 #include "complaints.h"
55 #include "gdb-stabs.h"
57 /* For interface with stabsread.c. */
58 #include "aout/stab_gnu.h"
61 /* We put a pointer to this structure in the read_symtab_private field
67 /* First symbol number for this file. */
71 /* Number of symbols in the section of the symbol table devoted to
72 this file's symbols (actually, the section bracketed may contain
73 more than just this file's symbols). If numsyms is 0, the only
74 reason for this thing's existence is the dependency list. Nothing
75 else will happen when it is read in. */
79 /* Position of the start of the line number information for this
81 unsigned int lineno_off;
84 /* Remember what we deduced to be the source language of this psymtab. */
86 static enum language psymtab_language = language_unknown;
89 /* Simplified internal version of coff symbol table information. */
94 int c_symnum; /* Symbol number of this entry. */
95 int c_naux; /* 0 if syment only, 1 if syment + auxent. */
97 unsigned char c_sclass;
102 /* Last function's saved coff symbol `cs'. */
104 static struct coff_symbol fcn_cs_saved;
106 static bfd *symfile_bfd;
108 /* Core address of start and end of text of current source file.
109 This is calculated from the first function seen after a C_FILE
113 static CORE_ADDR cur_src_end_addr;
115 /* Core address of the end of the first object file. */
117 static CORE_ADDR first_object_file_end;
119 /* Initial symbol-table-debug-string vector length. */
121 #define INITIAL_STABVECTOR_LENGTH 40
123 /* Nonzero if within a function (so symbols should be local,
124 if nothing says specifically). */
128 /* Size of a COFF symbol. I think it is always 18, so I'm not sure
129 there is any reason not to just use a #define, but might as well
130 ask BFD for the size and store it here, I guess. */
132 static unsigned local_symesz;
134 struct coff_symfile_info
136 file_ptr min_lineno_offset; /* Where in file lowest line#s are. */
137 file_ptr max_lineno_offset; /* 1+last byte of line#s in file. */
139 /* Pointer to the string table. */
142 /* Pointer to debug section. */
145 /* Pointer to the a.out symbol table. */
148 /* Number of symbols in symtbl. */
151 /* Offset in data section to TOC anchor. */
152 CORE_ADDR toc_offset;
155 /* XCOFF names for dwarf sections. There is no compressed sections. */
157 static const struct dwarf2_debug_sections dwarf2_xcoff_names = {
159 { ".dwabrev", NULL },
162 { NULL, NULL }, /* debug_macinfo */
163 { NULL, NULL }, /* debug_macro */
165 { ".dwrnges", NULL },
166 { NULL, NULL }, /* debug_types */
167 { ".dwframe", NULL },
168 { NULL, NULL }, /* eh_frame */
169 { NULL, NULL }, /* gdb_index */
174 bf_notfound_complaint (void)
176 complaint (&symfile_complaints,
177 _("line numbers off, `.bf' symbol not found"));
181 ef_complaint (int arg1)
183 complaint (&symfile_complaints,
184 _("Mismatched .ef symbol ignored starting at symnum %d"), arg1);
188 eb_complaint (int arg1)
190 complaint (&symfile_complaints,
191 _("Mismatched .eb symbol ignored starting at symnum %d"), arg1);
194 static void xcoff_initial_scan (struct objfile *, int);
196 static void scan_xcoff_symtab (struct objfile *);
198 static char *xcoff_next_symbol_text (struct objfile *);
200 static void record_include_begin (struct coff_symbol *);
203 enter_line_range (struct subfile *, unsigned, unsigned,
204 CORE_ADDR, CORE_ADDR, unsigned *);
206 static void init_stringtab (bfd *, file_ptr, struct objfile *);
208 static void xcoff_symfile_init (struct objfile *);
210 static void xcoff_new_init (struct objfile *);
212 static void xcoff_symfile_finish (struct objfile *);
214 static void xcoff_symfile_offsets (struct objfile *,
215 struct section_addr_info *addrs);
217 static char *coff_getfilename (union internal_auxent *, struct objfile *);
219 static void read_symbol (struct internal_syment *, int);
221 static int read_symbol_lineno (int);
223 static CORE_ADDR read_symbol_nvalue (int);
225 static struct symbol *process_xcoff_symbol (struct coff_symbol *,
228 static void read_xcoff_symtab (struct partial_symtab *);
231 static void add_stab_to_list (char *, struct pending_stabs **);
234 static int compare_lte (const void *, const void *);
236 static struct linetable *arrange_linetable (struct linetable *);
238 static void record_include_end (struct coff_symbol *);
240 static void process_linenos (CORE_ADDR, CORE_ADDR);
243 /* Translate from a COFF section number (target_index) to a SECT_OFF_*
245 static int secnum_to_section (int, struct objfile *);
246 static asection *secnum_to_bfd_section (int, struct objfile *);
248 struct find_targ_sec_arg
253 struct objfile *objfile;
256 static void find_targ_sec (bfd *, asection *, void *);
259 find_targ_sec (bfd *abfd, asection *sect, void *obj)
261 struct find_targ_sec_arg *args = (struct find_targ_sec_arg *) obj;
262 struct objfile *objfile = args->objfile;
264 if (sect->target_index == args->targ_index)
266 /* This is the section. Figure out what SECT_OFF_* code it is. */
267 if (bfd_get_section_flags (abfd, sect) & SEC_CODE)
268 *args->resultp = SECT_OFF_TEXT (objfile);
269 else if (bfd_get_section_flags (abfd, sect) & SEC_LOAD)
270 *args->resultp = SECT_OFF_DATA (objfile);
272 *args->resultp = sect->index;
273 *args->bfd_sect = sect;
277 /* Return the section number (SECT_OFF_*) that CS points to. */
279 secnum_to_section (int secnum, struct objfile *objfile)
281 int off = SECT_OFF_TEXT (objfile);
283 asection *sect = NULL;
284 struct find_targ_sec_arg args;
285 args.targ_index = secnum;
287 args.bfd_sect = §
288 args.objfile = objfile;
289 bfd_map_over_sections (objfile->obfd, find_targ_sec, &args);
293 /* Return the BFD section that CS points to. */
295 secnum_to_bfd_section (int secnum, struct objfile *objfile)
297 int off = SECT_OFF_TEXT (objfile);
299 asection *sect = NULL;
300 struct find_targ_sec_arg args;
301 args.targ_index = secnum;
303 args.bfd_sect = §
304 args.objfile = objfile;
305 bfd_map_over_sections (objfile->obfd, find_targ_sec, &args);
309 /* add a given stab string into given stab vector. */
314 add_stab_to_list (char *stabname, struct pending_stabs **stabvector)
316 if (*stabvector == NULL)
318 *stabvector = (struct pending_stabs *)
319 xmalloc (sizeof (struct pending_stabs) +
320 INITIAL_STABVECTOR_LENGTH * sizeof (char *));
321 (*stabvector)->count = 0;
322 (*stabvector)->length = INITIAL_STABVECTOR_LENGTH;
324 else if ((*stabvector)->count >= (*stabvector)->length)
326 (*stabvector)->length += INITIAL_STABVECTOR_LENGTH;
327 *stabvector = (struct pending_stabs *)
328 xrealloc ((char *) *stabvector, sizeof (struct pending_stabs) +
329 (*stabvector)->length * sizeof (char *));
331 (*stabvector)->stab[(*stabvector)->count++] = stabname;
336 /* Linenos are processed on a file-by-file basis.
340 1) xlc (IBM's native c compiler) postpones static function code
341 emission to the end of a compilation unit. This way it can
342 determine if those functions (statics) are needed or not, and
343 can do some garbage collection (I think). This makes line
344 numbers and corresponding addresses unordered, and we end up
345 with a line table like:
362 and that breaks gdb's binary search on line numbers, if the
363 above table is not sorted on line numbers. And that sort
364 should be on function based, since gcc can emit line numbers
367 10 0x100 - for the init/test part of a for stmt.
370 10 0x400 - for the increment part of a for stmt.
372 arrange_linetable() will do this sorting.
374 2) aix symbol table might look like:
376 c_file // beginning of a new file
377 .bi // beginning of include file
378 .ei // end of include file
382 basically, .bi/.ei pairs do not necessarily encapsulate
383 their scope. They need to be recorded, and processed later
384 on when we come the end of the compilation unit.
385 Include table (inclTable) and process_linenos() handle
391 /* compare line table entry addresses. */
394 compare_lte (const void *lte1p, const void *lte2p)
396 struct linetable_entry *lte1 = (struct linetable_entry *) lte1p;
397 struct linetable_entry *lte2 = (struct linetable_entry *) lte2p;
399 return lte1->pc - lte2->pc;
402 /* Given a line table with function entries are marked, arrange its
403 functions in ascending order and strip off function entry markers
404 and return it in a newly created table. If the old one is good
405 enough, return the old one. */
406 /* FIXME: I think all this stuff can be replaced by just passing
407 sort_linevec = 1 to end_symtab. */
409 static struct linetable *
410 arrange_linetable (struct linetable *oldLineTb)
412 int ii, jj, newline, /* new line count */
413 function_count; /* # of functions */
415 struct linetable_entry *fentry; /* function entry vector */
416 int fentry_size; /* # of function entries */
417 struct linetable *newLineTb; /* new line table */
419 #define NUM_OF_FUNCTIONS 20
421 fentry_size = NUM_OF_FUNCTIONS;
422 fentry = (struct linetable_entry *)
423 xmalloc (fentry_size * sizeof (struct linetable_entry));
425 for (function_count = 0, ii = 0; ii < oldLineTb->nitems; ++ii)
427 if (oldLineTb->item[ii].line == 0)
428 { /* Function entry found. */
429 if (function_count >= fentry_size)
430 { /* Make sure you have room. */
432 fentry = (struct linetable_entry *)
434 fentry_size * sizeof (struct linetable_entry));
436 fentry[function_count].line = ii;
437 fentry[function_count].pc = oldLineTb->item[ii].pc;
442 if (function_count == 0)
447 else if (function_count > 1)
448 qsort (fentry, function_count,
449 sizeof (struct linetable_entry), compare_lte);
451 /* Allocate a new line table. */
452 newLineTb = (struct linetable *)
454 (sizeof (struct linetable) +
455 (oldLineTb->nitems - function_count) * sizeof (struct linetable_entry));
457 /* If line table does not start with a function beginning, copy up until
461 if (oldLineTb->item[0].line != 0)
463 newline < oldLineTb->nitems && oldLineTb->item[newline].line; ++newline)
464 newLineTb->item[newline] = oldLineTb->item[newline];
466 /* Now copy function lines one by one. */
468 for (ii = 0; ii < function_count; ++ii)
470 for (jj = fentry[ii].line + 1;
471 jj < oldLineTb->nitems && oldLineTb->item[jj].line != 0;
473 newLineTb->item[newline] = oldLineTb->item[jj];
476 newLineTb->nitems = oldLineTb->nitems - function_count;
480 /* include file support: C_BINCL/C_EINCL pairs will be kept in the
481 following `IncludeChain'. At the end of each symtab (end_symtab),
482 we will determine if we should create additional symtab's to
483 represent if (the include files. */
486 typedef struct _inclTable
488 char *name; /* include filename */
490 /* Offsets to the line table. end points to the last entry which is
491 part of this include file. */
494 struct subfile *subfile;
495 unsigned funStartLine; /* Start line # of its function. */
499 #define INITIAL_INCLUDE_TABLE_LENGTH 20
500 static InclTable *inclTable; /* global include table */
501 static int inclIndx; /* last entry to table */
502 static int inclLength; /* table length */
503 static int inclDepth; /* nested include depth */
505 static void allocate_include_entry (void);
508 record_include_begin (struct coff_symbol *cs)
512 /* In xcoff, we assume include files cannot be nested (not in .c files
513 of course, but in corresponding .s files.). */
515 /* This can happen with old versions of GCC.
516 GCC 2.3.3-930426 does not exhibit this on a test case which
517 a user said produced the message for him. */
518 complaint (&symfile_complaints, _("Nested C_BINCL symbols"));
522 allocate_include_entry ();
524 inclTable[inclIndx].name = cs->c_name;
525 inclTable[inclIndx].begin = cs->c_value;
529 record_include_end (struct coff_symbol *cs)
535 complaint (&symfile_complaints, _("Mismatched C_BINCL/C_EINCL pair"));
538 allocate_include_entry ();
540 pTbl = &inclTable[inclIndx];
541 pTbl->end = cs->c_value;
548 allocate_include_entry (void)
550 if (inclTable == NULL)
552 inclTable = (InclTable *)
553 xmalloc (sizeof (InclTable) * INITIAL_INCLUDE_TABLE_LENGTH);
555 '\0', sizeof (InclTable) * INITIAL_INCLUDE_TABLE_LENGTH);
556 inclLength = INITIAL_INCLUDE_TABLE_LENGTH;
559 else if (inclIndx >= inclLength)
561 inclLength += INITIAL_INCLUDE_TABLE_LENGTH;
562 inclTable = (InclTable *)
563 xrealloc (inclTable, sizeof (InclTable) * inclLength);
564 memset (inclTable + inclLength - INITIAL_INCLUDE_TABLE_LENGTH,
565 '\0', sizeof (InclTable) * INITIAL_INCLUDE_TABLE_LENGTH);
569 /* Global variable to pass the psymtab down to all the routines involved
570 in psymtab to symtab processing. */
571 static struct partial_symtab *this_symtab_psymtab;
573 /* given the start and end addresses of a compilation unit (or a csect,
574 at times) process its lines and create appropriate line vectors. */
577 process_linenos (CORE_ADDR start, CORE_ADDR end)
580 file_ptr max_offset =
581 ((struct coff_symfile_info *) this_symtab_psymtab->objfile
582 ->deprecated_sym_private)->max_lineno_offset;
584 /* subfile structure for the main compilation unit. */
585 struct subfile main_subfile;
587 /* In the main source file, any time we see a function entry, we
588 reset this variable to function's absolute starting line number.
589 All the following line numbers in the function are relative to
590 this, and we record absolute line numbers in record_line(). */
592 unsigned int main_source_baseline = 0;
597 ((struct symloc *) this_symtab_psymtab->read_symtab_private)->lineno_off;
599 goto return_after_cleanup;
601 memset (&main_subfile, '\0', sizeof (main_subfile));
604 /* All source lines were in the main source file. None in include
607 enter_line_range (&main_subfile, offset, 0, start, end,
608 &main_source_baseline);
612 /* There was source with line numbers in include files. */
615 coff_data (this_symtab_psymtab->objfile->obfd)->local_linesz;
616 main_source_baseline = 0;
618 for (ii = 0; ii < inclIndx; ++ii)
620 struct subfile *tmpSubfile;
622 /* If there is main file source before include file, enter it. */
623 if (offset < inclTable[ii].begin)
626 (&main_subfile, offset, inclTable[ii].begin - linesz,
627 start, 0, &main_source_baseline);
630 if (strcmp (inclTable[ii].name, last_source_file) == 0)
632 /* The entry in the include table refers to the main source
633 file. Add the lines to the main subfile. */
635 main_source_baseline = inclTable[ii].funStartLine;
637 (&main_subfile, inclTable[ii].begin, inclTable[ii].end,
638 start, 0, &main_source_baseline);
639 inclTable[ii].subfile = &main_subfile;
643 /* Have a new subfile for the include file. */
645 tmpSubfile = inclTable[ii].subfile =
646 (struct subfile *) xmalloc (sizeof (struct subfile));
648 memset (tmpSubfile, '\0', sizeof (struct subfile));
649 firstLine = &(inclTable[ii].funStartLine);
651 /* Enter include file's lines now. */
652 enter_line_range (tmpSubfile, inclTable[ii].begin,
653 inclTable[ii].end, start, 0, firstLine);
656 if (offset <= inclTable[ii].end)
657 offset = inclTable[ii].end + linesz;
660 /* All the include files' line have been processed at this point. Now,
661 enter remaining lines of the main file, if any left. */
662 if (offset < max_offset + 1 - linesz)
664 enter_line_range (&main_subfile, offset, 0, start, end,
665 &main_source_baseline);
669 /* Process main file's line numbers. */
670 if (main_subfile.line_vector)
672 struct linetable *lineTb, *lv;
674 lv = main_subfile.line_vector;
676 /* Line numbers are not necessarily ordered. xlc compilation will
677 put static function to the end. */
679 lineTb = arrange_linetable (lv);
682 current_subfile->line_vector = (struct linetable *)
683 xrealloc (lv, (sizeof (struct linetable)
684 + lv->nitems * sizeof (struct linetable_entry)));
689 current_subfile->line_vector = lineTb;
692 current_subfile->line_vector_length =
693 current_subfile->line_vector->nitems;
696 /* Now, process included files' line numbers. */
698 for (ii = 0; ii < inclIndx; ++ii)
700 if (inclTable[ii].subfile != ((struct subfile *) &main_subfile)
701 && (inclTable[ii].subfile)->line_vector) /* Useless if!!!
704 struct linetable *lineTb, *lv;
706 lv = (inclTable[ii].subfile)->line_vector;
708 /* Line numbers are not necessarily ordered. xlc compilation will
709 put static function to the end. */
711 lineTb = arrange_linetable (lv);
715 /* For the same include file, we might want to have more than one
716 subfile. This happens if we have something like:
724 while foo.h including code in it. (stupid but possible)
725 Since start_subfile() looks at the name and uses an
726 existing one if finds, we need to provide a fake name and
730 start_subfile (inclTable[ii].name, (char *) 0);
733 /* Pick a fake name that will produce the same results as this
734 one when passed to deduce_language_from_filename. Kludge on
736 char *fakename = strrchr (inclTable[ii].name, '.');
738 if (fakename == NULL)
740 start_subfile (fakename, (char *) 0);
741 xfree (current_subfile->name);
743 current_subfile->name = xstrdup (inclTable[ii].name);
748 current_subfile->line_vector =
749 (struct linetable *) xrealloc
750 (lv, (sizeof (struct linetable)
751 + lv->nitems * sizeof (struct linetable_entry)));
757 current_subfile->line_vector = lineTb;
760 current_subfile->line_vector_length =
761 current_subfile->line_vector->nitems;
762 start_subfile (pop_subfile (), (char *) 0);
766 return_after_cleanup:
768 /* We don't want to keep alloc/free'ing the global include file table. */
771 /* Start with a fresh subfile structure for the next file. */
772 memset (&main_subfile, '\0', sizeof (struct subfile));
776 aix_process_linenos (void)
778 /* There is no linenos to read if there are only dwarf info. */
779 if (this_symtab_psymtab == NULL)
782 /* Process line numbers and enter them into line vector. */
783 process_linenos (last_source_start_addr, cur_src_end_addr);
787 /* Enter a given range of lines into the line vector.
788 can be called in the following two ways:
789 enter_line_range (subfile, beginoffset, endoffset,
790 startaddr, 0, firstLine) or
791 enter_line_range (subfile, beginoffset, 0,
792 startaddr, endaddr, firstLine)
794 endoffset points to the last line table entry that we should pay
798 enter_line_range (struct subfile *subfile, unsigned beginoffset,
799 unsigned endoffset, /* offsets to line table */
800 CORE_ADDR startaddr, /* offsets to line table */
801 CORE_ADDR endaddr, unsigned *firstLine)
803 struct objfile *objfile = this_symtab_psymtab->objfile;
804 struct gdbarch *gdbarch = get_objfile_arch (objfile);
805 unsigned int curoffset;
808 struct internal_lineno int_lnno;
809 unsigned int limit_offset;
813 if (endoffset == 0 && startaddr == 0 && endaddr == 0)
815 curoffset = beginoffset;
817 ((struct coff_symfile_info *) objfile->deprecated_sym_private)
822 if (endoffset >= limit_offset)
824 complaint (&symfile_complaints,
825 _("Bad line table offset in C_EINCL directive"));
828 limit_offset = endoffset;
833 abfd = objfile->obfd;
834 linesz = coff_data (abfd)->local_linesz;
835 ext_lnno = alloca (linesz);
837 while (curoffset <= limit_offset)
839 bfd_seek (abfd, curoffset, SEEK_SET);
840 bfd_bread (ext_lnno, linesz, abfd);
841 bfd_coff_swap_lineno_in (abfd, ext_lnno, &int_lnno);
843 /* Find the address this line represents. */
844 addr = (int_lnno.l_lnno
845 ? int_lnno.l_addr.l_paddr
846 : read_symbol_nvalue (int_lnno.l_addr.l_symndx));
847 addr += ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
849 if (addr < startaddr || (endaddr && addr >= endaddr))
852 if (int_lnno.l_lnno == 0)
854 *firstLine = read_symbol_lineno (int_lnno.l_addr.l_symndx);
855 record_line (subfile, 0, gdbarch_addr_bits_remove (gdbarch, addr));
859 record_line (subfile, *firstLine + int_lnno.l_lnno,
860 gdbarch_addr_bits_remove (gdbarch, addr));
866 /* Save the vital information for use when closing off the current file.
867 NAME is the file name the symbols came from, START_ADDR is the first
868 text address for the file, and SIZE is the number of bytes of text. */
870 #define complete_symtab(name, start_addr) { \
871 last_source_file = xstrdup (name); \
872 last_source_start_addr = start_addr; \
876 /* Refill the symbol table input buffer
877 and set the variables that control fetching entries from it.
878 Reports an error if no data available.
879 This function can read past the end of the symbol table
880 (into the string table) but this does no harm. */
882 /* Reading symbol table has to be fast! Keep the followings as macros, rather
885 #define RECORD_MINIMAL_SYMBOL(NAME, ADDR, TYPE, SECTION, OBJFILE) \
890 if (namestr[0] == '.') ++namestr; \
891 prim_record_minimal_symbol_and_info (namestr, (ADDR), (TYPE), \
892 (SECTION), (asection *)NULL, \
894 misc_func_recorded = 1; \
898 /* xcoff has static blocks marked in `.bs', `.es' pairs. They cannot be
899 nested. At any given time, a symbol can only be in one static block.
900 This is the base address of current static block, zero if non exists. */
902 static int static_block_base = 0;
904 /* Section number for the current static block. */
906 static int static_block_section = -1;
908 /* true if space for symbol name has been allocated. */
910 static int symname_alloced = 0;
912 /* Next symbol to read. Pointer into raw seething symbol table. */
914 static char *raw_symbol;
916 /* This is the function which stabsread.c calls to get symbol
920 xcoff_next_symbol_text (struct objfile *objfile)
922 struct internal_syment symbol;
925 /* FIXME: is this the same as the passed arg? */
926 if (this_symtab_psymtab)
927 objfile = this_symtab_psymtab->objfile;
929 bfd_coff_swap_sym_in (objfile->obfd, raw_symbol, &symbol);
932 complaint (&symfile_complaints, _("Unexpected symbol continuation"));
934 /* Return something which points to '\0' and hope the symbol reading
935 code does something reasonable. */
938 else if (symbol.n_sclass & 0x80)
940 retval = ((struct coff_symfile_info *)
941 objfile->deprecated_sym_private)->debugsec
943 raw_symbol += coff_data (objfile->obfd)->local_symesz;
948 complaint (&symfile_complaints, _("Unexpected symbol continuation"));
950 /* Return something which points to '\0' and hope the symbol reading
951 code does something reasonable. */
957 /* Read symbols for a given partial symbol table. */
960 read_xcoff_symtab (struct partial_symtab *pst)
962 struct objfile *objfile = pst->objfile;
963 bfd *abfd = objfile->obfd;
964 char *raw_auxptr; /* Pointer to first raw aux entry for sym. */
966 ((struct coff_symfile_info *) objfile->deprecated_sym_private)->strtbl;
968 ((struct coff_symfile_info *) objfile->deprecated_sym_private)->debugsec;
969 const char *debugfmt = bfd_xcoff_is_xcoff64 (abfd) ? "XCOFF64" : "XCOFF";
971 struct internal_syment symbol[1];
972 union internal_auxent main_aux;
973 struct coff_symbol cs[1];
974 CORE_ADDR file_start_addr = 0;
975 CORE_ADDR file_end_addr = 0;
977 int next_file_symnum = -1;
978 unsigned int max_symnum;
979 int just_started = 1;
981 int fcn_start_addr = 0;
983 struct coff_symbol fcn_stab_saved = { 0 };
985 /* fcn_cs_saved is global because process_xcoff_symbol needs it. */
986 union internal_auxent fcn_aux_saved = main_aux;
987 struct context_stack *new;
989 char *filestring = " _start_ "; /* Name of the current file. */
991 char *last_csect_name; /* Last seen csect's name and value. */
992 CORE_ADDR last_csect_val;
995 this_symtab_psymtab = pst;
997 /* Get the appropriate COFF "constants" related to the file we're
999 local_symesz = coff_data (abfd)->local_symesz;
1001 last_source_file = NULL;
1002 last_csect_name = 0;
1006 start_symtab (filestring, (char *) NULL, file_start_addr);
1007 record_debugformat (debugfmt);
1008 symnum = ((struct symloc *) pst->read_symtab_private)->first_symnum;
1010 symnum + ((struct symloc *) pst->read_symtab_private)->numsyms;
1011 first_object_file_end = 0;
1014 ((struct coff_symfile_info *) objfile->deprecated_sym_private)->symtbl
1015 + symnum * local_symesz;
1017 while (symnum < max_symnum)
1019 QUIT; /* make this command interruptable. */
1021 /* READ_ONE_SYMBOL (symbol, cs, symname_alloced); */
1022 /* read one symbol into `cs' structure. After processing the
1023 whole symbol table, only string table will be kept in memory,
1024 symbol table and debug section of xcoff will be freed. Thus
1025 we can mark symbols with names in string table as
1030 /* Swap and align the symbol into a reasonable C structure. */
1031 bfd_coff_swap_sym_in (abfd, raw_symbol, symbol);
1033 cs->c_symnum = symnum;
1034 cs->c_naux = symbol->n_numaux;
1035 if (symbol->n_zeroes)
1037 symname_alloced = 0;
1038 /* We must use the original, unswapped, name here so the name field
1039 pointed to by cs->c_name will persist throughout xcoffread. If
1040 we use the new field, it gets overwritten for each symbol. */
1041 cs->c_name = ((struct external_syment *) raw_symbol)->e.e_name;
1042 /* If it's exactly E_SYMNMLEN characters long it isn't
1044 if (cs->c_name[E_SYMNMLEN - 1] != '\0')
1048 p = obstack_alloc (&objfile->objfile_obstack, E_SYMNMLEN + 1);
1049 strncpy (p, cs->c_name, E_SYMNMLEN);
1050 p[E_SYMNMLEN] = '\0';
1052 symname_alloced = 1;
1055 else if (symbol->n_sclass & 0x80)
1057 cs->c_name = debugsec + symbol->n_offset;
1058 symname_alloced = 0;
1062 /* in string table */
1063 cs->c_name = strtbl + (int) symbol->n_offset;
1064 symname_alloced = 1;
1066 cs->c_value = symbol->n_value;
1067 cs->c_sclass = symbol->n_sclass;
1068 cs->c_secnum = symbol->n_scnum;
1069 cs->c_type = (unsigned) symbol->n_type;
1071 raw_symbol += local_symesz;
1074 /* Save addr of first aux entry. */
1075 raw_auxptr = raw_symbol;
1077 /* Skip all the auxents associated with this symbol. */
1078 for (ii = symbol->n_numaux; ii; --ii)
1080 raw_symbol += coff_data (abfd)->local_auxesz;
1085 /* if symbol name starts with ".$" or "$", ignore it. */
1086 if (cs->c_name[0] == '$'
1087 || (cs->c_name[1] == '$' && cs->c_name[0] == '.'))
1090 if (cs->c_symnum == next_file_symnum && cs->c_sclass != C_FILE)
1092 if (last_source_file)
1094 pst->symtab = end_symtab (cur_src_end_addr, objfile,
1095 SECT_OFF_TEXT (objfile));
1100 start_symtab ("_globals_", (char *) NULL, (CORE_ADDR) 0);
1101 record_debugformat (debugfmt);
1102 cur_src_end_addr = first_object_file_end;
1103 /* Done with all files, everything from here on is globals. */
1106 if ((cs->c_sclass == C_EXT || cs->c_sclass == C_HIDEXT)
1109 /* Dealing with a symbol with a csect entry. */
1111 #define CSECT(PP) ((PP)->x_csect)
1112 #define CSECT_LEN(PP) (CSECT(PP).x_scnlen.l)
1113 #define CSECT_ALIGN(PP) (SMTYP_ALIGN(CSECT(PP).x_smtyp))
1114 #define CSECT_SMTYP(PP) (SMTYP_SMTYP(CSECT(PP).x_smtyp))
1115 #define CSECT_SCLAS(PP) (CSECT(PP).x_smclas)
1117 /* Convert the auxent to something we can access. */
1118 bfd_coff_swap_aux_in (abfd, raw_auxptr, cs->c_type, cs->c_sclass,
1119 0, cs->c_naux, &main_aux);
1121 switch (CSECT_SMTYP (&main_aux))
1125 /* Ignore all external references. */
1129 /* A section description. */
1131 switch (CSECT_SCLAS (&main_aux))
1137 /* A program csect is seen. We have to allocate one
1138 symbol table for each program csect. Normally gdb
1139 prefers one symtab for each source file. In case
1140 of AIX, one source file might include more than one
1141 [PR] csect, and they don't have to be adjacent in
1142 terms of the space they occupy in memory. Thus, one
1143 single source file might get fragmented in the
1144 memory and gdb's file start and end address
1145 approach does not work! GCC (and I think xlc) seem
1146 to put all the code in the unnamed program csect. */
1148 if (last_csect_name)
1150 complete_symtab (filestring, file_start_addr);
1151 cur_src_end_addr = file_end_addr;
1152 end_symtab (file_end_addr, objfile,
1153 SECT_OFF_TEXT (objfile));
1156 /* Give all csects for this source file the same
1158 start_symtab (filestring, NULL, (CORE_ADDR) 0);
1159 record_debugformat (debugfmt);
1162 /* If this is the very first csect seen,
1163 basically `__start'. */
1166 first_object_file_end
1167 = cs->c_value + CSECT_LEN (&main_aux);
1172 cs->c_value + ANOFFSET (objfile->section_offsets,
1173 SECT_OFF_TEXT (objfile));
1174 file_end_addr = file_start_addr + CSECT_LEN (&main_aux);
1176 if (cs->c_name && (cs->c_name[0] == '.'
1177 || cs->c_name[0] == '@'))
1179 last_csect_name = cs->c_name;
1180 last_csect_val = cs->c_value;
1181 last_csect_sec = secnum_to_section (cs->c_secnum,
1187 /* All other symbols are put into the minimal symbol
1200 /* Ignore the symbol. */
1208 switch (CSECT_SCLAS (&main_aux))
1211 /* a function entry point. */
1212 function_entry_point:
1214 fcn_start_addr = cs->c_value;
1216 /* save the function header info, which will be used
1217 when `.bf' is seen. */
1219 fcn_aux_saved = main_aux;
1223 /* shared library function trampoline code entry point. */
1227 /* The symbols often have the same names as debug symbols for
1228 functions, and confuse lookup_symbol. */
1232 /* xlc puts each variable in a separate csect, so we get
1233 an XTY_SD for each variable. But gcc puts several
1234 variables in a csect, so that each variable only gets
1235 an XTY_LD. This will typically be XMC_RW; I suspect
1236 XMC_RO and XMC_BS might be possible too.
1237 These variables are put in the minimal symbol table
1244 /* Common symbols are put into the minimal symbol table only. */
1252 /* If explicitly specified as a function, treat is as one. This check
1253 evaluates to true for @FIX* bigtoc CSECT symbols, so it must occur
1254 after the above CSECT check. */
1255 if (ISFCN (cs->c_type) && cs->c_sclass != C_TPDEF)
1257 bfd_coff_swap_aux_in (abfd, raw_auxptr, cs->c_type, cs->c_sclass,
1258 0, cs->c_naux, &main_aux);
1259 goto function_entry_point;
1262 switch (cs->c_sclass)
1266 /* c_value field contains symnum of next .file entry in table
1267 or symnum of first global after last .file. */
1269 next_file_symnum = cs->c_value;
1271 /* Complete symbol table for last object file containing
1272 debugging information. */
1274 /* Whether or not there was a csect in the previous file, we
1275 have to call `end_stabs' and `start_stabs' to reset
1276 type_vector, line_vector, etc. structures. */
1278 complete_symtab (filestring, file_start_addr);
1279 cur_src_end_addr = file_end_addr;
1280 end_symtab (file_end_addr, objfile, SECT_OFF_TEXT (objfile));
1283 /* XCOFF, according to the AIX 3.2 documentation, puts the
1284 filename in cs->c_name. But xlc 1.3.0.2 has decided to
1285 do things the standard COFF way and put it in the auxent.
1286 We use the auxent if the symbol is ".file" and an auxent
1287 exists, otherwise use the symbol itself. Simple
1289 if (!strcmp (cs->c_name, ".file") && cs->c_naux > 0)
1291 bfd_coff_swap_aux_in (abfd, raw_auxptr, cs->c_type, cs->c_sclass,
1292 0, cs->c_naux, &main_aux);
1293 filestring = coff_getfilename (&main_aux, objfile);
1296 filestring = cs->c_name;
1299 start_symtab (filestring, (char *) NULL, (CORE_ADDR) 0);
1300 record_debugformat (debugfmt);
1301 last_csect_name = 0;
1303 /* reset file start and end addresses. A compilation unit
1304 with no text (only data) should have zero file
1306 file_start_addr = file_end_addr = 0;
1310 fcn_stab_saved = *cs;
1314 if (strcmp (cs->c_name, ".bf") == 0)
1316 CORE_ADDR off = ANOFFSET (objfile->section_offsets,
1317 SECT_OFF_TEXT (objfile));
1319 bfd_coff_swap_aux_in (abfd, raw_auxptr, cs->c_type, cs->c_sclass,
1320 0, cs->c_naux, &main_aux);
1322 within_function = 1;
1324 new = push_context (0, fcn_start_addr + off);
1326 new->name = define_symbol
1327 (fcn_cs_saved.c_value + off,
1328 fcn_stab_saved.c_name, 0, 0, objfile);
1329 if (new->name != NULL)
1330 SYMBOL_SECTION (new->name) = SECT_OFF_TEXT (objfile);
1332 else if (strcmp (cs->c_name, ".ef") == 0)
1334 bfd_coff_swap_aux_in (abfd, raw_auxptr, cs->c_type, cs->c_sclass,
1335 0, cs->c_naux, &main_aux);
1337 /* The value of .ef is the address of epilogue code;
1338 not useful for gdb. */
1339 /* { main_aux.x_sym.x_misc.x_lnsz.x_lnno
1340 contains number of lines to '}' */
1342 if (context_stack_depth <= 0)
1343 { /* We attempted to pop an empty context stack. */
1344 ef_complaint (cs->c_symnum);
1345 within_function = 0;
1348 new = pop_context ();
1349 /* Stack must be empty now. */
1350 if (context_stack_depth > 0 || new == NULL)
1352 ef_complaint (cs->c_symnum);
1353 within_function = 0;
1357 finish_block (new->name, &local_symbols, new->old_blocks,
1359 (fcn_cs_saved.c_value
1360 + fcn_aux_saved.x_sym.x_misc.x_fsize
1361 + ANOFFSET (objfile->section_offsets,
1362 SECT_OFF_TEXT (objfile))),
1364 within_function = 0;
1369 /* Begin static block. */
1371 struct internal_syment symbol;
1373 read_symbol (&symbol, cs->c_value);
1374 static_block_base = symbol.n_value;
1375 static_block_section =
1376 secnum_to_section (symbol.n_scnum, objfile);
1381 /* End of static block. */
1382 static_block_base = 0;
1383 static_block_section = -1;
1394 complaint (&symfile_complaints,
1395 _("Unrecognized storage class %d."),
1410 /* beginning of include file */
1411 /* In xlc output, C_BINCL/C_EINCL pair doesn't show up in sorted
1412 order. Thus, when wee see them, we might not know enough info
1413 to process them. Thus, we'll be saving them into a table
1414 (inclTable) and postpone their processing. */
1416 record_include_begin (cs);
1420 /* End of include file. */
1421 /* See the comment after case C_BINCL. */
1422 record_include_end (cs);
1426 if (strcmp (cs->c_name, ".bb") == 0)
1429 new = push_context (depth,
1431 + ANOFFSET (objfile->section_offsets,
1432 SECT_OFF_TEXT (objfile))));
1434 else if (strcmp (cs->c_name, ".eb") == 0)
1436 if (context_stack_depth <= 0)
1437 { /* We attempted to pop an empty context stack. */
1438 eb_complaint (cs->c_symnum);
1441 new = pop_context ();
1442 if (depth-- != new->depth)
1444 eb_complaint (cs->c_symnum);
1447 if (local_symbols && context_stack_depth > 0)
1449 /* Make a block for the local symbols within. */
1450 finish_block (new->name, &local_symbols, new->old_blocks,
1453 + ANOFFSET (objfile->section_offsets,
1454 SECT_OFF_TEXT (objfile))),
1457 local_symbols = new->locals;
1462 process_xcoff_symbol (cs, objfile);
1467 if (last_source_file)
1471 complete_symtab (filestring, file_start_addr);
1472 cur_src_end_addr = file_end_addr;
1473 s = end_symtab (file_end_addr, objfile, SECT_OFF_TEXT (objfile));
1474 /* When reading symbols for the last C_FILE of the objfile, try
1475 to make sure that we set pst->symtab to the symtab for the
1476 file, not to the _globals_ symtab. I'm not sure whether this
1477 actually works right or when/if it comes up. */
1478 if (pst->symtab == NULL)
1484 #define SYMBOL_DUP(SYMBOL1, SYMBOL2) \
1485 (SYMBOL2) = (struct symbol *) \
1486 obstack_alloc (&objfile->objfile_obstack, sizeof (struct symbol)); \
1487 *(SYMBOL2) = *(SYMBOL1);
1490 #define SYMNAME_ALLOC(NAME, ALLOCED) \
1491 ((ALLOCED) ? (NAME) : obsavestring ((NAME), strlen (NAME), \
1492 &objfile->objfile_obstack))
1495 /* process one xcoff symbol. */
1497 static struct symbol *
1498 process_xcoff_symbol (struct coff_symbol *cs, struct objfile *objfile)
1500 struct symbol onesymbol;
1501 struct symbol *sym = &onesymbol;
1502 struct symbol *sym2 = NULL;
1508 if (cs->c_secnum < 0)
1510 /* The value is a register number, offset within a frame, etc.,
1511 and does not get relocated. */
1517 sec = secnum_to_section (cs->c_secnum, objfile);
1518 off = ANOFFSET (objfile->section_offsets, sec);
1525 memset (sym, '\0', sizeof (struct symbol));
1527 /* default assumptions */
1528 SYMBOL_VALUE_ADDRESS (sym) = cs->c_value + off;
1529 SYMBOL_DOMAIN (sym) = VAR_DOMAIN;
1530 SYMBOL_SECTION (sym) = secnum_to_section (cs->c_secnum, objfile);
1532 if (ISFCN (cs->c_type))
1534 /* At this point, we don't know the type of the function. This
1535 will be patched with the type from its stab entry later on in
1536 patch_block_stabs (), unless the file was compiled without -g. */
1538 SYMBOL_SET_LINKAGE_NAME (sym, SYMNAME_ALLOC (name, symname_alloced));
1539 SYMBOL_TYPE (sym) = objfile_type (objfile)->nodebug_text_symbol;
1541 SYMBOL_CLASS (sym) = LOC_BLOCK;
1542 SYMBOL_DUP (sym, sym2);
1544 if (cs->c_sclass == C_EXT)
1545 add_symbol_to_list (sym2, &global_symbols);
1546 else if (cs->c_sclass == C_HIDEXT || cs->c_sclass == C_STAT)
1547 add_symbol_to_list (sym2, &file_symbols);
1551 /* In case we can't figure out the type, provide default. */
1552 SYMBOL_TYPE (sym) = objfile_type (objfile)->nodebug_data_symbol;
1554 switch (cs->c_sclass)
1557 /* The values of functions and global symbols are now resolved
1558 via the global_sym_chain in stabsread.c. */
1560 if (fcn_cs_saved.c_sclass == C_EXT)
1561 add_stab_to_list (name, &global_stabs);
1563 add_stab_to_list (name, &file_stabs);
1567 add_stab_to_list (name, &global_stabs);
1572 common_block_start (cs->c_name, objfile);
1576 common_block_end (objfile);
1580 complaint (&symfile_complaints, _("Unexpected storage class: %d"),
1593 sym = define_symbol (cs->c_value + off, cs->c_name, 0, 0, objfile);
1596 SYMBOL_SECTION (sym) = sec;
1603 /* For xlc (not GCC), the 'V' symbol descriptor is used for
1604 all statics and we need to distinguish file-scope versus
1605 function-scope using within_function. We do this by
1606 changing the string we pass to define_symbol to use 'S'
1607 where we need to, which is not necessarily super-clean,
1608 but seems workable enough. */
1613 pp = strchr (name, ':');
1618 if (*pp == 'V' && !within_function)
1620 sym = define_symbol ((cs->c_value
1621 + ANOFFSET (objfile->section_offsets,
1622 static_block_section)),
1623 cs->c_name, 0, 0, objfile);
1626 SYMBOL_VALUE_ADDRESS (sym) += static_block_base;
1627 SYMBOL_SECTION (sym) = static_block_section;
1636 /* Extract the file name from the aux entry of a C_FILE symbol.
1637 Result is in static storage and is only good for temporary use. */
1640 coff_getfilename (union internal_auxent *aux_entry, struct objfile *objfile)
1642 static char buffer[BUFSIZ];
1644 if (aux_entry->x_file.x_n.x_zeroes == 0)
1645 strcpy (buffer, ((struct coff_symfile_info *)
1646 objfile->deprecated_sym_private)->strtbl
1647 + aux_entry->x_file.x_n.x_offset);
1650 strncpy (buffer, aux_entry->x_file.x_fname, FILNMLEN);
1651 buffer[FILNMLEN] = '\0';
1656 /* Set *SYMBOL to symbol number symno in symtbl. */
1658 read_symbol (struct internal_syment *symbol, int symno)
1661 = ((struct coff_symfile_info *)
1662 this_symtab_psymtab->objfile->deprecated_sym_private)->symtbl_num_syms;
1663 char *stbl = ((struct coff_symfile_info *)
1664 this_symtab_psymtab->objfile->deprecated_sym_private)->symtbl;
1666 if (symno < 0 || symno >= nsyms)
1668 complaint (&symfile_complaints, _("Invalid symbol offset"));
1669 symbol->n_value = 0;
1670 symbol->n_scnum = -1;
1673 bfd_coff_swap_sym_in (this_symtab_psymtab->objfile->obfd,
1674 stbl + (symno * local_symesz),
1678 /* Get value corresponding to symbol number symno in symtbl. */
1681 read_symbol_nvalue (int symno)
1683 struct internal_syment symbol[1];
1685 read_symbol (symbol, symno);
1686 return symbol->n_value;
1690 /* Find the address of the function corresponding to symno, where
1691 symno is the symbol pointed to by the linetable. */
1694 read_symbol_lineno (int symno)
1696 struct objfile *objfile = this_symtab_psymtab->objfile;
1697 int xcoff64 = bfd_xcoff_is_xcoff64 (objfile->obfd);
1699 struct coff_symfile_info *info =
1700 (struct coff_symfile_info *)objfile->deprecated_sym_private;
1701 int nsyms = info->symtbl_num_syms;
1702 char *stbl = info->symtbl;
1703 char *strtbl = info->strtbl;
1705 struct internal_syment symbol[1];
1706 union internal_auxent main_aux[1];
1710 bf_notfound_complaint ();
1714 /* Note that just searching for a short distance (e.g. 50 symbols)
1715 is not enough, at least in the following case.
1718 [many .stabx entries]
1719 [a few functions, referring to foo]
1723 What happens here is that the assembler moves the .stabx entries
1724 to right before the ".bf" for foo, but the symbol for "foo" is before
1725 all the stabx entries. See PR gdb/2222. */
1727 /* Maintaining a table of .bf entries might be preferable to this search.
1728 If I understand things correctly it would need to be done only for
1729 the duration of a single psymtab to symtab conversion. */
1730 while (symno < nsyms)
1732 bfd_coff_swap_sym_in (symfile_bfd,
1733 stbl + (symno * local_symesz), symbol);
1734 if (symbol->n_sclass == C_FCN)
1736 char *name = xcoff64 ? strtbl + symbol->n_offset : symbol->n_name;
1738 if (strcmp (name, ".bf") == 0)
1741 symno += symbol->n_numaux + 1;
1744 bf_notfound_complaint ();
1748 /* Take aux entry and return its lineno. */
1750 bfd_coff_swap_aux_in (objfile->obfd, stbl + symno * local_symesz,
1751 symbol->n_type, symbol->n_sclass,
1752 0, symbol->n_numaux, main_aux);
1754 return main_aux->x_sym.x_misc.x_lnsz.x_lnno;
1757 /* Support for line number handling. */
1759 /* This function is called for every section; it finds the outer limits
1760 * of the line table (minimum and maximum file offset) so that the
1761 * mainline code can read the whole thing for efficiency.
1764 find_linenos (struct bfd *abfd, struct bfd_section *asect, void *vpinfo)
1766 struct coff_symfile_info *info;
1768 file_ptr offset, maxoff;
1770 count = asect->lineno_count;
1772 if (strcmp (asect->name, ".text") != 0 || count == 0)
1775 size = count * coff_data (abfd)->local_linesz;
1776 info = (struct coff_symfile_info *) vpinfo;
1777 offset = asect->line_filepos;
1778 maxoff = offset + size;
1780 if (offset < info->min_lineno_offset || info->min_lineno_offset == 0)
1781 info->min_lineno_offset = offset;
1783 if (maxoff > info->max_lineno_offset)
1784 info->max_lineno_offset = maxoff;
1787 static void xcoff_psymtab_to_symtab_1 (struct partial_symtab *);
1790 xcoff_psymtab_to_symtab_1 (struct partial_symtab *pst)
1792 struct cleanup *old_chain;
1801 (gdb_stderr, "Psymtab for %s already read in. Shouldn't happen.\n",
1806 /* Read in all partial symtabs on which this one is dependent. */
1807 for (i = 0; i < pst->number_of_dependencies; i++)
1808 if (!pst->dependencies[i]->readin)
1810 /* Inform about additional files that need to be read in. */
1813 fputs_filtered (" ", gdb_stdout);
1815 fputs_filtered ("and ", gdb_stdout);
1817 printf_filtered ("%s...", pst->dependencies[i]->filename);
1818 wrap_here (""); /* Flush output */
1819 gdb_flush (gdb_stdout);
1821 xcoff_psymtab_to_symtab_1 (pst->dependencies[i]);
1824 if (((struct symloc *) pst->read_symtab_private)->numsyms != 0)
1826 /* Init stuff necessary for reading in symbols. */
1829 old_chain = make_cleanup (really_free_pendings, 0);
1831 read_xcoff_symtab (pst);
1833 do_cleanups (old_chain);
1839 static void xcoff_psymtab_to_symtab (struct partial_symtab *);
1841 /* Read in all of the symbols for a given psymtab for real.
1842 Be verbose about it if the user wants that. */
1845 xcoff_psymtab_to_symtab (struct partial_symtab *pst)
1855 (gdb_stderr, "Psymtab for %s already read in. Shouldn't happen.\n",
1860 if (((struct symloc *) pst->read_symtab_private)->numsyms != 0
1861 || pst->number_of_dependencies)
1863 /* Print the message now, before reading the string table,
1864 to avoid disconcerting pauses. */
1867 printf_filtered ("Reading in symbols for %s...", pst->filename);
1868 gdb_flush (gdb_stdout);
1871 sym_bfd = pst->objfile->obfd;
1873 next_symbol_text_func = xcoff_next_symbol_text;
1875 xcoff_psymtab_to_symtab_1 (pst);
1877 /* Match with global symbols. This only needs to be done once,
1878 after all of the symtabs and dependencies have been read in. */
1879 scan_file_globals (pst->objfile);
1881 /* Finish up the debug error message. */
1883 printf_filtered ("done.\n");
1888 xcoff_new_init (struct objfile *objfile)
1890 stabsread_new_init ();
1891 buildsym_new_init ();
1894 /* Do initialization in preparation for reading symbols from OBJFILE.
1896 We will only be called if this is an XCOFF or XCOFF-like file.
1897 BFD handles figuring out the format of the file, and code in symfile.c
1898 uses BFD's determination to vector to us. */
1901 xcoff_symfile_init (struct objfile *objfile)
1903 /* Allocate struct to keep track of the symfile. */
1904 objfile->deprecated_sym_private
1905 = xmalloc (sizeof (struct coff_symfile_info));
1907 /* XCOFF objects may be reordered, so set OBJF_REORDERED. If we
1908 find this causes a significant slowdown in gdb then we could
1909 set it in the debug symbol readers only when necessary. */
1910 objfile->flags |= OBJF_REORDERED;
1912 init_entry_point_info (objfile);
1915 /* Perform any local cleanups required when we are done with a particular
1916 objfile. I.E, we are in the process of discarding all symbol information
1917 for an objfile, freeing up all memory held for it, and unlinking the
1918 objfile struct from the global list of known objfiles. */
1921 xcoff_symfile_finish (struct objfile *objfile)
1923 if (objfile->deprecated_sym_private != NULL)
1925 xfree (objfile->deprecated_sym_private);
1928 /* Start with a fresh include table for the next objfile. */
1934 inclIndx = inclLength = inclDepth = 0;
1936 dwarf2_free_objfile (objfile);
1941 init_stringtab (bfd *abfd, file_ptr offset, struct objfile *objfile)
1945 unsigned char lengthbuf[4];
1948 ((struct coff_symfile_info *) objfile->deprecated_sym_private)->strtbl
1951 if (bfd_seek (abfd, offset, SEEK_SET) < 0)
1952 error (_("cannot seek to string table in %s: %s"),
1953 bfd_get_filename (abfd), bfd_errmsg (bfd_get_error ()));
1955 val = bfd_bread ((char *) lengthbuf, sizeof lengthbuf, abfd);
1956 length = bfd_h_get_32 (abfd, lengthbuf);
1958 /* If no string table is needed, then the file may end immediately
1959 after the symbols. Just return with `strtbl' set to NULL. */
1961 if (val != sizeof lengthbuf || length < sizeof lengthbuf)
1964 /* Allocate string table from objfile_obstack. We will need this table
1965 as long as we have its symbol table around. */
1967 strtbl = (char *) obstack_alloc (&objfile->objfile_obstack, length);
1968 ((struct coff_symfile_info *) objfile->deprecated_sym_private)->strtbl
1971 /* Copy length buffer, the first byte is usually zero and is
1972 used for stabs with a name length of zero. */
1973 memcpy (strtbl, lengthbuf, sizeof lengthbuf);
1974 if (length == sizeof lengthbuf)
1977 val = bfd_bread (strtbl + sizeof lengthbuf, length - sizeof lengthbuf, abfd);
1979 if (val != length - sizeof lengthbuf)
1980 error (_("cannot read string table from %s: %s"),
1981 bfd_get_filename (abfd), bfd_errmsg (bfd_get_error ()));
1982 if (strtbl[length - 1] != '\0')
1983 error (_("bad symbol file: string table "
1984 "does not end with null character"));
1989 /* If we have not yet seen a function for this psymtab, this is 0. If we
1990 have seen one, it is the offset in the line numbers of the line numbers
1992 static unsigned int first_fun_line_offset;
1994 static struct partial_symtab *xcoff_start_psymtab
1995 (struct objfile *, char *, int,
1996 struct partial_symbol **, struct partial_symbol **);
1998 /* Allocate and partially fill a partial symtab. It will be
1999 completely filled at the end of the symbol list.
2001 SYMFILE_NAME is the name of the symbol-file we are reading from, and ADDR
2002 is the address relative to which its symbols are (incremental) or 0
2005 static struct partial_symtab *
2006 xcoff_start_psymtab (struct objfile *objfile, char *filename, int first_symnum,
2007 struct partial_symbol **global_syms,
2008 struct partial_symbol **static_syms)
2010 struct partial_symtab *result =
2011 start_psymtab_common (objfile, objfile->section_offsets,
2013 /* We fill in textlow later. */
2015 global_syms, static_syms);
2017 result->read_symtab_private = obstack_alloc (&objfile->objfile_obstack,
2018 sizeof (struct symloc));
2019 ((struct symloc *) result->read_symtab_private)->first_symnum = first_symnum;
2020 result->read_symtab = xcoff_psymtab_to_symtab;
2022 /* Deduce the source language from the filename for this psymtab. */
2023 psymtab_language = deduce_language_from_filename (filename);
2028 static struct partial_symtab *xcoff_end_psymtab
2029 (struct partial_symtab *, char **, int, int,
2030 struct partial_symtab **, int, int);
2032 /* Close off the current usage of PST.
2033 Returns PST, or NULL if the partial symtab was empty and thrown away.
2035 CAPPING_SYMBOL_NUMBER is the end of pst (exclusive).
2037 INCLUDE_LIST, NUM_INCLUDES, DEPENDENCY_LIST, and NUMBER_DEPENDENCIES
2038 are the information for includes and dependencies. */
2040 static struct partial_symtab *
2041 xcoff_end_psymtab (struct partial_symtab *pst, char **include_list,
2042 int num_includes, int capping_symbol_number,
2043 struct partial_symtab **dependency_list,
2044 int number_dependencies, int textlow_not_set)
2047 struct objfile *objfile = pst->objfile;
2049 if (capping_symbol_number != -1)
2050 ((struct symloc *) pst->read_symtab_private)->numsyms =
2051 capping_symbol_number
2052 - ((struct symloc *) pst->read_symtab_private)->first_symnum;
2053 ((struct symloc *) pst->read_symtab_private)->lineno_off =
2054 first_fun_line_offset;
2055 first_fun_line_offset = 0;
2056 pst->n_global_syms = objfile->global_psymbols.next
2057 - (objfile->global_psymbols.list + pst->globals_offset);
2058 pst->n_static_syms = objfile->static_psymbols.next
2059 - (objfile->static_psymbols.list + pst->statics_offset);
2061 pst->number_of_dependencies = number_dependencies;
2062 if (number_dependencies)
2064 pst->dependencies = (struct partial_symtab **)
2065 obstack_alloc (&objfile->objfile_obstack,
2066 number_dependencies * sizeof (struct partial_symtab *));
2067 memcpy (pst->dependencies, dependency_list,
2068 number_dependencies * sizeof (struct partial_symtab *));
2071 pst->dependencies = 0;
2073 for (i = 0; i < num_includes; i++)
2075 struct partial_symtab *subpst =
2076 allocate_psymtab (include_list[i], objfile);
2078 subpst->section_offsets = pst->section_offsets;
2079 subpst->read_symtab_private = obstack_alloc (&objfile->objfile_obstack,
2080 sizeof (struct symloc));
2081 ((struct symloc *) subpst->read_symtab_private)->first_symnum = 0;
2082 ((struct symloc *) subpst->read_symtab_private)->numsyms = 0;
2083 subpst->textlow = 0;
2084 subpst->texthigh = 0;
2086 /* We could save slight bits of space by only making one of these,
2087 shared by the entire set of include files. FIXME-someday. */
2088 subpst->dependencies = (struct partial_symtab **)
2089 obstack_alloc (&objfile->objfile_obstack,
2090 sizeof (struct partial_symtab *));
2091 subpst->dependencies[0] = pst;
2092 subpst->number_of_dependencies = 1;
2094 subpst->globals_offset =
2095 subpst->n_global_syms =
2096 subpst->statics_offset =
2097 subpst->n_static_syms = 0;
2101 subpst->read_symtab = pst->read_symtab;
2104 sort_pst_symbols (pst);
2106 if (num_includes == 0
2107 && number_dependencies == 0
2108 && pst->n_global_syms == 0
2109 && pst->n_static_syms == 0)
2111 /* Throw away this psymtab, it's empty. We can't deallocate it, since
2112 it is on the obstack, but we can forget to chain it on the list. */
2113 /* Empty psymtabs happen as a result of header files which don't have
2114 any symbols in them. There can be a lot of them. */
2116 discard_psymtab (pst);
2118 /* Indicate that psymtab was thrown away. */
2119 pst = (struct partial_symtab *) NULL;
2124 static void swap_sym (struct internal_syment *,
2125 union internal_auxent *, char **, char **,
2126 unsigned int *, struct objfile *);
2128 /* Swap raw symbol at *RAW and put the name in *NAME, the symbol in
2129 *SYMBOL, the first auxent in *AUX. Advance *RAW and *SYMNUMP over
2130 the symbol and its auxents. */
2133 swap_sym (struct internal_syment *symbol, union internal_auxent *aux,
2134 char **name, char **raw, unsigned int *symnump,
2135 struct objfile *objfile)
2137 bfd_coff_swap_sym_in (objfile->obfd, *raw, symbol);
2138 if (symbol->n_zeroes)
2140 /* If it's exactly E_SYMNMLEN characters long it isn't
2142 if (symbol->n_name[E_SYMNMLEN - 1] != '\0')
2144 /* FIXME: wastes memory for symbols which we don't end up putting
2145 into the minimal symbols. */
2148 p = obstack_alloc (&objfile->objfile_obstack, E_SYMNMLEN + 1);
2149 strncpy (p, symbol->n_name, E_SYMNMLEN);
2150 p[E_SYMNMLEN] = '\0';
2154 /* Point to the unswapped name as that persists as long as the
2156 *name = ((struct external_syment *) *raw)->e.e_name;
2158 else if (symbol->n_sclass & 0x80)
2160 *name = ((struct coff_symfile_info *)
2161 objfile->deprecated_sym_private)->debugsec + symbol->n_offset;
2165 *name = ((struct coff_symfile_info *)
2166 objfile->deprecated_sym_private)->strtbl + symbol->n_offset;
2169 *raw += coff_data (objfile->obfd)->local_symesz;
2170 if (symbol->n_numaux > 0)
2172 bfd_coff_swap_aux_in (objfile->obfd, *raw, symbol->n_type,
2173 symbol->n_sclass, 0, symbol->n_numaux, aux);
2175 *symnump += symbol->n_numaux;
2176 *raw += coff_data (objfile->obfd)->local_symesz * symbol->n_numaux;
2181 function_outside_compilation_unit_complaint (const char *arg1)
2183 complaint (&symfile_complaints,
2184 _("function `%s' appears to be defined "
2185 "outside of all compilation units"),
2190 scan_xcoff_symtab (struct objfile *objfile)
2192 struct gdbarch *gdbarch = get_objfile_arch (objfile);
2193 CORE_ADDR toc_offset = 0; /* toc offset value in data section. */
2194 char *filestring = NULL;
2197 int past_first_source_file = 0;
2202 /* Current partial symtab */
2203 struct partial_symtab *pst;
2205 /* List of current psymtab's include files. */
2206 char **psymtab_include_list;
2207 int includes_allocated;
2210 /* Index within current psymtab dependency list. */
2211 struct partial_symtab **dependency_list;
2212 int dependencies_used, dependencies_allocated;
2215 struct internal_syment symbol;
2216 union internal_auxent main_aux[5];
2217 unsigned int ssymnum;
2219 char *last_csect_name = NULL; /* Last seen csect's name and value. */
2220 CORE_ADDR last_csect_val = 0;
2221 int last_csect_sec = 0;
2222 int misc_func_recorded = 0; /* true if any misc. function. */
2223 int textlow_not_set = 1;
2225 pst = (struct partial_symtab *) 0;
2227 includes_allocated = 30;
2229 psymtab_include_list = (char **) alloca (includes_allocated *
2232 dependencies_allocated = 30;
2233 dependencies_used = 0;
2235 (struct partial_symtab **) alloca (dependencies_allocated *
2236 sizeof (struct partial_symtab *));
2238 last_source_file = NULL;
2240 abfd = objfile->obfd;
2241 next_symbol_text_func = xcoff_next_symbol_text;
2243 sraw_symbol = ((struct coff_symfile_info *)
2244 objfile->deprecated_sym_private)->symtbl;
2245 nsyms = ((struct coff_symfile_info *)
2246 objfile->deprecated_sym_private)->symtbl_num_syms;
2248 while (ssymnum < nsyms)
2254 bfd_coff_swap_sym_in (abfd, sraw_symbol, &symbol);
2255 sclass = symbol.n_sclass;
2262 /* The CSECT auxent--always the last auxent. */
2263 union internal_auxent csect_aux;
2264 unsigned int symnum_before = ssymnum;
2266 swap_sym (&symbol, &main_aux[0], &namestring, &sraw_symbol,
2268 if (symbol.n_numaux > 1)
2270 bfd_coff_swap_aux_in
2272 sraw_symbol - coff_data (abfd)->local_symesz,
2275 symbol.n_numaux - 1,
2280 csect_aux = main_aux[0];
2282 /* If symbol name starts with ".$" or "$", ignore it. */
2283 if (namestring[0] == '$'
2284 || (namestring[0] == '.' && namestring[1] == '$'))
2287 switch (csect_aux.x_csect.x_smtyp & 0x7)
2290 switch (csect_aux.x_csect.x_smclas)
2293 if (last_csect_name)
2295 /* If no misc. function recorded in the last
2296 seen csect, enter it as a function. This
2297 will take care of functions like strcmp()
2300 if (!misc_func_recorded)
2302 RECORD_MINIMAL_SYMBOL
2303 (last_csect_name, last_csect_val,
2304 mst_text, last_csect_sec,
2310 /* We have to allocate one psymtab for
2311 each program csect, because their text
2312 sections need not be adjacent. */
2314 (pst, psymtab_include_list, includes_used,
2315 symnum_before, dependency_list,
2316 dependencies_used, textlow_not_set);
2318 dependencies_used = 0;
2319 /* Give all psymtabs for this source file the same
2321 pst = xcoff_start_psymtab
2325 objfile->global_psymbols.next,
2326 objfile->static_psymbols.next);
2329 /* Activate the misc_func_recorded mechanism for
2330 compiler- and linker-generated CSECTs like ".strcmp"
2332 if (namestring && (namestring[0] == '.'
2333 || namestring[0] == '@'))
2335 last_csect_name = namestring;
2336 last_csect_val = symbol.n_value;
2338 secnum_to_section (symbol.n_scnum, objfile);
2343 symbol.n_value + csect_aux.x_csect.x_scnlen.l;
2345 if (highval > pst->texthigh)
2346 pst->texthigh = highval;
2347 if (pst->textlow == 0 || symbol.n_value < pst->textlow)
2348 pst->textlow = symbol.n_value;
2350 misc_func_recorded = 0;
2355 /* Data variables are recorded in the minimal symbol
2356 table, except for section symbols. */
2357 if (*namestring != '.')
2358 prim_record_minimal_symbol_and_info
2359 (namestring, symbol.n_value,
2360 sclass == C_HIDEXT ? mst_file_data : mst_data,
2361 secnum_to_section (symbol.n_scnum, objfile),
2367 warning (_("More than one XMC_TC0 symbol found."));
2368 toc_offset = symbol.n_value;
2370 /* Make TOC offset relative to start address of
2372 bfd_sect = secnum_to_bfd_section (symbol.n_scnum, objfile);
2374 toc_offset -= bfd_section_vma (objfile->obfd, bfd_sect);
2378 /* These symbols tell us where the TOC entry for a
2379 variable is, not the variable itself. */
2388 switch (csect_aux.x_csect.x_smclas)
2391 /* A function entry point. */
2393 if (first_fun_line_offset == 0 && symbol.n_numaux > 1)
2394 first_fun_line_offset =
2395 main_aux[0].x_sym.x_fcnary.x_fcn.x_lnnoptr;
2396 RECORD_MINIMAL_SYMBOL
2397 (namestring, symbol.n_value,
2398 sclass == C_HIDEXT ? mst_file_text : mst_text,
2399 secnum_to_section (symbol.n_scnum, objfile),
2404 /* shared library function trampoline code entry
2407 /* record trampoline code entries as
2408 mst_solib_trampoline symbol. When we lookup mst
2409 symbols, we will choose mst_text over
2410 mst_solib_trampoline. */
2411 RECORD_MINIMAL_SYMBOL
2412 (namestring, symbol.n_value,
2413 mst_solib_trampoline,
2414 secnum_to_section (symbol.n_scnum, objfile),
2419 /* The symbols often have the same names as
2420 debug symbols for functions, and confuse
2426 /* xlc puts each variable in a separate csect,
2427 so we get an XTY_SD for each variable. But
2428 gcc puts several variables in a csect, so
2429 that each variable only gets an XTY_LD. We
2430 still need to record them. This will
2431 typically be XMC_RW; I suspect XMC_RO and
2432 XMC_BS might be possible too. */
2433 if (*namestring != '.')
2434 prim_record_minimal_symbol_and_info
2435 (namestring, symbol.n_value,
2436 sclass == C_HIDEXT ? mst_file_data : mst_data,
2437 secnum_to_section (symbol.n_scnum, objfile),
2444 switch (csect_aux.x_csect.x_smclas)
2448 /* Common variables are recorded in the minimal symbol
2449 table, except for section symbols. */
2450 if (*namestring != '.')
2451 prim_record_minimal_symbol_and_info
2452 (namestring, symbol.n_value,
2453 sclass == C_HIDEXT ? mst_file_bss : mst_bss,
2454 secnum_to_section (symbol.n_scnum, objfile),
2467 unsigned int symnum_before;
2469 symnum_before = ssymnum;
2470 swap_sym (&symbol, &main_aux[0], &namestring, &sraw_symbol,
2473 /* See if the last csect needs to be recorded. */
2475 if (last_csect_name && !misc_func_recorded)
2477 /* If no misc. function recorded in the last seen csect, enter
2478 it as a function. This will take care of functions like
2479 strcmp() compiled by xlc. */
2481 RECORD_MINIMAL_SYMBOL
2482 (last_csect_name, last_csect_val,
2483 mst_text, last_csect_sec, objfile);
2488 xcoff_end_psymtab (pst, psymtab_include_list, includes_used,
2489 symnum_before, dependency_list,
2490 dependencies_used, textlow_not_set);
2492 dependencies_used = 0;
2494 first_fun_line_offset = 0;
2496 /* XCOFF, according to the AIX 3.2 documentation, puts the
2497 filename in cs->c_name. But xlc 1.3.0.2 has decided to
2498 do things the standard COFF way and put it in the auxent.
2499 We use the auxent if the symbol is ".file" and an auxent
2500 exists, otherwise use the symbol itself. */
2501 if (!strcmp (namestring, ".file") && symbol.n_numaux > 0)
2503 filestring = coff_getfilename (&main_aux[0], objfile);
2506 filestring = namestring;
2508 pst = xcoff_start_psymtab (objfile,
2511 objfile->global_psymbols.next,
2512 objfile->static_psymbols.next);
2513 last_csect_name = NULL;
2519 complaint (&symfile_complaints,
2520 _("Storage class %d not recognized during scan"),
2525 /* C_FCN is .bf and .ef symbols. I think it is sufficient
2526 to handle only the C_FUN and C_EXT. */
2541 /* C_EINCL means we are switching back to the main file. But there
2542 is no reason to care; the only thing we want to know about
2543 includes is the names of all the included (.h) files. */
2548 /* I don't think C_STAT is used in xcoff; C_HIDEXT appears to be
2552 /* I don't think the name of the common block (as opposed to the
2553 variables within it) is something which is user visible
2561 /* I think we can ignore C_LSYM; types on xcoff seem to use C_DECL
2562 so C_LSYM would appear to be only for locals. */
2568 /* We probably could save a few instructions by assuming that
2569 C_LSYM, C_PSYM, etc., never have auxents. */
2570 int naux1 = symbol.n_numaux + 1;
2573 sraw_symbol += bfd_coff_symesz (abfd) * naux1;
2579 /* Mark down an include file in the current psymtab. */
2580 enum language tmp_language;
2582 swap_sym (&symbol, &main_aux[0], &namestring, &sraw_symbol,
2585 tmp_language = deduce_language_from_filename (namestring);
2587 /* Only change the psymtab's language if we've learned
2588 something useful (eg. tmp_language is not language_unknown).
2589 In addition, to match what start_subfile does, never change
2591 if (tmp_language != language_unknown
2592 && (tmp_language != language_c
2593 || psymtab_language != language_cplus))
2594 psymtab_language = tmp_language;
2596 /* In C++, one may expect the same filename to come round many
2597 times, when code is coming alternately from the main file
2598 and from inline functions in other files. So I check to see
2599 if this is a file we've seen before -- either the main
2600 source file, or a previously included file.
2602 This seems to be a lot of time to be spending on N_SOL, but
2603 things like "break c-exp.y:435" need to work (I
2604 suppose the psymtab_include_list could be hashed or put
2605 in a binary tree, if profiling shows this is a major hog). */
2606 if (pst && strcmp (namestring, pst->filename) == 0)
2612 for (i = 0; i < includes_used; i++)
2613 if (strcmp (namestring, psymtab_include_list[i]) == 0)
2621 psymtab_include_list[includes_used++] = namestring;
2622 if (includes_used >= includes_allocated)
2624 char **orig = psymtab_include_list;
2626 psymtab_include_list = (char **)
2627 alloca ((includes_allocated *= 2) *
2629 memcpy (psymtab_include_list, orig,
2630 includes_used * sizeof (char *));
2635 /* The value of the C_FUN is not the address of the function (it
2636 appears to be the address before linking), but as long as it
2637 is smaller than the actual address, then find_pc_partial_function
2638 will use the minimal symbols instead. I hope. */
2647 swap_sym (&symbol, &main_aux[0], &namestring, &sraw_symbol,
2650 p = strchr (namestring, ':');
2652 continue; /* Not a debugging symbol. */
2654 /* Main processing section for debugging symbols which
2655 the initial read through the symbol tables needs to worry
2656 about. If we reach this point, the symbol which we are
2657 considering is definitely one we are interested in.
2658 p must also contain the (valid) index into the namestring
2659 which indicates the debugging type symbol. */
2664 symbol.n_value += ANOFFSET (objfile->section_offsets,
2665 SECT_OFF_DATA (objfile));
2667 if (gdbarch_static_transform_name_p (gdbarch))
2668 namestring = gdbarch_static_transform_name
2669 (gdbarch, namestring);
2671 add_psymbol_to_list (namestring, p - namestring, 1,
2672 VAR_DOMAIN, LOC_STATIC,
2673 &objfile->static_psymbols,
2675 psymtab_language, objfile);
2679 symbol.n_value += ANOFFSET (objfile->section_offsets,
2680 SECT_OFF_DATA (objfile));
2681 /* The addresses in these entries are reported to be
2682 wrong. See the code that reads 'G's for symtabs. */
2683 add_psymbol_to_list (namestring, p - namestring, 1,
2684 VAR_DOMAIN, LOC_STATIC,
2685 &objfile->global_psymbols,
2687 psymtab_language, objfile);
2691 /* When a 'T' entry is defining an anonymous enum, it
2692 may have a name which is the empty string, or a
2693 single space. Since they're not really defining a
2694 symbol, those shouldn't go in the partial symbol
2695 table. We do pick up the elements of such enums at
2696 'check_enum:', below. */
2697 if (p >= namestring + 2
2698 || (p == namestring + 1
2699 && namestring[0] != ' '))
2701 add_psymbol_to_list (namestring, p - namestring, 1,
2702 STRUCT_DOMAIN, LOC_TYPEDEF,
2703 &objfile->static_psymbols,
2705 psymtab_language, objfile);
2708 /* Also a typedef with the same name. */
2709 add_psymbol_to_list (namestring, p - namestring, 1,
2710 VAR_DOMAIN, LOC_TYPEDEF,
2711 &objfile->static_psymbols,
2713 psymtab_language, objfile);
2720 if (p != namestring) /* a name is there, not just :T... */
2722 add_psymbol_to_list (namestring, p - namestring, 1,
2723 VAR_DOMAIN, LOC_TYPEDEF,
2724 &objfile->static_psymbols,
2726 psymtab_language, objfile);
2729 /* If this is an enumerated type, we need to
2730 add all the enum constants to the partial symbol
2731 table. This does not cover enums without names, e.g.
2732 "enum {a, b} c;" in C, but fortunately those are
2733 rare. There is no way for GDB to find those from the
2734 enum type without spending too much time on it. Thus
2735 to solve this problem, the compiler needs to put out the
2736 enum in a nameless type. GCC2 does this. */
2738 /* We are looking for something of the form
2739 <name> ":" ("t" | "T") [<number> "="] "e"
2740 {<constant> ":" <value> ","} ";". */
2742 /* Skip over the colon and the 't' or 'T'. */
2744 /* This type may be given a number. Also, numbers can come
2745 in pairs like (0,26). Skip over it. */
2746 while ((*p >= '0' && *p <= '9')
2747 || *p == '(' || *p == ',' || *p == ')'
2753 /* The aix4 compiler emits extra crud before the
2757 /* Skip over the type (?). */
2761 /* Skip over the colon. */
2765 /* We have found an enumerated type. */
2766 /* According to comments in read_enum_type
2767 a comma could end it instead of a semicolon.
2768 I don't know where that happens.
2770 while (*p && *p != ';' && *p != ',')
2774 /* Check for and handle cretinous dbx symbol name
2776 if (*p == '\\' || (*p == '?' && p[1] == '\0'))
2777 p = next_symbol_text (objfile);
2779 /* Point to the character after the name
2780 of the enum constant. */
2781 for (q = p; *q && *q != ':'; q++)
2783 /* Note that the value doesn't matter for
2784 enum constants in psymtabs, just in symtabs. */
2785 add_psymbol_to_list (p, q - p, 1,
2786 VAR_DOMAIN, LOC_CONST,
2787 &objfile->static_psymbols, 0,
2788 0, psymtab_language, objfile);
2789 /* Point past the name. */
2791 /* Skip over the value. */
2792 while (*p && *p != ',')
2794 /* Advance past the comma. */
2802 /* Constant, e.g. from "const" in Pascal. */
2803 add_psymbol_to_list (namestring, p - namestring, 1,
2804 VAR_DOMAIN, LOC_CONST,
2805 &objfile->static_psymbols, symbol.n_value,
2806 0, psymtab_language, objfile);
2812 int name_len = p - namestring;
2813 char *name = xmalloc (name_len + 1);
2815 memcpy (name, namestring, name_len);
2816 name[name_len] = '\0';
2817 function_outside_compilation_unit_complaint (name);
2820 symbol.n_value += ANOFFSET (objfile->section_offsets,
2821 SECT_OFF_TEXT (objfile));
2822 add_psymbol_to_list (namestring, p - namestring, 1,
2823 VAR_DOMAIN, LOC_BLOCK,
2824 &objfile->static_psymbols,
2826 psymtab_language, objfile);
2829 /* Global functions were ignored here, but now they
2830 are put into the global psymtab like one would expect.
2831 They're also in the minimal symbol table. */
2835 int name_len = p - namestring;
2836 char *name = xmalloc (name_len + 1);
2838 memcpy (name, namestring, name_len);
2839 name[name_len] = '\0';
2840 function_outside_compilation_unit_complaint (name);
2844 /* We need only the minimal symbols for these
2845 loader-generated definitions. Keeping the global
2846 symbols leads to "in psymbols but not in symbols"
2848 if (strncmp (namestring, "@FIX", 4) == 0)
2851 symbol.n_value += ANOFFSET (objfile->section_offsets,
2852 SECT_OFF_TEXT (objfile));
2853 add_psymbol_to_list (namestring, p - namestring, 1,
2854 VAR_DOMAIN, LOC_BLOCK,
2855 &objfile->global_psymbols,
2857 psymtab_language, objfile);
2860 /* Two things show up here (hopefully); static symbols of
2861 local scope (static used inside braces) or extensions
2862 of structure symbols. We can ignore both. */
2876 case '#': /* For symbol identification (used in
2881 /* It is a C++ nested symbol. We don't need to record it
2882 (I don't think); if we try to look up foo::bar::baz,
2883 then symbols for the symtab containing foo should get
2884 read in, I think. */
2885 /* Someone says sun cc puts out symbols like
2886 /foo/baz/maclib::/usr/local/bin/maclib,
2887 which would get here with a symbol type of ':'. */
2891 /* Unexpected symbol descriptor. The second and
2892 subsequent stabs of a continued stab can show up
2893 here. The question is whether they ever can mimic
2894 a normal stab--it would be nice if not, since we
2895 certainly don't want to spend the time searching to
2896 the end of every string looking for a
2899 complaint (&symfile_complaints,
2900 _("unknown symbol descriptor `%c'"), p[1]);
2902 /* Ignore it; perhaps it is an extension that we don't
2912 xcoff_end_psymtab (pst, psymtab_include_list, includes_used,
2913 ssymnum, dependency_list,
2914 dependencies_used, textlow_not_set);
2917 /* Record the toc offset value of this symbol table into objfile
2918 structure. If no XMC_TC0 is found, toc_offset should be zero.
2919 Another place to obtain this information would be file auxiliary
2922 ((struct coff_symfile_info *) objfile->deprecated_sym_private)->toc_offset
2926 /* Return the toc offset value for a given objfile. */
2929 xcoff_get_toc_offset (struct objfile *objfile)
2932 return ((struct coff_symfile_info *)
2933 objfile->deprecated_sym_private)->toc_offset;
2937 /* Scan and build partial symbols for a symbol file.
2938 We have been initialized by a call to dbx_symfile_init, which
2939 put all the relevant info into a "struct dbx_symfile_info",
2940 hung off the objfile structure.
2942 SECTION_OFFSETS contains offsets relative to which the symbols in the
2943 various sections are (depending where the sections were actually
2947 xcoff_initial_scan (struct objfile *objfile, int symfile_flags)
2951 struct cleanup *back_to;
2952 int num_symbols; /* # of symbols */
2953 file_ptr symtab_offset; /* symbol table and */
2954 file_ptr stringtab_offset; /* string table file offsets */
2955 struct coff_symfile_info *info;
2959 info = (struct coff_symfile_info *) objfile->deprecated_sym_private;
2960 symfile_bfd = abfd = objfile->obfd;
2961 name = objfile->name;
2963 num_symbols = bfd_get_symcount (abfd); /* # of symbols */
2964 symtab_offset = obj_sym_filepos (abfd); /* symbol table file offset */
2965 stringtab_offset = symtab_offset +
2966 num_symbols * coff_data (abfd)->local_symesz;
2968 info->min_lineno_offset = 0;
2969 info->max_lineno_offset = 0;
2970 bfd_map_over_sections (abfd, find_linenos, info);
2972 if (num_symbols > 0)
2974 /* Read the string table. */
2975 init_stringtab (abfd, stringtab_offset, objfile);
2977 /* Read the .debug section, if present. */
2979 struct bfd_section *secp;
2980 bfd_size_type length;
2981 char *debugsec = NULL;
2983 secp = bfd_get_section_by_name (abfd, ".debug");
2986 length = bfd_section_size (abfd, secp);
2990 (char *) obstack_alloc (&objfile->objfile_obstack, length);
2992 if (!bfd_get_section_contents (abfd, secp, debugsec,
2993 (file_ptr) 0, length))
2995 error (_("Error reading .debug section of `%s': %s"),
2996 name, bfd_errmsg (bfd_get_error ()));
3000 ((struct coff_symfile_info *)
3001 objfile->deprecated_sym_private)->debugsec
3006 /* Read the symbols. We keep them in core because we will want to
3007 access them randomly in read_symbol*. */
3008 val = bfd_seek (abfd, symtab_offset, SEEK_SET);
3010 error (_("Error reading symbols from %s: %s"),
3011 name, bfd_errmsg (bfd_get_error ()));
3012 size = coff_data (abfd)->local_symesz * num_symbols;
3013 ((struct coff_symfile_info *) objfile->deprecated_sym_private)->symtbl =
3014 obstack_alloc (&objfile->objfile_obstack, size);
3015 ((struct coff_symfile_info *)
3016 objfile->deprecated_sym_private)->symtbl_num_syms
3019 val = bfd_bread (((struct coff_symfile_info *)
3020 objfile->deprecated_sym_private)->symtbl,
3023 perror_with_name (_("reading symbol table"));
3025 /* If we are reinitializing, or if we have never loaded syms yet, init. */
3026 if (objfile->global_psymbols.size == 0 && objfile->static_psymbols.size == 0)
3027 /* I'm not sure how how good num_symbols is; the rule of thumb in
3028 init_psymbol_list was developed for a.out. On the one hand,
3029 num_symbols includes auxents. On the other hand, it doesn't
3031 init_psymbol_list (objfile, num_symbols);
3033 free_pending_blocks ();
3034 back_to = make_cleanup (really_free_pendings, 0);
3036 init_minimal_symbol_collection ();
3037 make_cleanup_discard_minimal_symbols ();
3039 /* Now that the symbol table data of the executable file are all in core,
3040 process them and define symbols accordingly. */
3042 scan_xcoff_symtab (objfile);
3044 /* Install any minimal symbols that have been collected as the current
3045 minimal symbols for this objfile. */
3047 install_minimal_symbols (objfile);
3049 /* DWARF2 sections. */
3051 if (dwarf2_has_info (objfile, &dwarf2_xcoff_names))
3052 dwarf2_build_psymtabs (objfile);
3054 dwarf2_build_frame_info (objfile);
3056 do_cleanups (back_to);
3060 xcoff_symfile_offsets (struct objfile *objfile,
3061 struct section_addr_info *addrs)
3063 asection *sect = NULL;
3066 objfile->num_sections = bfd_count_sections (objfile->obfd);
3067 objfile->section_offsets = (struct section_offsets *)
3068 obstack_alloc (&objfile->objfile_obstack,
3069 SIZEOF_N_SECTION_OFFSETS (objfile->num_sections));
3071 /* Initialize the section indexes for future use. */
3072 sect = bfd_get_section_by_name (objfile->obfd, ".text");
3074 objfile->sect_index_text = sect->index;
3076 sect = bfd_get_section_by_name (objfile->obfd, ".data");
3078 objfile->sect_index_data = sect->index;
3080 sect = bfd_get_section_by_name (objfile->obfd, ".bss");
3082 objfile->sect_index_bss = sect->index;
3084 sect = bfd_get_section_by_name (objfile->obfd, ".rodata");
3086 objfile->sect_index_rodata = sect->index;
3088 for (i = 0; i < objfile->num_sections; ++i)
3090 /* syms_from_objfile kindly subtracts from addr the
3091 bfd_section_vma of the .text section. This strikes me as
3092 wrong--whether the offset to be applied to symbol reading is
3093 relative to the start address of the section depends on the
3094 symbol format. In any event, this whole "addr" concept is
3095 pretty broken (it doesn't handle any section but .text
3096 sensibly), so just ignore the addr parameter and use 0.
3097 rs6000-nat.c will set the correct section offsets via
3098 objfile_relocate. */
3099 (objfile->section_offsets)->offsets[i] = 0;
3103 /* Register our ability to parse symbols for xcoff BFD files. */
3105 static const struct sym_fns xcoff_sym_fns =
3108 /* It is possible that coff and xcoff should be merged as
3109 they do have fundamental similarities (for example, the extra storage
3110 classes used for stabs could presumably be recognized in any COFF file).
3111 However, in addition to obvious things like all the csect hair, there are
3112 some subtler differences between xcoffread.c and coffread.c, notably
3113 the fact that coffread.c has no need to read in all the symbols, but
3114 xcoffread.c reads all the symbols and does in fact randomly access them
3115 (in C_BSTAT and line number processing). */
3117 bfd_target_xcoff_flavour,
3119 xcoff_new_init, /* init anything gbl to entire symtab */
3120 xcoff_symfile_init, /* read initial info, setup for sym_read() */
3121 xcoff_initial_scan, /* read a symbol file into symtab */
3122 NULL, /* sym_read_psymbols */
3123 xcoff_symfile_finish, /* finished with file, cleanup */
3124 xcoff_symfile_offsets, /* xlate offsets ext->int form */
3125 default_symfile_segments, /* Get segment information from a file. */
3126 aix_process_linenos,
3127 default_symfile_relocate, /* Relocate a debug section. */
3131 /* Provide a prototype to silence -Wmissing-prototypes. */
3132 extern initialize_file_ftype _initialize_xcoffread;
3135 _initialize_xcoffread (void)
3137 add_symtab_fns (&xcoff_sym_fns);