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