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