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