Consolidate partial symtab dependency reading
[deliverable/binutils-gdb.git] / gdb / xcoffread.c
CommitLineData
c906108c 1/* Read AIX xcoff symbol tables and convert to internal format, for GDB.
b811d2c2 2 Copyright (C) 1986-2020 Free Software Foundation, Inc.
c906108c
SS
3 Derived from coffread.c, dbxread.c, and a lot of hacking.
4 Contributed by IBM Corporation.
5
c5aa993b 6 This file is part of GDB.
c906108c 7
c5aa993b
JM
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
a9762ec7 10 the Free Software Foundation; either version 3 of the License, or
c5aa993b 11 (at your option) any later version.
c906108c 12
c5aa993b
JM
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.
c906108c 17
c5aa993b 18 You should have received a copy of the GNU General Public License
a9762ec7 19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c
SS
20
21#include "defs.h"
22#include "bfd.h"
23
24#include <sys/types.h>
25#include <fcntl.h>
26#include <ctype.h>
c0ccb908 27#ifdef HAVE_SYS_FILE_H
c906108c
SS
28#include <sys/file.h>
29#endif
53ce3c39 30#include <sys/stat.h>
39ef2f62 31#include <algorithm>
c906108c
SS
32
33#include "coff/internal.h"
34#include "libcoff.h" /* FIXME, internal data from BFD */
11ed25ac
KB
35#include "coff/xcoff.h"
36#include "libxcoff.h"
c906108c 37#include "coff/rs6000.h"
63807e1d 38#include "xcoffread.h"
c906108c
SS
39
40#include "symtab.h"
41#include "gdbtypes.h"
9ab9195f 42/* FIXME: ezannoni/2004-02-13 Verify if the include below is really needed. */
c906108c
SS
43#include "symfile.h"
44#include "objfiles.h"
0baae8db 45#include "buildsym-legacy.h"
c906108c
SS
46#include "stabsread.h"
47#include "expression.h"
c906108c 48#include "complaints.h"
ccefe4c4 49#include "psympriv.h"
c906108c
SS
50
51#include "gdb-stabs.h"
52
53/* For interface with stabsread.c. */
54#include "aout/stab_gnu.h"
55
c906108c
SS
56\f
57/* We put a pointer to this structure in the read_symtab_private field
58 of the psymtab. */
59
c5aa993b
JM
60struct symloc
61 {
c906108c 62
c5aa993b 63 /* First symbol number for this file. */
c906108c 64
c5aa993b 65 int first_symnum;
c906108c 66
c5aa993b
JM
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. */
c906108c 72
c5aa993b 73 int numsyms;
c906108c 74
3e43a32a
MS
75 /* Position of the start of the line number information for this
76 psymtab. */
c5aa993b
JM
77 unsigned int lineno_off;
78 };
c906108c 79
581e13c1 80/* Remember what we deduced to be the source language of this psymtab. */
c906108c
SS
81
82static enum language psymtab_language = language_unknown;
c906108c 83\f
c5aa993b 84
581e13c1 85/* Simplified internal version of coff symbol table information. */
c906108c 86
c5aa993b
JM
87struct coff_symbol
88 {
89 char *c_name;
581e13c1
MS
90 int c_symnum; /* Symbol number of this entry. */
91 int c_naux; /* 0 if syment only, 1 if syment + auxent. */
086850b2 92 CORE_ADDR c_value;
c5aa993b
JM
93 unsigned char c_sclass;
94 int c_secnum;
95 unsigned int c_type;
96 };
c906108c 97
581e13c1 98/* Last function's saved coff symbol `cs'. */
c906108c
SS
99
100static struct coff_symbol fcn_cs_saved;
101
102static 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
581e13c1 106 symbol. */
c906108c
SS
107
108
109static CORE_ADDR cur_src_end_addr;
110
111/* Core address of the end of the first object file. */
112
113static CORE_ADDR first_object_file_end;
114
581e13c1 115/* Initial symbol-table-debug-string vector length. */
c906108c
SS
116
117#define INITIAL_STABVECTOR_LENGTH 40
118
c906108c
SS
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
c5aa993b 123static unsigned local_symesz;
c906108c 124
02dc647e 125struct xcoff_symfile_info
c5aa993b 126 {
02dc647e
TT
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. */
c906108c 129
c5aa993b 130 /* Pointer to the string table. */
02dc647e 131 char *strtbl = nullptr;
c906108c 132
c5aa993b 133 /* Pointer to debug section. */
02dc647e 134 char *debugsec = nullptr;
c906108c 135
c5aa993b 136 /* Pointer to the a.out symbol table. */
02dc647e 137 char *symtbl = nullptr;
c906108c 138
c5aa993b 139 /* Number of symbols in symtbl. */
02dc647e 140 int symtbl_num_syms = 0;
c906108c 141
c5aa993b 142 /* Offset in data section to TOC anchor. */
02dc647e 143 CORE_ADDR toc_offset = 0;
c5aa993b 144 };
c906108c 145
02dc647e
TT
146/* Key for XCOFF-associated data. */
147
148static const struct objfile_key<xcoff_symfile_info> xcoff_objfile_data_key;
149
b8b98ad1
TT
150/* Convenience macro to access the per-objfile XCOFF data. */
151
152#define XCOFF_DATA(objfile) \
02dc647e 153 xcoff_objfile_data_key.get (objfile)
b8b98ad1 154
316a8b21
TG
155/* XCOFF names for dwarf sections. There is no compressed sections. */
156
157static const struct dwarf2_debug_sections dwarf2_xcoff_names = {
158 { ".dwinfo", NULL },
159 { ".dwabrev", NULL },
160 { ".dwline", NULL },
161 { ".dwloc", NULL },
43988095 162 { NULL, NULL }, /* debug_loclists */
33f914a1
DE
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 },
316a8b21 168 { ".dwstr", NULL },
18a8505e 169 { NULL, NULL }, /* debug_str_offsets */
43988095 170 { NULL, NULL }, /* debug_line_str */
316a8b21 171 { ".dwrnges", NULL },
43988095 172 { NULL, NULL }, /* debug_rnglists */
33f914a1 173 { ".dwpbtyp", NULL },
3019eac3 174 { NULL, NULL }, /* debug_addr */
316a8b21
TG
175 { ".dwframe", NULL },
176 { NULL, NULL }, /* eh_frame */
24d3216f 177 { NULL, NULL }, /* gdb_index */
927aa2e7
JK
178 { NULL, NULL }, /* debug_names */
179 { NULL, NULL }, /* debug_aranges */
24d3216f 180 23
316a8b21
TG
181};
182
23136709
KB
183static void
184bf_notfound_complaint (void)
185{
b98664d3 186 complaint (_("line numbers off, `.bf' symbol not found"));
23136709 187}
c906108c 188
23136709
KB
189static void
190ef_complaint (int arg1)
191{
b98664d3 192 complaint (_("Mismatched .ef symbol ignored starting at symnum %d"), arg1);
23136709 193}
c906108c 194
23136709
KB
195static void
196eb_complaint (int arg1)
197{
b98664d3 198 complaint (_("Mismatched .eb symbol ignored starting at symnum %d"), arg1);
23136709 199}
c906108c 200
b15cc25c 201static void xcoff_initial_scan (struct objfile *, symfile_add_flags);
c906108c 202
8dddcb8f
TT
203static void scan_xcoff_symtab (minimal_symbol_reader &,
204 struct objfile *);
c906108c 205
a121b7c1 206static const char *xcoff_next_symbol_text (struct objfile *);
c906108c 207
a14ed312 208static void record_include_begin (struct coff_symbol *);
c906108c
SS
209
210static void
a14ed312
KB
211enter_line_range (struct subfile *, unsigned, unsigned,
212 CORE_ADDR, CORE_ADDR, unsigned *);
c906108c 213
a14ed312 214static void init_stringtab (bfd *, file_ptr, struct objfile *);
c906108c 215
a14ed312 216static void xcoff_symfile_init (struct objfile *);
c906108c 217
a14ed312 218static void xcoff_new_init (struct objfile *);
c906108c 219
a14ed312 220static void xcoff_symfile_finish (struct objfile *);
c906108c 221
a14ed312 222static char *coff_getfilename (union internal_auxent *, struct objfile *);
c906108c 223
a14ed312 224static void read_symbol (struct internal_syment *, int);
c906108c 225
a14ed312 226static int read_symbol_lineno (int);
c906108c 227
470d5666 228static CORE_ADDR read_symbol_nvalue (int);
c906108c 229
a14ed312
KB
230static struct symbol *process_xcoff_symbol (struct coff_symbol *,
231 struct objfile *);
c906108c 232
891813be 233static void read_xcoff_symtab (struct objfile *, legacy_psymtab *);
c906108c
SS
234
235#if 0
a14ed312 236static void add_stab_to_list (char *, struct pending_stabs **);
c906108c
SS
237#endif
238
a14ed312 239static struct linetable *arrange_linetable (struct linetable *);
c906108c 240
a14ed312 241static void record_include_end (struct coff_symbol *);
c906108c 242
a14ed312 243static void process_linenos (CORE_ADDR, CORE_ADDR);
c906108c 244\f
c5aa993b 245
c906108c
SS
246/* Translate from a COFF section number (target_index) to a SECT_OFF_*
247 code. */
a14ed312
KB
248static int secnum_to_section (int, struct objfile *);
249static asection *secnum_to_bfd_section (int, struct objfile *);
c906108c 250
c5aa993b
JM
251struct find_targ_sec_arg
252 {
253 int targ_index;
254 int *resultp;
255 asection **bfd_sect;
b8fbeb18 256 struct objfile *objfile;
c5aa993b 257 };
c906108c 258
a14ed312 259static void find_targ_sec (bfd *, asection *, void *);
c906108c 260
c5aa993b 261static void
4efb68b1 262find_targ_sec (bfd *abfd, asection *sect, void *obj)
c906108c 263{
c5aa993b 264 struct find_targ_sec_arg *args = (struct find_targ_sec_arg *) obj;
b8fbeb18 265 struct objfile *objfile = args->objfile;
a109c7c1 266
c906108c
SS
267 if (sect->target_index == args->targ_index)
268 {
269 /* This is the section. Figure out what SECT_OFF_* code it is. */
fd361982 270 if (bfd_section_flags (sect) & SEC_CODE)
b8fbeb18 271 *args->resultp = SECT_OFF_TEXT (objfile);
fd361982 272 else if (bfd_section_flags (sect) & SEC_LOAD)
b8fbeb18 273 *args->resultp = SECT_OFF_DATA (objfile);
c906108c 274 else
65cf3563 275 *args->resultp = gdb_bfd_section_index (abfd, sect);
c906108c
SS
276 *args->bfd_sect = sect;
277 }
278}
279
ec92004f
JB
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. */
a109c7c1 287
ec92004f
JB
288static void
289xcoff_secnum_to_sections (int n_scnum, struct objfile *objfile,
290 asection **bfd_sect, int *secnum)
291{
c906108c 292 struct find_targ_sec_arg args;
ec92004f
JB
293
294 args.targ_index = n_scnum;
295 args.resultp = secnum;
296 args.bfd_sect = bfd_sect;
b8fbeb18 297 args.objfile = objfile;
ec92004f
JB
298
299 *bfd_sect = NULL;
300 *secnum = SECT_OFF_TEXT (objfile);
301
c906108c 302 bfd_map_over_sections (objfile->obfd, find_targ_sec, &args);
c906108c
SS
303}
304
ec92004f
JB
305/* Return the section number (SECT_OFF_*) that N_SCNUM points to. */
306
307static int
308secnum_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
c906108c 319static asection *
ec92004f 320secnum_to_bfd_section (int n_scnum, struct objfile *objfile)
c906108c 321{
ec92004f
JB
322 int ignored;
323 asection *bfd_sect;
a109c7c1 324
ec92004f
JB
325 xcoff_secnum_to_sections (n_scnum, objfile, &bfd_sect, &ignored);
326 return bfd_sect;
c906108c
SS
327}
328\f
581e13c1 329/* add a given stab string into given stab vector. */
c906108c
SS
330
331#if 0
332
333static void
fba45db2 334add_stab_to_list (char *stabname, struct pending_stabs **stabvector)
c906108c 335{
c5aa993b
JM
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) +
3e43a32a 349 (*stabvector)->length * sizeof (char *));
c5aa993b
JM
350 }
351 (*stabvector)->stab[(*stabvector)->count++] = stabname;
c906108c
SS
352}
353
354#endif
c5aa993b 355\f/* *INDENT-OFF* */
c906108c
SS
356/* Linenos are processed on a file-by-file basis.
357
358 Two reasons:
359
c5aa993b 360 1) xlc (IBM's native c compiler) postpones static function code
581e13c1 361 emission to the end of a compilation unit. This way it can
c5aa993b 362 determine if those functions (statics) are needed or not, and
581e13c1 363 can do some garbage collection (I think). This makes line
c5aa993b
JM
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
581e13c1 383 above table is not sorted on line numbers. And that sort
c5aa993b
JM
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
581e13c1 392 arrange_linetable() will do this sorting.
c5aa993b
JM
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
581e13c1 403 their scope. They need to be recorded, and processed later
c5aa993b
JM
404 on when we come the end of the compilation unit.
405 Include table (inclTable) and process_linenos() handle
406 that. */
9846de1b 407/* *INDENT-ON* */
c906108c 408
c5aa993b 409
581e13c1
MS
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. */
c906108c
SS
414/* FIXME: I think all this stuff can be replaced by just passing
415 sort_linevec = 1 to end_symtab. */
416
417static struct linetable *
b095261a 418arrange_linetable (struct linetable *oldLineTb)
c906108c 419{
c5aa993b
JM
420 int ii, jj, newline, /* new line count */
421 function_count; /* # of functions */
c906108c 422
c5aa993b
JM
423 struct linetable_entry *fentry; /* function entry vector */
424 int fentry_size; /* # of function entries */
425 struct linetable *newLineTb; /* new line table */
a85c52f2 426 int extra_lines = 0;
c906108c
SS
427
428#define NUM_OF_FUNCTIONS 20
429
430 fentry_size = NUM_OF_FUNCTIONS;
8d749320 431 fentry = XNEWVEC (struct linetable_entry, fentry_size);
c906108c 432
c5aa993b
JM
433 for (function_count = 0, ii = 0; ii < oldLineTb->nitems; ++ii)
434 {
c5aa993b 435 if (oldLineTb->item[ii].line == 0)
581e13c1 436 { /* Function entry found. */
c5aa993b 437 if (function_count >= fentry_size)
581e13c1 438 { /* Make sure you have room. */
c5aa993b
JM
439 fentry_size *= 2;
440 fentry = (struct linetable_entry *)
3e43a32a
MS
441 xrealloc (fentry,
442 fentry_size * sizeof (struct linetable_entry));
c5aa993b
JM
443 }
444 fentry[function_count].line = ii;
445 fentry[function_count].pc = oldLineTb->item[ii].pc;
446 ++function_count;
a85c52f2
UW
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++;
c5aa993b 453 }
c906108c 454 }
c906108c 455
c5aa993b
JM
456 if (function_count == 0)
457 {
b8c9b27d 458 xfree (fentry);
c5aa993b
JM
459 return oldLineTb;
460 }
c906108c 461 else if (function_count > 1)
39ef2f62
CB
462 std::sort (fentry, fentry + function_count,
463 [] (const linetable_entry &lte1, const linetable_entry& lte2)
464 { return lte1.pc < lte2.pc; });
c906108c 465
581e13c1 466 /* Allocate a new line table. */
c906108c
SS
467 newLineTb = (struct linetable *)
468 xmalloc
c5aa993b 469 (sizeof (struct linetable) +
a85c52f2 470 (oldLineTb->nitems - function_count + extra_lines) * sizeof (struct linetable_entry));
c906108c 471
581e13c1
MS
472 /* If line table does not start with a function beginning, copy up until
473 a function begin. */
c906108c
SS
474
475 newline = 0;
476 if (oldLineTb->item[0].line != 0)
c5aa993b
JM
477 for (newline = 0;
478 newline < oldLineTb->nitems && oldLineTb->item[newline].line; ++newline)
c906108c
SS
479 newLineTb->item[newline] = oldLineTb->item[newline];
480
581e13c1 481 /* Now copy function lines one by one. */
c906108c 482
c5aa993b
JM
483 for (ii = 0; ii < function_count; ++ii)
484 {
a85c52f2
UW
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
c5aa993b
JM
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 }
b8c9b27d 501 xfree (fentry);
a85c52f2
UW
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;
c5aa993b
JM
505 return newLineTb;
506}
c906108c
SS
507
508/* include file support: C_BINCL/C_EINCL pairs will be kept in the
581e13c1 509 following `IncludeChain'. At the end of each symtab (end_symtab),
c906108c 510 we will determine if we should create additional symtab's to
581e13c1 511 represent if (the include files. */
c906108c
SS
512
513
c5aa993b
JM
514typedef struct _inclTable
515{
516 char *name; /* include filename */
c906108c
SS
517
518 /* Offsets to the line table. end points to the last entry which is
519 part of this include file. */
c5aa993b
JM
520 int begin, end;
521
c906108c 522 struct subfile *subfile;
581e13c1 523 unsigned funStartLine; /* Start line # of its function. */
c5aa993b
JM
524}
525InclTable;
c906108c
SS
526
527#define INITIAL_INCLUDE_TABLE_LENGTH 20
c5aa993b
JM
528static InclTable *inclTable; /* global include table */
529static int inclIndx; /* last entry to table */
530static int inclLength; /* table length */
531static int inclDepth; /* nested include depth */
c906108c 532
a14ed312 533static void allocate_include_entry (void);
c906108c
SS
534
535static void
fba45db2 536record_include_begin (struct coff_symbol *cs)
c906108c
SS
537{
538 if (inclDepth)
539 {
540 /* In xcoff, we assume include files cannot be nested (not in .c files
c5aa993b 541 of course, but in corresponding .s files.). */
c906108c
SS
542
543 /* This can happen with old versions of GCC.
c5aa993b
JM
544 GCC 2.3.3-930426 does not exhibit this on a test case which
545 a user said produced the message for him. */
b98664d3 546 complaint (_("Nested C_BINCL symbols"));
c906108c
SS
547 }
548 ++inclDepth;
549
550 allocate_include_entry ();
551
c5aa993b
JM
552 inclTable[inclIndx].name = cs->c_name;
553 inclTable[inclIndx].begin = cs->c_value;
c906108c
SS
554}
555
556static void
fba45db2 557record_include_end (struct coff_symbol *cs)
c906108c 558{
c5aa993b 559 InclTable *pTbl;
c906108c
SS
560
561 if (inclDepth == 0)
562 {
b98664d3 563 complaint (_("Mismatched C_BINCL/C_EINCL pair"));
c906108c
SS
564 }
565
566 allocate_include_entry ();
567
c5aa993b 568 pTbl = &inclTable[inclIndx];
c906108c
SS
569 pTbl->end = cs->c_value;
570
571 --inclDepth;
572 ++inclIndx;
573}
574
575static void
fba45db2 576allocate_include_entry (void)
c906108c
SS
577{
578 if (inclTable == NULL)
579 {
8d749320 580 inclTable = XCNEWVEC (InclTable, INITIAL_INCLUDE_TABLE_LENGTH);
c906108c
SS
581 inclLength = INITIAL_INCLUDE_TABLE_LENGTH;
582 inclIndx = 0;
583 }
584 else if (inclIndx >= inclLength)
585 {
586 inclLength += INITIAL_INCLUDE_TABLE_LENGTH;
8d749320 587 inclTable = XRESIZEVEC (InclTable, inclTable, inclLength);
c5aa993b
JM
588 memset (inclTable + inclLength - INITIAL_INCLUDE_TABLE_LENGTH,
589 '\0', sizeof (InclTable) * INITIAL_INCLUDE_TABLE_LENGTH);
c906108c
SS
590 }
591}
592
593/* Global variable to pass the psymtab down to all the routines involved
594 in psymtab to symtab processing. */
891813be 595static legacy_psymtab *this_symtab_psymtab;
c906108c 596
5c80ed9d
TT
597/* Objfile related to this_symtab_psymtab; set at the same time. */
598static struct objfile *this_symtab_objfile;
599
c906108c 600/* given the start and end addresses of a compilation unit (or a csect,
581e13c1 601 at times) process its lines and create appropriate line vectors. */
c906108c
SS
602
603static void
fba45db2 604process_linenos (CORE_ADDR start, CORE_ADDR end)
c906108c
SS
605{
606 int offset, ii;
b8b98ad1 607 file_ptr max_offset
5c80ed9d 608 = XCOFF_DATA (this_symtab_objfile)->max_lineno_offset;
c906108c
SS
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 =
c5aa993b 623 ((struct symloc *) this_symtab_psymtab->read_symtab_private)->lineno_off;
c906108c
SS
624 if (offset == 0)
625 goto return_after_cleanup;
626
627 memset (&main_subfile, '\0', sizeof (main_subfile));
628
629 if (inclIndx == 0)
581e13c1
MS
630 /* All source lines were in the main source file. None in include
631 files. */
c906108c 632
c5aa993b
JM
633 enter_line_range (&main_subfile, offset, 0, start, end,
634 &main_source_baseline);
c906108c
SS
635
636 else
637 {
638 /* There was source with line numbers in include files. */
7a78ae4e
ND
639
640 int linesz =
5c80ed9d 641 coff_data (this_symtab_objfile->obfd)->local_linesz;
c906108c 642 main_source_baseline = 0;
7a78ae4e 643
c5aa993b 644 for (ii = 0; ii < inclIndx; ++ii)
c906108c
SS
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
7a78ae4e 652 (&main_subfile, offset, inclTable[ii].begin - linesz,
c906108c
SS
653 start, 0, &main_source_baseline);
654 }
655
46212e0b 656 if (strcmp (inclTable[ii].name, get_last_source_file ()) == 0)
c5933f6d
JB
657 {
658 /* The entry in the include table refers to the main source
581e13c1 659 file. Add the lines to the main subfile. */
c5933f6d
JB
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 {
c5933f6d 669 /* Have a new subfile for the include file. */
c906108c 670
8d749320 671 tmpSubfile = inclTable[ii].subfile = XNEW (struct subfile);
c906108c 672
c5933f6d
JB
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 }
c906108c
SS
680
681 if (offset <= inclTable[ii].end)
7a78ae4e 682 offset = inclTable[ii].end + linesz;
c906108c
SS
683 }
684
685 /* All the include files' line have been processed at this point. Now,
c5aa993b 686 enter remaining lines of the main file, if any left. */
7a78ae4e 687 if (offset < max_offset + 1 - linesz)
c906108c 688 {
c5aa993b 689 enter_line_range (&main_subfile, offset, 0, start, end,
c906108c
SS
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
581e13c1
MS
701 /* Line numbers are not necessarily ordered. xlc compilation will
702 put static function to the end. */
c906108c 703
3c65e5b3 704 struct subfile *current_subfile = get_current_subfile ();
c906108c
SS
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 {
b8c9b27d 714 xfree (lv);
c906108c
SS
715 current_subfile->line_vector = lineTb;
716 }
717
c5aa993b 718 current_subfile->line_vector_length =
c906108c
SS
719 current_subfile->line_vector->nitems;
720 }
721
722 /* Now, process included files' line numbers. */
723
c5aa993b 724 for (ii = 0; ii < inclIndx; ++ii)
c906108c 725 {
c5933f6d 726 if (inclTable[ii].subfile != ((struct subfile *) &main_subfile)
3e43a32a
MS
727 && (inclTable[ii].subfile)->line_vector) /* Useless if!!!
728 FIXMEmgo */
c906108c
SS
729 {
730 struct linetable *lineTb, *lv;
731
732 lv = (inclTable[ii].subfile)->line_vector;
733
581e13c1
MS
734 /* Line numbers are not necessarily ordered. xlc compilation will
735 put static function to the end. */
c906108c
SS
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
c5aa993b
JM
744 ......
745 #include "foo.h"
746 ......
747 #include "foo.h"
748 ......
c906108c 749
581e13c1 750 while foo.h including code in it. (stupid but possible)
c906108c
SS
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
4d663531 756 start_subfile (inclTable[ii].name);
c906108c
SS
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. */
a121b7c1 762 const char *fakename = strrchr (inclTable[ii].name, '.');
a109c7c1 763
c906108c
SS
764 if (fakename == NULL)
765 fakename = " ?";
4d663531 766 start_subfile (fakename);
3c65e5b3 767 xfree (get_current_subfile ()->name);
c906108c 768 }
3c65e5b3 769 struct subfile *current_subfile = get_current_subfile ();
c2d11a7d 770 current_subfile->name = xstrdup (inclTable[ii].name);
c906108c
SS
771#endif
772
773 if (lv == lineTb)
774 {
775 current_subfile->line_vector =
776 (struct linetable *) xrealloc
c5aa993b
JM
777 (lv, (sizeof (struct linetable)
778 + lv->nitems * sizeof (struct linetable_entry)));
c906108c
SS
779
780 }
781 else
782 {
b8c9b27d 783 xfree (lv);
c906108c
SS
784 current_subfile->line_vector = lineTb;
785 }
786
c5aa993b 787 current_subfile->line_vector_length =
c906108c 788 current_subfile->line_vector->nitems;
4d663531 789 start_subfile (pop_subfile ());
c906108c
SS
790 }
791 }
792
c5aa993b 793return_after_cleanup:
c906108c
SS
794
795 /* We don't want to keep alloc/free'ing the global include file table. */
796 inclIndx = 0;
c906108c
SS
797}
798
c295b2e5 799static void
f56ce883 800aix_process_linenos (struct objfile *objfile)
c906108c 801{
316a8b21
TG
802 /* There is no linenos to read if there are only dwarf info. */
803 if (this_symtab_psymtab == NULL)
804 return;
805
581e13c1 806 /* Process line numbers and enter them into line vector. */
2c99ee5c 807 process_linenos (get_last_source_start_addr (), cur_src_end_addr);
c906108c
SS
808}
809
810
811/* Enter a given range of lines into the line vector.
812 can be called in the following two ways:
3e43a32a
MS
813 enter_line_range (subfile, beginoffset, endoffset,
814 startaddr, 0, firstLine) or
815 enter_line_range (subfile, beginoffset, 0,
816 startaddr, endaddr, firstLine)
c906108c
SS
817
818 endoffset points to the last line table entry that we should pay
819 attention to. */
820
821static void
3e43a32a
MS
822enter_line_range (struct subfile *subfile, unsigned beginoffset,
823 unsigned endoffset, /* offsets to line table */
fba45db2
KB
824 CORE_ADDR startaddr, /* offsets to line table */
825 CORE_ADDR endaddr, unsigned *firstLine)
c906108c 826{
5c80ed9d 827 struct objfile *objfile = this_symtab_objfile;
fbf65064 828 struct gdbarch *gdbarch = get_objfile_arch (objfile);
c906108c
SS
829 unsigned int curoffset;
830 CORE_ADDR addr;
7a78ae4e 831 void *ext_lnno;
c906108c
SS
832 struct internal_lineno int_lnno;
833 unsigned int limit_offset;
834 bfd *abfd;
7a78ae4e 835 int linesz;
c906108c
SS
836
837 if (endoffset == 0 && startaddr == 0 && endaddr == 0)
838 return;
839 curoffset = beginoffset;
b8b98ad1 840 limit_offset = XCOFF_DATA (objfile)->max_lineno_offset;
c906108c
SS
841
842 if (endoffset != 0)
843 {
844 if (endoffset >= limit_offset)
845 {
b98664d3 846 complaint (_("Bad line table offset in C_EINCL directive"));
c906108c
SS
847 return;
848 }
849 limit_offset = endoffset;
850 }
851 else
852 limit_offset -= 1;
7a78ae4e 853
fbf65064 854 abfd = objfile->obfd;
7a78ae4e
ND
855 linesz = coff_data (abfd)->local_linesz;
856 ext_lnno = alloca (linesz);
c906108c
SS
857
858 while (curoffset <= limit_offset)
859 {
860 bfd_seek (abfd, curoffset, SEEK_SET);
3a42e9d0 861 bfd_bread (ext_lnno, linesz, abfd);
7a78ae4e 862 bfd_coff_swap_lineno_in (abfd, ext_lnno, &int_lnno);
c906108c
SS
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));
b3b3bada 868 addr += objfile->text_section_offset ();
c906108c
SS
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);
fbf65064 876 record_line (subfile, 0, gdbarch_addr_bits_remove (gdbarch, addr));
c906108c
SS
877 --(*firstLine);
878 }
879 else
fbf65064
UW
880 record_line (subfile, *firstLine + int_lnno.l_lnno,
881 gdbarch_addr_bits_remove (gdbarch, addr));
7a78ae4e 882 curoffset += linesz;
c906108c
SS
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) { \
46212e0b 892 set_last_source_file (name); \
2c99ee5c 893 set_last_source_start_addr (start_addr); \
c906108c
SS
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
8dddcb8f 903/* Create a new minimal symbol (using record_with_info).
ec92004f 904
4d1eb6b4 905 Creation of all new minimal symbols should go through this function
8dddcb8f 906 rather than calling the various record functions in order
4d1eb6b4
JB
907 to make sure that all symbol addresses get properly relocated.
908
ec92004f
JB
909 Arguments are:
910
911 NAME - the symbol's name (but if NAME starts with a period, that
912 leading period is discarded).
4d1eb6b4
JB
913 ADDRESS - the symbol's address, prior to relocation. This function
914 relocates the address before recording the minimal symbol.
ec92004f
JB
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. */
c906108c 918
ec92004f 919static void
8dddcb8f
TT
920record_minimal_symbol (minimal_symbol_reader &reader,
921 const char *name, CORE_ADDR address,
ec92004f
JB
922 enum minimal_symbol_type ms_type,
923 int n_scnum,
924 struct objfile *objfile)
925{
ec92004f
JB
926 if (name[0] == '.')
927 ++name;
928
8dddcb8f
TT
929 reader.record_with_info (name, address, ms_type,
930 secnum_to_section (n_scnum, objfile));
ec92004f 931}
c906108c 932
581e13c1
MS
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. */
c5aa993b 936
c906108c
SS
937static int static_block_base = 0;
938
939/* Section number for the current static block. */
940
941static int static_block_section = -1;
942
581e13c1 943/* true if space for symbol name has been allocated. */
c906108c
SS
944
945static int symname_alloced = 0;
946
947/* Next symbol to read. Pointer into raw seething symbol table. */
948
949static char *raw_symbol;
950
951/* This is the function which stabsread.c calls to get symbol
952 continuations. */
953
a121b7c1 954static const char *
fba45db2 955xcoff_next_symbol_text (struct objfile *objfile)
c906108c
SS
956{
957 struct internal_syment symbol;
a121b7c1 958 const char *retval;
a109c7c1 959
581e13c1 960 /* FIXME: is this the same as the passed arg? */
5c80ed9d
TT
961 if (this_symtab_objfile)
962 objfile = this_symtab_objfile;
c906108c
SS
963
964 bfd_coff_swap_sym_in (objfile->obfd, raw_symbol, &symbol);
965 if (symbol.n_zeroes)
966 {
b98664d3 967 complaint (_("Unexpected symbol continuation"));
c906108c
SS
968
969 /* Return something which points to '\0' and hope the symbol reading
c5aa993b 970 code does something reasonable. */
c906108c
SS
971 retval = "";
972 }
973 else if (symbol.n_sclass & 0x80)
974 {
b8b98ad1 975 retval = XCOFF_DATA (objfile)->debugsec + symbol.n_offset;
3e43a32a 976 raw_symbol += coff_data (objfile->obfd)->local_symesz;
c906108c
SS
977 ++symnum;
978 }
979 else
980 {
b98664d3 981 complaint (_("Unexpected symbol continuation"));
c906108c
SS
982
983 /* Return something which points to '\0' and hope the symbol reading
c5aa993b 984 code does something reasonable. */
c906108c
SS
985 retval = "";
986 }
987 return retval;
988}
989
990/* Read symbols for a given partial symbol table. */
991
992static void
891813be 993read_xcoff_symtab (struct objfile *objfile, legacy_psymtab *pst)
c906108c 994{
c906108c 995 bfd *abfd = objfile->obfd;
581e13c1 996 char *raw_auxptr; /* Pointer to first raw aux entry for sym. */
02dc647e 997 struct xcoff_symfile_info *xcoff = XCOFF_DATA (objfile);
b8b98ad1
TT
998 char *strtbl = xcoff->strtbl;
999 char *debugsec = xcoff->debugsec;
554d387d 1000 const char *debugfmt = bfd_xcoff_is_xcoff64 (abfd) ? "XCOFF64" : "XCOFF";
c906108c
SS
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;
086850b2 1012 CORE_ADDR fcn_start_addr = 0;
b9718991 1013 enum language pst_symtab_language;
c906108c 1014
238ae9af 1015 struct coff_symbol fcn_stab_saved = { 0 };
c906108c 1016
581e13c1 1017 /* fcn_cs_saved is global because process_xcoff_symbol needs it. */
3672b1be 1018 union internal_auxent fcn_aux_saved = main_aux;
fe978cb0 1019 struct context_stack *newobj;
c906108c 1020
9a1e3f00 1021 const char *filestring = pst->filename; /* Name of the current file. */
c906108c 1022
40301fb7 1023 const char *last_csect_name; /* Last seen csect's name. */
c906108c
SS
1024
1025 this_symtab_psymtab = pst;
5c80ed9d 1026 this_symtab_objfile = objfile;
c906108c
SS
1027
1028 /* Get the appropriate COFF "constants" related to the file we're
581e13c1 1029 handling. */
c906108c
SS
1030 local_symesz = coff_data (abfd)->local_symesz;
1031
46212e0b 1032 set_last_source_file (NULL);
c906108c 1033 last_csect_name = 0;
b9718991 1034 pst_symtab_language = deduce_language_from_filename (filestring);
c906108c
SS
1035
1036 start_stabs ();
cafb3438 1037 start_symtab (objfile, filestring, NULL, file_start_addr,
b9718991 1038 pst_symtab_language);
7a78ae4e 1039 record_debugformat (debugfmt);
c5aa993b 1040 symnum = ((struct symloc *) pst->read_symtab_private)->first_symnum;
c906108c 1041 max_symnum =
c5aa993b 1042 symnum + ((struct symloc *) pst->read_symtab_private)->numsyms;
c906108c
SS
1043 first_object_file_end = 0;
1044
b8b98ad1 1045 raw_symbol = xcoff->symtbl + symnum * local_symesz;
c906108c
SS
1046
1047 while (symnum < max_symnum)
1048 {
c906108c
SS
1049 QUIT; /* make this command interruptable. */
1050
1051 /* READ_ONE_SYMBOL (symbol, cs, symname_alloced); */
581e13c1 1052 /* read one symbol into `cs' structure. After processing the
c5aa993b 1053 whole symbol table, only string table will be kept in memory,
581e13c1 1054 symbol table and debug section of xcoff will be freed. Thus
c5aa993b 1055 we can mark symbols with names in string table as
581e13c1 1056 `alloced'. */
c906108c
SS
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. */
c5aa993b 1071 cs->c_name = ((struct external_syment *) raw_symbol)->e.e_name;
c906108c
SS
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;
a109c7c1 1077
224c3ddb
SM
1078 p = (char *) obstack_alloc (&objfile->objfile_obstack,
1079 E_SYMNMLEN + 1);
c906108c
SS
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 */
c5aa993b 1094 cs->c_name = strtbl + (int) symbol->n_offset;
c906108c
SS
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;
c5aa993b 1100 cs->c_type = (unsigned) symbol->n_type;
c906108c 1101
7a78ae4e 1102 raw_symbol += local_symesz;
c906108c
SS
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
581e13c1 1116 /* if symbol name starts with ".$" or "$", ignore it. */
c906108c
SS
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 {
46212e0b 1123 if (get_last_source_file ())
c906108c 1124 {
43f3e411
DE
1125 pst->compunit_symtab = end_symtab (cur_src_end_addr,
1126 SECT_OFF_TEXT (objfile));
c906108c
SS
1127 end_stabs ();
1128 }
1129
1130 start_stabs ();
cafb3438
TT
1131 start_symtab (objfile, "_globals_", NULL,
1132 0, pst_symtab_language);
7a78ae4e 1133 record_debugformat (debugfmt);
c906108c 1134 cur_src_end_addr = first_object_file_end;
581e13c1 1135 /* Done with all files, everything from here on is globals. */
c906108c
SS
1136 }
1137
55bcecda
UW
1138 if (cs->c_sclass == C_EXT || cs->c_sclass == C_HIDEXT ||
1139 cs->c_sclass == C_WEAKEXT)
c906108c
SS
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
55bcecda
UW
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
85102364 1158 to 32(0x20). So we need to read the first function auxiliary entry
55bcecda
UW
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
85102364 1176 convention. */
55bcecda
UW
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);
c906108c
SS
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
c5aa993b
JM
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
581e13c1 1206 terms of the space they occupy in memory. Thus, one
c5aa993b
JM
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. */
c906108c
SS
1211
1212 if (last_csect_name)
1213 {
1214 complete_symtab (filestring, file_start_addr);
1215 cur_src_end_addr = file_end_addr;
43f3e411 1216 end_symtab (file_end_addr, SECT_OFF_TEXT (objfile));
c906108c
SS
1217 end_stabs ();
1218 start_stabs ();
1219 /* Give all csects for this source file the same
1220 name. */
4d663531 1221 start_symtab (objfile, filestring, NULL,
cafb3438 1222 0, pst_symtab_language);
7a78ae4e 1223 record_debugformat (debugfmt);
c906108c
SS
1224 }
1225
1226 /* If this is the very first csect seen,
581e13c1 1227 basically `__start'. */
c906108c
SS
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 =
b3b3bada 1236 cs->c_value + objfile->text_section_offset ();
c906108c
SS
1237 file_end_addr = file_start_addr + CSECT_LEN (&main_aux);
1238
40301fb7
JB
1239 if (cs->c_name && (cs->c_name[0] == '.' || cs->c_name[0] == '@'))
1240 last_csect_name = cs->c_name;
c906108c
SS
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 {
55bcecda
UW
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. */
c906108c 1271 case XMC_PR:
c906108c
SS
1272 continue;
1273
1274 case XMC_GL:
581e13c1 1275 /* shared library function trampoline code entry point. */
c906108c
SS
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
581e13c1 1287 an XTY_LD. This will typically be XMC_RW; I suspect
c906108c
SS
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 {
c906108c
SS
1306 case C_FILE:
1307
1308 /* c_value field contains symnum of next .file entry in table
581e13c1 1309 or symnum of first global after last .file. */
c906108c
SS
1310
1311 next_file_symnum = cs->c_value;
1312
1313 /* Complete symbol table for last object file containing
581e13c1 1314 debugging information. */
c906108c
SS
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;
4d663531 1322 end_symtab (file_end_addr, SECT_OFF_TEXT (objfile));
c906108c
SS
1323 end_stabs ();
1324
3e43a32a
MS
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. */
c906108c
SS
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 ();
cafb3438 1341 start_symtab (objfile, filestring, NULL, 0, pst_symtab_language);
7a78ae4e 1342 record_debugformat (debugfmt);
c906108c
SS
1343 last_csect_name = 0;
1344
581e13c1 1345 /* reset file start and end addresses. A compilation unit
3e43a32a 1346 with no text (only data) should have zero file
581e13c1 1347 boundaries. */
c906108c
SS
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:
7ecb6532 1356 if (strcmp (cs->c_name, ".bf") == 0)
c906108c 1357 {
b3b3bada 1358 CORE_ADDR off = objfile->text_section_offset ();
a109c7c1 1359
c906108c
SS
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
fe978cb0 1365 newobj = push_context (0, fcn_start_addr + off);
c906108c 1366
fe978cb0 1367 newobj->name = define_symbol
c906108c
SS
1368 (fcn_cs_saved.c_value + off,
1369 fcn_stab_saved.c_name, 0, 0, objfile);
fe978cb0
PA
1370 if (newobj->name != NULL)
1371 SYMBOL_SECTION (newobj->name) = SECT_OFF_TEXT (objfile);
c906108c 1372 }
7ecb6532 1373 else if (strcmp (cs->c_name, ".ef") == 0)
c906108c 1374 {
c906108c
SS
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;
c5aa993b 1379 not useful for gdb. */
c906108c 1380 /* { main_aux.x_sym.x_misc.x_lnsz.x_lnno
c5aa993b 1381 contains number of lines to '}' */
c906108c 1382
edb0470b 1383 if (outermost_context_p ())
581e13c1 1384 { /* We attempted to pop an empty context stack. */
23136709 1385 ef_complaint (cs->c_symnum);
c906108c
SS
1386 within_function = 0;
1387 break;
1388 }
a60f3166 1389 struct context_stack cstk = pop_context ();
c906108c 1390 /* Stack must be empty now. */
a60f3166 1391 if (!outermost_context_p ())
c906108c 1392 {
23136709 1393 ef_complaint (cs->c_symnum);
c906108c
SS
1394 within_function = 0;
1395 break;
1396 }
1397
c233e9c6 1398 finish_block (cstk.name, cstk.old_blocks,
a60f3166 1399 NULL, cstk.start_addr,
c906108c
SS
1400 (fcn_cs_saved.c_value
1401 + fcn_aux_saved.x_sym.x_misc.x_fsize
b3b3bada 1402 + objfile->text_section_offset ()));
c906108c
SS
1403 within_function = 0;
1404 }
1405 break;
1406
1407 case C_BSTAT:
1408 /* Begin static block. */
1409 {
b926417a 1410 struct internal_syment static_symbol;
c906108c 1411
b926417a
TT
1412 read_symbol (&static_symbol, cs->c_value);
1413 static_block_base = static_symbol.n_value;
c906108c 1414 static_block_section =
b926417a 1415 secnum_to_section (static_symbol.n_scnum, objfile);
c906108c
SS
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 {
b98664d3 1433 complaint (_("Unrecognized storage class %d."),
23136709 1434 cs->c_sclass);
c906108c
SS
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
581e13c1
MS
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. */
c906108c
SS
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:
7ecb6532 1464 if (strcmp (cs->c_name, ".bb") == 0)
c906108c
SS
1465 {
1466 depth++;
fe978cb0 1467 newobj = push_context (depth,
c906108c 1468 (cs->c_value
b3b3bada 1469 + objfile->text_section_offset ()));
c906108c 1470 }
7ecb6532 1471 else if (strcmp (cs->c_name, ".eb") == 0)
c906108c 1472 {
edb0470b 1473 if (outermost_context_p ())
581e13c1 1474 { /* We attempted to pop an empty context stack. */
23136709 1475 eb_complaint (cs->c_symnum);
c906108c
SS
1476 break;
1477 }
a60f3166
TT
1478 struct context_stack cstk = pop_context ();
1479 if (depth-- != cstk.depth)
c906108c 1480 {
23136709 1481 eb_complaint (cs->c_symnum);
c906108c
SS
1482 break;
1483 }
e148f09d 1484 if (*get_local_symbols () && !outermost_context_p ())
c906108c
SS
1485 {
1486 /* Make a block for the local symbols within. */
c233e9c6 1487 finish_block (cstk.name,
a60f3166
TT
1488 cstk.old_blocks, NULL,
1489 cstk.start_addr,
c906108c 1490 (cs->c_value
b3b3bada 1491 + objfile->text_section_offset ()));
c906108c 1492 }
e148f09d 1493 *get_local_symbols () = cstk.locals;
c906108c
SS
1494 }
1495 break;
1496
1497 default:
1498 process_xcoff_symbol (cs, objfile);
1499 break;
1500 }
1501 }
1502
46212e0b 1503 if (get_last_source_file ())
c906108c 1504 {
43f3e411 1505 struct compunit_symtab *cust;
c906108c
SS
1506
1507 complete_symtab (filestring, file_start_addr);
1508 cur_src_end_addr = file_end_addr;
43f3e411 1509 cust = end_symtab (file_end_addr, SECT_OFF_TEXT (objfile));
c906108c 1510 /* When reading symbols for the last C_FILE of the objfile, try
43f3e411 1511 to make sure that we set pst->compunit_symtab to the symtab for the
c906108c
SS
1512 file, not to the _globals_ symtab. I'm not sure whether this
1513 actually works right or when/if it comes up. */
43f3e411
DE
1514 if (pst->compunit_symtab == NULL)
1515 pst->compunit_symtab = cust;
c906108c
SS
1516 end_stabs ();
1517 }
1518}
1519
1520#define SYMBOL_DUP(SYMBOL1, SYMBOL2) \
468c0cbb 1521 (SYMBOL2) = new (&objfile->objfile_obstack) symbol (); \
c906108c 1522 *(SYMBOL2) = *(SYMBOL1);
c5aa993b
JM
1523
1524
c906108c 1525#define SYMNAME_ALLOC(NAME, ALLOCED) \
021887d8
TT
1526 ((ALLOCED) ? (NAME) : obstack_strdup (&objfile->objfile_obstack, \
1527 (NAME)))
c906108c
SS
1528
1529
581e13c1 1530/* process one xcoff symbol. */
c906108c
SS
1531
1532static struct symbol *
aa1ee363 1533process_xcoff_symbol (struct coff_symbol *cs, struct objfile *objfile)
c906108c
SS
1534{
1535 struct symbol onesymbol;
52f0bd74 1536 struct symbol *sym = &onesymbol;
c906108c
SS
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.,
c5aa993b 1546 and does not get relocated. */
c906108c
SS
1547 off = 0;
1548 sec = -1;
1549 }
1550 else
1551 {
1552 sec = secnum_to_section (cs->c_secnum, objfile);
6a053cb1 1553 off = objfile->section_offsets[sec];
c906108c
SS
1554 }
1555
1556 name = cs->c_name;
1557 if (name[0] == '.')
1558 ++name;
1559
38bf1463 1560 initialize_objfile_symbol (sym);
c906108c
SS
1561
1562 /* default assumptions */
38583298 1563 SET_SYMBOL_VALUE_ADDRESS (sym, cs->c_value + off);
176620f1 1564 SYMBOL_DOMAIN (sym) = VAR_DOMAIN;
c906108c
SS
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
c5aa993b
JM
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. */
c906108c 1572
43678b0a 1573 sym->set_linkage_name (SYMNAME_ALLOC (name, symname_alloced));
46bf5051 1574 SYMBOL_TYPE (sym) = objfile_type (objfile)->nodebug_text_symbol;
c906108c 1575
f1e6e072 1576 SYMBOL_ACLASS_INDEX (sym) = LOC_BLOCK;
c906108c
SS
1577 SYMBOL_DUP (sym, sym2);
1578
55bcecda 1579 if (cs->c_sclass == C_EXT || C_WEAKEXT)
e148f09d 1580 add_symbol_to_list (sym2, get_global_symbols ());
c906108c 1581 else if (cs->c_sclass == C_HIDEXT || cs->c_sclass == C_STAT)
e148f09d 1582 add_symbol_to_list (sym2, get_file_symbols ());
c906108c
SS
1583 }
1584 else
1585 {
581e13c1 1586 /* In case we can't figure out the type, provide default. */
46bf5051 1587 SYMBOL_TYPE (sym) = objfile_type (objfile)->nodebug_data_symbol;
c906108c
SS
1588
1589 switch (cs->c_sclass)
1590 {
1591#if 0
c5aa993b
JM
1592 /* The values of functions and global symbols are now resolved
1593 via the global_sym_chain in stabsread.c. */
c906108c
SS
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:
b98664d3 1615 complaint (_("Unexpected storage class: %d"),
23136709 1616 cs->c_sclass);
c906108c
SS
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
9b13a2db
PM
1645 if (*name == ':')
1646 return NULL;
1647
ed4b0e6a 1648 pp = strchr (name, ':');
9b13a2db 1649 if (pp == NULL)
c906108c
SS
1650 return NULL;
1651
1652 ++pp;
1653 if (*pp == 'V' && !within_function)
1654 *pp = 'S';
1655 sym = define_symbol ((cs->c_value
6a053cb1 1656 + objfile->section_offsets[static_block_section]),
c906108c
SS
1657 cs->c_name, 0, 0, objfile);
1658 if (sym != NULL)
1659 {
38583298
TT
1660 SET_SYMBOL_VALUE_ADDRESS (sym,
1661 SYMBOL_VALUE_ADDRESS (sym)
1662 + static_block_base);
c906108c
SS
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
1675static char *
fba45db2 1676coff_getfilename (union internal_auxent *aux_entry, struct objfile *objfile)
c906108c
SS
1677{
1678 static char buffer[BUFSIZ];
1679
1680 if (aux_entry->x_file.x_n.x_zeroes == 0)
b8b98ad1
TT
1681 strcpy (buffer, (XCOFF_DATA (objfile)->strtbl
1682 + aux_entry->x_file.x_n.x_offset));
c906108c
SS
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. */
1692static void
fba45db2 1693read_symbol (struct internal_syment *symbol, int symno)
c906108c 1694{
02dc647e 1695 struct xcoff_symfile_info *xcoff = XCOFF_DATA (this_symtab_objfile);
b8b98ad1
TT
1696 int nsyms = xcoff->symtbl_num_syms;
1697 char *stbl = xcoff->symtbl;
a109c7c1 1698
c906108c
SS
1699 if (symno < 0 || symno >= nsyms)
1700 {
b98664d3 1701 complaint (_("Invalid symbol offset"));
c906108c
SS
1702 symbol->n_value = 0;
1703 symbol->n_scnum = -1;
1704 return;
1705 }
5c80ed9d 1706 bfd_coff_swap_sym_in (this_symtab_objfile->obfd,
c5aa993b 1707 stbl + (symno * local_symesz),
c906108c
SS
1708 symbol);
1709}
c5aa993b 1710
c906108c
SS
1711/* Get value corresponding to symbol number symno in symtbl. */
1712
470d5666 1713static CORE_ADDR
fba45db2 1714read_symbol_nvalue (int symno)
c906108c
SS
1715{
1716 struct internal_syment symbol[1];
1717
1718 read_symbol (symbol, symno);
c5aa993b 1719 return symbol->n_value;
c906108c
SS
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
1726static int
fba45db2 1727read_symbol_lineno (int symno)
c906108c 1728{
5c80ed9d 1729 struct objfile *objfile = this_symtab_objfile;
7af35dad 1730 int xcoff64 = bfd_xcoff_is_xcoff64 (objfile->obfd);
7a78ae4e 1731
02dc647e 1732 struct xcoff_symfile_info *info = XCOFF_DATA (objfile);
7a78ae4e
ND
1733 int nsyms = info->symtbl_num_syms;
1734 char *stbl = info->symtbl;
1735 char *strtbl = info->strtbl;
1736
c906108c
SS
1737 struct internal_syment symbol[1];
1738 union internal_auxent main_aux[1];
1739
1740 if (symno < 0)
1741 {
23136709 1742 bf_notfound_complaint ();
c906108c
SS
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);
7a78ae4e
ND
1766 if (symbol->n_sclass == C_FCN)
1767 {
1768 char *name = xcoff64 ? strtbl + symbol->n_offset : symbol->n_name;
a109c7c1 1769
7ecb6532 1770 if (strcmp (name, ".bf") == 0)
7a78ae4e
ND
1771 goto gotit;
1772 }
c906108c
SS
1773 symno += symbol->n_numaux + 1;
1774 }
1775
23136709 1776 bf_notfound_complaint ();
c906108c
SS
1777 return 0;
1778
1779gotit:
581e13c1 1780 /* Take aux entry and return its lineno. */
c906108c 1781 symno++;
7a78ae4e 1782 bfd_coff_swap_aux_in (objfile->obfd, stbl + symno * local_symesz,
c906108c
SS
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
581e13c1 1789/* Support for line number handling. */
c906108c
SS
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 */
1795static void
7be0c536 1796find_linenos (struct bfd *abfd, struct bfd_section *asect, void *vpinfo)
c906108c 1797{
02dc647e 1798 struct xcoff_symfile_info *info;
c906108c
SS
1799 int size, count;
1800 file_ptr offset, maxoff;
1801
1802 count = asect->lineno_count;
1803
7ecb6532 1804 if (strcmp (asect->name, ".text") != 0 || count == 0)
c906108c
SS
1805 return;
1806
1807 size = count * coff_data (abfd)->local_linesz;
02dc647e 1808 info = (struct xcoff_symfile_info *) vpinfo;
c906108c
SS
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
c906108c 1819static void
8566b89b 1820xcoff_psymtab_to_symtab_1 (legacy_psymtab *pst, struct objfile *objfile)
c906108c 1821{
0494dbec 1822 gdb_assert (!pst->readin);
c906108c 1823
581e13c1 1824 /* Read in all partial symtabs on which this one is dependent. */
0494dbec 1825 pst->read_dependencies (objfile);
c906108c 1826
c5aa993b 1827 if (((struct symloc *) pst->read_symtab_private)->numsyms != 0)
c906108c
SS
1828 {
1829 /* Init stuff necessary for reading in symbols. */
1830 stabsread_init ();
c906108c 1831
33c7c59d 1832 scoped_free_pendings free_pending;
5c80ed9d 1833 read_xcoff_symtab (objfile, pst);
c906108c
SS
1834 }
1835
6d94535f 1836 pst->readin = true;
c906108c
SS
1837}
1838
c906108c 1839/* Read in all of the symbols for a given psymtab for real.
257e7a09 1840 Be verbose about it if the user wants that. SELF is not NULL. */
c906108c
SS
1841
1842static void
891813be 1843xcoff_read_symtab (legacy_psymtab *self, struct objfile *objfile)
c906108c 1844{
077cbab2 1845 gdb_assert (!self->readin);
c906108c 1846
257e7a09
YQ
1847 if (((struct symloc *) self->read_symtab_private)->numsyms != 0
1848 || self->number_of_dependencies)
c906108c 1849 {
c906108c
SS
1850 next_symbol_text_func = xcoff_next_symbol_text;
1851
8566b89b 1852 self->expand_psymtab (objfile);
c906108c
SS
1853
1854 /* Match with global symbols. This only needs to be done once,
1855 after all of the symtabs and dependencies have been read in. */
5c80ed9d 1856 scan_file_globals (objfile);
c906108c
SS
1857 }
1858}
1859\f
1860static void
fba45db2 1861xcoff_new_init (struct objfile *objfile)
c906108c
SS
1862{
1863 stabsread_new_init ();
c906108c
SS
1864}
1865
1866/* Do initialization in preparation for reading symbols from OBJFILE.
c5aa993b 1867
c906108c
SS
1868 We will only be called if this is an XCOFF or XCOFF-like file.
1869 BFD handles figuring out the format of the file, and code in symfile.c
1870 uses BFD's determination to vector to us. */
1871
1872static void
fba45db2 1873xcoff_symfile_init (struct objfile *objfile)
c906108c 1874{
581e13c1 1875 /* Allocate struct to keep track of the symfile. */
02dc647e 1876 xcoff_objfile_data_key.emplace (objfile);
c906108c
SS
1877
1878 /* XCOFF objects may be reordered, so set OBJF_REORDERED. If we
1879 find this causes a significant slowdown in gdb then we could
1880 set it in the debug symbol readers only when necessary. */
1881 objfile->flags |= OBJF_REORDERED;
c906108c
SS
1882}
1883
1884/* Perform any local cleanups required when we are done with a particular
1885 objfile. I.E, we are in the process of discarding all symbol information
1886 for an objfile, freeing up all memory held for it, and unlinking the
581e13c1 1887 objfile struct from the global list of known objfiles. */
c906108c
SS
1888
1889static void
fba45db2 1890xcoff_symfile_finish (struct objfile *objfile)
c906108c 1891{
c906108c
SS
1892 /* Start with a fresh include table for the next objfile. */
1893 if (inclTable)
1894 {
b8c9b27d 1895 xfree (inclTable);
c906108c
SS
1896 inclTable = NULL;
1897 }
1898 inclIndx = inclLength = inclDepth = 0;
1899}
1900
1901
1902static void
fba45db2 1903init_stringtab (bfd *abfd, file_ptr offset, struct objfile *objfile)
c906108c
SS
1904{
1905 long length;
1906 int val;
1907 unsigned char lengthbuf[4];
1908 char *strtbl;
02dc647e 1909 struct xcoff_symfile_info *xcoff = XCOFF_DATA (objfile);
c906108c 1910
b8b98ad1 1911 xcoff->strtbl = NULL;
c906108c
SS
1912
1913 if (bfd_seek (abfd, offset, SEEK_SET) < 0)
8a3fe4f8 1914 error (_("cannot seek to string table in %s: %s"),
c906108c
SS
1915 bfd_get_filename (abfd), bfd_errmsg (bfd_get_error ()));
1916
3a42e9d0 1917 val = bfd_bread ((char *) lengthbuf, sizeof lengthbuf, abfd);
c906108c
SS
1918 length = bfd_h_get_32 (abfd, lengthbuf);
1919
1920 /* If no string table is needed, then the file may end immediately
1921 after the symbols. Just return with `strtbl' set to NULL. */
1922
1923 if (val != sizeof lengthbuf || length < sizeof lengthbuf)
1924 return;
1925
581e13c1
MS
1926 /* Allocate string table from objfile_obstack. We will need this table
1927 as long as we have its symbol table around. */
c906108c 1928
4a146b47 1929 strtbl = (char *) obstack_alloc (&objfile->objfile_obstack, length);
b8b98ad1 1930 xcoff->strtbl = strtbl;
c906108c
SS
1931
1932 /* Copy length buffer, the first byte is usually zero and is
1933 used for stabs with a name length of zero. */
1934 memcpy (strtbl, lengthbuf, sizeof lengthbuf);
1935 if (length == sizeof lengthbuf)
1936 return;
1937
3a42e9d0 1938 val = bfd_bread (strtbl + sizeof lengthbuf, length - sizeof lengthbuf, abfd);
c906108c
SS
1939
1940 if (val != length - sizeof lengthbuf)
8a3fe4f8 1941 error (_("cannot read string table from %s: %s"),
c906108c
SS
1942 bfd_get_filename (abfd), bfd_errmsg (bfd_get_error ()));
1943 if (strtbl[length - 1] != '\0')
3e43a32a
MS
1944 error (_("bad symbol file: string table "
1945 "does not end with null character"));
c906108c
SS
1946
1947 return;
1948}
1949\f
1950/* If we have not yet seen a function for this psymtab, this is 0. If we
1951 have seen one, it is the offset in the line numbers of the line numbers
1952 for the psymtab. */
1953static unsigned int first_fun_line_offset;
1954
c906108c
SS
1955/* Allocate and partially fill a partial symtab. It will be
1956 completely filled at the end of the symbol list.
1957
1958 SYMFILE_NAME is the name of the symbol-file we are reading from, and ADDR
1959 is the address relative to which its symbols are (incremental) or 0
581e13c1 1960 (normal). */
c906108c 1961
891813be 1962static legacy_psymtab *
0d5cff50 1963xcoff_start_psymtab (struct objfile *objfile,
939652a5 1964 const char *filename, int first_symnum)
c906108c 1965{
c3693a1d 1966 /* We fill in textlow later. */
891813be 1967 legacy_psymtab *result = new legacy_psymtab (filename, objfile, 0);
c906108c 1968
8d749320
SM
1969 result->read_symtab_private =
1970 XOBNEW (&objfile->objfile_obstack, struct symloc);
c5aa993b 1971 ((struct symloc *) result->read_symtab_private)->first_symnum = first_symnum;
891813be 1972 result->legacy_read_symtab = xcoff_read_symtab;
8566b89b 1973 result->legacy_expand_psymtab = xcoff_psymtab_to_symtab_1;
c906108c 1974
581e13c1 1975 /* Deduce the source language from the filename for this psymtab. */
c906108c
SS
1976 psymtab_language = deduce_language_from_filename (filename);
1977
1978 return result;
1979}
1980
581e13c1 1981/* Close off the current usage of PST.
c906108c
SS
1982 Returns PST, or NULL if the partial symtab was empty and thrown away.
1983
1984 CAPPING_SYMBOL_NUMBER is the end of pst (exclusive).
1985
1986 INCLUDE_LIST, NUM_INCLUDES, DEPENDENCY_LIST, and NUMBER_DEPENDENCIES
1987 are the information for includes and dependencies. */
1988
891813be
TT
1989static legacy_psymtab *
1990xcoff_end_psymtab (struct objfile *objfile, legacy_psymtab *pst,
5c80ed9d
TT
1991 const char **include_list, int num_includes,
1992 int capping_symbol_number,
891813be 1993 legacy_psymtab **dependency_list,
fba45db2 1994 int number_dependencies, int textlow_not_set)
c906108c
SS
1995{
1996 int i;
c906108c
SS
1997
1998 if (capping_symbol_number != -1)
c5aa993b 1999 ((struct symloc *) pst->read_symtab_private)->numsyms =
c906108c 2000 capping_symbol_number
c5aa993b
JM
2001 - ((struct symloc *) pst->read_symtab_private)->first_symnum;
2002 ((struct symloc *) pst->read_symtab_private)->lineno_off =
c906108c
SS
2003 first_fun_line_offset;
2004 first_fun_line_offset = 0;
8763cede
DE
2005
2006 end_psymtab_common (objfile, pst);
c906108c
SS
2007
2008 pst->number_of_dependencies = number_dependencies;
2009 if (number_dependencies)
2010 {
a9342b62
TT
2011 pst->dependencies
2012 = objfile->partial_symtabs->allocate_dependencies (number_dependencies);
c906108c 2013 memcpy (pst->dependencies, dependency_list,
891813be 2014 number_dependencies * sizeof (legacy_psymtab *));
c906108c
SS
2015 }
2016 else
2017 pst->dependencies = 0;
2018
2019 for (i = 0; i < num_includes; i++)
2020 {
891813be
TT
2021 legacy_psymtab *subpst =
2022 new legacy_psymtab (include_list[i], objfile);
c906108c 2023
e39db4db 2024 subpst->read_symtab_private = XOBNEW (&objfile->objfile_obstack, symloc);
c5aa993b
JM
2025 ((struct symloc *) subpst->read_symtab_private)->first_symnum = 0;
2026 ((struct symloc *) subpst->read_symtab_private)->numsyms = 0;
c906108c
SS
2027
2028 /* We could save slight bits of space by only making one of these,
c5aa993b 2029 shared by the entire set of include files. FIXME-someday. */
8d749320 2030 subpst->dependencies =
a9342b62 2031 objfile->partial_symtabs->allocate_dependencies (1);
c906108c
SS
2032 subpst->dependencies[0] = pst;
2033 subpst->number_of_dependencies = 1;
2034
891813be 2035 subpst->legacy_read_symtab = pst->legacy_read_symtab;
8566b89b 2036 subpst->legacy_expand_psymtab = pst->legacy_expand_psymtab;
c906108c
SS
2037 }
2038
c906108c
SS
2039 if (num_includes == 0
2040 && number_dependencies == 0
2041 && pst->n_global_syms == 0
2042 && pst->n_static_syms == 0)
2043 {
2044 /* Throw away this psymtab, it's empty. We can't deallocate it, since
c5aa993b 2045 it is on the obstack, but we can forget to chain it on the list. */
c906108c 2046 /* Empty psymtabs happen as a result of header files which don't have
c5aa993b 2047 any symbols in them. There can be a lot of them. */
c906108c 2048
5c80ed9d 2049 discard_psymtab (objfile, pst);
c906108c
SS
2050
2051 /* Indicate that psymtab was thrown away. */
be903358 2052 pst = NULL;
c906108c
SS
2053 }
2054 return pst;
2055}
2056
c906108c
SS
2057/* Swap raw symbol at *RAW and put the name in *NAME, the symbol in
2058 *SYMBOL, the first auxent in *AUX. Advance *RAW and *SYMNUMP over
2059 the symbol and its auxents. */
2060
2061static void
fba45db2 2062swap_sym (struct internal_syment *symbol, union internal_auxent *aux,
0d5cff50 2063 const char **name, char **raw, unsigned int *symnump,
fba45db2 2064 struct objfile *objfile)
c906108c
SS
2065{
2066 bfd_coff_swap_sym_in (objfile->obfd, *raw, symbol);
2067 if (symbol->n_zeroes)
2068 {
2069 /* If it's exactly E_SYMNMLEN characters long it isn't
c5aa993b 2070 '\0'-terminated. */
c906108c
SS
2071 if (symbol->n_name[E_SYMNMLEN - 1] != '\0')
2072 {
2073 /* FIXME: wastes memory for symbols which we don't end up putting
2074 into the minimal symbols. */
2075 char *p;
a109c7c1 2076
224c3ddb
SM
2077 p = (char *) obstack_alloc (&objfile->objfile_obstack,
2078 E_SYMNMLEN + 1);
c906108c
SS
2079 strncpy (p, symbol->n_name, E_SYMNMLEN);
2080 p[E_SYMNMLEN] = '\0';
2081 *name = p;
2082 }
2083 else
2084 /* Point to the unswapped name as that persists as long as the
2085 objfile does. */
c5aa993b 2086 *name = ((struct external_syment *) *raw)->e.e_name;
c906108c
SS
2087 }
2088 else if (symbol->n_sclass & 0x80)
2089 {
b8b98ad1 2090 *name = XCOFF_DATA (objfile)->debugsec + symbol->n_offset;
c906108c
SS
2091 }
2092 else
2093 {
b8b98ad1 2094 *name = XCOFF_DATA (objfile)->strtbl + symbol->n_offset;
c906108c
SS
2095 }
2096 ++*symnump;
2097 *raw += coff_data (objfile->obfd)->local_symesz;
2098 if (symbol->n_numaux > 0)
2099 {
2100 bfd_coff_swap_aux_in (objfile->obfd, *raw, symbol->n_type,
2101 symbol->n_sclass, 0, symbol->n_numaux, aux);
2102
2103 *symnump += symbol->n_numaux;
2104 *raw += coff_data (objfile->obfd)->local_symesz * symbol->n_numaux;
2105 }
2106}
2107
23136709
KB
2108static void
2109function_outside_compilation_unit_complaint (const char *arg1)
2110{
b98664d3 2111 complaint (_("function `%s' appears to be defined "
3e43a32a 2112 "outside of all compilation units"),
23136709
KB
2113 arg1);
2114}
2115
c906108c 2116static void
8dddcb8f
TT
2117scan_xcoff_symtab (minimal_symbol_reader &reader,
2118 struct objfile *objfile)
c906108c 2119{
40c58d95 2120 struct gdbarch *gdbarch = get_objfile_arch (objfile);
581e13c1 2121 CORE_ADDR toc_offset = 0; /* toc offset value in data section. */
0d5cff50 2122 const char *filestring = NULL;
c906108c 2123
0d5cff50 2124 const char *namestring;
c906108c
SS
2125 bfd *abfd;
2126 asection *bfd_sect;
2127 unsigned int nsyms;
2128
2129 /* Current partial symtab */
891813be 2130 legacy_psymtab *pst;
c906108c 2131
581e13c1 2132 /* List of current psymtab's include files. */
0d5cff50 2133 const char **psymtab_include_list;
c906108c
SS
2134 int includes_allocated;
2135 int includes_used;
2136
581e13c1 2137 /* Index within current psymtab dependency list. */
891813be 2138 legacy_psymtab **dependency_list;
c906108c
SS
2139 int dependencies_used, dependencies_allocated;
2140
2141 char *sraw_symbol;
2142 struct internal_syment symbol;
96baa820 2143 union internal_auxent main_aux[5];
c906108c
SS
2144 unsigned int ssymnum;
2145
0d5cff50 2146 const char *last_csect_name = NULL; /* Last seen csect's name and value. */
c906108c
SS
2147 CORE_ADDR last_csect_val = 0;
2148 int last_csect_sec = 0;
581e13c1 2149 int misc_func_recorded = 0; /* true if any misc. function. */
c906108c
SS
2150 int textlow_not_set = 1;
2151
891813be 2152 pst = (legacy_psymtab *) 0;
c906108c
SS
2153
2154 includes_allocated = 30;
2155 includes_used = 0;
0d5cff50
DE
2156 psymtab_include_list = (const char **) alloca (includes_allocated *
2157 sizeof (const char *));
c906108c
SS
2158
2159 dependencies_allocated = 30;
2160 dependencies_used = 0;
2161 dependency_list =
891813be
TT
2162 (legacy_psymtab **) alloca (dependencies_allocated *
2163 sizeof (legacy_psymtab *));
c906108c 2164
46212e0b 2165 set_last_source_file (NULL);
c906108c
SS
2166
2167 abfd = objfile->obfd;
13c763f4 2168 next_symbol_text_func = xcoff_next_symbol_text;
c906108c 2169
b8b98ad1
TT
2170 sraw_symbol = XCOFF_DATA (objfile)->symtbl;
2171 nsyms = XCOFF_DATA (objfile)->symtbl_num_syms;
c906108c
SS
2172 ssymnum = 0;
2173 while (ssymnum < nsyms)
2174 {
7a78ae4e 2175 int sclass;
c906108c
SS
2176
2177 QUIT;
2178
7a78ae4e
ND
2179 bfd_coff_swap_sym_in (abfd, sraw_symbol, &symbol);
2180 sclass = symbol.n_sclass;
2181
c906108c
SS
2182 switch (sclass)
2183 {
2184 case C_EXT:
2185 case C_HIDEXT:
55bcecda 2186 case C_WEAKEXT:
c906108c
SS
2187 {
2188 /* The CSECT auxent--always the last auxent. */
2189 union internal_auxent csect_aux;
2190 unsigned int symnum_before = ssymnum;
2191
96baa820 2192 swap_sym (&symbol, &main_aux[0], &namestring, &sraw_symbol,
c906108c
SS
2193 &ssymnum, objfile);
2194 if (symbol.n_numaux > 1)
2195 {
2196 bfd_coff_swap_aux_in
2197 (objfile->obfd,
c5aa993b 2198 sraw_symbol - coff_data (abfd)->local_symesz,
c906108c
SS
2199 symbol.n_type,
2200 symbol.n_sclass,
2201 symbol.n_numaux - 1,
2202 symbol.n_numaux,
2203 &csect_aux);
2204 }
2205 else
96baa820 2206 csect_aux = main_aux[0];
c906108c 2207
977adac5
ND
2208 /* If symbol name starts with ".$" or "$", ignore it. */
2209 if (namestring[0] == '$'
c906108c
SS
2210 || (namestring[0] == '.' && namestring[1] == '$'))
2211 break;
2212
2213 switch (csect_aux.x_csect.x_smtyp & 0x7)
2214 {
2215 case XTY_SD:
2216 switch (csect_aux.x_csect.x_smclas)
2217 {
2218 case XMC_PR:
2219 if (last_csect_name)
2220 {
2221 /* If no misc. function recorded in the last
581e13c1 2222 seen csect, enter it as a function. This
c906108c
SS
2223 will take care of functions like strcmp()
2224 compiled by xlc. */
2225
2226 if (!misc_func_recorded)
2227 {
ec92004f 2228 record_minimal_symbol
8dddcb8f 2229 (reader, last_csect_name, last_csect_val,
ec92004f
JB
2230 mst_text, last_csect_sec, objfile);
2231 misc_func_recorded = 1;
c906108c
SS
2232 }
2233
2234 if (pst != NULL)
2235 {
2236 /* We have to allocate one psymtab for
2237 each program csect, because their text
2238 sections need not be adjacent. */
2239 xcoff_end_psymtab
5c80ed9d
TT
2240 (objfile, pst, psymtab_include_list,
2241 includes_used, symnum_before, dependency_list,
c906108c
SS
2242 dependencies_used, textlow_not_set);
2243 includes_used = 0;
2244 dependencies_used = 0;
2245 /* Give all psymtabs for this source file the same
2246 name. */
2247 pst = xcoff_start_psymtab
d4f3574e 2248 (objfile,
c906108c 2249 filestring,
939652a5 2250 symnum_before);
c906108c
SS
2251 }
2252 }
977adac5
ND
2253 /* Activate the misc_func_recorded mechanism for
2254 compiler- and linker-generated CSECTs like ".strcmp"
2255 and "@FIX1". */
2256 if (namestring && (namestring[0] == '.'
2257 || namestring[0] == '@'))
c906108c
SS
2258 {
2259 last_csect_name = namestring;
2260 last_csect_val = symbol.n_value;
ec92004f 2261 last_csect_sec = symbol.n_scnum;
c906108c
SS
2262 }
2263 if (pst != NULL)
2264 {
2265 CORE_ADDR highval =
a109c7c1
MS
2266 symbol.n_value + csect_aux.x_csect.x_scnlen.l;
2267
79748972 2268 if (highval > pst->raw_text_high ())
4ae976d1 2269 pst->set_text_high (highval);
52948f01 2270 if (!pst->text_low_valid
79748972 2271 || symbol.n_value < pst->raw_text_low ())
4ae976d1 2272 pst->set_text_low (symbol.n_value);
c906108c
SS
2273 }
2274 misc_func_recorded = 0;
2275 break;
2276
2277 case XMC_RW:
6904b546 2278 case XMC_TD:
c906108c
SS
2279 /* Data variables are recorded in the minimal symbol
2280 table, except for section symbols. */
2281 if (*namestring != '.')
4d1eb6b4 2282 record_minimal_symbol
8dddcb8f 2283 (reader, namestring, symbol.n_value,
c906108c 2284 sclass == C_HIDEXT ? mst_file_data : mst_data,
4d1eb6b4 2285 symbol.n_scnum, objfile);
c906108c
SS
2286 break;
2287
2288 case XMC_TC0:
2289 if (toc_offset)
8a3fe4f8 2290 warning (_("More than one XMC_TC0 symbol found."));
c906108c
SS
2291 toc_offset = symbol.n_value;
2292
3e43a32a
MS
2293 /* Make TOC offset relative to start address of
2294 section. */
c906108c
SS
2295 bfd_sect = secnum_to_bfd_section (symbol.n_scnum, objfile);
2296 if (bfd_sect)
fd361982 2297 toc_offset -= bfd_section_vma (bfd_sect);
c906108c
SS
2298 break;
2299
2300 case XMC_TC:
2301 /* These symbols tell us where the TOC entry for a
2302 variable is, not the variable itself. */
2303 break;
2304
2305 default:
2306 break;
2307 }
2308 break;
2309
2310 case XTY_LD:
2311 switch (csect_aux.x_csect.x_smclas)
2312 {
2313 case XMC_PR:
2314 /* A function entry point. */
2315
2316 if (first_fun_line_offset == 0 && symbol.n_numaux > 1)
2317 first_fun_line_offset =
96baa820 2318 main_aux[0].x_sym.x_fcnary.x_fcn.x_lnnoptr;
a2e3e93f
SM
2319
2320 record_minimal_symbol
8dddcb8f 2321 (reader, namestring, symbol.n_value,
a2e3e93f
SM
2322 sclass == C_HIDEXT ? mst_file_text : mst_text,
2323 symbol.n_scnum, objfile);
2324 misc_func_recorded = 1;
c906108c
SS
2325 break;
2326
2327 case XMC_GL:
2328 /* shared library function trampoline code entry
581e13c1 2329 point. */
c906108c
SS
2330
2331 /* record trampoline code entries as
2332 mst_solib_trampoline symbol. When we lookup mst
2333 symbols, we will choose mst_text over
581e13c1 2334 mst_solib_trampoline. */
ec92004f 2335 record_minimal_symbol
8dddcb8f 2336 (reader, namestring, symbol.n_value,
ec92004f
JB
2337 mst_solib_trampoline, symbol.n_scnum, objfile);
2338 misc_func_recorded = 1;
c906108c
SS
2339 break;
2340
2341 case XMC_DS:
2342 /* The symbols often have the same names as
2343 debug symbols for functions, and confuse
2344 lookup_symbol. */
2345 break;
2346
2347 default:
2348
2349 /* xlc puts each variable in a separate csect,
2350 so we get an XTY_SD for each variable. But
2351 gcc puts several variables in a csect, so
2352 that each variable only gets an XTY_LD. We
2353 still need to record them. This will
2354 typically be XMC_RW; I suspect XMC_RO and
2355 XMC_BS might be possible too. */
2356 if (*namestring != '.')
4d1eb6b4 2357 record_minimal_symbol
8dddcb8f 2358 (reader, namestring, symbol.n_value,
c906108c 2359 sclass == C_HIDEXT ? mst_file_data : mst_data,
4d1eb6b4 2360 symbol.n_scnum, objfile);
c906108c
SS
2361 break;
2362 }
2363 break;
2364
2365 case XTY_CM:
2366 switch (csect_aux.x_csect.x_smclas)
2367 {
2368 case XMC_RW:
2369 case XMC_BS:
2370 /* Common variables are recorded in the minimal symbol
2371 table, except for section symbols. */
2372 if (*namestring != '.')
4d1eb6b4 2373 record_minimal_symbol
8dddcb8f 2374 (reader, namestring, symbol.n_value,
c906108c 2375 sclass == C_HIDEXT ? mst_file_bss : mst_bss,
4d1eb6b4 2376 symbol.n_scnum, objfile);
c906108c
SS
2377 break;
2378 }
2379 break;
2380
2381 default:
2382 break;
2383 }
2384 }
2385 break;
2386 case C_FILE:
2387 {
2388 unsigned int symnum_before;
2389
2390 symnum_before = ssymnum;
96baa820 2391 swap_sym (&symbol, &main_aux[0], &namestring, &sraw_symbol,
c906108c
SS
2392 &ssymnum, objfile);
2393
2394 /* See if the last csect needs to be recorded. */
2395
2396 if (last_csect_name && !misc_func_recorded)
2397 {
c906108c
SS
2398 /* If no misc. function recorded in the last seen csect, enter
2399 it as a function. This will take care of functions like
2400 strcmp() compiled by xlc. */
2401
8dddcb8f 2402 record_minimal_symbol (reader, last_csect_name, last_csect_val,
ec92004f
JB
2403 mst_text, last_csect_sec, objfile);
2404 misc_func_recorded = 1;
c906108c
SS
2405 }
2406
2407 if (pst)
2408 {
5c80ed9d
TT
2409 xcoff_end_psymtab (objfile, pst, psymtab_include_list,
2410 includes_used, symnum_before,
2411 dependency_list, dependencies_used,
2412 textlow_not_set);
c906108c
SS
2413 includes_used = 0;
2414 dependencies_used = 0;
2415 }
2416 first_fun_line_offset = 0;
2417
2418 /* XCOFF, according to the AIX 3.2 documentation, puts the
2419 filename in cs->c_name. But xlc 1.3.0.2 has decided to
2420 do things the standard COFF way and put it in the auxent.
2421 We use the auxent if the symbol is ".file" and an auxent
2422 exists, otherwise use the symbol itself. */
2423 if (!strcmp (namestring, ".file") && symbol.n_numaux > 0)
2424 {
96baa820 2425 filestring = coff_getfilename (&main_aux[0], objfile);
c906108c
SS
2426 }
2427 else
2428 filestring = namestring;
2429
d4f3574e 2430 pst = xcoff_start_psymtab (objfile,
c906108c 2431 filestring,
939652a5 2432 symnum_before);
c906108c
SS
2433 last_csect_name = NULL;
2434 }
2435 break;
2436
2437 default:
2438 {
b98664d3 2439 complaint (_("Storage class %d not recognized during scan"),
3e43a32a 2440 sclass);
c906108c
SS
2441 }
2442 /* FALLTHROUGH */
2443
86a73007 2444 case C_FCN:
c906108c
SS
2445 /* C_FCN is .bf and .ef symbols. I think it is sufficient
2446 to handle only the C_FUN and C_EXT. */
c906108c
SS
2447
2448 case C_BSTAT:
2449 case C_ESTAT:
2450 case C_ARG:
2451 case C_REGPARM:
2452 case C_REG:
2453 case C_TPDEF:
2454 case C_STRTAG:
2455 case C_UNTAG:
2456 case C_ENTAG:
2457 case C_LABEL:
2458 case C_NULL:
2459
2460 /* C_EINCL means we are switching back to the main file. But there
2461 is no reason to care; the only thing we want to know about
2462 includes is the names of all the included (.h) files. */
2463 case C_EINCL:
2464
2465 case C_BLOCK:
2466
2467 /* I don't think C_STAT is used in xcoff; C_HIDEXT appears to be
2468 used instead. */
2469 case C_STAT:
2470
2471 /* I don't think the name of the common block (as opposed to the
2472 variables within it) is something which is user visible
2473 currently. */
2474 case C_BCOMM:
2475 case C_ECOMM:
2476
2477 case C_PSYM:
2478 case C_RPSYM:
2479
2480 /* I think we can ignore C_LSYM; types on xcoff seem to use C_DECL
2481 so C_LSYM would appear to be only for locals. */
2482 case C_LSYM:
2483
2484 case C_AUTO:
2485 case C_RSYM:
2486 {
2487 /* We probably could save a few instructions by assuming that
2488 C_LSYM, C_PSYM, etc., never have auxents. */
7a78ae4e 2489 int naux1 = symbol.n_numaux + 1;
a109c7c1 2490
c906108c 2491 ssymnum += naux1;
7a78ae4e 2492 sraw_symbol += bfd_coff_symesz (abfd) * naux1;
c906108c
SS
2493 }
2494 break;
2495
2496 case C_BINCL:
d5d0a62f 2497 {
581e13c1 2498 /* Mark down an include file in the current psymtab. */
d5d0a62f 2499 enum language tmp_language;
a109c7c1 2500
d5d0a62f
EZ
2501 swap_sym (&symbol, &main_aux[0], &namestring, &sraw_symbol,
2502 &ssymnum, objfile);
2503
2504 tmp_language = deduce_language_from_filename (namestring);
2505
2506 /* Only change the psymtab's language if we've learned
2507 something useful (eg. tmp_language is not language_unknown).
2508 In addition, to match what start_subfile does, never change
2509 from C++ to C. */
2510 if (tmp_language != language_unknown
2511 && (tmp_language != language_c
2512 || psymtab_language != language_cplus))
2513 psymtab_language = tmp_language;
2514
2515 /* In C++, one may expect the same filename to come round many
2516 times, when code is coming alternately from the main file
581e13c1 2517 and from inline functions in other files. So I check to see
d5d0a62f
EZ
2518 if this is a file we've seen before -- either the main
2519 source file, or a previously included file.
2520
2521 This seems to be a lot of time to be spending on N_SOL, but
2522 things like "break c-exp.y:435" need to work (I
2523 suppose the psymtab_include_list could be hashed or put
2524 in a binary tree, if profiling shows this is a major hog). */
7ecb6532 2525 if (pst && strcmp (namestring, pst->filename) == 0)
d5d0a62f 2526 continue;
a109c7c1 2527
d5d0a62f 2528 {
aa1ee363 2529 int i;
a109c7c1 2530
d5d0a62f 2531 for (i = 0; i < includes_used; i++)
7ecb6532 2532 if (strcmp (namestring, psymtab_include_list[i]) == 0)
d5d0a62f
EZ
2533 {
2534 i = -1;
2535 break;
2536 }
2537 if (i == -1)
2538 continue;
2539 }
2540 psymtab_include_list[includes_used++] = namestring;
2541 if (includes_used >= includes_allocated)
2542 {
0d5cff50 2543 const char **orig = psymtab_include_list;
c906108c 2544
0d5cff50 2545 psymtab_include_list = (const char **)
d5d0a62f 2546 alloca ((includes_allocated *= 2) *
0d5cff50 2547 sizeof (const char *));
4efb68b1 2548 memcpy (psymtab_include_list, orig,
0d5cff50 2549 includes_used * sizeof (const char *));
d5d0a62f
EZ
2550 }
2551 continue;
2552 }
c906108c
SS
2553 case C_FUN:
2554 /* The value of the C_FUN is not the address of the function (it
2555 appears to be the address before linking), but as long as it
2556 is smaller than the actual address, then find_pc_partial_function
2557 will use the minimal symbols instead. I hope. */
2558
2559 case C_GSYM:
2560 case C_ECOML:
2561 case C_DECL:
2562 case C_STSYM:
d5d0a62f 2563 {
e28566f7 2564 const char *p;
a109c7c1 2565
d5d0a62f
EZ
2566 swap_sym (&symbol, &main_aux[0], &namestring, &sraw_symbol,
2567 &ssymnum, objfile);
2568
ed4b0e6a 2569 p = strchr (namestring, ':');
d5d0a62f
EZ
2570 if (!p)
2571 continue; /* Not a debugging symbol. */
2572
2573 /* Main processing section for debugging symbols which
2574 the initial read through the symbol tables needs to worry
2575 about. If we reach this point, the symbol which we are
2576 considering is definitely one we are interested in.
2577 p must also contain the (valid) index into the namestring
2578 which indicates the debugging type symbol. */
2579
2580 switch (p[1])
2581 {
2582 case 'S':
5e2b427d 2583 if (gdbarch_static_transform_name_p (gdbarch))
149ad273 2584 namestring = gdbarch_static_transform_name
5e2b427d 2585 (gdbarch, namestring);
149ad273 2586
31edb802
CB
2587 add_psymbol_to_list (gdb::string_view (namestring,
2588 p - namestring),
2589 true, VAR_DOMAIN, LOC_STATIC,
79748972 2590 SECT_OFF_DATA (objfile),
75aedd27 2591 psymbol_placement::STATIC,
1762568f 2592 symbol.n_value,
d5d0a62f
EZ
2593 psymtab_language, objfile);
2594 continue;
2595
2596 case 'G':
d5d0a62f 2597 /* The addresses in these entries are reported to be
581e13c1 2598 wrong. See the code that reads 'G's for symtabs. */
31edb802
CB
2599 add_psymbol_to_list (gdb::string_view (namestring,
2600 p - namestring),
2601 true, VAR_DOMAIN, LOC_STATIC,
79748972 2602 SECT_OFF_DATA (objfile),
75aedd27 2603 psymbol_placement::GLOBAL,
1762568f 2604 symbol.n_value,
d5d0a62f
EZ
2605 psymtab_language, objfile);
2606 continue;
2607
2608 case 'T':
2609 /* When a 'T' entry is defining an anonymous enum, it
2610 may have a name which is the empty string, or a
2611 single space. Since they're not really defining a
2612 symbol, those shouldn't go in the partial symbol
2613 table. We do pick up the elements of such enums at
2614 'check_enum:', below. */
2615 if (p >= namestring + 2
2616 || (p == namestring + 1
2617 && namestring[0] != ' '))
2618 {
31edb802
CB
2619 add_psymbol_to_list (gdb::string_view (namestring,
2620 p - namestring),
2621 true, STRUCT_DOMAIN, LOC_TYPEDEF, -1,
75aedd27 2622 psymbol_placement::STATIC,
1762568f 2623 0, psymtab_language, objfile);
d5d0a62f
EZ
2624 if (p[2] == 't')
2625 {
2626 /* Also a typedef with the same name. */
31edb802
CB
2627 add_psymbol_to_list (gdb::string_view (namestring,
2628 p - namestring),
2629 true, VAR_DOMAIN, LOC_TYPEDEF, -1,
75aedd27 2630 psymbol_placement::STATIC,
1762568f 2631 0, psymtab_language, objfile);
d5d0a62f
EZ
2632 p += 1;
2633 }
d5d0a62f
EZ
2634 }
2635 goto check_enum;
2636
2637 case 't':
581e13c1 2638 if (p != namestring) /* a name is there, not just :T... */
d5d0a62f 2639 {
31edb802
CB
2640 add_psymbol_to_list (gdb::string_view (namestring,
2641 p - namestring),
2642 true, VAR_DOMAIN, LOC_TYPEDEF, -1,
75aedd27 2643 psymbol_placement::STATIC,
1762568f 2644 0, psymtab_language, objfile);
d5d0a62f
EZ
2645 }
2646 check_enum:
2647 /* If this is an enumerated type, we need to
2648 add all the enum constants to the partial symbol
2649 table. This does not cover enums without names, e.g.
2650 "enum {a, b} c;" in C, but fortunately those are
2651 rare. There is no way for GDB to find those from the
2652 enum type without spending too much time on it. Thus
2653 to solve this problem, the compiler needs to put out the
2654 enum in a nameless type. GCC2 does this. */
2655
2656 /* We are looking for something of the form
2657 <name> ":" ("t" | "T") [<number> "="] "e"
2658 {<constant> ":" <value> ","} ";". */
2659
2660 /* Skip over the colon and the 't' or 'T'. */
2661 p += 2;
2662 /* This type may be given a number. Also, numbers can come
2663 in pairs like (0,26). Skip over it. */
2664 while ((*p >= '0' && *p <= '9')
2665 || *p == '(' || *p == ',' || *p == ')'
2666 || *p == '=')
2667 p++;
2668
2669 if (*p++ == 'e')
2670 {
3e43a32a
MS
2671 /* The aix4 compiler emits extra crud before the
2672 members. */
d5d0a62f
EZ
2673 if (*p == '-')
2674 {
2675 /* Skip over the type (?). */
2676 while (*p != ':')
2677 p++;
2678
2679 /* Skip over the colon. */
2680 p++;
2681 }
2682
2683 /* We have found an enumerated type. */
2684 /* According to comments in read_enum_type
2685 a comma could end it instead of a semicolon.
2686 I don't know where that happens.
2687 Accept either. */
2688 while (*p && *p != ';' && *p != ',')
2689 {
e28566f7 2690 const char *q;
d5d0a62f
EZ
2691
2692 /* Check for and handle cretinous dbx symbol name
2693 continuation! */
2694 if (*p == '\\' || (*p == '?' && p[1] == '\0'))
2695 p = next_symbol_text (objfile);
2696
2697 /* Point to the character after the name
2698 of the enum constant. */
2699 for (q = p; *q && *q != ':'; q++)
2700 ;
2701 /* Note that the value doesn't matter for
2702 enum constants in psymtabs, just in symtabs. */
31edb802 2703 add_psymbol_to_list (gdb::string_view (p, q - p), true,
79748972 2704 VAR_DOMAIN, LOC_CONST, -1,
75aedd27 2705 psymbol_placement::STATIC,
d5d0a62f
EZ
2706 0, psymtab_language, objfile);
2707 /* Point past the name. */
2708 p = q;
2709 /* Skip over the value. */
2710 while (*p && *p != ',')
2711 p++;
2712 /* Advance past the comma. */
2713 if (*p)
2714 p++;
2715 }
2716 }
2717 continue;
2718
2719 case 'c':
2720 /* Constant, e.g. from "const" in Pascal. */
31edb802
CB
2721 add_psymbol_to_list (gdb::string_view (namestring,
2722 p - namestring),
2723 true, VAR_DOMAIN, LOC_CONST, -1,
75aedd27 2724 psymbol_placement::STATIC,
d5d0a62f
EZ
2725 0, psymtab_language, objfile);
2726 continue;
2727
2728 case 'f':
2729 if (! pst)
2730 {
2731 int name_len = p - namestring;
224c3ddb 2732 char *name = (char *) xmalloc (name_len + 1);
a109c7c1 2733
d5d0a62f
EZ
2734 memcpy (name, namestring, name_len);
2735 name[name_len] = '\0';
23136709 2736 function_outside_compilation_unit_complaint (name);
d5d0a62f
EZ
2737 xfree (name);
2738 }
31edb802
CB
2739 add_psymbol_to_list (gdb::string_view (namestring,
2740 p - namestring),
2741 true, VAR_DOMAIN, LOC_BLOCK,
79748972 2742 SECT_OFF_TEXT (objfile),
75aedd27 2743 psymbol_placement::STATIC,
1762568f 2744 symbol.n_value,
d5d0a62f
EZ
2745 psymtab_language, objfile);
2746 continue;
2747
2748 /* Global functions were ignored here, but now they
2749 are put into the global psymtab like one would expect.
2750 They're also in the minimal symbol table. */
2751 case 'F':
2752 if (! pst)
2753 {
2754 int name_len = p - namestring;
224c3ddb 2755 char *name = (char *) xmalloc (name_len + 1);
a109c7c1 2756
d5d0a62f
EZ
2757 memcpy (name, namestring, name_len);
2758 name[name_len] = '\0';
23136709 2759 function_outside_compilation_unit_complaint (name);
d5d0a62f
EZ
2760 xfree (name);
2761 }
9f1d5432
PH
2762
2763 /* We need only the minimal symbols for these
581e13c1 2764 loader-generated definitions. Keeping the global
9f1d5432 2765 symbols leads to "in psymbols but not in symbols"
581e13c1 2766 errors. */
61012eef 2767 if (startswith (namestring, "@FIX"))
9f1d5432
PH
2768 continue;
2769
31edb802
CB
2770 add_psymbol_to_list (gdb::string_view (namestring,
2771 p - namestring),
2772 true, VAR_DOMAIN, LOC_BLOCK,
79748972 2773 SECT_OFF_TEXT (objfile),
75aedd27 2774 psymbol_placement::GLOBAL,
1762568f 2775 symbol.n_value,
d5d0a62f
EZ
2776 psymtab_language, objfile);
2777 continue;
2778
2779 /* Two things show up here (hopefully); static symbols of
2780 local scope (static used inside braces) or extensions
2781 of structure symbols. We can ignore both. */
2782 case 'V':
2783 case '(':
2784 case '0':
2785 case '1':
2786 case '2':
2787 case '3':
2788 case '4':
2789 case '5':
2790 case '6':
2791 case '7':
2792 case '8':
2793 case '9':
2794 case '-':
3e43a32a
MS
2795 case '#': /* For symbol identification (used in
2796 live ranges). */
d5d0a62f
EZ
2797 continue;
2798
2799 case ':':
2800 /* It is a C++ nested symbol. We don't need to record it
2801 (I don't think); if we try to look up foo::bar::baz,
2802 then symbols for the symtab containing foo should get
2803 read in, I think. */
2804 /* Someone says sun cc puts out symbols like
2805 /foo/baz/maclib::/usr/local/bin/maclib,
2806 which would get here with a symbol type of ':'. */
2807 continue;
2808
2809 default:
3e43a32a
MS
2810 /* Unexpected symbol descriptor. The second and
2811 subsequent stabs of a continued stab can show up
2812 here. The question is whether they ever can mimic
2813 a normal stab--it would be nice if not, since we
2814 certainly don't want to spend the time searching to
2815 the end of every string looking for a
2816 backslash. */
d5d0a62f 2817
b98664d3 2818 complaint (_("unknown symbol descriptor `%c'"), p[1]);
d5d0a62f
EZ
2819
2820 /* Ignore it; perhaps it is an extension that we don't
2821 know about. */
2822 continue;
2823 }
2824 }
c906108c
SS
2825 }
2826 }
2827
2828 if (pst)
2829 {
5c80ed9d 2830 xcoff_end_psymtab (objfile, pst, psymtab_include_list, includes_used,
c906108c
SS
2831 ssymnum, dependency_list,
2832 dependencies_used, textlow_not_set);
2833 }
2834
581e13c1
MS
2835 /* Record the toc offset value of this symbol table into objfile
2836 structure. If no XMC_TC0 is found, toc_offset should be zero.
2837 Another place to obtain this information would be file auxiliary
2838 header. */
c906108c 2839
b8b98ad1 2840 XCOFF_DATA (objfile)->toc_offset = toc_offset;
c906108c
SS
2841}
2842
2843/* Return the toc offset value for a given objfile. */
2844
2845CORE_ADDR
63807e1d 2846xcoff_get_toc_offset (struct objfile *objfile)
c906108c
SS
2847{
2848 if (objfile)
b8b98ad1 2849 return XCOFF_DATA (objfile)->toc_offset;
c906108c
SS
2850 return 0;
2851}
2852
2853/* Scan and build partial symbols for a symbol file.
2854 We have been initialized by a call to dbx_symfile_init, which
2855 put all the relevant info into a "struct dbx_symfile_info",
2856 hung off the objfile structure.
2857
2858 SECTION_OFFSETS contains offsets relative to which the symbols in the
581e13c1
MS
2859 various sections are (depending where the sections were actually
2860 loaded). */
c906108c
SS
2861
2862static void
b15cc25c 2863xcoff_initial_scan (struct objfile *objfile, symfile_add_flags symfile_flags)
c906108c
SS
2864{
2865 bfd *abfd;
2866 int val;
c5aa993b
JM
2867 int num_symbols; /* # of symbols */
2868 file_ptr symtab_offset; /* symbol table and */
2869 file_ptr stringtab_offset; /* string table file offsets */
02dc647e 2870 struct xcoff_symfile_info *info;
4262abfb 2871 const char *name;
c906108c
SS
2872 unsigned int size;
2873
b8b98ad1 2874 info = XCOFF_DATA (objfile);
c906108c 2875 symfile_bfd = abfd = objfile->obfd;
4262abfb 2876 name = objfile_name (objfile);
c906108c
SS
2877
2878 num_symbols = bfd_get_symcount (abfd); /* # of symbols */
2879 symtab_offset = obj_sym_filepos (abfd); /* symbol table file offset */
2880 stringtab_offset = symtab_offset +
c5aa993b 2881 num_symbols * coff_data (abfd)->local_symesz;
c906108c
SS
2882
2883 info->min_lineno_offset = 0;
2884 info->max_lineno_offset = 0;
2885 bfd_map_over_sections (abfd, find_linenos, info);
2886
2887 if (num_symbols > 0)
2888 {
2889 /* Read the string table. */
2890 init_stringtab (abfd, stringtab_offset, objfile);
2891
97cbe998
SDJ
2892 /* Read the .debug section, if present and if we're not ignoring
2893 it. */
2894 if (!(objfile->flags & OBJF_READNEVER))
2895 {
2896 struct bfd_section *secp;
2897 bfd_size_type length;
2898 bfd_byte *debugsec = NULL;
c906108c 2899
97cbe998
SDJ
2900 secp = bfd_get_section_by_name (abfd, ".debug");
2901 if (secp)
2902 {
fd361982 2903 length = bfd_section_size (secp);
97cbe998
SDJ
2904 if (length)
2905 {
2906 debugsec
2907 = (bfd_byte *) obstack_alloc (&objfile->objfile_obstack,
2908 length);
c906108c 2909
97cbe998
SDJ
2910 if (!bfd_get_full_section_contents (abfd, secp, &debugsec))
2911 {
2912 error (_("Error reading .debug section of `%s': %s"),
2913 name, bfd_errmsg (bfd_get_error ()));
2914 }
2915 }
2916 }
2917 info->debugsec = (char *) debugsec;
2918 }
c906108c
SS
2919 }
2920
2921 /* Read the symbols. We keep them in core because we will want to
2922 access them randomly in read_symbol*. */
2923 val = bfd_seek (abfd, symtab_offset, SEEK_SET);
2924 if (val < 0)
8a3fe4f8 2925 error (_("Error reading symbols from %s: %s"),
c906108c
SS
2926 name, bfd_errmsg (bfd_get_error ()));
2927 size = coff_data (abfd)->local_symesz * num_symbols;
224c3ddb 2928 info->symtbl = (char *) obstack_alloc (&objfile->objfile_obstack, size);
b8b98ad1
TT
2929 info->symtbl_num_syms = num_symbols;
2930
2931 val = bfd_bread (info->symtbl, size, abfd);
c906108c 2932 if (val != size)
e2e0b3e5 2933 perror_with_name (_("reading symbol table"));
c906108c 2934
6eee24ce
TT
2935 /* I'm not sure how how good num_symbols is; the rule of thumb in
2936 init_psymbol_list was developed for a.out. On the one hand,
2937 num_symbols includes auxents. On the other hand, it doesn't
2938 include N_SLINE. */
2939 init_psymbol_list (objfile, num_symbols);
c906108c 2940
33c7c59d 2941 scoped_free_pendings free_pending;
d25e8719 2942 minimal_symbol_reader reader (objfile);
c906108c
SS
2943
2944 /* Now that the symbol table data of the executable file are all in core,
2945 process them and define symbols accordingly. */
2946
8dddcb8f 2947 scan_xcoff_symtab (reader, objfile);
c906108c
SS
2948
2949 /* Install any minimal symbols that have been collected as the current
581e13c1 2950 minimal symbols for this objfile. */
c906108c 2951
d25e8719 2952 reader.install ();
c906108c 2953
316a8b21
TG
2954 /* DWARF2 sections. */
2955
2956 if (dwarf2_has_info (objfile, &dwarf2_xcoff_names))
2957 dwarf2_build_psymtabs (objfile);
2958
2959 dwarf2_build_frame_info (objfile);
c906108c
SS
2960}
2961\f
d4f3574e 2962static void
3e43a32a 2963xcoff_symfile_offsets (struct objfile *objfile,
37e136b1 2964 const section_addr_info &addrs)
c906108c 2965{
4d1eb6b4 2966 const char *first_section_name;
c906108c 2967
4d1eb6b4 2968 default_symfile_offsets (objfile, addrs);
c906108c 2969
4d1eb6b4
JB
2970 /* Oneof the weird side-effects of default_symfile_offsets is that
2971 it sometimes sets some section indices to zero for sections that,
2972 in fact do not exist. See the body of default_symfile_offsets
2973 for more info on when that happens. Undo that, as this then allows
2974 us to test whether the associated section exists or not, and then
2975 access it quickly (without searching it again). */
b8fbeb18 2976
6a053cb1 2977 if (objfile->section_offsets.empty ())
4d1eb6b4 2978 return; /* Is that even possible? Better safe than sorry. */
b8fbeb18 2979
fd361982 2980 first_section_name = bfd_section_name (objfile->sections[0].the_bfd_section);
b8fbeb18 2981
4d1eb6b4
JB
2982 if (objfile->sect_index_text == 0
2983 && strcmp (first_section_name, ".text") != 0)
2984 objfile->sect_index_text = -1;
b8fbeb18 2985
4d1eb6b4
JB
2986 if (objfile->sect_index_data == 0
2987 && strcmp (first_section_name, ".data") != 0)
2988 objfile->sect_index_data = -1;
2989
2990 if (objfile->sect_index_bss == 0
2991 && strcmp (first_section_name, ".bss") != 0)
2992 objfile->sect_index_bss = -1;
2993
2994 if (objfile->sect_index_rodata == 0
2995 && strcmp (first_section_name, ".rodata") != 0)
2996 objfile->sect_index_rodata = -1;
c906108c
SS
2997}
2998
2999/* Register our ability to parse symbols for xcoff BFD files. */
3000
00b5771c 3001static const struct sym_fns xcoff_sym_fns =
c906108c
SS
3002{
3003
7a78ae4e 3004 /* It is possible that coff and xcoff should be merged as
c906108c
SS
3005 they do have fundamental similarities (for example, the extra storage
3006 classes used for stabs could presumably be recognized in any COFF file).
3007 However, in addition to obvious things like all the csect hair, there are
3008 some subtler differences between xcoffread.c and coffread.c, notably
3009 the fact that coffread.c has no need to read in all the symbols, but
3010 xcoffread.c reads all the symbols and does in fact randomly access them
3011 (in C_BSTAT and line number processing). */
3012
3e43a32a
MS
3013 xcoff_new_init, /* init anything gbl to entire symtab */
3014 xcoff_symfile_init, /* read initial info, setup for sym_read() */
3015 xcoff_initial_scan, /* read a symbol file into symtab */
b11896a5 3016 NULL, /* sym_read_psymbols */
3e43a32a
MS
3017 xcoff_symfile_finish, /* finished with file, cleanup */
3018 xcoff_symfile_offsets, /* xlate offsets ext->int form */
3019 default_symfile_segments, /* Get segment information from a file. */
3020 aix_process_linenos,
3021 default_symfile_relocate, /* Relocate a debug section. */
55aa24fb 3022 NULL, /* sym_probe_fns */
00b5771c 3023 &psym_functions
c906108c
SS
3024};
3025
d5367fe1
JB
3026/* Same as xcoff_get_n_import_files, but for core files. */
3027
3028static int
3029xcoff_get_core_n_import_files (bfd *abfd)
3030{
3031 asection *sect = bfd_get_section_by_name (abfd, ".ldinfo");
3032 gdb_byte buf[4];
3033 file_ptr offset = 0;
3034 int n_entries = 0;
3035
3036 if (sect == NULL)
3037 return -1; /* Not a core file. */
3038
fd361982 3039 for (offset = 0; offset < bfd_section_size (sect);)
d5367fe1
JB
3040 {
3041 int next;
3042
3043 n_entries++;
3044
3045 if (!bfd_get_section_contents (abfd, sect, buf, offset, 4))
3046 return -1;
3047 next = bfd_get_32 (abfd, buf);
3048 if (next == 0)
3049 break; /* This is the last entry. */
3050 offset += next;
3051 }
3052
3053 /* Return the number of entries, excluding the first one, which is
3054 the path to the executable that produced this core file. */
3055 return n_entries - 1;
3056}
3057
3058/* Return the number of import files (shared libraries) that the given
3059 BFD depends on. Return -1 if this number could not be computed. */
3060
3061int
3062xcoff_get_n_import_files (bfd *abfd)
3063{
3064 asection *sect = bfd_get_section_by_name (abfd, ".loader");
3065 gdb_byte buf[4];
3066 int l_nimpid;
3067
3068 /* If the ".loader" section does not exist, the objfile is probably
3069 not an executable. Might be a core file... */
3070 if (sect == NULL)
3071 return xcoff_get_core_n_import_files (abfd);
3072
3073 /* The number of entries in the Import Files Table is stored in
3074 field l_nimpid. This field is always at offset 16, and is
3075 always 4 bytes long. Read those 4 bytes. */
3076
3077 if (!bfd_get_section_contents (abfd, sect, buf, 16, 4))
3078 return -1;
3079 l_nimpid = bfd_get_32 (abfd, buf);
3080
3081 /* By convention, the first entry is the default LIBPATH value
3082 to be used by the system loader, so it does not count towards
3083 the number of import files. */
3084 return l_nimpid - 1;
3085}
3086
6c265988 3087void _initialize_xcoffread ();
c906108c 3088void
6c265988 3089_initialize_xcoffread ()
c906108c 3090{
c256e171 3091 add_symtab_fns (bfd_target_xcoff_flavour, &xcoff_sym_fns);
c906108c 3092}
This page took 4.444256 seconds and 4 git commands to generate.