OSDN Git Service

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