*** empty log message ***
[deliverable/binutils-gdb.git] / gdb / coffread.c
CommitLineData
c906108c 1/* Read coff symbol tables and convert to internal format, for GDB.
197e01b6 2 Copyright (C) 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996,
1754f103 3 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005
c5aa993b 4 Free Software Foundation, Inc.
c906108c
SS
5 Contributed by David D. Johnson, Brown University (ddj@cs.brown.edu).
6
c5aa993b 7 This file is part of GDB.
c906108c 8
c5aa993b
JM
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
c906108c 13
c5aa993b
JM
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
c906108c 18
c5aa993b
JM
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
197e01b6
EZ
21 Foundation, Inc., 51 Franklin Street, Fifth Floor,
22 Boston, MA 02110-1301, USA. */
c906108c
SS
23
24#include "defs.h"
25#include "symtab.h"
26#include "gdbtypes.h"
27#include "demangle.h"
28#include "breakpoint.h"
29
30#include "bfd.h"
04ea0df1 31#include "gdb_obstack.h"
c906108c
SS
32
33#include "gdb_string.h"
34#include <ctype.h>
35
36#include "coff/internal.h" /* Internal format of COFF symbols in BFD */
37#include "libcoff.h" /* FIXME secret internal data from BFD */
c906108c
SS
38#include "objfiles.h"
39#include "buildsym.h"
40#include "gdb-stabs.h"
41#include "stabsread.h"
42#include "complaints.h"
43#include "target.h"
6ec4c4bd 44#include "gdb_assert.h"
fe898f56 45#include "block.h"
de4f826b 46#include "dictionary.h"
c906108c 47
1b6bc7e0
CF
48#include "coff-pe-read.h"
49
a14ed312 50extern void _initialize_coffread (void);
392a587b 51
c5aa993b
JM
52struct coff_symfile_info
53 {
54 file_ptr min_lineno_offset; /* Where in file lowest line#s are */
55 file_ptr max_lineno_offset; /* 1+last byte of line#s in file */
c906108c 56
c5aa993b
JM
57 CORE_ADDR textaddr; /* Addr of .text section. */
58 unsigned int textsize; /* Size of .text section. */
59 struct stab_section_list *stabsects; /* .stab sections. */
60 asection *stabstrsect; /* Section pointer for .stab section */
61 char *stabstrdata;
62 };
c906108c
SS
63
64/* Translate an external name string into a user-visible name. */
65#define EXTERNAL_NAME(string, abfd) \
66 (string[0] == bfd_get_symbol_leading_char(abfd)? string+1: string)
67
68/* To be an sdb debug type, type must have at least a basic or primary
69 derived type. Using this rather than checking against T_NULL is
70 said to prevent core dumps if we try to operate on Michael Bloom
71 dbx-in-coff file. */
72
73#define SDB_TYPE(type) (BTYPE(type) | (type & N_TMASK))
74
c906108c
SS
75/* Core address of start and end of text of current source file.
76 This comes from a ".text" symbol where x_nlinno > 0. */
77
78static CORE_ADDR current_source_start_addr;
79static CORE_ADDR current_source_end_addr;
80
81/* The addresses of the symbol table stream and number of symbols
82 of the object file we are reading (as copied into core). */
83
84static bfd *nlist_bfd_global;
85static int nlist_nsyms_global;
86
c906108c
SS
87
88/* Pointers to scratch storage, used for reading raw symbols and auxents. */
89
90static char *temp_sym;
91static char *temp_aux;
92
93/* Local variables that hold the shift and mask values for the
94 COFF file that we are currently reading. These come back to us
95 from BFD, and are referenced by their macro names, as well as
96 internally to the BTYPE, ISPTR, ISFCN, ISARY, ISTAG, and DECREF
97 macros from include/coff/internal.h . */
98
c5aa993b
JM
99static unsigned local_n_btmask;
100static unsigned local_n_btshft;
101static unsigned local_n_tmask;
102static unsigned local_n_tshift;
c906108c
SS
103
104#define N_BTMASK local_n_btmask
105#define N_BTSHFT local_n_btshft
106#define N_TMASK local_n_tmask
107#define N_TSHIFT local_n_tshift
c5aa993b 108
c906108c
SS
109/* Local variables that hold the sizes in the file of various COFF structures.
110 (We only need to know this to read them from the file -- BFD will then
111 translate the data in them, into `internal_xxx' structs in the right
112 byte order, alignment, etc.) */
113
c5aa993b
JM
114static unsigned local_linesz;
115static unsigned local_symesz;
116static unsigned local_auxesz;
c906108c
SS
117
118/* This is set if this is a PE format file. */
119
120static int pe_file;
121
122/* Chain of typedefs of pointers to empty struct/union types.
123 They are chained thru the SYMBOL_VALUE_CHAIN. */
124
125static struct symbol *opaque_type_chain[HASHSIZE];
126
c906108c
SS
127/* Simplified internal version of coff symbol table information */
128
c5aa993b
JM
129struct coff_symbol
130 {
131 char *c_name;
132 int c_symnum; /* symbol number of this entry */
133 int c_naux; /* 0 if syment only, 1 if syment + auxent, etc */
134 long c_value;
135 int c_sclass;
136 int c_secnum;
137 unsigned int c_type;
138 };
c906108c 139
a14ed312 140extern void stabsread_clear_cache (void);
7be570e7 141
a14ed312 142static struct type *coff_read_struct_type (int, int, int);
c906108c 143
a14ed312
KB
144static struct type *decode_base_type (struct coff_symbol *,
145 unsigned int, union internal_auxent *);
c906108c 146
a14ed312
KB
147static struct type *decode_type (struct coff_symbol *, unsigned int,
148 union internal_auxent *);
c906108c 149
a14ed312
KB
150static struct type *decode_function_type (struct coff_symbol *,
151 unsigned int,
152 union internal_auxent *);
c906108c 153
a14ed312 154static struct type *coff_read_enum_type (int, int, int);
c906108c 155
a14ed312
KB
156static struct symbol *process_coff_symbol (struct coff_symbol *,
157 union internal_auxent *,
158 struct objfile *);
c906108c 159
a14ed312 160static void patch_opaque_types (struct symtab *);
c906108c 161
a14ed312 162static void enter_linenos (long, int, int, struct objfile *);
c906108c 163
a14ed312 164static void free_linetab (void);
c906108c 165
74b7792f
AC
166static void free_linetab_cleanup (void *ignore);
167
a14ed312 168static int init_lineno (bfd *, long, int);
c906108c 169
a14ed312 170static char *getsymname (struct internal_syment *);
c906108c 171
a14ed312 172static char *coff_getfilename (union internal_auxent *);
c906108c 173
a14ed312 174static void free_stringtab (void);
c906108c 175
74b7792f
AC
176static void free_stringtab_cleanup (void *ignore);
177
a14ed312 178static int init_stringtab (bfd *, long);
c906108c 179
a14ed312
KB
180static void read_one_sym (struct coff_symbol *,
181 struct internal_syment *, union internal_auxent *);
c906108c 182
a14ed312 183static void coff_symtab_read (long, unsigned int, struct objfile *);
c906108c
SS
184\f
185/* We are called once per section from coff_symfile_read. We
186 need to examine each section we are passed, check to see
187 if it is something we are interested in processing, and
188 if so, stash away some access information for the section.
189
190 FIXME: The section names should not be hardwired strings (what
191 should they be? I don't think most object file formats have enough
192 section flags to specify what kind of debug section it is
193 -kingdon). */
194
195static void
12b9c64f 196coff_locate_sections (bfd *abfd, asection *sectp, void *csip)
c906108c 197{
52f0bd74 198 struct coff_symfile_info *csi;
c906108c
SS
199 const char *name;
200
201 csi = (struct coff_symfile_info *) csip;
202 name = bfd_get_section_name (abfd, sectp);
cb137aa5 203 if (DEPRECATED_STREQ (name, ".text"))
c906108c
SS
204 {
205 csi->textaddr = bfd_section_vma (abfd, sectp);
206 csi->textsize += bfd_section_size (abfd, sectp);
207 }
208 else if (strncmp (name, ".text", sizeof ".text" - 1) == 0)
209 {
210 csi->textsize += bfd_section_size (abfd, sectp);
211 }
cb137aa5 212 else if (DEPRECATED_STREQ (name, ".stabstr"))
c906108c
SS
213 {
214 csi->stabstrsect = sectp;
215 }
216 else if (strncmp (name, ".stab", sizeof ".stab" - 1) == 0)
217 {
218 const char *s;
219
220 /* We can have multiple .stab sections if linked with
221 --split-by-reloc. */
222 for (s = name + sizeof ".stab" - 1; *s != '\0'; s++)
c5aa993b 223 if (!isdigit (*s))
c906108c
SS
224 break;
225 if (*s == '\0')
226 {
227 struct stab_section_list *n, **pn;
228
229 n = ((struct stab_section_list *)
230 xmalloc (sizeof (struct stab_section_list)));
231 n->section = sectp;
232 n->next = NULL;
233 for (pn = &csi->stabsects; *pn != NULL; pn = &(*pn)->next)
234 ;
235 *pn = n;
236
237 /* This will be run after coffstab_build_psymtabs is called
c5aa993b
JM
238 in coff_symfile_read, at which point we no longer need
239 the information. */
b8c9b27d 240 make_cleanup (xfree, n);
c906108c
SS
241 }
242 }
243}
244
245/* Return the section_offsets* that CS points to. */
a14ed312 246static int cs_to_section (struct coff_symbol *, struct objfile *);
c906108c 247
c5aa993b
JM
248struct find_targ_sec_arg
249 {
250 int targ_index;
251 asection **resultp;
252 };
c906108c 253
c5aa993b 254static void
12b9c64f 255find_targ_sec (bfd *abfd, asection *sect, void *obj)
c906108c 256{
c5aa993b 257 struct find_targ_sec_arg *args = (struct find_targ_sec_arg *) obj;
c906108c
SS
258 if (sect->target_index == args->targ_index)
259 *args->resultp = sect;
260}
261
fbcebcb1
DJ
262/* Return the bfd_section that CS points to. */
263static struct bfd_section*
264cs_to_bfd_section (struct coff_symbol *cs, struct objfile *objfile)
c906108c
SS
265{
266 asection *sect = NULL;
267 struct find_targ_sec_arg args;
c906108c
SS
268
269 args.targ_index = cs->c_secnum;
270 args.resultp = &sect;
271 bfd_map_over_sections (objfile->obfd, find_targ_sec, &args);
fbcebcb1
DJ
272 return sect;
273}
274
275/* Return the section number (SECT_OFF_*) that CS points to. */
276static int
277cs_to_section (struct coff_symbol *cs, struct objfile *objfile)
278{
279 asection *sect = cs_to_bfd_section (cs, objfile);
280 int off = SECT_OFF_TEXT (objfile);
c906108c
SS
281 if (sect != NULL)
282 {
283 /* This is the section. Figure out what SECT_OFF_* code it is. */
284 if (bfd_get_section_flags (abfd, sect) & SEC_CODE)
b8fbeb18 285 off = SECT_OFF_TEXT (objfile);
c906108c 286 else if (bfd_get_section_flags (abfd, sect) & SEC_LOAD)
b8fbeb18 287 off = SECT_OFF_DATA (objfile);
c906108c 288 else
a4c8257b
EZ
289 /* Just return the bfd section index. */
290 off = sect->index;
c906108c
SS
291 }
292 return off;
293}
294
295/* Return the address of the section of a COFF symbol. */
296
a14ed312 297static CORE_ADDR cs_section_address (struct coff_symbol *, bfd *);
c906108c
SS
298
299static CORE_ADDR
fba45db2 300cs_section_address (struct coff_symbol *cs, bfd *abfd)
c906108c
SS
301{
302 asection *sect = NULL;
303 struct find_targ_sec_arg args;
304 CORE_ADDR addr = 0;
305
306 args.targ_index = cs->c_secnum;
307 args.resultp = &sect;
308 bfd_map_over_sections (abfd, find_targ_sec, &args);
309 if (sect != NULL)
310 addr = bfd_get_section_vma (objfile->obfd, sect);
311 return addr;
312}
313
314/* Look up a coff type-number index. Return the address of the slot
315 where the type for that index is stored.
316 The type-number is in INDEX.
317
318 This can be used for finding the type associated with that index
319 or for associating a new type with the index. */
320
321static struct type **
aa1ee363 322coff_lookup_type (int index)
c906108c
SS
323{
324 if (index >= type_vector_length)
325 {
326 int old_vector_length = type_vector_length;
327
328 type_vector_length *= 2;
c5aa993b 329 if (index /* is still */ >= type_vector_length)
c906108c
SS
330 type_vector_length = index * 2;
331
332 type_vector = (struct type **)
333 xrealloc ((char *) type_vector,
334 type_vector_length * sizeof (struct type *));
335 memset (&type_vector[old_vector_length], 0,
c5aa993b 336 (type_vector_length - old_vector_length) * sizeof (struct type *));
c906108c
SS
337 }
338 return &type_vector[index];
339}
340
341/* Make sure there is a type allocated for type number index
342 and return the type object.
343 This can create an empty (zeroed) type object. */
344
345static struct type *
fba45db2 346coff_alloc_type (int index)
c906108c 347{
52f0bd74
AC
348 struct type **type_addr = coff_lookup_type (index);
349 struct type *type = *type_addr;
c906108c
SS
350
351 /* If we are referring to a type not known at all yet,
352 allocate an empty type for it.
353 We will fill it in later if we find out how. */
354 if (type == NULL)
355 {
356 type = alloc_type (current_objfile);
357 *type_addr = type;
358 }
359 return type;
360}
361\f
c906108c
SS
362/* Start a new symtab for a new source file.
363 This is called when a COFF ".file" symbol is seen;
364 it indicates the start of data for one original source file. */
365
366static void
fba45db2 367coff_start_symtab (char *name)
c906108c
SS
368{
369 start_symtab (
c5aa993b
JM
370 /* We fill in the filename later. start_symtab puts
371 this pointer into last_source_file and we put it in
372 subfiles->name, which end_symtab frees; that's why
373 it must be malloc'd. */
374 savestring (name, strlen (name)),
375 /* We never know the directory name for COFF. */
376 NULL,
377 /* The start address is irrelevant, since we set
378 last_source_start_addr in coff_end_symtab. */
379 0);
c906108c 380 record_debugformat ("COFF");
c906108c
SS
381}
382
383/* Save the vital information from when starting to read a file,
384 for use when closing off the current file.
385 NAME is the file name the symbols came from, START_ADDR is the first
386 text address for the file, and SIZE is the number of bytes of text. */
387
388static void
fba45db2 389complete_symtab (char *name, CORE_ADDR start_addr, unsigned int size)
c906108c
SS
390{
391 if (last_source_file != NULL)
b8c9b27d 392 xfree (last_source_file);
c906108c
SS
393 last_source_file = savestring (name, strlen (name));
394 current_source_start_addr = start_addr;
395 current_source_end_addr = start_addr + size;
c906108c
SS
396}
397
398/* Finish the symbol definitions for one main source file,
399 close off all the lexical contexts for that file
400 (creating struct block's for them), then make the
401 struct symtab for that file and put it in the list of all such. */
402
403static void
fba45db2 404coff_end_symtab (struct objfile *objfile)
c906108c
SS
405{
406 struct symtab *symtab;
407
408 last_source_start_addr = current_source_start_addr;
409
44c75fb3 410 symtab = end_symtab (current_source_end_addr, objfile, SECT_OFF_TEXT (objfile));
c906108c
SS
411
412 if (symtab != NULL)
413 free_named_symtabs (symtab->filename);
414
415 /* Reinitialize for beginning of new file. */
c906108c
SS
416 last_source_file = NULL;
417}
418\f
fbcebcb1
DJ
419static struct minimal_symbol *
420record_minimal_symbol (struct coff_symbol *cs, CORE_ADDR address,
421 enum minimal_symbol_type type, int section,
422 struct objfile *objfile)
c906108c 423{
fbcebcb1 424 struct bfd_section *bfd_section;
c906108c 425 /* We don't want TDESC entry points in the minimal symbol table */
fbcebcb1
DJ
426 if (cs->c_name[0] == '@')
427 return NULL;
c906108c 428
fbcebcb1
DJ
429 bfd_section = cs_to_bfd_section (cs, objfile);
430 return prim_record_minimal_symbol_and_info (cs->c_name, address, type,
431 NULL, section, bfd_section, objfile);
c906108c
SS
432}
433\f
434/* coff_symfile_init ()
435 is the coff-specific initialization routine for reading symbols.
436 It is passed a struct objfile which contains, among other things,
437 the BFD for the file whose symbols are being read, and a slot for
438 a pointer to "private data" which we fill with cookies and other
439 treats for coff_symfile_read ().
440
441 We will only be called if this is a COFF or COFF-like file.
442 BFD handles figuring out the format of the file, and code in symtab.c
443 uses BFD's determination to vector to us.
444
445 The ultimate result is a new symtab (or, FIXME, eventually a psymtab). */
446
447static void
fba45db2 448coff_symfile_init (struct objfile *objfile)
c906108c
SS
449{
450 /* Allocate struct to keep track of stab reading. */
0a6ddd08 451 objfile->deprecated_sym_stab_info = (struct dbx_symfile_info *)
7936743b 452 xmalloc (sizeof (struct dbx_symfile_info));
c906108c 453
0a6ddd08 454 memset (objfile->deprecated_sym_stab_info, 0,
12b9c64f 455 sizeof (struct dbx_symfile_info));
c906108c
SS
456
457 /* Allocate struct to keep track of the symfile */
0a6ddd08 458 objfile->deprecated_sym_private = xmalloc (sizeof (struct coff_symfile_info));
c906108c 459
0a6ddd08 460 memset (objfile->deprecated_sym_private, 0, sizeof (struct coff_symfile_info));
c906108c
SS
461
462 /* COFF objects may be reordered, so set OBJF_REORDERED. If we
463 find this causes a significant slowdown in gdb then we could
464 set it in the debug symbol readers only when necessary. */
465 objfile->flags |= OBJF_REORDERED;
466
467 init_entry_point_info (objfile);
468}
469
470/* This function is called for every section; it finds the outer limits
471 of the line table (minimum and maximum file offset) so that the
472 mainline code can read the whole thing for efficiency. */
473
c906108c 474static void
7be0c536 475find_linenos (bfd *abfd, struct bfd_section *asect, void *vpinfo)
c906108c
SS
476{
477 struct coff_symfile_info *info;
478 int size, count;
479 file_ptr offset, maxoff;
480
481/* WARNING WILL ROBINSON! ACCESSING BFD-PRIVATE DATA HERE! FIXME! */
482 count = asect->lineno_count;
483/* End of warning */
484
485 if (count == 0)
486 return;
487 size = count * local_linesz;
488
c5aa993b 489 info = (struct coff_symfile_info *) vpinfo;
c906108c
SS
490/* WARNING WILL ROBINSON! ACCESSING BFD-PRIVATE DATA HERE! FIXME! */
491 offset = asect->line_filepos;
492/* End of warning */
493
494 if (offset < info->min_lineno_offset || info->min_lineno_offset == 0)
495 info->min_lineno_offset = offset;
496
497 maxoff = offset + size;
498 if (maxoff > info->max_lineno_offset)
499 info->max_lineno_offset = maxoff;
500}
501
502
503/* The BFD for this file -- only good while we're actively reading
504 symbols into a psymtab or a symtab. */
505
506static bfd *symfile_bfd;
507
508/* Read a symbol file, after initialization by coff_symfile_init. */
509
c906108c 510static void
fba45db2 511coff_symfile_read (struct objfile *objfile, int mainline)
c906108c
SS
512{
513 struct coff_symfile_info *info;
514 struct dbx_symfile_info *dbxinfo;
515 bfd *abfd = objfile->obfd;
516 coff_data_type *cdata = coff_data (abfd);
517 char *name = bfd_get_filename (abfd);
52f0bd74 518 int val;
745b8ca0 519 unsigned int num_symbols;
c906108c
SS
520 int symtab_offset;
521 int stringtab_offset;
7134143f 522 struct cleanup *back_to, *cleanup_minimal_symbols;
c906108c 523 int stabstrsize;
c2d11a7d
JM
524 int len;
525 char * target;
526
0a6ddd08
AC
527 info = (struct coff_symfile_info *) objfile->deprecated_sym_private;
528 dbxinfo = objfile->deprecated_sym_stab_info;
c5aa993b 529 symfile_bfd = abfd; /* Kludge for swap routines */
c906108c
SS
530
531/* WARNING WILL ROBINSON! ACCESSING BFD-PRIVATE DATA HERE! FIXME! */
c5aa993b
JM
532 num_symbols = bfd_get_symcount (abfd); /* How many syms */
533 symtab_offset = cdata->sym_filepos; /* Symbol table file offset */
534 stringtab_offset = symtab_offset + /* String table file offset */
535 num_symbols * cdata->local_symesz;
c906108c
SS
536
537 /* Set a few file-statics that give us specific information about
538 the particular COFF file format we're reading. */
c906108c
SS
539 local_n_btmask = cdata->local_n_btmask;
540 local_n_btshft = cdata->local_n_btshft;
c5aa993b 541 local_n_tmask = cdata->local_n_tmask;
c906108c 542 local_n_tshift = cdata->local_n_tshift;
c5aa993b
JM
543 local_linesz = cdata->local_linesz;
544 local_symesz = cdata->local_symesz;
545 local_auxesz = cdata->local_auxesz;
c906108c
SS
546
547 /* Allocate space for raw symbol and aux entries, based on their
548 space requirements as reported by BFD. */
549 temp_sym = (char *) xmalloc
c5aa993b 550 (cdata->local_symesz + cdata->local_auxesz);
c906108c 551 temp_aux = temp_sym + cdata->local_symesz;
c13c43fd 552 back_to = make_cleanup (free_current_contents, &temp_sym);
c906108c
SS
553
554 /* We need to know whether this is a PE file, because in PE files,
555 unlike standard COFF files, symbol values are stored as offsets
556 from the section address, rather than as absolute addresses.
557 FIXME: We should use BFD to read the symbol table, and thus avoid
558 this problem. */
0d06e24b
JM
559 pe_file =
560 strncmp (bfd_get_target (objfile->obfd), "pe", 2) == 0
561 || strncmp (bfd_get_target (objfile->obfd), "epoc-pe", 7) == 0;
c906108c
SS
562
563/* End of warning */
564
c906108c
SS
565 info->min_lineno_offset = 0;
566 info->max_lineno_offset = 0;
c906108c 567
ebeb39fe
JB
568 /* Only read line number information if we have symbols.
569
570 On Windows NT, some of the system's DLL's have sections with
571 PointerToLinenumbers fields that are non-zero, but point at
572 random places within the image file. (In the case I found,
573 KERNEL32.DLL's .text section has a line number info pointer that
574 points into the middle of the string `lib\\i386\kernel32.dll'.)
575
576 However, these DLL's also have no symbols. The line number
577 tables are meaningless without symbols. And in fact, GDB never
578 uses the line number information unless there are symbols. So we
579 can avoid spurious error messages (and maybe run a little
580 faster!) by not even reading the line number table unless we have
581 symbols. */
582 if (num_symbols > 0)
583 {
584 /* Read the line number table, all at once. */
585 bfd_map_over_sections (abfd, find_linenos, (void *) info);
586
587 make_cleanup (free_linetab_cleanup, 0 /*ignore*/);
588 val = init_lineno (abfd, info->min_lineno_offset,
589 info->max_lineno_offset - info->min_lineno_offset);
590 if (val < 0)
8a3fe4f8 591 error (_("\"%s\": error reading line numbers."), name);
ebeb39fe 592 }
c906108c
SS
593
594 /* Now read the string table, all at once. */
595
74b7792f 596 make_cleanup (free_stringtab_cleanup, 0 /*ignore*/);
c906108c
SS
597 val = init_stringtab (abfd, stringtab_offset);
598 if (val < 0)
3d263c1d 599 error (_("\"%s\": can't get string table"), name);
c906108c
SS
600
601 init_minimal_symbol_collection ();
7134143f 602 cleanup_minimal_symbols = make_cleanup_discard_minimal_symbols ();
c906108c
SS
603
604 /* Now that the executable file is positioned at symbol table,
605 process it and define symbols accordingly. */
606
96baa820 607 coff_symtab_read ((long) symtab_offset, num_symbols, objfile);
c906108c 608
c906108c
SS
609 /* Install any minimal symbols that have been collected as the current
610 minimal symbols for this objfile. */
611
612 install_minimal_symbols (objfile);
613
7134143f
DJ
614 /* Free the installed minimal symbol data. */
615 do_cleanups (cleanup_minimal_symbols);
616
fea25152
BF
617 /* If we are reinitializing, or if we have not loaded syms yet,
618 empty the psymtab. "mainline" is cleared so the *_read_psymtab
619 functions do not all re-initialize it. */
620 if (mainline)
621 {
622 init_psymbol_list (objfile, 0);
623 mainline = 0;
624 }
625
12b9c64f 626 bfd_map_over_sections (abfd, coff_locate_sections, (void *) info);
c906108c
SS
627
628 if (info->stabsects)
629 {
c5aa993b 630 if (!info->stabstrsect)
b83266a0 631 {
3d263c1d
BI
632 error (_("The debugging information in `%s' is corrupted.\n"
633 "The file has a `.stabs' section, but no `.stabstr' section."),
255e7dbf 634 name);
b83266a0
SS
635 }
636
c906108c 637 /* FIXME: dubious. Why can't we use something normal like
c5aa993b 638 bfd_get_section_contents? */
c906108c
SS
639 bfd_seek (abfd, abfd->where, 0);
640
641 stabstrsize = bfd_section_size (abfd, info->stabstrsect);
642
643 coffstab_build_psymtabs (objfile,
c906108c
SS
644 mainline,
645 info->textaddr, info->textsize,
646 info->stabsects,
647 info->stabstrsect->filepos, stabstrsize);
648 }
c5edf76a 649 if (dwarf2_has_info (objfile))
42a076f0
EZ
650 {
651 /* DWARF2 sections. */
652 dwarf2_build_psymtabs (objfile, mainline);
653 }
c906108c 654
fea25152
BF
655 dwarf2_build_frame_info (objfile);
656
c906108c
SS
657 do_cleanups (back_to);
658}
659
660static void
fba45db2 661coff_new_init (struct objfile *ignore)
c906108c
SS
662{
663}
664
665/* Perform any local cleanups required when we are done with a particular
666 objfile. I.E, we are in the process of discarding all symbol information
667 for an objfile, freeing up all memory held for it, and unlinking the
668 objfile struct from the global list of known objfiles. */
669
670static void
fba45db2 671coff_symfile_finish (struct objfile *objfile)
c906108c 672{
0a6ddd08 673 if (objfile->deprecated_sym_private != NULL)
c906108c 674 {
0a6ddd08 675 xfree (objfile->deprecated_sym_private);
c906108c 676 }
7be570e7
JM
677
678 /* Let stabs reader clean up */
679 stabsread_clear_cache ();
c906108c 680}
c906108c 681\f
c5aa993b 682
c906108c
SS
683/* Given pointers to a symbol table in coff style exec file,
684 analyze them and create struct symtab's describing the symbols.
685 NSYMS is the number of symbols in the symbol table.
686 We read them one at a time using read_one_sym (). */
687
688static void
fba45db2
KB
689coff_symtab_read (long symtab_offset, unsigned int nsyms,
690 struct objfile *objfile)
c906108c 691{
52f0bd74 692 struct context_stack *new;
c906108c 693 struct coff_symbol coff_symbol;
52f0bd74 694 struct coff_symbol *cs = &coff_symbol;
c906108c
SS
695 static struct internal_syment main_sym;
696 static union internal_auxent main_aux;
697 struct coff_symbol fcn_cs_saved;
698 static struct internal_syment fcn_sym_saved;
699 static union internal_auxent fcn_aux_saved;
700 struct symtab *s;
701 /* A .file is open. */
702 int in_source_file = 0;
703 int next_file_symnum = -1;
704 /* Name of the current file. */
705 char *filestring = "";
706 int depth = 0;
707 int fcn_first_line = 0;
b9179dbc 708 CORE_ADDR fcn_first_line_addr = 0;
c906108c
SS
709 int fcn_last_line = 0;
710 int fcn_start_addr = 0;
711 long fcn_line_ptr = 0;
712 int val;
713 CORE_ADDR tmpaddr;
714
715 /* Work around a stdio bug in SunOS4.1.1 (this makes me nervous....
716 it's hard to know I've really worked around it. The fix should be
717 harmless, anyway). The symptom of the bug is that the first
718 fread (in read_one_sym), will (in my example) actually get data
719 from file offset 268, when the fseek was to 264 (and ftell shows
720 264). This causes all hell to break loose. I was unable to
721 reproduce this on a short test program which operated on the same
722 file, performing (I think) the same sequence of operations.
723
724 It stopped happening when I put in this (former) rewind().
725
726 FIXME: Find out if this has been reported to Sun, whether it has
727 been fixed in a later release, etc. */
728
729 bfd_seek (objfile->obfd, 0, 0);
730
731 /* Position to read the symbol table. */
732 val = bfd_seek (objfile->obfd, (long) symtab_offset, 0);
733 if (val < 0)
734 perror_with_name (objfile->name);
735
736 current_objfile = objfile;
737 nlist_bfd_global = objfile->obfd;
738 nlist_nsyms_global = nsyms;
739 last_source_file = NULL;
740 memset (opaque_type_chain, 0, sizeof opaque_type_chain);
741
c5aa993b 742 if (type_vector) /* Get rid of previous one */
b8c9b27d 743 xfree (type_vector);
c906108c
SS
744 type_vector_length = 160;
745 type_vector = (struct type **)
746 xmalloc (type_vector_length * sizeof (struct type *));
747 memset (type_vector, 0, type_vector_length * sizeof (struct type *));
748
749 coff_start_symtab ("");
750
751 symnum = 0;
752 while (symnum < nsyms)
753 {
754 QUIT; /* Make this command interruptable. */
755
756 read_one_sym (cs, &main_sym, &main_aux);
757
758 if (cs->c_symnum == next_file_symnum && cs->c_sclass != C_FILE)
759 {
760 if (last_source_file)
761 coff_end_symtab (objfile);
762
763 coff_start_symtab ("_globals_");
764 complete_symtab ("_globals_", 0, 0);
765 /* done with all files, everything from here on out is globals */
766 }
767
768 /* Special case for file with type declarations only, no text. */
769 if (!last_source_file && SDB_TYPE (cs->c_type)
770 && cs->c_secnum == N_DEBUG)
771 complete_symtab (filestring, 0, 0);
772
773 /* Typedefs should not be treated as symbol definitions. */
774 if (ISFCN (cs->c_type) && cs->c_sclass != C_TPDEF)
775 {
776 /* Record all functions -- external and static -- in minsyms. */
fbcebcb1 777 int section = cs_to_section (cs, objfile);
b8fbeb18 778 tmpaddr = cs->c_value + ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
fbcebcb1 779 record_minimal_symbol (cs, tmpaddr, mst_text, section, objfile);
c906108c
SS
780
781 fcn_line_ptr = main_aux.x_sym.x_fcnary.x_fcn.x_lnnoptr;
782 fcn_start_addr = tmpaddr;
783 fcn_cs_saved = *cs;
784 fcn_sym_saved = main_sym;
785 fcn_aux_saved = main_aux;
786 continue;
787 }
788
789 switch (cs->c_sclass)
790 {
c5aa993b
JM
791 case C_EFCN:
792 case C_EXTDEF:
793 case C_ULABEL:
794 case C_USTATIC:
795 case C_LINE:
796 case C_ALIAS:
797 case C_HIDDEN:
3d263c1d 798 complaint (&symfile_complaints, _("Bad n_sclass for symbol %s"),
23136709 799 cs->c_name);
c5aa993b 800 break;
c906108c 801
c5aa993b
JM
802 case C_FILE:
803 /* c_value field contains symnum of next .file entry in table
804 or symnum of first global after last .file. */
805 next_file_symnum = cs->c_value;
806 if (cs->c_naux > 0)
807 filestring = coff_getfilename (&main_aux);
808 else
809 filestring = "";
810
811 /* Complete symbol table for last object file
812 containing debugging information. */
813 if (last_source_file)
814 {
815 coff_end_symtab (objfile);
816 coff_start_symtab (filestring);
817 }
818 in_source_file = 1;
819 break;
c906108c
SS
820
821 /* C_LABEL is used for labels and static functions. Including
822 it here allows gdb to see static functions when no debug
823 info is available. */
c5aa993b
JM
824 case C_LABEL:
825 /* However, labels within a function can make weird backtraces,
826 so filter them out (from phdm@macqel.be). */
827 if (within_function)
828 break;
829 case C_STAT:
830 case C_THUMBLABEL:
831 case C_THUMBSTAT:
832 case C_THUMBSTATFUNC:
833 if (cs->c_name[0] == '.')
834 {
cb137aa5 835 if (DEPRECATED_STREQ (cs->c_name, ".text"))
c5aa993b 836 {
c906108c
SS
837 /* FIXME: don't wire in ".text" as section name
838 or symbol name! */
839 /* Check for in_source_file deals with case of
840 a file with debugging symbols
841 followed by a later file with no symbols. */
842 if (in_source_file)
843 complete_symtab (filestring,
b8fbeb18 844 cs->c_value + ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile)),
c906108c
SS
845 main_aux.x_scn.x_scnlen);
846 in_source_file = 0;
847 }
c5aa993b 848 /* flush rest of '.' symbols */
c906108c 849 break;
c5aa993b
JM
850 }
851 else if (!SDB_TYPE (cs->c_type)
852 && cs->c_name[0] == 'L'
853 && (strncmp (cs->c_name, "LI%", 3) == 0
854 || strncmp (cs->c_name, "LF%", 3) == 0
855 || strncmp (cs->c_name, "LC%", 3) == 0
856 || strncmp (cs->c_name, "LP%", 3) == 0
857 || strncmp (cs->c_name, "LPB%", 4) == 0
858 || strncmp (cs->c_name, "LBB%", 4) == 0
859 || strncmp (cs->c_name, "LBE%", 4) == 0
860 || strncmp (cs->c_name, "LPBX%", 5) == 0))
861 /* At least on a 3b1, gcc generates swbeg and string labels
862 that look like this. Ignore them. */
863 break;
864 /* fall in for static symbols that don't start with '.' */
865 case C_THUMBEXT:
866 case C_THUMBEXTFUNC:
867 case C_EXT:
868 {
869 /* Record it in the minimal symbols regardless of
870 SDB_TYPE. This parallels what we do for other debug
871 formats, and probably is needed to make
872 print_address_symbolic work right without the (now
873 gone) "set fast-symbolic-addr off" kludge. */
c906108c 874
c5aa993b
JM
875 enum minimal_symbol_type ms_type;
876 int sec;
c906108c 877
c5aa993b
JM
878 if (cs->c_secnum == N_UNDEF)
879 {
880 /* This is a common symbol. See if the target
881 environment knows where it has been relocated to. */
882 CORE_ADDR reladdr;
883 if (target_lookup_symbol (cs->c_name, &reladdr))
884 {
885 /* Error in lookup; ignore symbol. */
886 break;
887 }
888 tmpaddr = reladdr;
889 /* The address has already been relocated; make sure that
890 objfile_relocate doesn't relocate it again. */
891 sec = -2;
892 ms_type = cs->c_sclass == C_EXT
893 || cs->c_sclass == C_THUMBEXT ?
894 mst_bss : mst_file_bss;
895 }
182d43bc
EZ
896 else if (cs->c_secnum == N_ABS)
897 {
898 /* Use the correct minimal symbol type (and don't
899 relocate) for absolute values. */
900 ms_type = mst_abs;
901 sec = cs_to_section (cs, objfile);
902 tmpaddr = cs->c_value;
903 }
c5aa993b
JM
904 else
905 {
906 sec = cs_to_section (cs, objfile);
907 tmpaddr = cs->c_value;
182d43bc
EZ
908 /* Statics in a PE file also get relocated */
909 if (cs->c_sclass == C_EXT
910 || cs->c_sclass == C_THUMBEXTFUNC
911 || cs->c_sclass == C_THUMBEXT
912 || (pe_file && (cs->c_sclass == C_STAT)))
96baa820 913 tmpaddr += ANOFFSET (objfile->section_offsets, sec);
c906108c 914
2ec466f9 915 if (sec == SECT_OFF_TEXT (objfile))
c5aa993b 916 {
c5aa993b
JM
917 ms_type =
918 cs->c_sclass == C_EXT || cs->c_sclass == C_THUMBEXTFUNC
919 || cs->c_sclass == C_THUMBEXT ?
920 mst_text : mst_file_text;
181c1381 921 tmpaddr = SMASH_TEXT_ADDRESS (tmpaddr);
b8fbeb18 922 }
34e924c0
EZ
923 else if (sec == SECT_OFF_DATA (objfile))
924 {
c5aa993b
JM
925 ms_type =
926 cs->c_sclass == C_EXT || cs->c_sclass == C_THUMBEXT ?
927 mst_data : mst_file_data;
34e924c0
EZ
928 }
929 else if (sec == SECT_OFF_BSS (objfile))
930 {
c5aa993b
JM
931 ms_type =
932 cs->c_sclass == C_EXT || cs->c_sclass == C_THUMBEXT ?
933 mst_data : mst_file_data;
34e924c0
EZ
934 }
935 else
936 ms_type = mst_unknown;
c5aa993b 937 }
c906108c 938
fbcebcb1
DJ
939 {
940 struct minimal_symbol *msym;
941 msym = record_minimal_symbol (cs, tmpaddr, ms_type, sec, objfile);
942 if (msym)
943 COFF_MAKE_MSYMBOL_SPECIAL (cs->c_sclass, msym);
944 }
945
c5aa993b
JM
946 if (SDB_TYPE (cs->c_type))
947 {
948 struct symbol *sym;
949 sym = process_coff_symbol
96baa820 950 (cs, &main_aux, objfile);
c5aa993b
JM
951 SYMBOL_VALUE (sym) = tmpaddr;
952 SYMBOL_SECTION (sym) = sec;
953 }
954 }
955 break;
956
957 case C_FCN:
cb137aa5 958 if (DEPRECATED_STREQ (cs->c_name, ".bf"))
c5aa993b
JM
959 {
960 within_function = 1;
961
962 /* value contains address of first non-init type code */
963 /* main_aux.x_sym.x_misc.x_lnsz.x_lnno
964 contains line number of '{' } */
965 if (cs->c_naux != 1)
23136709 966 complaint (&symfile_complaints,
3d263c1d 967 _("`.bf' symbol %d has no aux entry"), cs->c_symnum);
c5aa993b
JM
968 fcn_first_line = main_aux.x_sym.x_misc.x_lnsz.x_lnno;
969 fcn_first_line_addr = cs->c_value;
970
971 /* Might want to check that locals are 0 and
972 context_stack_depth is zero, and complain if not. */
973
974 depth = 0;
975 new = push_context (depth, fcn_start_addr);
976 fcn_cs_saved.c_name = getsymname (&fcn_sym_saved);
977 new->name =
96baa820 978 process_coff_symbol (&fcn_cs_saved, &fcn_aux_saved, objfile);
c5aa993b 979 }
cb137aa5 980 else if (DEPRECATED_STREQ (cs->c_name, ".ef"))
c5aa993b 981 {
b9179dbc 982 if (!within_function)
8a3fe4f8 983 error (_("Bad coff function information."));
c5aa993b
JM
984 /* the value of .ef is the address of epilogue code;
985 not useful for gdb. */
986 /* { main_aux.x_sym.x_misc.x_lnsz.x_lnno
987 contains number of lines to '}' */
988
989 if (context_stack_depth <= 0)
990 { /* We attempted to pop an empty context stack */
23136709 991 complaint (&symfile_complaints,
3d263c1d 992 _("`.ef' symbol without matching `.bf' symbol ignored starting at symnum %d"),
23136709 993 cs->c_symnum);
c5aa993b
JM
994 within_function = 0;
995 break;
c906108c 996 }
c5aa993b
JM
997
998 new = pop_context ();
999 /* Stack must be empty now. */
1000 if (context_stack_depth > 0 || new == NULL)
c906108c 1001 {
23136709 1002 complaint (&symfile_complaints,
3d263c1d 1003 _("Unmatched .ef symbol(s) ignored starting at symnum %d"),
23136709 1004 cs->c_symnum);
c5aa993b
JM
1005 within_function = 0;
1006 break;
c906108c 1007 }
c5aa993b
JM
1008 if (cs->c_naux != 1)
1009 {
23136709 1010 complaint (&symfile_complaints,
3d263c1d 1011 _("`.ef' symbol %d has no aux entry"), cs->c_symnum);
c5aa993b
JM
1012 fcn_last_line = 0x7FFFFFFF;
1013 }
1014 else
1015 {
1016 fcn_last_line = main_aux.x_sym.x_misc.x_lnsz.x_lnno;
1017 }
1018 /* fcn_first_line is the line number of the opening '{'.
1019 Do not record it - because it would affect gdb's idea
1020 of the line number of the first statement of the function -
1021 except for one-line functions, for which it is also the line
1022 number of all the statements and of the closing '}', and
1023 for which we do not have any other statement-line-number. */
1024 if (fcn_last_line == 1)
1025 record_line (current_subfile, fcn_first_line,
1026 fcn_first_line_addr);
1027 else
1028 enter_linenos (fcn_line_ptr, fcn_first_line, fcn_last_line,
d4f3574e 1029 objfile);
c906108c 1030
c5aa993b
JM
1031 finish_block (new->name, &local_symbols, new->old_blocks,
1032 new->start_addr,
c906108c 1033#if defined (FUNCTION_EPILOGUE_SIZE)
c5aa993b
JM
1034 /* This macro should be defined only on
1035 machines where the
1036 fcn_aux_saved.x_sym.x_misc.x_fsize
1037 field is always zero.
1038 So use the .bf record information that
1039 points to the epilogue and add the size
1040 of the epilogue. */
1041 cs->c_value
1042 + FUNCTION_EPILOGUE_SIZE
b8fbeb18 1043 + ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile)),
c906108c 1044#else
c5aa993b
JM
1045 fcn_cs_saved.c_value
1046 + fcn_aux_saved.x_sym.x_misc.x_fsize
b8fbeb18 1047 + ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile)),
c906108c 1048#endif
c5aa993b
JM
1049 objfile
1050 );
1051 within_function = 0;
1052 }
1053 break;
c906108c 1054
c5aa993b 1055 case C_BLOCK:
cb137aa5 1056 if (DEPRECATED_STREQ (cs->c_name, ".bb"))
c5aa993b
JM
1057 {
1058 tmpaddr = cs->c_value;
b8fbeb18 1059 tmpaddr += ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
c5aa993b
JM
1060 push_context (++depth, tmpaddr);
1061 }
cb137aa5 1062 else if (DEPRECATED_STREQ (cs->c_name, ".eb"))
c5aa993b
JM
1063 {
1064 if (context_stack_depth <= 0)
1065 { /* We attempted to pop an empty context stack */
23136709 1066 complaint (&symfile_complaints,
3d263c1d 1067 _("`.eb' symbol without matching `.bb' symbol ignored starting at symnum %d"),
23136709 1068 cs->c_symnum);
c5aa993b
JM
1069 break;
1070 }
c906108c 1071
c5aa993b
JM
1072 new = pop_context ();
1073 if (depth-- != new->depth)
1074 {
23136709 1075 complaint (&symfile_complaints,
3d263c1d 1076 _("Mismatched .eb symbol ignored starting at symnum %d"),
23136709 1077 symnum);
c5aa993b
JM
1078 break;
1079 }
1080 if (local_symbols && context_stack_depth > 0)
1081 {
1082 tmpaddr =
b8fbeb18 1083 cs->c_value + ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
c5aa993b
JM
1084 /* Make a block for the local symbols within. */
1085 finish_block (0, &local_symbols, new->old_blocks,
1086 new->start_addr, tmpaddr, objfile);
1087 }
1088 /* Now pop locals of block just finished. */
1089 local_symbols = new->locals;
1090 }
1091 break;
c906108c 1092
c5aa993b 1093 default:
96baa820 1094 process_coff_symbol (cs, &main_aux, objfile);
c5aa993b 1095 break;
c906108c
SS
1096 }
1097 }
1098
1b6bc7e0
CF
1099 if ((nsyms == 0) && (pe_file))
1100 {
1101 /* We've got no debugging symbols, but it's is a portable
1102 executable, so try to read the export table */
1103 read_pe_exported_syms (objfile);
1104 }
1105
c906108c
SS
1106 if (last_source_file)
1107 coff_end_symtab (objfile);
1108
1109 /* Patch up any opaque types (references to types that are not defined
1110 in the file where they are referenced, e.g. "struct foo *bar"). */
1111 ALL_OBJFILE_SYMTABS (objfile, s)
1112 patch_opaque_types (s);
1113
1114 current_objfile = NULL;
1115}
1116\f
1117/* Routines for reading headers and symbols from executable. */
1118
1119/* Read the next symbol, swap it, and return it in both internal_syment
1120 form, and coff_symbol form. Also return its first auxent, if any,
1121 in internal_auxent form, and skip any other auxents. */
1122
1123static void
aa1ee363
AC
1124read_one_sym (struct coff_symbol *cs,
1125 struct internal_syment *sym,
1126 union internal_auxent *aux)
c906108c
SS
1127{
1128 int i;
1129
1130 cs->c_symnum = symnum;
3a42e9d0 1131 bfd_bread (temp_sym, local_symesz, nlist_bfd_global);
c5aa993b 1132 bfd_coff_swap_sym_in (symfile_bfd, temp_sym, (char *) sym);
c906108c
SS
1133 cs->c_naux = sym->n_numaux & 0xff;
1134 if (cs->c_naux >= 1)
1135 {
3a42e9d0 1136 bfd_bread (temp_aux, local_auxesz, nlist_bfd_global);
c5aa993b
JM
1137 bfd_coff_swap_aux_in (symfile_bfd, temp_aux, sym->n_type, sym->n_sclass,
1138 0, cs->c_naux, (char *) aux);
1139 /* If more than one aux entry, read past it (only the first aux
1140 is important). */
1141 for (i = 1; i < cs->c_naux; i++)
3a42e9d0 1142 bfd_bread (temp_aux, local_auxesz, nlist_bfd_global);
c906108c
SS
1143 }
1144 cs->c_name = getsymname (sym);
1145 cs->c_value = sym->n_value;
1146 cs->c_sclass = (sym->n_sclass & 0xff);
1147 cs->c_secnum = sym->n_scnum;
1148 cs->c_type = (unsigned) sym->n_type;
1149 if (!SDB_TYPE (cs->c_type))
1150 cs->c_type = 0;
1151
1152#if 0
1153 if (cs->c_sclass & 128)
3d263c1d 1154 printf (_("thumb symbol %s, class 0x%x\n"), cs->c_name, cs->c_sclass);
c906108c
SS
1155#endif
1156
1157 symnum += 1 + cs->c_naux;
1158
1159 /* The PE file format stores symbol values as offsets within the
1160 section, rather than as absolute addresses. We correct that
1161 here, if the symbol has an appropriate storage class. FIXME: We
1162 should use BFD to read the symbols, rather than duplicating the
1163 work here. */
1164 if (pe_file)
1165 {
1166 switch (cs->c_sclass)
1167 {
1168 case C_EXT:
1169 case C_THUMBEXT:
1170 case C_THUMBEXTFUNC:
1171 case C_SECTION:
1172 case C_NT_WEAK:
1173 case C_STAT:
1174 case C_THUMBSTAT:
1175 case C_THUMBSTATFUNC:
1176 case C_LABEL:
1177 case C_THUMBLABEL:
1178 case C_BLOCK:
1179 case C_FCN:
1180 case C_EFCN:
1181 if (cs->c_secnum != 0)
1182 cs->c_value += cs_section_address (cs, symfile_bfd);
1183 break;
1184 }
1185 }
1186}
1187\f
1188/* Support for string table handling */
1189
1190static char *stringtab = NULL;
1191
1192static int
fba45db2 1193init_stringtab (bfd *abfd, long offset)
c906108c
SS
1194{
1195 long length;
1196 int val;
1197 unsigned char lengthbuf[4];
1198
1199 free_stringtab ();
1200
1201 /* If the file is stripped, the offset might be zero, indicating no
1202 string table. Just return with `stringtab' set to null. */
1203 if (offset == 0)
1204 return 0;
1205
1206 if (bfd_seek (abfd, offset, 0) < 0)
1207 return -1;
1208
3a42e9d0 1209 val = bfd_bread ((char *) lengthbuf, sizeof lengthbuf, abfd);
c906108c 1210 length = bfd_h_get_32 (symfile_bfd, lengthbuf);
c5aa993b 1211
c906108c
SS
1212 /* If no string table is needed, then the file may end immediately
1213 after the symbols. Just return with `stringtab' set to null. */
1214 if (val != sizeof lengthbuf || length < sizeof lengthbuf)
1215 return 0;
1216
1217 stringtab = (char *) xmalloc (length);
1218 /* This is in target format (probably not very useful, and not currently
1219 used), not host format. */
1220 memcpy (stringtab, lengthbuf, sizeof lengthbuf);
c5aa993b 1221 if (length == sizeof length) /* Empty table -- just the count */
c906108c
SS
1222 return 0;
1223
3a42e9d0
AM
1224 val = bfd_bread (stringtab + sizeof lengthbuf, length - sizeof lengthbuf,
1225 abfd);
c906108c
SS
1226 if (val != length - sizeof lengthbuf || stringtab[length - 1] != '\0')
1227 return -1;
1228
1229 return 0;
1230}
1231
1232static void
fba45db2 1233free_stringtab (void)
c906108c
SS
1234{
1235 if (stringtab)
b8c9b27d 1236 xfree (stringtab);
c906108c
SS
1237 stringtab = NULL;
1238}
1239
74b7792f
AC
1240static void
1241free_stringtab_cleanup (void *ignore)
1242{
1243 free_stringtab ();
1244}
1245
c906108c 1246static char *
fba45db2 1247getsymname (struct internal_syment *symbol_entry)
c906108c 1248{
c5aa993b 1249 static char buffer[SYMNMLEN + 1];
c906108c
SS
1250 char *result;
1251
1252 if (symbol_entry->_n._n_n._n_zeroes == 0)
1253 {
1254 /* FIXME: Probably should be detecting corrupt symbol files by
c5aa993b 1255 seeing whether offset points to within the stringtab. */
c906108c
SS
1256 result = stringtab + symbol_entry->_n._n_n._n_offset;
1257 }
1258 else
1259 {
1260 strncpy (buffer, symbol_entry->_n._n_name, SYMNMLEN);
1261 buffer[SYMNMLEN] = '\0';
1262 result = buffer;
1263 }
1264 return result;
1265}
1266
1267/* Extract the file name from the aux entry of a C_FILE symbol. Return
1268 only the last component of the name. Result is in static storage and
1269 is only good for temporary use. */
1270
1271static char *
fba45db2 1272coff_getfilename (union internal_auxent *aux_entry)
c906108c
SS
1273{
1274 static char buffer[BUFSIZ];
52f0bd74 1275 char *temp;
c906108c
SS
1276 char *result;
1277
1278 if (aux_entry->x_file.x_n.x_zeroes == 0)
1279 strcpy (buffer, stringtab + aux_entry->x_file.x_n.x_offset);
1280 else
1281 {
1282 strncpy (buffer, aux_entry->x_file.x_fname, FILNMLEN);
1283 buffer[FILNMLEN] = '\0';
1284 }
1285 result = buffer;
1286
1287 /* FIXME: We should not be throwing away the information about what
1288 directory. It should go into dirname of the symtab, or some such
1289 place. */
1290 if ((temp = strrchr (result, '/')) != NULL)
1291 result = temp + 1;
1292 return (result);
1293}
1294\f
1295/* Support for line number handling. */
1296
1297static char *linetab = NULL;
1298static long linetab_offset;
1299static unsigned long linetab_size;
1300
1301/* Read in all the line numbers for fast lookups later. Leave them in
1302 external (unswapped) format in memory; we'll swap them as we enter
1303 them into GDB's data structures. */
c5aa993b 1304
c906108c 1305static int
fba45db2 1306init_lineno (bfd *abfd, long offset, int size)
c906108c
SS
1307{
1308 int val;
1309
1310 linetab_offset = offset;
1311 linetab_size = size;
1312
c5aa993b 1313 free_linetab ();
c906108c
SS
1314
1315 if (size == 0)
1316 return 0;
1317
1318 if (bfd_seek (abfd, offset, 0) < 0)
1319 return -1;
c5aa993b 1320
c906108c
SS
1321 /* Allocate the desired table, plus a sentinel */
1322 linetab = (char *) xmalloc (size + local_linesz);
1323
3a42e9d0 1324 val = bfd_bread (linetab, size, abfd);
c906108c
SS
1325 if (val != size)
1326 return -1;
1327
1328 /* Terminate it with an all-zero sentinel record */
1329 memset (linetab + size, 0, local_linesz);
1330
1331 return 0;
1332}
1333
1334static void
fba45db2 1335free_linetab (void)
c906108c
SS
1336{
1337 if (linetab)
b8c9b27d 1338 xfree (linetab);
c906108c
SS
1339 linetab = NULL;
1340}
1341
74b7792f
AC
1342static void
1343free_linetab_cleanup (void *ignore)
1344{
1345 free_linetab ();
1346}
1347
c906108c
SS
1348#if !defined (L_LNNO32)
1349#define L_LNNO32(lp) ((lp)->l_lnno)
1350#endif
1351
1352static void
aa1ee363
AC
1353enter_linenos (long file_offset, int first_line,
1354 int last_line, struct objfile *objfile)
c906108c 1355{
52f0bd74 1356 char *rawptr;
c906108c
SS
1357 struct internal_lineno lptr;
1358
1359 if (!linetab)
c5aa993b 1360 return;
c906108c
SS
1361 if (file_offset < linetab_offset)
1362 {
23136709 1363 complaint (&symfile_complaints,
3d263c1d 1364 _("Line number pointer %ld lower than start of line numbers"),
23136709 1365 file_offset);
c906108c
SS
1366 if (file_offset > linetab_size) /* Too big to be an offset? */
1367 return;
c5aa993b 1368 file_offset += linetab_offset; /* Try reading at that linetab offset */
c906108c 1369 }
c5aa993b 1370
c906108c
SS
1371 rawptr = &linetab[file_offset - linetab_offset];
1372
1373 /* skip first line entry for each function */
1374 rawptr += local_linesz;
1375 /* line numbers start at one for the first line of the function */
1376 first_line--;
1377
e6a8a7d2
EZ
1378 /* If the line number table is full (e.g. 64K lines in COFF debug
1379 info), the next function's L_LNNO32 might not be zero, so don't
1380 overstep the table's end in any case. */
1381 while (rawptr <= &linetab[0] + linetab_size)
c5aa993b
JM
1382 {
1383 bfd_coff_swap_lineno_in (symfile_bfd, rawptr, &lptr);
1384 rawptr += local_linesz;
e6a8a7d2
EZ
1385 /* The next function, or the sentinel, will have L_LNNO32 zero;
1386 we exit. */
c5aa993b
JM
1387 if (L_LNNO32 (&lptr) && L_LNNO32 (&lptr) <= last_line)
1388 record_line (current_subfile, first_line + L_LNNO32 (&lptr),
1389 lptr.l_addr.l_paddr
b8fbeb18 1390 + ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile)));
c5aa993b
JM
1391 else
1392 break;
1393 }
c906108c
SS
1394}
1395\f
1396static void
fba45db2 1397patch_type (struct type *type, struct type *real_type)
c906108c 1398{
52f0bd74
AC
1399 struct type *target = TYPE_TARGET_TYPE (type);
1400 struct type *real_target = TYPE_TARGET_TYPE (real_type);
c906108c
SS
1401 int field_size = TYPE_NFIELDS (real_target) * sizeof (struct field);
1402
1403 TYPE_LENGTH (target) = TYPE_LENGTH (real_target);
1404 TYPE_NFIELDS (target) = TYPE_NFIELDS (real_target);
1405 TYPE_FIELDS (target) = (struct field *) TYPE_ALLOC (target, field_size);
1406
1407 memcpy (TYPE_FIELDS (target), TYPE_FIELDS (real_target), field_size);
1408
1409 if (TYPE_NAME (real_target))
1410 {
1411 if (TYPE_NAME (target))
b8c9b27d 1412 xfree (TYPE_NAME (target));
1754f103 1413 TYPE_NAME (target) = concat (TYPE_NAME (real_target), (char *)NULL);
c906108c
SS
1414 }
1415}
1416
1417/* Patch up all appropriate typedef symbols in the opaque_type_chains
1418 so that they can be used to print out opaque data structures properly. */
1419
1420static void
fba45db2 1421patch_opaque_types (struct symtab *s)
c906108c 1422{
52f0bd74 1423 struct block *b;
de4f826b 1424 struct dict_iterator iter;
52f0bd74 1425 struct symbol *real_sym;
c5aa993b 1426
c906108c
SS
1427 /* Go through the per-file symbols only */
1428 b = BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), STATIC_BLOCK);
de4f826b 1429 ALL_BLOCK_SYMBOLS (b, iter, real_sym)
c906108c
SS
1430 {
1431 /* Find completed typedefs to use to fix opaque ones.
c5aa993b
JM
1432 Remove syms from the chain when their types are stored,
1433 but search the whole chain, as there may be several syms
1434 from different files with the same name. */
c906108c 1435 if (SYMBOL_CLASS (real_sym) == LOC_TYPEDEF &&
176620f1 1436 SYMBOL_DOMAIN (real_sym) == VAR_DOMAIN &&
c906108c
SS
1437 TYPE_CODE (SYMBOL_TYPE (real_sym)) == TYPE_CODE_PTR &&
1438 TYPE_LENGTH (TYPE_TARGET_TYPE (SYMBOL_TYPE (real_sym))) != 0)
1439 {
aa1ee363
AC
1440 char *name = DEPRECATED_SYMBOL_NAME (real_sym);
1441 int hash = hashname (name);
1442 struct symbol *sym, *prev;
c5aa993b 1443
c906108c
SS
1444 prev = 0;
1445 for (sym = opaque_type_chain[hash]; sym;)
1446 {
22abf04a 1447 if (name[0] == DEPRECATED_SYMBOL_NAME (sym)[0] &&
6314a349 1448 strcmp (name + 1, DEPRECATED_SYMBOL_NAME (sym) + 1) == 0)
c906108c
SS
1449 {
1450 if (prev)
1451 {
1452 SYMBOL_VALUE_CHAIN (prev) = SYMBOL_VALUE_CHAIN (sym);
1453 }
1454 else
1455 {
1456 opaque_type_chain[hash] = SYMBOL_VALUE_CHAIN (sym);
1457 }
c5aa993b 1458
c906108c 1459 patch_type (SYMBOL_TYPE (sym), SYMBOL_TYPE (real_sym));
c5aa993b 1460
c906108c
SS
1461 if (prev)
1462 {
1463 sym = SYMBOL_VALUE_CHAIN (prev);
1464 }
1465 else
1466 {
1467 sym = opaque_type_chain[hash];
1468 }
1469 }
1470 else
1471 {
1472 prev = sym;
1473 sym = SYMBOL_VALUE_CHAIN (sym);
1474 }
1475 }
1476 }
1477 }
1478}
1479\f
1480static struct symbol *
aa1ee363
AC
1481process_coff_symbol (struct coff_symbol *cs,
1482 union internal_auxent *aux,
fba45db2 1483 struct objfile *objfile)
c906108c 1484{
52f0bd74 1485 struct symbol *sym
4a146b47 1486 = (struct symbol *) obstack_alloc (&objfile->objfile_obstack,
c5aa993b 1487 sizeof (struct symbol));
c906108c
SS
1488 char *name;
1489
1490 memset (sym, 0, sizeof (struct symbol));
1491 name = cs->c_name;
1492 name = EXTERNAL_NAME (name, objfile->obfd);
c906108c 1493 SYMBOL_LANGUAGE (sym) = language_auto;
2de7ced7 1494 SYMBOL_SET_NAMES (sym, name, strlen (name), objfile);
c906108c
SS
1495
1496 /* default assumptions */
1497 SYMBOL_VALUE (sym) = cs->c_value;
176620f1 1498 SYMBOL_DOMAIN (sym) = VAR_DOMAIN;
c906108c
SS
1499 SYMBOL_SECTION (sym) = cs_to_section (cs, objfile);
1500
1501 if (ISFCN (cs->c_type))
1502 {
b8fbeb18 1503 SYMBOL_VALUE (sym) += ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
c5aa993b
JM
1504 SYMBOL_TYPE (sym) =
1505 lookup_function_type (decode_function_type (cs, cs->c_type, aux));
c906108c
SS
1506
1507 SYMBOL_CLASS (sym) = LOC_BLOCK;
1508 if (cs->c_sclass == C_STAT || cs->c_sclass == C_THUMBSTAT
1509 || cs->c_sclass == C_THUMBSTATFUNC)
1510 add_symbol_to_list (sym, &file_symbols);
1511 else if (cs->c_sclass == C_EXT || cs->c_sclass == C_THUMBEXT
1512 || cs->c_sclass == C_THUMBEXTFUNC)
1513 add_symbol_to_list (sym, &global_symbols);
1514 }
1515 else
1516 {
1517 SYMBOL_TYPE (sym) = decode_type (cs, cs->c_type, aux);
1518 switch (cs->c_sclass)
1519 {
c5aa993b
JM
1520 case C_NULL:
1521 break;
c906108c 1522
c5aa993b
JM
1523 case C_AUTO:
1524 SYMBOL_CLASS (sym) = LOC_LOCAL;
1525 add_symbol_to_list (sym, &local_symbols);
1526 break;
c906108c 1527
c5aa993b
JM
1528 case C_THUMBEXT:
1529 case C_THUMBEXTFUNC:
1530 case C_EXT:
1531 SYMBOL_CLASS (sym) = LOC_STATIC;
1532 SYMBOL_VALUE_ADDRESS (sym) = (CORE_ADDR) cs->c_value;
b8fbeb18 1533 SYMBOL_VALUE_ADDRESS (sym) += ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
c5aa993b
JM
1534 add_symbol_to_list (sym, &global_symbols);
1535 break;
c906108c 1536
c5aa993b
JM
1537 case C_THUMBSTAT:
1538 case C_THUMBSTATFUNC:
1539 case C_STAT:
1540 SYMBOL_CLASS (sym) = LOC_STATIC;
1541 SYMBOL_VALUE_ADDRESS (sym) = (CORE_ADDR) cs->c_value;
b8fbeb18 1542 SYMBOL_VALUE_ADDRESS (sym) += ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
c5aa993b
JM
1543 if (within_function)
1544 {
c906108c
SS
1545 /* Static symbol of local scope */
1546 add_symbol_to_list (sym, &local_symbols);
1547 }
c5aa993b
JM
1548 else
1549 {
c906108c
SS
1550 /* Static symbol at top level of file */
1551 add_symbol_to_list (sym, &file_symbols);
1552 }
c5aa993b 1553 break;
c906108c
SS
1554
1555#ifdef C_GLBLREG /* AMD coff */
c5aa993b 1556 case C_GLBLREG:
c906108c 1557#endif
c5aa993b
JM
1558 case C_REG:
1559 SYMBOL_CLASS (sym) = LOC_REGISTER;
1560 SYMBOL_VALUE (sym) = SDB_REG_TO_REGNUM (cs->c_value);
1561 add_symbol_to_list (sym, &local_symbols);
1562 break;
c906108c 1563
c5aa993b
JM
1564 case C_THUMBLABEL:
1565 case C_LABEL:
1566 break;
c906108c 1567
c5aa993b
JM
1568 case C_ARG:
1569 SYMBOL_CLASS (sym) = LOC_ARG;
1570 add_symbol_to_list (sym, &local_symbols);
c906108c 1571#if !defined (BELIEVE_PCC_PROMOTION)
d7449b42 1572 if (TARGET_BYTE_ORDER == BFD_ENDIAN_BIG)
c5aa993b
JM
1573 {
1574 /* If PCC says a parameter is a short or a char,
1575 aligned on an int boundary, realign it to the
1576 "little end" of the int. */
1577 struct type *temptype;
1578 temptype = lookup_fundamental_type (current_objfile,
1579 FT_INTEGER);
1580 if (TYPE_LENGTH (SYMBOL_TYPE (sym)) < TYPE_LENGTH (temptype)
1581 && TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_INT
1582 && 0 == SYMBOL_VALUE (sym) % TYPE_LENGTH (temptype))
1583 {
1584 SYMBOL_VALUE (sym) +=
1585 TYPE_LENGTH (temptype)
1586 - TYPE_LENGTH (SYMBOL_TYPE (sym));
1587 }
1588 }
c906108c 1589#endif
c5aa993b 1590 break;
c906108c 1591
c5aa993b
JM
1592 case C_REGPARM:
1593 SYMBOL_CLASS (sym) = LOC_REGPARM;
1594 SYMBOL_VALUE (sym) = SDB_REG_TO_REGNUM (cs->c_value);
1595 add_symbol_to_list (sym, &local_symbols);
c906108c 1596#if !defined (BELIEVE_PCC_PROMOTION)
c5aa993b
JM
1597 /* FIXME: This should retain the current type, since it's just
1598 a register value. gnu@adobe, 26Feb93 */
1599 {
1600 /* If PCC says a parameter is a short or a char,
1601 it is really an int. */
1602 struct type *temptype;
1603 temptype =
1604 lookup_fundamental_type (current_objfile, FT_INTEGER);
1605 if (TYPE_LENGTH (SYMBOL_TYPE (sym)) < TYPE_LENGTH (temptype)
1606 && TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_INT)
c906108c 1607 {
c5aa993b
JM
1608 SYMBOL_TYPE (sym) =
1609 (TYPE_UNSIGNED (SYMBOL_TYPE (sym))
1610 ? lookup_fundamental_type (current_objfile,
1611 FT_UNSIGNED_INTEGER)
1612 : temptype);
c906108c 1613 }
c5aa993b 1614 }
c906108c 1615#endif
c5aa993b 1616 break;
c906108c 1617
c5aa993b
JM
1618 case C_TPDEF:
1619 SYMBOL_CLASS (sym) = LOC_TYPEDEF;
176620f1 1620 SYMBOL_DOMAIN (sym) = VAR_DOMAIN;
c5aa993b
JM
1621
1622 /* If type has no name, give it one */
1623 if (TYPE_NAME (SYMBOL_TYPE (sym)) == 0)
1624 {
1625 if (TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_PTR
1626 || TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_FUNC)
1627 {
1628 /* If we are giving a name to a type such as "pointer to
1629 foo" or "function returning foo", we better not set
1630 the TYPE_NAME. If the program contains "typedef char
1631 *caddr_t;", we don't want all variables of type char
1632 * to print as caddr_t. This is not just a
1633 consequence of GDB's type management; CC and GCC (at
1634 least through version 2.4) both output variables of
1635 either type char * or caddr_t with the type
1636 refering to the C_TPDEF symbol for caddr_t. If a future
1637 compiler cleans this up it GDB is not ready for it
1638 yet, but if it becomes ready we somehow need to
1639 disable this check (without breaking the PCC/GCC2.4
1640 case).
1641
1642 Sigh.
1643
1644 Fortunately, this check seems not to be necessary
1645 for anything except pointers or functions. */
1646 ;
1647 }
1648 else
1649 TYPE_NAME (SYMBOL_TYPE (sym)) =
1754f103 1650 concat (DEPRECATED_SYMBOL_NAME (sym), (char *)NULL);
c5aa993b 1651 }
c906108c 1652
c5aa993b
JM
1653 /* Keep track of any type which points to empty structured type,
1654 so it can be filled from a definition from another file. A
1655 simple forward reference (TYPE_CODE_UNDEF) is not an
1656 empty structured type, though; the forward references
1657 work themselves out via the magic of coff_lookup_type. */
1658 if (TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_PTR &&
1659 TYPE_LENGTH (TYPE_TARGET_TYPE (SYMBOL_TYPE (sym))) == 0 &&
1660 TYPE_CODE (TYPE_TARGET_TYPE (SYMBOL_TYPE (sym))) !=
1661 TYPE_CODE_UNDEF)
1662 {
aa1ee363 1663 int i = hashname (DEPRECATED_SYMBOL_NAME (sym));
c906108c 1664
c5aa993b
JM
1665 SYMBOL_VALUE_CHAIN (sym) = opaque_type_chain[i];
1666 opaque_type_chain[i] = sym;
1667 }
1668 add_symbol_to_list (sym, &file_symbols);
1669 break;
c906108c 1670
c5aa993b
JM
1671 case C_STRTAG:
1672 case C_UNTAG:
1673 case C_ENTAG:
1674 SYMBOL_CLASS (sym) = LOC_TYPEDEF;
176620f1 1675 SYMBOL_DOMAIN (sym) = STRUCT_DOMAIN;
c5aa993b
JM
1676
1677 /* Some compilers try to be helpful by inventing "fake"
1678 names for anonymous enums, structures, and unions, like
1679 "~0fake" or ".0fake". Thanks, but no thanks... */
1680 if (TYPE_TAG_NAME (SYMBOL_TYPE (sym)) == 0)
22abf04a
DC
1681 if (DEPRECATED_SYMBOL_NAME (sym) != NULL
1682 && *DEPRECATED_SYMBOL_NAME (sym) != '~'
1683 && *DEPRECATED_SYMBOL_NAME (sym) != '.')
c5aa993b 1684 TYPE_TAG_NAME (SYMBOL_TYPE (sym)) =
1754f103 1685 concat (DEPRECATED_SYMBOL_NAME (sym), (char *)NULL);
c5aa993b
JM
1686
1687 add_symbol_to_list (sym, &file_symbols);
1688 break;
c906108c 1689
c5aa993b
JM
1690 default:
1691 break;
c906108c
SS
1692 }
1693 }
1694 return sym;
1695}
1696\f
1697/* Decode a coff type specifier; return the type that is meant. */
1698
1699static struct type *
aa1ee363
AC
1700decode_type (struct coff_symbol *cs, unsigned int c_type,
1701 union internal_auxent *aux)
c906108c 1702{
52f0bd74 1703 struct type *type = 0;
c906108c
SS
1704 unsigned int new_c_type;
1705
1706 if (c_type & ~N_BTMASK)
1707 {
1708 new_c_type = DECREF (c_type);
1709 if (ISPTR (c_type))
1710 {
1711 type = decode_type (cs, new_c_type, aux);
1712 type = lookup_pointer_type (type);
1713 }
1714 else if (ISFCN (c_type))
1715 {
1716 type = decode_type (cs, new_c_type, aux);
1717 type = lookup_function_type (type);
1718 }
1719 else if (ISARY (c_type))
1720 {
1721 int i, n;
aa1ee363 1722 unsigned short *dim;
c906108c
SS
1723 struct type *base_type, *index_type, *range_type;
1724
1725 /* Define an array type. */
1726 /* auxent refers to array, not base type */
1727 if (aux->x_sym.x_tagndx.l == 0)
1728 cs->c_naux = 0;
1729
1730 /* shift the indices down */
1731 dim = &aux->x_sym.x_fcnary.x_ary.x_dimen[0];
1732 i = 1;
1733 n = dim[0];
1734 for (i = 0; *dim && i < DIMNUM - 1; i++, dim++)
1735 *dim = *(dim + 1);
1736 *dim = 0;
1737
1738 base_type = decode_type (cs, new_c_type, aux);
1739 index_type = lookup_fundamental_type (current_objfile, FT_INTEGER);
1740 range_type =
1741 create_range_type ((struct type *) NULL, index_type, 0, n - 1);
1742 type =
1743 create_array_type ((struct type *) NULL, base_type, range_type);
1744 }
1745 return type;
1746 }
1747
1748 /* Reference to existing type. This only occurs with the
1749 struct, union, and enum types. EPI a29k coff
1750 fakes us out by producing aux entries with a nonzero
1751 x_tagndx for definitions of structs, unions, and enums, so we
1752 have to check the c_sclass field. SCO 3.2v4 cc gets confused
1753 with pointers to pointers to defined structs, and generates
1754 negative x_tagndx fields. */
1755 if (cs->c_naux > 0 && aux->x_sym.x_tagndx.l != 0)
1756 {
1757 if (cs->c_sclass != C_STRTAG
1758 && cs->c_sclass != C_UNTAG
1759 && cs->c_sclass != C_ENTAG
1760 && aux->x_sym.x_tagndx.l >= 0)
1761 {
1762 type = coff_alloc_type (aux->x_sym.x_tagndx.l);
1763 return type;
1764 }
1765 else
1766 {
23136709 1767 complaint (&symfile_complaints,
3d263c1d 1768 _("Symbol table entry for %s has bad tagndx value"),
23136709 1769 cs->c_name);
c906108c
SS
1770 /* And fall through to decode_base_type... */
1771 }
1772 }
1773
1774 return decode_base_type (cs, BTYPE (c_type), aux);
1775}
1776
1777/* Decode a coff type specifier for function definition;
1778 return the type that the function returns. */
1779
1780static struct type *
aa1ee363
AC
1781decode_function_type (struct coff_symbol *cs, unsigned int c_type,
1782 union internal_auxent *aux)
c906108c
SS
1783{
1784 if (aux->x_sym.x_tagndx.l == 0)
c5aa993b 1785 cs->c_naux = 0; /* auxent refers to function, not base type */
c906108c
SS
1786
1787 return decode_type (cs, DECREF (c_type), aux);
1788}
1789\f
1790/* basic C types */
1791
1792static struct type *
aa1ee363
AC
1793decode_base_type (struct coff_symbol *cs, unsigned int c_type,
1794 union internal_auxent *aux)
c906108c
SS
1795{
1796 struct type *type;
1797
1798 switch (c_type)
1799 {
c5aa993b
JM
1800 case T_NULL:
1801 /* shows up with "void (*foo)();" structure members */
1802 return lookup_fundamental_type (current_objfile, FT_VOID);
c906108c 1803
c906108c 1804#ifdef T_VOID
c5aa993b
JM
1805 case T_VOID:
1806 /* Intel 960 COFF has this symbol and meaning. */
1807 return lookup_fundamental_type (current_objfile, FT_VOID);
c906108c
SS
1808#endif
1809
c5aa993b
JM
1810 case T_CHAR:
1811 return lookup_fundamental_type (current_objfile, FT_CHAR);
c906108c 1812
c5aa993b
JM
1813 case T_SHORT:
1814 return lookup_fundamental_type (current_objfile, FT_SHORT);
c906108c 1815
c5aa993b
JM
1816 case T_INT:
1817 return lookup_fundamental_type (current_objfile, FT_INTEGER);
c906108c 1818
c5aa993b
JM
1819 case T_LONG:
1820 if (cs->c_sclass == C_FIELD
1821 && aux->x_sym.x_misc.x_lnsz.x_size > TARGET_LONG_BIT)
1822 return lookup_fundamental_type (current_objfile, FT_LONG_LONG);
1823 else
1824 return lookup_fundamental_type (current_objfile, FT_LONG);
c906108c 1825
c5aa993b
JM
1826 case T_FLOAT:
1827 return lookup_fundamental_type (current_objfile, FT_FLOAT);
c906108c 1828
c5aa993b
JM
1829 case T_DOUBLE:
1830 return lookup_fundamental_type (current_objfile, FT_DBL_PREC_FLOAT);
c906108c 1831
c5aa993b
JM
1832 case T_LNGDBL:
1833 return lookup_fundamental_type (current_objfile, FT_EXT_PREC_FLOAT);
c906108c 1834
c5aa993b
JM
1835 case T_STRUCT:
1836 if (cs->c_naux != 1)
1837 {
1838 /* anonymous structure type */
1839 type = coff_alloc_type (cs->c_symnum);
1840 TYPE_CODE (type) = TYPE_CODE_STRUCT;
1841 TYPE_NAME (type) = NULL;
1842 /* This used to set the tag to "<opaque>". But I think setting it
1843 to NULL is right, and the printing code can print it as
1844 "struct {...}". */
1845 TYPE_TAG_NAME (type) = NULL;
1846 INIT_CPLUS_SPECIFIC (type);
1847 TYPE_LENGTH (type) = 0;
1848 TYPE_FIELDS (type) = 0;
1849 TYPE_NFIELDS (type) = 0;
1850 }
1851 else
1852 {
1853 type = coff_read_struct_type (cs->c_symnum,
1854 aux->x_sym.x_misc.x_lnsz.x_size,
1855 aux->x_sym.x_fcnary.x_fcn.x_endndx.l);
1856 }
1857 return type;
c906108c 1858
c5aa993b
JM
1859 case T_UNION:
1860 if (cs->c_naux != 1)
1861 {
1862 /* anonymous union type */
1863 type = coff_alloc_type (cs->c_symnum);
1864 TYPE_NAME (type) = NULL;
1865 /* This used to set the tag to "<opaque>". But I think setting it
1866 to NULL is right, and the printing code can print it as
1867 "union {...}". */
1868 TYPE_TAG_NAME (type) = NULL;
1869 INIT_CPLUS_SPECIFIC (type);
1870 TYPE_LENGTH (type) = 0;
1871 TYPE_FIELDS (type) = 0;
1872 TYPE_NFIELDS (type) = 0;
1873 }
1874 else
1875 {
1876 type = coff_read_struct_type (cs->c_symnum,
c906108c 1877 aux->x_sym.x_misc.x_lnsz.x_size,
c5aa993b
JM
1878 aux->x_sym.x_fcnary.x_fcn.x_endndx.l);
1879 }
1880 TYPE_CODE (type) = TYPE_CODE_UNION;
1881 return type;
c906108c 1882
c5aa993b
JM
1883 case T_ENUM:
1884 if (cs->c_naux != 1)
1885 {
1886 /* anonymous enum type */
1887 type = coff_alloc_type (cs->c_symnum);
1888 TYPE_CODE (type) = TYPE_CODE_ENUM;
1889 TYPE_NAME (type) = NULL;
1890 /* This used to set the tag to "<opaque>". But I think setting it
1891 to NULL is right, and the printing code can print it as
1892 "enum {...}". */
1893 TYPE_TAG_NAME (type) = NULL;
1894 TYPE_LENGTH (type) = 0;
1895 TYPE_FIELDS (type) = 0;
1896 TYPE_NFIELDS (type) = 0;
1897 }
1898 else
1899 {
1900 type = coff_read_enum_type (cs->c_symnum,
1901 aux->x_sym.x_misc.x_lnsz.x_size,
1902 aux->x_sym.x_fcnary.x_fcn.x_endndx.l);
1903 }
1904 return type;
1905
1906 case T_MOE:
1907 /* shouldn't show up here */
1908 break;
c906108c 1909
c5aa993b
JM
1910 case T_UCHAR:
1911 return lookup_fundamental_type (current_objfile, FT_UNSIGNED_CHAR);
c906108c 1912
c5aa993b
JM
1913 case T_USHORT:
1914 return lookup_fundamental_type (current_objfile, FT_UNSIGNED_SHORT);
c906108c 1915
c5aa993b
JM
1916 case T_UINT:
1917 return lookup_fundamental_type (current_objfile, FT_UNSIGNED_INTEGER);
c906108c 1918
c5aa993b
JM
1919 case T_ULONG:
1920 if (cs->c_sclass == C_FIELD
1921 && aux->x_sym.x_misc.x_lnsz.x_size > TARGET_LONG_BIT)
1922 return lookup_fundamental_type (current_objfile, FT_UNSIGNED_LONG_LONG);
1923 else
1924 return lookup_fundamental_type (current_objfile, FT_UNSIGNED_LONG);
c906108c 1925 }
3d263c1d 1926 complaint (&symfile_complaints, _("Unexpected type for symbol %s"), cs->c_name);
c906108c
SS
1927 return lookup_fundamental_type (current_objfile, FT_VOID);
1928}
1929\f
1930/* This page contains subroutines of read_type. */
1931
1932/* Read the description of a structure (or union type) and return an
1933 object describing the type. */
1934
1935static struct type *
fba45db2 1936coff_read_struct_type (int index, int length, int lastsym)
c906108c
SS
1937{
1938 struct nextfield
1939 {
1940 struct nextfield *next;
1941 struct field field;
1942 };
1943
52f0bd74
AC
1944 struct type *type;
1945 struct nextfield *list = 0;
c906108c
SS
1946 struct nextfield *new;
1947 int nfields = 0;
52f0bd74 1948 int n;
c906108c
SS
1949 char *name;
1950 struct coff_symbol member_sym;
52f0bd74 1951 struct coff_symbol *ms = &member_sym;
c906108c
SS
1952 struct internal_syment sub_sym;
1953 union internal_auxent sub_aux;
1954 int done = 0;
1955
1956 type = coff_alloc_type (index);
1957 TYPE_CODE (type) = TYPE_CODE_STRUCT;
c5aa993b 1958 INIT_CPLUS_SPECIFIC (type);
c906108c
SS
1959 TYPE_LENGTH (type) = length;
1960
1961 while (!done && symnum < lastsym && symnum < nlist_nsyms_global)
1962 {
1963 read_one_sym (ms, &sub_sym, &sub_aux);
1964 name = ms->c_name;
1965 name = EXTERNAL_NAME (name, current_objfile->obfd);
1966
1967 switch (ms->c_sclass)
1968 {
c5aa993b
JM
1969 case C_MOS:
1970 case C_MOU:
1971
1972 /* Get space to record the next field's data. */
1973 new = (struct nextfield *) alloca (sizeof (struct nextfield));
1974 new->next = list;
1975 list = new;
1976
1977 /* Save the data. */
1978 list->field.name =
1979 obsavestring (name,
1980 strlen (name),
4a146b47 1981 &current_objfile->objfile_obstack);
c5aa993b
JM
1982 FIELD_TYPE (list->field) = decode_type (ms, ms->c_type, &sub_aux);
1983 FIELD_BITPOS (list->field) = 8 * ms->c_value;
1984 FIELD_BITSIZE (list->field) = 0;
01ad7f36 1985 FIELD_STATIC_KIND (list->field) = 0;
c5aa993b
JM
1986 nfields++;
1987 break;
c906108c 1988
c5aa993b
JM
1989 case C_FIELD:
1990
1991 /* Get space to record the next field's data. */
1992 new = (struct nextfield *) alloca (sizeof (struct nextfield));
1993 new->next = list;
1994 list = new;
1995
1996 /* Save the data. */
1997 list->field.name =
1998 obsavestring (name,
1999 strlen (name),
4a146b47 2000 &current_objfile->objfile_obstack);
c5aa993b
JM
2001 FIELD_TYPE (list->field) = decode_type (ms, ms->c_type, &sub_aux);
2002 FIELD_BITPOS (list->field) = ms->c_value;
2003 FIELD_BITSIZE (list->field) = sub_aux.x_sym.x_misc.x_lnsz.x_size;
01ad7f36 2004 FIELD_STATIC_KIND (list->field) = 0;
c5aa993b
JM
2005 nfields++;
2006 break;
c906108c 2007
c5aa993b
JM
2008 case C_EOS:
2009 done = 1;
2010 break;
c906108c
SS
2011 }
2012 }
2013 /* Now create the vector of fields, and record how big it is. */
2014
2015 TYPE_NFIELDS (type) = nfields;
2016 TYPE_FIELDS (type) = (struct field *)
2017 TYPE_ALLOC (type, sizeof (struct field) * nfields);
2018
2019 /* Copy the saved-up fields into the field vector. */
2020
2021 for (n = nfields; list; list = list->next)
2022 TYPE_FIELD (type, --n) = list->field;
2023
2024 return type;
2025}
2026\f
2027/* Read a definition of an enumeration type,
2028 and create and return a suitable type object.
2029 Also defines the symbols that represent the values of the type. */
2030
c906108c 2031static struct type *
fba45db2 2032coff_read_enum_type (int index, int length, int lastsym)
c906108c 2033{
52f0bd74
AC
2034 struct symbol *sym;
2035 struct type *type;
c906108c
SS
2036 int nsyms = 0;
2037 int done = 0;
2038 struct pending **symlist;
2039 struct coff_symbol member_sym;
52f0bd74 2040 struct coff_symbol *ms = &member_sym;
c906108c
SS
2041 struct internal_syment sub_sym;
2042 union internal_auxent sub_aux;
2043 struct pending *osyms, *syms;
2044 int o_nsyms;
52f0bd74 2045 int n;
c906108c
SS
2046 char *name;
2047 int unsigned_enum = 1;
2048
2049 type = coff_alloc_type (index);
2050 if (within_function)
2051 symlist = &local_symbols;
2052 else
2053 symlist = &file_symbols;
2054 osyms = *symlist;
2055 o_nsyms = osyms ? osyms->nsyms : 0;
2056
2057 while (!done && symnum < lastsym && symnum < nlist_nsyms_global)
2058 {
2059 read_one_sym (ms, &sub_sym, &sub_aux);
2060 name = ms->c_name;
2061 name = EXTERNAL_NAME (name, current_objfile->obfd);
2062
2063 switch (ms->c_sclass)
2064 {
c5aa993b
JM
2065 case C_MOE:
2066 sym = (struct symbol *) obstack_alloc
4a146b47 2067 (&current_objfile->objfile_obstack,
c5aa993b
JM
2068 sizeof (struct symbol));
2069 memset (sym, 0, sizeof (struct symbol));
2070
22abf04a 2071 DEPRECATED_SYMBOL_NAME (sym) =
c5aa993b 2072 obsavestring (name, strlen (name),
4a146b47 2073 &current_objfile->objfile_obstack);
c5aa993b 2074 SYMBOL_CLASS (sym) = LOC_CONST;
176620f1 2075 SYMBOL_DOMAIN (sym) = VAR_DOMAIN;
c5aa993b
JM
2076 SYMBOL_VALUE (sym) = ms->c_value;
2077 add_symbol_to_list (sym, symlist);
2078 nsyms++;
2079 break;
c906108c 2080
c5aa993b
JM
2081 case C_EOS:
2082 /* Sometimes the linker (on 386/ix 2.0.2 at least) screws
2083 up the count of how many symbols to read. So stop
2084 on .eos. */
2085 done = 1;
2086 break;
c906108c
SS
2087 }
2088 }
2089
2090 /* Now fill in the fields of the type-structure. */
2091
2092 if (length > 0)
2093 TYPE_LENGTH (type) = length;
2094 else
c5aa993b 2095 TYPE_LENGTH (type) = TARGET_INT_BIT / TARGET_CHAR_BIT; /* Assume ints */
c906108c
SS
2096 TYPE_CODE (type) = TYPE_CODE_ENUM;
2097 TYPE_NFIELDS (type) = nsyms;
2098 TYPE_FIELDS (type) = (struct field *)
2099 TYPE_ALLOC (type, sizeof (struct field) * nsyms);
2100
2101 /* Find the symbols for the values and put them into the type.
2102 The symbols can be found in the symlist that we put them on
2103 to cause them to be defined. osyms contains the old value
2104 of that symlist; everything up to there was defined by us. */
2105 /* Note that we preserve the order of the enum constants, so
2106 that in something like "enum {FOO, LAST_THING=FOO}" we print
2107 FOO, not LAST_THING. */
2108
2109 for (syms = *symlist, n = 0; syms; syms = syms->next)
2110 {
2111 int j = 0;
2112
2113 if (syms == osyms)
2114 j = o_nsyms;
c5aa993b 2115 for (; j < syms->nsyms; j++, n++)
c906108c
SS
2116 {
2117 struct symbol *xsym = syms->symbol[j];
2118 SYMBOL_TYPE (xsym) = type;
22abf04a 2119 TYPE_FIELD_NAME (type, n) = DEPRECATED_SYMBOL_NAME (xsym);
c906108c
SS
2120 TYPE_FIELD_BITPOS (type, n) = SYMBOL_VALUE (xsym);
2121 if (SYMBOL_VALUE (xsym) < 0)
2122 unsigned_enum = 0;
2123 TYPE_FIELD_BITSIZE (type, n) = 0;
01ad7f36 2124 TYPE_FIELD_STATIC_KIND (type, n) = 0;
c906108c
SS
2125 }
2126 if (syms == osyms)
2127 break;
2128 }
2129
2130 if (unsigned_enum)
2131 TYPE_FLAGS (type) |= TYPE_FLAG_UNSIGNED;
2132
2133 return type;
2134}
2135
2136/* Register our ability to parse symbols for coff BFD files. */
2137
2138static struct sym_fns coff_sym_fns =
2139{
2140 bfd_target_coff_flavour,
c5aa993b
JM
2141 coff_new_init, /* sym_new_init: init anything gbl to entire symtab */
2142 coff_symfile_init, /* sym_init: read initial info, setup for sym_read() */
2143 coff_symfile_read, /* sym_read: read a symbol file into symtab */
2144 coff_symfile_finish, /* sym_finish: finished with file, cleanup */
96baa820 2145 default_symfile_offsets, /* sym_offsets: xlate external to internal form */
c5aa993b 2146 NULL /* next: pointer to next struct sym_fns */
c906108c
SS
2147};
2148
2149void
fba45db2 2150_initialize_coffread (void)
c906108c
SS
2151{
2152 add_symtab_fns (&coff_sym_fns);
2153}
This page took 0.518131 seconds and 4 git commands to generate.