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