Mostly rs6000 changes from IBM.
[deliverable/binutils-gdb.git] / gdb / xcoffread.c
1 /* Read AIXcoff symbol tables and convert to internal format, for GDB.
2 Copyright (C) 1986-1991 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 2 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, write to the Free Software
20 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
21
22 #include <stdio.h>
23 #include "defs.h"
24 #include "bfd.h"
25
26 #ifdef IBM6000
27 /* Native only: Need struct tbtable in <sys/debug.h>. */
28
29 /* AIX COFF names have a preceeding dot `.' */
30 #define NAMES_HAVE_DOT 1
31
32 #include <sys/types.h>
33 #include <fcntl.h>
34 #include <ctype.h>
35
36 #include "obstack.h"
37 #include <sys/param.h>
38 #ifndef NO_SYS_FILE
39 #include <sys/file.h>
40 #endif
41 #include <sys/stat.h>
42 /*#include <linenum.h>*/
43 #include <sys/debug.h>
44
45 #include "symtab.h"
46 #include "gdbtypes.h"
47 #include "symfile.h"
48 #include "buildsym.h"
49
50 #include "coff/internal.h" /* FIXME, internal data from BFD */
51 #include "libcoff.h" /* FIXME, internal data from BFD */
52 #include "coff/rs6000.h" /* FIXME, raw file-format guts of xcoff */
53
54 /* Simplified internal version of coff symbol table information */
55
56 struct coff_symbol {
57 char *c_name;
58 int c_symnum; /* symbol number of this entry */
59 int c_nsyms; /* 0 if syment only, 1 if syment + auxent */
60 long c_value;
61 int c_sclass;
62 int c_secnum;
63 unsigned int c_type;
64 };
65
66 /* The COFF line table, in raw form. */
67 static char *linetab = NULL; /* Its actual contents */
68 static long linetab_offset; /* Its offset in the file */
69 static unsigned long linetab_size; /* Its size */
70
71 /* last function's saved coff symbol `cs' */
72
73 static struct coff_symbol fcn_cs_saved;
74
75 static bfd *symfile_bfd;
76
77 /* Core address of start and end of text of current source file.
78 This is calculated from the first function seen after a C_FILE
79 symbol. */
80
81
82 static CORE_ADDR cur_src_end_addr;
83
84 /* Core address of the end of the first object file. */
85
86 static CORE_ADDR first_object_file_end;
87
88 /* pointer to the string table */
89 static char *strtbl;
90
91 /* length of the string table */
92 static int strtbl_len;
93
94 /* pointer to debug section */
95 static char *debugsec;
96
97 /* pointer to the a.out symbol table */
98 static char *symtbl;
99
100 /* initial symbol-table-debug-string vector length */
101
102 #define INITIAL_STABVECTOR_LENGTH 40
103
104 struct pending_stabs *global_stabs;
105
106
107 /* Nonzero if within a function (so symbols should be local,
108 if nothing says specifically). */
109
110 int within_function;
111
112 /* Local variables that hold the shift and mask values for the
113 COFF file that we are currently reading. These come back to us
114 from BFD, and are referenced by their macro names, as well as
115 internally to the BTYPE, ISPTR, ISFCN, ISARY, ISTAG, and DECREF
116 macros from ../internalcoff.h . */
117
118 static unsigned local_n_btshft;
119 static unsigned local_n_tmask;
120
121 #undef N_BTSHFT
122 #define N_BTSHFT local_n_btshft
123 #undef N_TMASK
124 #define N_TMASK local_n_tmask
125
126 /* Local variables that hold the sizes in the file of various COFF structures.
127 (We only need to know this to read them from the file -- BFD will then
128 translate the data in them, into `internal_xxx' structs in the right
129 byte order, alignment, etc.) */
130
131 static unsigned local_symesz;
132
133
134 /* coff_symfile_init()
135 is the coff-specific initialization routine for reading symbols.
136 It is passed a struct sym_fns which contains, among other things,
137 the BFD for the file whose symbols are being read, and a slot for
138 a pointer to "private data" which we fill with cookies and other
139 treats for coff_symfile_read().
140
141 We will only be called if this is a COFF or COFF-like file.
142 BFD handles figuring out the format of the file, and code in symtab.c
143 uses BFD's determination to vector to us.
144
145 The ultimate result is a new symtab (or, FIXME, eventually a psymtab). */
146
147 struct coff_symfile_info {
148 file_ptr min_lineno_offset; /* Where in file lowest line#s are */
149 file_ptr max_lineno_offset; /* 1+last byte of line#s in file */
150 };
151
152
153 static void
154 enter_line_range PARAMS ((struct subfile *, unsigned, unsigned,
155 CORE_ADDR, CORE_ADDR, unsigned *));
156
157 static void
158 aixcoff_symfile_read PARAMS ((struct sym_fns *, CORE_ADDR, int));
159
160 static void
161 free_debugsection PARAMS ((void));
162
163 static int
164 init_debugsection PARAMS ((bfd *));
165
166 static int
167 init_stringtab PARAMS ((bfd *, long, struct objfile *));
168
169 static void
170 aixcoff_symfile_init PARAMS ((struct sym_fns *));
171
172 static void
173 aixcoff_new_init PARAMS ((void));
174
175 static int
176 init_lineno PARAMS ((bfd *, long, int));
177
178 static void
179 find_linenos PARAMS ((bfd *, sec_ptr, PTR));
180
181 static int
182 read_symbol_lineno PARAMS ((char *, int));
183
184 static int
185 read_symbol_nvalue PARAMS ((char *, int));
186
187 static struct symbol *
188 process_xcoff_symbol PARAMS ((struct coff_symbol *, struct objfile *));
189
190 static void
191 read_xcoff_symtab PARAMS ((struct objfile *, int));
192
193 static void
194 add_stab_to_list PARAMS ((char *, struct pending_stabs **));
195
196 static void
197 sort_syms PARAMS ((void));
198
199 static int
200 compare_symbols PARAMS ((const void *, const void *));
201
202 /* Call sort_syms to sort alphabetically
203 the symbols of each block of each symtab. */
204
205 static int
206 compare_symbols (s1p, s2p)
207 const PTR s1p;
208 const PTR s2p;
209 {
210 /* Names that are less should come first. */
211 register struct symbol **s1 = (struct symbol **) s1p;
212 register struct symbol **s2 = (struct symbol **) s2p;
213 register int namediff = strcmp (SYMBOL_NAME (*s1), SYMBOL_NAME (*s2));
214 if (namediff != 0)
215 return namediff;
216
217 /* For symbols of the same name, registers should come first. */
218 return ((SYMBOL_CLASS (*s2) == LOC_REGISTER)
219 - (SYMBOL_CLASS (*s1) == LOC_REGISTER));
220 }
221
222
223 /* Sort a vector of symbols by their value. */
224
225 static void
226 sort_syms ()
227 {
228 register struct symtab *s;
229 register struct objfile *objfile;
230 register int i, nbl;
231 register struct blockvector *bv;
232 register struct block *b;
233
234 for (objfile = object_files; objfile != NULL; objfile = objfile -> next)
235 {
236 for (s = objfile -> symtabs; s != NULL; s = s -> next)
237 {
238 bv = BLOCKVECTOR (s);
239 nbl = BLOCKVECTOR_NBLOCKS (bv);
240 for (i = 0; i < nbl; i++)
241 {
242 b = BLOCKVECTOR_BLOCK (bv, i);
243 if (BLOCK_SHOULD_SORT (b))
244 {
245 qsort (&BLOCK_SYM (b, 0), BLOCK_NSYMS (b),
246 sizeof (struct symbol *), compare_symbols);
247 }
248 }
249 }
250 }
251 }
252
253
254 /* add a given stab string into given stab vector. */
255
256 static void
257 add_stab_to_list (stabname, stabvector)
258 char *stabname;
259 struct pending_stabs **stabvector;
260 {
261 if ( *stabvector == NULL) {
262 *stabvector = (struct pending_stabs *)
263 xmalloc (sizeof (struct pending_stabs) +
264 INITIAL_STABVECTOR_LENGTH * sizeof (char*));
265 (*stabvector)->count = 0;
266 (*stabvector)->length = INITIAL_STABVECTOR_LENGTH;
267 }
268 else if ((*stabvector)->count >= (*stabvector)->length) {
269 (*stabvector)->length += INITIAL_STABVECTOR_LENGTH;
270 *stabvector = (struct pending_stabs *)
271 xrealloc ((char *) *stabvector, sizeof (struct pending_stabs) +
272 (*stabvector)->length * sizeof (char*));
273 }
274 (*stabvector)->stab [(*stabvector)->count++] = stabname;
275 }
276
277
278 #if 0
279 /* for all the stabs in a given stab vector, build appropriate types
280 and fix their symbols in given symbol vector. */
281
282 void
283 patch_block_stabs (symbols, stabs)
284 struct pending *symbols;
285 struct pending_stabs *stabs;
286 {
287 int ii;
288
289 if (!stabs)
290 return;
291
292 /* for all the stab entries, find their corresponding symbols and
293 patch their types! */
294
295 for (ii=0; ii < stabs->count; ++ii) {
296 char *name = stabs->stab[ii];
297 char *pp = (char*) index (name, ':');
298 struct symbol *sym = find_symbol_in_list (symbols, name, pp-name);
299 if (!sym) {
300 ;
301 /* printf ("ERROR! stab symbol not found!\n"); /* FIXME */
302 /* The above is a false alarm. There are cases the we can have
303 a stab, without its symbol. xlc generates this for the extern
304 definitions in inner blocks. */
305 }
306 else {
307 pp += 2;
308
309 if (*(pp-1) == 'F' || *(pp-1) == 'f')
310 SYMBOL_TYPE (sym) = lookup_function_type (read_type (&pp));
311 else
312 SYMBOL_TYPE (sym) = read_type (&pp, objfile);
313 }
314 }
315 }
316 #endif
317
318
319 /* compare line table entry addresses. */
320
321 static int
322 compare_lte (lte1, lte2)
323 struct linetable_entry *lte1, *lte2;
324 {
325 return lte1->pc - lte2->pc;
326 }
327
328 /* Give a line table with function entries are marked, arrange its functions
329 in assending order and strip off function entry markers and return it in
330 a newly created table. If the old one is good enough, return the old one. */
331
332 static struct linetable *
333 arrange_linetable (oldLineTb)
334 struct linetable *oldLineTb; /* old linetable */
335 {
336 int ii, jj,
337 newline, /* new line count */
338 function_count; /* # of functions */
339
340 struct linetable_entry *fentry; /* function entry vector */
341 int fentry_size; /* # of function entries */
342 struct linetable *newLineTb; /* new line table */
343
344 #define NUM_OF_FUNCTIONS 20
345
346 fentry_size = NUM_OF_FUNCTIONS;
347 fentry = (struct linetable_entry*)
348 malloc (fentry_size * sizeof (struct linetable_entry));
349
350 for (function_count=0, ii=0; ii <oldLineTb->nitems; ++ii) {
351
352 if (oldLineTb->item[ii].line == 0) { /* function entry found. */
353
354 if (function_count >= fentry_size) { /* make sure you have room. */
355 fentry_size *= 2;
356 fentry = (struct linetable_entry*)
357 realloc (fentry, fentry_size * sizeof (struct linetable_entry));
358 }
359 fentry[function_count].line = ii;
360 fentry[function_count].pc = oldLineTb->item[ii].pc;
361 ++function_count;
362 }
363 }
364
365 if (function_count == 0) {
366 free (fentry);
367 return oldLineTb;
368 }
369 else if (function_count > 1)
370 qsort (fentry, function_count, sizeof(struct linetable_entry), compare_lte);
371
372 /* allocate a new line table. */
373 newLineTb = (struct linetable*) malloc (sizeof (struct linetable) +
374 (oldLineTb->nitems - function_count) * sizeof (struct linetable_entry));
375
376 /* if line table does not start with a function beginning, copy up until
377 a function begin. */
378
379 newline = 0;
380 if (oldLineTb->item[0].line != 0)
381 for (newline=0;
382 newline < oldLineTb->nitems && oldLineTb->item[newline].line; ++newline)
383 newLineTb->item[newline] = oldLineTb->item[newline];
384
385 /* Now copy function lines one by one. */
386
387 for (ii=0; ii < function_count; ++ii) {
388 for (jj = fentry[ii].line + 1;
389 jj < oldLineTb->nitems && oldLineTb->item[jj].line != 0;
390 ++jj, ++newline)
391 newLineTb->item[newline] = oldLineTb->item[jj];
392 }
393 free (fentry);
394 newLineTb->nitems = oldLineTb->nitems - function_count;
395 return newLineTb;
396 }
397
398
399
400 /* We try to detect the beginning of a compilation unit. That info will
401 be used as an entry in line number recording routines (enter_line_range) */
402
403 static unsigned first_fun_line_offset;
404 static unsigned first_fun_bf;
405
406 #define mark_first_line(OFFSET, SYMNUM) \
407 if (!first_fun_line_offset) { \
408 first_fun_line_offset = OFFSET; \
409 first_fun_bf = SYMNUM; \
410 }
411
412
413 /* include file support: C_BINCL/C_EINCL pairs will be kept in the
414 following `IncludeChain'. At the end of each symtab (end_symtab),
415 we will determine if we should create additional symtab's to
416 represent if (the include files. */
417
418
419 typedef struct _inclTable {
420 char *name; /* include filename */
421 int begin, end; /* offsets to the line table */
422 struct subfile *subfile;
423 unsigned funStartLine; /* start line # of its function */
424 } InclTable;
425
426 #define INITIAL_INCLUDE_TABLE_LENGTH 20
427 static InclTable *inclTable; /* global include table */
428 static int inclIndx; /* last entry to table */
429 static int inclLength; /* table length */
430 static int inclDepth; /* nested include depth */
431
432
433 static void
434 record_include_begin (cs)
435 struct coff_symbol *cs;
436 {
437 /* In aixcoff, we assume include files cannot be nested (not in .c file
438 of course, but in corresponding .s files.) */
439
440 if (inclDepth)
441 fatal ("aix internal: pending include file exists.");
442
443 ++inclDepth;
444
445 /* allocate an include file, or make room for the new entry */
446 if (inclLength == 0) {
447 inclTable = (InclTable*)
448 xmalloc (sizeof (InclTable) * INITIAL_INCLUDE_TABLE_LENGTH);
449 bzero (inclTable, sizeof (InclTable) * INITIAL_INCLUDE_TABLE_LENGTH);
450 inclLength = INITIAL_INCLUDE_TABLE_LENGTH;
451 inclIndx = 0;
452 }
453 else if (inclIndx >= inclLength) {
454 inclLength += INITIAL_INCLUDE_TABLE_LENGTH;
455 inclTable = (InclTable*)
456 xrealloc (inclTable, sizeof (InclTable) * inclLength);
457 bzero (inclTable+inclLength-INITIAL_INCLUDE_TABLE_LENGTH,
458 sizeof (InclTable)*INITIAL_INCLUDE_TABLE_LENGTH);
459 }
460
461 inclTable [inclIndx].name = cs->c_name;
462 inclTable [inclIndx].begin = cs->c_value;
463 }
464
465
466 static void
467 record_include_end (cs)
468 struct coff_symbol *cs;
469 {
470 InclTable *pTbl;
471
472 if (inclDepth == 0)
473 fatal ("aix internal: Mismatch C_BINCL/C_EINCL pair found.");
474
475 pTbl = &inclTable [inclIndx];
476 pTbl->end = cs->c_value;
477
478 --inclDepth;
479 ++inclIndx;
480 }
481
482
483 static void
484 dumpIncludeChain ()
485 {
486 int ii;
487 if (inclTable && inclLength)
488 for (ii=0; ii < inclIndx; ++ii)
489 printf ("name: %s, begin: 0x%x, end: 0x%x\n",
490 inclTable[ii].name, inclTable[ii].begin, inclTable[ii].end);
491 }
492
493
494 /* given the start and end addresses of a compilation unit (or a csect, at times)
495 process its lines and create appropriate line vectors. */
496
497 static void
498 process_linenos (start, end)
499 CORE_ADDR start, end;
500 {
501 char *pp;
502 int offset, ii;
503
504 struct subfile main_subfile; /* subfile structure for the main
505 compilation unit. */
506
507 /* in the main source file, any time we see a function entry, we reset
508 this variable to function's absolute starting line number. All the
509 following line numbers in the function are relative to this, and
510 we record absolute line numbers in record_line(). */
511
512 int main_source_baseline = 0;
513
514
515 unsigned *firstLine;
516 CORE_ADDR addr;
517
518 if (!(offset = first_fun_line_offset))
519 goto return_after_cleanup;
520
521 bzero (&main_subfile, sizeof (main_subfile));
522 first_fun_line_offset = 0;
523
524 if (inclIndx == 0)
525 enter_line_range (&main_subfile, offset, 0, start, end,
526 &main_source_baseline);
527
528 /* else, there was source with line numbers in include files */
529 else {
530
531 main_source_baseline = 0;
532 for (ii=0; ii < inclIndx; ++ii) {
533
534 struct subfile *tmpSubfile;
535
536 /* if there is main file source before include file, enter it. */
537 if (offset < inclTable[ii].begin) {
538 enter_line_range
539 (&main_subfile, offset, inclTable[ii].begin - LINESZ, start, 0,
540 &main_source_baseline);
541 }
542
543 /* Have a new subfile for the include file */
544
545 tmpSubfile = inclTable[ii].subfile = (struct subfile*)
546 xmalloc (sizeof (struct subfile));
547
548 bzero (tmpSubfile, sizeof (struct subfile));
549 firstLine = &(inclTable[ii].funStartLine);
550
551 /* enter include file's lines now. */
552 enter_line_range (tmpSubfile, inclTable[ii].begin,
553 inclTable[ii].end, start, 0, firstLine);
554
555 offset = inclTable[ii].end + LINESZ;
556 }
557
558 /* all the include files' line have been processed at this point. Now,
559 enter remaining lines of the main file, if any left. */
560 if (offset < (linetab_offset + linetab_size + 1 - LINESZ)) {
561 enter_line_range (&main_subfile, offset, 0, start, end,
562 &main_source_baseline);
563 }
564 }
565
566 /* Process main file's line numbers. */
567 if (main_subfile.line_vector) {
568 struct linetable *lineTb, *lv;
569
570 lv = main_subfile.line_vector;
571
572 /* Line numbers are not necessarily ordered. xlc compilation will
573 put static function to the end. */
574
575 lineTb = arrange_linetable (lv);
576 if (lv == lineTb) {
577 current_subfile->line_vector = (struct linetable *)
578 xrealloc (lv, (sizeof (struct linetable)
579 + lv->nitems * sizeof (struct linetable_entry)));
580
581 }
582 else {
583 free (lv);
584 current_subfile->line_vector = lineTb;
585 }
586
587 current_subfile->line_vector_length =
588 current_subfile->line_vector->nitems;
589
590
591 /* Now, process included files' line numbers. */
592
593 for (ii=0; ii < inclIndx; ++ii) {
594
595 if ( (inclTable[ii].subfile)->line_vector) { /* Useless if!!! FIXMEmgo */
596 struct linetable *lineTb, *lv;
597
598 lv = (inclTable[ii].subfile)->line_vector;
599
600 /* Line numbers are not necessarily ordered. xlc compilation will
601 put static function to the end. */
602
603 lineTb = arrange_linetable (lv);
604
605 push_subfile ();
606
607 /* For the same include file, we might want to have more than one subfile.
608 This happens if we have something like:
609
610 ......
611 #include "foo.h"
612 ......
613 #include "foo.h"
614 ......
615
616 while foo.h including code in it. (stupid but possible)
617 Since start_subfile() looks at the name and uses an existing one if finds,
618 we need to provide a fake name and fool it. */
619
620 /* start_subfile (inclTable[ii].name, (char*)0); */
621 start_subfile (" ?", (char*)0);
622 current_subfile->name =
623 obsavestring (inclTable[ii].name, strlen (inclTable[ii].name),
624 &current_objfile->symbol_obstack);
625
626 if (lv == lineTb) {
627 current_subfile->line_vector = (struct linetable *)
628 xrealloc (lv, (sizeof (struct linetable)
629 + lv->nitems * sizeof (struct linetable_entry)));
630
631 }
632 else {
633 free (lv);
634 current_subfile->line_vector = lineTb;
635 }
636
637 current_subfile->line_vector_length =
638 current_subfile->line_vector->nitems;
639 start_subfile (pop_subfile (), (char*)0);
640 }
641 }
642 }
643 else
644 /* I am not sure this logic is correct. There might be no lines in the
645 main file, whereas there are some in included ones. FIXMEibm */
646 current_subfile->line_vector = NULL;
647
648 return_after_cleanup:
649
650 /* We don't want to keep alloc/free'ing the global include file table. */
651 inclIndx = 0;
652
653 /* start with a fresh subfile structure for the next file. */
654 bzero (&main_subfile, sizeof (struct subfile));
655 }
656
657 void
658 aix_process_linenos ()
659 {
660 /* process line numbers and enter them into line vector */
661 process_linenos (last_source_start_addr, cur_src_end_addr);
662 }
663
664
665 /* Enter a given range of lines into the line vector.
666 can be called in the following two ways:
667 enter_line_range (subfile, beginoffset, endoffset, startaddr, 0, firstLine) or
668 enter_line_range (subfile, beginoffset, 0, startaddr, endaddr, firstLine) */
669
670 static void
671 enter_line_range (subfile, beginoffset, endoffset, startaddr, endaddr, firstLine)
672 struct subfile *subfile;
673 unsigned beginoffset, endoffset; /* offsets to line table */
674 CORE_ADDR startaddr, endaddr;
675 unsigned *firstLine;
676 {
677 char *pp, *limit;
678 CORE_ADDR addr;
679
680 /* Do Byte swapping, if needed. FIXME! */
681 #define P_LINENO(PP) (*(unsigned short*)((struct external_lineno*)(PP))->l_lnno)
682 #define P_LINEADDR(PP) (*(long*)((struct external_lineno*)(PP))->l_addr.l_paddr)
683 #define P_LINESYM(PP) (*(long*)((struct external_lineno*)(PP))->l_addr.l_symndx)
684
685 pp = &linetab [beginoffset - linetab_offset];
686 limit = endoffset ? &linetab [endoffset - linetab_offset]
687 : &linetab [linetab_size -1];
688
689 while (pp <= limit) {
690
691 /* find the address this line represents */
692 addr = P_LINENO(pp) ?
693 P_LINEADDR(pp) : read_symbol_nvalue (symtbl, P_LINESYM(pp));
694
695 if (addr < startaddr || (endaddr && addr > endaddr))
696 return;
697
698 if (P_LINENO(pp) == 0) {
699 *firstLine = read_symbol_lineno (symtbl, P_LINESYM(pp));
700 record_line (subfile, 0, addr);
701 --(*firstLine);
702 }
703 else
704 record_line (subfile, *firstLine + P_LINENO(pp), addr);
705
706 pp += LINESZ;
707 }
708 }
709
710 typedef struct {
711 int fsize; /* file size */
712 int fixedparms; /* number of fixed parms */
713 int floatparms; /* number of float parms */
714 unsigned int parminfo; /* parameter info.
715 See /usr/include/sys/debug.h
716 tbtable_ext.parminfo */
717 int framesize; /* function frame size */
718 } TracebackInfo;
719
720
721 /* Given a function symbol, return its traceback information. */
722
723 TracebackInfo *
724 retrieve_tracebackinfo (abfd, textsec, cs)
725 bfd *abfd;
726 sec_ptr textsec;
727 struct coff_symbol *cs;
728 {
729 #define TBTABLE_BUFSIZ 2000
730 #define MIN_TBTABSIZ 50 /* minimum buffer size to hold a
731 traceback table. */
732
733 static TracebackInfo tbInfo;
734 struct tbtable *ptb;
735
736 static char buffer [TBTABLE_BUFSIZ];
737
738 int *pinsn;
739 int bytesread=0; /* total # of bytes read so far */
740 int bufferbytes; /* number of bytes in the buffer */
741
742 int functionstart = cs->c_value - textsec->vma;
743
744 bzero (&tbInfo, sizeof (tbInfo));
745
746 /* keep reading blocks of data from the text section, until finding a zero
747 word and a traceback table. */
748
749 while (bfd_get_section_contents (abfd, textsec, buffer,
750 (file_ptr)(functionstart + bytesread),
751 bufferbytes = (
752 (TBTABLE_BUFSIZ < (textsec->_raw_size - functionstart - bytesread)) ?
753 TBTABLE_BUFSIZ : (textsec->_raw_size - functionstart - bytesread))))
754 {
755 bytesread += bufferbytes;
756 pinsn = (int*) buffer;
757
758 /* if this is the first time we filled the buffer, retrieve function
759 framesize info. */
760
761 if (bytesread == bufferbytes) {
762
763 /* skip over unrelated instructions */
764
765 if (*pinsn == 0x7c0802a6) /* mflr r0 */
766 ++pinsn;
767 if ((*pinsn & 0xfc00003e) == 0x7c000026) /* mfcr Rx */
768 ++pinsn;
769 if ((*pinsn & 0xfc000000) == 0x48000000) /* bl foo, save fprs */
770 ++pinsn;
771 if ((*pinsn & 0xfc1f0000) == 0xbc010000) /* stm Rx, NUM(r1) */
772 ++pinsn;
773
774 do {
775 int tmp = (*pinsn >> 16) & 0xffff;
776
777 if (tmp == 0x9421) { /* stu r1, NUM(r1) */
778 tbInfo.framesize = 0x10000 - (*pinsn & 0xffff);
779 break;
780 }
781 else if ((*pinsn == 0x93e1fffc) || /* st r31,-4(r1) */
782 (tmp == 0x9001)) /* st r0, NUM(r1) */
783 ;
784 /* else, could not find a frame size. */
785 else
786 return NULL;
787
788 } while (++pinsn && *pinsn);
789
790 if (!tbInfo.framesize)
791 return NULL;
792 }
793
794 /* look for a zero word. */
795
796 while (*pinsn && (pinsn < (int*)(buffer + bufferbytes - sizeof(int))))
797 ++pinsn;
798
799 if (pinsn >= (int*)(buffer + bufferbytes))
800 continue;
801
802 if (*pinsn == 0) {
803
804 /* function size is the amount of bytes we have skipped so far. */
805 tbInfo.fsize = bytesread - (buffer + bufferbytes - (char*)pinsn);
806
807 ++pinsn;
808
809 /* if we don't have the whole traceback table in the buffer, re-read
810 the whole thing. */
811
812 if ((char*)pinsn > (buffer + bufferbytes - MIN_TBTABSIZ)) {
813
814 /* In case if we are *very* close to the end of the text section
815 and cannot read properly from that point on, abort by returning
816 NULL.
817 Handle this case more graciously -- FIXME */
818
819 if (!bfd_get_section_contents (
820 abfd, textsec, buffer,
821 (file_ptr)(functionstart +
822 bytesread - (buffer + bufferbytes - (char*)pinsn)),MIN_TBTABSIZ))
823 { printf ("Abnormal return!..\n"); return NULL; }
824
825 ptb = (struct tbtable *)buffer;
826 }
827 else
828 ptb = (struct tbtable *)pinsn;
829
830 tbInfo.fixedparms = ptb->tb.fixedparms;
831 tbInfo.floatparms = ptb->tb.floatparms;
832 tbInfo.parminfo = ptb->tb_ext.parminfo;
833 return &tbInfo;
834 }
835 }
836 return NULL;
837 }
838
839 #if 0
840 /* Given a function symbol, return a pointer to its traceback table. */
841
842 struct tbtable *
843 retrieve_traceback (abfd, textsec, cs, size)
844 bfd *abfd;
845 sec_ptr textsec;
846 struct coff_symbol *cs;
847 int *size; /* return function size */
848 {
849 #define TBTABLE_BUFSIZ 2000
850 #define MIN_TBTABSIZ 50 /* minimum buffer size to hold a
851 traceback table. */
852
853 static char buffer [TBTABLE_BUFSIZ];
854
855 int *pinsn;
856 int bytesread=0; /* total # of bytes read so far */
857 int bufferbytes; /* number of bytes in the buffer */
858
859 int functionstart = cs->c_value - textsec->filepos + textsec->vma;
860 *size = 0;
861
862 /* keep reading blocks of data from the text section, until finding a zero
863 word and a traceback table. */
864
865 while (bfd_get_section_contents (abfd, textsec, buffer,
866 (file_ptr)(functionstart + bytesread),
867 bufferbytes = (
868 (TBTABLE_BUFSIZ < (textsec->size - functionstart - bytesread)) ?
869 TBTABLE_BUFSIZ : (textsec->size - functionstart - bytesread))))
870 {
871 bytesread += bufferbytes;
872 pinsn = (int*) buffer;
873
874 /* look for a zero word. */
875
876 while (*pinsn && (pinsn < (int*)(buffer + bufferbytes - sizeof(int))))
877 ++pinsn;
878
879 if (pinsn >= (int*)(buffer + bufferbytes))
880 continue;
881
882 if (*pinsn == 0) {
883
884 /* function size is the amount of bytes we have skipped so far. */
885 *size = bytesread - (buffer + bufferbytes - pinsn);
886
887 ++pinsn;
888
889 /* if we don't have the whole traceback table in the buffer, re-read
890 the whole thing. */
891
892 if ((char*)pinsn > (buffer + bufferbytes - MIN_TBTABSIZ)) {
893
894 /* In case if we are *very* close to the end of the text section
895 and cannot read properly from that point on, abort for now.
896 Handle this case more graciously -- FIXME */
897
898 if (!bfd_get_section_contents (
899 abfd, textsec, buffer,
900 (file_ptr)(functionstart +
901 bytesread - (buffer + bufferbytes - pinsn)),MIN_TBTABSIZ))
902 /* abort (); */ { printf ("abort!!!\n"); return NULL; }
903
904 return (struct tbtable *)buffer;
905 }
906 else
907 return (struct tbtable *)pinsn;
908 }
909 }
910 return NULL;
911 }
912 #endif /* 0 */
913
914
915
916
917 /* Save the vital information for use when closing off the current file.
918 NAME is the file name the symbols came from, START_ADDR is the first
919 text address for the file, and SIZE is the number of bytes of text. */
920
921 #define complete_symtab(name, start_addr) { \
922 last_source_file = savestring (name, strlen (name)); \
923 last_source_start_addr = start_addr; \
924 }
925
926
927 /* Refill the symbol table input buffer
928 and set the variables that control fetching entries from it.
929 Reports an error if no data available.
930 This function can read past the end of the symbol table
931 (into the string table) but this does no harm. */
932
933 /* Reading symbol table has to be fast! Keep the followings as macros, rather
934 than functions. */
935
936 #define RECORD_MINIMAL_SYMBOL(NAME, ADDR, TYPE, ALLOCED) \
937 { \
938 char *namestr; \
939 if (ALLOCED) \
940 namestr = (NAME) + 1; \
941 else { \
942 namestr = obstack_copy0 (&objfile->symbol_obstack, (NAME) + 1, strlen ((NAME)+1)); \
943 (ALLOCED) = 1; \
944 } \
945 prim_record_minimal_symbol (namestr, (ADDR), (TYPE)); \
946 misc_func_recorded = 1; \
947 }
948
949
950 /* A parameter template, used by ADD_PARM_TO_PENDING. */
951
952 static struct symbol parmsym = { /* default parameter symbol */
953 "", /* name */
954 VAR_NAMESPACE, /* namespace */
955 LOC_ARG, /* class */
956 NULL, /* type */
957 0, /* line number */
958 0, /* value */
959 };
960
961 /* Add a parameter to a given pending symbol list. */
962
963 #define ADD_PARM_TO_PENDING(PARM, VALUE, PTYPE, PENDING_SYMBOLS) \
964 { \
965 PARM = (struct symbol *) \
966 obstack_alloc (&objfile->symbol_obstack, sizeof (struct symbol)); \
967 *(PARM) = parmsym; \
968 SYMBOL_TYPE (PARM) = PTYPE; \
969 SYMBOL_VALUE (PARM) = VALUE; \
970 add_symbol_to_list (PARM, &PENDING_SYMBOLS); \
971 }
972
973
974 /* aixcoff has static blocks marked in `.bs', `.es' pairs. They cannot be
975 nested. At any given time, a symbol can only be in one static block.
976 This is the base address of current static block, zero if non exists. */
977
978 static int static_block_base = 0;
979
980 /* true if space for symbol name has been allocated. */
981
982 static int symname_alloced = 0;
983
984 /* read the whole symbol table of a given bfd. */
985
986 static void
987 read_xcoff_symtab (objfile, nsyms)
988 struct objfile *objfile; /* Object file we're reading from */
989 int nsyms; /* # of symbols */
990 {
991 bfd *abfd = objfile->obfd;
992 char *raw_symbol; /* Pointer into raw seething symbol table */
993 char *raw_auxptr; /* Pointer to first raw aux entry for sym */
994 sec_ptr textsec; /* Pointer to text section */
995 TracebackInfo *ptb; /* Pointer to traceback table */
996
997 struct internal_syment symbol[1];
998 union internal_auxent main_aux[1];
999 struct coff_symbol cs[1];
1000 CORE_ADDR file_start_addr = 0;
1001 CORE_ADDR file_end_addr = 0;
1002
1003 int next_file_symnum = -1;
1004 int just_started = 1;
1005 int depth = 0;
1006 int val;
1007 int fcn_last_line;
1008 int fcn_start_addr;
1009 long fcn_line_offset;
1010 size_t size;
1011
1012 /* fcn_cs_saved is global because process_xcoff_symbol needs it. */
1013 union internal_auxent fcn_aux_saved;
1014 struct type *fcn_type_saved = NULL;
1015 struct context_stack *new;
1016
1017 char *filestring = " _start_ "; /* Name of the current file. */
1018
1019 char *last_csect_name; /* last seen csect's name and value */
1020 CORE_ADDR last_csect_val;
1021 int misc_func_recorded; /* true if any misc. function */
1022
1023 current_objfile = objfile;
1024
1025 /* Get the appropriate COFF "constants" related to the file we're handling. */
1026 N_TMASK = coff_data (abfd)->local_n_tmask;
1027 N_BTSHFT = coff_data (abfd)->local_n_btshft;
1028 local_symesz = coff_data (abfd)->local_symesz;
1029
1030 last_source_file = 0;
1031 last_csect_name = 0;
1032 last_csect_val = 0;
1033 misc_func_recorded = 0;
1034
1035 start_symtab (filestring, (char *)NULL, file_start_addr);
1036 symnum = 0;
1037 first_object_file_end = 0;
1038
1039 /* Allocate space for the entire symbol table at once, and read it
1040 all in. The bfd is already positioned at the beginning of
1041 the symbol table. */
1042
1043 size = coff_data (abfd)->local_symesz * nsyms;
1044 symtbl = xmalloc (size);
1045
1046 val = bfd_read (symtbl, size, 1, abfd);
1047 if (val != size)
1048 perror_with_name ("reading symbol table");
1049
1050 raw_symbol = symtbl;
1051
1052 textsec = bfd_get_section_by_name (abfd, ".text");
1053 if (!textsec) {
1054 printf ("Unable to locate text section!\n");
1055 }
1056
1057 while (symnum < nsyms) {
1058
1059 QUIT; /* make this command interruptable. */
1060
1061 /* READ_ONE_SYMBOL (symbol, cs, symname_alloced); */
1062 /* read one symbol into `cs' structure. After processing the whole symbol
1063 table, only string table will be kept in memory, symbol table and debug
1064 section of aixcoff will be freed. Thus we can mark symbols with names
1065 in string table as `alloced'. */
1066 {
1067 int ii;
1068
1069 /* Swap and align the symbol into a reasonable C structure. */
1070 bfd_coff_swap_sym_in (abfd, raw_symbol, symbol);
1071
1072 cs->c_symnum = symnum;
1073 cs->c_nsyms = symbol->n_numaux;
1074 if (symbol->n_zeroes) {
1075 symname_alloced = 0;
1076 /* We must use the original, unswapped, name here so the name field
1077 pointed to by cs->c_name will persist throughout xcoffread. If
1078 we use the new field, it gets overwritten for each symbol. */
1079 cs->c_name = ((struct external_syment *)raw_symbol)->e.e_name;
1080 } else if (symbol->n_sclass & 0x80) {
1081 cs->c_name = debugsec + symbol->n_offset;
1082 symname_alloced = 0;
1083 } else { /* in string table */
1084 cs->c_name = strtbl + (int)symbol->n_offset;
1085 symname_alloced = 1;
1086 }
1087 cs->c_value = symbol->n_value;
1088 cs->c_sclass = symbol->n_sclass & 0xff;
1089 cs->c_secnum = symbol->n_scnum;
1090 cs->c_type = (unsigned)symbol->n_type;
1091
1092 raw_symbol += coff_data (abfd)->local_symesz;
1093 ++symnum;
1094
1095 raw_auxptr = raw_symbol; /* Save addr of first aux entry */
1096
1097 /* Skip all the auxents associated with this symbol. */
1098 for (ii = symbol->n_numaux; ii; --ii ) {
1099 raw_symbol += coff_data (abfd)->local_auxesz;
1100 ++symnum;
1101 }
1102 }
1103
1104 /* if symbol name starts with ".$" or "$", ignore it. */
1105 if (cs->c_name[0] == '$' || (cs->c_name[1] == '$' && cs->c_name[0] == '.'))
1106 continue;
1107
1108 if (cs->c_symnum == next_file_symnum && cs->c_sclass != C_FILE) {
1109 if (last_source_file)
1110 end_symtab (cur_src_end_addr, 1, 0, objfile);
1111
1112 start_symtab ("_globals_", (char *)NULL, (CORE_ADDR)0);
1113 cur_src_end_addr = first_object_file_end;
1114 /* done with all files, everything from here on is globals */
1115 }
1116
1117 /* if explicitly specified as a function, treat is as one. */
1118 if (ISFCN(cs->c_type) && cs->c_sclass != C_TPDEF) {
1119 bfd_coff_swap_aux_in (abfd, raw_auxptr, cs->c_type, cs->c_sclass,
1120 main_aux);
1121 goto function_entry_point;
1122 }
1123
1124 if ((cs->c_sclass == C_EXT || cs->c_sclass == C_HIDEXT) && cs->c_nsyms == 1)
1125 {
1126 /* dealing with a symbol with a csect entry. */
1127
1128 # define CSECT(PP) ((PP)->x_csect)
1129 # define CSECT_LEN(PP) (CSECT(PP).x_scnlen)
1130 # define CSECT_ALIGN(PP) (SMTYP_ALIGN(CSECT(PP).x_smtyp))
1131 # define CSECT_SMTYP(PP) (SMTYP_SMTYP(CSECT(PP).x_smtyp))
1132 # define CSECT_SCLAS(PP) (CSECT(PP).x_smclas)
1133
1134 /* Convert the auxent to something we can access. */
1135 bfd_coff_swap_aux_in (abfd, raw_auxptr, cs->c_type, cs->c_sclass,
1136 main_aux);
1137
1138 switch (CSECT_SMTYP (main_aux)) {
1139
1140 case XTY_ER :
1141 continue; /* ignore all external references. */
1142
1143 case XTY_SD : /* a section description. */
1144 {
1145 switch (CSECT_SCLAS (main_aux)) {
1146
1147 case XMC_PR : /* a `.text' csect. */
1148 {
1149
1150 /* A program csect is seen.
1151
1152 We have to allocate one symbol table for each program csect. Normally
1153 gdb prefers one symtab for each compilation unit (CU). In case of AIX, one
1154 CU might include more than one prog csect, and they don't have to be
1155 adjacent in terms of the space they occupy in memory. Thus, one single
1156 CU might get fragmented in the memory and gdb's file start and end address
1157 approach does not work! */
1158
1159 if (last_csect_name) {
1160
1161 /* if no misc. function recorded in the last seen csect, enter
1162 it as a function. This will take care of functions like
1163 strcmp() compiled by xlc. */
1164
1165 if (!misc_func_recorded) {
1166 int alloced = 0;
1167 RECORD_MINIMAL_SYMBOL (last_csect_name, last_csect_val,
1168 mst_text, alloced);
1169 }
1170
1171
1172 complete_symtab (filestring, file_start_addr);
1173 cur_src_end_addr = file_end_addr;
1174 end_symtab (file_end_addr, 1, 0, objfile);
1175 start_symtab ((char *)NULL, (char *)NULL, (CORE_ADDR)0);
1176 }
1177
1178 /* If this is the very first csect seen, basically `__start'. */
1179 if (just_started) {
1180 first_object_file_end = cs->c_value + CSECT_LEN (main_aux);
1181 just_started = 0;
1182 }
1183
1184 file_start_addr = cs->c_value;
1185 file_end_addr = cs->c_value + CSECT_LEN (main_aux);
1186
1187 if (cs->c_name && cs->c_name[0] == '.') {
1188 last_csect_name = cs->c_name;
1189 last_csect_val = cs->c_value;
1190 }
1191 }
1192 misc_func_recorded = 0;
1193 continue;
1194
1195 case XMC_RW :
1196 break;
1197
1198 /* If the section is not a data description, ignore it. Note that
1199 uninitialized data will show up as XTY_CM/XMC_RW pair. */
1200
1201 case XMC_TC0:
1202 #ifdef XCOFF_ADD_TOC_TO_LOADINFO
1203 XCOFF_ADD_TOC_TO_LOADINFO (cs->c_value);
1204 #endif
1205 /* fall down to default case. */
1206
1207 case XMC_TC : /* ignore toc entries */
1208 default : /* any other XMC_XXX */
1209 continue;
1210 }
1211 }
1212 break; /* switch CSECT_SCLAS() */
1213
1214 case XTY_LD :
1215
1216 /* a function entry point. */
1217 if (CSECT_SCLAS (main_aux) == XMC_PR) {
1218
1219 function_entry_point:
1220 RECORD_MINIMAL_SYMBOL (cs->c_name, cs->c_value, mst_text,
1221 symname_alloced);
1222
1223 fcn_line_offset = main_aux->x_sym.x_fcnary.x_fcn.x_lnnoptr;
1224 fcn_start_addr = cs->c_value;
1225
1226 /* save the function header info, which will be used
1227 when `.bf' is seen. */
1228 fcn_cs_saved = *cs;
1229 fcn_aux_saved = *main_aux;
1230
1231
1232 ptb = NULL;
1233
1234 /* If function has two auxent, then debugging information is
1235 already available for it. Process traceback table for
1236 functions with only one auxent. */
1237
1238 if (cs->c_nsyms == 1)
1239 ptb = retrieve_tracebackinfo (abfd, textsec, cs);
1240
1241 else if (cs->c_nsyms != 2)
1242 abort ();
1243
1244 /* If there is traceback info, create and add parameters for it. */
1245
1246 if (ptb && (ptb->fixedparms || ptb->floatparms)) {
1247
1248 int parmcnt = ptb->fixedparms + ptb->floatparms;
1249 char *parmcode = (char*) &ptb->parminfo;
1250 int parmvalue = ptb->framesize + 0x18; /* sizeof(LINK AREA) == 0x18 */
1251 unsigned int ii, mask;
1252
1253 for (ii=0, mask = 0x80000000; ii <parmcnt; ++ii) {
1254 struct symbol *parm;
1255
1256 if (ptb->parminfo & mask) { /* float or double */
1257 mask = mask >> 1;
1258 if (ptb->parminfo & mask) { /* double parm */
1259 ADD_PARM_TO_PENDING
1260 (parm, parmvalue, builtin_type_double, local_symbols);
1261 parmvalue += sizeof (double);
1262 }
1263 else { /* float parm */
1264 ADD_PARM_TO_PENDING
1265 (parm, parmvalue, builtin_type_float, local_symbols);
1266 parmvalue += sizeof (float);
1267 }
1268 }
1269 else { /* fixed parm */
1270 ADD_PARM_TO_PENDING
1271 (parm, parmvalue, builtin_type_int, local_symbols);
1272 parmvalue += sizeof (int);
1273 }
1274 mask = mask >> 1;
1275 }
1276
1277 /* Fake this as a function. Needed in process_xcoff_symbol() */
1278 cs->c_type = 32;
1279
1280 finish_block(process_xcoff_symbol (cs, objfile), &local_symbols,
1281 pending_blocks, cs->c_value,
1282 cs->c_value + ptb->fsize, objfile);
1283 }
1284 continue;
1285 }
1286 /* shared library function trampoline code entry point. */
1287 else if (CSECT_SCLAS (main_aux) == XMC_GL) {
1288 RECORD_MINIMAL_SYMBOL (cs->c_name, cs->c_value, mst_text,
1289 symname_alloced);
1290 continue;
1291 }
1292 break;
1293
1294 default : /* all other XTY_XXXs */
1295 break;
1296 } /* switch CSECT_SMTYP() */ }
1297
1298 switch (cs->c_sclass) {
1299
1300 case C_FILE:
1301
1302 /* see if the last csect needs to be recorded. */
1303
1304 if (last_csect_name && !misc_func_recorded) {
1305
1306 /* if no misc. function recorded in the last seen csect, enter
1307 it as a function. This will take care of functions like
1308 strcmp() compiled by xlc. */
1309
1310 int alloced = 0;
1311 RECORD_MINIMAL_SYMBOL (last_csect_name, last_csect_val,
1312 mst_text, alloced);
1313 }
1314
1315 /* c_value field contains symnum of next .file entry in table
1316 or symnum of first global after last .file. */
1317
1318 next_file_symnum = cs->c_value;
1319
1320 /* complete symbol table for last object file containing
1321 debugging information. */
1322
1323 /* Whether or not there was a csect in the previous file, we have
1324 to call `end_symtab' and `start_symtab' to reset type_vector,
1325 line_vector, etc. structures. */
1326
1327 complete_symtab (filestring, file_start_addr);
1328 cur_src_end_addr = file_end_addr;
1329 end_symtab (file_end_addr, 1, 0, objfile);
1330 start_symtab (cs->c_name, (char *)NULL, (CORE_ADDR)0);
1331 last_csect_name = 0;
1332
1333 /* reset file start and end addresses. A compilation unit with no text
1334 (only data) should have zero file boundaries. */
1335 file_start_addr = file_end_addr = 0;
1336
1337 filestring = cs->c_name;
1338 break;
1339
1340
1341 case C_FUN:
1342
1343 /* For a function stab, just save its type in `fcn_type_saved', and leave
1344 it for the `.bf' processing. */
1345 {
1346 char *pp = (char*) index (cs->c_name, ':');
1347
1348 if (!pp || ( *(pp+1) != 'F' && *(pp+1) != 'f'))
1349 fatal ("Unrecognized stab");
1350 pp += 2;
1351
1352 if (fcn_type_saved)
1353 fatal ("Unprocessed function type");
1354
1355 fcn_type_saved = lookup_function_type (read_type (&pp, objfile));
1356 }
1357 break;
1358
1359
1360 case C_FCN:
1361 if (strcmp (cs->c_name, ".bf") == 0) {
1362
1363 bfd_coff_swap_aux_in (abfd, raw_auxptr, cs->c_type, cs->c_sclass,
1364 main_aux);
1365
1366 within_function = 1;
1367
1368 /* Linenos are now processed on a file-by-file, not fn-by-fn, basis.
1369 Metin did it, I'm not sure why. FIXME. -- gnu@cygnus.com */
1370
1371 /* Two reasons:
1372
1373 1) xlc (IBM's native c compiler) postpones static function code
1374 emission to the end of a compilation unit. This way it can
1375 determine if those functions (statics) are needed or not, and
1376 can do some garbage collection (I think). This makes line
1377 numbers and corresponding addresses unordered, and we end up
1378 with a line table like:
1379
1380
1381 lineno addr
1382 foo() 10 0x100
1383 20 0x200
1384 30 0x300
1385
1386 foo3() 70 0x400
1387 80 0x500
1388 90 0x600
1389
1390 static foo2()
1391 40 0x700
1392 50 0x800
1393 60 0x900
1394
1395 and that breaks gdb's binary search on line numbers, if the
1396 above table is not sorted on line numbers. And that sort
1397 should be on function based, since gcc can emit line numbers
1398 like:
1399
1400 10 0x100 - for the init/test part of a for stmt.
1401 20 0x200
1402 30 0x300
1403 10 0x400 - for the increment part of a for stmt.
1404
1405 arrange_linenos() will do this sorting.
1406
1407
1408 2) aix symbol table might look like:
1409
1410 c_file // beginning of a new file
1411 .bi // beginning of include file
1412 .ei // end of include file
1413 .bi
1414 .ei
1415
1416 basically, .bi/.ei pairs do not necessarily encapsulate
1417 their scope. They need to be recorded, and processed later
1418 on when we come the end of the compilation unit.
1419 Include table (inclTable) and process_linenos() handle
1420 that.
1421 */
1422 mark_first_line (fcn_line_offset, cs->c_symnum);
1423
1424 new = push_context (0, fcn_start_addr);
1425 new->name = process_xcoff_symbol (&fcn_cs_saved, objfile);
1426
1427 /* Between a function symbol and `.bf', there always will be a function
1428 stab. We save function type when processing that stab. */
1429
1430 if (fcn_type_saved == NULL)
1431 fatal ("Unknown function type");
1432
1433 SYMBOL_TYPE (new->name) = fcn_type_saved;
1434 fcn_type_saved = NULL;
1435 }
1436 else if (strcmp (cs->c_name, ".ef") == 0) {
1437
1438 bfd_coff_swap_aux_in (abfd, raw_auxptr, cs->c_type, cs->c_sclass,
1439 main_aux);
1440
1441 /* the value of .ef is the address of epilogue code;
1442 not useful for gdb */
1443 /* { main_aux.x_sym.x_misc.x_lnsz.x_lnno
1444 contains number of lines to '}' */
1445
1446 fcn_last_line = main_aux->x_sym.x_misc.x_lnsz.x_lnno;
1447 new = pop_context ();
1448 if (context_stack_depth != 0)
1449 error ("invalid symbol data; .bf/.ef/.bb/.eb symbol mismatch, at symbol %d.",
1450 symnum);
1451
1452 finish_block (new->name, &local_symbols, new->old_blocks,
1453 new->start_addr,
1454 fcn_cs_saved.c_value +
1455 fcn_aux_saved.x_sym.x_misc.x_fsize, objfile);
1456 within_function = 0;
1457 }
1458 break;
1459
1460 case C_BSTAT : /* begin static block */
1461 static_block_base = read_symbol_nvalue (symtbl, cs->c_value);
1462 break;
1463
1464 case C_ESTAT : /* end of static block */
1465 static_block_base = 0;
1466 break;
1467
1468 case C_ARG : /* These are not implemented. */
1469 case C_REGPARM :
1470 case C_TPDEF :
1471 case C_STRTAG :
1472 case C_UNTAG :
1473 case C_ENTAG :
1474 printf ("ERROR: Unimplemented storage class: %d.\n", cs->c_sclass);
1475 break;
1476
1477 case C_HIDEXT : /* ignore these.. */
1478 case C_LABEL :
1479 case C_NULL :
1480 break;
1481
1482 case C_BINCL : /* beginning of include file */
1483
1484 /* In xlc output, C_BINCL/C_EINCL pair doesn't show up in sorted
1485 order. Thus, when wee see them, we might not know enough info
1486 to process them. Thus, we'll be saving them into a table
1487 (inclTable) and postpone their processing. */
1488
1489 record_include_begin (cs);
1490 break;
1491
1492 case C_EINCL : /* end of include file */
1493 /* see the comment after case C_BINCL. */
1494 record_include_end (cs);
1495 break;
1496
1497 case C_BLOCK :
1498 if (strcmp (cs->c_name, ".bb") == 0) {
1499 depth++;
1500 new = push_context (depth, cs->c_value);
1501 }
1502 else if (strcmp (cs->c_name, ".eb") == 0) {
1503 new = pop_context ();
1504 if (depth != new->depth)
1505 error ("Invalid symbol data: .bb/.eb symbol mismatch at symbol %d.",
1506 symnum);
1507
1508 depth--;
1509 if (local_symbols && context_stack_depth > 0) {
1510 /* Make a block for the local symbols within. */
1511 finish_block (new->name, &local_symbols, new->old_blocks,
1512 new->start_addr, cs->c_value, objfile);
1513 }
1514 local_symbols = new->locals;
1515 }
1516 break;
1517
1518 default :
1519 (void) process_xcoff_symbol (cs, objfile);
1520 break;
1521 }
1522
1523 } /* while */
1524
1525 if (last_source_file)
1526 end_symtab (cur_src_end_addr, 1, 0, objfile);
1527
1528 free (symtbl);
1529 current_objfile = NULL;
1530 }
1531
1532 #define SYMBOL_DUP(SYMBOL1, SYMBOL2) \
1533 (SYMBOL2) = (struct symbol *) \
1534 obstack_alloc (&objfile->symbol_obstack, sizeof (struct symbol)); \
1535 *(SYMBOL2) = *(SYMBOL1);
1536
1537
1538 #define SYMNAME_ALLOC(NAME, ALLOCED) \
1539 (ALLOCED) ? (NAME) : obstack_copy0 (&objfile->symbol_obstack, (NAME), strlen (NAME));
1540
1541
1542 /* process one xcoff symbol. */
1543
1544 static struct symbol *
1545 process_xcoff_symbol (cs, objfile)
1546 register struct coff_symbol *cs;
1547 struct objfile *objfile;
1548 {
1549 struct symbol onesymbol;
1550 register struct symbol *sym = &onesymbol;
1551 struct symbol *sym2 = NULL;
1552 struct type *ttype;
1553 char *name, *pp, *qq;
1554 int struct_and_type_combined;
1555
1556 name = cs->c_name;
1557 if (name[0] == '.')
1558 ++name;
1559
1560 bzero (sym, sizeof (struct symbol));
1561
1562 /* default assumptions */
1563 SYMBOL_VALUE (sym) = cs->c_value;
1564 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
1565
1566 if (ISFCN (cs->c_type)) {
1567
1568 /* At this point, we don't know the type of the function and assume it
1569 is int. This will be patched with the type from its stab entry later
1570 on in patch_block_stabs () */
1571
1572 SYMBOL_NAME (sym) = SYMNAME_ALLOC (name, symname_alloced);
1573 SYMBOL_TYPE (sym) = lookup_function_type (lookup_fundamental_type (objfile, FT_INTEGER));
1574
1575 SYMBOL_CLASS (sym) = LOC_BLOCK;
1576 SYMBOL_DUP (sym, sym2);
1577
1578 if (cs->c_sclass == C_EXT)
1579 add_symbol_to_list (sym2, &global_symbols);
1580 else if (cs->c_sclass == C_HIDEXT || cs->c_sclass == C_STAT)
1581 add_symbol_to_list (sym2, &file_symbols);
1582 }
1583
1584 else {
1585
1586 /* in case we can't figure out the type, default is `int'. */
1587 SYMBOL_TYPE (sym) = lookup_fundamental_type (objfile, FT_INTEGER);
1588
1589 switch (cs->c_sclass)
1590 {
1591 #if 0
1592 case C_FUN:
1593 if (fcn_cs_saved.c_sclass == C_EXT)
1594 add_stab_to_list (name, &global_stabs);
1595 else
1596 add_stab_to_list (name, &file_stabs);
1597 break;
1598 #endif
1599
1600 case C_DECL: /* a type decleration?? */
1601 qq = (char*) strchr (name, ':');
1602 if (!qq) /* skip if there is no ':' */
1603 return NULL;
1604
1605 struct_and_type_combined = (qq[1] == 'T' && qq[2] == 't');
1606 pp = qq + (struct_and_type_combined ? 3 : 2);
1607 ttype = SYMBOL_TYPE (sym) = read_type (&pp, objfile);
1608
1609 /* read_type() will return null if type (or tag) definition was
1610 unnnecessarily duplicated. Also, if the symbol doesn't have a name,
1611 there is no need to keep it in symbol table. */
1612
1613 if (!ttype || name == qq)
1614 return NULL;
1615
1616 if (qq[1] == 'T')
1617 SYMBOL_NAMESPACE (sym) = STRUCT_NAMESPACE;
1618 else if (qq[1] == 't')
1619 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
1620 else {
1621 printf ("ERROR: Unrecognized stab string.\n");
1622 return NULL;
1623 }
1624
1625 SYMBOL_CLASS (sym) = LOC_TYPEDEF;
1626 SYMBOL_NAME (sym) = obsavestring (name, qq-name, &objfile->symbol_obstack);
1627
1628 if (struct_and_type_combined)
1629 TYPE_NAME (ttype) = SYMBOL_NAME (sym);
1630
1631 else if (SYMBOL_NAMESPACE (sym) == STRUCT_NAMESPACE)
1632 TYPE_NAME (ttype) = concat (
1633 TYPE_CODE (ttype) == TYPE_CODE_UNION ? "union " :
1634 TYPE_CODE (ttype) == TYPE_CODE_STRUCT? "struct " : "enum ",
1635 SYMBOL_NAME (sym), NULL);
1636
1637 SYMBOL_DUP (sym, sym2);
1638 add_symbol_to_list
1639 (sym2, within_function ? &local_symbols : &file_symbols);
1640
1641 /* For a combination of struct and type, add one more symbol for the type. */
1642 if (struct_and_type_combined) {
1643 SYMBOL_DUP (sym, sym2);
1644 SYMBOL_NAMESPACE (sym2) = VAR_NAMESPACE;
1645 add_symbol_to_list
1646 (sym2, within_function ? &local_symbols : &file_symbols);
1647 }
1648 break;
1649
1650 case C_GSYM:
1651 add_stab_to_list (name, &global_stabs);
1652 break;
1653
1654 case C_PSYM:
1655 case C_RPSYM:
1656 if (*name == ':' || (pp = (char *) strchr (name, ':')) == NULL)
1657 return NULL;
1658 SYMBOL_NAME (sym) = obsavestring (name, pp-name, &objfile -> symbol_obstack);
1659 SYMBOL_CLASS (sym) = (cs->c_sclass == C_PSYM) ? LOC_ARG : LOC_REGPARM;
1660 pp += 2;
1661 SYMBOL_TYPE (sym) = read_type (&pp, objfile);
1662 SYMBOL_DUP (sym, sym2);
1663 add_symbol_to_list (sym2, &local_symbols);
1664 break;
1665
1666 case C_STSYM:
1667 if (*name == ':' || (pp = (char *) strchr (name, ':')) == NULL)
1668 return NULL;
1669 SYMBOL_NAME (sym) = obsavestring (name, pp-name, &objfile -> symbol_obstack);
1670 SYMBOL_CLASS (sym) = LOC_STATIC;
1671 SYMBOL_VALUE (sym) += static_block_base;
1672 pp += 2;
1673 SYMBOL_TYPE (sym) = read_type (&pp, objfile);
1674 SYMBOL_DUP (sym, sym2);
1675 add_symbol_to_list
1676 (sym2, within_function ? &local_symbols : &file_symbols);
1677 break;
1678
1679 case C_LSYM:
1680 if (*name == ':' || (pp = (char *) strchr (name, ':')) == NULL)
1681 return NULL;
1682 SYMBOL_NAME (sym) = obsavestring (name, pp-name, &objfile -> symbol_obstack);
1683 SYMBOL_CLASS (sym) = LOC_LOCAL;
1684 pp += 1;
1685 SYMBOL_TYPE (sym) = read_type (&pp, objfile);
1686 SYMBOL_DUP (sym, sym2);
1687 add_symbol_to_list (sym2, &local_symbols);
1688 break;
1689
1690 case C_AUTO:
1691 SYMBOL_CLASS (sym) = LOC_LOCAL;
1692 SYMBOL_NAME (sym) = SYMNAME_ALLOC (name, symname_alloced);
1693 SYMBOL_DUP (sym, sym2);
1694 add_symbol_to_list (sym2, &local_symbols);
1695 break;
1696
1697 case C_EXT:
1698 SYMBOL_CLASS (sym) = LOC_STATIC;
1699 SYMBOL_NAME (sym) = SYMNAME_ALLOC (name, symname_alloced);
1700 SYMBOL_DUP (sym, sym2);
1701 add_symbol_to_list (sym2, &global_symbols);
1702 break;
1703
1704 case C_STAT:
1705 SYMBOL_CLASS (sym) = LOC_STATIC;
1706 SYMBOL_NAME (sym) = SYMNAME_ALLOC (name, symname_alloced);
1707 SYMBOL_DUP (sym, sym2);
1708 add_symbol_to_list
1709 (sym2, within_function ? &local_symbols : &file_symbols);
1710 break;
1711
1712 case C_REG:
1713 printf ("ERROR! C_REG is not fully implemented!\n");
1714 SYMBOL_CLASS (sym) = LOC_REGISTER;
1715 SYMBOL_NAME (sym) = SYMNAME_ALLOC (name, symname_alloced);
1716 SYMBOL_DUP (sym, sym2);
1717 add_symbol_to_list (sym2, &local_symbols);
1718 break;
1719
1720 case C_RSYM:
1721 pp = (char*) strchr (name, ':');
1722 SYMBOL_CLASS (sym) = LOC_REGISTER;
1723 SYMBOL_VALUE (sym) = STAB_REG_TO_REGNUM (cs->c_value);
1724 if (pp) {
1725 SYMBOL_NAME (sym) = obsavestring (name, pp-name, &objfile -> symbol_obstack);
1726 pp += 2;
1727 if (*pp)
1728 SYMBOL_TYPE (sym) = read_type (&pp, objfile);
1729 }
1730 else
1731 /* else this is not a stab entry, suppose the type is either
1732 `int' or `float', depending on the register class. */
1733
1734 SYMBOL_TYPE (sym) = (SYMBOL_VALUE (sym) < 32)
1735 ? lookup_fundamental_type (objfile, FT_INTEGER)
1736 : lookup_fundamental_type (objfile, FT_FLOAT);
1737
1738 SYMBOL_DUP (sym, sym2);
1739 add_symbol_to_list (sym2, &local_symbols);
1740 break;
1741
1742 default :
1743 printf ("ERROR: Unexpected storage class: %d.\n", cs->c_sclass);
1744 return NULL;
1745 }
1746 }
1747 return sym2;
1748 }
1749
1750
1751 static int
1752 read_symbol_nvalue (symtable, symno)
1753 char *symtable;
1754 int symno;
1755 {
1756 struct internal_syment symbol[1];
1757
1758 bfd_coff_swap_sym_in (symfile_bfd, symtable + (symno*local_symesz), symbol);
1759 return symbol->n_value;
1760 }
1761
1762
1763 static int
1764 read_symbol_lineno (symtable, symno)
1765 char *symtable;
1766 int symno;
1767 {
1768 struct internal_syment symbol[1];
1769 union internal_auxent main_aux[1];
1770
1771 int ii;
1772
1773 for (ii = 0; ii < 50; ii++) {
1774 bfd_coff_swap_sym_in (symfile_bfd,
1775 symtable + (symno*local_symesz), symbol);
1776 if (symbol->n_sclass == C_FCN && 0 == strcmp (symbol->n_name, ".bf"))
1777 goto gotit;
1778 symno += symbol->n_numaux+1;
1779 }
1780
1781 printf ("GDB Error: `.bf' not found.\n");
1782 return 0;
1783
1784 gotit:
1785 /* take aux entry and return its lineno */
1786 symno++;
1787 bfd_coff_swap_aux_in (symfile_bfd, symtable+(symno*local_symesz),
1788 symbol->n_type, symbol->n_sclass, main_aux);
1789
1790 return main_aux->x_sym.x_misc.x_lnsz.x_lnno;
1791 }
1792
1793 /* Support for line number handling */
1794
1795 /* This function is called for every section; it finds the outer limits
1796 * of the line table (minimum and maximum file offset) so that the
1797 * mainline code can read the whole thing for efficiency.
1798 */
1799 static void
1800 find_linenos(abfd, asect, vpinfo)
1801 bfd *abfd;
1802 sec_ptr asect;
1803 PTR vpinfo;
1804 {
1805 struct coff_symfile_info *info;
1806 int size, count;
1807 file_ptr offset, maxoff;
1808
1809 count = asect->lineno_count;
1810
1811 if (strcmp (asect->name, ".text") || count == 0)
1812 return;
1813
1814 size = count * coff_data (symfile_bfd)->local_linesz;
1815 info = (struct coff_symfile_info *)vpinfo;
1816 offset = asect->line_filepos;
1817 maxoff = offset + size;
1818
1819 if (offset < info->min_lineno_offset || info->min_lineno_offset == 0)
1820 info->min_lineno_offset = offset;
1821
1822 if (maxoff > info->max_lineno_offset)
1823 info->max_lineno_offset = maxoff;
1824 }
1825
1826
1827 /* Read in all the line numbers for fast lookups later. Leave them in
1828 external (unswapped) format in memory; we'll swap them as we enter
1829 them into GDB's data structures. */
1830
1831 static int
1832 init_lineno (abfd, offset, size)
1833 bfd *abfd;
1834 long offset;
1835 int size;
1836 {
1837 int val;
1838
1839 if (bfd_seek(abfd, offset, 0) < 0)
1840 return -1;
1841
1842 linetab = (char *) xmalloc(size);
1843
1844 val = bfd_read(linetab, 1, size, abfd);
1845 if (val != size)
1846 return -1;
1847
1848 linetab_offset = offset;
1849 linetab_size = size;
1850 make_cleanup (free, linetab); /* Be sure it gets de-allocated. */
1851 return 0;
1852 }
1853 \f
1854 /* dbx allows the text of a symbol name to be continued into the
1855 next symbol name! When such a continuation is encountered
1856 (a \ at the end of the text of a name)
1857 call this function to get the continuation. */
1858 /* So far, I haven't seen this happenning xlc output. I doubt we'll need this
1859 for aixcoff. */
1860
1861 #undef next_symbol_text
1862 #define next_symbol_text() \
1863 printf ("Gdb Error: symbol names on multiple lines not implemented.\n")
1864
1865
1866 /* xlc/dbx combination uses a set of builtin types, starting from -1. return
1867 the proper type node fora given builtin type #. */
1868
1869 struct type *
1870 builtin_type (pp)
1871 char **pp;
1872 {
1873 int typenums[2];
1874
1875 if (**pp != '-') {
1876 printf ("ERROR!, unknown built-in type!\n");
1877 return NULL;
1878 }
1879 *pp += 1;
1880 read_type_number (pp, typenums);
1881
1882 /* default types are defined in dbxstclass.h. */
1883 switch ( typenums[1] ) {
1884 case 1:
1885 return lookup_fundamental_type (current_objfile, FT_INTEGER);
1886 case 2:
1887 return lookup_fundamental_type (current_objfile, FT_CHAR);
1888 case 3:
1889 return lookup_fundamental_type (current_objfile, FT_SHORT);
1890 case 4:
1891 return lookup_fundamental_type (current_objfile, FT_LONG);
1892 case 5:
1893 return lookup_fundamental_type (current_objfile, FT_UNSIGNED_CHAR);
1894 case 6:
1895 return lookup_fundamental_type (current_objfile, FT_SIGNED_CHAR);
1896 case 7:
1897 return lookup_fundamental_type (current_objfile, FT_UNSIGNED_SHORT);
1898 case 8:
1899 return lookup_fundamental_type (current_objfile, FT_UNSIGNED_INTEGER);
1900 case 9:
1901 return lookup_fundamental_type (current_objfile, FT_UNSIGNED_INTEGER);
1902 case 10:
1903 return lookup_fundamental_type (current_objfile, FT_UNSIGNED_LONG);
1904 case 11:
1905 return lookup_fundamental_type (current_objfile, FT_VOID);
1906 case 12:
1907 return lookup_fundamental_type (current_objfile, FT_FLOAT);
1908 case 13:
1909 return lookup_fundamental_type (current_objfile, FT_DBL_PREC_FLOAT);
1910 case 14:
1911 return lookup_fundamental_type (current_objfile, FT_EXT_PREC_FLOAT);
1912 case 15:
1913 /* requires a builtin `integer' */
1914 return lookup_fundamental_type (current_objfile, FT_INTEGER);
1915 case 16:
1916 return lookup_fundamental_type (current_objfile, FT_BOOLEAN);
1917 case 17:
1918 /* requires builtin `short real' */
1919 return lookup_fundamental_type (current_objfile, FT_FLOAT);
1920 case 18:
1921 /* requires builtin `real' */
1922 return lookup_fundamental_type (current_objfile, FT_FLOAT);
1923 default :
1924 printf ("ERROR! Unknown builtin type -%d\n", typenums[1]);
1925 return NULL;
1926 }
1927 }
1928
1929 #if 0 /* Seems to be unused, don't bother converting from old misc function
1930 vector usage to new minimal symbol tables. FIXME: Delete this? */
1931
1932 /* if we now nothing about a function but its address, make a function symbol
1933 out of it with the limited knowladge you have. This will be used when
1934 somebody refers to a function, which doesn't exist in the symbol table,
1935 but is in the minimal symbol table. */
1936
1937 struct symbol *
1938 build_function_symbol (ind, objfile)
1939 int ind;
1940 struct objfile *objfile;
1941 {
1942 struct symbol *sym =
1943 (struct symbol *) obstack_alloc (&objfile->symbol_obstack, sizeof (struct symbol));
1944 SYMBOL_NAME (sym) = misc_function_vector[ind].name;
1945 /* SYMBOL_VALUE (sym) = misc_function_vector[ind].address; */
1946 SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
1947 SYMBOL_CLASS (sym) = LOC_BLOCK;
1948 SYMBOL_TYPE (sym) = lookup_function_type (lookup_fundamental_type (current_objfile, FT_INTEGER));
1949 SYMBOL_BLOCK_VALUE (sym) = (struct block *)
1950 obstack_alloc (&objfile->symbol_obstack, sizeof (struct block));
1951 BLOCK_START (SYMBOL_BLOCK_VALUE (sym)) = misc_function_vector[ind].address;
1952 return sym;
1953 }
1954
1955 #endif
1956
1957 static void
1958 aixcoff_new_init ()
1959 {
1960 /* This routine is executed once per executable. We should start with a
1961 fresh include table per executable. */
1962
1963 if (inclTable) {
1964 free (inclTable);
1965 inclTable = NULL;
1966 }
1967 inclIndx = inclLength = inclDepth = NULL;
1968 }
1969
1970 static void
1971 aixcoff_symfile_init (sf)
1972 struct sym_fns *sf;
1973 {
1974 bfd *abfd = sf->sym_bfd;
1975
1976 /* Allocate struct to keep track of the symfile */
1977 /* FIXME memory leak */
1978 sf->sym_private = xmalloc(sizeof (struct coff_symfile_info));
1979
1980 /*
1981 * Save startup file's range of PC addresses to help
1982 * blockframe.c decide where the bottom of the stack is.
1983 */
1984 if (bfd_get_file_flags(abfd) & EXEC_P) {
1985 entry_point = bfd_get_start_address(abfd);
1986 } else {
1987 entry_point = ~0;
1988 /* set the startup file to be an empty range. */
1989 startup_file_start = 0;
1990 startup_file_end = 0;
1991 }
1992 }
1993
1994
1995 static int
1996 init_stringtab(abfd, offset, objfile)
1997 bfd *abfd;
1998 long offset;
1999 struct objfile *objfile;
2000 {
2001 long length;
2002 int val;
2003 unsigned char lengthbuf[4];
2004
2005 if (bfd_seek(abfd, offset, 0) < 0)
2006 return -1;
2007
2008 val = bfd_read((char *)lengthbuf, 1, sizeof lengthbuf, abfd);
2009 length = bfd_h_get_32(abfd, lengthbuf);
2010
2011 /* If no string table is needed, then the file may end immediately
2012 after the symbols. Just return with `strtbl' set to null. */
2013
2014 if (val != sizeof length || length < sizeof length)
2015 return 0;
2016
2017 /* Allocate string table from symbol_obstack. We will need this table
2018 as long as we have its symbol table around. */
2019
2020 strtbl = (char*) obstack_alloc (&objfile->symbol_obstack, length);
2021 if (strtbl == NULL)
2022 return -1;
2023
2024 bcopy(&length, strtbl, sizeof length);
2025 if (length == sizeof length)
2026 return 0;
2027
2028 val = bfd_read(strtbl + sizeof length, 1, length - sizeof length, abfd);
2029
2030 if (val != length - sizeof length || strtbl[length - 1] != '\0')
2031 return -1;
2032
2033 return 0;
2034 }
2035
2036 static int
2037 init_debugsection(abfd)
2038 bfd *abfd;
2039 {
2040 register sec_ptr secp;
2041 bfd_size_type length;
2042
2043 if (debugsec) {
2044 free(debugsec);
2045 debugsec = NULL;
2046 }
2047
2048 secp = bfd_get_section_by_name(abfd, ".debug");
2049 if (!secp)
2050 return 0;
2051
2052 if (!(length = bfd_section_size(abfd, secp)))
2053 return 0;
2054
2055 debugsec = (char *) xmalloc ((unsigned)length);
2056 if (debugsec == NULL)
2057 return -1;
2058
2059 if (!bfd_get_section_contents(abfd, secp, debugsec, (file_ptr) 0, length)) {
2060 printf ("Can't read .debug section from symbol file\n");
2061 return -1;
2062 }
2063 return 0;
2064 }
2065
2066 static void
2067 free_debugsection()
2068 {
2069 if (debugsec)
2070 free(debugsec);
2071 debugsec = NULL;
2072 }
2073
2074
2075 /* aixcoff version of symbol file read. */
2076
2077 static void
2078 aixcoff_symfile_read (sf, addr, mainline)
2079 struct sym_fns *sf;
2080 CORE_ADDR addr;
2081 int mainline;
2082 {
2083 int num_symbols; /* # of symbols */
2084 int symtab_offset; /* symbol table and */
2085 int stringtab_offset; /* string table file offsets */
2086 int val;
2087 bfd *abfd;
2088 struct coff_symfile_info *info = (void*) sf->sym_private;
2089 char *name;
2090
2091 symfile_bfd = abfd = sf->objfile->obfd;
2092 name = sf->objfile->name;
2093
2094 num_symbols = bfd_get_symcount (abfd); /* # of symbols */
2095 symtab_offset = obj_sym_filepos (abfd); /* symbol table file offset */
2096 stringtab_offset = symtab_offset +
2097 num_symbols * coff_data(abfd)->local_symesz;
2098
2099 info->min_lineno_offset = 0;
2100 info->max_lineno_offset = 0;
2101 bfd_map_over_sections (abfd, find_linenos, info);
2102
2103 /* FIXME! This stuff should move into symfile_init */
2104 if (info->min_lineno_offset != 0
2105 && info->max_lineno_offset > info->min_lineno_offset) {
2106
2107 /* only read in the line # table if one exists */
2108 val = init_lineno(abfd, info->min_lineno_offset,
2109 info->max_lineno_offset - info->min_lineno_offset);
2110
2111 if (val < 0)
2112 error("\"%s\": error reading line numbers\n", name);
2113 }
2114
2115 val = init_stringtab(abfd, stringtab_offset, sf->objfile);
2116 if (val < 0) {
2117 error ("\"%s\": can't get string table", name);
2118 }
2119
2120 if (init_debugsection(abfd) < 0) {
2121 error ("Error reading .debug section of `%s'\n", name);
2122 }
2123
2124 /* Position to read the symbol table. Do not read it all at once. */
2125 val = bfd_seek(abfd, (long)symtab_offset, 0);
2126 if (val < 0)
2127 perror_with_name(name);
2128
2129 if (bfd_tell(abfd) != symtab_offset)
2130 fatal("bfd? BFD!");
2131
2132 init_minimal_symbol_collection ();
2133 make_cleanup (discard_minimal_symbols, 0);
2134
2135 #ifdef XCOFF_INIT_LOADINFO
2136 if (mainline)
2137 XCOFF_INIT_LOADINFO ();
2138 #endif
2139
2140 /* Now that the executable file is positioned at symbol table,
2141 process it and define symbols accordingly. */
2142
2143 read_xcoff_symtab(sf->objfile, num_symbols);
2144
2145 make_cleanup (free_debugsection, 0);
2146
2147 /* Sort symbols alphabetically within each block. */
2148 sort_syms ();
2149
2150 /* Install any minimal symbols that have been collected as the current
2151 minimal symbols for this objfile. */
2152
2153 install_minimal_symbols (sf -> objfile);
2154
2155 /* Make a default for file to list. */
2156 select_source_symtab (0);
2157 }
2158
2159 /* Register our ability to parse symbols for aixcoff BFD files. */
2160
2161 static struct sym_fns aixcoff_sym_fns =
2162 {
2163 "aixcoff-rs6000", 15,
2164 aixcoff_new_init, aixcoff_symfile_init,
2165 aixcoff_symfile_read,
2166 };
2167
2168 void
2169 _initialize_xcoffread ()
2170 {
2171 add_symtab_fns(&aixcoff_sym_fns);
2172 }
2173 #else /* IBM6000 */
2174 struct type *
2175 builtin_type (pp)
2176 char **pp;
2177 {
2178 fatal ("internals eror: builtin_type called!");
2179 }
2180 #endif /* IBM6000 */
This page took 0.135951 seconds and 5 git commands to generate.