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