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
4 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"
45 /* FIXME: ezannoni/2004-02-13 Verify if the include below is really needed. */
49 #include "stabsread.h"
50 #include "expression.h"
51 #include "complaints.h"
53 #include "gdb-stabs.h"
55 /* For interface with stabsread.c. */
56 #include "aout/stab_gnu.h"
59 /* We put a pointer to this structure in the read_symtab_private field
65 /* First symbol number for this file. */
69 /* Number of symbols in the section of the symbol table devoted to
70 this file's symbols (actually, the section bracketed may contain
71 more than just this file's symbols). If numsyms is 0, the only
72 reason for this thing's existence is the dependency list. Nothing
73 else will happen when it is read in. */
77 /* Position of the start of the line number information for this psymtab. */
78 unsigned int lineno_off
;
81 /* Remember what we deduced to be the source language of this psymtab. */
83 static enum language psymtab_language
= language_unknown
;
86 /* Simplified internal version of coff symbol table information */
91 int c_symnum
; /* symbol number of this entry */
92 int c_naux
; /* 0 if syment only, 1 if syment + auxent */
94 unsigned char c_sclass
;
99 /* last function's saved coff symbol `cs' */
101 static struct coff_symbol fcn_cs_saved
;
103 static bfd
*symfile_bfd
;
105 /* Core address of start and end of text of current source file.
106 This is calculated from the first function seen after a C_FILE
110 static CORE_ADDR cur_src_end_addr
;
112 /* Core address of the end of the first object file. */
114 static CORE_ADDR first_object_file_end
;
116 /* initial symbol-table-debug-string vector length */
118 #define INITIAL_STABVECTOR_LENGTH 40
120 /* Nonzero if within a function (so symbols should be local,
121 if nothing says specifically). */
125 /* Size of a COFF symbol. I think it is always 18, so I'm not sure
126 there is any reason not to just use a #define, but might as well
127 ask BFD for the size and store it here, I guess. */
129 static unsigned local_symesz
;
131 struct coff_symfile_info
133 file_ptr min_lineno_offset
; /* Where in file lowest line#s are */
134 file_ptr max_lineno_offset
; /* 1+last byte of line#s in file */
136 /* Pointer to the string table. */
139 /* Pointer to debug section. */
142 /* Pointer to the a.out symbol table. */
145 /* Number of symbols in symtbl. */
148 /* Offset in data section to TOC anchor. */
149 CORE_ADDR toc_offset
;
153 bf_notfound_complaint (void)
155 complaint (&symfile_complaints
, _("line numbers off, `.bf' symbol not found"));
159 ef_complaint (int arg1
)
161 complaint (&symfile_complaints
,
162 _("Mismatched .ef symbol ignored starting at symnum %d"), arg1
);
166 eb_complaint (int arg1
)
168 complaint (&symfile_complaints
,
169 _("Mismatched .eb symbol ignored starting at symnum %d"), arg1
);
172 static void xcoff_initial_scan (struct objfile
*, int);
174 static void scan_xcoff_symtab (struct objfile
*);
176 static char *xcoff_next_symbol_text (struct objfile
*);
178 static void record_include_begin (struct coff_symbol
*);
181 enter_line_range (struct subfile
*, unsigned, unsigned,
182 CORE_ADDR
, CORE_ADDR
, unsigned *);
184 static void init_stringtab (bfd
*, file_ptr
, struct objfile
*);
186 static void xcoff_symfile_init (struct objfile
*);
188 static void xcoff_new_init (struct objfile
*);
190 static void xcoff_symfile_finish (struct objfile
*);
192 static void xcoff_symfile_offsets (struct objfile
*,
193 struct section_addr_info
*addrs
);
195 static char *coff_getfilename (union internal_auxent
*, struct objfile
*);
197 static void read_symbol (struct internal_syment
*, int);
199 static int read_symbol_lineno (int);
201 static CORE_ADDR
read_symbol_nvalue (int);
203 static struct symbol
*process_xcoff_symbol (struct coff_symbol
*,
206 static void read_xcoff_symtab (struct partial_symtab
*);
209 static void add_stab_to_list (char *, struct pending_stabs
**);
212 static int compare_lte (const void *, const void *);
214 static struct linetable
*arrange_linetable (struct linetable
*);
216 static void record_include_end (struct coff_symbol
*);
218 static void process_linenos (CORE_ADDR
, CORE_ADDR
);
221 /* Translate from a COFF section number (target_index) to a SECT_OFF_*
223 static int secnum_to_section (int, struct objfile
*);
224 static asection
*secnum_to_bfd_section (int, struct objfile
*);
226 struct find_targ_sec_arg
231 struct objfile
*objfile
;
234 static void find_targ_sec (bfd
*, asection
*, void *);
237 find_targ_sec (bfd
*abfd
, asection
*sect
, void *obj
)
239 struct find_targ_sec_arg
*args
= (struct find_targ_sec_arg
*) obj
;
240 struct objfile
*objfile
= args
->objfile
;
241 if (sect
->target_index
== args
->targ_index
)
243 /* This is the section. Figure out what SECT_OFF_* code it is. */
244 if (bfd_get_section_flags (abfd
, sect
) & SEC_CODE
)
245 *args
->resultp
= SECT_OFF_TEXT (objfile
);
246 else if (bfd_get_section_flags (abfd
, sect
) & SEC_LOAD
)
247 *args
->resultp
= SECT_OFF_DATA (objfile
);
249 *args
->resultp
= sect
->index
;
250 *args
->bfd_sect
= sect
;
254 /* Return the section number (SECT_OFF_*) that CS points to. */
256 secnum_to_section (int secnum
, struct objfile
*objfile
)
258 int off
= SECT_OFF_TEXT (objfile
);
259 asection
*sect
= NULL
;
260 struct find_targ_sec_arg args
;
261 args
.targ_index
= secnum
;
263 args
.bfd_sect
= §
;
264 args
.objfile
= objfile
;
265 bfd_map_over_sections (objfile
->obfd
, find_targ_sec
, &args
);
269 /* Return the BFD section that CS points to. */
271 secnum_to_bfd_section (int secnum
, struct objfile
*objfile
)
273 int off
= SECT_OFF_TEXT (objfile
);
274 asection
*sect
= NULL
;
275 struct find_targ_sec_arg args
;
276 args
.targ_index
= secnum
;
278 args
.bfd_sect
= §
;
279 args
.objfile
= objfile
;
280 bfd_map_over_sections (objfile
->obfd
, find_targ_sec
, &args
);
284 /* add a given stab string into given stab vector. */
289 add_stab_to_list (char *stabname
, struct pending_stabs
**stabvector
)
291 if (*stabvector
== NULL
)
293 *stabvector
= (struct pending_stabs
*)
294 xmalloc (sizeof (struct pending_stabs
) +
295 INITIAL_STABVECTOR_LENGTH
* sizeof (char *));
296 (*stabvector
)->count
= 0;
297 (*stabvector
)->length
= INITIAL_STABVECTOR_LENGTH
;
299 else if ((*stabvector
)->count
>= (*stabvector
)->length
)
301 (*stabvector
)->length
+= INITIAL_STABVECTOR_LENGTH
;
302 *stabvector
= (struct pending_stabs
*)
303 xrealloc ((char *) *stabvector
, sizeof (struct pending_stabs
) +
304 (*stabvector
)->length
* sizeof (char *));
306 (*stabvector
)->stab
[(*stabvector
)->count
++] = stabname
;
311 /* Linenos are processed on a file-by-file basis.
315 1) xlc (IBM's native c compiler) postpones static function code
316 emission to the end of a compilation unit. This way it can
317 determine if those functions (statics) are needed or not, and
318 can do some garbage collection (I think). This makes line
319 numbers and corresponding addresses unordered, and we end up
320 with a line table like:
337 and that breaks gdb's binary search on line numbers, if the
338 above table is not sorted on line numbers. And that sort
339 should be on function based, since gcc can emit line numbers
342 10 0x100 - for the init/test part of a for stmt.
345 10 0x400 - for the increment part of a for stmt.
347 arrange_linetable() will do this sorting.
349 2) aix symbol table might look like:
351 c_file // beginning of a new file
352 .bi // beginning of include file
353 .ei // end of include file
357 basically, .bi/.ei pairs do not necessarily encapsulate
358 their scope. They need to be recorded, and processed later
359 on when we come the end of the compilation unit.
360 Include table (inclTable) and process_linenos() handle
366 /* compare line table entry addresses. */
369 compare_lte (const void *lte1p
, const void *lte2p
)
371 struct linetable_entry
*lte1
= (struct linetable_entry
*) lte1p
;
372 struct linetable_entry
*lte2
= (struct linetable_entry
*) lte2p
;
373 return lte1
->pc
- lte2
->pc
;
376 /* Given a line table with function entries are marked, arrange its functions
377 in ascending order and strip off function entry markers and return it in
378 a newly created table. If the old one is good enough, return the old one. */
379 /* FIXME: I think all this stuff can be replaced by just passing
380 sort_linevec = 1 to end_symtab. */
382 static struct linetable
*
383 arrange_linetable (struct linetable
*oldLineTb
)
385 int ii
, jj
, newline
, /* new line count */
386 function_count
; /* # of functions */
388 struct linetable_entry
*fentry
; /* function entry vector */
389 int fentry_size
; /* # of function entries */
390 struct linetable
*newLineTb
; /* new line table */
392 #define NUM_OF_FUNCTIONS 20
394 fentry_size
= NUM_OF_FUNCTIONS
;
395 fentry
= (struct linetable_entry
*)
396 xmalloc (fentry_size
* sizeof (struct linetable_entry
));
398 for (function_count
= 0, ii
= 0; ii
< oldLineTb
->nitems
; ++ii
)
401 if (oldLineTb
->item
[ii
].line
== 0)
402 { /* function entry found. */
404 if (function_count
>= fentry_size
)
405 { /* make sure you have room. */
407 fentry
= (struct linetable_entry
*)
408 xrealloc (fentry
, fentry_size
* sizeof (struct linetable_entry
));
410 fentry
[function_count
].line
= ii
;
411 fentry
[function_count
].pc
= oldLineTb
->item
[ii
].pc
;
416 if (function_count
== 0)
421 else if (function_count
> 1)
422 qsort (fentry
, function_count
, sizeof (struct linetable_entry
), compare_lte
);
424 /* allocate a new line table. */
425 newLineTb
= (struct linetable
*)
427 (sizeof (struct linetable
) +
428 (oldLineTb
->nitems
- function_count
) * sizeof (struct linetable_entry
));
430 /* if line table does not start with a function beginning, copy up until
434 if (oldLineTb
->item
[0].line
!= 0)
436 newline
< oldLineTb
->nitems
&& oldLineTb
->item
[newline
].line
; ++newline
)
437 newLineTb
->item
[newline
] = oldLineTb
->item
[newline
];
439 /* Now copy function lines one by one. */
441 for (ii
= 0; ii
< function_count
; ++ii
)
443 for (jj
= fentry
[ii
].line
+ 1;
444 jj
< oldLineTb
->nitems
&& oldLineTb
->item
[jj
].line
!= 0;
446 newLineTb
->item
[newline
] = oldLineTb
->item
[jj
];
449 newLineTb
->nitems
= oldLineTb
->nitems
- function_count
;
453 /* include file support: C_BINCL/C_EINCL pairs will be kept in the
454 following `IncludeChain'. At the end of each symtab (end_symtab),
455 we will determine if we should create additional symtab's to
456 represent if (the include files. */
459 typedef struct _inclTable
461 char *name
; /* include filename */
463 /* Offsets to the line table. end points to the last entry which is
464 part of this include file. */
467 struct subfile
*subfile
;
468 unsigned funStartLine
; /* start line # of its function */
472 #define INITIAL_INCLUDE_TABLE_LENGTH 20
473 static InclTable
*inclTable
; /* global include table */
474 static int inclIndx
; /* last entry to table */
475 static int inclLength
; /* table length */
476 static int inclDepth
; /* nested include depth */
478 static void allocate_include_entry (void);
481 record_include_begin (struct coff_symbol
*cs
)
485 /* In xcoff, we assume include files cannot be nested (not in .c files
486 of course, but in corresponding .s files.). */
488 /* This can happen with old versions of GCC.
489 GCC 2.3.3-930426 does not exhibit this on a test case which
490 a user said produced the message for him. */
491 complaint (&symfile_complaints
, _("Nested C_BINCL symbols"));
495 allocate_include_entry ();
497 inclTable
[inclIndx
].name
= cs
->c_name
;
498 inclTable
[inclIndx
].begin
= cs
->c_value
;
502 record_include_end (struct coff_symbol
*cs
)
508 complaint (&symfile_complaints
, _("Mismatched C_BINCL/C_EINCL pair"));
511 allocate_include_entry ();
513 pTbl
= &inclTable
[inclIndx
];
514 pTbl
->end
= cs
->c_value
;
521 allocate_include_entry (void)
523 if (inclTable
== NULL
)
525 inclTable
= (InclTable
*)
526 xmalloc (sizeof (InclTable
) * INITIAL_INCLUDE_TABLE_LENGTH
);
528 '\0', sizeof (InclTable
) * INITIAL_INCLUDE_TABLE_LENGTH
);
529 inclLength
= INITIAL_INCLUDE_TABLE_LENGTH
;
532 else if (inclIndx
>= inclLength
)
534 inclLength
+= INITIAL_INCLUDE_TABLE_LENGTH
;
535 inclTable
= (InclTable
*)
536 xrealloc (inclTable
, sizeof (InclTable
) * inclLength
);
537 memset (inclTable
+ inclLength
- INITIAL_INCLUDE_TABLE_LENGTH
,
538 '\0', sizeof (InclTable
) * INITIAL_INCLUDE_TABLE_LENGTH
);
542 /* Global variable to pass the psymtab down to all the routines involved
543 in psymtab to symtab processing. */
544 static struct partial_symtab
*this_symtab_psymtab
;
546 /* given the start and end addresses of a compilation unit (or a csect,
547 at times) process its lines and create appropriate line vectors. */
550 process_linenos (CORE_ADDR start
, CORE_ADDR end
)
553 file_ptr max_offset
=
554 ((struct coff_symfile_info
*) this_symtab_psymtab
->objfile
->deprecated_sym_private
)
557 /* subfile structure for the main compilation unit. */
558 struct subfile main_subfile
;
560 /* In the main source file, any time we see a function entry, we
561 reset this variable to function's absolute starting line number.
562 All the following line numbers in the function are relative to
563 this, and we record absolute line numbers in record_line(). */
565 unsigned int main_source_baseline
= 0;
570 ((struct symloc
*) this_symtab_psymtab
->read_symtab_private
)->lineno_off
;
572 goto return_after_cleanup
;
574 memset (&main_subfile
, '\0', sizeof (main_subfile
));
577 /* All source lines were in the main source file. None in include files. */
579 enter_line_range (&main_subfile
, offset
, 0, start
, end
,
580 &main_source_baseline
);
584 /* There was source with line numbers in include files. */
587 coff_data (this_symtab_psymtab
->objfile
->obfd
)->local_linesz
;
588 main_source_baseline
= 0;
590 for (ii
= 0; ii
< inclIndx
; ++ii
)
592 struct subfile
*tmpSubfile
;
594 /* If there is main file source before include file, enter it. */
595 if (offset
< inclTable
[ii
].begin
)
598 (&main_subfile
, offset
, inclTable
[ii
].begin
- linesz
,
599 start
, 0, &main_source_baseline
);
602 /* Have a new subfile for the include file. */
604 tmpSubfile
= inclTable
[ii
].subfile
=
605 (struct subfile
*) xmalloc (sizeof (struct subfile
));
607 memset (tmpSubfile
, '\0', sizeof (struct subfile
));
608 firstLine
= &(inclTable
[ii
].funStartLine
);
610 /* Enter include file's lines now. */
611 enter_line_range (tmpSubfile
, inclTable
[ii
].begin
,
612 inclTable
[ii
].end
, start
, 0, firstLine
);
614 if (offset
<= inclTable
[ii
].end
)
615 offset
= inclTable
[ii
].end
+ linesz
;
618 /* All the include files' line have been processed at this point. Now,
619 enter remaining lines of the main file, if any left. */
620 if (offset
< max_offset
+ 1 - linesz
)
622 enter_line_range (&main_subfile
, offset
, 0, start
, end
,
623 &main_source_baseline
);
627 /* Process main file's line numbers. */
628 if (main_subfile
.line_vector
)
630 struct linetable
*lineTb
, *lv
;
632 lv
= main_subfile
.line_vector
;
634 /* Line numbers are not necessarily ordered. xlc compilation will
635 put static function to the end. */
637 lineTb
= arrange_linetable (lv
);
640 current_subfile
->line_vector
= (struct linetable
*)
641 xrealloc (lv
, (sizeof (struct linetable
)
642 + lv
->nitems
* sizeof (struct linetable_entry
)));
647 current_subfile
->line_vector
= lineTb
;
650 current_subfile
->line_vector_length
=
651 current_subfile
->line_vector
->nitems
;
654 /* Now, process included files' line numbers. */
656 for (ii
= 0; ii
< inclIndx
; ++ii
)
658 if ((inclTable
[ii
].subfile
)->line_vector
) /* Useless if!!! FIXMEmgo */
660 struct linetable
*lineTb
, *lv
;
662 lv
= (inclTable
[ii
].subfile
)->line_vector
;
664 /* Line numbers are not necessarily ordered. xlc compilation will
665 put static function to the end. */
667 lineTb
= arrange_linetable (lv
);
671 /* For the same include file, we might want to have more than one
672 subfile. This happens if we have something like:
680 while foo.h including code in it. (stupid but possible)
681 Since start_subfile() looks at the name and uses an
682 existing one if finds, we need to provide a fake name and
686 start_subfile (inclTable
[ii
].name
, (char *) 0);
689 /* Pick a fake name that will produce the same results as this
690 one when passed to deduce_language_from_filename. Kludge on
692 char *fakename
= strrchr (inclTable
[ii
].name
, '.');
693 if (fakename
== NULL
)
695 start_subfile (fakename
, (char *) 0);
696 xfree (current_subfile
->name
);
698 current_subfile
->name
= xstrdup (inclTable
[ii
].name
);
703 current_subfile
->line_vector
=
704 (struct linetable
*) xrealloc
705 (lv
, (sizeof (struct linetable
)
706 + lv
->nitems
* sizeof (struct linetable_entry
)));
712 current_subfile
->line_vector
= lineTb
;
715 current_subfile
->line_vector_length
=
716 current_subfile
->line_vector
->nitems
;
717 start_subfile (pop_subfile (), (char *) 0);
721 return_after_cleanup
:
723 /* We don't want to keep alloc/free'ing the global include file table. */
726 /* Start with a fresh subfile structure for the next file. */
727 memset (&main_subfile
, '\0', sizeof (struct subfile
));
731 aix_process_linenos (void)
733 /* process line numbers and enter them into line vector */
734 process_linenos (last_source_start_addr
, cur_src_end_addr
);
738 /* Enter a given range of lines into the line vector.
739 can be called in the following two ways:
740 enter_line_range (subfile, beginoffset, endoffset, startaddr, 0, firstLine) or
741 enter_line_range (subfile, beginoffset, 0, startaddr, endaddr, firstLine)
743 endoffset points to the last line table entry that we should pay
747 enter_line_range (struct subfile
*subfile
, unsigned beginoffset
, unsigned endoffset
, /* offsets to line table */
748 CORE_ADDR startaddr
, /* offsets to line table */
749 CORE_ADDR endaddr
, unsigned *firstLine
)
751 unsigned int curoffset
;
754 struct internal_lineno int_lnno
;
755 unsigned int limit_offset
;
759 if (endoffset
== 0 && startaddr
== 0 && endaddr
== 0)
761 curoffset
= beginoffset
;
763 ((struct coff_symfile_info
*) this_symtab_psymtab
->objfile
->deprecated_sym_private
)
768 if (endoffset
>= limit_offset
)
770 complaint (&symfile_complaints
,
771 _("Bad line table offset in C_EINCL directive"));
774 limit_offset
= endoffset
;
779 abfd
= this_symtab_psymtab
->objfile
->obfd
;
780 linesz
= coff_data (abfd
)->local_linesz
;
781 ext_lnno
= alloca (linesz
);
783 while (curoffset
<= limit_offset
)
785 bfd_seek (abfd
, curoffset
, SEEK_SET
);
786 bfd_bread (ext_lnno
, linesz
, abfd
);
787 bfd_coff_swap_lineno_in (abfd
, ext_lnno
, &int_lnno
);
789 /* Find the address this line represents. */
790 addr
= (int_lnno
.l_lnno
791 ? int_lnno
.l_addr
.l_paddr
792 : read_symbol_nvalue (int_lnno
.l_addr
.l_symndx
));
793 addr
+= ANOFFSET (this_symtab_psymtab
->objfile
->section_offsets
,
794 SECT_OFF_TEXT (this_symtab_psymtab
->objfile
));
796 if (addr
< startaddr
|| (endaddr
&& addr
>= endaddr
))
799 if (int_lnno
.l_lnno
== 0)
801 *firstLine
= read_symbol_lineno (int_lnno
.l_addr
.l_symndx
);
802 record_line (subfile
, 0, addr
);
806 record_line (subfile
, *firstLine
+ int_lnno
.l_lnno
, addr
);
812 /* Save the vital information for use when closing off the current file.
813 NAME is the file name the symbols came from, START_ADDR is the first
814 text address for the file, and SIZE is the number of bytes of text. */
816 #define complete_symtab(name, start_addr) { \
817 last_source_file = savestring (name, strlen (name)); \
818 last_source_start_addr = start_addr; \
822 /* Refill the symbol table input buffer
823 and set the variables that control fetching entries from it.
824 Reports an error if no data available.
825 This function can read past the end of the symbol table
826 (into the string table) but this does no harm. */
828 /* Reading symbol table has to be fast! Keep the followings as macros, rather
831 #define RECORD_MINIMAL_SYMBOL(NAME, ADDR, TYPE, SECTION, OBJFILE) \
835 if (namestr[0] == '.') ++namestr; \
836 prim_record_minimal_symbol_and_info (namestr, (ADDR), (TYPE), \
837 (char *)NULL, (SECTION), (asection *)NULL, (OBJFILE)); \
838 misc_func_recorded = 1; \
842 /* xcoff has static blocks marked in `.bs', `.es' pairs. They cannot be
843 nested. At any given time, a symbol can only be in one static block.
844 This is the base address of current static block, zero if non exists. */
846 static int static_block_base
= 0;
848 /* Section number for the current static block. */
850 static int static_block_section
= -1;
852 /* true if space for symbol name has been allocated. */
854 static int symname_alloced
= 0;
856 /* Next symbol to read. Pointer into raw seething symbol table. */
858 static char *raw_symbol
;
860 /* This is the function which stabsread.c calls to get symbol
864 xcoff_next_symbol_text (struct objfile
*objfile
)
866 struct internal_syment symbol
;
868 /* FIXME: is this the same as the passed arg? */
869 if (this_symtab_psymtab
)
870 objfile
= this_symtab_psymtab
->objfile
;
872 bfd_coff_swap_sym_in (objfile
->obfd
, raw_symbol
, &symbol
);
875 complaint (&symfile_complaints
, _("Unexpected symbol continuation"));
877 /* Return something which points to '\0' and hope the symbol reading
878 code does something reasonable. */
881 else if (symbol
.n_sclass
& 0x80)
884 ((struct coff_symfile_info
*) objfile
->deprecated_sym_private
)->debugsec
887 coff_data (objfile
->obfd
)->local_symesz
;
892 complaint (&symfile_complaints
, _("Unexpected symbol continuation"));
894 /* Return something which points to '\0' and hope the symbol reading
895 code does something reasonable. */
901 /* Read symbols for a given partial symbol table. */
904 read_xcoff_symtab (struct partial_symtab
*pst
)
906 struct objfile
*objfile
= pst
->objfile
;
907 bfd
*abfd
= objfile
->obfd
;
908 char *raw_auxptr
; /* Pointer to first raw aux entry for sym */
909 char *strtbl
= ((struct coff_symfile_info
*) objfile
->deprecated_sym_private
)->strtbl
;
911 ((struct coff_symfile_info
*) objfile
->deprecated_sym_private
)->debugsec
;
912 char *debugfmt
= bfd_xcoff_is_xcoff64 (abfd
) ? "XCOFF64" : "XCOFF";
914 struct internal_syment symbol
[1];
915 union internal_auxent main_aux
;
916 struct coff_symbol cs
[1];
917 CORE_ADDR file_start_addr
= 0;
918 CORE_ADDR file_end_addr
= 0;
920 int next_file_symnum
= -1;
921 unsigned int max_symnum
;
922 int just_started
= 1;
924 int fcn_start_addr
= 0;
926 struct coff_symbol fcn_stab_saved
= { 0 };
928 /* fcn_cs_saved is global because process_xcoff_symbol needs it. */
929 union internal_auxent fcn_aux_saved
;
930 struct context_stack
*new;
932 char *filestring
= " _start_ "; /* Name of the current file. */
934 char *last_csect_name
; /* last seen csect's name and value */
935 CORE_ADDR last_csect_val
;
938 this_symtab_psymtab
= pst
;
940 /* Get the appropriate COFF "constants" related to the file we're
942 local_symesz
= coff_data (abfd
)->local_symesz
;
944 last_source_file
= NULL
;
949 start_symtab (filestring
, (char *) NULL
, file_start_addr
);
950 record_debugformat (debugfmt
);
951 symnum
= ((struct symloc
*) pst
->read_symtab_private
)->first_symnum
;
953 symnum
+ ((struct symloc
*) pst
->read_symtab_private
)->numsyms
;
954 first_object_file_end
= 0;
957 ((struct coff_symfile_info
*) objfile
->deprecated_sym_private
)->symtbl
958 + symnum
* local_symesz
;
960 while (symnum
< max_symnum
)
963 QUIT
; /* make this command interruptable. */
965 /* READ_ONE_SYMBOL (symbol, cs, symname_alloced); */
966 /* read one symbol into `cs' structure. After processing the
967 whole symbol table, only string table will be kept in memory,
968 symbol table and debug section of xcoff will be freed. Thus
969 we can mark symbols with names in string table as
974 /* Swap and align the symbol into a reasonable C structure. */
975 bfd_coff_swap_sym_in (abfd
, raw_symbol
, symbol
);
977 cs
->c_symnum
= symnum
;
978 cs
->c_naux
= symbol
->n_numaux
;
979 if (symbol
->n_zeroes
)
982 /* We must use the original, unswapped, name here so the name field
983 pointed to by cs->c_name will persist throughout xcoffread. If
984 we use the new field, it gets overwritten for each symbol. */
985 cs
->c_name
= ((struct external_syment
*) raw_symbol
)->e
.e_name
;
986 /* If it's exactly E_SYMNMLEN characters long it isn't
988 if (cs
->c_name
[E_SYMNMLEN
- 1] != '\0')
991 p
= obstack_alloc (&objfile
->objfile_obstack
, E_SYMNMLEN
+ 1);
992 strncpy (p
, cs
->c_name
, E_SYMNMLEN
);
993 p
[E_SYMNMLEN
] = '\0';
998 else if (symbol
->n_sclass
& 0x80)
1000 cs
->c_name
= debugsec
+ symbol
->n_offset
;
1001 symname_alloced
= 0;
1005 /* in string table */
1006 cs
->c_name
= strtbl
+ (int) symbol
->n_offset
;
1007 symname_alloced
= 1;
1009 cs
->c_value
= symbol
->n_value
;
1010 cs
->c_sclass
= symbol
->n_sclass
;
1011 cs
->c_secnum
= symbol
->n_scnum
;
1012 cs
->c_type
= (unsigned) symbol
->n_type
;
1014 raw_symbol
+= local_symesz
;
1017 /* Save addr of first aux entry. */
1018 raw_auxptr
= raw_symbol
;
1020 /* Skip all the auxents associated with this symbol. */
1021 for (ii
= symbol
->n_numaux
; ii
; --ii
)
1023 raw_symbol
+= coff_data (abfd
)->local_auxesz
;
1028 /* if symbol name starts with ".$" or "$", ignore it. */
1029 if (cs
->c_name
[0] == '$'
1030 || (cs
->c_name
[1] == '$' && cs
->c_name
[0] == '.'))
1033 if (cs
->c_symnum
== next_file_symnum
&& cs
->c_sclass
!= C_FILE
)
1035 if (last_source_file
)
1038 end_symtab (cur_src_end_addr
, objfile
, SECT_OFF_TEXT (objfile
));
1043 start_symtab ("_globals_", (char *) NULL
, (CORE_ADDR
) 0);
1044 record_debugformat (debugfmt
);
1045 cur_src_end_addr
= first_object_file_end
;
1046 /* done with all files, everything from here on is globals */
1049 if ((cs
->c_sclass
== C_EXT
|| cs
->c_sclass
== C_HIDEXT
)
1052 /* Dealing with a symbol with a csect entry. */
1054 #define CSECT(PP) ((PP)->x_csect)
1055 #define CSECT_LEN(PP) (CSECT(PP).x_scnlen.l)
1056 #define CSECT_ALIGN(PP) (SMTYP_ALIGN(CSECT(PP).x_smtyp))
1057 #define CSECT_SMTYP(PP) (SMTYP_SMTYP(CSECT(PP).x_smtyp))
1058 #define CSECT_SCLAS(PP) (CSECT(PP).x_smclas)
1060 /* Convert the auxent to something we can access. */
1061 bfd_coff_swap_aux_in (abfd
, raw_auxptr
, cs
->c_type
, cs
->c_sclass
,
1062 0, cs
->c_naux
, &main_aux
);
1064 switch (CSECT_SMTYP (&main_aux
))
1068 /* Ignore all external references. */
1072 /* A section description. */
1074 switch (CSECT_SCLAS (&main_aux
))
1080 /* A program csect is seen. We have to allocate one
1081 symbol table for each program csect. Normally gdb
1082 prefers one symtab for each source file. In case
1083 of AIX, one source file might include more than one
1084 [PR] csect, and they don't have to be adjacent in
1085 terms of the space they occupy in memory. Thus, one
1086 single source file might get fragmented in the
1087 memory and gdb's file start and end address
1088 approach does not work! GCC (and I think xlc) seem
1089 to put all the code in the unnamed program csect. */
1091 if (last_csect_name
)
1093 complete_symtab (filestring
, file_start_addr
);
1094 cur_src_end_addr
= file_end_addr
;
1095 end_symtab (file_end_addr
, objfile
, SECT_OFF_TEXT (objfile
));
1098 /* Give all csects for this source file the same
1100 start_symtab (filestring
, NULL
, (CORE_ADDR
) 0);
1101 record_debugformat (debugfmt
);
1104 /* If this is the very first csect seen,
1105 basically `__start'. */
1108 first_object_file_end
1109 = cs
->c_value
+ CSECT_LEN (&main_aux
);
1114 cs
->c_value
+ ANOFFSET (objfile
->section_offsets
,
1115 SECT_OFF_TEXT (objfile
));
1116 file_end_addr
= file_start_addr
+ CSECT_LEN (&main_aux
);
1118 if (cs
->c_name
&& (cs
->c_name
[0] == '.'
1119 || cs
->c_name
[0] == '@'))
1121 last_csect_name
= cs
->c_name
;
1122 last_csect_val
= cs
->c_value
;
1123 last_csect_sec
= secnum_to_section (cs
->c_secnum
, objfile
);
1128 /* All other symbols are put into the minimal symbol
1141 /* Ignore the symbol. */
1149 switch (CSECT_SCLAS (&main_aux
))
1152 /* a function entry point. */
1153 function_entry_point
:
1155 fcn_start_addr
= cs
->c_value
;
1157 /* save the function header info, which will be used
1158 when `.bf' is seen. */
1160 fcn_aux_saved
= main_aux
;
1164 /* shared library function trampoline code entry point. */
1168 /* The symbols often have the same names as debug symbols for
1169 functions, and confuse lookup_symbol. */
1173 /* xlc puts each variable in a separate csect, so we get
1174 an XTY_SD for each variable. But gcc puts several
1175 variables in a csect, so that each variable only gets
1176 an XTY_LD. This will typically be XMC_RW; I suspect
1177 XMC_RO and XMC_BS might be possible too.
1178 These variables are put in the minimal symbol table
1185 /* Common symbols are put into the minimal symbol table only. */
1193 /* If explicitly specified as a function, treat is as one. This check
1194 evaluates to true for @FIX* bigtoc CSECT symbols, so it must occur
1195 after the above CSECT check. */
1196 if (ISFCN (cs
->c_type
) && cs
->c_sclass
!= C_TPDEF
)
1198 bfd_coff_swap_aux_in (abfd
, raw_auxptr
, cs
->c_type
, cs
->c_sclass
,
1199 0, cs
->c_naux
, &main_aux
);
1200 goto function_entry_point
;
1203 switch (cs
->c_sclass
)
1208 /* c_value field contains symnum of next .file entry in table
1209 or symnum of first global after last .file. */
1211 next_file_symnum
= cs
->c_value
;
1213 /* Complete symbol table for last object file containing
1214 debugging information. */
1216 /* Whether or not there was a csect in the previous file, we
1217 have to call `end_stabs' and `start_stabs' to reset
1218 type_vector, line_vector, etc. structures. */
1220 complete_symtab (filestring
, file_start_addr
);
1221 cur_src_end_addr
= file_end_addr
;
1222 end_symtab (file_end_addr
, objfile
, SECT_OFF_TEXT (objfile
));
1225 /* XCOFF, according to the AIX 3.2 documentation, puts the filename
1226 in cs->c_name. But xlc 1.3.0.2 has decided to do things the
1227 standard COFF way and put it in the auxent. We use the auxent if
1228 the symbol is ".file" and an auxent exists, otherwise use the symbol
1229 itself. Simple enough. */
1230 if (!strcmp (cs
->c_name
, ".file") && cs
->c_naux
> 0)
1232 bfd_coff_swap_aux_in (abfd
, raw_auxptr
, cs
->c_type
, cs
->c_sclass
,
1233 0, cs
->c_naux
, &main_aux
);
1234 filestring
= coff_getfilename (&main_aux
, objfile
);
1237 filestring
= cs
->c_name
;
1240 start_symtab (filestring
, (char *) NULL
, (CORE_ADDR
) 0);
1241 record_debugformat (debugfmt
);
1242 last_csect_name
= 0;
1244 /* reset file start and end addresses. A compilation unit with no text
1245 (only data) should have zero file boundaries. */
1246 file_start_addr
= file_end_addr
= 0;
1250 fcn_stab_saved
= *cs
;
1254 if (strcmp (cs
->c_name
, ".bf") == 0)
1256 CORE_ADDR off
= ANOFFSET (objfile
->section_offsets
,
1257 SECT_OFF_TEXT (objfile
));
1258 bfd_coff_swap_aux_in (abfd
, raw_auxptr
, cs
->c_type
, cs
->c_sclass
,
1259 0, cs
->c_naux
, &main_aux
);
1261 within_function
= 1;
1263 new = push_context (0, fcn_start_addr
+ off
);
1265 new->name
= define_symbol
1266 (fcn_cs_saved
.c_value
+ off
,
1267 fcn_stab_saved
.c_name
, 0, 0, objfile
);
1268 if (new->name
!= NULL
)
1269 SYMBOL_SECTION (new->name
) = SECT_OFF_TEXT (objfile
);
1271 else if (strcmp (cs
->c_name
, ".ef") == 0)
1274 bfd_coff_swap_aux_in (abfd
, raw_auxptr
, cs
->c_type
, cs
->c_sclass
,
1275 0, cs
->c_naux
, &main_aux
);
1277 /* The value of .ef is the address of epilogue code;
1278 not useful for gdb. */
1279 /* { main_aux.x_sym.x_misc.x_lnsz.x_lnno
1280 contains number of lines to '}' */
1282 if (context_stack_depth
<= 0)
1283 { /* We attempted to pop an empty context stack */
1284 ef_complaint (cs
->c_symnum
);
1285 within_function
= 0;
1288 new = pop_context ();
1289 /* Stack must be empty now. */
1290 if (context_stack_depth
> 0 || new == NULL
)
1292 ef_complaint (cs
->c_symnum
);
1293 within_function
= 0;
1297 finish_block (new->name
, &local_symbols
, new->old_blocks
,
1299 (fcn_cs_saved
.c_value
1300 + fcn_aux_saved
.x_sym
.x_misc
.x_fsize
1301 + ANOFFSET (objfile
->section_offsets
,
1302 SECT_OFF_TEXT (objfile
))),
1304 within_function
= 0;
1309 /* Begin static block. */
1311 struct internal_syment symbol
;
1313 read_symbol (&symbol
, cs
->c_value
);
1314 static_block_base
= symbol
.n_value
;
1315 static_block_section
=
1316 secnum_to_section (symbol
.n_scnum
, objfile
);
1321 /* End of static block. */
1322 static_block_base
= 0;
1323 static_block_section
= -1;
1334 complaint (&symfile_complaints
, _("Unrecognized storage class %d."),
1349 /* beginning of include file */
1350 /* In xlc output, C_BINCL/C_EINCL pair doesn't show up in sorted
1351 order. Thus, when wee see them, we might not know enough info
1352 to process them. Thus, we'll be saving them into a table
1353 (inclTable) and postpone their processing. */
1355 record_include_begin (cs
);
1359 /* End of include file. */
1360 /* See the comment after case C_BINCL. */
1361 record_include_end (cs
);
1365 if (strcmp (cs
->c_name
, ".bb") == 0)
1368 new = push_context (depth
,
1370 + ANOFFSET (objfile
->section_offsets
,
1371 SECT_OFF_TEXT (objfile
))));
1373 else if (strcmp (cs
->c_name
, ".eb") == 0)
1375 if (context_stack_depth
<= 0)
1376 { /* We attempted to pop an empty context stack */
1377 eb_complaint (cs
->c_symnum
);
1380 new = pop_context ();
1381 if (depth
-- != new->depth
)
1383 eb_complaint (cs
->c_symnum
);
1386 if (local_symbols
&& context_stack_depth
> 0)
1388 /* Make a block for the local symbols within. */
1389 finish_block (new->name
, &local_symbols
, new->old_blocks
,
1392 + ANOFFSET (objfile
->section_offsets
,
1393 SECT_OFF_TEXT (objfile
))),
1396 local_symbols
= new->locals
;
1401 process_xcoff_symbol (cs
, objfile
);
1406 if (last_source_file
)
1410 complete_symtab (filestring
, file_start_addr
);
1411 cur_src_end_addr
= file_end_addr
;
1412 s
= end_symtab (file_end_addr
, objfile
, SECT_OFF_TEXT (objfile
));
1413 /* When reading symbols for the last C_FILE of the objfile, try
1414 to make sure that we set pst->symtab to the symtab for the
1415 file, not to the _globals_ symtab. I'm not sure whether this
1416 actually works right or when/if it comes up. */
1417 if (pst
->symtab
== NULL
)
1423 #define SYMBOL_DUP(SYMBOL1, SYMBOL2) \
1424 (SYMBOL2) = (struct symbol *) \
1425 obstack_alloc (&objfile->objfile_obstack, sizeof (struct symbol)); \
1426 *(SYMBOL2) = *(SYMBOL1);
1429 #define SYMNAME_ALLOC(NAME, ALLOCED) \
1430 (ALLOCED) ? (NAME) : obsavestring ((NAME), strlen (NAME), &objfile->objfile_obstack);
1433 /* process one xcoff symbol. */
1435 static struct symbol
*
1436 process_xcoff_symbol (struct coff_symbol
*cs
, struct objfile
*objfile
)
1438 struct symbol onesymbol
;
1439 struct symbol
*sym
= &onesymbol
;
1440 struct symbol
*sym2
= NULL
;
1446 if (cs
->c_secnum
< 0)
1448 /* The value is a register number, offset within a frame, etc.,
1449 and does not get relocated. */
1455 sec
= secnum_to_section (cs
->c_secnum
, objfile
);
1456 off
= ANOFFSET (objfile
->section_offsets
, sec
);
1463 memset (sym
, '\0', sizeof (struct symbol
));
1465 /* default assumptions */
1466 SYMBOL_VALUE_ADDRESS (sym
) = cs
->c_value
+ off
;
1467 SYMBOL_DOMAIN (sym
) = VAR_DOMAIN
;
1468 SYMBOL_SECTION (sym
) = secnum_to_section (cs
->c_secnum
, objfile
);
1470 if (ISFCN (cs
->c_type
))
1472 /* At this point, we don't know the type of the function. This
1473 will be patched with the type from its stab entry later on in
1474 patch_block_stabs (), unless the file was compiled without -g. */
1476 DEPRECATED_SYMBOL_NAME (sym
) = SYMNAME_ALLOC (name
, symname_alloced
);
1477 SYMBOL_TYPE (sym
) = builtin_type (current_gdbarch
)->nodebug_text_symbol
;
1479 SYMBOL_CLASS (sym
) = LOC_BLOCK
;
1480 SYMBOL_DUP (sym
, sym2
);
1482 if (cs
->c_sclass
== C_EXT
)
1483 add_symbol_to_list (sym2
, &global_symbols
);
1484 else if (cs
->c_sclass
== C_HIDEXT
|| cs
->c_sclass
== C_STAT
)
1485 add_symbol_to_list (sym2
, &file_symbols
);
1489 /* In case we can't figure out the type, provide default. */
1490 SYMBOL_TYPE (sym
) = builtin_type (current_gdbarch
)->nodebug_data_symbol
;
1492 switch (cs
->c_sclass
)
1495 /* The values of functions and global symbols are now resolved
1496 via the global_sym_chain in stabsread.c. */
1498 if (fcn_cs_saved
.c_sclass
== C_EXT
)
1499 add_stab_to_list (name
, &global_stabs
);
1501 add_stab_to_list (name
, &file_stabs
);
1505 add_stab_to_list (name
, &global_stabs
);
1510 common_block_start (cs
->c_name
, objfile
);
1514 common_block_end (objfile
);
1518 complaint (&symfile_complaints
, _("Unexpected storage class: %d"),
1531 sym
= define_symbol (cs
->c_value
+ off
, cs
->c_name
, 0, 0, objfile
);
1534 SYMBOL_SECTION (sym
) = sec
;
1541 /* For xlc (not GCC), the 'V' symbol descriptor is used for
1542 all statics and we need to distinguish file-scope versus
1543 function-scope using within_function. We do this by
1544 changing the string we pass to define_symbol to use 'S'
1545 where we need to, which is not necessarily super-clean,
1546 but seems workable enough. */
1548 if (*name
== ':' || (pp
= (char *) strchr (name
, ':')) == NULL
)
1552 if (*pp
== 'V' && !within_function
)
1554 sym
= define_symbol ((cs
->c_value
1555 + ANOFFSET (objfile
->section_offsets
,
1556 static_block_section
)),
1557 cs
->c_name
, 0, 0, objfile
);
1560 SYMBOL_VALUE_ADDRESS (sym
) += static_block_base
;
1561 SYMBOL_SECTION (sym
) = static_block_section
;
1570 /* Extract the file name from the aux entry of a C_FILE symbol.
1571 Result is in static storage and is only good for temporary use. */
1574 coff_getfilename (union internal_auxent
*aux_entry
, struct objfile
*objfile
)
1576 static char buffer
[BUFSIZ
];
1578 if (aux_entry
->x_file
.x_n
.x_zeroes
== 0)
1580 ((struct coff_symfile_info
*) objfile
->deprecated_sym_private
)->strtbl
1581 + aux_entry
->x_file
.x_n
.x_offset
);
1584 strncpy (buffer
, aux_entry
->x_file
.x_fname
, FILNMLEN
);
1585 buffer
[FILNMLEN
] = '\0';
1590 /* Set *SYMBOL to symbol number symno in symtbl. */
1592 read_symbol (struct internal_syment
*symbol
, int symno
)
1595 ((struct coff_symfile_info
*) this_symtab_psymtab
->objfile
->deprecated_sym_private
)->symtbl_num_syms
;
1597 ((struct coff_symfile_info
*) this_symtab_psymtab
->objfile
->deprecated_sym_private
)->symtbl
;
1598 if (symno
< 0 || symno
>= nsyms
)
1600 complaint (&symfile_complaints
, _("Invalid symbol offset"));
1601 symbol
->n_value
= 0;
1602 symbol
->n_scnum
= -1;
1605 bfd_coff_swap_sym_in (this_symtab_psymtab
->objfile
->obfd
,
1606 stbl
+ (symno
* local_symesz
),
1610 /* Get value corresponding to symbol number symno in symtbl. */
1613 read_symbol_nvalue (int symno
)
1615 struct internal_syment symbol
[1];
1617 read_symbol (symbol
, symno
);
1618 return symbol
->n_value
;
1622 /* Find the address of the function corresponding to symno, where
1623 symno is the symbol pointed to by the linetable. */
1626 read_symbol_lineno (int symno
)
1628 struct objfile
*objfile
= this_symtab_psymtab
->objfile
;
1629 int xcoff64
= bfd_xcoff_is_xcoff64 (objfile
->obfd
);
1631 struct coff_symfile_info
*info
=
1632 (struct coff_symfile_info
*)objfile
->deprecated_sym_private
;
1633 int nsyms
= info
->symtbl_num_syms
;
1634 char *stbl
= info
->symtbl
;
1635 char *strtbl
= info
->strtbl
;
1637 struct internal_syment symbol
[1];
1638 union internal_auxent main_aux
[1];
1642 bf_notfound_complaint ();
1646 /* Note that just searching for a short distance (e.g. 50 symbols)
1647 is not enough, at least in the following case.
1650 [many .stabx entries]
1651 [a few functions, referring to foo]
1655 What happens here is that the assembler moves the .stabx entries
1656 to right before the ".bf" for foo, but the symbol for "foo" is before
1657 all the stabx entries. See PR gdb/2222. */
1659 /* Maintaining a table of .bf entries might be preferable to this search.
1660 If I understand things correctly it would need to be done only for
1661 the duration of a single psymtab to symtab conversion. */
1662 while (symno
< nsyms
)
1664 bfd_coff_swap_sym_in (symfile_bfd
,
1665 stbl
+ (symno
* local_symesz
), symbol
);
1666 if (symbol
->n_sclass
== C_FCN
)
1668 char *name
= xcoff64
? strtbl
+ symbol
->n_offset
: symbol
->n_name
;
1669 if (strcmp (name
, ".bf") == 0)
1672 symno
+= symbol
->n_numaux
+ 1;
1675 bf_notfound_complaint ();
1679 /* take aux entry and return its lineno */
1681 bfd_coff_swap_aux_in (objfile
->obfd
, stbl
+ symno
* local_symesz
,
1682 symbol
->n_type
, symbol
->n_sclass
,
1683 0, symbol
->n_numaux
, main_aux
);
1685 return main_aux
->x_sym
.x_misc
.x_lnsz
.x_lnno
;
1688 /* Support for line number handling */
1690 /* This function is called for every section; it finds the outer limits
1691 * of the line table (minimum and maximum file offset) so that the
1692 * mainline code can read the whole thing for efficiency.
1695 find_linenos (struct bfd
*abfd
, struct bfd_section
*asect
, void *vpinfo
)
1697 struct coff_symfile_info
*info
;
1699 file_ptr offset
, maxoff
;
1701 count
= asect
->lineno_count
;
1703 if (strcmp (asect
->name
, ".text") != 0 || count
== 0)
1706 size
= count
* coff_data (abfd
)->local_linesz
;
1707 info
= (struct coff_symfile_info
*) vpinfo
;
1708 offset
= asect
->line_filepos
;
1709 maxoff
= offset
+ size
;
1711 if (offset
< info
->min_lineno_offset
|| info
->min_lineno_offset
== 0)
1712 info
->min_lineno_offset
= offset
;
1714 if (maxoff
> info
->max_lineno_offset
)
1715 info
->max_lineno_offset
= maxoff
;
1718 static void xcoff_psymtab_to_symtab_1 (struct partial_symtab
*);
1721 xcoff_psymtab_to_symtab_1 (struct partial_symtab
*pst
)
1723 struct cleanup
*old_chain
;
1732 (gdb_stderr
, "Psymtab for %s already read in. Shouldn't happen.\n",
1737 /* Read in all partial symtabs on which this one is dependent */
1738 for (i
= 0; i
< pst
->number_of_dependencies
; i
++)
1739 if (!pst
->dependencies
[i
]->readin
)
1741 /* Inform about additional files that need to be read in. */
1744 fputs_filtered (" ", gdb_stdout
);
1746 fputs_filtered ("and ", gdb_stdout
);
1748 printf_filtered ("%s...", pst
->dependencies
[i
]->filename
);
1749 wrap_here (""); /* Flush output */
1750 gdb_flush (gdb_stdout
);
1752 xcoff_psymtab_to_symtab_1 (pst
->dependencies
[i
]);
1755 if (((struct symloc
*) pst
->read_symtab_private
)->numsyms
!= 0)
1757 /* Init stuff necessary for reading in symbols. */
1760 old_chain
= make_cleanup (really_free_pendings
, 0);
1762 read_xcoff_symtab (pst
);
1764 do_cleanups (old_chain
);
1770 static void xcoff_psymtab_to_symtab (struct partial_symtab
*);
1772 /* Read in all of the symbols for a given psymtab for real.
1773 Be verbose about it if the user wants that. */
1776 xcoff_psymtab_to_symtab (struct partial_symtab
*pst
)
1786 (gdb_stderr
, "Psymtab for %s already read in. Shouldn't happen.\n",
1791 if (((struct symloc
*) pst
->read_symtab_private
)->numsyms
!= 0
1792 || pst
->number_of_dependencies
)
1794 /* Print the message now, before reading the string table,
1795 to avoid disconcerting pauses. */
1798 printf_filtered ("Reading in symbols for %s...", pst
->filename
);
1799 gdb_flush (gdb_stdout
);
1802 sym_bfd
= pst
->objfile
->obfd
;
1804 next_symbol_text_func
= xcoff_next_symbol_text
;
1806 xcoff_psymtab_to_symtab_1 (pst
);
1808 /* Match with global symbols. This only needs to be done once,
1809 after all of the symtabs and dependencies have been read in. */
1810 scan_file_globals (pst
->objfile
);
1812 /* Finish up the debug error message. */
1814 printf_filtered ("done.\n");
1819 xcoff_new_init (struct objfile
*objfile
)
1821 stabsread_new_init ();
1822 buildsym_new_init ();
1825 /* Do initialization in preparation for reading symbols from OBJFILE.
1827 We will only be called if this is an XCOFF or XCOFF-like file.
1828 BFD handles figuring out the format of the file, and code in symfile.c
1829 uses BFD's determination to vector to us. */
1832 xcoff_symfile_init (struct objfile
*objfile
)
1834 /* Allocate struct to keep track of the symfile */
1835 objfile
->deprecated_sym_private
= xmalloc (sizeof (struct coff_symfile_info
));
1837 /* XCOFF objects may be reordered, so set OBJF_REORDERED. If we
1838 find this causes a significant slowdown in gdb then we could
1839 set it in the debug symbol readers only when necessary. */
1840 objfile
->flags
|= OBJF_REORDERED
;
1842 init_entry_point_info (objfile
);
1845 /* Perform any local cleanups required when we are done with a particular
1846 objfile. I.E, we are in the process of discarding all symbol information
1847 for an objfile, freeing up all memory held for it, and unlinking the
1848 objfile struct from the global list of known objfiles. */
1851 xcoff_symfile_finish (struct objfile
*objfile
)
1853 if (objfile
->deprecated_sym_private
!= NULL
)
1855 xfree (objfile
->deprecated_sym_private
);
1858 /* Start with a fresh include table for the next objfile. */
1864 inclIndx
= inclLength
= inclDepth
= 0;
1869 init_stringtab (bfd
*abfd
, file_ptr offset
, struct objfile
*objfile
)
1873 unsigned char lengthbuf
[4];
1876 ((struct coff_symfile_info
*) objfile
->deprecated_sym_private
)->strtbl
= NULL
;
1878 if (bfd_seek (abfd
, offset
, SEEK_SET
) < 0)
1879 error (_("cannot seek to string table in %s: %s"),
1880 bfd_get_filename (abfd
), bfd_errmsg (bfd_get_error ()));
1882 val
= bfd_bread ((char *) lengthbuf
, sizeof lengthbuf
, abfd
);
1883 length
= bfd_h_get_32 (abfd
, lengthbuf
);
1885 /* If no string table is needed, then the file may end immediately
1886 after the symbols. Just return with `strtbl' set to NULL. */
1888 if (val
!= sizeof lengthbuf
|| length
< sizeof lengthbuf
)
1891 /* Allocate string table from objfile_obstack. We will need this table
1892 as long as we have its symbol table around. */
1894 strtbl
= (char *) obstack_alloc (&objfile
->objfile_obstack
, length
);
1895 ((struct coff_symfile_info
*) objfile
->deprecated_sym_private
)->strtbl
= strtbl
;
1897 /* Copy length buffer, the first byte is usually zero and is
1898 used for stabs with a name length of zero. */
1899 memcpy (strtbl
, lengthbuf
, sizeof lengthbuf
);
1900 if (length
== sizeof lengthbuf
)
1903 val
= bfd_bread (strtbl
+ sizeof lengthbuf
, length
- sizeof lengthbuf
, abfd
);
1905 if (val
!= length
- sizeof lengthbuf
)
1906 error (_("cannot read string table from %s: %s"),
1907 bfd_get_filename (abfd
), bfd_errmsg (bfd_get_error ()));
1908 if (strtbl
[length
- 1] != '\0')
1909 error (_("bad symbol file: string table does not end with null character"));
1914 /* If we have not yet seen a function for this psymtab, this is 0. If we
1915 have seen one, it is the offset in the line numbers of the line numbers
1917 static unsigned int first_fun_line_offset
;
1919 static struct partial_symtab
*xcoff_start_psymtab
1920 (struct objfile
*, char *, int,
1921 struct partial_symbol
**, struct partial_symbol
**);
1923 /* Allocate and partially fill a partial symtab. It will be
1924 completely filled at the end of the symbol list.
1926 SYMFILE_NAME is the name of the symbol-file we are reading from, and ADDR
1927 is the address relative to which its symbols are (incremental) or 0
1930 static struct partial_symtab
*
1931 xcoff_start_psymtab (struct objfile
*objfile
, char *filename
, int first_symnum
,
1932 struct partial_symbol
**global_syms
,
1933 struct partial_symbol
**static_syms
)
1935 struct partial_symtab
*result
=
1936 start_psymtab_common (objfile
, objfile
->section_offsets
,
1938 /* We fill in textlow later. */
1940 global_syms
, static_syms
);
1942 result
->read_symtab_private
= (char *)
1943 obstack_alloc (&objfile
->objfile_obstack
, sizeof (struct symloc
));
1944 ((struct symloc
*) result
->read_symtab_private
)->first_symnum
= first_symnum
;
1945 result
->read_symtab
= xcoff_psymtab_to_symtab
;
1947 /* Deduce the source language from the filename for this psymtab. */
1948 psymtab_language
= deduce_language_from_filename (filename
);
1953 static struct partial_symtab
*xcoff_end_psymtab
1954 (struct partial_symtab
*, char **, int, int,
1955 struct partial_symtab
**, int, int);
1957 /* Close off the current usage of PST.
1958 Returns PST, or NULL if the partial symtab was empty and thrown away.
1960 CAPPING_SYMBOL_NUMBER is the end of pst (exclusive).
1962 INCLUDE_LIST, NUM_INCLUDES, DEPENDENCY_LIST, and NUMBER_DEPENDENCIES
1963 are the information for includes and dependencies. */
1965 static struct partial_symtab
*
1966 xcoff_end_psymtab (struct partial_symtab
*pst
, char **include_list
,
1967 int num_includes
, int capping_symbol_number
,
1968 struct partial_symtab
**dependency_list
,
1969 int number_dependencies
, int textlow_not_set
)
1972 struct objfile
*objfile
= pst
->objfile
;
1974 if (capping_symbol_number
!= -1)
1975 ((struct symloc
*) pst
->read_symtab_private
)->numsyms
=
1976 capping_symbol_number
1977 - ((struct symloc
*) pst
->read_symtab_private
)->first_symnum
;
1978 ((struct symloc
*) pst
->read_symtab_private
)->lineno_off
=
1979 first_fun_line_offset
;
1980 first_fun_line_offset
= 0;
1981 pst
->n_global_syms
=
1982 objfile
->global_psymbols
.next
- (objfile
->global_psymbols
.list
+ pst
->globals_offset
);
1983 pst
->n_static_syms
=
1984 objfile
->static_psymbols
.next
- (objfile
->static_psymbols
.list
+ pst
->statics_offset
);
1986 pst
->number_of_dependencies
= number_dependencies
;
1987 if (number_dependencies
)
1989 pst
->dependencies
= (struct partial_symtab
**)
1990 obstack_alloc (&objfile
->objfile_obstack
,
1991 number_dependencies
* sizeof (struct partial_symtab
*));
1992 memcpy (pst
->dependencies
, dependency_list
,
1993 number_dependencies
* sizeof (struct partial_symtab
*));
1996 pst
->dependencies
= 0;
1998 for (i
= 0; i
< num_includes
; i
++)
2000 struct partial_symtab
*subpst
=
2001 allocate_psymtab (include_list
[i
], objfile
);
2003 subpst
->section_offsets
= pst
->section_offsets
;
2004 subpst
->read_symtab_private
=
2005 (char *) obstack_alloc (&objfile
->objfile_obstack
,
2006 sizeof (struct symloc
));
2007 ((struct symloc
*) subpst
->read_symtab_private
)->first_symnum
= 0;
2008 ((struct symloc
*) subpst
->read_symtab_private
)->numsyms
= 0;
2009 subpst
->textlow
= 0;
2010 subpst
->texthigh
= 0;
2012 /* We could save slight bits of space by only making one of these,
2013 shared by the entire set of include files. FIXME-someday. */
2014 subpst
->dependencies
= (struct partial_symtab
**)
2015 obstack_alloc (&objfile
->objfile_obstack
,
2016 sizeof (struct partial_symtab
*));
2017 subpst
->dependencies
[0] = pst
;
2018 subpst
->number_of_dependencies
= 1;
2020 subpst
->globals_offset
=
2021 subpst
->n_global_syms
=
2022 subpst
->statics_offset
=
2023 subpst
->n_static_syms
= 0;
2027 subpst
->read_symtab
= pst
->read_symtab
;
2030 sort_pst_symbols (pst
);
2032 /* If there is already a psymtab or symtab for a file of this name,
2033 remove it. (If there is a symtab, more drastic things also
2034 happen.) This happens in VxWorks. */
2035 free_named_symtabs (pst
->filename
);
2037 if (num_includes
== 0
2038 && number_dependencies
== 0
2039 && pst
->n_global_syms
== 0
2040 && pst
->n_static_syms
== 0)
2042 /* Throw away this psymtab, it's empty. We can't deallocate it, since
2043 it is on the obstack, but we can forget to chain it on the list. */
2044 /* Empty psymtabs happen as a result of header files which don't have
2045 any symbols in them. There can be a lot of them. */
2047 discard_psymtab (pst
);
2049 /* Indicate that psymtab was thrown away. */
2050 pst
= (struct partial_symtab
*) NULL
;
2055 static void swap_sym (struct internal_syment
*,
2056 union internal_auxent
*, char **, char **,
2057 unsigned int *, struct objfile
*);
2059 /* Swap raw symbol at *RAW and put the name in *NAME, the symbol in
2060 *SYMBOL, the first auxent in *AUX. Advance *RAW and *SYMNUMP over
2061 the symbol and its auxents. */
2064 swap_sym (struct internal_syment
*symbol
, union internal_auxent
*aux
,
2065 char **name
, char **raw
, unsigned int *symnump
,
2066 struct objfile
*objfile
)
2068 bfd_coff_swap_sym_in (objfile
->obfd
, *raw
, symbol
);
2069 if (symbol
->n_zeroes
)
2071 /* If it's exactly E_SYMNMLEN characters long it isn't
2073 if (symbol
->n_name
[E_SYMNMLEN
- 1] != '\0')
2075 /* FIXME: wastes memory for symbols which we don't end up putting
2076 into the minimal symbols. */
2078 p
= obstack_alloc (&objfile
->objfile_obstack
, E_SYMNMLEN
+ 1);
2079 strncpy (p
, symbol
->n_name
, E_SYMNMLEN
);
2080 p
[E_SYMNMLEN
] = '\0';
2084 /* Point to the unswapped name as that persists as long as the
2086 *name
= ((struct external_syment
*) *raw
)->e
.e_name
;
2088 else if (symbol
->n_sclass
& 0x80)
2090 *name
= ((struct coff_symfile_info
*) objfile
->deprecated_sym_private
)->debugsec
2095 *name
= ((struct coff_symfile_info
*) objfile
->deprecated_sym_private
)->strtbl
2099 *raw
+= coff_data (objfile
->obfd
)->local_symesz
;
2100 if (symbol
->n_numaux
> 0)
2102 bfd_coff_swap_aux_in (objfile
->obfd
, *raw
, symbol
->n_type
,
2103 symbol
->n_sclass
, 0, symbol
->n_numaux
, aux
);
2105 *symnump
+= symbol
->n_numaux
;
2106 *raw
+= coff_data (objfile
->obfd
)->local_symesz
* symbol
->n_numaux
;
2111 function_outside_compilation_unit_complaint (const char *arg1
)
2113 complaint (&symfile_complaints
,
2114 _("function `%s' appears to be defined outside of all compilation units"),
2119 scan_xcoff_symtab (struct objfile
*objfile
)
2121 CORE_ADDR toc_offset
= 0; /* toc offset value in data section. */
2122 char *filestring
= NULL
;
2125 int past_first_source_file
= 0;
2130 /* Current partial symtab */
2131 struct partial_symtab
*pst
;
2133 /* List of current psymtab's include files */
2134 char **psymtab_include_list
;
2135 int includes_allocated
;
2138 /* Index within current psymtab dependency list */
2139 struct partial_symtab
**dependency_list
;
2140 int dependencies_used
, dependencies_allocated
;
2143 struct internal_syment symbol
;
2144 union internal_auxent main_aux
[5];
2145 unsigned int ssymnum
;
2147 char *last_csect_name
= NULL
; /* last seen csect's name and value */
2148 CORE_ADDR last_csect_val
= 0;
2149 int last_csect_sec
= 0;
2150 int misc_func_recorded
= 0; /* true if any misc. function */
2151 int textlow_not_set
= 1;
2153 pst
= (struct partial_symtab
*) 0;
2155 includes_allocated
= 30;
2157 psymtab_include_list
= (char **) alloca (includes_allocated
*
2160 dependencies_allocated
= 30;
2161 dependencies_used
= 0;
2163 (struct partial_symtab
**) alloca (dependencies_allocated
*
2164 sizeof (struct partial_symtab
*));
2166 last_source_file
= NULL
;
2168 abfd
= objfile
->obfd
;
2169 next_symbol_text_func
= xcoff_next_symbol_text
;
2171 sraw_symbol
= ((struct coff_symfile_info
*) objfile
->deprecated_sym_private
)->symtbl
;
2172 nsyms
= ((struct coff_symfile_info
*) objfile
->deprecated_sym_private
)->symtbl_num_syms
;
2174 while (ssymnum
< nsyms
)
2180 bfd_coff_swap_sym_in (abfd
, sraw_symbol
, &symbol
);
2181 sclass
= symbol
.n_sclass
;
2188 /* The CSECT auxent--always the last auxent. */
2189 union internal_auxent csect_aux
;
2190 unsigned int symnum_before
= ssymnum
;
2192 swap_sym (&symbol
, &main_aux
[0], &namestring
, &sraw_symbol
,
2194 if (symbol
.n_numaux
> 1)
2196 bfd_coff_swap_aux_in
2198 sraw_symbol
- coff_data (abfd
)->local_symesz
,
2201 symbol
.n_numaux
- 1,
2206 csect_aux
= main_aux
[0];
2208 /* If symbol name starts with ".$" or "$", ignore it. */
2209 if (namestring
[0] == '$'
2210 || (namestring
[0] == '.' && namestring
[1] == '$'))
2213 switch (csect_aux
.x_csect
.x_smtyp
& 0x7)
2216 switch (csect_aux
.x_csect
.x_smclas
)
2219 if (last_csect_name
)
2221 /* If no misc. function recorded in the last
2222 seen csect, enter it as a function. This
2223 will take care of functions like strcmp()
2226 if (!misc_func_recorded
)
2228 RECORD_MINIMAL_SYMBOL
2229 (last_csect_name
, last_csect_val
,
2230 mst_text
, last_csect_sec
,
2236 /* We have to allocate one psymtab for
2237 each program csect, because their text
2238 sections need not be adjacent. */
2240 (pst
, psymtab_include_list
, includes_used
,
2241 symnum_before
, dependency_list
,
2242 dependencies_used
, textlow_not_set
);
2244 dependencies_used
= 0;
2245 /* Give all psymtabs for this source file the same
2247 pst
= xcoff_start_psymtab
2251 objfile
->global_psymbols
.next
,
2252 objfile
->static_psymbols
.next
);
2255 /* Activate the misc_func_recorded mechanism for
2256 compiler- and linker-generated CSECTs like ".strcmp"
2258 if (namestring
&& (namestring
[0] == '.'
2259 || namestring
[0] == '@'))
2261 last_csect_name
= namestring
;
2262 last_csect_val
= symbol
.n_value
;
2264 secnum_to_section (symbol
.n_scnum
, objfile
);
2269 symbol
.n_value
+ csect_aux
.x_csect
.x_scnlen
.l
;
2270 if (highval
> pst
->texthigh
)
2271 pst
->texthigh
= highval
;
2272 if (pst
->textlow
== 0 || symbol
.n_value
< pst
->textlow
)
2273 pst
->textlow
= symbol
.n_value
;
2275 misc_func_recorded
= 0;
2280 /* Data variables are recorded in the minimal symbol
2281 table, except for section symbols. */
2282 if (*namestring
!= '.')
2283 prim_record_minimal_symbol_and_info
2284 (namestring
, symbol
.n_value
,
2285 sclass
== C_HIDEXT
? mst_file_data
: mst_data
,
2286 NULL
, secnum_to_section (symbol
.n_scnum
, objfile
),
2292 warning (_("More than one XMC_TC0 symbol found."));
2293 toc_offset
= symbol
.n_value
;
2295 /* Make TOC offset relative to start address of section. */
2296 bfd_sect
= secnum_to_bfd_section (symbol
.n_scnum
, objfile
);
2298 toc_offset
-= bfd_section_vma (objfile
->obfd
, bfd_sect
);
2302 /* These symbols tell us where the TOC entry for a
2303 variable is, not the variable itself. */
2312 switch (csect_aux
.x_csect
.x_smclas
)
2315 /* A function entry point. */
2317 if (first_fun_line_offset
== 0 && symbol
.n_numaux
> 1)
2318 first_fun_line_offset
=
2319 main_aux
[0].x_sym
.x_fcnary
.x_fcn
.x_lnnoptr
;
2320 RECORD_MINIMAL_SYMBOL
2321 (namestring
, symbol
.n_value
,
2322 sclass
== C_HIDEXT
? mst_file_text
: mst_text
,
2323 secnum_to_section (symbol
.n_scnum
, objfile
),
2328 /* shared library function trampoline code entry
2331 /* record trampoline code entries as
2332 mst_solib_trampoline symbol. When we lookup mst
2333 symbols, we will choose mst_text over
2334 mst_solib_trampoline. */
2335 RECORD_MINIMAL_SYMBOL
2336 (namestring
, symbol
.n_value
,
2337 mst_solib_trampoline
,
2338 secnum_to_section (symbol
.n_scnum
, objfile
),
2343 /* The symbols often have the same names as
2344 debug symbols for functions, and confuse
2350 /* xlc puts each variable in a separate csect,
2351 so we get an XTY_SD for each variable. But
2352 gcc puts several variables in a csect, so
2353 that each variable only gets an XTY_LD. We
2354 still need to record them. This will
2355 typically be XMC_RW; I suspect XMC_RO and
2356 XMC_BS might be possible too. */
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 NULL
, secnum_to_section (symbol
.n_scnum
, objfile
),
2368 switch (csect_aux
.x_csect
.x_smclas
)
2372 /* Common variables are recorded in the minimal symbol
2373 table, except for section symbols. */
2374 if (*namestring
!= '.')
2375 prim_record_minimal_symbol_and_info
2376 (namestring
, symbol
.n_value
,
2377 sclass
== C_HIDEXT
? mst_file_bss
: mst_bss
,
2378 NULL
, secnum_to_section (symbol
.n_scnum
, objfile
),
2391 unsigned int symnum_before
;
2393 symnum_before
= ssymnum
;
2394 swap_sym (&symbol
, &main_aux
[0], &namestring
, &sraw_symbol
,
2397 /* See if the last csect needs to be recorded. */
2399 if (last_csect_name
&& !misc_func_recorded
)
2402 /* If no misc. function recorded in the last seen csect, enter
2403 it as a function. This will take care of functions like
2404 strcmp() compiled by xlc. */
2406 RECORD_MINIMAL_SYMBOL
2407 (last_csect_name
, last_csect_val
,
2408 mst_text
, last_csect_sec
, objfile
);
2413 xcoff_end_psymtab (pst
, psymtab_include_list
, includes_used
,
2414 symnum_before
, dependency_list
,
2415 dependencies_used
, textlow_not_set
);
2417 dependencies_used
= 0;
2419 first_fun_line_offset
= 0;
2421 /* XCOFF, according to the AIX 3.2 documentation, puts the
2422 filename in cs->c_name. But xlc 1.3.0.2 has decided to
2423 do things the standard COFF way and put it in the auxent.
2424 We use the auxent if the symbol is ".file" and an auxent
2425 exists, otherwise use the symbol itself. */
2426 if (!strcmp (namestring
, ".file") && symbol
.n_numaux
> 0)
2428 filestring
= coff_getfilename (&main_aux
[0], objfile
);
2431 filestring
= namestring
;
2433 pst
= xcoff_start_psymtab (objfile
,
2436 objfile
->global_psymbols
.next
,
2437 objfile
->static_psymbols
.next
);
2438 last_csect_name
= NULL
;
2444 complaint (&symfile_complaints
,
2445 _("Storage class %d not recognized during scan"), sclass
);
2449 /* C_FCN is .bf and .ef symbols. I think it is sufficient
2450 to handle only the C_FUN and C_EXT. */
2465 /* C_EINCL means we are switching back to the main file. But there
2466 is no reason to care; the only thing we want to know about
2467 includes is the names of all the included (.h) files. */
2472 /* I don't think C_STAT is used in xcoff; C_HIDEXT appears to be
2476 /* I don't think the name of the common block (as opposed to the
2477 variables within it) is something which is user visible
2485 /* I think we can ignore C_LSYM; types on xcoff seem to use C_DECL
2486 so C_LSYM would appear to be only for locals. */
2492 /* We probably could save a few instructions by assuming that
2493 C_LSYM, C_PSYM, etc., never have auxents. */
2494 int naux1
= symbol
.n_numaux
+ 1;
2496 sraw_symbol
+= bfd_coff_symesz (abfd
) * naux1
;
2502 /* Mark down an include file in the current psymtab */
2503 enum language tmp_language
;
2504 swap_sym (&symbol
, &main_aux
[0], &namestring
, &sraw_symbol
,
2507 tmp_language
= deduce_language_from_filename (namestring
);
2509 /* Only change the psymtab's language if we've learned
2510 something useful (eg. tmp_language is not language_unknown).
2511 In addition, to match what start_subfile does, never change
2513 if (tmp_language
!= language_unknown
2514 && (tmp_language
!= language_c
2515 || psymtab_language
!= language_cplus
))
2516 psymtab_language
= tmp_language
;
2518 /* In C++, one may expect the same filename to come round many
2519 times, when code is coming alternately from the main file
2520 and from inline functions in other files. So I check to see
2521 if this is a file we've seen before -- either the main
2522 source file, or a previously included file.
2524 This seems to be a lot of time to be spending on N_SOL, but
2525 things like "break c-exp.y:435" need to work (I
2526 suppose the psymtab_include_list could be hashed or put
2527 in a binary tree, if profiling shows this is a major hog). */
2528 if (pst
&& strcmp (namestring
, pst
->filename
) == 0)
2532 for (i
= 0; i
< includes_used
; i
++)
2533 if (strcmp (namestring
, psymtab_include_list
[i
]) == 0)
2541 psymtab_include_list
[includes_used
++] = namestring
;
2542 if (includes_used
>= includes_allocated
)
2544 char **orig
= psymtab_include_list
;
2546 psymtab_include_list
= (char **)
2547 alloca ((includes_allocated
*= 2) *
2549 memcpy (psymtab_include_list
, orig
,
2550 includes_used
* sizeof (char *));
2555 /* The value of the C_FUN is not the address of the function (it
2556 appears to be the address before linking), but as long as it
2557 is smaller than the actual address, then find_pc_partial_function
2558 will use the minimal symbols instead. I hope. */
2566 swap_sym (&symbol
, &main_aux
[0], &namestring
, &sraw_symbol
,
2569 p
= (char *) strchr (namestring
, ':');
2571 continue; /* Not a debugging symbol. */
2573 /* Main processing section for debugging symbols which
2574 the initial read through the symbol tables needs to worry
2575 about. If we reach this point, the symbol which we are
2576 considering is definitely one we are interested in.
2577 p must also contain the (valid) index into the namestring
2578 which indicates the debugging type symbol. */
2583 symbol
.n_value
+= ANOFFSET (objfile
->section_offsets
, SECT_OFF_DATA (objfile
));
2585 if (gdbarch_static_transform_name_p (current_gdbarch
))
2586 namestring
= gdbarch_static_transform_name
2587 (current_gdbarch
, namestring
);
2589 add_psymbol_to_list (namestring
, p
- namestring
,
2590 VAR_DOMAIN
, LOC_STATIC
,
2591 &objfile
->static_psymbols
,
2593 psymtab_language
, objfile
);
2597 symbol
.n_value
+= ANOFFSET (objfile
->section_offsets
, SECT_OFF_DATA (objfile
));
2598 /* The addresses in these entries are reported to be
2599 wrong. See the code that reads 'G's for symtabs. */
2600 add_psymbol_to_list (namestring
, p
- namestring
,
2601 VAR_DOMAIN
, LOC_STATIC
,
2602 &objfile
->global_psymbols
,
2604 psymtab_language
, objfile
);
2608 /* When a 'T' entry is defining an anonymous enum, it
2609 may have a name which is the empty string, or a
2610 single space. Since they're not really defining a
2611 symbol, those shouldn't go in the partial symbol
2612 table. We do pick up the elements of such enums at
2613 'check_enum:', below. */
2614 if (p
>= namestring
+ 2
2615 || (p
== namestring
+ 1
2616 && namestring
[0] != ' '))
2618 add_psymbol_to_list (namestring
, p
- namestring
,
2619 STRUCT_DOMAIN
, LOC_TYPEDEF
,
2620 &objfile
->static_psymbols
,
2622 psymtab_language
, objfile
);
2625 /* Also a typedef with the same name. */
2626 add_psymbol_to_list (namestring
, p
- namestring
,
2627 VAR_DOMAIN
, LOC_TYPEDEF
,
2628 &objfile
->static_psymbols
,
2630 psymtab_language
, objfile
);
2637 if (p
!= namestring
) /* a name is there, not just :T... */
2639 add_psymbol_to_list (namestring
, p
- namestring
,
2640 VAR_DOMAIN
, LOC_TYPEDEF
,
2641 &objfile
->static_psymbols
,
2643 psymtab_language
, objfile
);
2646 /* If this is an enumerated type, we need to
2647 add all the enum constants to the partial symbol
2648 table. This does not cover enums without names, e.g.
2649 "enum {a, b} c;" in C, but fortunately those are
2650 rare. There is no way for GDB to find those from the
2651 enum type without spending too much time on it. Thus
2652 to solve this problem, the compiler needs to put out the
2653 enum in a nameless type. GCC2 does this. */
2655 /* We are looking for something of the form
2656 <name> ":" ("t" | "T") [<number> "="] "e"
2657 {<constant> ":" <value> ","} ";". */
2659 /* Skip over the colon and the 't' or 'T'. */
2661 /* This type may be given a number. Also, numbers can come
2662 in pairs like (0,26). Skip over it. */
2663 while ((*p
>= '0' && *p
<= '9')
2664 || *p
== '(' || *p
== ',' || *p
== ')'
2670 /* The aix4 compiler emits extra crud before the members. */
2673 /* Skip over the type (?). */
2677 /* Skip over the colon. */
2681 /* We have found an enumerated type. */
2682 /* According to comments in read_enum_type
2683 a comma could end it instead of a semicolon.
2684 I don't know where that happens.
2686 while (*p
&& *p
!= ';' && *p
!= ',')
2690 /* Check for and handle cretinous dbx symbol name
2692 if (*p
== '\\' || (*p
== '?' && p
[1] == '\0'))
2693 p
= next_symbol_text (objfile
);
2695 /* Point to the character after the name
2696 of the enum constant. */
2697 for (q
= p
; *q
&& *q
!= ':'; q
++)
2699 /* Note that the value doesn't matter for
2700 enum constants in psymtabs, just in symtabs. */
2701 add_psymbol_to_list (p
, q
- p
,
2702 VAR_DOMAIN
, LOC_CONST
,
2703 &objfile
->static_psymbols
, 0,
2704 0, psymtab_language
, objfile
);
2705 /* Point past the name. */
2707 /* Skip over the value. */
2708 while (*p
&& *p
!= ',')
2710 /* Advance past the comma. */
2718 /* Constant, e.g. from "const" in Pascal. */
2719 add_psymbol_to_list (namestring
, p
- namestring
,
2720 VAR_DOMAIN
, LOC_CONST
,
2721 &objfile
->static_psymbols
, symbol
.n_value
,
2722 0, psymtab_language
, objfile
);
2728 int name_len
= p
- namestring
;
2729 char *name
= xmalloc (name_len
+ 1);
2730 memcpy (name
, namestring
, name_len
);
2731 name
[name_len
] = '\0';
2732 function_outside_compilation_unit_complaint (name
);
2735 symbol
.n_value
+= ANOFFSET (objfile
->section_offsets
, SECT_OFF_TEXT (objfile
));
2736 add_psymbol_to_list (namestring
, p
- namestring
,
2737 VAR_DOMAIN
, LOC_BLOCK
,
2738 &objfile
->static_psymbols
,
2740 psymtab_language
, objfile
);
2743 /* Global functions were ignored here, but now they
2744 are put into the global psymtab like one would expect.
2745 They're also in the minimal symbol table. */
2749 int name_len
= p
- namestring
;
2750 char *name
= xmalloc (name_len
+ 1);
2751 memcpy (name
, namestring
, name_len
);
2752 name
[name_len
] = '\0';
2753 function_outside_compilation_unit_complaint (name
);
2756 symbol
.n_value
+= ANOFFSET (objfile
->section_offsets
, SECT_OFF_TEXT (objfile
));
2757 add_psymbol_to_list (namestring
, p
- namestring
,
2758 VAR_DOMAIN
, LOC_BLOCK
,
2759 &objfile
->global_psymbols
,
2761 psymtab_language
, objfile
);
2764 /* Two things show up here (hopefully); static symbols of
2765 local scope (static used inside braces) or extensions
2766 of structure symbols. We can ignore both. */
2780 case '#': /* for symbol identification (used in live ranges) */
2784 /* It is a C++ nested symbol. We don't need to record it
2785 (I don't think); if we try to look up foo::bar::baz,
2786 then symbols for the symtab containing foo should get
2787 read in, I think. */
2788 /* Someone says sun cc puts out symbols like
2789 /foo/baz/maclib::/usr/local/bin/maclib,
2790 which would get here with a symbol type of ':'. */
2794 /* Unexpected symbol descriptor. The second and subsequent stabs
2795 of a continued stab can show up here. The question is
2796 whether they ever can mimic a normal stab--it would be
2797 nice if not, since we certainly don't want to spend the
2798 time searching to the end of every string looking for
2801 complaint (&symfile_complaints
,
2802 _("unknown symbol descriptor `%c'"), p
[1]);
2804 /* Ignore it; perhaps it is an extension that we don't
2814 xcoff_end_psymtab (pst
, psymtab_include_list
, includes_used
,
2815 ssymnum
, dependency_list
,
2816 dependencies_used
, textlow_not_set
);
2819 /* Record the toc offset value of this symbol table into objfile structure.
2820 If no XMC_TC0 is found, toc_offset should be zero. Another place to obtain
2821 this information would be file auxiliary header. */
2823 ((struct coff_symfile_info
*) objfile
->deprecated_sym_private
)->toc_offset
= toc_offset
;
2826 /* Return the toc offset value for a given objfile. */
2829 get_toc_offset (struct objfile
*objfile
)
2832 return ((struct coff_symfile_info
*) objfile
->deprecated_sym_private
)->toc_offset
;
2836 /* Scan and build partial symbols for a symbol file.
2837 We have been initialized by a call to dbx_symfile_init, which
2838 put all the relevant info into a "struct dbx_symfile_info",
2839 hung off the objfile structure.
2841 SECTION_OFFSETS contains offsets relative to which the symbols in the
2842 various sections are (depending where the sections were actually loaded).
2843 MAINLINE is true if we are reading the main symbol
2844 table (as opposed to a shared lib or dynamically loaded file). */
2847 xcoff_initial_scan (struct objfile
*objfile
, int mainline
)
2851 struct cleanup
*back_to
;
2852 int num_symbols
; /* # of symbols */
2853 file_ptr symtab_offset
; /* symbol table and */
2854 file_ptr stringtab_offset
; /* string table file offsets */
2855 struct coff_symfile_info
*info
;
2859 info
= (struct coff_symfile_info
*) objfile
->deprecated_sym_private
;
2860 symfile_bfd
= abfd
= objfile
->obfd
;
2861 name
= objfile
->name
;
2863 num_symbols
= bfd_get_symcount (abfd
); /* # of symbols */
2864 symtab_offset
= obj_sym_filepos (abfd
); /* symbol table file offset */
2865 stringtab_offset
= symtab_offset
+
2866 num_symbols
* coff_data (abfd
)->local_symesz
;
2868 info
->min_lineno_offset
= 0;
2869 info
->max_lineno_offset
= 0;
2870 bfd_map_over_sections (abfd
, find_linenos
, info
);
2872 if (num_symbols
> 0)
2874 /* Read the string table. */
2875 init_stringtab (abfd
, stringtab_offset
, objfile
);
2877 /* Read the .debug section, if present. */
2879 struct bfd_section
*secp
;
2880 bfd_size_type length
;
2881 char *debugsec
= NULL
;
2883 secp
= bfd_get_section_by_name (abfd
, ".debug");
2886 length
= bfd_section_size (abfd
, secp
);
2890 (char *) obstack_alloc (&objfile
->objfile_obstack
, length
);
2892 if (!bfd_get_section_contents (abfd
, secp
, debugsec
,
2893 (file_ptr
) 0, length
))
2895 error (_("Error reading .debug section of `%s': %s"),
2896 name
, bfd_errmsg (bfd_get_error ()));
2900 ((struct coff_symfile_info
*) objfile
->deprecated_sym_private
)->debugsec
=
2905 /* Read the symbols. We keep them in core because we will want to
2906 access them randomly in read_symbol*. */
2907 val
= bfd_seek (abfd
, symtab_offset
, SEEK_SET
);
2909 error (_("Error reading symbols from %s: %s"),
2910 name
, bfd_errmsg (bfd_get_error ()));
2911 size
= coff_data (abfd
)->local_symesz
* num_symbols
;
2912 ((struct coff_symfile_info
*) objfile
->deprecated_sym_private
)->symtbl
=
2913 obstack_alloc (&objfile
->objfile_obstack
, size
);
2914 ((struct coff_symfile_info
*) objfile
->deprecated_sym_private
)->symtbl_num_syms
=
2917 val
= bfd_bread (((struct coff_symfile_info
*) objfile
->deprecated_sym_private
)->symtbl
,
2920 perror_with_name (_("reading symbol table"));
2922 /* If we are reinitializing, or if we have never loaded syms yet, init */
2924 || (objfile
->global_psymbols
.size
== 0
2925 && objfile
->static_psymbols
.size
== 0))
2926 /* I'm not sure how how good num_symbols is; the rule of thumb in
2927 init_psymbol_list was developed for a.out. On the one hand,
2928 num_symbols includes auxents. On the other hand, it doesn't
2930 init_psymbol_list (objfile
, num_symbols
);
2932 free_pending_blocks ();
2933 back_to
= make_cleanup (really_free_pendings
, 0);
2935 init_minimal_symbol_collection ();
2936 make_cleanup_discard_minimal_symbols ();
2938 /* Now that the symbol table data of the executable file are all in core,
2939 process them and define symbols accordingly. */
2941 scan_xcoff_symtab (objfile
);
2943 /* Install any minimal symbols that have been collected as the current
2944 minimal symbols for this objfile. */
2946 install_minimal_symbols (objfile
);
2948 do_cleanups (back_to
);
2952 xcoff_symfile_offsets (struct objfile
*objfile
, struct section_addr_info
*addrs
)
2954 asection
*sect
= NULL
;
2957 objfile
->num_sections
= bfd_count_sections (objfile
->obfd
);
2958 objfile
->section_offsets
= (struct section_offsets
*)
2959 obstack_alloc (&objfile
->objfile_obstack
,
2960 SIZEOF_N_SECTION_OFFSETS (objfile
->num_sections
));
2962 /* Initialize the section indexes for future use. */
2963 sect
= bfd_get_section_by_name (objfile
->obfd
, ".text");
2965 objfile
->sect_index_text
= sect
->index
;
2967 sect
= bfd_get_section_by_name (objfile
->obfd
, ".data");
2969 objfile
->sect_index_data
= sect
->index
;
2971 sect
= bfd_get_section_by_name (objfile
->obfd
, ".bss");
2973 objfile
->sect_index_bss
= sect
->index
;
2975 sect
= bfd_get_section_by_name (objfile
->obfd
, ".rodata");
2977 objfile
->sect_index_rodata
= sect
->index
;
2979 for (i
= 0; i
< objfile
->num_sections
; ++i
)
2981 /* syms_from_objfile kindly subtracts from addr the
2982 bfd_section_vma of the .text section. This strikes me as
2983 wrong--whether the offset to be applied to symbol reading is
2984 relative to the start address of the section depends on the
2985 symbol format. In any event, this whole "addr" concept is
2986 pretty broken (it doesn't handle any section but .text
2987 sensibly), so just ignore the addr parameter and use 0.
2988 rs6000-nat.c will set the correct section offsets via
2989 objfile_relocate. */
2990 (objfile
->section_offsets
)->offsets
[i
] = 0;
2994 /* Register our ability to parse symbols for xcoff BFD files. */
2996 static struct sym_fns xcoff_sym_fns
=
2999 /* It is possible that coff and xcoff should be merged as
3000 they do have fundamental similarities (for example, the extra storage
3001 classes used for stabs could presumably be recognized in any COFF file).
3002 However, in addition to obvious things like all the csect hair, there are
3003 some subtler differences between xcoffread.c and coffread.c, notably
3004 the fact that coffread.c has no need to read in all the symbols, but
3005 xcoffread.c reads all the symbols and does in fact randomly access them
3006 (in C_BSTAT and line number processing). */
3008 bfd_target_xcoff_flavour
,
3010 xcoff_new_init
, /* sym_new_init: init anything gbl to entire symtab */
3011 xcoff_symfile_init
, /* sym_init: read initial info, setup for sym_read() */
3012 xcoff_initial_scan
, /* sym_read: read a symbol file into symtab */
3013 xcoff_symfile_finish
, /* sym_finish: finished with file, cleanup */
3014 xcoff_symfile_offsets
, /* sym_offsets: xlate offsets ext->int form */
3015 default_symfile_segments
, /* sym_segments: Get segment information from
3017 aix_process_linenos
, /* sym_read_linetable */
3018 NULL
/* next: pointer to next struct sym_fns */
3022 _initialize_xcoffread (void)
3024 add_symtab_fns (&xcoff_sym_fns
);