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