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