Introduce partial_symtab::expand_psymtab method
[deliverable/binutils-gdb.git] / gdb / xcoffread.c
1 /* Read AIX xcoff symbol tables and convert to internal format, for GDB.
2 Copyright (C) 1986-2020 Free Software Foundation, Inc.
3 Derived from coffread.c, dbxread.c, and a lot of hacking.
4 Contributed by IBM Corporation.
5
6 This file is part of GDB.
7
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
20
21 #include "defs.h"
22 #include "bfd.h"
23
24 #include <sys/types.h>
25 #include <fcntl.h>
26 #include <ctype.h>
27 #ifdef HAVE_SYS_FILE_H
28 #include <sys/file.h>
29 #endif
30 #include <sys/stat.h>
31 #include <algorithm>
32
33 #include "coff/internal.h"
34 #include "libcoff.h" /* FIXME, internal data from BFD */
35 #include "coff/xcoff.h"
36 #include "libxcoff.h"
37 #include "coff/rs6000.h"
38 #include "xcoffread.h"
39
40 #include "symtab.h"
41 #include "gdbtypes.h"
42 /* FIXME: ezannoni/2004-02-13 Verify if the include below is really needed. */
43 #include "symfile.h"
44 #include "objfiles.h"
45 #include "buildsym-legacy.h"
46 #include "stabsread.h"
47 #include "expression.h"
48 #include "complaints.h"
49 #include "psympriv.h"
50
51 #include "gdb-stabs.h"
52
53 /* For interface with stabsread.c. */
54 #include "aout/stab_gnu.h"
55
56 \f
57 /* We put a pointer to this structure in the read_symtab_private field
58 of the psymtab. */
59
60 struct symloc
61 {
62
63 /* First symbol number for this file. */
64
65 int first_symnum;
66
67 /* Number of symbols in the section of the symbol table devoted to
68 this file's symbols (actually, the section bracketed may contain
69 more than just this file's symbols). If numsyms is 0, the only
70 reason for this thing's existence is the dependency list. Nothing
71 else will happen when it is read in. */
72
73 int numsyms;
74
75 /* Position of the start of the line number information for this
76 psymtab. */
77 unsigned int lineno_off;
78 };
79
80 /* Remember what we deduced to be the source language of this psymtab. */
81
82 static enum language psymtab_language = language_unknown;
83 \f
84
85 /* Simplified internal version of coff symbol table information. */
86
87 struct coff_symbol
88 {
89 char *c_name;
90 int c_symnum; /* Symbol number of this entry. */
91 int c_naux; /* 0 if syment only, 1 if syment + auxent. */
92 CORE_ADDR c_value;
93 unsigned char c_sclass;
94 int c_secnum;
95 unsigned int c_type;
96 };
97
98 /* Last function's saved coff symbol `cs'. */
99
100 static struct coff_symbol fcn_cs_saved;
101
102 static bfd *symfile_bfd;
103
104 /* Core address of start and end of text of current source file.
105 This is calculated from the first function seen after a C_FILE
106 symbol. */
107
108
109 static CORE_ADDR cur_src_end_addr;
110
111 /* Core address of the end of the first object file. */
112
113 static CORE_ADDR first_object_file_end;
114
115 /* Initial symbol-table-debug-string vector length. */
116
117 #define INITIAL_STABVECTOR_LENGTH 40
118
119 /* Size of a COFF symbol. I think it is always 18, so I'm not sure
120 there is any reason not to just use a #define, but might as well
121 ask BFD for the size and store it here, I guess. */
122
123 static unsigned local_symesz;
124
125 struct xcoff_symfile_info
126 {
127 file_ptr min_lineno_offset {}; /* Where in file lowest line#s are. */
128 file_ptr max_lineno_offset {}; /* 1+last byte of line#s in file. */
129
130 /* Pointer to the string table. */
131 char *strtbl = nullptr;
132
133 /* Pointer to debug section. */
134 char *debugsec = nullptr;
135
136 /* Pointer to the a.out symbol table. */
137 char *symtbl = nullptr;
138
139 /* Number of symbols in symtbl. */
140 int symtbl_num_syms = 0;
141
142 /* Offset in data section to TOC anchor. */
143 CORE_ADDR toc_offset = 0;
144 };
145
146 /* Key for XCOFF-associated data. */
147
148 static const struct objfile_key<xcoff_symfile_info> xcoff_objfile_data_key;
149
150 /* Convenience macro to access the per-objfile XCOFF data. */
151
152 #define XCOFF_DATA(objfile) \
153 xcoff_objfile_data_key.get (objfile)
154
155 /* XCOFF names for dwarf sections. There is no compressed sections. */
156
157 static const struct dwarf2_debug_sections dwarf2_xcoff_names = {
158 { ".dwinfo", NULL },
159 { ".dwabrev", NULL },
160 { ".dwline", NULL },
161 { ".dwloc", NULL },
162 { NULL, NULL }, /* debug_loclists */
163 /* AIX XCOFF defines one, named DWARF section for macro debug information.
164 XLC does not generate debug_macinfo for DWARF4 and below.
165 The section is assigned to debug_macro for DWARF5 and above. */
166 { NULL, NULL },
167 { ".dwmac", NULL },
168 { ".dwstr", NULL },
169 { NULL, NULL }, /* debug_str_offsets */
170 { NULL, NULL }, /* debug_line_str */
171 { ".dwrnges", NULL },
172 { NULL, NULL }, /* debug_rnglists */
173 { ".dwpbtyp", NULL },
174 { NULL, NULL }, /* debug_addr */
175 { ".dwframe", NULL },
176 { NULL, NULL }, /* eh_frame */
177 { NULL, NULL }, /* gdb_index */
178 { NULL, NULL }, /* debug_names */
179 { NULL, NULL }, /* debug_aranges */
180 23
181 };
182
183 static void
184 bf_notfound_complaint (void)
185 {
186 complaint (_("line numbers off, `.bf' symbol not found"));
187 }
188
189 static void
190 ef_complaint (int arg1)
191 {
192 complaint (_("Mismatched .ef symbol ignored starting at symnum %d"), arg1);
193 }
194
195 static void
196 eb_complaint (int arg1)
197 {
198 complaint (_("Mismatched .eb symbol ignored starting at symnum %d"), arg1);
199 }
200
201 static void xcoff_initial_scan (struct objfile *, symfile_add_flags);
202
203 static void scan_xcoff_symtab (minimal_symbol_reader &,
204 struct objfile *);
205
206 static const char *xcoff_next_symbol_text (struct objfile *);
207
208 static void record_include_begin (struct coff_symbol *);
209
210 static void
211 enter_line_range (struct subfile *, unsigned, unsigned,
212 CORE_ADDR, CORE_ADDR, unsigned *);
213
214 static void init_stringtab (bfd *, file_ptr, struct objfile *);
215
216 static void xcoff_symfile_init (struct objfile *);
217
218 static void xcoff_new_init (struct objfile *);
219
220 static void xcoff_symfile_finish (struct objfile *);
221
222 static char *coff_getfilename (union internal_auxent *, struct objfile *);
223
224 static void read_symbol (struct internal_syment *, int);
225
226 static int read_symbol_lineno (int);
227
228 static CORE_ADDR read_symbol_nvalue (int);
229
230 static struct symbol *process_xcoff_symbol (struct coff_symbol *,
231 struct objfile *);
232
233 static void read_xcoff_symtab (struct objfile *, legacy_psymtab *);
234
235 #if 0
236 static void add_stab_to_list (char *, struct pending_stabs **);
237 #endif
238
239 static struct linetable *arrange_linetable (struct linetable *);
240
241 static void record_include_end (struct coff_symbol *);
242
243 static void process_linenos (CORE_ADDR, CORE_ADDR);
244 \f
245
246 /* Translate from a COFF section number (target_index) to a SECT_OFF_*
247 code. */
248 static int secnum_to_section (int, struct objfile *);
249 static asection *secnum_to_bfd_section (int, struct objfile *);
250
251 struct find_targ_sec_arg
252 {
253 int targ_index;
254 int *resultp;
255 asection **bfd_sect;
256 struct objfile *objfile;
257 };
258
259 static void find_targ_sec (bfd *, asection *, void *);
260
261 static void
262 find_targ_sec (bfd *abfd, asection *sect, void *obj)
263 {
264 struct find_targ_sec_arg *args = (struct find_targ_sec_arg *) obj;
265 struct objfile *objfile = args->objfile;
266
267 if (sect->target_index == args->targ_index)
268 {
269 /* This is the section. Figure out what SECT_OFF_* code it is. */
270 if (bfd_section_flags (sect) & SEC_CODE)
271 *args->resultp = SECT_OFF_TEXT (objfile);
272 else if (bfd_section_flags (sect) & SEC_LOAD)
273 *args->resultp = SECT_OFF_DATA (objfile);
274 else
275 *args->resultp = gdb_bfd_section_index (abfd, sect);
276 *args->bfd_sect = sect;
277 }
278 }
279
280 /* Search all BFD sections for the section whose target_index is
281 equal to N_SCNUM. Set *BFD_SECT to that section. The section's
282 associated index in the objfile's section_offset table is also
283 stored in *SECNUM.
284
285 If no match is found, *BFD_SECT is set to NULL, and *SECNUM
286 is set to the text section's number. */
287
288 static void
289 xcoff_secnum_to_sections (int n_scnum, struct objfile *objfile,
290 asection **bfd_sect, int *secnum)
291 {
292 struct find_targ_sec_arg args;
293
294 args.targ_index = n_scnum;
295 args.resultp = secnum;
296 args.bfd_sect = bfd_sect;
297 args.objfile = objfile;
298
299 *bfd_sect = NULL;
300 *secnum = SECT_OFF_TEXT (objfile);
301
302 bfd_map_over_sections (objfile->obfd, find_targ_sec, &args);
303 }
304
305 /* Return the section number (SECT_OFF_*) that N_SCNUM points to. */
306
307 static int
308 secnum_to_section (int n_scnum, struct objfile *objfile)
309 {
310 int secnum;
311 asection *ignored;
312
313 xcoff_secnum_to_sections (n_scnum, objfile, &ignored, &secnum);
314 return secnum;
315 }
316
317 /* Return the BFD section that N_SCNUM points to. */
318
319 static asection *
320 secnum_to_bfd_section (int n_scnum, struct objfile *objfile)
321 {
322 int ignored;
323 asection *bfd_sect;
324
325 xcoff_secnum_to_sections (n_scnum, objfile, &bfd_sect, &ignored);
326 return bfd_sect;
327 }
328 \f
329 /* add a given stab string into given stab vector. */
330
331 #if 0
332
333 static void
334 add_stab_to_list (char *stabname, struct pending_stabs **stabvector)
335 {
336 if (*stabvector == NULL)
337 {
338 *stabvector = (struct pending_stabs *)
339 xmalloc (sizeof (struct pending_stabs) +
340 INITIAL_STABVECTOR_LENGTH * sizeof (char *));
341 (*stabvector)->count = 0;
342 (*stabvector)->length = INITIAL_STABVECTOR_LENGTH;
343 }
344 else if ((*stabvector)->count >= (*stabvector)->length)
345 {
346 (*stabvector)->length += INITIAL_STABVECTOR_LENGTH;
347 *stabvector = (struct pending_stabs *)
348 xrealloc ((char *) *stabvector, sizeof (struct pending_stabs) +
349 (*stabvector)->length * sizeof (char *));
350 }
351 (*stabvector)->stab[(*stabvector)->count++] = stabname;
352 }
353
354 #endif
355 \f/* *INDENT-OFF* */
356 /* Linenos are processed on a file-by-file basis.
357
358 Two reasons:
359
360 1) xlc (IBM's native c compiler) postpones static function code
361 emission to the end of a compilation unit. This way it can
362 determine if those functions (statics) are needed or not, and
363 can do some garbage collection (I think). This makes line
364 numbers and corresponding addresses unordered, and we end up
365 with a line table like:
366
367
368 lineno addr
369 foo() 10 0x100
370 20 0x200
371 30 0x300
372
373 foo3() 70 0x400
374 80 0x500
375 90 0x600
376
377 static foo2()
378 40 0x700
379 50 0x800
380 60 0x900
381
382 and that breaks gdb's binary search on line numbers, if the
383 above table is not sorted on line numbers. And that sort
384 should be on function based, since gcc can emit line numbers
385 like:
386
387 10 0x100 - for the init/test part of a for stmt.
388 20 0x200
389 30 0x300
390 10 0x400 - for the increment part of a for stmt.
391
392 arrange_linetable() will do this sorting.
393
394 2) aix symbol table might look like:
395
396 c_file // beginning of a new file
397 .bi // beginning of include file
398 .ei // end of include file
399 .bi
400 .ei
401
402 basically, .bi/.ei pairs do not necessarily encapsulate
403 their scope. They need to be recorded, and processed later
404 on when we come the end of the compilation unit.
405 Include table (inclTable) and process_linenos() handle
406 that. */
407 /* *INDENT-ON* */
408
409
410 /* Given a line table with function entries are marked, arrange its
411 functions in ascending order and strip off function entry markers
412 and return it in a newly created table. If the old one is good
413 enough, return the old one. */
414 /* FIXME: I think all this stuff can be replaced by just passing
415 sort_linevec = 1 to end_symtab. */
416
417 static struct linetable *
418 arrange_linetable (struct linetable *oldLineTb)
419 {
420 int ii, jj, newline, /* new line count */
421 function_count; /* # of functions */
422
423 struct linetable_entry *fentry; /* function entry vector */
424 int fentry_size; /* # of function entries */
425 struct linetable *newLineTb; /* new line table */
426 int extra_lines = 0;
427
428 #define NUM_OF_FUNCTIONS 20
429
430 fentry_size = NUM_OF_FUNCTIONS;
431 fentry = XNEWVEC (struct linetable_entry, fentry_size);
432
433 for (function_count = 0, ii = 0; ii < oldLineTb->nitems; ++ii)
434 {
435 if (oldLineTb->item[ii].line == 0)
436 { /* Function entry found. */
437 if (function_count >= fentry_size)
438 { /* Make sure you have room. */
439 fentry_size *= 2;
440 fentry = (struct linetable_entry *)
441 xrealloc (fentry,
442 fentry_size * sizeof (struct linetable_entry));
443 }
444 fentry[function_count].line = ii;
445 fentry[function_count].pc = oldLineTb->item[ii].pc;
446 ++function_count;
447
448 /* If the function was compiled with XLC, we may have to add an
449 extra line entry later. Reserve space for that. */
450 if (ii + 1 < oldLineTb->nitems
451 && oldLineTb->item[ii].pc != oldLineTb->item[ii + 1].pc)
452 extra_lines++;
453 }
454 }
455
456 if (function_count == 0)
457 {
458 xfree (fentry);
459 return oldLineTb;
460 }
461 else if (function_count > 1)
462 std::sort (fentry, fentry + function_count,
463 [] (const linetable_entry &lte1, const linetable_entry& lte2)
464 { return lte1.pc < lte2.pc; });
465
466 /* Allocate a new line table. */
467 newLineTb = (struct linetable *)
468 xmalloc
469 (sizeof (struct linetable) +
470 (oldLineTb->nitems - function_count + extra_lines) * sizeof (struct linetable_entry));
471
472 /* If line table does not start with a function beginning, copy up until
473 a function begin. */
474
475 newline = 0;
476 if (oldLineTb->item[0].line != 0)
477 for (newline = 0;
478 newline < oldLineTb->nitems && oldLineTb->item[newline].line; ++newline)
479 newLineTb->item[newline] = oldLineTb->item[newline];
480
481 /* Now copy function lines one by one. */
482
483 for (ii = 0; ii < function_count; ++ii)
484 {
485 /* If the function was compiled with XLC, we may have to add an
486 extra line to cover the function prologue. */
487 jj = fentry[ii].line;
488 if (jj + 1 < oldLineTb->nitems
489 && oldLineTb->item[jj].pc != oldLineTb->item[jj + 1].pc)
490 {
491 newLineTb->item[newline] = oldLineTb->item[jj];
492 newLineTb->item[newline].line = oldLineTb->item[jj + 1].line;
493 newline++;
494 }
495
496 for (jj = fentry[ii].line + 1;
497 jj < oldLineTb->nitems && oldLineTb->item[jj].line != 0;
498 ++jj, ++newline)
499 newLineTb->item[newline] = oldLineTb->item[jj];
500 }
501 xfree (fentry);
502 /* The number of items in the line table must include these
503 extra lines which were added in case of XLC compiled functions. */
504 newLineTb->nitems = oldLineTb->nitems - function_count + extra_lines;
505 return newLineTb;
506 }
507
508 /* include file support: C_BINCL/C_EINCL pairs will be kept in the
509 following `IncludeChain'. At the end of each symtab (end_symtab),
510 we will determine if we should create additional symtab's to
511 represent if (the include files. */
512
513
514 typedef struct _inclTable
515 {
516 char *name; /* include filename */
517
518 /* Offsets to the line table. end points to the last entry which is
519 part of this include file. */
520 int begin, end;
521
522 struct subfile *subfile;
523 unsigned funStartLine; /* Start line # of its function. */
524 }
525 InclTable;
526
527 #define INITIAL_INCLUDE_TABLE_LENGTH 20
528 static InclTable *inclTable; /* global include table */
529 static int inclIndx; /* last entry to table */
530 static int inclLength; /* table length */
531 static int inclDepth; /* nested include depth */
532
533 static void allocate_include_entry (void);
534
535 static void
536 record_include_begin (struct coff_symbol *cs)
537 {
538 if (inclDepth)
539 {
540 /* In xcoff, we assume include files cannot be nested (not in .c files
541 of course, but in corresponding .s files.). */
542
543 /* This can happen with old versions of GCC.
544 GCC 2.3.3-930426 does not exhibit this on a test case which
545 a user said produced the message for him. */
546 complaint (_("Nested C_BINCL symbols"));
547 }
548 ++inclDepth;
549
550 allocate_include_entry ();
551
552 inclTable[inclIndx].name = cs->c_name;
553 inclTable[inclIndx].begin = cs->c_value;
554 }
555
556 static void
557 record_include_end (struct coff_symbol *cs)
558 {
559 InclTable *pTbl;
560
561 if (inclDepth == 0)
562 {
563 complaint (_("Mismatched C_BINCL/C_EINCL pair"));
564 }
565
566 allocate_include_entry ();
567
568 pTbl = &inclTable[inclIndx];
569 pTbl->end = cs->c_value;
570
571 --inclDepth;
572 ++inclIndx;
573 }
574
575 static void
576 allocate_include_entry (void)
577 {
578 if (inclTable == NULL)
579 {
580 inclTable = XCNEWVEC (InclTable, INITIAL_INCLUDE_TABLE_LENGTH);
581 inclLength = INITIAL_INCLUDE_TABLE_LENGTH;
582 inclIndx = 0;
583 }
584 else if (inclIndx >= inclLength)
585 {
586 inclLength += INITIAL_INCLUDE_TABLE_LENGTH;
587 inclTable = XRESIZEVEC (InclTable, inclTable, inclLength);
588 memset (inclTable + inclLength - INITIAL_INCLUDE_TABLE_LENGTH,
589 '\0', sizeof (InclTable) * INITIAL_INCLUDE_TABLE_LENGTH);
590 }
591 }
592
593 /* Global variable to pass the psymtab down to all the routines involved
594 in psymtab to symtab processing. */
595 static legacy_psymtab *this_symtab_psymtab;
596
597 /* Objfile related to this_symtab_psymtab; set at the same time. */
598 static struct objfile *this_symtab_objfile;
599
600 /* given the start and end addresses of a compilation unit (or a csect,
601 at times) process its lines and create appropriate line vectors. */
602
603 static void
604 process_linenos (CORE_ADDR start, CORE_ADDR end)
605 {
606 int offset, ii;
607 file_ptr max_offset
608 = XCOFF_DATA (this_symtab_objfile)->max_lineno_offset;
609
610 /* subfile structure for the main compilation unit. */
611 struct subfile main_subfile;
612
613 /* In the main source file, any time we see a function entry, we
614 reset this variable to function's absolute starting line number.
615 All the following line numbers in the function are relative to
616 this, and we record absolute line numbers in record_line(). */
617
618 unsigned int main_source_baseline = 0;
619
620 unsigned *firstLine;
621
622 offset =
623 ((struct symloc *) this_symtab_psymtab->read_symtab_private)->lineno_off;
624 if (offset == 0)
625 goto return_after_cleanup;
626
627 memset (&main_subfile, '\0', sizeof (main_subfile));
628
629 if (inclIndx == 0)
630 /* All source lines were in the main source file. None in include
631 files. */
632
633 enter_line_range (&main_subfile, offset, 0, start, end,
634 &main_source_baseline);
635
636 else
637 {
638 /* There was source with line numbers in include files. */
639
640 int linesz =
641 coff_data (this_symtab_objfile->obfd)->local_linesz;
642 main_source_baseline = 0;
643
644 for (ii = 0; ii < inclIndx; ++ii)
645 {
646 struct subfile *tmpSubfile;
647
648 /* If there is main file source before include file, enter it. */
649 if (offset < inclTable[ii].begin)
650 {
651 enter_line_range
652 (&main_subfile, offset, inclTable[ii].begin - linesz,
653 start, 0, &main_source_baseline);
654 }
655
656 if (strcmp (inclTable[ii].name, get_last_source_file ()) == 0)
657 {
658 /* The entry in the include table refers to the main source
659 file. Add the lines to the main subfile. */
660
661 main_source_baseline = inclTable[ii].funStartLine;
662 enter_line_range
663 (&main_subfile, inclTable[ii].begin, inclTable[ii].end,
664 start, 0, &main_source_baseline);
665 inclTable[ii].subfile = &main_subfile;
666 }
667 else
668 {
669 /* Have a new subfile for the include file. */
670
671 tmpSubfile = inclTable[ii].subfile = XNEW (struct subfile);
672
673 memset (tmpSubfile, '\0', sizeof (struct subfile));
674 firstLine = &(inclTable[ii].funStartLine);
675
676 /* Enter include file's lines now. */
677 enter_line_range (tmpSubfile, inclTable[ii].begin,
678 inclTable[ii].end, start, 0, firstLine);
679 }
680
681 if (offset <= inclTable[ii].end)
682 offset = inclTable[ii].end + linesz;
683 }
684
685 /* All the include files' line have been processed at this point. Now,
686 enter remaining lines of the main file, if any left. */
687 if (offset < max_offset + 1 - linesz)
688 {
689 enter_line_range (&main_subfile, offset, 0, start, end,
690 &main_source_baseline);
691 }
692 }
693
694 /* Process main file's line numbers. */
695 if (main_subfile.line_vector)
696 {
697 struct linetable *lineTb, *lv;
698
699 lv = main_subfile.line_vector;
700
701 /* Line numbers are not necessarily ordered. xlc compilation will
702 put static function to the end. */
703
704 struct subfile *current_subfile = get_current_subfile ();
705 lineTb = arrange_linetable (lv);
706 if (lv == lineTb)
707 {
708 current_subfile->line_vector = (struct linetable *)
709 xrealloc (lv, (sizeof (struct linetable)
710 + lv->nitems * sizeof (struct linetable_entry)));
711 }
712 else
713 {
714 xfree (lv);
715 current_subfile->line_vector = lineTb;
716 }
717
718 current_subfile->line_vector_length =
719 current_subfile->line_vector->nitems;
720 }
721
722 /* Now, process included files' line numbers. */
723
724 for (ii = 0; ii < inclIndx; ++ii)
725 {
726 if (inclTable[ii].subfile != ((struct subfile *) &main_subfile)
727 && (inclTable[ii].subfile)->line_vector) /* Useless if!!!
728 FIXMEmgo */
729 {
730 struct linetable *lineTb, *lv;
731
732 lv = (inclTable[ii].subfile)->line_vector;
733
734 /* Line numbers are not necessarily ordered. xlc compilation will
735 put static function to the end. */
736
737 lineTb = arrange_linetable (lv);
738
739 push_subfile ();
740
741 /* For the same include file, we might want to have more than one
742 subfile. This happens if we have something like:
743
744 ......
745 #include "foo.h"
746 ......
747 #include "foo.h"
748 ......
749
750 while foo.h including code in it. (stupid but possible)
751 Since start_subfile() looks at the name and uses an
752 existing one if finds, we need to provide a fake name and
753 fool it. */
754
755 #if 0
756 start_subfile (inclTable[ii].name);
757 #else
758 {
759 /* Pick a fake name that will produce the same results as this
760 one when passed to deduce_language_from_filename. Kludge on
761 top of kludge. */
762 const char *fakename = strrchr (inclTable[ii].name, '.');
763
764 if (fakename == NULL)
765 fakename = " ?";
766 start_subfile (fakename);
767 xfree (get_current_subfile ()->name);
768 }
769 struct subfile *current_subfile = get_current_subfile ();
770 current_subfile->name = xstrdup (inclTable[ii].name);
771 #endif
772
773 if (lv == lineTb)
774 {
775 current_subfile->line_vector =
776 (struct linetable *) xrealloc
777 (lv, (sizeof (struct linetable)
778 + lv->nitems * sizeof (struct linetable_entry)));
779
780 }
781 else
782 {
783 xfree (lv);
784 current_subfile->line_vector = lineTb;
785 }
786
787 current_subfile->line_vector_length =
788 current_subfile->line_vector->nitems;
789 start_subfile (pop_subfile ());
790 }
791 }
792
793 return_after_cleanup:
794
795 /* We don't want to keep alloc/free'ing the global include file table. */
796 inclIndx = 0;
797 }
798
799 static void
800 aix_process_linenos (struct objfile *objfile)
801 {
802 /* There is no linenos to read if there are only dwarf info. */
803 if (this_symtab_psymtab == NULL)
804 return;
805
806 /* Process line numbers and enter them into line vector. */
807 process_linenos (get_last_source_start_addr (), cur_src_end_addr);
808 }
809
810
811 /* Enter a given range of lines into the line vector.
812 can be called in the following two ways:
813 enter_line_range (subfile, beginoffset, endoffset,
814 startaddr, 0, firstLine) or
815 enter_line_range (subfile, beginoffset, 0,
816 startaddr, endaddr, firstLine)
817
818 endoffset points to the last line table entry that we should pay
819 attention to. */
820
821 static void
822 enter_line_range (struct subfile *subfile, unsigned beginoffset,
823 unsigned endoffset, /* offsets to line table */
824 CORE_ADDR startaddr, /* offsets to line table */
825 CORE_ADDR endaddr, unsigned *firstLine)
826 {
827 struct objfile *objfile = this_symtab_objfile;
828 struct gdbarch *gdbarch = get_objfile_arch (objfile);
829 unsigned int curoffset;
830 CORE_ADDR addr;
831 void *ext_lnno;
832 struct internal_lineno int_lnno;
833 unsigned int limit_offset;
834 bfd *abfd;
835 int linesz;
836
837 if (endoffset == 0 && startaddr == 0 && endaddr == 0)
838 return;
839 curoffset = beginoffset;
840 limit_offset = XCOFF_DATA (objfile)->max_lineno_offset;
841
842 if (endoffset != 0)
843 {
844 if (endoffset >= limit_offset)
845 {
846 complaint (_("Bad line table offset in C_EINCL directive"));
847 return;
848 }
849 limit_offset = endoffset;
850 }
851 else
852 limit_offset -= 1;
853
854 abfd = objfile->obfd;
855 linesz = coff_data (abfd)->local_linesz;
856 ext_lnno = alloca (linesz);
857
858 while (curoffset <= limit_offset)
859 {
860 bfd_seek (abfd, curoffset, SEEK_SET);
861 bfd_bread (ext_lnno, linesz, abfd);
862 bfd_coff_swap_lineno_in (abfd, ext_lnno, &int_lnno);
863
864 /* Find the address this line represents. */
865 addr = (int_lnno.l_lnno
866 ? int_lnno.l_addr.l_paddr
867 : read_symbol_nvalue (int_lnno.l_addr.l_symndx));
868 addr += objfile->text_section_offset ();
869
870 if (addr < startaddr || (endaddr && addr >= endaddr))
871 return;
872
873 if (int_lnno.l_lnno == 0)
874 {
875 *firstLine = read_symbol_lineno (int_lnno.l_addr.l_symndx);
876 record_line (subfile, 0, gdbarch_addr_bits_remove (gdbarch, addr));
877 --(*firstLine);
878 }
879 else
880 record_line (subfile, *firstLine + int_lnno.l_lnno,
881 gdbarch_addr_bits_remove (gdbarch, addr));
882 curoffset += linesz;
883 }
884 }
885
886
887 /* Save the vital information for use when closing off the current file.
888 NAME is the file name the symbols came from, START_ADDR is the first
889 text address for the file, and SIZE is the number of bytes of text. */
890
891 #define complete_symtab(name, start_addr) { \
892 set_last_source_file (name); \
893 set_last_source_start_addr (start_addr); \
894 }
895
896
897 /* Refill the symbol table input buffer
898 and set the variables that control fetching entries from it.
899 Reports an error if no data available.
900 This function can read past the end of the symbol table
901 (into the string table) but this does no harm. */
902
903 /* Create a new minimal symbol (using record_with_info).
904
905 Creation of all new minimal symbols should go through this function
906 rather than calling the various record functions in order
907 to make sure that all symbol addresses get properly relocated.
908
909 Arguments are:
910
911 NAME - the symbol's name (but if NAME starts with a period, that
912 leading period is discarded).
913 ADDRESS - the symbol's address, prior to relocation. This function
914 relocates the address before recording the minimal symbol.
915 MS_TYPE - the symbol's type.
916 N_SCNUM - the symbol's XCOFF section number.
917 OBJFILE - the objfile associated with the minimal symbol. */
918
919 static void
920 record_minimal_symbol (minimal_symbol_reader &reader,
921 const char *name, CORE_ADDR address,
922 enum minimal_symbol_type ms_type,
923 int n_scnum,
924 struct objfile *objfile)
925 {
926 if (name[0] == '.')
927 ++name;
928
929 reader.record_with_info (name, address, ms_type,
930 secnum_to_section (n_scnum, objfile));
931 }
932
933 /* xcoff has static blocks marked in `.bs', `.es' pairs. They cannot be
934 nested. At any given time, a symbol can only be in one static block.
935 This is the base address of current static block, zero if non exists. */
936
937 static int static_block_base = 0;
938
939 /* Section number for the current static block. */
940
941 static int static_block_section = -1;
942
943 /* true if space for symbol name has been allocated. */
944
945 static int symname_alloced = 0;
946
947 /* Next symbol to read. Pointer into raw seething symbol table. */
948
949 static char *raw_symbol;
950
951 /* This is the function which stabsread.c calls to get symbol
952 continuations. */
953
954 static const char *
955 xcoff_next_symbol_text (struct objfile *objfile)
956 {
957 struct internal_syment symbol;
958 const char *retval;
959
960 /* FIXME: is this the same as the passed arg? */
961 if (this_symtab_objfile)
962 objfile = this_symtab_objfile;
963
964 bfd_coff_swap_sym_in (objfile->obfd, raw_symbol, &symbol);
965 if (symbol.n_zeroes)
966 {
967 complaint (_("Unexpected symbol continuation"));
968
969 /* Return something which points to '\0' and hope the symbol reading
970 code does something reasonable. */
971 retval = "";
972 }
973 else if (symbol.n_sclass & 0x80)
974 {
975 retval = XCOFF_DATA (objfile)->debugsec + symbol.n_offset;
976 raw_symbol += coff_data (objfile->obfd)->local_symesz;
977 ++symnum;
978 }
979 else
980 {
981 complaint (_("Unexpected symbol continuation"));
982
983 /* Return something which points to '\0' and hope the symbol reading
984 code does something reasonable. */
985 retval = "";
986 }
987 return retval;
988 }
989
990 /* Read symbols for a given partial symbol table. */
991
992 static void
993 read_xcoff_symtab (struct objfile *objfile, legacy_psymtab *pst)
994 {
995 bfd *abfd = objfile->obfd;
996 char *raw_auxptr; /* Pointer to first raw aux entry for sym. */
997 struct xcoff_symfile_info *xcoff = XCOFF_DATA (objfile);
998 char *strtbl = xcoff->strtbl;
999 char *debugsec = xcoff->debugsec;
1000 const char *debugfmt = bfd_xcoff_is_xcoff64 (abfd) ? "XCOFF64" : "XCOFF";
1001
1002 struct internal_syment symbol[1];
1003 union internal_auxent main_aux;
1004 struct coff_symbol cs[1];
1005 CORE_ADDR file_start_addr = 0;
1006 CORE_ADDR file_end_addr = 0;
1007
1008 int next_file_symnum = -1;
1009 unsigned int max_symnum;
1010 int just_started = 1;
1011 int depth = 0;
1012 CORE_ADDR fcn_start_addr = 0;
1013 enum language pst_symtab_language;
1014
1015 struct coff_symbol fcn_stab_saved = { 0 };
1016
1017 /* fcn_cs_saved is global because process_xcoff_symbol needs it. */
1018 union internal_auxent fcn_aux_saved = main_aux;
1019 struct context_stack *newobj;
1020
1021 const char *filestring = pst->filename; /* Name of the current file. */
1022
1023 const char *last_csect_name; /* Last seen csect's name. */
1024
1025 this_symtab_psymtab = pst;
1026 this_symtab_objfile = objfile;
1027
1028 /* Get the appropriate COFF "constants" related to the file we're
1029 handling. */
1030 local_symesz = coff_data (abfd)->local_symesz;
1031
1032 set_last_source_file (NULL);
1033 last_csect_name = 0;
1034 pst_symtab_language = deduce_language_from_filename (filestring);
1035
1036 start_stabs ();
1037 start_symtab (objfile, filestring, NULL, file_start_addr,
1038 pst_symtab_language);
1039 record_debugformat (debugfmt);
1040 symnum = ((struct symloc *) pst->read_symtab_private)->first_symnum;
1041 max_symnum =
1042 symnum + ((struct symloc *) pst->read_symtab_private)->numsyms;
1043 first_object_file_end = 0;
1044
1045 raw_symbol = xcoff->symtbl + symnum * local_symesz;
1046
1047 while (symnum < max_symnum)
1048 {
1049 QUIT; /* make this command interruptable. */
1050
1051 /* READ_ONE_SYMBOL (symbol, cs, symname_alloced); */
1052 /* read one symbol into `cs' structure. After processing the
1053 whole symbol table, only string table will be kept in memory,
1054 symbol table and debug section of xcoff will be freed. Thus
1055 we can mark symbols with names in string table as
1056 `alloced'. */
1057 {
1058 int ii;
1059
1060 /* Swap and align the symbol into a reasonable C structure. */
1061 bfd_coff_swap_sym_in (abfd, raw_symbol, symbol);
1062
1063 cs->c_symnum = symnum;
1064 cs->c_naux = symbol->n_numaux;
1065 if (symbol->n_zeroes)
1066 {
1067 symname_alloced = 0;
1068 /* We must use the original, unswapped, name here so the name field
1069 pointed to by cs->c_name will persist throughout xcoffread. If
1070 we use the new field, it gets overwritten for each symbol. */
1071 cs->c_name = ((struct external_syment *) raw_symbol)->e.e_name;
1072 /* If it's exactly E_SYMNMLEN characters long it isn't
1073 '\0'-terminated. */
1074 if (cs->c_name[E_SYMNMLEN - 1] != '\0')
1075 {
1076 char *p;
1077
1078 p = (char *) obstack_alloc (&objfile->objfile_obstack,
1079 E_SYMNMLEN + 1);
1080 strncpy (p, cs->c_name, E_SYMNMLEN);
1081 p[E_SYMNMLEN] = '\0';
1082 cs->c_name = p;
1083 symname_alloced = 1;
1084 }
1085 }
1086 else if (symbol->n_sclass & 0x80)
1087 {
1088 cs->c_name = debugsec + symbol->n_offset;
1089 symname_alloced = 0;
1090 }
1091 else
1092 {
1093 /* in string table */
1094 cs->c_name = strtbl + (int) symbol->n_offset;
1095 symname_alloced = 1;
1096 }
1097 cs->c_value = symbol->n_value;
1098 cs->c_sclass = symbol->n_sclass;
1099 cs->c_secnum = symbol->n_scnum;
1100 cs->c_type = (unsigned) symbol->n_type;
1101
1102 raw_symbol += local_symesz;
1103 ++symnum;
1104
1105 /* Save addr of first aux entry. */
1106 raw_auxptr = raw_symbol;
1107
1108 /* Skip all the auxents associated with this symbol. */
1109 for (ii = symbol->n_numaux; ii; --ii)
1110 {
1111 raw_symbol += coff_data (abfd)->local_auxesz;
1112 ++symnum;
1113 }
1114 }
1115
1116 /* if symbol name starts with ".$" or "$", ignore it. */
1117 if (cs->c_name[0] == '$'
1118 || (cs->c_name[1] == '$' && cs->c_name[0] == '.'))
1119 continue;
1120
1121 if (cs->c_symnum == next_file_symnum && cs->c_sclass != C_FILE)
1122 {
1123 if (get_last_source_file ())
1124 {
1125 pst->compunit_symtab = end_symtab (cur_src_end_addr,
1126 SECT_OFF_TEXT (objfile));
1127 end_stabs ();
1128 }
1129
1130 start_stabs ();
1131 start_symtab (objfile, "_globals_", NULL,
1132 0, pst_symtab_language);
1133 record_debugformat (debugfmt);
1134 cur_src_end_addr = first_object_file_end;
1135 /* Done with all files, everything from here on is globals. */
1136 }
1137
1138 if (cs->c_sclass == C_EXT || cs->c_sclass == C_HIDEXT ||
1139 cs->c_sclass == C_WEAKEXT)
1140 {
1141 /* Dealing with a symbol with a csect entry. */
1142
1143 #define CSECT(PP) ((PP)->x_csect)
1144 #define CSECT_LEN(PP) (CSECT(PP).x_scnlen.l)
1145 #define CSECT_ALIGN(PP) (SMTYP_ALIGN(CSECT(PP).x_smtyp))
1146 #define CSECT_SMTYP(PP) (SMTYP_SMTYP(CSECT(PP).x_smtyp))
1147 #define CSECT_SCLAS(PP) (CSECT(PP).x_smclas)
1148
1149 /* Convert the auxent to something we can access.
1150 XCOFF can have more than one auxiliary entries.
1151
1152 Actual functions will have two auxiliary entries, one to have the
1153 function size and other to have the smtype/smclass (LD/PR).
1154
1155 c_type value of main symbol table will be set only in case of
1156 C_EXT/C_HIDEEXT/C_WEAKEXT storage class symbols.
1157 Bit 10 of type is set if symbol is a function, ie the value is set
1158 to 32(0x20). So we need to read the first function auxiliary entry
1159 which contains the size. */
1160 if (cs->c_naux > 1 && ISFCN (cs->c_type))
1161 {
1162 /* a function entry point. */
1163
1164 fcn_start_addr = cs->c_value;
1165
1166 /* save the function header info, which will be used
1167 when `.bf' is seen. */
1168 fcn_cs_saved = *cs;
1169
1170 /* Convert the auxent to something we can access. */
1171 bfd_coff_swap_aux_in (abfd, raw_auxptr, cs->c_type, cs->c_sclass,
1172 0, cs->c_naux, &fcn_aux_saved);
1173 continue;
1174 }
1175 /* Read the csect auxiliary header, which is always the last by
1176 convention. */
1177 bfd_coff_swap_aux_in (abfd,
1178 raw_auxptr
1179 + ((coff_data (abfd)->local_symesz)
1180 * (cs->c_naux - 1)),
1181 cs->c_type, cs->c_sclass,
1182 cs->c_naux - 1, cs->c_naux,
1183 &main_aux);
1184
1185 switch (CSECT_SMTYP (&main_aux))
1186 {
1187
1188 case XTY_ER:
1189 /* Ignore all external references. */
1190 continue;
1191
1192 case XTY_SD:
1193 /* A section description. */
1194 {
1195 switch (CSECT_SCLAS (&main_aux))
1196 {
1197
1198 case XMC_PR:
1199 {
1200
1201 /* A program csect is seen. We have to allocate one
1202 symbol table for each program csect. Normally gdb
1203 prefers one symtab for each source file. In case
1204 of AIX, one source file might include more than one
1205 [PR] csect, and they don't have to be adjacent in
1206 terms of the space they occupy in memory. Thus, one
1207 single source file might get fragmented in the
1208 memory and gdb's file start and end address
1209 approach does not work! GCC (and I think xlc) seem
1210 to put all the code in the unnamed program csect. */
1211
1212 if (last_csect_name)
1213 {
1214 complete_symtab (filestring, file_start_addr);
1215 cur_src_end_addr = file_end_addr;
1216 end_symtab (file_end_addr, SECT_OFF_TEXT (objfile));
1217 end_stabs ();
1218 start_stabs ();
1219 /* Give all csects for this source file the same
1220 name. */
1221 start_symtab (objfile, filestring, NULL,
1222 0, pst_symtab_language);
1223 record_debugformat (debugfmt);
1224 }
1225
1226 /* If this is the very first csect seen,
1227 basically `__start'. */
1228 if (just_started)
1229 {
1230 first_object_file_end
1231 = cs->c_value + CSECT_LEN (&main_aux);
1232 just_started = 0;
1233 }
1234
1235 file_start_addr =
1236 cs->c_value + objfile->text_section_offset ();
1237 file_end_addr = file_start_addr + CSECT_LEN (&main_aux);
1238
1239 if (cs->c_name && (cs->c_name[0] == '.' || cs->c_name[0] == '@'))
1240 last_csect_name = cs->c_name;
1241 }
1242 continue;
1243
1244 /* All other symbols are put into the minimal symbol
1245 table only. */
1246
1247 case XMC_RW:
1248 continue;
1249
1250 case XMC_TC0:
1251 continue;
1252
1253 case XMC_TC:
1254 continue;
1255
1256 default:
1257 /* Ignore the symbol. */
1258 continue;
1259 }
1260 }
1261 break;
1262
1263 case XTY_LD:
1264
1265 switch (CSECT_SCLAS (&main_aux))
1266 {
1267 /* We never really come to this part as this case has been
1268 handled in ISFCN check above.
1269 This and other cases of XTY_LD are kept just for
1270 reference. */
1271 case XMC_PR:
1272 continue;
1273
1274 case XMC_GL:
1275 /* shared library function trampoline code entry point. */
1276 continue;
1277
1278 case XMC_DS:
1279 /* The symbols often have the same names as debug symbols for
1280 functions, and confuse lookup_symbol. */
1281 continue;
1282
1283 default:
1284 /* xlc puts each variable in a separate csect, so we get
1285 an XTY_SD for each variable. But gcc puts several
1286 variables in a csect, so that each variable only gets
1287 an XTY_LD. This will typically be XMC_RW; I suspect
1288 XMC_RO and XMC_BS might be possible too.
1289 These variables are put in the minimal symbol table
1290 only. */
1291 continue;
1292 }
1293 break;
1294
1295 case XTY_CM:
1296 /* Common symbols are put into the minimal symbol table only. */
1297 continue;
1298
1299 default:
1300 break;
1301 }
1302 }
1303
1304 switch (cs->c_sclass)
1305 {
1306 case C_FILE:
1307
1308 /* c_value field contains symnum of next .file entry in table
1309 or symnum of first global after last .file. */
1310
1311 next_file_symnum = cs->c_value;
1312
1313 /* Complete symbol table for last object file containing
1314 debugging information. */
1315
1316 /* Whether or not there was a csect in the previous file, we
1317 have to call `end_stabs' and `start_stabs' to reset
1318 type_vector, line_vector, etc. structures. */
1319
1320 complete_symtab (filestring, file_start_addr);
1321 cur_src_end_addr = file_end_addr;
1322 end_symtab (file_end_addr, SECT_OFF_TEXT (objfile));
1323 end_stabs ();
1324
1325 /* XCOFF, according to the AIX 3.2 documentation, puts the
1326 filename in cs->c_name. But xlc 1.3.0.2 has decided to
1327 do things the standard COFF way and put it in the auxent.
1328 We use the auxent if the symbol is ".file" and an auxent
1329 exists, otherwise use the symbol itself. Simple
1330 enough. */
1331 if (!strcmp (cs->c_name, ".file") && cs->c_naux > 0)
1332 {
1333 bfd_coff_swap_aux_in (abfd, raw_auxptr, cs->c_type, cs->c_sclass,
1334 0, cs->c_naux, &main_aux);
1335 filestring = coff_getfilename (&main_aux, objfile);
1336 }
1337 else
1338 filestring = cs->c_name;
1339
1340 start_stabs ();
1341 start_symtab (objfile, filestring, NULL, 0, pst_symtab_language);
1342 record_debugformat (debugfmt);
1343 last_csect_name = 0;
1344
1345 /* reset file start and end addresses. A compilation unit
1346 with no text (only data) should have zero file
1347 boundaries. */
1348 file_start_addr = file_end_addr = 0;
1349 break;
1350
1351 case C_FUN:
1352 fcn_stab_saved = *cs;
1353 break;
1354
1355 case C_FCN:
1356 if (strcmp (cs->c_name, ".bf") == 0)
1357 {
1358 CORE_ADDR off = objfile->text_section_offset ();
1359
1360 bfd_coff_swap_aux_in (abfd, raw_auxptr, cs->c_type, cs->c_sclass,
1361 0, cs->c_naux, &main_aux);
1362
1363 within_function = 1;
1364
1365 newobj = push_context (0, fcn_start_addr + off);
1366
1367 newobj->name = define_symbol
1368 (fcn_cs_saved.c_value + off,
1369 fcn_stab_saved.c_name, 0, 0, objfile);
1370 if (newobj->name != NULL)
1371 SYMBOL_SECTION (newobj->name) = SECT_OFF_TEXT (objfile);
1372 }
1373 else if (strcmp (cs->c_name, ".ef") == 0)
1374 {
1375 bfd_coff_swap_aux_in (abfd, raw_auxptr, cs->c_type, cs->c_sclass,
1376 0, cs->c_naux, &main_aux);
1377
1378 /* The value of .ef is the address of epilogue code;
1379 not useful for gdb. */
1380 /* { main_aux.x_sym.x_misc.x_lnsz.x_lnno
1381 contains number of lines to '}' */
1382
1383 if (outermost_context_p ())
1384 { /* We attempted to pop an empty context stack. */
1385 ef_complaint (cs->c_symnum);
1386 within_function = 0;
1387 break;
1388 }
1389 struct context_stack cstk = pop_context ();
1390 /* Stack must be empty now. */
1391 if (!outermost_context_p ())
1392 {
1393 ef_complaint (cs->c_symnum);
1394 within_function = 0;
1395 break;
1396 }
1397
1398 finish_block (cstk.name, cstk.old_blocks,
1399 NULL, cstk.start_addr,
1400 (fcn_cs_saved.c_value
1401 + fcn_aux_saved.x_sym.x_misc.x_fsize
1402 + objfile->text_section_offset ()));
1403 within_function = 0;
1404 }
1405 break;
1406
1407 case C_BSTAT:
1408 /* Begin static block. */
1409 {
1410 struct internal_syment static_symbol;
1411
1412 read_symbol (&static_symbol, cs->c_value);
1413 static_block_base = static_symbol.n_value;
1414 static_block_section =
1415 secnum_to_section (static_symbol.n_scnum, objfile);
1416 }
1417 break;
1418
1419 case C_ESTAT:
1420 /* End of static block. */
1421 static_block_base = 0;
1422 static_block_section = -1;
1423 break;
1424
1425 case C_ARG:
1426 case C_REGPARM:
1427 case C_REG:
1428 case C_TPDEF:
1429 case C_STRTAG:
1430 case C_UNTAG:
1431 case C_ENTAG:
1432 {
1433 complaint (_("Unrecognized storage class %d."),
1434 cs->c_sclass);
1435 }
1436 break;
1437
1438 case C_LABEL:
1439 case C_NULL:
1440 /* Ignore these. */
1441 break;
1442
1443 case C_HIDEXT:
1444 case C_STAT:
1445 break;
1446
1447 case C_BINCL:
1448 /* beginning of include file */
1449 /* In xlc output, C_BINCL/C_EINCL pair doesn't show up in sorted
1450 order. Thus, when wee see them, we might not know enough info
1451 to process them. Thus, we'll be saving them into a table
1452 (inclTable) and postpone their processing. */
1453
1454 record_include_begin (cs);
1455 break;
1456
1457 case C_EINCL:
1458 /* End of include file. */
1459 /* See the comment after case C_BINCL. */
1460 record_include_end (cs);
1461 break;
1462
1463 case C_BLOCK:
1464 if (strcmp (cs->c_name, ".bb") == 0)
1465 {
1466 depth++;
1467 newobj = push_context (depth,
1468 (cs->c_value
1469 + objfile->text_section_offset ()));
1470 }
1471 else if (strcmp (cs->c_name, ".eb") == 0)
1472 {
1473 if (outermost_context_p ())
1474 { /* We attempted to pop an empty context stack. */
1475 eb_complaint (cs->c_symnum);
1476 break;
1477 }
1478 struct context_stack cstk = pop_context ();
1479 if (depth-- != cstk.depth)
1480 {
1481 eb_complaint (cs->c_symnum);
1482 break;
1483 }
1484 if (*get_local_symbols () && !outermost_context_p ())
1485 {
1486 /* Make a block for the local symbols within. */
1487 finish_block (cstk.name,
1488 cstk.old_blocks, NULL,
1489 cstk.start_addr,
1490 (cs->c_value
1491 + objfile->text_section_offset ()));
1492 }
1493 *get_local_symbols () = cstk.locals;
1494 }
1495 break;
1496
1497 default:
1498 process_xcoff_symbol (cs, objfile);
1499 break;
1500 }
1501 }
1502
1503 if (get_last_source_file ())
1504 {
1505 struct compunit_symtab *cust;
1506
1507 complete_symtab (filestring, file_start_addr);
1508 cur_src_end_addr = file_end_addr;
1509 cust = end_symtab (file_end_addr, SECT_OFF_TEXT (objfile));
1510 /* When reading symbols for the last C_FILE of the objfile, try
1511 to make sure that we set pst->compunit_symtab to the symtab for the
1512 file, not to the _globals_ symtab. I'm not sure whether this
1513 actually works right or when/if it comes up. */
1514 if (pst->compunit_symtab == NULL)
1515 pst->compunit_symtab = cust;
1516 end_stabs ();
1517 }
1518 }
1519
1520 #define SYMBOL_DUP(SYMBOL1, SYMBOL2) \
1521 (SYMBOL2) = new (&objfile->objfile_obstack) symbol (); \
1522 *(SYMBOL2) = *(SYMBOL1);
1523
1524
1525 #define SYMNAME_ALLOC(NAME, ALLOCED) \
1526 ((ALLOCED) ? (NAME) : obstack_strdup (&objfile->objfile_obstack, \
1527 (NAME)))
1528
1529
1530 /* process one xcoff symbol. */
1531
1532 static struct symbol *
1533 process_xcoff_symbol (struct coff_symbol *cs, struct objfile *objfile)
1534 {
1535 struct symbol onesymbol;
1536 struct symbol *sym = &onesymbol;
1537 struct symbol *sym2 = NULL;
1538 char *name, *pp;
1539
1540 int sec;
1541 CORE_ADDR off;
1542
1543 if (cs->c_secnum < 0)
1544 {
1545 /* The value is a register number, offset within a frame, etc.,
1546 and does not get relocated. */
1547 off = 0;
1548 sec = -1;
1549 }
1550 else
1551 {
1552 sec = secnum_to_section (cs->c_secnum, objfile);
1553 off = objfile->section_offsets[sec];
1554 }
1555
1556 name = cs->c_name;
1557 if (name[0] == '.')
1558 ++name;
1559
1560 initialize_objfile_symbol (sym);
1561
1562 /* default assumptions */
1563 SET_SYMBOL_VALUE_ADDRESS (sym, cs->c_value + off);
1564 SYMBOL_DOMAIN (sym) = VAR_DOMAIN;
1565 SYMBOL_SECTION (sym) = secnum_to_section (cs->c_secnum, objfile);
1566
1567 if (ISFCN (cs->c_type))
1568 {
1569 /* At this point, we don't know the type of the function. This
1570 will be patched with the type from its stab entry later on in
1571 patch_block_stabs (), unless the file was compiled without -g. */
1572
1573 sym->set_linkage_name (SYMNAME_ALLOC (name, symname_alloced));
1574 SYMBOL_TYPE (sym) = objfile_type (objfile)->nodebug_text_symbol;
1575
1576 SYMBOL_ACLASS_INDEX (sym) = LOC_BLOCK;
1577 SYMBOL_DUP (sym, sym2);
1578
1579 if (cs->c_sclass == C_EXT || C_WEAKEXT)
1580 add_symbol_to_list (sym2, get_global_symbols ());
1581 else if (cs->c_sclass == C_HIDEXT || cs->c_sclass == C_STAT)
1582 add_symbol_to_list (sym2, get_file_symbols ());
1583 }
1584 else
1585 {
1586 /* In case we can't figure out the type, provide default. */
1587 SYMBOL_TYPE (sym) = objfile_type (objfile)->nodebug_data_symbol;
1588
1589 switch (cs->c_sclass)
1590 {
1591 #if 0
1592 /* The values of functions and global symbols are now resolved
1593 via the global_sym_chain in stabsread.c. */
1594 case C_FUN:
1595 if (fcn_cs_saved.c_sclass == C_EXT)
1596 add_stab_to_list (name, &global_stabs);
1597 else
1598 add_stab_to_list (name, &file_stabs);
1599 break;
1600
1601 case C_GSYM:
1602 add_stab_to_list (name, &global_stabs);
1603 break;
1604 #endif
1605
1606 case C_BCOMM:
1607 common_block_start (cs->c_name, objfile);
1608 break;
1609
1610 case C_ECOMM:
1611 common_block_end (objfile);
1612 break;
1613
1614 default:
1615 complaint (_("Unexpected storage class: %d"),
1616 cs->c_sclass);
1617 /* FALLTHROUGH */
1618
1619 case C_DECL:
1620 case C_PSYM:
1621 case C_RPSYM:
1622 case C_ECOML:
1623 case C_LSYM:
1624 case C_RSYM:
1625 case C_GSYM:
1626
1627 {
1628 sym = define_symbol (cs->c_value + off, cs->c_name, 0, 0, objfile);
1629 if (sym != NULL)
1630 {
1631 SYMBOL_SECTION (sym) = sec;
1632 }
1633 return sym;
1634 }
1635
1636 case C_STSYM:
1637
1638 /* For xlc (not GCC), the 'V' symbol descriptor is used for
1639 all statics and we need to distinguish file-scope versus
1640 function-scope using within_function. We do this by
1641 changing the string we pass to define_symbol to use 'S'
1642 where we need to, which is not necessarily super-clean,
1643 but seems workable enough. */
1644
1645 if (*name == ':')
1646 return NULL;
1647
1648 pp = strchr (name, ':');
1649 if (pp == NULL)
1650 return NULL;
1651
1652 ++pp;
1653 if (*pp == 'V' && !within_function)
1654 *pp = 'S';
1655 sym = define_symbol ((cs->c_value
1656 + objfile->section_offsets[static_block_section]),
1657 cs->c_name, 0, 0, objfile);
1658 if (sym != NULL)
1659 {
1660 SET_SYMBOL_VALUE_ADDRESS (sym,
1661 SYMBOL_VALUE_ADDRESS (sym)
1662 + static_block_base);
1663 SYMBOL_SECTION (sym) = static_block_section;
1664 }
1665 return sym;
1666
1667 }
1668 }
1669 return sym2;
1670 }
1671
1672 /* Extract the file name from the aux entry of a C_FILE symbol.
1673 Result is in static storage and is only good for temporary use. */
1674
1675 static char *
1676 coff_getfilename (union internal_auxent *aux_entry, struct objfile *objfile)
1677 {
1678 static char buffer[BUFSIZ];
1679
1680 if (aux_entry->x_file.x_n.x_zeroes == 0)
1681 strcpy (buffer, (XCOFF_DATA (objfile)->strtbl
1682 + aux_entry->x_file.x_n.x_offset));
1683 else
1684 {
1685 strncpy (buffer, aux_entry->x_file.x_fname, FILNMLEN);
1686 buffer[FILNMLEN] = '\0';
1687 }
1688 return (buffer);
1689 }
1690
1691 /* Set *SYMBOL to symbol number symno in symtbl. */
1692 static void
1693 read_symbol (struct internal_syment *symbol, int symno)
1694 {
1695 struct xcoff_symfile_info *xcoff = XCOFF_DATA (this_symtab_objfile);
1696 int nsyms = xcoff->symtbl_num_syms;
1697 char *stbl = xcoff->symtbl;
1698
1699 if (symno < 0 || symno >= nsyms)
1700 {
1701 complaint (_("Invalid symbol offset"));
1702 symbol->n_value = 0;
1703 symbol->n_scnum = -1;
1704 return;
1705 }
1706 bfd_coff_swap_sym_in (this_symtab_objfile->obfd,
1707 stbl + (symno * local_symesz),
1708 symbol);
1709 }
1710
1711 /* Get value corresponding to symbol number symno in symtbl. */
1712
1713 static CORE_ADDR
1714 read_symbol_nvalue (int symno)
1715 {
1716 struct internal_syment symbol[1];
1717
1718 read_symbol (symbol, symno);
1719 return symbol->n_value;
1720 }
1721
1722
1723 /* Find the address of the function corresponding to symno, where
1724 symno is the symbol pointed to by the linetable. */
1725
1726 static int
1727 read_symbol_lineno (int symno)
1728 {
1729 struct objfile *objfile = this_symtab_objfile;
1730 int xcoff64 = bfd_xcoff_is_xcoff64 (objfile->obfd);
1731
1732 struct xcoff_symfile_info *info = XCOFF_DATA (objfile);
1733 int nsyms = info->symtbl_num_syms;
1734 char *stbl = info->symtbl;
1735 char *strtbl = info->strtbl;
1736
1737 struct internal_syment symbol[1];
1738 union internal_auxent main_aux[1];
1739
1740 if (symno < 0)
1741 {
1742 bf_notfound_complaint ();
1743 return 0;
1744 }
1745
1746 /* Note that just searching for a short distance (e.g. 50 symbols)
1747 is not enough, at least in the following case.
1748
1749 .extern foo
1750 [many .stabx entries]
1751 [a few functions, referring to foo]
1752 .globl foo
1753 .bf
1754
1755 What happens here is that the assembler moves the .stabx entries
1756 to right before the ".bf" for foo, but the symbol for "foo" is before
1757 all the stabx entries. See PR gdb/2222. */
1758
1759 /* Maintaining a table of .bf entries might be preferable to this search.
1760 If I understand things correctly it would need to be done only for
1761 the duration of a single psymtab to symtab conversion. */
1762 while (symno < nsyms)
1763 {
1764 bfd_coff_swap_sym_in (symfile_bfd,
1765 stbl + (symno * local_symesz), symbol);
1766 if (symbol->n_sclass == C_FCN)
1767 {
1768 char *name = xcoff64 ? strtbl + symbol->n_offset : symbol->n_name;
1769
1770 if (strcmp (name, ".bf") == 0)
1771 goto gotit;
1772 }
1773 symno += symbol->n_numaux + 1;
1774 }
1775
1776 bf_notfound_complaint ();
1777 return 0;
1778
1779 gotit:
1780 /* Take aux entry and return its lineno. */
1781 symno++;
1782 bfd_coff_swap_aux_in (objfile->obfd, stbl + symno * local_symesz,
1783 symbol->n_type, symbol->n_sclass,
1784 0, symbol->n_numaux, main_aux);
1785
1786 return main_aux->x_sym.x_misc.x_lnsz.x_lnno;
1787 }
1788
1789 /* Support for line number handling. */
1790
1791 /* This function is called for every section; it finds the outer limits
1792 * of the line table (minimum and maximum file offset) so that the
1793 * mainline code can read the whole thing for efficiency.
1794 */
1795 static void
1796 find_linenos (struct bfd *abfd, struct bfd_section *asect, void *vpinfo)
1797 {
1798 struct xcoff_symfile_info *info;
1799 int size, count;
1800 file_ptr offset, maxoff;
1801
1802 count = asect->lineno_count;
1803
1804 if (strcmp (asect->name, ".text") != 0 || count == 0)
1805 return;
1806
1807 size = count * coff_data (abfd)->local_linesz;
1808 info = (struct xcoff_symfile_info *) vpinfo;
1809 offset = asect->line_filepos;
1810 maxoff = offset + size;
1811
1812 if (offset < info->min_lineno_offset || info->min_lineno_offset == 0)
1813 info->min_lineno_offset = offset;
1814
1815 if (maxoff > info->max_lineno_offset)
1816 info->max_lineno_offset = maxoff;
1817 }
1818 \f
1819 static void
1820 xcoff_psymtab_to_symtab_1 (legacy_psymtab *pst, struct objfile *objfile)
1821 {
1822 int i;
1823
1824 if (!pst)
1825 return;
1826
1827 if (pst->readin)
1828 {
1829 fprintf_unfiltered
1830 (gdb_stderr, "Psymtab for %s already read in. Shouldn't happen.\n",
1831 pst->filename);
1832 return;
1833 }
1834
1835 /* Read in all partial symtabs on which this one is dependent. */
1836 for (i = 0; i < pst->number_of_dependencies; i++)
1837 if (!pst->dependencies[i]->readin)
1838 {
1839 /* Inform about additional files that need to be read in. */
1840 if (info_verbose)
1841 {
1842 fputs_filtered (" ", gdb_stdout);
1843 wrap_here ("");
1844 fputs_filtered ("and ", gdb_stdout);
1845 wrap_here ("");
1846 printf_filtered ("%s...", pst->dependencies[i]->filename);
1847 wrap_here (""); /* Flush output */
1848 gdb_flush (gdb_stdout);
1849 }
1850 pst->dependencies[i]->expand_psymtab (objfile);
1851 }
1852
1853 if (((struct symloc *) pst->read_symtab_private)->numsyms != 0)
1854 {
1855 /* Init stuff necessary for reading in symbols. */
1856 stabsread_init ();
1857
1858 scoped_free_pendings free_pending;
1859 read_xcoff_symtab (objfile, pst);
1860 }
1861
1862 pst->readin = true;
1863 }
1864
1865 /* Read in all of the symbols for a given psymtab for real.
1866 Be verbose about it if the user wants that. SELF is not NULL. */
1867
1868 static void
1869 xcoff_read_symtab (legacy_psymtab *self, struct objfile *objfile)
1870 {
1871 gdb_assert (!self->readin);
1872
1873 if (((struct symloc *) self->read_symtab_private)->numsyms != 0
1874 || self->number_of_dependencies)
1875 {
1876 next_symbol_text_func = xcoff_next_symbol_text;
1877
1878 self->expand_psymtab (objfile);
1879
1880 /* Match with global symbols. This only needs to be done once,
1881 after all of the symtabs and dependencies have been read in. */
1882 scan_file_globals (objfile);
1883 }
1884 }
1885 \f
1886 static void
1887 xcoff_new_init (struct objfile *objfile)
1888 {
1889 stabsread_new_init ();
1890 }
1891
1892 /* Do initialization in preparation for reading symbols from OBJFILE.
1893
1894 We will only be called if this is an XCOFF or XCOFF-like file.
1895 BFD handles figuring out the format of the file, and code in symfile.c
1896 uses BFD's determination to vector to us. */
1897
1898 static void
1899 xcoff_symfile_init (struct objfile *objfile)
1900 {
1901 /* Allocate struct to keep track of the symfile. */
1902 xcoff_objfile_data_key.emplace (objfile);
1903
1904 /* XCOFF objects may be reordered, so set OBJF_REORDERED. If we
1905 find this causes a significant slowdown in gdb then we could
1906 set it in the debug symbol readers only when necessary. */
1907 objfile->flags |= OBJF_REORDERED;
1908 }
1909
1910 /* Perform any local cleanups required when we are done with a particular
1911 objfile. I.E, we are in the process of discarding all symbol information
1912 for an objfile, freeing up all memory held for it, and unlinking the
1913 objfile struct from the global list of known objfiles. */
1914
1915 static void
1916 xcoff_symfile_finish (struct objfile *objfile)
1917 {
1918 /* Start with a fresh include table for the next objfile. */
1919 if (inclTable)
1920 {
1921 xfree (inclTable);
1922 inclTable = NULL;
1923 }
1924 inclIndx = inclLength = inclDepth = 0;
1925 }
1926
1927
1928 static void
1929 init_stringtab (bfd *abfd, file_ptr offset, struct objfile *objfile)
1930 {
1931 long length;
1932 int val;
1933 unsigned char lengthbuf[4];
1934 char *strtbl;
1935 struct xcoff_symfile_info *xcoff = XCOFF_DATA (objfile);
1936
1937 xcoff->strtbl = NULL;
1938
1939 if (bfd_seek (abfd, offset, SEEK_SET) < 0)
1940 error (_("cannot seek to string table in %s: %s"),
1941 bfd_get_filename (abfd), bfd_errmsg (bfd_get_error ()));
1942
1943 val = bfd_bread ((char *) lengthbuf, sizeof lengthbuf, abfd);
1944 length = bfd_h_get_32 (abfd, lengthbuf);
1945
1946 /* If no string table is needed, then the file may end immediately
1947 after the symbols. Just return with `strtbl' set to NULL. */
1948
1949 if (val != sizeof lengthbuf || length < sizeof lengthbuf)
1950 return;
1951
1952 /* Allocate string table from objfile_obstack. We will need this table
1953 as long as we have its symbol table around. */
1954
1955 strtbl = (char *) obstack_alloc (&objfile->objfile_obstack, length);
1956 xcoff->strtbl = strtbl;
1957
1958 /* Copy length buffer, the first byte is usually zero and is
1959 used for stabs with a name length of zero. */
1960 memcpy (strtbl, lengthbuf, sizeof lengthbuf);
1961 if (length == sizeof lengthbuf)
1962 return;
1963
1964 val = bfd_bread (strtbl + sizeof lengthbuf, length - sizeof lengthbuf, abfd);
1965
1966 if (val != length - sizeof lengthbuf)
1967 error (_("cannot read string table from %s: %s"),
1968 bfd_get_filename (abfd), bfd_errmsg (bfd_get_error ()));
1969 if (strtbl[length - 1] != '\0')
1970 error (_("bad symbol file: string table "
1971 "does not end with null character"));
1972
1973 return;
1974 }
1975 \f
1976 /* If we have not yet seen a function for this psymtab, this is 0. If we
1977 have seen one, it is the offset in the line numbers of the line numbers
1978 for the psymtab. */
1979 static unsigned int first_fun_line_offset;
1980
1981 /* Allocate and partially fill a partial symtab. It will be
1982 completely filled at the end of the symbol list.
1983
1984 SYMFILE_NAME is the name of the symbol-file we are reading from, and ADDR
1985 is the address relative to which its symbols are (incremental) or 0
1986 (normal). */
1987
1988 static legacy_psymtab *
1989 xcoff_start_psymtab (struct objfile *objfile,
1990 const char *filename, int first_symnum)
1991 {
1992 /* We fill in textlow later. */
1993 legacy_psymtab *result = new legacy_psymtab (filename, objfile, 0);
1994
1995 result->read_symtab_private =
1996 XOBNEW (&objfile->objfile_obstack, struct symloc);
1997 ((struct symloc *) result->read_symtab_private)->first_symnum = first_symnum;
1998 result->legacy_read_symtab = xcoff_read_symtab;
1999 result->legacy_expand_psymtab = xcoff_psymtab_to_symtab_1;
2000
2001 /* Deduce the source language from the filename for this psymtab. */
2002 psymtab_language = deduce_language_from_filename (filename);
2003
2004 return result;
2005 }
2006
2007 /* Close off the current usage of PST.
2008 Returns PST, or NULL if the partial symtab was empty and thrown away.
2009
2010 CAPPING_SYMBOL_NUMBER is the end of pst (exclusive).
2011
2012 INCLUDE_LIST, NUM_INCLUDES, DEPENDENCY_LIST, and NUMBER_DEPENDENCIES
2013 are the information for includes and dependencies. */
2014
2015 static legacy_psymtab *
2016 xcoff_end_psymtab (struct objfile *objfile, legacy_psymtab *pst,
2017 const char **include_list, int num_includes,
2018 int capping_symbol_number,
2019 legacy_psymtab **dependency_list,
2020 int number_dependencies, int textlow_not_set)
2021 {
2022 int i;
2023
2024 if (capping_symbol_number != -1)
2025 ((struct symloc *) pst->read_symtab_private)->numsyms =
2026 capping_symbol_number
2027 - ((struct symloc *) pst->read_symtab_private)->first_symnum;
2028 ((struct symloc *) pst->read_symtab_private)->lineno_off =
2029 first_fun_line_offset;
2030 first_fun_line_offset = 0;
2031
2032 end_psymtab_common (objfile, pst);
2033
2034 pst->number_of_dependencies = number_dependencies;
2035 if (number_dependencies)
2036 {
2037 pst->dependencies
2038 = objfile->partial_symtabs->allocate_dependencies (number_dependencies);
2039 memcpy (pst->dependencies, dependency_list,
2040 number_dependencies * sizeof (legacy_psymtab *));
2041 }
2042 else
2043 pst->dependencies = 0;
2044
2045 for (i = 0; i < num_includes; i++)
2046 {
2047 legacy_psymtab *subpst =
2048 new legacy_psymtab (include_list[i], objfile);
2049
2050 subpst->read_symtab_private = XOBNEW (&objfile->objfile_obstack, symloc);
2051 ((struct symloc *) subpst->read_symtab_private)->first_symnum = 0;
2052 ((struct symloc *) subpst->read_symtab_private)->numsyms = 0;
2053
2054 /* We could save slight bits of space by only making one of these,
2055 shared by the entire set of include files. FIXME-someday. */
2056 subpst->dependencies =
2057 objfile->partial_symtabs->allocate_dependencies (1);
2058 subpst->dependencies[0] = pst;
2059 subpst->number_of_dependencies = 1;
2060
2061 subpst->legacy_read_symtab = pst->legacy_read_symtab;
2062 subpst->legacy_expand_psymtab = pst->legacy_expand_psymtab;
2063 }
2064
2065 if (num_includes == 0
2066 && number_dependencies == 0
2067 && pst->n_global_syms == 0
2068 && pst->n_static_syms == 0)
2069 {
2070 /* Throw away this psymtab, it's empty. We can't deallocate it, since
2071 it is on the obstack, but we can forget to chain it on the list. */
2072 /* Empty psymtabs happen as a result of header files which don't have
2073 any symbols in them. There can be a lot of them. */
2074
2075 discard_psymtab (objfile, pst);
2076
2077 /* Indicate that psymtab was thrown away. */
2078 pst = NULL;
2079 }
2080 return pst;
2081 }
2082
2083 /* Swap raw symbol at *RAW and put the name in *NAME, the symbol in
2084 *SYMBOL, the first auxent in *AUX. Advance *RAW and *SYMNUMP over
2085 the symbol and its auxents. */
2086
2087 static void
2088 swap_sym (struct internal_syment *symbol, union internal_auxent *aux,
2089 const char **name, char **raw, unsigned int *symnump,
2090 struct objfile *objfile)
2091 {
2092 bfd_coff_swap_sym_in (objfile->obfd, *raw, symbol);
2093 if (symbol->n_zeroes)
2094 {
2095 /* If it's exactly E_SYMNMLEN characters long it isn't
2096 '\0'-terminated. */
2097 if (symbol->n_name[E_SYMNMLEN - 1] != '\0')
2098 {
2099 /* FIXME: wastes memory for symbols which we don't end up putting
2100 into the minimal symbols. */
2101 char *p;
2102
2103 p = (char *) obstack_alloc (&objfile->objfile_obstack,
2104 E_SYMNMLEN + 1);
2105 strncpy (p, symbol->n_name, E_SYMNMLEN);
2106 p[E_SYMNMLEN] = '\0';
2107 *name = p;
2108 }
2109 else
2110 /* Point to the unswapped name as that persists as long as the
2111 objfile does. */
2112 *name = ((struct external_syment *) *raw)->e.e_name;
2113 }
2114 else if (symbol->n_sclass & 0x80)
2115 {
2116 *name = XCOFF_DATA (objfile)->debugsec + symbol->n_offset;
2117 }
2118 else
2119 {
2120 *name = XCOFF_DATA (objfile)->strtbl + symbol->n_offset;
2121 }
2122 ++*symnump;
2123 *raw += coff_data (objfile->obfd)->local_symesz;
2124 if (symbol->n_numaux > 0)
2125 {
2126 bfd_coff_swap_aux_in (objfile->obfd, *raw, symbol->n_type,
2127 symbol->n_sclass, 0, symbol->n_numaux, aux);
2128
2129 *symnump += symbol->n_numaux;
2130 *raw += coff_data (objfile->obfd)->local_symesz * symbol->n_numaux;
2131 }
2132 }
2133
2134 static void
2135 function_outside_compilation_unit_complaint (const char *arg1)
2136 {
2137 complaint (_("function `%s' appears to be defined "
2138 "outside of all compilation units"),
2139 arg1);
2140 }
2141
2142 static void
2143 scan_xcoff_symtab (minimal_symbol_reader &reader,
2144 struct objfile *objfile)
2145 {
2146 struct gdbarch *gdbarch = get_objfile_arch (objfile);
2147 CORE_ADDR toc_offset = 0; /* toc offset value in data section. */
2148 const char *filestring = NULL;
2149
2150 const char *namestring;
2151 bfd *abfd;
2152 asection *bfd_sect;
2153 unsigned int nsyms;
2154
2155 /* Current partial symtab */
2156 legacy_psymtab *pst;
2157
2158 /* List of current psymtab's include files. */
2159 const char **psymtab_include_list;
2160 int includes_allocated;
2161 int includes_used;
2162
2163 /* Index within current psymtab dependency list. */
2164 legacy_psymtab **dependency_list;
2165 int dependencies_used, dependencies_allocated;
2166
2167 char *sraw_symbol;
2168 struct internal_syment symbol;
2169 union internal_auxent main_aux[5];
2170 unsigned int ssymnum;
2171
2172 const char *last_csect_name = NULL; /* Last seen csect's name and value. */
2173 CORE_ADDR last_csect_val = 0;
2174 int last_csect_sec = 0;
2175 int misc_func_recorded = 0; /* true if any misc. function. */
2176 int textlow_not_set = 1;
2177
2178 pst = (legacy_psymtab *) 0;
2179
2180 includes_allocated = 30;
2181 includes_used = 0;
2182 psymtab_include_list = (const char **) alloca (includes_allocated *
2183 sizeof (const char *));
2184
2185 dependencies_allocated = 30;
2186 dependencies_used = 0;
2187 dependency_list =
2188 (legacy_psymtab **) alloca (dependencies_allocated *
2189 sizeof (legacy_psymtab *));
2190
2191 set_last_source_file (NULL);
2192
2193 abfd = objfile->obfd;
2194 next_symbol_text_func = xcoff_next_symbol_text;
2195
2196 sraw_symbol = XCOFF_DATA (objfile)->symtbl;
2197 nsyms = XCOFF_DATA (objfile)->symtbl_num_syms;
2198 ssymnum = 0;
2199 while (ssymnum < nsyms)
2200 {
2201 int sclass;
2202
2203 QUIT;
2204
2205 bfd_coff_swap_sym_in (abfd, sraw_symbol, &symbol);
2206 sclass = symbol.n_sclass;
2207
2208 switch (sclass)
2209 {
2210 case C_EXT:
2211 case C_HIDEXT:
2212 case C_WEAKEXT:
2213 {
2214 /* The CSECT auxent--always the last auxent. */
2215 union internal_auxent csect_aux;
2216 unsigned int symnum_before = ssymnum;
2217
2218 swap_sym (&symbol, &main_aux[0], &namestring, &sraw_symbol,
2219 &ssymnum, objfile);
2220 if (symbol.n_numaux > 1)
2221 {
2222 bfd_coff_swap_aux_in
2223 (objfile->obfd,
2224 sraw_symbol - coff_data (abfd)->local_symesz,
2225 symbol.n_type,
2226 symbol.n_sclass,
2227 symbol.n_numaux - 1,
2228 symbol.n_numaux,
2229 &csect_aux);
2230 }
2231 else
2232 csect_aux = main_aux[0];
2233
2234 /* If symbol name starts with ".$" or "$", ignore it. */
2235 if (namestring[0] == '$'
2236 || (namestring[0] == '.' && namestring[1] == '$'))
2237 break;
2238
2239 switch (csect_aux.x_csect.x_smtyp & 0x7)
2240 {
2241 case XTY_SD:
2242 switch (csect_aux.x_csect.x_smclas)
2243 {
2244 case XMC_PR:
2245 if (last_csect_name)
2246 {
2247 /* If no misc. function recorded in the last
2248 seen csect, enter it as a function. This
2249 will take care of functions like strcmp()
2250 compiled by xlc. */
2251
2252 if (!misc_func_recorded)
2253 {
2254 record_minimal_symbol
2255 (reader, last_csect_name, last_csect_val,
2256 mst_text, last_csect_sec, objfile);
2257 misc_func_recorded = 1;
2258 }
2259
2260 if (pst != NULL)
2261 {
2262 /* We have to allocate one psymtab for
2263 each program csect, because their text
2264 sections need not be adjacent. */
2265 xcoff_end_psymtab
2266 (objfile, pst, psymtab_include_list,
2267 includes_used, symnum_before, dependency_list,
2268 dependencies_used, textlow_not_set);
2269 includes_used = 0;
2270 dependencies_used = 0;
2271 /* Give all psymtabs for this source file the same
2272 name. */
2273 pst = xcoff_start_psymtab
2274 (objfile,
2275 filestring,
2276 symnum_before);
2277 }
2278 }
2279 /* Activate the misc_func_recorded mechanism for
2280 compiler- and linker-generated CSECTs like ".strcmp"
2281 and "@FIX1". */
2282 if (namestring && (namestring[0] == '.'
2283 || namestring[0] == '@'))
2284 {
2285 last_csect_name = namestring;
2286 last_csect_val = symbol.n_value;
2287 last_csect_sec = symbol.n_scnum;
2288 }
2289 if (pst != NULL)
2290 {
2291 CORE_ADDR highval =
2292 symbol.n_value + csect_aux.x_csect.x_scnlen.l;
2293
2294 if (highval > pst->raw_text_high ())
2295 pst->set_text_high (highval);
2296 if (!pst->text_low_valid
2297 || symbol.n_value < pst->raw_text_low ())
2298 pst->set_text_low (symbol.n_value);
2299 }
2300 misc_func_recorded = 0;
2301 break;
2302
2303 case XMC_RW:
2304 case XMC_TD:
2305 /* Data variables are recorded in the minimal symbol
2306 table, except for section symbols. */
2307 if (*namestring != '.')
2308 record_minimal_symbol
2309 (reader, namestring, symbol.n_value,
2310 sclass == C_HIDEXT ? mst_file_data : mst_data,
2311 symbol.n_scnum, objfile);
2312 break;
2313
2314 case XMC_TC0:
2315 if (toc_offset)
2316 warning (_("More than one XMC_TC0 symbol found."));
2317 toc_offset = symbol.n_value;
2318
2319 /* Make TOC offset relative to start address of
2320 section. */
2321 bfd_sect = secnum_to_bfd_section (symbol.n_scnum, objfile);
2322 if (bfd_sect)
2323 toc_offset -= bfd_section_vma (bfd_sect);
2324 break;
2325
2326 case XMC_TC:
2327 /* These symbols tell us where the TOC entry for a
2328 variable is, not the variable itself. */
2329 break;
2330
2331 default:
2332 break;
2333 }
2334 break;
2335
2336 case XTY_LD:
2337 switch (csect_aux.x_csect.x_smclas)
2338 {
2339 case XMC_PR:
2340 /* A function entry point. */
2341
2342 if (first_fun_line_offset == 0 && symbol.n_numaux > 1)
2343 first_fun_line_offset =
2344 main_aux[0].x_sym.x_fcnary.x_fcn.x_lnnoptr;
2345
2346 record_minimal_symbol
2347 (reader, namestring, symbol.n_value,
2348 sclass == C_HIDEXT ? mst_file_text : mst_text,
2349 symbol.n_scnum, objfile);
2350 misc_func_recorded = 1;
2351 break;
2352
2353 case XMC_GL:
2354 /* shared library function trampoline code entry
2355 point. */
2356
2357 /* record trampoline code entries as
2358 mst_solib_trampoline symbol. When we lookup mst
2359 symbols, we will choose mst_text over
2360 mst_solib_trampoline. */
2361 record_minimal_symbol
2362 (reader, namestring, symbol.n_value,
2363 mst_solib_trampoline, symbol.n_scnum, objfile);
2364 misc_func_recorded = 1;
2365 break;
2366
2367 case XMC_DS:
2368 /* The symbols often have the same names as
2369 debug symbols for functions, and confuse
2370 lookup_symbol. */
2371 break;
2372
2373 default:
2374
2375 /* xlc puts each variable in a separate csect,
2376 so we get an XTY_SD for each variable. But
2377 gcc puts several variables in a csect, so
2378 that each variable only gets an XTY_LD. We
2379 still need to record them. This will
2380 typically be XMC_RW; I suspect XMC_RO and
2381 XMC_BS might be possible too. */
2382 if (*namestring != '.')
2383 record_minimal_symbol
2384 (reader, namestring, symbol.n_value,
2385 sclass == C_HIDEXT ? mst_file_data : mst_data,
2386 symbol.n_scnum, objfile);
2387 break;
2388 }
2389 break;
2390
2391 case XTY_CM:
2392 switch (csect_aux.x_csect.x_smclas)
2393 {
2394 case XMC_RW:
2395 case XMC_BS:
2396 /* Common variables are recorded in the minimal symbol
2397 table, except for section symbols. */
2398 if (*namestring != '.')
2399 record_minimal_symbol
2400 (reader, namestring, symbol.n_value,
2401 sclass == C_HIDEXT ? mst_file_bss : mst_bss,
2402 symbol.n_scnum, objfile);
2403 break;
2404 }
2405 break;
2406
2407 default:
2408 break;
2409 }
2410 }
2411 break;
2412 case C_FILE:
2413 {
2414 unsigned int symnum_before;
2415
2416 symnum_before = ssymnum;
2417 swap_sym (&symbol, &main_aux[0], &namestring, &sraw_symbol,
2418 &ssymnum, objfile);
2419
2420 /* See if the last csect needs to be recorded. */
2421
2422 if (last_csect_name && !misc_func_recorded)
2423 {
2424 /* If no misc. function recorded in the last seen csect, enter
2425 it as a function. This will take care of functions like
2426 strcmp() compiled by xlc. */
2427
2428 record_minimal_symbol (reader, last_csect_name, last_csect_val,
2429 mst_text, last_csect_sec, objfile);
2430 misc_func_recorded = 1;
2431 }
2432
2433 if (pst)
2434 {
2435 xcoff_end_psymtab (objfile, pst, psymtab_include_list,
2436 includes_used, symnum_before,
2437 dependency_list, dependencies_used,
2438 textlow_not_set);
2439 includes_used = 0;
2440 dependencies_used = 0;
2441 }
2442 first_fun_line_offset = 0;
2443
2444 /* XCOFF, according to the AIX 3.2 documentation, puts the
2445 filename in cs->c_name. But xlc 1.3.0.2 has decided to
2446 do things the standard COFF way and put it in the auxent.
2447 We use the auxent if the symbol is ".file" and an auxent
2448 exists, otherwise use the symbol itself. */
2449 if (!strcmp (namestring, ".file") && symbol.n_numaux > 0)
2450 {
2451 filestring = coff_getfilename (&main_aux[0], objfile);
2452 }
2453 else
2454 filestring = namestring;
2455
2456 pst = xcoff_start_psymtab (objfile,
2457 filestring,
2458 symnum_before);
2459 last_csect_name = NULL;
2460 }
2461 break;
2462
2463 default:
2464 {
2465 complaint (_("Storage class %d not recognized during scan"),
2466 sclass);
2467 }
2468 /* FALLTHROUGH */
2469
2470 case C_FCN:
2471 /* C_FCN is .bf and .ef symbols. I think it is sufficient
2472 to handle only the C_FUN and C_EXT. */
2473
2474 case C_BSTAT:
2475 case C_ESTAT:
2476 case C_ARG:
2477 case C_REGPARM:
2478 case C_REG:
2479 case C_TPDEF:
2480 case C_STRTAG:
2481 case C_UNTAG:
2482 case C_ENTAG:
2483 case C_LABEL:
2484 case C_NULL:
2485
2486 /* C_EINCL means we are switching back to the main file. But there
2487 is no reason to care; the only thing we want to know about
2488 includes is the names of all the included (.h) files. */
2489 case C_EINCL:
2490
2491 case C_BLOCK:
2492
2493 /* I don't think C_STAT is used in xcoff; C_HIDEXT appears to be
2494 used instead. */
2495 case C_STAT:
2496
2497 /* I don't think the name of the common block (as opposed to the
2498 variables within it) is something which is user visible
2499 currently. */
2500 case C_BCOMM:
2501 case C_ECOMM:
2502
2503 case C_PSYM:
2504 case C_RPSYM:
2505
2506 /* I think we can ignore C_LSYM; types on xcoff seem to use C_DECL
2507 so C_LSYM would appear to be only for locals. */
2508 case C_LSYM:
2509
2510 case C_AUTO:
2511 case C_RSYM:
2512 {
2513 /* We probably could save a few instructions by assuming that
2514 C_LSYM, C_PSYM, etc., never have auxents. */
2515 int naux1 = symbol.n_numaux + 1;
2516
2517 ssymnum += naux1;
2518 sraw_symbol += bfd_coff_symesz (abfd) * naux1;
2519 }
2520 break;
2521
2522 case C_BINCL:
2523 {
2524 /* Mark down an include file in the current psymtab. */
2525 enum language tmp_language;
2526
2527 swap_sym (&symbol, &main_aux[0], &namestring, &sraw_symbol,
2528 &ssymnum, objfile);
2529
2530 tmp_language = deduce_language_from_filename (namestring);
2531
2532 /* Only change the psymtab's language if we've learned
2533 something useful (eg. tmp_language is not language_unknown).
2534 In addition, to match what start_subfile does, never change
2535 from C++ to C. */
2536 if (tmp_language != language_unknown
2537 && (tmp_language != language_c
2538 || psymtab_language != language_cplus))
2539 psymtab_language = tmp_language;
2540
2541 /* In C++, one may expect the same filename to come round many
2542 times, when code is coming alternately from the main file
2543 and from inline functions in other files. So I check to see
2544 if this is a file we've seen before -- either the main
2545 source file, or a previously included file.
2546
2547 This seems to be a lot of time to be spending on N_SOL, but
2548 things like "break c-exp.y:435" need to work (I
2549 suppose the psymtab_include_list could be hashed or put
2550 in a binary tree, if profiling shows this is a major hog). */
2551 if (pst && strcmp (namestring, pst->filename) == 0)
2552 continue;
2553
2554 {
2555 int i;
2556
2557 for (i = 0; i < includes_used; i++)
2558 if (strcmp (namestring, psymtab_include_list[i]) == 0)
2559 {
2560 i = -1;
2561 break;
2562 }
2563 if (i == -1)
2564 continue;
2565 }
2566 psymtab_include_list[includes_used++] = namestring;
2567 if (includes_used >= includes_allocated)
2568 {
2569 const char **orig = psymtab_include_list;
2570
2571 psymtab_include_list = (const char **)
2572 alloca ((includes_allocated *= 2) *
2573 sizeof (const char *));
2574 memcpy (psymtab_include_list, orig,
2575 includes_used * sizeof (const char *));
2576 }
2577 continue;
2578 }
2579 case C_FUN:
2580 /* The value of the C_FUN is not the address of the function (it
2581 appears to be the address before linking), but as long as it
2582 is smaller than the actual address, then find_pc_partial_function
2583 will use the minimal symbols instead. I hope. */
2584
2585 case C_GSYM:
2586 case C_ECOML:
2587 case C_DECL:
2588 case C_STSYM:
2589 {
2590 const char *p;
2591
2592 swap_sym (&symbol, &main_aux[0], &namestring, &sraw_symbol,
2593 &ssymnum, objfile);
2594
2595 p = strchr (namestring, ':');
2596 if (!p)
2597 continue; /* Not a debugging symbol. */
2598
2599 /* Main processing section for debugging symbols which
2600 the initial read through the symbol tables needs to worry
2601 about. If we reach this point, the symbol which we are
2602 considering is definitely one we are interested in.
2603 p must also contain the (valid) index into the namestring
2604 which indicates the debugging type symbol. */
2605
2606 switch (p[1])
2607 {
2608 case 'S':
2609 if (gdbarch_static_transform_name_p (gdbarch))
2610 namestring = gdbarch_static_transform_name
2611 (gdbarch, namestring);
2612
2613 add_psymbol_to_list (gdb::string_view (namestring,
2614 p - namestring),
2615 true, VAR_DOMAIN, LOC_STATIC,
2616 SECT_OFF_DATA (objfile),
2617 psymbol_placement::STATIC,
2618 symbol.n_value,
2619 psymtab_language, objfile);
2620 continue;
2621
2622 case 'G':
2623 /* The addresses in these entries are reported to be
2624 wrong. See the code that reads 'G's for symtabs. */
2625 add_psymbol_to_list (gdb::string_view (namestring,
2626 p - namestring),
2627 true, VAR_DOMAIN, LOC_STATIC,
2628 SECT_OFF_DATA (objfile),
2629 psymbol_placement::GLOBAL,
2630 symbol.n_value,
2631 psymtab_language, objfile);
2632 continue;
2633
2634 case 'T':
2635 /* When a 'T' entry is defining an anonymous enum, it
2636 may have a name which is the empty string, or a
2637 single space. Since they're not really defining a
2638 symbol, those shouldn't go in the partial symbol
2639 table. We do pick up the elements of such enums at
2640 'check_enum:', below. */
2641 if (p >= namestring + 2
2642 || (p == namestring + 1
2643 && namestring[0] != ' '))
2644 {
2645 add_psymbol_to_list (gdb::string_view (namestring,
2646 p - namestring),
2647 true, STRUCT_DOMAIN, LOC_TYPEDEF, -1,
2648 psymbol_placement::STATIC,
2649 0, psymtab_language, objfile);
2650 if (p[2] == 't')
2651 {
2652 /* Also a typedef with the same name. */
2653 add_psymbol_to_list (gdb::string_view (namestring,
2654 p - namestring),
2655 true, VAR_DOMAIN, LOC_TYPEDEF, -1,
2656 psymbol_placement::STATIC,
2657 0, psymtab_language, objfile);
2658 p += 1;
2659 }
2660 }
2661 goto check_enum;
2662
2663 case 't':
2664 if (p != namestring) /* a name is there, not just :T... */
2665 {
2666 add_psymbol_to_list (gdb::string_view (namestring,
2667 p - namestring),
2668 true, VAR_DOMAIN, LOC_TYPEDEF, -1,
2669 psymbol_placement::STATIC,
2670 0, psymtab_language, objfile);
2671 }
2672 check_enum:
2673 /* If this is an enumerated type, we need to
2674 add all the enum constants to the partial symbol
2675 table. This does not cover enums without names, e.g.
2676 "enum {a, b} c;" in C, but fortunately those are
2677 rare. There is no way for GDB to find those from the
2678 enum type without spending too much time on it. Thus
2679 to solve this problem, the compiler needs to put out the
2680 enum in a nameless type. GCC2 does this. */
2681
2682 /* We are looking for something of the form
2683 <name> ":" ("t" | "T") [<number> "="] "e"
2684 {<constant> ":" <value> ","} ";". */
2685
2686 /* Skip over the colon and the 't' or 'T'. */
2687 p += 2;
2688 /* This type may be given a number. Also, numbers can come
2689 in pairs like (0,26). Skip over it. */
2690 while ((*p >= '0' && *p <= '9')
2691 || *p == '(' || *p == ',' || *p == ')'
2692 || *p == '=')
2693 p++;
2694
2695 if (*p++ == 'e')
2696 {
2697 /* The aix4 compiler emits extra crud before the
2698 members. */
2699 if (*p == '-')
2700 {
2701 /* Skip over the type (?). */
2702 while (*p != ':')
2703 p++;
2704
2705 /* Skip over the colon. */
2706 p++;
2707 }
2708
2709 /* We have found an enumerated type. */
2710 /* According to comments in read_enum_type
2711 a comma could end it instead of a semicolon.
2712 I don't know where that happens.
2713 Accept either. */
2714 while (*p && *p != ';' && *p != ',')
2715 {
2716 const char *q;
2717
2718 /* Check for and handle cretinous dbx symbol name
2719 continuation! */
2720 if (*p == '\\' || (*p == '?' && p[1] == '\0'))
2721 p = next_symbol_text (objfile);
2722
2723 /* Point to the character after the name
2724 of the enum constant. */
2725 for (q = p; *q && *q != ':'; q++)
2726 ;
2727 /* Note that the value doesn't matter for
2728 enum constants in psymtabs, just in symtabs. */
2729 add_psymbol_to_list (gdb::string_view (p, q - p), true,
2730 VAR_DOMAIN, LOC_CONST, -1,
2731 psymbol_placement::STATIC,
2732 0, psymtab_language, objfile);
2733 /* Point past the name. */
2734 p = q;
2735 /* Skip over the value. */
2736 while (*p && *p != ',')
2737 p++;
2738 /* Advance past the comma. */
2739 if (*p)
2740 p++;
2741 }
2742 }
2743 continue;
2744
2745 case 'c':
2746 /* Constant, e.g. from "const" in Pascal. */
2747 add_psymbol_to_list (gdb::string_view (namestring,
2748 p - namestring),
2749 true, VAR_DOMAIN, LOC_CONST, -1,
2750 psymbol_placement::STATIC,
2751 0, psymtab_language, objfile);
2752 continue;
2753
2754 case 'f':
2755 if (! pst)
2756 {
2757 int name_len = p - namestring;
2758 char *name = (char *) xmalloc (name_len + 1);
2759
2760 memcpy (name, namestring, name_len);
2761 name[name_len] = '\0';
2762 function_outside_compilation_unit_complaint (name);
2763 xfree (name);
2764 }
2765 add_psymbol_to_list (gdb::string_view (namestring,
2766 p - namestring),
2767 true, VAR_DOMAIN, LOC_BLOCK,
2768 SECT_OFF_TEXT (objfile),
2769 psymbol_placement::STATIC,
2770 symbol.n_value,
2771 psymtab_language, objfile);
2772 continue;
2773
2774 /* Global functions were ignored here, but now they
2775 are put into the global psymtab like one would expect.
2776 They're also in the minimal symbol table. */
2777 case 'F':
2778 if (! pst)
2779 {
2780 int name_len = p - namestring;
2781 char *name = (char *) xmalloc (name_len + 1);
2782
2783 memcpy (name, namestring, name_len);
2784 name[name_len] = '\0';
2785 function_outside_compilation_unit_complaint (name);
2786 xfree (name);
2787 }
2788
2789 /* We need only the minimal symbols for these
2790 loader-generated definitions. Keeping the global
2791 symbols leads to "in psymbols but not in symbols"
2792 errors. */
2793 if (startswith (namestring, "@FIX"))
2794 continue;
2795
2796 add_psymbol_to_list (gdb::string_view (namestring,
2797 p - namestring),
2798 true, VAR_DOMAIN, LOC_BLOCK,
2799 SECT_OFF_TEXT (objfile),
2800 psymbol_placement::GLOBAL,
2801 symbol.n_value,
2802 psymtab_language, objfile);
2803 continue;
2804
2805 /* Two things show up here (hopefully); static symbols of
2806 local scope (static used inside braces) or extensions
2807 of structure symbols. We can ignore both. */
2808 case 'V':
2809 case '(':
2810 case '0':
2811 case '1':
2812 case '2':
2813 case '3':
2814 case '4':
2815 case '5':
2816 case '6':
2817 case '7':
2818 case '8':
2819 case '9':
2820 case '-':
2821 case '#': /* For symbol identification (used in
2822 live ranges). */
2823 continue;
2824
2825 case ':':
2826 /* It is a C++ nested symbol. We don't need to record it
2827 (I don't think); if we try to look up foo::bar::baz,
2828 then symbols for the symtab containing foo should get
2829 read in, I think. */
2830 /* Someone says sun cc puts out symbols like
2831 /foo/baz/maclib::/usr/local/bin/maclib,
2832 which would get here with a symbol type of ':'. */
2833 continue;
2834
2835 default:
2836 /* Unexpected symbol descriptor. The second and
2837 subsequent stabs of a continued stab can show up
2838 here. The question is whether they ever can mimic
2839 a normal stab--it would be nice if not, since we
2840 certainly don't want to spend the time searching to
2841 the end of every string looking for a
2842 backslash. */
2843
2844 complaint (_("unknown symbol descriptor `%c'"), p[1]);
2845
2846 /* Ignore it; perhaps it is an extension that we don't
2847 know about. */
2848 continue;
2849 }
2850 }
2851 }
2852 }
2853
2854 if (pst)
2855 {
2856 xcoff_end_psymtab (objfile, pst, psymtab_include_list, includes_used,
2857 ssymnum, dependency_list,
2858 dependencies_used, textlow_not_set);
2859 }
2860
2861 /* Record the toc offset value of this symbol table into objfile
2862 structure. If no XMC_TC0 is found, toc_offset should be zero.
2863 Another place to obtain this information would be file auxiliary
2864 header. */
2865
2866 XCOFF_DATA (objfile)->toc_offset = toc_offset;
2867 }
2868
2869 /* Return the toc offset value for a given objfile. */
2870
2871 CORE_ADDR
2872 xcoff_get_toc_offset (struct objfile *objfile)
2873 {
2874 if (objfile)
2875 return XCOFF_DATA (objfile)->toc_offset;
2876 return 0;
2877 }
2878
2879 /* Scan and build partial symbols for a symbol file.
2880 We have been initialized by a call to dbx_symfile_init, which
2881 put all the relevant info into a "struct dbx_symfile_info",
2882 hung off the objfile structure.
2883
2884 SECTION_OFFSETS contains offsets relative to which the symbols in the
2885 various sections are (depending where the sections were actually
2886 loaded). */
2887
2888 static void
2889 xcoff_initial_scan (struct objfile *objfile, symfile_add_flags symfile_flags)
2890 {
2891 bfd *abfd;
2892 int val;
2893 int num_symbols; /* # of symbols */
2894 file_ptr symtab_offset; /* symbol table and */
2895 file_ptr stringtab_offset; /* string table file offsets */
2896 struct xcoff_symfile_info *info;
2897 const char *name;
2898 unsigned int size;
2899
2900 info = XCOFF_DATA (objfile);
2901 symfile_bfd = abfd = objfile->obfd;
2902 name = objfile_name (objfile);
2903
2904 num_symbols = bfd_get_symcount (abfd); /* # of symbols */
2905 symtab_offset = obj_sym_filepos (abfd); /* symbol table file offset */
2906 stringtab_offset = symtab_offset +
2907 num_symbols * coff_data (abfd)->local_symesz;
2908
2909 info->min_lineno_offset = 0;
2910 info->max_lineno_offset = 0;
2911 bfd_map_over_sections (abfd, find_linenos, info);
2912
2913 if (num_symbols > 0)
2914 {
2915 /* Read the string table. */
2916 init_stringtab (abfd, stringtab_offset, objfile);
2917
2918 /* Read the .debug section, if present and if we're not ignoring
2919 it. */
2920 if (!(objfile->flags & OBJF_READNEVER))
2921 {
2922 struct bfd_section *secp;
2923 bfd_size_type length;
2924 bfd_byte *debugsec = NULL;
2925
2926 secp = bfd_get_section_by_name (abfd, ".debug");
2927 if (secp)
2928 {
2929 length = bfd_section_size (secp);
2930 if (length)
2931 {
2932 debugsec
2933 = (bfd_byte *) obstack_alloc (&objfile->objfile_obstack,
2934 length);
2935
2936 if (!bfd_get_full_section_contents (abfd, secp, &debugsec))
2937 {
2938 error (_("Error reading .debug section of `%s': %s"),
2939 name, bfd_errmsg (bfd_get_error ()));
2940 }
2941 }
2942 }
2943 info->debugsec = (char *) debugsec;
2944 }
2945 }
2946
2947 /* Read the symbols. We keep them in core because we will want to
2948 access them randomly in read_symbol*. */
2949 val = bfd_seek (abfd, symtab_offset, SEEK_SET);
2950 if (val < 0)
2951 error (_("Error reading symbols from %s: %s"),
2952 name, bfd_errmsg (bfd_get_error ()));
2953 size = coff_data (abfd)->local_symesz * num_symbols;
2954 info->symtbl = (char *) obstack_alloc (&objfile->objfile_obstack, size);
2955 info->symtbl_num_syms = num_symbols;
2956
2957 val = bfd_bread (info->symtbl, size, abfd);
2958 if (val != size)
2959 perror_with_name (_("reading symbol table"));
2960
2961 /* I'm not sure how how good num_symbols is; the rule of thumb in
2962 init_psymbol_list was developed for a.out. On the one hand,
2963 num_symbols includes auxents. On the other hand, it doesn't
2964 include N_SLINE. */
2965 init_psymbol_list (objfile, num_symbols);
2966
2967 scoped_free_pendings free_pending;
2968 minimal_symbol_reader reader (objfile);
2969
2970 /* Now that the symbol table data of the executable file are all in core,
2971 process them and define symbols accordingly. */
2972
2973 scan_xcoff_symtab (reader, objfile);
2974
2975 /* Install any minimal symbols that have been collected as the current
2976 minimal symbols for this objfile. */
2977
2978 reader.install ();
2979
2980 /* DWARF2 sections. */
2981
2982 if (dwarf2_has_info (objfile, &dwarf2_xcoff_names))
2983 dwarf2_build_psymtabs (objfile);
2984
2985 dwarf2_build_frame_info (objfile);
2986 }
2987 \f
2988 static void
2989 xcoff_symfile_offsets (struct objfile *objfile,
2990 const section_addr_info &addrs)
2991 {
2992 const char *first_section_name;
2993
2994 default_symfile_offsets (objfile, addrs);
2995
2996 /* Oneof the weird side-effects of default_symfile_offsets is that
2997 it sometimes sets some section indices to zero for sections that,
2998 in fact do not exist. See the body of default_symfile_offsets
2999 for more info on when that happens. Undo that, as this then allows
3000 us to test whether the associated section exists or not, and then
3001 access it quickly (without searching it again). */
3002
3003 if (objfile->section_offsets.empty ())
3004 return; /* Is that even possible? Better safe than sorry. */
3005
3006 first_section_name = bfd_section_name (objfile->sections[0].the_bfd_section);
3007
3008 if (objfile->sect_index_text == 0
3009 && strcmp (first_section_name, ".text") != 0)
3010 objfile->sect_index_text = -1;
3011
3012 if (objfile->sect_index_data == 0
3013 && strcmp (first_section_name, ".data") != 0)
3014 objfile->sect_index_data = -1;
3015
3016 if (objfile->sect_index_bss == 0
3017 && strcmp (first_section_name, ".bss") != 0)
3018 objfile->sect_index_bss = -1;
3019
3020 if (objfile->sect_index_rodata == 0
3021 && strcmp (first_section_name, ".rodata") != 0)
3022 objfile->sect_index_rodata = -1;
3023 }
3024
3025 /* Register our ability to parse symbols for xcoff BFD files. */
3026
3027 static const struct sym_fns xcoff_sym_fns =
3028 {
3029
3030 /* It is possible that coff and xcoff should be merged as
3031 they do have fundamental similarities (for example, the extra storage
3032 classes used for stabs could presumably be recognized in any COFF file).
3033 However, in addition to obvious things like all the csect hair, there are
3034 some subtler differences between xcoffread.c and coffread.c, notably
3035 the fact that coffread.c has no need to read in all the symbols, but
3036 xcoffread.c reads all the symbols and does in fact randomly access them
3037 (in C_BSTAT and line number processing). */
3038
3039 xcoff_new_init, /* init anything gbl to entire symtab */
3040 xcoff_symfile_init, /* read initial info, setup for sym_read() */
3041 xcoff_initial_scan, /* read a symbol file into symtab */
3042 NULL, /* sym_read_psymbols */
3043 xcoff_symfile_finish, /* finished with file, cleanup */
3044 xcoff_symfile_offsets, /* xlate offsets ext->int form */
3045 default_symfile_segments, /* Get segment information from a file. */
3046 aix_process_linenos,
3047 default_symfile_relocate, /* Relocate a debug section. */
3048 NULL, /* sym_probe_fns */
3049 &psym_functions
3050 };
3051
3052 /* Same as xcoff_get_n_import_files, but for core files. */
3053
3054 static int
3055 xcoff_get_core_n_import_files (bfd *abfd)
3056 {
3057 asection *sect = bfd_get_section_by_name (abfd, ".ldinfo");
3058 gdb_byte buf[4];
3059 file_ptr offset = 0;
3060 int n_entries = 0;
3061
3062 if (sect == NULL)
3063 return -1; /* Not a core file. */
3064
3065 for (offset = 0; offset < bfd_section_size (sect);)
3066 {
3067 int next;
3068
3069 n_entries++;
3070
3071 if (!bfd_get_section_contents (abfd, sect, buf, offset, 4))
3072 return -1;
3073 next = bfd_get_32 (abfd, buf);
3074 if (next == 0)
3075 break; /* This is the last entry. */
3076 offset += next;
3077 }
3078
3079 /* Return the number of entries, excluding the first one, which is
3080 the path to the executable that produced this core file. */
3081 return n_entries - 1;
3082 }
3083
3084 /* Return the number of import files (shared libraries) that the given
3085 BFD depends on. Return -1 if this number could not be computed. */
3086
3087 int
3088 xcoff_get_n_import_files (bfd *abfd)
3089 {
3090 asection *sect = bfd_get_section_by_name (abfd, ".loader");
3091 gdb_byte buf[4];
3092 int l_nimpid;
3093
3094 /* If the ".loader" section does not exist, the objfile is probably
3095 not an executable. Might be a core file... */
3096 if (sect == NULL)
3097 return xcoff_get_core_n_import_files (abfd);
3098
3099 /* The number of entries in the Import Files Table is stored in
3100 field l_nimpid. This field is always at offset 16, and is
3101 always 4 bytes long. Read those 4 bytes. */
3102
3103 if (!bfd_get_section_contents (abfd, sect, buf, 16, 4))
3104 return -1;
3105 l_nimpid = bfd_get_32 (abfd, buf);
3106
3107 /* By convention, the first entry is the default LIBPATH value
3108 to be used by the system loader, so it does not count towards
3109 the number of import files. */
3110 return l_nimpid - 1;
3111 }
3112
3113 void _initialize_xcoffread ();
3114 void
3115 _initialize_xcoffread ()
3116 {
3117 add_symtab_fns (bfd_target_xcoff_flavour, &xcoff_sym_fns);
3118 }
This page took 0.0942 seconds and 4 git commands to generate.