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