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