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