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