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