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