]>
Commit | Line | Data |
---|---|---|
c906108c | 1 | /* DWARF 2 debugging format support for GDB. |
917c78fc | 2 | |
6aba47ca DJ |
3 | Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, |
4 | 2004, 2005, 2006, 2007 Free Software Foundation, Inc. | |
c906108c SS |
5 | |
6 | Adapted by Gary Funck ([email protected]), Intrepid Technology, | |
7 | Inc. with support from Florida State University (under contract | |
8 | with the Ada Joint Program Office), and Silicon Graphics, Inc. | |
9 | Initial contribution by Brent Benson, Harris Computer Systems, Inc., | |
10 | based on Fred Fish's (Cygnus Support) implementation of DWARF 1 | |
7ce59000 | 11 | support. |
c906108c | 12 | |
c5aa993b | 13 | This file is part of GDB. |
c906108c | 14 | |
c5aa993b JM |
15 | This program is free software; you can redistribute it and/or modify |
16 | it under the terms of the GNU General Public License as published by | |
17 | the Free Software Foundation; either version 2 of the License, or (at | |
18 | your option) any later version. | |
c906108c | 19 | |
c5aa993b JM |
20 | This program is distributed in the hope that it will be useful, but |
21 | WITHOUT ANY WARRANTY; without even the implied warranty of | |
22 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
23 | General Public License for more details. | |
c906108c | 24 | |
c5aa993b JM |
25 | You should have received a copy of the GNU General Public License |
26 | along with this program; if not, write to the Free Software | |
197e01b6 EZ |
27 | Foundation, Inc., 51 Franklin Street, Fifth Floor, |
28 | Boston, MA 02110-1301, USA. */ | |
c906108c SS |
29 | |
30 | #include "defs.h" | |
31 | #include "bfd.h" | |
c906108c SS |
32 | #include "symtab.h" |
33 | #include "gdbtypes.h" | |
c906108c SS |
34 | #include "objfiles.h" |
35 | #include "elf/dwarf2.h" | |
36 | #include "buildsym.h" | |
37 | #include "demangle.h" | |
38 | #include "expression.h" | |
d5166ae1 | 39 | #include "filenames.h" /* for DOSish file names */ |
2e276125 | 40 | #include "macrotab.h" |
c906108c SS |
41 | #include "language.h" |
42 | #include "complaints.h" | |
357e46e7 | 43 | #include "bcache.h" |
4c2df51b DJ |
44 | #include "dwarf2expr.h" |
45 | #include "dwarf2loc.h" | |
9219021c | 46 | #include "cp-support.h" |
72bf9492 | 47 | #include "hashtab.h" |
ae038cb0 DJ |
48 | #include "command.h" |
49 | #include "gdbcmd.h" | |
4c2df51b | 50 | |
c906108c SS |
51 | #include <fcntl.h> |
52 | #include "gdb_string.h" | |
4bdf3d34 | 53 | #include "gdb_assert.h" |
c906108c SS |
54 | #include <sys/types.h> |
55 | ||
d8151005 DJ |
56 | /* A note on memory usage for this file. |
57 | ||
58 | At the present time, this code reads the debug info sections into | |
59 | the objfile's objfile_obstack. A definite improvement for startup | |
60 | time, on platforms which do not emit relocations for debug | |
61 | sections, would be to use mmap instead. The object's complete | |
62 | debug information is loaded into memory, partly to simplify | |
63 | absolute DIE references. | |
64 | ||
65 | Whether using obstacks or mmap, the sections should remain loaded | |
66 | until the objfile is released, and pointers into the section data | |
67 | can be used for any other data associated to the objfile (symbol | |
68 | names, type names, location expressions to name a few). */ | |
69 | ||
107d2387 | 70 | #if 0 |
357e46e7 | 71 | /* .debug_info header for a compilation unit |
c906108c SS |
72 | Because of alignment constraints, this structure has padding and cannot |
73 | be mapped directly onto the beginning of the .debug_info section. */ | |
74 | typedef struct comp_unit_header | |
75 | { | |
76 | unsigned int length; /* length of the .debug_info | |
77 | contribution */ | |
78 | unsigned short version; /* version number -- 2 for DWARF | |
79 | version 2 */ | |
80 | unsigned int abbrev_offset; /* offset into .debug_abbrev section */ | |
81 | unsigned char addr_size; /* byte size of an address -- 4 */ | |
82 | } | |
83 | _COMP_UNIT_HEADER; | |
84 | #define _ACTUAL_COMP_UNIT_HEADER_SIZE 11 | |
107d2387 | 85 | #endif |
c906108c SS |
86 | |
87 | /* .debug_pubnames header | |
88 | Because of alignment constraints, this structure has padding and cannot | |
89 | be mapped directly onto the beginning of the .debug_info section. */ | |
90 | typedef struct pubnames_header | |
91 | { | |
92 | unsigned int length; /* length of the .debug_pubnames | |
93 | contribution */ | |
94 | unsigned char version; /* version number -- 2 for DWARF | |
95 | version 2 */ | |
96 | unsigned int info_offset; /* offset into .debug_info section */ | |
97 | unsigned int info_size; /* byte size of .debug_info section | |
98 | portion */ | |
99 | } | |
100 | _PUBNAMES_HEADER; | |
101 | #define _ACTUAL_PUBNAMES_HEADER_SIZE 13 | |
102 | ||
103 | /* .debug_pubnames header | |
104 | Because of alignment constraints, this structure has padding and cannot | |
105 | be mapped directly onto the beginning of the .debug_info section. */ | |
106 | typedef struct aranges_header | |
107 | { | |
108 | unsigned int length; /* byte len of the .debug_aranges | |
109 | contribution */ | |
110 | unsigned short version; /* version number -- 2 for DWARF | |
111 | version 2 */ | |
112 | unsigned int info_offset; /* offset into .debug_info section */ | |
113 | unsigned char addr_size; /* byte size of an address */ | |
114 | unsigned char seg_size; /* byte size of segment descriptor */ | |
115 | } | |
116 | _ARANGES_HEADER; | |
117 | #define _ACTUAL_ARANGES_HEADER_SIZE 12 | |
118 | ||
119 | /* .debug_line statement program prologue | |
120 | Because of alignment constraints, this structure has padding and cannot | |
121 | be mapped directly onto the beginning of the .debug_info section. */ | |
122 | typedef struct statement_prologue | |
123 | { | |
124 | unsigned int total_length; /* byte length of the statement | |
125 | information */ | |
126 | unsigned short version; /* version number -- 2 for DWARF | |
127 | version 2 */ | |
128 | unsigned int prologue_length; /* # bytes between prologue & | |
129 | stmt program */ | |
130 | unsigned char minimum_instruction_length; /* byte size of | |
131 | smallest instr */ | |
132 | unsigned char default_is_stmt; /* initial value of is_stmt | |
133 | register */ | |
134 | char line_base; | |
135 | unsigned char line_range; | |
136 | unsigned char opcode_base; /* number assigned to first special | |
137 | opcode */ | |
138 | unsigned char *standard_opcode_lengths; | |
139 | } | |
140 | _STATEMENT_PROLOGUE; | |
141 | ||
6502dd73 DJ |
142 | static const struct objfile_data *dwarf2_objfile_data_key; |
143 | ||
144 | struct dwarf2_per_objfile | |
145 | { | |
146 | /* Sizes of debugging sections. */ | |
147 | unsigned int info_size; | |
148 | unsigned int abbrev_size; | |
149 | unsigned int line_size; | |
150 | unsigned int pubnames_size; | |
151 | unsigned int aranges_size; | |
152 | unsigned int loc_size; | |
153 | unsigned int macinfo_size; | |
154 | unsigned int str_size; | |
155 | unsigned int ranges_size; | |
156 | unsigned int frame_size; | |
157 | unsigned int eh_frame_size; | |
158 | ||
159 | /* Loaded data from the sections. */ | |
fe1b8b76 JB |
160 | gdb_byte *info_buffer; |
161 | gdb_byte *abbrev_buffer; | |
162 | gdb_byte *line_buffer; | |
163 | gdb_byte *str_buffer; | |
164 | gdb_byte *macinfo_buffer; | |
165 | gdb_byte *ranges_buffer; | |
166 | gdb_byte *loc_buffer; | |
ae038cb0 | 167 | |
10b3939b DJ |
168 | /* A list of all the compilation units. This is used to locate |
169 | the target compilation unit of a particular reference. */ | |
ae038cb0 DJ |
170 | struct dwarf2_per_cu_data **all_comp_units; |
171 | ||
172 | /* The number of compilation units in ALL_COMP_UNITS. */ | |
173 | int n_comp_units; | |
174 | ||
175 | /* A chain of compilation units that are currently read in, so that | |
176 | they can be freed later. */ | |
177 | struct dwarf2_per_cu_data *read_in_chain; | |
72dca2f5 FR |
178 | |
179 | /* A flag indicating wether this objfile has a section loaded at a | |
180 | VMA of 0. */ | |
181 | int has_section_at_zero; | |
6502dd73 DJ |
182 | }; |
183 | ||
184 | static struct dwarf2_per_objfile *dwarf2_per_objfile; | |
c906108c | 185 | |
086df311 DJ |
186 | static asection *dwarf_info_section; |
187 | static asection *dwarf_abbrev_section; | |
188 | static asection *dwarf_line_section; | |
189 | static asection *dwarf_pubnames_section; | |
190 | static asection *dwarf_aranges_section; | |
191 | static asection *dwarf_loc_section; | |
192 | static asection *dwarf_macinfo_section; | |
193 | static asection *dwarf_str_section; | |
194 | static asection *dwarf_ranges_section; | |
195 | asection *dwarf_frame_section; | |
196 | asection *dwarf_eh_frame_section; | |
197 | ||
c906108c SS |
198 | /* names of the debugging sections */ |
199 | ||
200 | #define INFO_SECTION ".debug_info" | |
201 | #define ABBREV_SECTION ".debug_abbrev" | |
202 | #define LINE_SECTION ".debug_line" | |
203 | #define PUBNAMES_SECTION ".debug_pubnames" | |
204 | #define ARANGES_SECTION ".debug_aranges" | |
205 | #define LOC_SECTION ".debug_loc" | |
206 | #define MACINFO_SECTION ".debug_macinfo" | |
207 | #define STR_SECTION ".debug_str" | |
af34e669 | 208 | #define RANGES_SECTION ".debug_ranges" |
b6af0555 JS |
209 | #define FRAME_SECTION ".debug_frame" |
210 | #define EH_FRAME_SECTION ".eh_frame" | |
c906108c SS |
211 | |
212 | /* local data types */ | |
213 | ||
57349743 JB |
214 | /* We hold several abbreviation tables in memory at the same time. */ |
215 | #ifndef ABBREV_HASH_SIZE | |
216 | #define ABBREV_HASH_SIZE 121 | |
217 | #endif | |
218 | ||
107d2387 AC |
219 | /* The data in a compilation unit header, after target2host |
220 | translation, looks like this. */ | |
c906108c | 221 | struct comp_unit_head |
a738430d MK |
222 | { |
223 | unsigned long length; | |
224 | short version; | |
225 | unsigned int abbrev_offset; | |
226 | unsigned char addr_size; | |
227 | unsigned char signed_addr_p; | |
57349743 | 228 | |
a738430d MK |
229 | /* Size of file offsets; either 4 or 8. */ |
230 | unsigned int offset_size; | |
57349743 | 231 | |
a738430d MK |
232 | /* Size of the length field; either 4 or 12. */ |
233 | unsigned int initial_length_size; | |
57349743 | 234 | |
a738430d MK |
235 | /* Offset to the first byte of this compilation unit header in the |
236 | .debug_info section, for resolving relative reference dies. */ | |
237 | unsigned int offset; | |
57349743 | 238 | |
a738430d MK |
239 | /* Pointer to this compilation unit header in the .debug_info |
240 | section. */ | |
fe1b8b76 | 241 | gdb_byte *cu_head_ptr; |
57349743 | 242 | |
a738430d MK |
243 | /* Pointer to the first die of this compilation unit. This will be |
244 | the first byte following the compilation unit header. */ | |
fe1b8b76 | 245 | gdb_byte *first_die_ptr; |
af34e669 | 246 | |
a738430d MK |
247 | /* Pointer to the next compilation unit header in the program. */ |
248 | struct comp_unit_head *next; | |
0d53c4c4 | 249 | |
a738430d MK |
250 | /* Base address of this compilation unit. */ |
251 | CORE_ADDR base_address; | |
0d53c4c4 | 252 | |
a738430d MK |
253 | /* Non-zero if base_address has been set. */ |
254 | int base_known; | |
255 | }; | |
c906108c | 256 | |
10b3939b DJ |
257 | /* Fixed size for the DIE hash table. */ |
258 | #ifndef REF_HASH_SIZE | |
259 | #define REF_HASH_SIZE 1021 | |
260 | #endif | |
261 | ||
e7c27a73 DJ |
262 | /* Internal state when decoding a particular compilation unit. */ |
263 | struct dwarf2_cu | |
264 | { | |
265 | /* The objfile containing this compilation unit. */ | |
266 | struct objfile *objfile; | |
267 | ||
268 | /* The header of the compilation unit. | |
269 | ||
270 | FIXME drow/2003-11-10: Some of the things from the comp_unit_head | |
f3dd6933 | 271 | should logically be moved to the dwarf2_cu structure. */ |
e7c27a73 | 272 | struct comp_unit_head header; |
e142c38c DJ |
273 | |
274 | struct function_range *first_fn, *last_fn, *cached_fn; | |
275 | ||
276 | /* The language we are debugging. */ | |
277 | enum language language; | |
278 | const struct language_defn *language_defn; | |
279 | ||
b0f35d58 DL |
280 | const char *producer; |
281 | ||
e142c38c DJ |
282 | /* The generic symbol table building routines have separate lists for |
283 | file scope symbols and all all other scopes (local scopes). So | |
284 | we need to select the right one to pass to add_symbol_to_list(). | |
285 | We do it by keeping a pointer to the correct list in list_in_scope. | |
286 | ||
287 | FIXME: The original dwarf code just treated the file scope as the | |
288 | first local scope, and all other local scopes as nested local | |
289 | scopes, and worked fine. Check to see if we really need to | |
290 | distinguish these in buildsym.c. */ | |
291 | struct pending **list_in_scope; | |
292 | ||
293 | /* Maintain an array of referenced fundamental types for the current | |
294 | compilation unit being read. For DWARF version 1, we have to construct | |
295 | the fundamental types on the fly, since no information about the | |
296 | fundamental types is supplied. Each such fundamental type is created by | |
297 | calling a language dependent routine to create the type, and then a | |
298 | pointer to that type is then placed in the array at the index specified | |
299 | by it's FT_<TYPENAME> value. The array has a fixed size set by the | |
300 | FT_NUM_MEMBERS compile time constant, which is the number of predefined | |
301 | fundamental types gdb knows how to construct. */ | |
302 | struct type *ftypes[FT_NUM_MEMBERS]; /* Fundamental types */ | |
f3dd6933 DJ |
303 | |
304 | /* DWARF abbreviation table associated with this compilation unit. */ | |
305 | struct abbrev_info **dwarf2_abbrevs; | |
306 | ||
307 | /* Storage for the abbrev table. */ | |
308 | struct obstack abbrev_obstack; | |
72bf9492 DJ |
309 | |
310 | /* Hash table holding all the loaded partial DIEs. */ | |
311 | htab_t partial_dies; | |
312 | ||
313 | /* Storage for things with the same lifetime as this read-in compilation | |
314 | unit, including partial DIEs. */ | |
315 | struct obstack comp_unit_obstack; | |
316 | ||
ae038cb0 DJ |
317 | /* When multiple dwarf2_cu structures are living in memory, this field |
318 | chains them all together, so that they can be released efficiently. | |
319 | We will probably also want a generation counter so that most-recently-used | |
320 | compilation units are cached... */ | |
321 | struct dwarf2_per_cu_data *read_in_chain; | |
322 | ||
323 | /* Backchain to our per_cu entry if the tree has been built. */ | |
324 | struct dwarf2_per_cu_data *per_cu; | |
325 | ||
326 | /* How many compilation units ago was this CU last referenced? */ | |
327 | int last_used; | |
328 | ||
10b3939b DJ |
329 | /* A hash table of die offsets for following references. */ |
330 | struct die_info *die_ref_table[REF_HASH_SIZE]; | |
331 | ||
332 | /* Full DIEs if read in. */ | |
333 | struct die_info *dies; | |
334 | ||
335 | /* A set of pointers to dwarf2_per_cu_data objects for compilation | |
336 | units referenced by this one. Only set during full symbol processing; | |
337 | partial symbol tables do not have dependencies. */ | |
338 | htab_t dependencies; | |
339 | ||
cb1df416 DJ |
340 | /* Header data from the line table, during full symbol processing. */ |
341 | struct line_header *line_header; | |
342 | ||
ae038cb0 DJ |
343 | /* Mark used when releasing cached dies. */ |
344 | unsigned int mark : 1; | |
345 | ||
346 | /* This flag will be set if this compilation unit might include | |
347 | inter-compilation-unit references. */ | |
348 | unsigned int has_form_ref_addr : 1; | |
349 | ||
72bf9492 DJ |
350 | /* This flag will be set if this compilation unit includes any |
351 | DW_TAG_namespace DIEs. If we know that there are explicit | |
352 | DIEs for namespaces, we don't need to try to infer them | |
353 | from mangled names. */ | |
354 | unsigned int has_namespace_info : 1; | |
e7c27a73 DJ |
355 | }; |
356 | ||
10b3939b DJ |
357 | /* Persistent data held for a compilation unit, even when not |
358 | processing it. We put a pointer to this structure in the | |
359 | read_symtab_private field of the psymtab. If we encounter | |
360 | inter-compilation-unit references, we also maintain a sorted | |
361 | list of all compilation units. */ | |
362 | ||
ae038cb0 DJ |
363 | struct dwarf2_per_cu_data |
364 | { | |
5afb4e99 | 365 | /* The start offset and length of this compilation unit. 2**30-1 |
ae038cb0 DJ |
366 | bytes should suffice to store the length of any compilation unit |
367 | - if it doesn't, GDB will fall over anyway. */ | |
368 | unsigned long offset; | |
5afb4e99 | 369 | unsigned long length : 30; |
ae038cb0 DJ |
370 | |
371 | /* Flag indicating this compilation unit will be read in before | |
372 | any of the current compilation units are processed. */ | |
373 | unsigned long queued : 1; | |
374 | ||
5afb4e99 DJ |
375 | /* This flag will be set if we need to load absolutely all DIEs |
376 | for this compilation unit, instead of just the ones we think | |
377 | are interesting. It gets set if we look for a DIE in the | |
378 | hash table and don't find it. */ | |
379 | unsigned int load_all_dies : 1; | |
380 | ||
ae038cb0 DJ |
381 | /* Set iff currently read in. */ |
382 | struct dwarf2_cu *cu; | |
1c379e20 DJ |
383 | |
384 | /* If full symbols for this CU have been read in, then this field | |
385 | holds a map of DIE offsets to types. It isn't always possible | |
386 | to reconstruct this information later, so we have to preserve | |
387 | it. */ | |
1c379e20 | 388 | htab_t type_hash; |
10b3939b | 389 | |
31ffec48 DJ |
390 | /* The partial symbol table associated with this compilation unit, |
391 | or NULL for partial units (which do not have an associated | |
392 | symtab). */ | |
10b3939b | 393 | struct partial_symtab *psymtab; |
ae038cb0 DJ |
394 | }; |
395 | ||
debd256d JB |
396 | /* The line number information for a compilation unit (found in the |
397 | .debug_line section) begins with a "statement program header", | |
398 | which contains the following information. */ | |
399 | struct line_header | |
400 | { | |
401 | unsigned int total_length; | |
402 | unsigned short version; | |
403 | unsigned int header_length; | |
404 | unsigned char minimum_instruction_length; | |
405 | unsigned char default_is_stmt; | |
406 | int line_base; | |
407 | unsigned char line_range; | |
408 | unsigned char opcode_base; | |
409 | ||
410 | /* standard_opcode_lengths[i] is the number of operands for the | |
411 | standard opcode whose value is i. This means that | |
412 | standard_opcode_lengths[0] is unused, and the last meaningful | |
413 | element is standard_opcode_lengths[opcode_base - 1]. */ | |
414 | unsigned char *standard_opcode_lengths; | |
415 | ||
416 | /* The include_directories table. NOTE! These strings are not | |
417 | allocated with xmalloc; instead, they are pointers into | |
418 | debug_line_buffer. If you try to free them, `free' will get | |
419 | indigestion. */ | |
420 | unsigned int num_include_dirs, include_dirs_size; | |
421 | char **include_dirs; | |
422 | ||
423 | /* The file_names table. NOTE! These strings are not allocated | |
424 | with xmalloc; instead, they are pointers into debug_line_buffer. | |
425 | Don't try to free them directly. */ | |
426 | unsigned int num_file_names, file_names_size; | |
427 | struct file_entry | |
c906108c | 428 | { |
debd256d JB |
429 | char *name; |
430 | unsigned int dir_index; | |
431 | unsigned int mod_time; | |
432 | unsigned int length; | |
aaa75496 | 433 | int included_p; /* Non-zero if referenced by the Line Number Program. */ |
cb1df416 | 434 | struct symtab *symtab; /* The associated symbol table, if any. */ |
debd256d JB |
435 | } *file_names; |
436 | ||
437 | /* The start and end of the statement program following this | |
6502dd73 | 438 | header. These point into dwarf2_per_objfile->line_buffer. */ |
fe1b8b76 | 439 | gdb_byte *statement_program_start, *statement_program_end; |
debd256d | 440 | }; |
c906108c SS |
441 | |
442 | /* When we construct a partial symbol table entry we only | |
443 | need this much information. */ | |
444 | struct partial_die_info | |
445 | { | |
72bf9492 | 446 | /* Offset of this DIE. */ |
c906108c | 447 | unsigned int offset; |
72bf9492 DJ |
448 | |
449 | /* DWARF-2 tag for this DIE. */ | |
450 | ENUM_BITFIELD(dwarf_tag) tag : 16; | |
451 | ||
452 | /* Language code associated with this DIE. This is only used | |
453 | for the compilation unit DIE. */ | |
454 | unsigned int language : 8; | |
455 | ||
456 | /* Assorted flags describing the data found in this DIE. */ | |
457 | unsigned int has_children : 1; | |
458 | unsigned int is_external : 1; | |
459 | unsigned int is_declaration : 1; | |
460 | unsigned int has_type : 1; | |
461 | unsigned int has_specification : 1; | |
aaa75496 | 462 | unsigned int has_stmt_list : 1; |
72bf9492 DJ |
463 | unsigned int has_pc_info : 1; |
464 | ||
465 | /* Flag set if the SCOPE field of this structure has been | |
466 | computed. */ | |
467 | unsigned int scope_set : 1; | |
468 | ||
fa4028e9 JB |
469 | /* Flag set if the DIE has a byte_size attribute. */ |
470 | unsigned int has_byte_size : 1; | |
471 | ||
72bf9492 DJ |
472 | /* The name of this DIE. Normally the value of DW_AT_name, but |
473 | sometimes DW_TAG_MIPS_linkage_name or a string computed in some | |
474 | other fashion. */ | |
c906108c | 475 | char *name; |
57c22c6c | 476 | char *dirname; |
72bf9492 DJ |
477 | |
478 | /* The scope to prepend to our children. This is generally | |
479 | allocated on the comp_unit_obstack, so will disappear | |
480 | when this compilation unit leaves the cache. */ | |
481 | char *scope; | |
482 | ||
483 | /* The location description associated with this DIE, if any. */ | |
484 | struct dwarf_block *locdesc; | |
485 | ||
486 | /* If HAS_PC_INFO, the PC range associated with this DIE. */ | |
c906108c SS |
487 | CORE_ADDR lowpc; |
488 | CORE_ADDR highpc; | |
72bf9492 DJ |
489 | |
490 | /* Pointer into the info_buffer pointing at the target of | |
491 | DW_AT_sibling, if any. */ | |
fe1b8b76 | 492 | gdb_byte *sibling; |
72bf9492 DJ |
493 | |
494 | /* If HAS_SPECIFICATION, the offset of the DIE referred to by | |
495 | DW_AT_specification (or DW_AT_abstract_origin or | |
496 | DW_AT_extension). */ | |
497 | unsigned int spec_offset; | |
498 | ||
aaa75496 JB |
499 | /* If HAS_STMT_LIST, the offset of the Line Number Information data. */ |
500 | unsigned int line_offset; | |
501 | ||
72bf9492 DJ |
502 | /* Pointers to this DIE's parent, first child, and next sibling, |
503 | if any. */ | |
504 | struct partial_die_info *die_parent, *die_child, *die_sibling; | |
c906108c SS |
505 | }; |
506 | ||
507 | /* This data structure holds the information of an abbrev. */ | |
508 | struct abbrev_info | |
509 | { | |
510 | unsigned int number; /* number identifying abbrev */ | |
511 | enum dwarf_tag tag; /* dwarf tag */ | |
f3dd6933 DJ |
512 | unsigned short has_children; /* boolean */ |
513 | unsigned short num_attrs; /* number of attributes */ | |
c906108c SS |
514 | struct attr_abbrev *attrs; /* an array of attribute descriptions */ |
515 | struct abbrev_info *next; /* next in chain */ | |
516 | }; | |
517 | ||
518 | struct attr_abbrev | |
519 | { | |
520 | enum dwarf_attribute name; | |
521 | enum dwarf_form form; | |
522 | }; | |
523 | ||
524 | /* This data structure holds a complete die structure. */ | |
525 | struct die_info | |
526 | { | |
c5aa993b | 527 | enum dwarf_tag tag; /* Tag indicating type of die */ |
c5aa993b JM |
528 | unsigned int abbrev; /* Abbrev number */ |
529 | unsigned int offset; /* Offset in .debug_info section */ | |
530 | unsigned int num_attrs; /* Number of attributes */ | |
531 | struct attribute *attrs; /* An array of attributes */ | |
532 | struct die_info *next_ref; /* Next die in ref hash table */ | |
78ba4af6 JB |
533 | |
534 | /* The dies in a compilation unit form an n-ary tree. PARENT | |
535 | points to this die's parent; CHILD points to the first child of | |
536 | this node; and all the children of a given node are chained | |
537 | together via their SIBLING fields, terminated by a die whose | |
538 | tag is zero. */ | |
639d11d3 DC |
539 | struct die_info *child; /* Its first child, if any. */ |
540 | struct die_info *sibling; /* Its next sibling, if any. */ | |
541 | struct die_info *parent; /* Its parent, if any. */ | |
78ba4af6 | 542 | |
c5aa993b | 543 | struct type *type; /* Cached type information */ |
c906108c SS |
544 | }; |
545 | ||
546 | /* Attributes have a name and a value */ | |
547 | struct attribute | |
548 | { | |
549 | enum dwarf_attribute name; | |
550 | enum dwarf_form form; | |
551 | union | |
552 | { | |
553 | char *str; | |
554 | struct dwarf_block *blk; | |
ce5d95e1 JB |
555 | unsigned long unsnd; |
556 | long int snd; | |
c906108c SS |
557 | CORE_ADDR addr; |
558 | } | |
559 | u; | |
560 | }; | |
561 | ||
5fb290d7 DJ |
562 | struct function_range |
563 | { | |
564 | const char *name; | |
565 | CORE_ADDR lowpc, highpc; | |
566 | int seen_line; | |
567 | struct function_range *next; | |
568 | }; | |
569 | ||
c906108c SS |
570 | /* Get at parts of an attribute structure */ |
571 | ||
572 | #define DW_STRING(attr) ((attr)->u.str) | |
573 | #define DW_UNSND(attr) ((attr)->u.unsnd) | |
574 | #define DW_BLOCK(attr) ((attr)->u.blk) | |
575 | #define DW_SND(attr) ((attr)->u.snd) | |
576 | #define DW_ADDR(attr) ((attr)->u.addr) | |
577 | ||
578 | /* Blocks are a bunch of untyped bytes. */ | |
579 | struct dwarf_block | |
580 | { | |
581 | unsigned int size; | |
fe1b8b76 | 582 | gdb_byte *data; |
c906108c SS |
583 | }; |
584 | ||
c906108c SS |
585 | #ifndef ATTR_ALLOC_CHUNK |
586 | #define ATTR_ALLOC_CHUNK 4 | |
587 | #endif | |
588 | ||
c906108c SS |
589 | /* Allocate fields for structs, unions and enums in this size. */ |
590 | #ifndef DW_FIELD_ALLOC_CHUNK | |
591 | #define DW_FIELD_ALLOC_CHUNK 4 | |
592 | #endif | |
593 | ||
c906108c SS |
594 | /* A zeroed version of a partial die for initialization purposes. */ |
595 | static struct partial_die_info zeroed_partial_die; | |
596 | ||
c906108c SS |
597 | /* FIXME: We might want to set this from BFD via bfd_arch_bits_per_byte, |
598 | but this would require a corresponding change in unpack_field_as_long | |
599 | and friends. */ | |
600 | static int bits_per_byte = 8; | |
601 | ||
602 | /* The routines that read and process dies for a C struct or C++ class | |
603 | pass lists of data member fields and lists of member function fields | |
604 | in an instance of a field_info structure, as defined below. */ | |
605 | struct field_info | |
c5aa993b JM |
606 | { |
607 | /* List of data member and baseclasses fields. */ | |
608 | struct nextfield | |
609 | { | |
610 | struct nextfield *next; | |
611 | int accessibility; | |
612 | int virtuality; | |
613 | struct field field; | |
614 | } | |
615 | *fields; | |
c906108c | 616 | |
c5aa993b JM |
617 | /* Number of fields. */ |
618 | int nfields; | |
c906108c | 619 | |
c5aa993b JM |
620 | /* Number of baseclasses. */ |
621 | int nbaseclasses; | |
c906108c | 622 | |
c5aa993b JM |
623 | /* Set if the accesibility of one of the fields is not public. */ |
624 | int non_public_fields; | |
c906108c | 625 | |
c5aa993b JM |
626 | /* Member function fields array, entries are allocated in the order they |
627 | are encountered in the object file. */ | |
628 | struct nextfnfield | |
629 | { | |
630 | struct nextfnfield *next; | |
631 | struct fn_field fnfield; | |
632 | } | |
633 | *fnfields; | |
c906108c | 634 | |
c5aa993b JM |
635 | /* Member function fieldlist array, contains name of possibly overloaded |
636 | member function, number of overloaded member functions and a pointer | |
637 | to the head of the member function field chain. */ | |
638 | struct fnfieldlist | |
639 | { | |
640 | char *name; | |
641 | int length; | |
642 | struct nextfnfield *head; | |
643 | } | |
644 | *fnfieldlists; | |
c906108c | 645 | |
c5aa993b JM |
646 | /* Number of entries in the fnfieldlists array. */ |
647 | int nfnfields; | |
648 | }; | |
c906108c | 649 | |
10b3939b DJ |
650 | /* One item on the queue of compilation units to read in full symbols |
651 | for. */ | |
652 | struct dwarf2_queue_item | |
653 | { | |
654 | struct dwarf2_per_cu_data *per_cu; | |
655 | struct dwarf2_queue_item *next; | |
656 | }; | |
657 | ||
658 | /* The current queue. */ | |
659 | static struct dwarf2_queue_item *dwarf2_queue, *dwarf2_queue_tail; | |
660 | ||
ae038cb0 DJ |
661 | /* Loaded secondary compilation units are kept in memory until they |
662 | have not been referenced for the processing of this many | |
663 | compilation units. Set this to zero to disable caching. Cache | |
664 | sizes of up to at least twenty will improve startup time for | |
665 | typical inter-CU-reference binaries, at an obvious memory cost. */ | |
666 | static int dwarf2_max_cache_age = 5; | |
920d2a44 AC |
667 | static void |
668 | show_dwarf2_max_cache_age (struct ui_file *file, int from_tty, | |
669 | struct cmd_list_element *c, const char *value) | |
670 | { | |
671 | fprintf_filtered (file, _("\ | |
672 | The upper bound on the age of cached dwarf2 compilation units is %s.\n"), | |
673 | value); | |
674 | } | |
675 | ||
ae038cb0 | 676 | |
c906108c SS |
677 | /* Various complaints about symbol reading that don't abort the process */ |
678 | ||
4d3c2250 KB |
679 | static void |
680 | dwarf2_statement_list_fits_in_line_number_section_complaint (void) | |
2e276125 | 681 | { |
4d3c2250 | 682 | complaint (&symfile_complaints, |
e2e0b3e5 | 683 | _("statement list doesn't fit in .debug_line section")); |
4d3c2250 KB |
684 | } |
685 | ||
25e43795 DJ |
686 | static void |
687 | dwarf2_debug_line_missing_file_complaint (void) | |
688 | { | |
689 | complaint (&symfile_complaints, | |
690 | _(".debug_line section has line data without a file")); | |
691 | } | |
692 | ||
4d3c2250 KB |
693 | static void |
694 | dwarf2_complex_location_expr_complaint (void) | |
2e276125 | 695 | { |
e2e0b3e5 | 696 | complaint (&symfile_complaints, _("location expression too complex")); |
4d3c2250 KB |
697 | } |
698 | ||
4d3c2250 KB |
699 | static void |
700 | dwarf2_const_value_length_mismatch_complaint (const char *arg1, int arg2, | |
701 | int arg3) | |
2e276125 | 702 | { |
4d3c2250 | 703 | complaint (&symfile_complaints, |
e2e0b3e5 | 704 | _("const value length mismatch for '%s', got %d, expected %d"), arg1, |
4d3c2250 KB |
705 | arg2, arg3); |
706 | } | |
707 | ||
708 | static void | |
709 | dwarf2_macros_too_long_complaint (void) | |
2e276125 | 710 | { |
4d3c2250 | 711 | complaint (&symfile_complaints, |
e2e0b3e5 | 712 | _("macro info runs off end of `.debug_macinfo' section")); |
4d3c2250 KB |
713 | } |
714 | ||
715 | static void | |
716 | dwarf2_macro_malformed_definition_complaint (const char *arg1) | |
8e19ed76 | 717 | { |
4d3c2250 | 718 | complaint (&symfile_complaints, |
e2e0b3e5 | 719 | _("macro debug info contains a malformed macro definition:\n`%s'"), |
4d3c2250 KB |
720 | arg1); |
721 | } | |
722 | ||
723 | static void | |
724 | dwarf2_invalid_attrib_class_complaint (const char *arg1, const char *arg2) | |
8b2dbe47 | 725 | { |
4d3c2250 | 726 | complaint (&symfile_complaints, |
e2e0b3e5 | 727 | _("invalid attribute class or form for '%s' in '%s'"), arg1, arg2); |
4d3c2250 | 728 | } |
c906108c | 729 | |
c906108c SS |
730 | /* local function prototypes */ |
731 | ||
4efb68b1 | 732 | static void dwarf2_locate_sections (bfd *, asection *, void *); |
c906108c SS |
733 | |
734 | #if 0 | |
a14ed312 | 735 | static void dwarf2_build_psymtabs_easy (struct objfile *, int); |
c906108c SS |
736 | #endif |
737 | ||
aaa75496 JB |
738 | static void dwarf2_create_include_psymtab (char *, struct partial_symtab *, |
739 | struct objfile *); | |
740 | ||
741 | static void dwarf2_build_include_psymtabs (struct dwarf2_cu *, | |
742 | struct partial_die_info *, | |
743 | struct partial_symtab *); | |
744 | ||
a14ed312 | 745 | static void dwarf2_build_psymtabs_hard (struct objfile *, int); |
c906108c | 746 | |
72bf9492 DJ |
747 | static void scan_partial_symbols (struct partial_die_info *, |
748 | CORE_ADDR *, CORE_ADDR *, | |
749 | struct dwarf2_cu *); | |
c906108c | 750 | |
72bf9492 DJ |
751 | static void add_partial_symbol (struct partial_die_info *, |
752 | struct dwarf2_cu *); | |
63d06c5c | 753 | |
72bf9492 | 754 | static int pdi_needs_namespace (enum dwarf_tag tag); |
91c24f0a | 755 | |
72bf9492 DJ |
756 | static void add_partial_namespace (struct partial_die_info *pdi, |
757 | CORE_ADDR *lowpc, CORE_ADDR *highpc, | |
758 | struct dwarf2_cu *cu); | |
63d06c5c | 759 | |
72bf9492 DJ |
760 | static void add_partial_enumeration (struct partial_die_info *enum_pdi, |
761 | struct dwarf2_cu *cu); | |
91c24f0a | 762 | |
fe1b8b76 JB |
763 | static gdb_byte *locate_pdi_sibling (struct partial_die_info *orig_pdi, |
764 | gdb_byte *info_ptr, | |
765 | bfd *abfd, | |
766 | struct dwarf2_cu *cu); | |
91c24f0a | 767 | |
a14ed312 | 768 | static void dwarf2_psymtab_to_symtab (struct partial_symtab *); |
c906108c | 769 | |
a14ed312 | 770 | static void psymtab_to_symtab_1 (struct partial_symtab *); |
c906108c | 771 | |
fe1b8b76 | 772 | gdb_byte *dwarf2_read_section (struct objfile *, asection *); |
c906108c | 773 | |
e7c27a73 | 774 | static void dwarf2_read_abbrevs (bfd *abfd, struct dwarf2_cu *cu); |
c906108c | 775 | |
f3dd6933 | 776 | static void dwarf2_free_abbrev_table (void *); |
c906108c | 777 | |
fe1b8b76 | 778 | static struct abbrev_info *peek_die_abbrev (gdb_byte *, unsigned int *, |
891d2f0b | 779 | struct dwarf2_cu *); |
72bf9492 | 780 | |
57349743 | 781 | static struct abbrev_info *dwarf2_lookup_abbrev (unsigned int, |
e7c27a73 | 782 | struct dwarf2_cu *); |
c906108c | 783 | |
fe1b8b76 | 784 | static struct partial_die_info *load_partial_dies (bfd *, gdb_byte *, int, |
72bf9492 DJ |
785 | struct dwarf2_cu *); |
786 | ||
fe1b8b76 JB |
787 | static gdb_byte *read_partial_die (struct partial_die_info *, |
788 | struct abbrev_info *abbrev, unsigned int, | |
789 | bfd *, gdb_byte *, struct dwarf2_cu *); | |
c906108c | 790 | |
72bf9492 | 791 | static struct partial_die_info *find_partial_die (unsigned long, |
10b3939b | 792 | struct dwarf2_cu *); |
72bf9492 DJ |
793 | |
794 | static void fixup_partial_die (struct partial_die_info *, | |
795 | struct dwarf2_cu *); | |
796 | ||
fe1b8b76 JB |
797 | static gdb_byte *read_full_die (struct die_info **, bfd *, gdb_byte *, |
798 | struct dwarf2_cu *, int *); | |
c906108c | 799 | |
fe1b8b76 JB |
800 | static gdb_byte *read_attribute (struct attribute *, struct attr_abbrev *, |
801 | bfd *, gdb_byte *, struct dwarf2_cu *); | |
c906108c | 802 | |
fe1b8b76 JB |
803 | static gdb_byte *read_attribute_value (struct attribute *, unsigned, |
804 | bfd *, gdb_byte *, struct dwarf2_cu *); | |
a8329558 | 805 | |
fe1b8b76 | 806 | static unsigned int read_1_byte (bfd *, gdb_byte *); |
c906108c | 807 | |
fe1b8b76 | 808 | static int read_1_signed_byte (bfd *, gdb_byte *); |
c906108c | 809 | |
fe1b8b76 | 810 | static unsigned int read_2_bytes (bfd *, gdb_byte *); |
c906108c | 811 | |
fe1b8b76 | 812 | static unsigned int read_4_bytes (bfd *, gdb_byte *); |
c906108c | 813 | |
fe1b8b76 | 814 | static unsigned long read_8_bytes (bfd *, gdb_byte *); |
c906108c | 815 | |
fe1b8b76 | 816 | static CORE_ADDR read_address (bfd *, gdb_byte *ptr, struct dwarf2_cu *, |
891d2f0b | 817 | unsigned int *); |
c906108c | 818 | |
fe1b8b76 | 819 | static LONGEST read_initial_length (bfd *, gdb_byte *, |
891d2f0b | 820 | struct comp_unit_head *, unsigned int *); |
613e1657 | 821 | |
fe1b8b76 | 822 | static LONGEST read_offset (bfd *, gdb_byte *, const struct comp_unit_head *, |
891d2f0b | 823 | unsigned int *); |
613e1657 | 824 | |
fe1b8b76 | 825 | static gdb_byte *read_n_bytes (bfd *, gdb_byte *, unsigned int); |
c906108c | 826 | |
fe1b8b76 | 827 | static char *read_string (bfd *, gdb_byte *, unsigned int *); |
c906108c | 828 | |
fe1b8b76 JB |
829 | static char *read_indirect_string (bfd *, gdb_byte *, |
830 | const struct comp_unit_head *, | |
831 | unsigned int *); | |
4bdf3d34 | 832 | |
fe1b8b76 | 833 | static unsigned long read_unsigned_leb128 (bfd *, gdb_byte *, unsigned int *); |
c906108c | 834 | |
fe1b8b76 | 835 | static long read_signed_leb128 (bfd *, gdb_byte *, unsigned int *); |
c906108c | 836 | |
fe1b8b76 | 837 | static gdb_byte *skip_leb128 (bfd *, gdb_byte *); |
4bb7a0a7 | 838 | |
e142c38c | 839 | static void set_cu_language (unsigned int, struct dwarf2_cu *); |
c906108c | 840 | |
e142c38c DJ |
841 | static struct attribute *dwarf2_attr (struct die_info *, unsigned int, |
842 | struct dwarf2_cu *); | |
c906108c | 843 | |
05cf31d1 JB |
844 | static int dwarf2_flag_true_p (struct die_info *die, unsigned name, |
845 | struct dwarf2_cu *cu); | |
846 | ||
e142c38c | 847 | static int die_is_declaration (struct die_info *, struct dwarf2_cu *cu); |
3ca72b44 | 848 | |
e142c38c DJ |
849 | static struct die_info *die_specification (struct die_info *die, |
850 | struct dwarf2_cu *); | |
63d06c5c | 851 | |
debd256d JB |
852 | static void free_line_header (struct line_header *lh); |
853 | ||
aaa75496 JB |
854 | static void add_file_name (struct line_header *, char *, unsigned int, |
855 | unsigned int, unsigned int); | |
856 | ||
debd256d JB |
857 | static struct line_header *(dwarf_decode_line_header |
858 | (unsigned int offset, | |
e7c27a73 | 859 | bfd *abfd, struct dwarf2_cu *cu)); |
debd256d JB |
860 | |
861 | static void dwarf_decode_lines (struct line_header *, char *, bfd *, | |
aaa75496 | 862 | struct dwarf2_cu *, struct partial_symtab *); |
c906108c | 863 | |
4f1520fb | 864 | static void dwarf2_start_subfile (char *, char *, char *); |
c906108c | 865 | |
a14ed312 | 866 | static struct symbol *new_symbol (struct die_info *, struct type *, |
e7c27a73 | 867 | struct dwarf2_cu *); |
c906108c | 868 | |
a14ed312 | 869 | static void dwarf2_const_value (struct attribute *, struct symbol *, |
e7c27a73 | 870 | struct dwarf2_cu *); |
c906108c | 871 | |
2df3850c JM |
872 | static void dwarf2_const_value_data (struct attribute *attr, |
873 | struct symbol *sym, | |
874 | int bits); | |
875 | ||
e7c27a73 | 876 | static struct type *die_type (struct die_info *, struct dwarf2_cu *); |
c906108c | 877 | |
e7c27a73 DJ |
878 | static struct type *die_containing_type (struct die_info *, |
879 | struct dwarf2_cu *); | |
c906108c | 880 | |
e7c27a73 | 881 | static struct type *tag_type_to_type (struct die_info *, struct dwarf2_cu *); |
c906108c | 882 | |
e7c27a73 | 883 | static void read_type_die (struct die_info *, struct dwarf2_cu *); |
c906108c | 884 | |
086ed43d | 885 | static char *determine_prefix (struct die_info *die, struct dwarf2_cu *); |
63d06c5c | 886 | |
fe1b8b76 JB |
887 | static char *typename_concat (struct obstack *, |
888 | const char *prefix, | |
889 | const char *suffix, | |
987504bb | 890 | struct dwarf2_cu *); |
63d06c5c | 891 | |
e7c27a73 | 892 | static void read_typedef (struct die_info *, struct dwarf2_cu *); |
c906108c | 893 | |
e7c27a73 | 894 | static void read_base_type (struct die_info *, struct dwarf2_cu *); |
c906108c | 895 | |
a02abb62 JB |
896 | static void read_subrange_type (struct die_info *die, struct dwarf2_cu *cu); |
897 | ||
e7c27a73 | 898 | static void read_file_scope (struct die_info *, struct dwarf2_cu *); |
c906108c | 899 | |
e7c27a73 | 900 | static void read_func_scope (struct die_info *, struct dwarf2_cu *); |
c906108c | 901 | |
e7c27a73 | 902 | static void read_lexical_block_scope (struct die_info *, struct dwarf2_cu *); |
c906108c | 903 | |
a14ed312 | 904 | static int dwarf2_get_pc_bounds (struct die_info *, |
e7c27a73 | 905 | CORE_ADDR *, CORE_ADDR *, struct dwarf2_cu *); |
c906108c | 906 | |
fae299cd DC |
907 | static void get_scope_pc_bounds (struct die_info *, |
908 | CORE_ADDR *, CORE_ADDR *, | |
909 | struct dwarf2_cu *); | |
910 | ||
a14ed312 | 911 | static void dwarf2_add_field (struct field_info *, struct die_info *, |
e7c27a73 | 912 | struct dwarf2_cu *); |
c906108c | 913 | |
a14ed312 | 914 | static void dwarf2_attach_fields_to_type (struct field_info *, |
e7c27a73 | 915 | struct type *, struct dwarf2_cu *); |
c906108c | 916 | |
a14ed312 | 917 | static void dwarf2_add_member_fn (struct field_info *, |
e26fb1d7 | 918 | struct die_info *, struct type *, |
e7c27a73 | 919 | struct dwarf2_cu *); |
c906108c | 920 | |
a14ed312 | 921 | static void dwarf2_attach_fn_fields_to_type (struct field_info *, |
e7c27a73 | 922 | struct type *, struct dwarf2_cu *); |
c906108c | 923 | |
134d01f1 DJ |
924 | static void read_structure_type (struct die_info *, struct dwarf2_cu *); |
925 | ||
926 | static void process_structure_scope (struct die_info *, struct dwarf2_cu *); | |
c906108c | 927 | |
8176b9b8 DC |
928 | static char *determine_class_name (struct die_info *die, struct dwarf2_cu *cu); |
929 | ||
e7c27a73 | 930 | static void read_common_block (struct die_info *, struct dwarf2_cu *); |
c906108c | 931 | |
e7c27a73 | 932 | static void read_namespace (struct die_info *die, struct dwarf2_cu *); |
d9fa45fe | 933 | |
38d518c9 | 934 | static const char *namespace_name (struct die_info *die, |
e142c38c | 935 | int *is_anonymous, struct dwarf2_cu *); |
38d518c9 | 936 | |
134d01f1 DJ |
937 | static void read_enumeration_type (struct die_info *, struct dwarf2_cu *); |
938 | ||
939 | static void process_enumeration_scope (struct die_info *, struct dwarf2_cu *); | |
c906108c | 940 | |
e7c27a73 | 941 | static struct type *dwarf_base_type (int, int, struct dwarf2_cu *); |
c906108c | 942 | |
e7c27a73 | 943 | static CORE_ADDR decode_locdesc (struct dwarf_block *, struct dwarf2_cu *); |
c906108c | 944 | |
e7c27a73 | 945 | static void read_array_type (struct die_info *, struct dwarf2_cu *); |
c906108c | 946 | |
7ca2d3a3 DL |
947 | static enum dwarf_array_dim_ordering read_array_order (struct die_info *, |
948 | struct dwarf2_cu *); | |
949 | ||
e7c27a73 | 950 | static void read_tag_pointer_type (struct die_info *, struct dwarf2_cu *); |
c906108c | 951 | |
e7c27a73 DJ |
952 | static void read_tag_ptr_to_member_type (struct die_info *, |
953 | struct dwarf2_cu *); | |
c906108c | 954 | |
e7c27a73 | 955 | static void read_tag_reference_type (struct die_info *, struct dwarf2_cu *); |
c906108c | 956 | |
e7c27a73 | 957 | static void read_tag_const_type (struct die_info *, struct dwarf2_cu *); |
c906108c | 958 | |
e7c27a73 | 959 | static void read_tag_volatile_type (struct die_info *, struct dwarf2_cu *); |
c906108c | 960 | |
e7c27a73 | 961 | static void read_tag_string_type (struct die_info *, struct dwarf2_cu *); |
c906108c | 962 | |
e7c27a73 | 963 | static void read_subroutine_type (struct die_info *, struct dwarf2_cu *); |
c906108c | 964 | |
fe1b8b76 | 965 | static struct die_info *read_comp_unit (gdb_byte *, bfd *, struct dwarf2_cu *); |
c906108c | 966 | |
fe1b8b76 | 967 | static struct die_info *read_die_and_children (gdb_byte *info_ptr, bfd *abfd, |
e7c27a73 | 968 | struct dwarf2_cu *, |
fe1b8b76 | 969 | gdb_byte **new_info_ptr, |
639d11d3 DC |
970 | struct die_info *parent); |
971 | ||
fe1b8b76 | 972 | static struct die_info *read_die_and_siblings (gdb_byte *info_ptr, bfd *abfd, |
e7c27a73 | 973 | struct dwarf2_cu *, |
fe1b8b76 | 974 | gdb_byte **new_info_ptr, |
639d11d3 DC |
975 | struct die_info *parent); |
976 | ||
a14ed312 | 977 | static void free_die_list (struct die_info *); |
c906108c | 978 | |
e7c27a73 | 979 | static void process_die (struct die_info *, struct dwarf2_cu *); |
c906108c | 980 | |
e142c38c | 981 | static char *dwarf2_linkage_name (struct die_info *, struct dwarf2_cu *); |
c906108c | 982 | |
e142c38c | 983 | static char *dwarf2_name (struct die_info *die, struct dwarf2_cu *); |
9219021c | 984 | |
e142c38c DJ |
985 | static struct die_info *dwarf2_extension (struct die_info *die, |
986 | struct dwarf2_cu *); | |
9219021c | 987 | |
a14ed312 | 988 | static char *dwarf_tag_name (unsigned int); |
c906108c | 989 | |
a14ed312 | 990 | static char *dwarf_attr_name (unsigned int); |
c906108c | 991 | |
a14ed312 | 992 | static char *dwarf_form_name (unsigned int); |
c906108c | 993 | |
a14ed312 | 994 | static char *dwarf_stack_op_name (unsigned int); |
c906108c | 995 | |
a14ed312 | 996 | static char *dwarf_bool_name (unsigned int); |
c906108c | 997 | |
a14ed312 | 998 | static char *dwarf_type_encoding_name (unsigned int); |
c906108c SS |
999 | |
1000 | #if 0 | |
a14ed312 | 1001 | static char *dwarf_cfi_name (unsigned int); |
c906108c | 1002 | |
a14ed312 | 1003 | struct die_info *copy_die (struct die_info *); |
c906108c SS |
1004 | #endif |
1005 | ||
f9aca02d | 1006 | static struct die_info *sibling_die (struct die_info *); |
c906108c | 1007 | |
f9aca02d | 1008 | static void dump_die (struct die_info *); |
c906108c | 1009 | |
f9aca02d | 1010 | static void dump_die_list (struct die_info *); |
c906108c | 1011 | |
10b3939b DJ |
1012 | static void store_in_ref_table (unsigned int, struct die_info *, |
1013 | struct dwarf2_cu *); | |
c906108c | 1014 | |
e142c38c DJ |
1015 | static unsigned int dwarf2_get_ref_die_offset (struct attribute *, |
1016 | struct dwarf2_cu *); | |
c906108c | 1017 | |
a02abb62 JB |
1018 | static int dwarf2_get_attr_constant_value (struct attribute *, int); |
1019 | ||
10b3939b DJ |
1020 | static struct die_info *follow_die_ref (struct die_info *, |
1021 | struct attribute *, | |
1022 | struct dwarf2_cu *); | |
c906108c | 1023 | |
e142c38c DJ |
1024 | static struct type *dwarf2_fundamental_type (struct objfile *, int, |
1025 | struct dwarf2_cu *); | |
c906108c SS |
1026 | |
1027 | /* memory allocation interface */ | |
1028 | ||
7b5a2f43 | 1029 | static struct dwarf_block *dwarf_alloc_block (struct dwarf2_cu *); |
c906108c | 1030 | |
f3dd6933 | 1031 | static struct abbrev_info *dwarf_alloc_abbrev (struct dwarf2_cu *); |
c906108c | 1032 | |
a14ed312 | 1033 | static struct die_info *dwarf_alloc_die (void); |
c906108c | 1034 | |
e142c38c | 1035 | static void initialize_cu_func_list (struct dwarf2_cu *); |
5fb290d7 | 1036 | |
e142c38c DJ |
1037 | static void add_to_cu_func_list (const char *, CORE_ADDR, CORE_ADDR, |
1038 | struct dwarf2_cu *); | |
5fb290d7 | 1039 | |
2e276125 | 1040 | static void dwarf_decode_macros (struct line_header *, unsigned int, |
e7c27a73 | 1041 | char *, bfd *, struct dwarf2_cu *); |
2e276125 | 1042 | |
8e19ed76 PS |
1043 | static int attr_form_is_block (struct attribute *); |
1044 | ||
93e7bd98 DJ |
1045 | static void dwarf2_symbol_mark_computed (struct attribute *attr, |
1046 | struct symbol *sym, | |
1047 | struct dwarf2_cu *cu); | |
4c2df51b | 1048 | |
fe1b8b76 JB |
1049 | static gdb_byte *skip_one_die (gdb_byte *info_ptr, struct abbrev_info *abbrev, |
1050 | struct dwarf2_cu *cu); | |
4bb7a0a7 | 1051 | |
72bf9492 DJ |
1052 | static void free_stack_comp_unit (void *); |
1053 | ||
72bf9492 DJ |
1054 | static hashval_t partial_die_hash (const void *item); |
1055 | ||
1056 | static int partial_die_eq (const void *item_lhs, const void *item_rhs); | |
1057 | ||
ae038cb0 DJ |
1058 | static struct dwarf2_per_cu_data *dwarf2_find_containing_comp_unit |
1059 | (unsigned long offset, struct objfile *objfile); | |
1060 | ||
1061 | static struct dwarf2_per_cu_data *dwarf2_find_comp_unit | |
1062 | (unsigned long offset, struct objfile *objfile); | |
1063 | ||
1064 | static void free_one_comp_unit (void *); | |
1065 | ||
1066 | static void free_cached_comp_units (void *); | |
1067 | ||
1068 | static void age_cached_comp_units (void); | |
1069 | ||
1070 | static void free_one_cached_comp_unit (void *); | |
1071 | ||
1c379e20 DJ |
1072 | static void set_die_type (struct die_info *, struct type *, |
1073 | struct dwarf2_cu *); | |
1074 | ||
1c379e20 DJ |
1075 | static void reset_die_and_siblings_types (struct die_info *, |
1076 | struct dwarf2_cu *); | |
1c379e20 | 1077 | |
ae038cb0 DJ |
1078 | static void create_all_comp_units (struct objfile *); |
1079 | ||
31ffec48 DJ |
1080 | static struct dwarf2_cu *load_full_comp_unit (struct dwarf2_per_cu_data *, |
1081 | struct objfile *); | |
10b3939b DJ |
1082 | |
1083 | static void process_full_comp_unit (struct dwarf2_per_cu_data *); | |
1084 | ||
1085 | static void dwarf2_add_dependence (struct dwarf2_cu *, | |
1086 | struct dwarf2_per_cu_data *); | |
1087 | ||
ae038cb0 DJ |
1088 | static void dwarf2_mark (struct dwarf2_cu *); |
1089 | ||
1090 | static void dwarf2_clear_marks (struct dwarf2_per_cu_data *); | |
1091 | ||
72019c9c GM |
1092 | static void read_set_type (struct die_info *, struct dwarf2_cu *); |
1093 | ||
1094 | ||
c906108c SS |
1095 | /* Try to locate the sections we need for DWARF 2 debugging |
1096 | information and return true if we have enough to do something. */ | |
1097 | ||
1098 | int | |
6502dd73 | 1099 | dwarf2_has_info (struct objfile *objfile) |
c906108c | 1100 | { |
6502dd73 DJ |
1101 | struct dwarf2_per_objfile *data; |
1102 | ||
1103 | /* Initialize per-objfile state. */ | |
1104 | data = obstack_alloc (&objfile->objfile_obstack, sizeof (*data)); | |
1105 | memset (data, 0, sizeof (*data)); | |
1106 | set_objfile_data (objfile, dwarf2_objfile_data_key, data); | |
1107 | dwarf2_per_objfile = data; | |
1108 | ||
188dd5d6 DJ |
1109 | dwarf_info_section = 0; |
1110 | dwarf_abbrev_section = 0; | |
1111 | dwarf_line_section = 0; | |
1112 | dwarf_str_section = 0; | |
1113 | dwarf_macinfo_section = 0; | |
1114 | dwarf_frame_section = 0; | |
1115 | dwarf_eh_frame_section = 0; | |
1116 | dwarf_ranges_section = 0; | |
1117 | dwarf_loc_section = 0; | |
af34e669 | 1118 | |
6502dd73 | 1119 | bfd_map_over_sections (objfile->obfd, dwarf2_locate_sections, NULL); |
188dd5d6 | 1120 | return (dwarf_info_section != NULL && dwarf_abbrev_section != NULL); |
c906108c SS |
1121 | } |
1122 | ||
1123 | /* This function is mapped across the sections and remembers the | |
1124 | offset and size of each of the debugging sections we are interested | |
1125 | in. */ | |
1126 | ||
1127 | static void | |
72dca2f5 | 1128 | dwarf2_locate_sections (bfd *abfd, asection *sectp, void *ignore_ptr) |
c906108c | 1129 | { |
6314a349 | 1130 | if (strcmp (sectp->name, INFO_SECTION) == 0) |
c906108c | 1131 | { |
2c500098 | 1132 | dwarf2_per_objfile->info_size = bfd_get_section_size (sectp); |
086df311 | 1133 | dwarf_info_section = sectp; |
c906108c | 1134 | } |
6314a349 | 1135 | else if (strcmp (sectp->name, ABBREV_SECTION) == 0) |
c906108c | 1136 | { |
2c500098 | 1137 | dwarf2_per_objfile->abbrev_size = bfd_get_section_size (sectp); |
086df311 | 1138 | dwarf_abbrev_section = sectp; |
c906108c | 1139 | } |
6314a349 | 1140 | else if (strcmp (sectp->name, LINE_SECTION) == 0) |
c906108c | 1141 | { |
2c500098 | 1142 | dwarf2_per_objfile->line_size = bfd_get_section_size (sectp); |
086df311 | 1143 | dwarf_line_section = sectp; |
c906108c | 1144 | } |
6314a349 | 1145 | else if (strcmp (sectp->name, PUBNAMES_SECTION) == 0) |
c906108c | 1146 | { |
2c500098 | 1147 | dwarf2_per_objfile->pubnames_size = bfd_get_section_size (sectp); |
086df311 | 1148 | dwarf_pubnames_section = sectp; |
c906108c | 1149 | } |
6314a349 | 1150 | else if (strcmp (sectp->name, ARANGES_SECTION) == 0) |
c906108c | 1151 | { |
2c500098 | 1152 | dwarf2_per_objfile->aranges_size = bfd_get_section_size (sectp); |
086df311 | 1153 | dwarf_aranges_section = sectp; |
c906108c | 1154 | } |
6314a349 | 1155 | else if (strcmp (sectp->name, LOC_SECTION) == 0) |
c906108c | 1156 | { |
2c500098 | 1157 | dwarf2_per_objfile->loc_size = bfd_get_section_size (sectp); |
086df311 | 1158 | dwarf_loc_section = sectp; |
c906108c | 1159 | } |
6314a349 | 1160 | else if (strcmp (sectp->name, MACINFO_SECTION) == 0) |
c906108c | 1161 | { |
2c500098 | 1162 | dwarf2_per_objfile->macinfo_size = bfd_get_section_size (sectp); |
0cf824c9 | 1163 | dwarf_macinfo_section = sectp; |
c906108c | 1164 | } |
6314a349 | 1165 | else if (strcmp (sectp->name, STR_SECTION) == 0) |
c906108c | 1166 | { |
2c500098 | 1167 | dwarf2_per_objfile->str_size = bfd_get_section_size (sectp); |
086df311 | 1168 | dwarf_str_section = sectp; |
c906108c | 1169 | } |
6314a349 | 1170 | else if (strcmp (sectp->name, FRAME_SECTION) == 0) |
b6af0555 | 1171 | { |
2c500098 | 1172 | dwarf2_per_objfile->frame_size = bfd_get_section_size (sectp); |
086df311 | 1173 | dwarf_frame_section = sectp; |
b6af0555 | 1174 | } |
6314a349 | 1175 | else if (strcmp (sectp->name, EH_FRAME_SECTION) == 0) |
b6af0555 | 1176 | { |
3799ccc6 EZ |
1177 | flagword aflag = bfd_get_section_flags (ignore_abfd, sectp); |
1178 | if (aflag & SEC_HAS_CONTENTS) | |
1179 | { | |
2c500098 | 1180 | dwarf2_per_objfile->eh_frame_size = bfd_get_section_size (sectp); |
3799ccc6 EZ |
1181 | dwarf_eh_frame_section = sectp; |
1182 | } | |
b6af0555 | 1183 | } |
6314a349 | 1184 | else if (strcmp (sectp->name, RANGES_SECTION) == 0) |
af34e669 | 1185 | { |
2c500098 | 1186 | dwarf2_per_objfile->ranges_size = bfd_get_section_size (sectp); |
6f10aeb1 | 1187 | dwarf_ranges_section = sectp; |
af34e669 | 1188 | } |
72dca2f5 FR |
1189 | |
1190 | if ((bfd_get_section_flags (abfd, sectp) & SEC_LOAD) | |
1191 | && bfd_section_vma (abfd, sectp) == 0) | |
1192 | dwarf2_per_objfile->has_section_at_zero = 1; | |
c906108c SS |
1193 | } |
1194 | ||
1195 | /* Build a partial symbol table. */ | |
1196 | ||
1197 | void | |
fba45db2 | 1198 | dwarf2_build_psymtabs (struct objfile *objfile, int mainline) |
c906108c | 1199 | { |
c906108c SS |
1200 | /* We definitely need the .debug_info and .debug_abbrev sections */ |
1201 | ||
6502dd73 DJ |
1202 | dwarf2_per_objfile->info_buffer = dwarf2_read_section (objfile, dwarf_info_section); |
1203 | dwarf2_per_objfile->abbrev_buffer = dwarf2_read_section (objfile, dwarf_abbrev_section); | |
188dd5d6 DJ |
1204 | |
1205 | if (dwarf_line_section) | |
6502dd73 | 1206 | dwarf2_per_objfile->line_buffer = dwarf2_read_section (objfile, dwarf_line_section); |
41ff2da1 | 1207 | else |
6502dd73 | 1208 | dwarf2_per_objfile->line_buffer = NULL; |
c906108c | 1209 | |
188dd5d6 | 1210 | if (dwarf_str_section) |
6502dd73 | 1211 | dwarf2_per_objfile->str_buffer = dwarf2_read_section (objfile, dwarf_str_section); |
4bdf3d34 | 1212 | else |
6502dd73 | 1213 | dwarf2_per_objfile->str_buffer = NULL; |
4bdf3d34 | 1214 | |
188dd5d6 | 1215 | if (dwarf_macinfo_section) |
6502dd73 | 1216 | dwarf2_per_objfile->macinfo_buffer = dwarf2_read_section (objfile, |
086df311 | 1217 | dwarf_macinfo_section); |
2e276125 | 1218 | else |
6502dd73 | 1219 | dwarf2_per_objfile->macinfo_buffer = NULL; |
2e276125 | 1220 | |
188dd5d6 | 1221 | if (dwarf_ranges_section) |
6502dd73 | 1222 | dwarf2_per_objfile->ranges_buffer = dwarf2_read_section (objfile, dwarf_ranges_section); |
af34e669 | 1223 | else |
6502dd73 | 1224 | dwarf2_per_objfile->ranges_buffer = NULL; |
af34e669 | 1225 | |
188dd5d6 | 1226 | if (dwarf_loc_section) |
6502dd73 | 1227 | dwarf2_per_objfile->loc_buffer = dwarf2_read_section (objfile, dwarf_loc_section); |
0d53c4c4 | 1228 | else |
6502dd73 | 1229 | dwarf2_per_objfile->loc_buffer = NULL; |
0d53c4c4 | 1230 | |
ef96bde8 EZ |
1231 | if (mainline |
1232 | || (objfile->global_psymbols.size == 0 | |
1233 | && objfile->static_psymbols.size == 0)) | |
c906108c SS |
1234 | { |
1235 | init_psymbol_list (objfile, 1024); | |
1236 | } | |
1237 | ||
1238 | #if 0 | |
1239 | if (dwarf_aranges_offset && dwarf_pubnames_offset) | |
1240 | { | |
d4f3574e | 1241 | /* Things are significantly easier if we have .debug_aranges and |
c906108c SS |
1242 | .debug_pubnames sections */ |
1243 | ||
d4f3574e | 1244 | dwarf2_build_psymtabs_easy (objfile, mainline); |
c906108c SS |
1245 | } |
1246 | else | |
1247 | #endif | |
1248 | /* only test this case for now */ | |
c5aa993b | 1249 | { |
c906108c | 1250 | /* In this case we have to work a bit harder */ |
d4f3574e | 1251 | dwarf2_build_psymtabs_hard (objfile, mainline); |
c906108c SS |
1252 | } |
1253 | } | |
1254 | ||
1255 | #if 0 | |
1256 | /* Build the partial symbol table from the information in the | |
1257 | .debug_pubnames and .debug_aranges sections. */ | |
1258 | ||
1259 | static void | |
fba45db2 | 1260 | dwarf2_build_psymtabs_easy (struct objfile *objfile, int mainline) |
c906108c SS |
1261 | { |
1262 | bfd *abfd = objfile->obfd; | |
1263 | char *aranges_buffer, *pubnames_buffer; | |
1264 | char *aranges_ptr, *pubnames_ptr; | |
1265 | unsigned int entry_length, version, info_offset, info_size; | |
1266 | ||
1267 | pubnames_buffer = dwarf2_read_section (objfile, | |
086df311 | 1268 | dwarf_pubnames_section); |
c906108c | 1269 | pubnames_ptr = pubnames_buffer; |
6502dd73 | 1270 | while ((pubnames_ptr - pubnames_buffer) < dwarf2_per_objfile->pubnames_size) |
c906108c | 1271 | { |
613e1657 | 1272 | struct comp_unit_head cu_header; |
891d2f0b | 1273 | unsigned int bytes_read; |
613e1657 KB |
1274 | |
1275 | entry_length = read_initial_length (abfd, pubnames_ptr, &cu_header, | |
891d2f0b | 1276 | &bytes_read); |
613e1657 | 1277 | pubnames_ptr += bytes_read; |
c906108c SS |
1278 | version = read_1_byte (abfd, pubnames_ptr); |
1279 | pubnames_ptr += 1; | |
1280 | info_offset = read_4_bytes (abfd, pubnames_ptr); | |
1281 | pubnames_ptr += 4; | |
1282 | info_size = read_4_bytes (abfd, pubnames_ptr); | |
1283 | pubnames_ptr += 4; | |
1284 | } | |
1285 | ||
1286 | aranges_buffer = dwarf2_read_section (objfile, | |
086df311 | 1287 | dwarf_aranges_section); |
c906108c SS |
1288 | |
1289 | } | |
1290 | #endif | |
1291 | ||
107d2387 | 1292 | /* Read in the comp unit header information from the debug_info at |
917c78fc | 1293 | info_ptr. */ |
107d2387 | 1294 | |
fe1b8b76 | 1295 | static gdb_byte * |
107d2387 | 1296 | read_comp_unit_head (struct comp_unit_head *cu_header, |
fe1b8b76 | 1297 | gdb_byte *info_ptr, bfd *abfd) |
107d2387 AC |
1298 | { |
1299 | int signed_addr; | |
891d2f0b | 1300 | unsigned int bytes_read; |
613e1657 KB |
1301 | cu_header->length = read_initial_length (abfd, info_ptr, cu_header, |
1302 | &bytes_read); | |
1303 | info_ptr += bytes_read; | |
107d2387 AC |
1304 | cu_header->version = read_2_bytes (abfd, info_ptr); |
1305 | info_ptr += 2; | |
613e1657 KB |
1306 | cu_header->abbrev_offset = read_offset (abfd, info_ptr, cu_header, |
1307 | &bytes_read); | |
1308 | info_ptr += bytes_read; | |
107d2387 AC |
1309 | cu_header->addr_size = read_1_byte (abfd, info_ptr); |
1310 | info_ptr += 1; | |
1311 | signed_addr = bfd_get_sign_extend_vma (abfd); | |
1312 | if (signed_addr < 0) | |
8e65ff28 | 1313 | internal_error (__FILE__, __LINE__, |
e2e0b3e5 | 1314 | _("read_comp_unit_head: dwarf from non elf file")); |
107d2387 AC |
1315 | cu_header->signed_addr_p = signed_addr; |
1316 | return info_ptr; | |
1317 | } | |
1318 | ||
fe1b8b76 JB |
1319 | static gdb_byte * |
1320 | partial_read_comp_unit_head (struct comp_unit_head *header, gdb_byte *info_ptr, | |
72bf9492 DJ |
1321 | bfd *abfd) |
1322 | { | |
fe1b8b76 | 1323 | gdb_byte *beg_of_comp_unit = info_ptr; |
72bf9492 DJ |
1324 | |
1325 | info_ptr = read_comp_unit_head (header, info_ptr, abfd); | |
1326 | ||
2b949cb6 | 1327 | if (header->version != 2 && header->version != 3) |
8a3fe4f8 AC |
1328 | error (_("Dwarf Error: wrong version in compilation unit header " |
1329 | "(is %d, should be %d) [in module %s]"), header->version, | |
72bf9492 DJ |
1330 | 2, bfd_get_filename (abfd)); |
1331 | ||
1332 | if (header->abbrev_offset >= dwarf2_per_objfile->abbrev_size) | |
8a3fe4f8 AC |
1333 | error (_("Dwarf Error: bad offset (0x%lx) in compilation unit header " |
1334 | "(offset 0x%lx + 6) [in module %s]"), | |
72bf9492 DJ |
1335 | (long) header->abbrev_offset, |
1336 | (long) (beg_of_comp_unit - dwarf2_per_objfile->info_buffer), | |
1337 | bfd_get_filename (abfd)); | |
1338 | ||
1339 | if (beg_of_comp_unit + header->length + header->initial_length_size | |
1340 | > dwarf2_per_objfile->info_buffer + dwarf2_per_objfile->info_size) | |
8a3fe4f8 AC |
1341 | error (_("Dwarf Error: bad length (0x%lx) in compilation unit header " |
1342 | "(offset 0x%lx + 0) [in module %s]"), | |
72bf9492 DJ |
1343 | (long) header->length, |
1344 | (long) (beg_of_comp_unit - dwarf2_per_objfile->info_buffer), | |
1345 | bfd_get_filename (abfd)); | |
1346 | ||
1347 | return info_ptr; | |
1348 | } | |
1349 | ||
aaa75496 JB |
1350 | /* Allocate a new partial symtab for file named NAME and mark this new |
1351 | partial symtab as being an include of PST. */ | |
1352 | ||
1353 | static void | |
1354 | dwarf2_create_include_psymtab (char *name, struct partial_symtab *pst, | |
1355 | struct objfile *objfile) | |
1356 | { | |
1357 | struct partial_symtab *subpst = allocate_psymtab (name, objfile); | |
1358 | ||
1359 | subpst->section_offsets = pst->section_offsets; | |
1360 | subpst->textlow = 0; | |
1361 | subpst->texthigh = 0; | |
1362 | ||
1363 | subpst->dependencies = (struct partial_symtab **) | |
1364 | obstack_alloc (&objfile->objfile_obstack, | |
1365 | sizeof (struct partial_symtab *)); | |
1366 | subpst->dependencies[0] = pst; | |
1367 | subpst->number_of_dependencies = 1; | |
1368 | ||
1369 | subpst->globals_offset = 0; | |
1370 | subpst->n_global_syms = 0; | |
1371 | subpst->statics_offset = 0; | |
1372 | subpst->n_static_syms = 0; | |
1373 | subpst->symtab = NULL; | |
1374 | subpst->read_symtab = pst->read_symtab; | |
1375 | subpst->readin = 0; | |
1376 | ||
1377 | /* No private part is necessary for include psymtabs. This property | |
1378 | can be used to differentiate between such include psymtabs and | |
10b3939b | 1379 | the regular ones. */ |
58a9656e | 1380 | subpst->read_symtab_private = NULL; |
aaa75496 JB |
1381 | } |
1382 | ||
1383 | /* Read the Line Number Program data and extract the list of files | |
1384 | included by the source file represented by PST. Build an include | |
1385 | partial symtab for each of these included files. | |
1386 | ||
1387 | This procedure assumes that there *is* a Line Number Program in | |
1388 | the given CU. Callers should check that PDI->HAS_STMT_LIST is set | |
1389 | before calling this procedure. */ | |
1390 | ||
1391 | static void | |
1392 | dwarf2_build_include_psymtabs (struct dwarf2_cu *cu, | |
1393 | struct partial_die_info *pdi, | |
1394 | struct partial_symtab *pst) | |
1395 | { | |
1396 | struct objfile *objfile = cu->objfile; | |
1397 | bfd *abfd = objfile->obfd; | |
1398 | struct line_header *lh; | |
1399 | ||
1400 | lh = dwarf_decode_line_header (pdi->line_offset, abfd, cu); | |
1401 | if (lh == NULL) | |
1402 | return; /* No linetable, so no includes. */ | |
1403 | ||
1404 | dwarf_decode_lines (lh, NULL, abfd, cu, pst); | |
1405 | ||
1406 | free_line_header (lh); | |
1407 | } | |
1408 | ||
1409 | ||
c906108c SS |
1410 | /* Build the partial symbol table by doing a quick pass through the |
1411 | .debug_info and .debug_abbrev sections. */ | |
1412 | ||
1413 | static void | |
fba45db2 | 1414 | dwarf2_build_psymtabs_hard (struct objfile *objfile, int mainline) |
c906108c SS |
1415 | { |
1416 | /* Instead of reading this into a big buffer, we should probably use | |
1417 | mmap() on architectures that support it. (FIXME) */ | |
1418 | bfd *abfd = objfile->obfd; | |
fe1b8b76 JB |
1419 | gdb_byte *info_ptr; |
1420 | gdb_byte *beg_of_comp_unit; | |
c906108c SS |
1421 | struct partial_die_info comp_unit_die; |
1422 | struct partial_symtab *pst; | |
ae038cb0 | 1423 | struct cleanup *back_to; |
e142c38c | 1424 | CORE_ADDR lowpc, highpc, baseaddr; |
c906108c | 1425 | |
6502dd73 | 1426 | info_ptr = dwarf2_per_objfile->info_buffer; |
c906108c | 1427 | |
ae038cb0 DJ |
1428 | /* Any cached compilation units will be linked by the per-objfile |
1429 | read_in_chain. Make sure to free them when we're done. */ | |
1430 | back_to = make_cleanup (free_cached_comp_units, NULL); | |
1431 | ||
10b3939b DJ |
1432 | create_all_comp_units (objfile); |
1433 | ||
6502dd73 | 1434 | /* Since the objects we're extracting from .debug_info vary in |
af703f96 | 1435 | length, only the individual functions to extract them (like |
72bf9492 | 1436 | read_comp_unit_head and load_partial_die) can really know whether |
af703f96 JB |
1437 | the buffer is large enough to hold another complete object. |
1438 | ||
6502dd73 DJ |
1439 | At the moment, they don't actually check that. If .debug_info |
1440 | holds just one extra byte after the last compilation unit's dies, | |
1441 | then read_comp_unit_head will happily read off the end of the | |
1442 | buffer. read_partial_die is similarly casual. Those functions | |
1443 | should be fixed. | |
af703f96 JB |
1444 | |
1445 | For this loop condition, simply checking whether there's any data | |
1446 | left at all should be sufficient. */ | |
6502dd73 DJ |
1447 | while (info_ptr < (dwarf2_per_objfile->info_buffer |
1448 | + dwarf2_per_objfile->info_size)) | |
c906108c | 1449 | { |
f3dd6933 | 1450 | struct cleanup *back_to_inner; |
e7c27a73 | 1451 | struct dwarf2_cu cu; |
72bf9492 DJ |
1452 | struct abbrev_info *abbrev; |
1453 | unsigned int bytes_read; | |
1454 | struct dwarf2_per_cu_data *this_cu; | |
1455 | ||
c906108c | 1456 | beg_of_comp_unit = info_ptr; |
c906108c | 1457 | |
72bf9492 DJ |
1458 | memset (&cu, 0, sizeof (cu)); |
1459 | ||
1460 | obstack_init (&cu.comp_unit_obstack); | |
1461 | ||
1462 | back_to_inner = make_cleanup (free_stack_comp_unit, &cu); | |
1463 | ||
e7c27a73 | 1464 | cu.objfile = objfile; |
72bf9492 | 1465 | info_ptr = partial_read_comp_unit_head (&cu.header, info_ptr, abfd); |
e7c27a73 | 1466 | |
57349743 | 1467 | /* Complete the cu_header */ |
6502dd73 | 1468 | cu.header.offset = beg_of_comp_unit - dwarf2_per_objfile->info_buffer; |
e7c27a73 DJ |
1469 | cu.header.first_die_ptr = info_ptr; |
1470 | cu.header.cu_head_ptr = beg_of_comp_unit; | |
57349743 | 1471 | |
e142c38c DJ |
1472 | cu.list_in_scope = &file_symbols; |
1473 | ||
c906108c | 1474 | /* Read the abbrevs for this compilation unit into a table */ |
e7c27a73 | 1475 | dwarf2_read_abbrevs (abfd, &cu); |
72bf9492 | 1476 | make_cleanup (dwarf2_free_abbrev_table, &cu); |
c906108c | 1477 | |
10b3939b | 1478 | this_cu = dwarf2_find_comp_unit (cu.header.offset, objfile); |
ae038cb0 | 1479 | |
c906108c | 1480 | /* Read the compilation unit die */ |
72bf9492 DJ |
1481 | abbrev = peek_die_abbrev (info_ptr, &bytes_read, &cu); |
1482 | info_ptr = read_partial_die (&comp_unit_die, abbrev, bytes_read, | |
1483 | abfd, info_ptr, &cu); | |
c906108c | 1484 | |
31ffec48 DJ |
1485 | if (comp_unit_die.tag == DW_TAG_partial_unit) |
1486 | { | |
1487 | info_ptr = (beg_of_comp_unit + cu.header.length | |
1488 | + cu.header.initial_length_size); | |
1489 | do_cleanups (back_to_inner); | |
1490 | continue; | |
1491 | } | |
1492 | ||
c906108c | 1493 | /* Set the language we're debugging */ |
e142c38c | 1494 | set_cu_language (comp_unit_die.language, &cu); |
c906108c SS |
1495 | |
1496 | /* Allocate a new partial symbol table structure */ | |
d4f3574e | 1497 | pst = start_psymtab_common (objfile, objfile->section_offsets, |
96baa820 | 1498 | comp_unit_die.name ? comp_unit_die.name : "", |
c906108c SS |
1499 | comp_unit_die.lowpc, |
1500 | objfile->global_psymbols.next, | |
1501 | objfile->static_psymbols.next); | |
1502 | ||
ae038cb0 DJ |
1503 | if (comp_unit_die.dirname) |
1504 | pst->dirname = xstrdup (comp_unit_die.dirname); | |
57c22c6c | 1505 | |
10b3939b DJ |
1506 | pst->read_symtab_private = (char *) this_cu; |
1507 | ||
613e1657 | 1508 | baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile)); |
c906108c SS |
1509 | |
1510 | /* Store the function that reads in the rest of the symbol table */ | |
1511 | pst->read_symtab = dwarf2_psymtab_to_symtab; | |
1512 | ||
10b3939b DJ |
1513 | /* If this compilation unit was already read in, free the |
1514 | cached copy in order to read it in again. This is | |
1515 | necessary because we skipped some symbols when we first | |
1516 | read in the compilation unit (see load_partial_dies). | |
1517 | This problem could be avoided, but the benefit is | |
1518 | unclear. */ | |
1519 | if (this_cu->cu != NULL) | |
1520 | free_one_cached_comp_unit (this_cu->cu); | |
ae038cb0 | 1521 | |
10b3939b | 1522 | cu.per_cu = this_cu; |
ae038cb0 | 1523 | |
10b3939b DJ |
1524 | /* Note that this is a pointer to our stack frame, being |
1525 | added to a global data structure. It will be cleaned up | |
1526 | in free_stack_comp_unit when we finish with this | |
1527 | compilation unit. */ | |
1528 | this_cu->cu = &cu; | |
ae038cb0 | 1529 | |
10b3939b | 1530 | this_cu->psymtab = pst; |
ae038cb0 | 1531 | |
c906108c SS |
1532 | /* Check if comp unit has_children. |
1533 | If so, read the rest of the partial symbols from this comp unit. | |
1534 | If not, there's no more debug_info for this comp unit. */ | |
1535 | if (comp_unit_die.has_children) | |
1536 | { | |
72bf9492 DJ |
1537 | struct partial_die_info *first_die; |
1538 | ||
91c24f0a DC |
1539 | lowpc = ((CORE_ADDR) -1); |
1540 | highpc = ((CORE_ADDR) 0); | |
1541 | ||
72bf9492 DJ |
1542 | first_die = load_partial_dies (abfd, info_ptr, 1, &cu); |
1543 | ||
1544 | scan_partial_symbols (first_die, &lowpc, &highpc, &cu); | |
c906108c | 1545 | |
91c24f0a DC |
1546 | /* If we didn't find a lowpc, set it to highpc to avoid |
1547 | complaints from `maint check'. */ | |
1548 | if (lowpc == ((CORE_ADDR) -1)) | |
1549 | lowpc = highpc; | |
72bf9492 | 1550 | |
c906108c SS |
1551 | /* If the compilation unit didn't have an explicit address range, |
1552 | then use the information extracted from its child dies. */ | |
0b010bcc | 1553 | if (! comp_unit_die.has_pc_info) |
c906108c | 1554 | { |
c5aa993b | 1555 | comp_unit_die.lowpc = lowpc; |
c906108c SS |
1556 | comp_unit_die.highpc = highpc; |
1557 | } | |
1558 | } | |
c5aa993b | 1559 | pst->textlow = comp_unit_die.lowpc + baseaddr; |
c906108c SS |
1560 | pst->texthigh = comp_unit_die.highpc + baseaddr; |
1561 | ||
1562 | pst->n_global_syms = objfile->global_psymbols.next - | |
1563 | (objfile->global_psymbols.list + pst->globals_offset); | |
1564 | pst->n_static_syms = objfile->static_psymbols.next - | |
1565 | (objfile->static_psymbols.list + pst->statics_offset); | |
1566 | sort_pst_symbols (pst); | |
1567 | ||
1568 | /* If there is already a psymtab or symtab for a file of this | |
1569 | name, remove it. (If there is a symtab, more drastic things | |
1570 | also happen.) This happens in VxWorks. */ | |
1571 | free_named_symtabs (pst->filename); | |
1572 | ||
dd373385 EZ |
1573 | info_ptr = beg_of_comp_unit + cu.header.length |
1574 | + cu.header.initial_length_size; | |
1575 | ||
aaa75496 JB |
1576 | if (comp_unit_die.has_stmt_list) |
1577 | { | |
1578 | /* Get the list of files included in the current compilation unit, | |
1579 | and build a psymtab for each of them. */ | |
1580 | dwarf2_build_include_psymtabs (&cu, &comp_unit_die, pst); | |
1581 | } | |
1582 | ||
f3dd6933 | 1583 | do_cleanups (back_to_inner); |
c906108c | 1584 | } |
ae038cb0 DJ |
1585 | do_cleanups (back_to); |
1586 | } | |
1587 | ||
1588 | /* Load the DIEs for a secondary CU into memory. */ | |
1589 | ||
1590 | static void | |
1591 | load_comp_unit (struct dwarf2_per_cu_data *this_cu, struct objfile *objfile) | |
1592 | { | |
1593 | bfd *abfd = objfile->obfd; | |
fe1b8b76 | 1594 | gdb_byte *info_ptr, *beg_of_comp_unit; |
ae038cb0 DJ |
1595 | struct partial_die_info comp_unit_die; |
1596 | struct dwarf2_cu *cu; | |
1597 | struct abbrev_info *abbrev; | |
1598 | unsigned int bytes_read; | |
1599 | struct cleanup *back_to; | |
1600 | ||
1601 | info_ptr = dwarf2_per_objfile->info_buffer + this_cu->offset; | |
1602 | beg_of_comp_unit = info_ptr; | |
1603 | ||
1604 | cu = xmalloc (sizeof (struct dwarf2_cu)); | |
1605 | memset (cu, 0, sizeof (struct dwarf2_cu)); | |
1606 | ||
1607 | obstack_init (&cu->comp_unit_obstack); | |
1608 | ||
1609 | cu->objfile = objfile; | |
1610 | info_ptr = partial_read_comp_unit_head (&cu->header, info_ptr, abfd); | |
1611 | ||
1612 | /* Complete the cu_header. */ | |
1613 | cu->header.offset = beg_of_comp_unit - dwarf2_per_objfile->info_buffer; | |
1614 | cu->header.first_die_ptr = info_ptr; | |
1615 | cu->header.cu_head_ptr = beg_of_comp_unit; | |
1616 | ||
1617 | /* Read the abbrevs for this compilation unit into a table. */ | |
1618 | dwarf2_read_abbrevs (abfd, cu); | |
1619 | back_to = make_cleanup (dwarf2_free_abbrev_table, cu); | |
1620 | ||
1621 | /* Read the compilation unit die. */ | |
1622 | abbrev = peek_die_abbrev (info_ptr, &bytes_read, cu); | |
1623 | info_ptr = read_partial_die (&comp_unit_die, abbrev, bytes_read, | |
1624 | abfd, info_ptr, cu); | |
1625 | ||
1626 | /* Set the language we're debugging. */ | |
1627 | set_cu_language (comp_unit_die.language, cu); | |
1628 | ||
1629 | /* Link this compilation unit into the compilation unit tree. */ | |
1630 | this_cu->cu = cu; | |
1631 | cu->per_cu = this_cu; | |
1632 | ||
1633 | /* Check if comp unit has_children. | |
1634 | If so, read the rest of the partial symbols from this comp unit. | |
1635 | If not, there's no more debug_info for this comp unit. */ | |
1636 | if (comp_unit_die.has_children) | |
1637 | load_partial_dies (abfd, info_ptr, 0, cu); | |
1638 | ||
1639 | do_cleanups (back_to); | |
1640 | } | |
1641 | ||
1642 | /* Create a list of all compilation units in OBJFILE. We do this only | |
1643 | if an inter-comp-unit reference is found; presumably if there is one, | |
1644 | there will be many, and one will occur early in the .debug_info section. | |
1645 | So there's no point in building this list incrementally. */ | |
1646 | ||
1647 | static void | |
1648 | create_all_comp_units (struct objfile *objfile) | |
1649 | { | |
1650 | int n_allocated; | |
1651 | int n_comp_units; | |
1652 | struct dwarf2_per_cu_data **all_comp_units; | |
fe1b8b76 | 1653 | gdb_byte *info_ptr = dwarf2_per_objfile->info_buffer; |
ae038cb0 DJ |
1654 | |
1655 | n_comp_units = 0; | |
1656 | n_allocated = 10; | |
1657 | all_comp_units = xmalloc (n_allocated | |
1658 | * sizeof (struct dwarf2_per_cu_data *)); | |
1659 | ||
1660 | while (info_ptr < dwarf2_per_objfile->info_buffer + dwarf2_per_objfile->info_size) | |
1661 | { | |
1662 | struct comp_unit_head cu_header; | |
fe1b8b76 | 1663 | gdb_byte *beg_of_comp_unit; |
ae038cb0 DJ |
1664 | struct dwarf2_per_cu_data *this_cu; |
1665 | unsigned long offset; | |
891d2f0b | 1666 | unsigned int bytes_read; |
ae038cb0 DJ |
1667 | |
1668 | offset = info_ptr - dwarf2_per_objfile->info_buffer; | |
1669 | ||
1670 | /* Read just enough information to find out where the next | |
1671 | compilation unit is. */ | |
dd373385 | 1672 | cu_header.initial_length_size = 0; |
ae038cb0 DJ |
1673 | cu_header.length = read_initial_length (objfile->obfd, info_ptr, |
1674 | &cu_header, &bytes_read); | |
1675 | ||
1676 | /* Save the compilation unit for later lookup. */ | |
1677 | this_cu = obstack_alloc (&objfile->objfile_obstack, | |
1678 | sizeof (struct dwarf2_per_cu_data)); | |
1679 | memset (this_cu, 0, sizeof (*this_cu)); | |
1680 | this_cu->offset = offset; | |
1681 | this_cu->length = cu_header.length + cu_header.initial_length_size; | |
1682 | ||
1683 | if (n_comp_units == n_allocated) | |
1684 | { | |
1685 | n_allocated *= 2; | |
1686 | all_comp_units = xrealloc (all_comp_units, | |
1687 | n_allocated | |
1688 | * sizeof (struct dwarf2_per_cu_data *)); | |
1689 | } | |
1690 | all_comp_units[n_comp_units++] = this_cu; | |
1691 | ||
1692 | info_ptr = info_ptr + this_cu->length; | |
1693 | } | |
1694 | ||
1695 | dwarf2_per_objfile->all_comp_units | |
1696 | = obstack_alloc (&objfile->objfile_obstack, | |
1697 | n_comp_units * sizeof (struct dwarf2_per_cu_data *)); | |
1698 | memcpy (dwarf2_per_objfile->all_comp_units, all_comp_units, | |
1699 | n_comp_units * sizeof (struct dwarf2_per_cu_data *)); | |
1700 | xfree (all_comp_units); | |
1701 | dwarf2_per_objfile->n_comp_units = n_comp_units; | |
c906108c SS |
1702 | } |
1703 | ||
72bf9492 DJ |
1704 | /* Process all loaded DIEs for compilation unit CU, starting at FIRST_DIE. |
1705 | Also set *LOWPC and *HIGHPC to the lowest and highest PC values found | |
1706 | in CU. */ | |
c906108c | 1707 | |
72bf9492 DJ |
1708 | static void |
1709 | scan_partial_symbols (struct partial_die_info *first_die, CORE_ADDR *lowpc, | |
1710 | CORE_ADDR *highpc, struct dwarf2_cu *cu) | |
c906108c | 1711 | { |
e7c27a73 | 1712 | struct objfile *objfile = cu->objfile; |
c906108c | 1713 | bfd *abfd = objfile->obfd; |
72bf9492 | 1714 | struct partial_die_info *pdi; |
c906108c | 1715 | |
91c24f0a DC |
1716 | /* Now, march along the PDI's, descending into ones which have |
1717 | interesting children but skipping the children of the other ones, | |
1718 | until we reach the end of the compilation unit. */ | |
c906108c | 1719 | |
72bf9492 | 1720 | pdi = first_die; |
91c24f0a | 1721 | |
72bf9492 DJ |
1722 | while (pdi != NULL) |
1723 | { | |
1724 | fixup_partial_die (pdi, cu); | |
c906108c | 1725 | |
91c24f0a DC |
1726 | /* Anonymous namespaces have no name but have interesting |
1727 | children, so we need to look at them. Ditto for anonymous | |
1728 | enums. */ | |
933c6fe4 | 1729 | |
72bf9492 DJ |
1730 | if (pdi->name != NULL || pdi->tag == DW_TAG_namespace |
1731 | || pdi->tag == DW_TAG_enumeration_type) | |
c906108c | 1732 | { |
72bf9492 | 1733 | switch (pdi->tag) |
c906108c SS |
1734 | { |
1735 | case DW_TAG_subprogram: | |
72bf9492 | 1736 | if (pdi->has_pc_info) |
c906108c | 1737 | { |
72bf9492 | 1738 | if (pdi->lowpc < *lowpc) |
c906108c | 1739 | { |
72bf9492 | 1740 | *lowpc = pdi->lowpc; |
c906108c | 1741 | } |
72bf9492 | 1742 | if (pdi->highpc > *highpc) |
c906108c | 1743 | { |
72bf9492 | 1744 | *highpc = pdi->highpc; |
c906108c | 1745 | } |
72bf9492 | 1746 | if (!pdi->is_declaration) |
c906108c | 1747 | { |
72bf9492 | 1748 | add_partial_symbol (pdi, cu); |
c906108c SS |
1749 | } |
1750 | } | |
1751 | break; | |
1752 | case DW_TAG_variable: | |
1753 | case DW_TAG_typedef: | |
91c24f0a | 1754 | case DW_TAG_union_type: |
72bf9492 | 1755 | if (!pdi->is_declaration) |
63d06c5c | 1756 | { |
72bf9492 | 1757 | add_partial_symbol (pdi, cu); |
63d06c5c DC |
1758 | } |
1759 | break; | |
c906108c SS |
1760 | case DW_TAG_class_type: |
1761 | case DW_TAG_structure_type: | |
72bf9492 | 1762 | if (!pdi->is_declaration) |
c906108c | 1763 | { |
72bf9492 | 1764 | add_partial_symbol (pdi, cu); |
c906108c SS |
1765 | } |
1766 | break; | |
91c24f0a | 1767 | case DW_TAG_enumeration_type: |
72bf9492 DJ |
1768 | if (!pdi->is_declaration) |
1769 | add_partial_enumeration (pdi, cu); | |
c906108c SS |
1770 | break; |
1771 | case DW_TAG_base_type: | |
a02abb62 | 1772 | case DW_TAG_subrange_type: |
c906108c | 1773 | /* File scope base type definitions are added to the partial |
c5aa993b | 1774 | symbol table. */ |
72bf9492 | 1775 | add_partial_symbol (pdi, cu); |
c906108c | 1776 | break; |
d9fa45fe | 1777 | case DW_TAG_namespace: |
72bf9492 | 1778 | add_partial_namespace (pdi, lowpc, highpc, cu); |
91c24f0a | 1779 | break; |
c906108c SS |
1780 | default: |
1781 | break; | |
1782 | } | |
1783 | } | |
1784 | ||
72bf9492 DJ |
1785 | /* If the die has a sibling, skip to the sibling. */ |
1786 | ||
1787 | pdi = pdi->die_sibling; | |
1788 | } | |
1789 | } | |
1790 | ||
1791 | /* Functions used to compute the fully scoped name of a partial DIE. | |
91c24f0a | 1792 | |
72bf9492 | 1793 | Normally, this is simple. For C++, the parent DIE's fully scoped |
987504bb JJ |
1794 | name is concatenated with "::" and the partial DIE's name. For |
1795 | Java, the same thing occurs except that "." is used instead of "::". | |
72bf9492 DJ |
1796 | Enumerators are an exception; they use the scope of their parent |
1797 | enumeration type, i.e. the name of the enumeration type is not | |
1798 | prepended to the enumerator. | |
91c24f0a | 1799 | |
72bf9492 DJ |
1800 | There are two complexities. One is DW_AT_specification; in this |
1801 | case "parent" means the parent of the target of the specification, | |
1802 | instead of the direct parent of the DIE. The other is compilers | |
1803 | which do not emit DW_TAG_namespace; in this case we try to guess | |
1804 | the fully qualified name of structure types from their members' | |
1805 | linkage names. This must be done using the DIE's children rather | |
1806 | than the children of any DW_AT_specification target. We only need | |
1807 | to do this for structures at the top level, i.e. if the target of | |
1808 | any DW_AT_specification (if any; otherwise the DIE itself) does not | |
1809 | have a parent. */ | |
1810 | ||
1811 | /* Compute the scope prefix associated with PDI's parent, in | |
1812 | compilation unit CU. The result will be allocated on CU's | |
1813 | comp_unit_obstack, or a copy of the already allocated PDI->NAME | |
1814 | field. NULL is returned if no prefix is necessary. */ | |
1815 | static char * | |
1816 | partial_die_parent_scope (struct partial_die_info *pdi, | |
1817 | struct dwarf2_cu *cu) | |
1818 | { | |
1819 | char *grandparent_scope; | |
1820 | struct partial_die_info *parent, *real_pdi; | |
91c24f0a | 1821 | |
72bf9492 DJ |
1822 | /* We need to look at our parent DIE; if we have a DW_AT_specification, |
1823 | then this means the parent of the specification DIE. */ | |
1824 | ||
1825 | real_pdi = pdi; | |
72bf9492 | 1826 | while (real_pdi->has_specification) |
10b3939b | 1827 | real_pdi = find_partial_die (real_pdi->spec_offset, cu); |
72bf9492 DJ |
1828 | |
1829 | parent = real_pdi->die_parent; | |
1830 | if (parent == NULL) | |
1831 | return NULL; | |
1832 | ||
1833 | if (parent->scope_set) | |
1834 | return parent->scope; | |
1835 | ||
1836 | fixup_partial_die (parent, cu); | |
1837 | ||
10b3939b | 1838 | grandparent_scope = partial_die_parent_scope (parent, cu); |
72bf9492 DJ |
1839 | |
1840 | if (parent->tag == DW_TAG_namespace | |
1841 | || parent->tag == DW_TAG_structure_type | |
1842 | || parent->tag == DW_TAG_class_type | |
1843 | || parent->tag == DW_TAG_union_type) | |
1844 | { | |
1845 | if (grandparent_scope == NULL) | |
1846 | parent->scope = parent->name; | |
1847 | else | |
987504bb JJ |
1848 | parent->scope = typename_concat (&cu->comp_unit_obstack, grandparent_scope, |
1849 | parent->name, cu); | |
72bf9492 DJ |
1850 | } |
1851 | else if (parent->tag == DW_TAG_enumeration_type) | |
1852 | /* Enumerators should not get the name of the enumeration as a prefix. */ | |
1853 | parent->scope = grandparent_scope; | |
1854 | else | |
1855 | { | |
1856 | /* FIXME drow/2004-04-01: What should we be doing with | |
1857 | function-local names? For partial symbols, we should probably be | |
1858 | ignoring them. */ | |
1859 | complaint (&symfile_complaints, | |
e2e0b3e5 | 1860 | _("unhandled containing DIE tag %d for DIE at %d"), |
72bf9492 DJ |
1861 | parent->tag, pdi->offset); |
1862 | parent->scope = grandparent_scope; | |
c906108c SS |
1863 | } |
1864 | ||
72bf9492 DJ |
1865 | parent->scope_set = 1; |
1866 | return parent->scope; | |
1867 | } | |
1868 | ||
1869 | /* Return the fully scoped name associated with PDI, from compilation unit | |
1870 | CU. The result will be allocated with malloc. */ | |
1871 | static char * | |
1872 | partial_die_full_name (struct partial_die_info *pdi, | |
1873 | struct dwarf2_cu *cu) | |
1874 | { | |
1875 | char *parent_scope; | |
1876 | ||
1877 | parent_scope = partial_die_parent_scope (pdi, cu); | |
1878 | if (parent_scope == NULL) | |
1879 | return NULL; | |
1880 | else | |
987504bb | 1881 | return typename_concat (NULL, parent_scope, pdi->name, cu); |
c906108c SS |
1882 | } |
1883 | ||
1884 | static void | |
72bf9492 | 1885 | add_partial_symbol (struct partial_die_info *pdi, struct dwarf2_cu *cu) |
c906108c | 1886 | { |
e7c27a73 | 1887 | struct objfile *objfile = cu->objfile; |
c906108c | 1888 | CORE_ADDR addr = 0; |
72bf9492 DJ |
1889 | char *actual_name; |
1890 | const char *my_prefix; | |
5c4e30ca | 1891 | const struct partial_symbol *psym = NULL; |
e142c38c | 1892 | CORE_ADDR baseaddr; |
72bf9492 | 1893 | int built_actual_name = 0; |
e142c38c DJ |
1894 | |
1895 | baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile)); | |
c906108c | 1896 | |
72bf9492 DJ |
1897 | actual_name = NULL; |
1898 | ||
1899 | if (pdi_needs_namespace (pdi->tag)) | |
63d06c5c | 1900 | { |
72bf9492 DJ |
1901 | actual_name = partial_die_full_name (pdi, cu); |
1902 | if (actual_name) | |
1903 | built_actual_name = 1; | |
63d06c5c DC |
1904 | } |
1905 | ||
72bf9492 DJ |
1906 | if (actual_name == NULL) |
1907 | actual_name = pdi->name; | |
1908 | ||
c906108c SS |
1909 | switch (pdi->tag) |
1910 | { | |
1911 | case DW_TAG_subprogram: | |
1912 | if (pdi->is_external) | |
1913 | { | |
38d518c9 | 1914 | /*prim_record_minimal_symbol (actual_name, pdi->lowpc + baseaddr, |
c5aa993b | 1915 | mst_text, objfile); */ |
38d518c9 | 1916 | psym = add_psymbol_to_list (actual_name, strlen (actual_name), |
5c4e30ca DC |
1917 | VAR_DOMAIN, LOC_BLOCK, |
1918 | &objfile->global_psymbols, | |
1919 | 0, pdi->lowpc + baseaddr, | |
e142c38c | 1920 | cu->language, objfile); |
c906108c SS |
1921 | } |
1922 | else | |
1923 | { | |
38d518c9 | 1924 | /*prim_record_minimal_symbol (actual_name, pdi->lowpc + baseaddr, |
c5aa993b | 1925 | mst_file_text, objfile); */ |
38d518c9 | 1926 | psym = add_psymbol_to_list (actual_name, strlen (actual_name), |
5c4e30ca DC |
1927 | VAR_DOMAIN, LOC_BLOCK, |
1928 | &objfile->static_psymbols, | |
1929 | 0, pdi->lowpc + baseaddr, | |
e142c38c | 1930 | cu->language, objfile); |
c906108c SS |
1931 | } |
1932 | break; | |
1933 | case DW_TAG_variable: | |
1934 | if (pdi->is_external) | |
1935 | { | |
1936 | /* Global Variable. | |
1937 | Don't enter into the minimal symbol tables as there is | |
1938 | a minimal symbol table entry from the ELF symbols already. | |
1939 | Enter into partial symbol table if it has a location | |
1940 | descriptor or a type. | |
1941 | If the location descriptor is missing, new_symbol will create | |
1942 | a LOC_UNRESOLVED symbol, the address of the variable will then | |
1943 | be determined from the minimal symbol table whenever the variable | |
1944 | is referenced. | |
1945 | The address for the partial symbol table entry is not | |
1946 | used by GDB, but it comes in handy for debugging partial symbol | |
1947 | table building. */ | |
1948 | ||
1949 | if (pdi->locdesc) | |
e7c27a73 | 1950 | addr = decode_locdesc (pdi->locdesc, cu); |
c906108c | 1951 | if (pdi->locdesc || pdi->has_type) |
38d518c9 | 1952 | psym = add_psymbol_to_list (actual_name, strlen (actual_name), |
5c4e30ca DC |
1953 | VAR_DOMAIN, LOC_STATIC, |
1954 | &objfile->global_psymbols, | |
1955 | 0, addr + baseaddr, | |
e142c38c | 1956 | cu->language, objfile); |
c906108c SS |
1957 | } |
1958 | else | |
1959 | { | |
1960 | /* Static Variable. Skip symbols without location descriptors. */ | |
1961 | if (pdi->locdesc == NULL) | |
1962 | return; | |
e7c27a73 | 1963 | addr = decode_locdesc (pdi->locdesc, cu); |
38d518c9 | 1964 | /*prim_record_minimal_symbol (actual_name, addr + baseaddr, |
c5aa993b | 1965 | mst_file_data, objfile); */ |
38d518c9 | 1966 | psym = add_psymbol_to_list (actual_name, strlen (actual_name), |
5c4e30ca DC |
1967 | VAR_DOMAIN, LOC_STATIC, |
1968 | &objfile->static_psymbols, | |
1969 | 0, addr + baseaddr, | |
e142c38c | 1970 | cu->language, objfile); |
c906108c SS |
1971 | } |
1972 | break; | |
1973 | case DW_TAG_typedef: | |
1974 | case DW_TAG_base_type: | |
a02abb62 | 1975 | case DW_TAG_subrange_type: |
38d518c9 | 1976 | add_psymbol_to_list (actual_name, strlen (actual_name), |
176620f1 | 1977 | VAR_DOMAIN, LOC_TYPEDEF, |
c906108c | 1978 | &objfile->static_psymbols, |
e142c38c | 1979 | 0, (CORE_ADDR) 0, cu->language, objfile); |
c906108c | 1980 | break; |
72bf9492 DJ |
1981 | case DW_TAG_namespace: |
1982 | add_psymbol_to_list (actual_name, strlen (actual_name), | |
1983 | VAR_DOMAIN, LOC_TYPEDEF, | |
1984 | &objfile->global_psymbols, | |
1985 | 0, (CORE_ADDR) 0, cu->language, objfile); | |
1986 | break; | |
c906108c SS |
1987 | case DW_TAG_class_type: |
1988 | case DW_TAG_structure_type: | |
1989 | case DW_TAG_union_type: | |
1990 | case DW_TAG_enumeration_type: | |
fa4028e9 JB |
1991 | /* Skip external references. The DWARF standard says in the section |
1992 | about "Structure, Union, and Class Type Entries": "An incomplete | |
1993 | structure, union or class type is represented by a structure, | |
1994 | union or class entry that does not have a byte size attribute | |
1995 | and that has a DW_AT_declaration attribute." */ | |
1996 | if (!pdi->has_byte_size && pdi->is_declaration) | |
1997 | return; | |
1998 | ||
63d06c5c DC |
1999 | /* NOTE: carlton/2003-10-07: See comment in new_symbol about |
2000 | static vs. global. */ | |
38d518c9 | 2001 | add_psymbol_to_list (actual_name, strlen (actual_name), |
176620f1 | 2002 | STRUCT_DOMAIN, LOC_TYPEDEF, |
987504bb JJ |
2003 | (cu->language == language_cplus |
2004 | || cu->language == language_java) | |
63d06c5c DC |
2005 | ? &objfile->global_psymbols |
2006 | : &objfile->static_psymbols, | |
e142c38c | 2007 | 0, (CORE_ADDR) 0, cu->language, objfile); |
c906108c | 2008 | |
987504bb | 2009 | if (cu->language == language_cplus |
8c6860bb JB |
2010 | || cu->language == language_java |
2011 | || cu->language == language_ada) | |
c906108c | 2012 | { |
987504bb | 2013 | /* For C++ and Java, these implicitly act as typedefs as well. */ |
38d518c9 | 2014 | add_psymbol_to_list (actual_name, strlen (actual_name), |
176620f1 | 2015 | VAR_DOMAIN, LOC_TYPEDEF, |
63d06c5c | 2016 | &objfile->global_psymbols, |
e142c38c | 2017 | 0, (CORE_ADDR) 0, cu->language, objfile); |
c906108c SS |
2018 | } |
2019 | break; | |
2020 | case DW_TAG_enumerator: | |
38d518c9 | 2021 | add_psymbol_to_list (actual_name, strlen (actual_name), |
176620f1 | 2022 | VAR_DOMAIN, LOC_CONST, |
987504bb JJ |
2023 | (cu->language == language_cplus |
2024 | || cu->language == language_java) | |
f6fe98ef DJ |
2025 | ? &objfile->global_psymbols |
2026 | : &objfile->static_psymbols, | |
e142c38c | 2027 | 0, (CORE_ADDR) 0, cu->language, objfile); |
c906108c SS |
2028 | break; |
2029 | default: | |
2030 | break; | |
2031 | } | |
5c4e30ca DC |
2032 | |
2033 | /* Check to see if we should scan the name for possible namespace | |
2034 | info. Only do this if this is C++, if we don't have namespace | |
2035 | debugging info in the file, if the psym is of an appropriate type | |
2036 | (otherwise we'll have psym == NULL), and if we actually had a | |
2037 | mangled name to begin with. */ | |
2038 | ||
72bf9492 DJ |
2039 | /* FIXME drow/2004-02-22: Why don't we do this for classes, i.e. the |
2040 | cases which do not set PSYM above? */ | |
2041 | ||
e142c38c | 2042 | if (cu->language == language_cplus |
72bf9492 | 2043 | && cu->has_namespace_info == 0 |
5c4e30ca DC |
2044 | && psym != NULL |
2045 | && SYMBOL_CPLUS_DEMANGLED_NAME (psym) != NULL) | |
2046 | cp_check_possible_namespace_symbols (SYMBOL_CPLUS_DEMANGLED_NAME (psym), | |
2047 | objfile); | |
72bf9492 DJ |
2048 | |
2049 | if (built_actual_name) | |
2050 | xfree (actual_name); | |
c906108c SS |
2051 | } |
2052 | ||
72bf9492 DJ |
2053 | /* Determine whether a die of type TAG living in a C++ class or |
2054 | namespace needs to have the name of the scope prepended to the | |
63d06c5c DC |
2055 | name listed in the die. */ |
2056 | ||
2057 | static int | |
72bf9492 | 2058 | pdi_needs_namespace (enum dwarf_tag tag) |
63d06c5c | 2059 | { |
63d06c5c DC |
2060 | switch (tag) |
2061 | { | |
72bf9492 | 2062 | case DW_TAG_namespace: |
63d06c5c DC |
2063 | case DW_TAG_typedef: |
2064 | case DW_TAG_class_type: | |
2065 | case DW_TAG_structure_type: | |
2066 | case DW_TAG_union_type: | |
2067 | case DW_TAG_enumeration_type: | |
2068 | case DW_TAG_enumerator: | |
2069 | return 1; | |
2070 | default: | |
2071 | return 0; | |
2072 | } | |
2073 | } | |
2074 | ||
5c4e30ca DC |
2075 | /* Read a partial die corresponding to a namespace; also, add a symbol |
2076 | corresponding to that namespace to the symbol table. NAMESPACE is | |
2077 | the name of the enclosing namespace. */ | |
91c24f0a | 2078 | |
72bf9492 DJ |
2079 | static void |
2080 | add_partial_namespace (struct partial_die_info *pdi, | |
91c24f0a | 2081 | CORE_ADDR *lowpc, CORE_ADDR *highpc, |
72bf9492 | 2082 | struct dwarf2_cu *cu) |
91c24f0a | 2083 | { |
e7c27a73 | 2084 | struct objfile *objfile = cu->objfile; |
5c4e30ca | 2085 | |
72bf9492 | 2086 | /* Add a symbol for the namespace. */ |
e7c27a73 | 2087 | |
72bf9492 | 2088 | add_partial_symbol (pdi, cu); |
5c4e30ca DC |
2089 | |
2090 | /* Now scan partial symbols in that namespace. */ | |
2091 | ||
91c24f0a | 2092 | if (pdi->has_children) |
72bf9492 | 2093 | scan_partial_symbols (pdi->die_child, lowpc, highpc, cu); |
91c24f0a DC |
2094 | } |
2095 | ||
72bf9492 DJ |
2096 | /* See if we can figure out if the class lives in a namespace. We do |
2097 | this by looking for a member function; its demangled name will | |
2098 | contain namespace info, if there is any. */ | |
63d06c5c | 2099 | |
72bf9492 DJ |
2100 | static void |
2101 | guess_structure_name (struct partial_die_info *struct_pdi, | |
2102 | struct dwarf2_cu *cu) | |
63d06c5c | 2103 | { |
987504bb JJ |
2104 | if ((cu->language == language_cplus |
2105 | || cu->language == language_java) | |
72bf9492 | 2106 | && cu->has_namespace_info == 0 |
63d06c5c DC |
2107 | && struct_pdi->has_children) |
2108 | { | |
63d06c5c DC |
2109 | /* NOTE: carlton/2003-10-07: Getting the info this way changes |
2110 | what template types look like, because the demangler | |
2111 | frequently doesn't give the same name as the debug info. We | |
2112 | could fix this by only using the demangled name to get the | |
134d01f1 | 2113 | prefix (but see comment in read_structure_type). */ |
63d06c5c | 2114 | |
72bf9492 DJ |
2115 | struct partial_die_info *child_pdi = struct_pdi->die_child; |
2116 | struct partial_die_info *real_pdi; | |
5d51ca54 | 2117 | |
72bf9492 DJ |
2118 | /* If this DIE (this DIE's specification, if any) has a parent, then |
2119 | we should not do this. We'll prepend the parent's fully qualified | |
2120 | name when we create the partial symbol. */ | |
5d51ca54 | 2121 | |
72bf9492 | 2122 | real_pdi = struct_pdi; |
72bf9492 | 2123 | while (real_pdi->has_specification) |
10b3939b | 2124 | real_pdi = find_partial_die (real_pdi->spec_offset, cu); |
63d06c5c | 2125 | |
72bf9492 DJ |
2126 | if (real_pdi->die_parent != NULL) |
2127 | return; | |
63d06c5c | 2128 | |
72bf9492 DJ |
2129 | while (child_pdi != NULL) |
2130 | { | |
2131 | if (child_pdi->tag == DW_TAG_subprogram) | |
63d06c5c | 2132 | { |
72bf9492 | 2133 | char *actual_class_name |
31c27f77 JJ |
2134 | = language_class_name_from_physname (cu->language_defn, |
2135 | child_pdi->name); | |
63d06c5c | 2136 | if (actual_class_name != NULL) |
72bf9492 DJ |
2137 | { |
2138 | struct_pdi->name | |
2139 | = obsavestring (actual_class_name, | |
2140 | strlen (actual_class_name), | |
2141 | &cu->comp_unit_obstack); | |
2142 | xfree (actual_class_name); | |
2143 | } | |
63d06c5c DC |
2144 | break; |
2145 | } | |
72bf9492 DJ |
2146 | |
2147 | child_pdi = child_pdi->die_sibling; | |
63d06c5c DC |
2148 | } |
2149 | } | |
63d06c5c DC |
2150 | } |
2151 | ||
91c24f0a DC |
2152 | /* Read a partial die corresponding to an enumeration type. */ |
2153 | ||
72bf9492 DJ |
2154 | static void |
2155 | add_partial_enumeration (struct partial_die_info *enum_pdi, | |
2156 | struct dwarf2_cu *cu) | |
91c24f0a | 2157 | { |
e7c27a73 | 2158 | struct objfile *objfile = cu->objfile; |
91c24f0a | 2159 | bfd *abfd = objfile->obfd; |
72bf9492 | 2160 | struct partial_die_info *pdi; |
91c24f0a DC |
2161 | |
2162 | if (enum_pdi->name != NULL) | |
72bf9492 DJ |
2163 | add_partial_symbol (enum_pdi, cu); |
2164 | ||
2165 | pdi = enum_pdi->die_child; | |
2166 | while (pdi) | |
91c24f0a | 2167 | { |
72bf9492 | 2168 | if (pdi->tag != DW_TAG_enumerator || pdi->name == NULL) |
e2e0b3e5 | 2169 | complaint (&symfile_complaints, _("malformed enumerator DIE ignored")); |
91c24f0a | 2170 | else |
72bf9492 DJ |
2171 | add_partial_symbol (pdi, cu); |
2172 | pdi = pdi->die_sibling; | |
91c24f0a | 2173 | } |
91c24f0a DC |
2174 | } |
2175 | ||
4bb7a0a7 DJ |
2176 | /* Read the initial uleb128 in the die at INFO_PTR in compilation unit CU. |
2177 | Return the corresponding abbrev, or NULL if the number is zero (indicating | |
2178 | an empty DIE). In either case *BYTES_READ will be set to the length of | |
2179 | the initial number. */ | |
2180 | ||
2181 | static struct abbrev_info * | |
fe1b8b76 | 2182 | peek_die_abbrev (gdb_byte *info_ptr, unsigned int *bytes_read, |
891d2f0b | 2183 | struct dwarf2_cu *cu) |
4bb7a0a7 DJ |
2184 | { |
2185 | bfd *abfd = cu->objfile->obfd; | |
2186 | unsigned int abbrev_number; | |
2187 | struct abbrev_info *abbrev; | |
2188 | ||
2189 | abbrev_number = read_unsigned_leb128 (abfd, info_ptr, bytes_read); | |
2190 | ||
2191 | if (abbrev_number == 0) | |
2192 | return NULL; | |
2193 | ||
2194 | abbrev = dwarf2_lookup_abbrev (abbrev_number, cu); | |
2195 | if (!abbrev) | |
2196 | { | |
8a3fe4f8 | 2197 | error (_("Dwarf Error: Could not find abbrev number %d [in module %s]"), abbrev_number, |
4bb7a0a7 DJ |
2198 | bfd_get_filename (abfd)); |
2199 | } | |
2200 | ||
2201 | return abbrev; | |
2202 | } | |
2203 | ||
2204 | /* Scan the debug information for CU starting at INFO_PTR. Returns a | |
2205 | pointer to the end of a series of DIEs, terminated by an empty | |
2206 | DIE. Any children of the skipped DIEs will also be skipped. */ | |
2207 | ||
fe1b8b76 JB |
2208 | static gdb_byte * |
2209 | skip_children (gdb_byte *info_ptr, struct dwarf2_cu *cu) | |
4bb7a0a7 DJ |
2210 | { |
2211 | struct abbrev_info *abbrev; | |
2212 | unsigned int bytes_read; | |
2213 | ||
2214 | while (1) | |
2215 | { | |
2216 | abbrev = peek_die_abbrev (info_ptr, &bytes_read, cu); | |
2217 | if (abbrev == NULL) | |
2218 | return info_ptr + bytes_read; | |
2219 | else | |
2220 | info_ptr = skip_one_die (info_ptr + bytes_read, abbrev, cu); | |
2221 | } | |
2222 | } | |
2223 | ||
2224 | /* Scan the debug information for CU starting at INFO_PTR. INFO_PTR | |
2225 | should point just after the initial uleb128 of a DIE, and the | |
2226 | abbrev corresponding to that skipped uleb128 should be passed in | |
2227 | ABBREV. Returns a pointer to this DIE's sibling, skipping any | |
2228 | children. */ | |
2229 | ||
fe1b8b76 JB |
2230 | static gdb_byte * |
2231 | skip_one_die (gdb_byte *info_ptr, struct abbrev_info *abbrev, | |
4bb7a0a7 DJ |
2232 | struct dwarf2_cu *cu) |
2233 | { | |
2234 | unsigned int bytes_read; | |
2235 | struct attribute attr; | |
2236 | bfd *abfd = cu->objfile->obfd; | |
2237 | unsigned int form, i; | |
2238 | ||
2239 | for (i = 0; i < abbrev->num_attrs; i++) | |
2240 | { | |
2241 | /* The only abbrev we care about is DW_AT_sibling. */ | |
2242 | if (abbrev->attrs[i].name == DW_AT_sibling) | |
2243 | { | |
2244 | read_attribute (&attr, &abbrev->attrs[i], | |
2245 | abfd, info_ptr, cu); | |
2246 | if (attr.form == DW_FORM_ref_addr) | |
e2e0b3e5 | 2247 | complaint (&symfile_complaints, _("ignoring absolute DW_AT_sibling")); |
4bb7a0a7 | 2248 | else |
6502dd73 DJ |
2249 | return dwarf2_per_objfile->info_buffer |
2250 | + dwarf2_get_ref_die_offset (&attr, cu); | |
4bb7a0a7 DJ |
2251 | } |
2252 | ||
2253 | /* If it isn't DW_AT_sibling, skip this attribute. */ | |
2254 | form = abbrev->attrs[i].form; | |
2255 | skip_attribute: | |
2256 | switch (form) | |
2257 | { | |
2258 | case DW_FORM_addr: | |
2259 | case DW_FORM_ref_addr: | |
2260 | info_ptr += cu->header.addr_size; | |
2261 | break; | |
2262 | case DW_FORM_data1: | |
2263 | case DW_FORM_ref1: | |
2264 | case DW_FORM_flag: | |
2265 | info_ptr += 1; | |
2266 | break; | |
2267 | case DW_FORM_data2: | |
2268 | case DW_FORM_ref2: | |
2269 | info_ptr += 2; | |
2270 | break; | |
2271 | case DW_FORM_data4: | |
2272 | case DW_FORM_ref4: | |
2273 | info_ptr += 4; | |
2274 | break; | |
2275 | case DW_FORM_data8: | |
2276 | case DW_FORM_ref8: | |
2277 | info_ptr += 8; | |
2278 | break; | |
2279 | case DW_FORM_string: | |
2280 | read_string (abfd, info_ptr, &bytes_read); | |
2281 | info_ptr += bytes_read; | |
2282 | break; | |
2283 | case DW_FORM_strp: | |
2284 | info_ptr += cu->header.offset_size; | |
2285 | break; | |
2286 | case DW_FORM_block: | |
2287 | info_ptr += read_unsigned_leb128 (abfd, info_ptr, &bytes_read); | |
2288 | info_ptr += bytes_read; | |
2289 | break; | |
2290 | case DW_FORM_block1: | |
2291 | info_ptr += 1 + read_1_byte (abfd, info_ptr); | |
2292 | break; | |
2293 | case DW_FORM_block2: | |
2294 | info_ptr += 2 + read_2_bytes (abfd, info_ptr); | |
2295 | break; | |
2296 | case DW_FORM_block4: | |
2297 | info_ptr += 4 + read_4_bytes (abfd, info_ptr); | |
2298 | break; | |
2299 | case DW_FORM_sdata: | |
2300 | case DW_FORM_udata: | |
2301 | case DW_FORM_ref_udata: | |
2302 | info_ptr = skip_leb128 (abfd, info_ptr); | |
2303 | break; | |
2304 | case DW_FORM_indirect: | |
2305 | form = read_unsigned_leb128 (abfd, info_ptr, &bytes_read); | |
2306 | info_ptr += bytes_read; | |
2307 | /* We need to continue parsing from here, so just go back to | |
2308 | the top. */ | |
2309 | goto skip_attribute; | |
2310 | ||
2311 | default: | |
8a3fe4f8 | 2312 | error (_("Dwarf Error: Cannot handle %s in DWARF reader [in module %s]"), |
4bb7a0a7 DJ |
2313 | dwarf_form_name (form), |
2314 | bfd_get_filename (abfd)); | |
2315 | } | |
2316 | } | |
2317 | ||
2318 | if (abbrev->has_children) | |
2319 | return skip_children (info_ptr, cu); | |
2320 | else | |
2321 | return info_ptr; | |
2322 | } | |
2323 | ||
2324 | /* Locate ORIG_PDI's sibling; INFO_PTR should point to the start of | |
2325 | the next DIE after ORIG_PDI. */ | |
91c24f0a | 2326 | |
fe1b8b76 JB |
2327 | static gdb_byte * |
2328 | locate_pdi_sibling (struct partial_die_info *orig_pdi, gdb_byte *info_ptr, | |
e7c27a73 | 2329 | bfd *abfd, struct dwarf2_cu *cu) |
91c24f0a DC |
2330 | { |
2331 | /* Do we know the sibling already? */ | |
72bf9492 | 2332 | |
91c24f0a DC |
2333 | if (orig_pdi->sibling) |
2334 | return orig_pdi->sibling; | |
2335 | ||
2336 | /* Are there any children to deal with? */ | |
2337 | ||
2338 | if (!orig_pdi->has_children) | |
2339 | return info_ptr; | |
2340 | ||
4bb7a0a7 | 2341 | /* Skip the children the long way. */ |
91c24f0a | 2342 | |
4bb7a0a7 | 2343 | return skip_children (info_ptr, cu); |
91c24f0a DC |
2344 | } |
2345 | ||
c906108c SS |
2346 | /* Expand this partial symbol table into a full symbol table. */ |
2347 | ||
2348 | static void | |
fba45db2 | 2349 | dwarf2_psymtab_to_symtab (struct partial_symtab *pst) |
c906108c SS |
2350 | { |
2351 | /* FIXME: This is barely more than a stub. */ | |
2352 | if (pst != NULL) | |
2353 | { | |
2354 | if (pst->readin) | |
2355 | { | |
8a3fe4f8 | 2356 | warning (_("bug: psymtab for %s is already read in."), pst->filename); |
c906108c SS |
2357 | } |
2358 | else | |
2359 | { | |
2360 | if (info_verbose) | |
2361 | { | |
a3f17187 | 2362 | printf_filtered (_("Reading in symbols for %s..."), pst->filename); |
c906108c SS |
2363 | gdb_flush (gdb_stdout); |
2364 | } | |
2365 | ||
10b3939b DJ |
2366 | /* Restore our global data. */ |
2367 | dwarf2_per_objfile = objfile_data (pst->objfile, | |
2368 | dwarf2_objfile_data_key); | |
2369 | ||
c906108c SS |
2370 | psymtab_to_symtab_1 (pst); |
2371 | ||
2372 | /* Finish up the debug error message. */ | |
2373 | if (info_verbose) | |
a3f17187 | 2374 | printf_filtered (_("done.\n")); |
c906108c SS |
2375 | } |
2376 | } | |
2377 | } | |
2378 | ||
10b3939b DJ |
2379 | /* Add PER_CU to the queue. */ |
2380 | ||
2381 | static void | |
2382 | queue_comp_unit (struct dwarf2_per_cu_data *per_cu) | |
2383 | { | |
2384 | struct dwarf2_queue_item *item; | |
2385 | ||
2386 | per_cu->queued = 1; | |
2387 | item = xmalloc (sizeof (*item)); | |
2388 | item->per_cu = per_cu; | |
2389 | item->next = NULL; | |
2390 | ||
2391 | if (dwarf2_queue == NULL) | |
2392 | dwarf2_queue = item; | |
2393 | else | |
2394 | dwarf2_queue_tail->next = item; | |
2395 | ||
2396 | dwarf2_queue_tail = item; | |
2397 | } | |
2398 | ||
2399 | /* Process the queue. */ | |
2400 | ||
2401 | static void | |
2402 | process_queue (struct objfile *objfile) | |
2403 | { | |
2404 | struct dwarf2_queue_item *item, *next_item; | |
2405 | ||
2406 | /* Initially, there is just one item on the queue. Load its DIEs, | |
2407 | and the DIEs of any other compilation units it requires, | |
2408 | transitively. */ | |
2409 | ||
2410 | for (item = dwarf2_queue; item != NULL; item = item->next) | |
2411 | { | |
2412 | /* Read in this compilation unit. This may add new items to | |
2413 | the end of the queue. */ | |
31ffec48 | 2414 | load_full_comp_unit (item->per_cu, objfile); |
10b3939b DJ |
2415 | |
2416 | item->per_cu->cu->read_in_chain = dwarf2_per_objfile->read_in_chain; | |
2417 | dwarf2_per_objfile->read_in_chain = item->per_cu; | |
2418 | ||
2419 | /* If this compilation unit has already had full symbols created, | |
2420 | reset the TYPE fields in each DIE. */ | |
31ffec48 | 2421 | if (item->per_cu->type_hash) |
10b3939b DJ |
2422 | reset_die_and_siblings_types (item->per_cu->cu->dies, |
2423 | item->per_cu->cu); | |
2424 | } | |
2425 | ||
2426 | /* Now everything left on the queue needs to be read in. Process | |
2427 | them, one at a time, removing from the queue as we finish. */ | |
2428 | for (item = dwarf2_queue; item != NULL; dwarf2_queue = item = next_item) | |
2429 | { | |
31ffec48 | 2430 | if (item->per_cu->psymtab && !item->per_cu->psymtab->readin) |
10b3939b DJ |
2431 | process_full_comp_unit (item->per_cu); |
2432 | ||
2433 | item->per_cu->queued = 0; | |
2434 | next_item = item->next; | |
2435 | xfree (item); | |
2436 | } | |
2437 | ||
2438 | dwarf2_queue_tail = NULL; | |
2439 | } | |
2440 | ||
2441 | /* Free all allocated queue entries. This function only releases anything if | |
2442 | an error was thrown; if the queue was processed then it would have been | |
2443 | freed as we went along. */ | |
2444 | ||
2445 | static void | |
2446 | dwarf2_release_queue (void *dummy) | |
2447 | { | |
2448 | struct dwarf2_queue_item *item, *last; | |
2449 | ||
2450 | item = dwarf2_queue; | |
2451 | while (item) | |
2452 | { | |
2453 | /* Anything still marked queued is likely to be in an | |
2454 | inconsistent state, so discard it. */ | |
2455 | if (item->per_cu->queued) | |
2456 | { | |
2457 | if (item->per_cu->cu != NULL) | |
2458 | free_one_cached_comp_unit (item->per_cu->cu); | |
2459 | item->per_cu->queued = 0; | |
2460 | } | |
2461 | ||
2462 | last = item; | |
2463 | item = item->next; | |
2464 | xfree (last); | |
2465 | } | |
2466 | ||
2467 | dwarf2_queue = dwarf2_queue_tail = NULL; | |
2468 | } | |
2469 | ||
2470 | /* Read in full symbols for PST, and anything it depends on. */ | |
2471 | ||
c906108c | 2472 | static void |
fba45db2 | 2473 | psymtab_to_symtab_1 (struct partial_symtab *pst) |
c906108c | 2474 | { |
10b3939b | 2475 | struct dwarf2_per_cu_data *per_cu; |
c906108c | 2476 | struct cleanup *back_to; |
aaa75496 JB |
2477 | int i; |
2478 | ||
2479 | for (i = 0; i < pst->number_of_dependencies; i++) | |
2480 | if (!pst->dependencies[i]->readin) | |
2481 | { | |
2482 | /* Inform about additional files that need to be read in. */ | |
2483 | if (info_verbose) | |
2484 | { | |
a3f17187 | 2485 | /* FIXME: i18n: Need to make this a single string. */ |
aaa75496 JB |
2486 | fputs_filtered (" ", gdb_stdout); |
2487 | wrap_here (""); | |
2488 | fputs_filtered ("and ", gdb_stdout); | |
2489 | wrap_here (""); | |
2490 | printf_filtered ("%s...", pst->dependencies[i]->filename); | |
2491 | wrap_here (""); /* Flush output */ | |
2492 | gdb_flush (gdb_stdout); | |
2493 | } | |
2494 | psymtab_to_symtab_1 (pst->dependencies[i]); | |
2495 | } | |
2496 | ||
10b3939b DJ |
2497 | per_cu = (struct dwarf2_per_cu_data *) pst->read_symtab_private; |
2498 | ||
2499 | if (per_cu == NULL) | |
aaa75496 JB |
2500 | { |
2501 | /* It's an include file, no symbols to read for it. | |
2502 | Everything is in the parent symtab. */ | |
2503 | pst->readin = 1; | |
2504 | return; | |
2505 | } | |
c906108c | 2506 | |
10b3939b DJ |
2507 | back_to = make_cleanup (dwarf2_release_queue, NULL); |
2508 | ||
2509 | queue_comp_unit (per_cu); | |
2510 | ||
2511 | process_queue (pst->objfile); | |
2512 | ||
2513 | /* Age the cache, releasing compilation units that have not | |
2514 | been used recently. */ | |
2515 | age_cached_comp_units (); | |
2516 | ||
2517 | do_cleanups (back_to); | |
2518 | } | |
2519 | ||
2520 | /* Load the DIEs associated with PST and PER_CU into memory. */ | |
2521 | ||
2522 | static struct dwarf2_cu * | |
31ffec48 | 2523 | load_full_comp_unit (struct dwarf2_per_cu_data *per_cu, struct objfile *objfile) |
10b3939b | 2524 | { |
31ffec48 | 2525 | bfd *abfd = objfile->obfd; |
10b3939b DJ |
2526 | struct dwarf2_cu *cu; |
2527 | unsigned long offset; | |
fe1b8b76 | 2528 | gdb_byte *info_ptr; |
10b3939b DJ |
2529 | struct cleanup *back_to, *free_cu_cleanup; |
2530 | struct attribute *attr; | |
2531 | CORE_ADDR baseaddr; | |
6502dd73 | 2532 | |
c906108c | 2533 | /* Set local variables from the partial symbol table info. */ |
10b3939b | 2534 | offset = per_cu->offset; |
6502dd73 DJ |
2535 | |
2536 | info_ptr = dwarf2_per_objfile->info_buffer + offset; | |
63d06c5c | 2537 | |
10b3939b DJ |
2538 | cu = xmalloc (sizeof (struct dwarf2_cu)); |
2539 | memset (cu, 0, sizeof (struct dwarf2_cu)); | |
c906108c | 2540 | |
10b3939b DJ |
2541 | /* If an error occurs while loading, release our storage. */ |
2542 | free_cu_cleanup = make_cleanup (free_one_comp_unit, cu); | |
c906108c | 2543 | |
31ffec48 | 2544 | cu->objfile = objfile; |
e7c27a73 | 2545 | |
c906108c | 2546 | /* read in the comp_unit header */ |
10b3939b | 2547 | info_ptr = read_comp_unit_head (&cu->header, info_ptr, abfd); |
c906108c SS |
2548 | |
2549 | /* Read the abbrevs for this compilation unit */ | |
10b3939b DJ |
2550 | dwarf2_read_abbrevs (abfd, cu); |
2551 | back_to = make_cleanup (dwarf2_free_abbrev_table, cu); | |
2552 | ||
2553 | cu->header.offset = offset; | |
c906108c | 2554 | |
10b3939b DJ |
2555 | cu->per_cu = per_cu; |
2556 | per_cu->cu = cu; | |
e142c38c | 2557 | |
10b3939b DJ |
2558 | /* We use this obstack for block values in dwarf_alloc_block. */ |
2559 | obstack_init (&cu->comp_unit_obstack); | |
2560 | ||
2561 | cu->dies = read_comp_unit (info_ptr, abfd, cu); | |
2562 | ||
2563 | /* We try not to read any attributes in this function, because not | |
2564 | all objfiles needed for references have been loaded yet, and symbol | |
2565 | table processing isn't initialized. But we have to set the CU language, | |
2566 | or we won't be able to build types correctly. */ | |
2567 | attr = dwarf2_attr (cu->dies, DW_AT_language, cu); | |
2568 | if (attr) | |
2569 | set_cu_language (DW_UNSND (attr), cu); | |
2570 | else | |
2571 | set_cu_language (language_minimal, cu); | |
2572 | ||
2573 | do_cleanups (back_to); | |
e142c38c | 2574 | |
10b3939b DJ |
2575 | /* We've successfully allocated this compilation unit. Let our caller |
2576 | clean it up when finished with it. */ | |
2577 | discard_cleanups (free_cu_cleanup); | |
c906108c | 2578 | |
10b3939b DJ |
2579 | return cu; |
2580 | } | |
2581 | ||
2582 | /* Generate full symbol information for PST and CU, whose DIEs have | |
2583 | already been loaded into memory. */ | |
2584 | ||
2585 | static void | |
2586 | process_full_comp_unit (struct dwarf2_per_cu_data *per_cu) | |
2587 | { | |
2588 | struct partial_symtab *pst = per_cu->psymtab; | |
2589 | struct dwarf2_cu *cu = per_cu->cu; | |
2590 | struct objfile *objfile = pst->objfile; | |
2591 | bfd *abfd = objfile->obfd; | |
2592 | CORE_ADDR lowpc, highpc; | |
2593 | struct symtab *symtab; | |
2594 | struct cleanup *back_to; | |
2595 | struct attribute *attr; | |
2596 | CORE_ADDR baseaddr; | |
2597 | ||
2598 | baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile)); | |
2599 | ||
2600 | /* We're in the global namespace. */ | |
2601 | processing_current_prefix = ""; | |
2602 | ||
2603 | buildsym_init (); | |
2604 | back_to = make_cleanup (really_free_pendings, NULL); | |
2605 | ||
2606 | cu->list_in_scope = &file_symbols; | |
c906108c | 2607 | |
0d53c4c4 DJ |
2608 | /* Find the base address of the compilation unit for range lists and |
2609 | location lists. It will normally be specified by DW_AT_low_pc. | |
2610 | In DWARF-3 draft 4, the base address could be overridden by | |
2611 | DW_AT_entry_pc. It's been removed, but GCC still uses this for | |
2612 | compilation units with discontinuous ranges. */ | |
2613 | ||
10b3939b DJ |
2614 | cu->header.base_known = 0; |
2615 | cu->header.base_address = 0; | |
0d53c4c4 | 2616 | |
10b3939b | 2617 | attr = dwarf2_attr (cu->dies, DW_AT_entry_pc, cu); |
0d53c4c4 DJ |
2618 | if (attr) |
2619 | { | |
10b3939b DJ |
2620 | cu->header.base_address = DW_ADDR (attr); |
2621 | cu->header.base_known = 1; | |
0d53c4c4 DJ |
2622 | } |
2623 | else | |
2624 | { | |
10b3939b | 2625 | attr = dwarf2_attr (cu->dies, DW_AT_low_pc, cu); |
0d53c4c4 DJ |
2626 | if (attr) |
2627 | { | |
10b3939b DJ |
2628 | cu->header.base_address = DW_ADDR (attr); |
2629 | cu->header.base_known = 1; | |
0d53c4c4 DJ |
2630 | } |
2631 | } | |
2632 | ||
c906108c | 2633 | /* Do line number decoding in read_file_scope () */ |
10b3939b | 2634 | process_die (cu->dies, cu); |
c906108c | 2635 | |
fae299cd DC |
2636 | /* Some compilers don't define a DW_AT_high_pc attribute for the |
2637 | compilation unit. If the DW_AT_high_pc is missing, synthesize | |
2638 | it, by scanning the DIE's below the compilation unit. */ | |
10b3939b | 2639 | get_scope_pc_bounds (cu->dies, &lowpc, &highpc, cu); |
c906108c | 2640 | |
613e1657 | 2641 | symtab = end_symtab (highpc + baseaddr, objfile, SECT_OFF_TEXT (objfile)); |
c906108c SS |
2642 | |
2643 | /* Set symtab language to language from DW_AT_language. | |
2644 | If the compilation is from a C file generated by language preprocessors, | |
2645 | do not set the language if it was already deduced by start_subfile. */ | |
2646 | if (symtab != NULL | |
10b3939b | 2647 | && !(cu->language == language_c && symtab->language != language_c)) |
c906108c | 2648 | { |
10b3939b | 2649 | symtab->language = cu->language; |
c906108c SS |
2650 | } |
2651 | pst->symtab = symtab; | |
2652 | pst->readin = 1; | |
c906108c SS |
2653 | |
2654 | do_cleanups (back_to); | |
2655 | } | |
2656 | ||
2657 | /* Process a die and its children. */ | |
2658 | ||
2659 | static void | |
e7c27a73 | 2660 | process_die (struct die_info *die, struct dwarf2_cu *cu) |
c906108c SS |
2661 | { |
2662 | switch (die->tag) | |
2663 | { | |
2664 | case DW_TAG_padding: | |
2665 | break; | |
2666 | case DW_TAG_compile_unit: | |
e7c27a73 | 2667 | read_file_scope (die, cu); |
c906108c SS |
2668 | break; |
2669 | case DW_TAG_subprogram: | |
e7c27a73 DJ |
2670 | read_subroutine_type (die, cu); |
2671 | read_func_scope (die, cu); | |
c906108c SS |
2672 | break; |
2673 | case DW_TAG_inlined_subroutine: | |
2674 | /* FIXME: These are ignored for now. | |
c5aa993b JM |
2675 | They could be used to set breakpoints on all inlined instances |
2676 | of a function and make GDB `next' properly over inlined functions. */ | |
c906108c SS |
2677 | break; |
2678 | case DW_TAG_lexical_block: | |
14898363 L |
2679 | case DW_TAG_try_block: |
2680 | case DW_TAG_catch_block: | |
e7c27a73 | 2681 | read_lexical_block_scope (die, cu); |
c906108c SS |
2682 | break; |
2683 | case DW_TAG_class_type: | |
2684 | case DW_TAG_structure_type: | |
2685 | case DW_TAG_union_type: | |
134d01f1 DJ |
2686 | read_structure_type (die, cu); |
2687 | process_structure_scope (die, cu); | |
c906108c SS |
2688 | break; |
2689 | case DW_TAG_enumeration_type: | |
134d01f1 DJ |
2690 | read_enumeration_type (die, cu); |
2691 | process_enumeration_scope (die, cu); | |
c906108c | 2692 | break; |
134d01f1 DJ |
2693 | |
2694 | /* FIXME drow/2004-03-14: These initialize die->type, but do not create | |
2695 | a symbol or process any children. Therefore it doesn't do anything | |
2696 | that won't be done on-demand by read_type_die. */ | |
c906108c | 2697 | case DW_TAG_subroutine_type: |
e7c27a73 | 2698 | read_subroutine_type (die, cu); |
c906108c | 2699 | break; |
72019c9c GM |
2700 | case DW_TAG_set_type: |
2701 | read_set_type (die, cu); | |
2702 | break; | |
c906108c | 2703 | case DW_TAG_array_type: |
e7c27a73 | 2704 | read_array_type (die, cu); |
c906108c SS |
2705 | break; |
2706 | case DW_TAG_pointer_type: | |
e7c27a73 | 2707 | read_tag_pointer_type (die, cu); |
c906108c SS |
2708 | break; |
2709 | case DW_TAG_ptr_to_member_type: | |
e7c27a73 | 2710 | read_tag_ptr_to_member_type (die, cu); |
c906108c SS |
2711 | break; |
2712 | case DW_TAG_reference_type: | |
e7c27a73 | 2713 | read_tag_reference_type (die, cu); |
c906108c SS |
2714 | break; |
2715 | case DW_TAG_string_type: | |
e7c27a73 | 2716 | read_tag_string_type (die, cu); |
c906108c | 2717 | break; |
134d01f1 DJ |
2718 | /* END FIXME */ |
2719 | ||
c906108c | 2720 | case DW_TAG_base_type: |
e7c27a73 | 2721 | read_base_type (die, cu); |
134d01f1 DJ |
2722 | /* Add a typedef symbol for the type definition, if it has a |
2723 | DW_AT_name. */ | |
2724 | new_symbol (die, die->type, cu); | |
c906108c | 2725 | break; |
a02abb62 JB |
2726 | case DW_TAG_subrange_type: |
2727 | read_subrange_type (die, cu); | |
134d01f1 DJ |
2728 | /* Add a typedef symbol for the type definition, if it has a |
2729 | DW_AT_name. */ | |
2730 | new_symbol (die, die->type, cu); | |
a02abb62 | 2731 | break; |
c906108c | 2732 | case DW_TAG_common_block: |
e7c27a73 | 2733 | read_common_block (die, cu); |
c906108c SS |
2734 | break; |
2735 | case DW_TAG_common_inclusion: | |
2736 | break; | |
d9fa45fe | 2737 | case DW_TAG_namespace: |
63d06c5c | 2738 | processing_has_namespace_info = 1; |
e7c27a73 | 2739 | read_namespace (die, cu); |
d9fa45fe DC |
2740 | break; |
2741 | case DW_TAG_imported_declaration: | |
2742 | case DW_TAG_imported_module: | |
2743 | /* FIXME: carlton/2002-10-16: Eventually, we should use the | |
2744 | information contained in these. DW_TAG_imported_declaration | |
2745 | dies shouldn't have children; DW_TAG_imported_module dies | |
2746 | shouldn't in the C++ case, but conceivably could in the | |
2747 | Fortran case, so we'll have to replace this gdb_assert if | |
2748 | Fortran compilers start generating that info. */ | |
63d06c5c | 2749 | processing_has_namespace_info = 1; |
639d11d3 | 2750 | gdb_assert (die->child == NULL); |
d9fa45fe | 2751 | break; |
c906108c | 2752 | default: |
e7c27a73 | 2753 | new_symbol (die, NULL, cu); |
c906108c SS |
2754 | break; |
2755 | } | |
2756 | } | |
2757 | ||
5fb290d7 | 2758 | static void |
e142c38c | 2759 | initialize_cu_func_list (struct dwarf2_cu *cu) |
5fb290d7 | 2760 | { |
e142c38c | 2761 | cu->first_fn = cu->last_fn = cu->cached_fn = NULL; |
5fb290d7 DJ |
2762 | } |
2763 | ||
cb1df416 DJ |
2764 | static void |
2765 | free_cu_line_header (void *arg) | |
2766 | { | |
2767 | struct dwarf2_cu *cu = arg; | |
2768 | ||
2769 | free_line_header (cu->line_header); | |
2770 | cu->line_header = NULL; | |
2771 | } | |
2772 | ||
c906108c | 2773 | static void |
e7c27a73 | 2774 | read_file_scope (struct die_info *die, struct dwarf2_cu *cu) |
c906108c | 2775 | { |
e7c27a73 DJ |
2776 | struct objfile *objfile = cu->objfile; |
2777 | struct comp_unit_head *cu_header = &cu->header; | |
debd256d | 2778 | struct cleanup *back_to = make_cleanup (null_cleanup, 0); |
2acceee2 | 2779 | CORE_ADDR lowpc = ((CORE_ADDR) -1); |
c906108c SS |
2780 | CORE_ADDR highpc = ((CORE_ADDR) 0); |
2781 | struct attribute *attr; | |
e1024ff1 | 2782 | char *name = NULL; |
c906108c SS |
2783 | char *comp_dir = NULL; |
2784 | struct die_info *child_die; | |
2785 | bfd *abfd = objfile->obfd; | |
debd256d | 2786 | struct line_header *line_header = 0; |
e142c38c DJ |
2787 | CORE_ADDR baseaddr; |
2788 | ||
2789 | baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile)); | |
c906108c | 2790 | |
fae299cd | 2791 | get_scope_pc_bounds (die, &lowpc, &highpc, cu); |
c906108c SS |
2792 | |
2793 | /* If we didn't find a lowpc, set it to highpc to avoid complaints | |
2794 | from finish_block. */ | |
2acceee2 | 2795 | if (lowpc == ((CORE_ADDR) -1)) |
c906108c SS |
2796 | lowpc = highpc; |
2797 | lowpc += baseaddr; | |
2798 | highpc += baseaddr; | |
2799 | ||
e142c38c | 2800 | attr = dwarf2_attr (die, DW_AT_name, cu); |
c906108c SS |
2801 | if (attr) |
2802 | { | |
2803 | name = DW_STRING (attr); | |
2804 | } | |
e1024ff1 | 2805 | |
e142c38c | 2806 | attr = dwarf2_attr (die, DW_AT_comp_dir, cu); |
c906108c | 2807 | if (attr) |
e1024ff1 DJ |
2808 | comp_dir = DW_STRING (attr); |
2809 | else if (name != NULL && IS_ABSOLUTE_PATH (name)) | |
c906108c | 2810 | { |
e1024ff1 DJ |
2811 | comp_dir = ldirname (name); |
2812 | if (comp_dir != NULL) | |
2813 | make_cleanup (xfree, comp_dir); | |
2814 | } | |
2815 | if (comp_dir != NULL) | |
2816 | { | |
2817 | /* Irix 6.2 native cc prepends <machine>.: to the compilation | |
2818 | directory, get rid of it. */ | |
2819 | char *cp = strchr (comp_dir, ':'); | |
c906108c | 2820 | |
e1024ff1 DJ |
2821 | if (cp && cp != comp_dir && cp[-1] == '.' && cp[1] == '/') |
2822 | comp_dir = cp + 1; | |
c906108c SS |
2823 | } |
2824 | ||
e1024ff1 DJ |
2825 | if (name == NULL) |
2826 | name = "<unknown>"; | |
2827 | ||
e142c38c | 2828 | attr = dwarf2_attr (die, DW_AT_language, cu); |
c906108c SS |
2829 | if (attr) |
2830 | { | |
e142c38c | 2831 | set_cu_language (DW_UNSND (attr), cu); |
c906108c SS |
2832 | } |
2833 | ||
b0f35d58 DL |
2834 | attr = dwarf2_attr (die, DW_AT_producer, cu); |
2835 | if (attr) | |
2836 | cu->producer = DW_STRING (attr); | |
303b6f5d | 2837 | |
c906108c SS |
2838 | /* We assume that we're processing GCC output. */ |
2839 | processing_gcc_compilation = 2; | |
c906108c SS |
2840 | |
2841 | /* The compilation unit may be in a different language or objfile, | |
2842 | zero out all remembered fundamental types. */ | |
e142c38c | 2843 | memset (cu->ftypes, 0, FT_NUM_MEMBERS * sizeof (struct type *)); |
c906108c SS |
2844 | |
2845 | start_symtab (name, comp_dir, lowpc); | |
2846 | record_debugformat ("DWARF 2"); | |
303b6f5d | 2847 | record_producer (cu->producer); |
c906108c | 2848 | |
e142c38c | 2849 | initialize_cu_func_list (cu); |
c906108c | 2850 | |
cb1df416 DJ |
2851 | /* Decode line number information if present. We do this before |
2852 | processing child DIEs, so that the line header table is available | |
2853 | for DW_AT_decl_file. */ | |
e142c38c | 2854 | attr = dwarf2_attr (die, DW_AT_stmt_list, cu); |
5fb290d7 DJ |
2855 | if (attr) |
2856 | { | |
debd256d | 2857 | unsigned int line_offset = DW_UNSND (attr); |
e7c27a73 | 2858 | line_header = dwarf_decode_line_header (line_offset, abfd, cu); |
debd256d JB |
2859 | if (line_header) |
2860 | { | |
cb1df416 DJ |
2861 | cu->line_header = line_header; |
2862 | make_cleanup (free_cu_line_header, cu); | |
aaa75496 | 2863 | dwarf_decode_lines (line_header, comp_dir, abfd, cu, NULL); |
debd256d | 2864 | } |
5fb290d7 | 2865 | } |
debd256d | 2866 | |
cb1df416 DJ |
2867 | /* Process all dies in compilation unit. */ |
2868 | if (die->child != NULL) | |
2869 | { | |
2870 | child_die = die->child; | |
2871 | while (child_die && child_die->tag) | |
2872 | { | |
2873 | process_die (child_die, cu); | |
2874 | child_die = sibling_die (child_die); | |
2875 | } | |
2876 | } | |
2877 | ||
2e276125 JB |
2878 | /* Decode macro information, if present. Dwarf 2 macro information |
2879 | refers to information in the line number info statement program | |
2880 | header, so we can only read it if we've read the header | |
2881 | successfully. */ | |
e142c38c | 2882 | attr = dwarf2_attr (die, DW_AT_macro_info, cu); |
41ff2da1 | 2883 | if (attr && line_header) |
2e276125 JB |
2884 | { |
2885 | unsigned int macro_offset = DW_UNSND (attr); | |
2886 | dwarf_decode_macros (line_header, macro_offset, | |
e7c27a73 | 2887 | comp_dir, abfd, cu); |
2e276125 | 2888 | } |
debd256d | 2889 | do_cleanups (back_to); |
5fb290d7 DJ |
2890 | } |
2891 | ||
2892 | static void | |
e142c38c DJ |
2893 | add_to_cu_func_list (const char *name, CORE_ADDR lowpc, CORE_ADDR highpc, |
2894 | struct dwarf2_cu *cu) | |
5fb290d7 DJ |
2895 | { |
2896 | struct function_range *thisfn; | |
2897 | ||
2898 | thisfn = (struct function_range *) | |
7b5a2f43 | 2899 | obstack_alloc (&cu->comp_unit_obstack, sizeof (struct function_range)); |
5fb290d7 DJ |
2900 | thisfn->name = name; |
2901 | thisfn->lowpc = lowpc; | |
2902 | thisfn->highpc = highpc; | |
2903 | thisfn->seen_line = 0; | |
2904 | thisfn->next = NULL; | |
2905 | ||
e142c38c DJ |
2906 | if (cu->last_fn == NULL) |
2907 | cu->first_fn = thisfn; | |
5fb290d7 | 2908 | else |
e142c38c | 2909 | cu->last_fn->next = thisfn; |
5fb290d7 | 2910 | |
e142c38c | 2911 | cu->last_fn = thisfn; |
c906108c SS |
2912 | } |
2913 | ||
2914 | static void | |
e7c27a73 | 2915 | read_func_scope (struct die_info *die, struct dwarf2_cu *cu) |
c906108c | 2916 | { |
e7c27a73 | 2917 | struct objfile *objfile = cu->objfile; |
52f0bd74 | 2918 | struct context_stack *new; |
c906108c SS |
2919 | CORE_ADDR lowpc; |
2920 | CORE_ADDR highpc; | |
2921 | struct die_info *child_die; | |
2922 | struct attribute *attr; | |
2923 | char *name; | |
fdde2d81 DC |
2924 | const char *previous_prefix = processing_current_prefix; |
2925 | struct cleanup *back_to = NULL; | |
e142c38c | 2926 | CORE_ADDR baseaddr; |
c906108c | 2927 | |
e142c38c DJ |
2928 | baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile)); |
2929 | ||
2930 | name = dwarf2_linkage_name (die, cu); | |
c906108c SS |
2931 | |
2932 | /* Ignore functions with missing or empty names and functions with | |
2933 | missing or invalid low and high pc attributes. */ | |
e7c27a73 | 2934 | if (name == NULL || !dwarf2_get_pc_bounds (die, &lowpc, &highpc, cu)) |
c906108c SS |
2935 | return; |
2936 | ||
987504bb JJ |
2937 | if (cu->language == language_cplus |
2938 | || cu->language == language_java) | |
fdde2d81 | 2939 | { |
086ed43d | 2940 | struct die_info *spec_die = die_specification (die, cu); |
fdde2d81 | 2941 | |
2a35147e JB |
2942 | /* NOTE: carlton/2004-01-23: We have to be careful in the |
2943 | presence of DW_AT_specification. For example, with GCC 3.4, | |
2944 | given the code | |
2945 | ||
2946 | namespace N { | |
2947 | void foo() { | |
2948 | // Definition of N::foo. | |
2949 | } | |
2950 | } | |
2951 | ||
2952 | then we'll have a tree of DIEs like this: | |
2953 | ||
2954 | 1: DW_TAG_compile_unit | |
2955 | 2: DW_TAG_namespace // N | |
2956 | 3: DW_TAG_subprogram // declaration of N::foo | |
2957 | 4: DW_TAG_subprogram // definition of N::foo | |
2958 | DW_AT_specification // refers to die #3 | |
2959 | ||
2960 | Thus, when processing die #4, we have to pretend that we're | |
2961 | in the context of its DW_AT_specification, namely the contex | |
2962 | of die #3. */ | |
fdde2d81 DC |
2963 | |
2964 | if (spec_die != NULL) | |
2965 | { | |
e142c38c | 2966 | char *specification_prefix = determine_prefix (spec_die, cu); |
fdde2d81 DC |
2967 | processing_current_prefix = specification_prefix; |
2968 | back_to = make_cleanup (xfree, specification_prefix); | |
2969 | } | |
2970 | } | |
2971 | ||
c906108c SS |
2972 | lowpc += baseaddr; |
2973 | highpc += baseaddr; | |
2974 | ||
5fb290d7 | 2975 | /* Record the function range for dwarf_decode_lines. */ |
e142c38c | 2976 | add_to_cu_func_list (name, lowpc, highpc, cu); |
5fb290d7 | 2977 | |
c906108c | 2978 | new = push_context (0, lowpc); |
e7c27a73 | 2979 | new->name = new_symbol (die, die->type, cu); |
4c2df51b | 2980 | |
4cecd739 DJ |
2981 | /* If there is a location expression for DW_AT_frame_base, record |
2982 | it. */ | |
e142c38c | 2983 | attr = dwarf2_attr (die, DW_AT_frame_base, cu); |
4c2df51b | 2984 | if (attr) |
c034e007 AC |
2985 | /* FIXME: cagney/2004-01-26: The DW_AT_frame_base's location |
2986 | expression is being recorded directly in the function's symbol | |
2987 | and not in a separate frame-base object. I guess this hack is | |
2988 | to avoid adding some sort of frame-base adjunct/annex to the | |
2989 | function's symbol :-(. The problem with doing this is that it | |
2990 | results in a function symbol with a location expression that | |
2991 | has nothing to do with the location of the function, ouch! The | |
2992 | relationship should be: a function's symbol has-a frame base; a | |
2993 | frame-base has-a location expression. */ | |
e7c27a73 | 2994 | dwarf2_symbol_mark_computed (attr, new->name, cu); |
4c2df51b | 2995 | |
e142c38c | 2996 | cu->list_in_scope = &local_symbols; |
c906108c | 2997 | |
639d11d3 | 2998 | if (die->child != NULL) |
c906108c | 2999 | { |
639d11d3 | 3000 | child_die = die->child; |
c906108c SS |
3001 | while (child_die && child_die->tag) |
3002 | { | |
e7c27a73 | 3003 | process_die (child_die, cu); |
c906108c SS |
3004 | child_die = sibling_die (child_die); |
3005 | } | |
3006 | } | |
3007 | ||
3008 | new = pop_context (); | |
3009 | /* Make a block for the local symbols within. */ | |
3010 | finish_block (new->name, &local_symbols, new->old_blocks, | |
3011 | lowpc, highpc, objfile); | |
208d8187 JB |
3012 | |
3013 | /* In C++, we can have functions nested inside functions (e.g., when | |
3014 | a function declares a class that has methods). This means that | |
3015 | when we finish processing a function scope, we may need to go | |
3016 | back to building a containing block's symbol lists. */ | |
3017 | local_symbols = new->locals; | |
3018 | param_symbols = new->params; | |
3019 | ||
921e78cf JB |
3020 | /* If we've finished processing a top-level function, subsequent |
3021 | symbols go in the file symbol list. */ | |
3022 | if (outermost_context_p ()) | |
e142c38c | 3023 | cu->list_in_scope = &file_symbols; |
fdde2d81 DC |
3024 | |
3025 | processing_current_prefix = previous_prefix; | |
3026 | if (back_to != NULL) | |
3027 | do_cleanups (back_to); | |
c906108c SS |
3028 | } |
3029 | ||
3030 | /* Process all the DIES contained within a lexical block scope. Start | |
3031 | a new scope, process the dies, and then close the scope. */ | |
3032 | ||
3033 | static void | |
e7c27a73 | 3034 | read_lexical_block_scope (struct die_info *die, struct dwarf2_cu *cu) |
c906108c | 3035 | { |
e7c27a73 | 3036 | struct objfile *objfile = cu->objfile; |
52f0bd74 | 3037 | struct context_stack *new; |
c906108c SS |
3038 | CORE_ADDR lowpc, highpc; |
3039 | struct die_info *child_die; | |
e142c38c DJ |
3040 | CORE_ADDR baseaddr; |
3041 | ||
3042 | baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile)); | |
c906108c SS |
3043 | |
3044 | /* Ignore blocks with missing or invalid low and high pc attributes. */ | |
af34e669 DJ |
3045 | /* ??? Perhaps consider discontiguous blocks defined by DW_AT_ranges |
3046 | as multiple lexical blocks? Handling children in a sane way would | |
3047 | be nasty. Might be easier to properly extend generic blocks to | |
3048 | describe ranges. */ | |
e7c27a73 | 3049 | if (!dwarf2_get_pc_bounds (die, &lowpc, &highpc, cu)) |
c906108c SS |
3050 | return; |
3051 | lowpc += baseaddr; | |
3052 | highpc += baseaddr; | |
3053 | ||
3054 | push_context (0, lowpc); | |
639d11d3 | 3055 | if (die->child != NULL) |
c906108c | 3056 | { |
639d11d3 | 3057 | child_die = die->child; |
c906108c SS |
3058 | while (child_die && child_die->tag) |
3059 | { | |
e7c27a73 | 3060 | process_die (child_die, cu); |
c906108c SS |
3061 | child_die = sibling_die (child_die); |
3062 | } | |
3063 | } | |
3064 | new = pop_context (); | |
3065 | ||
3066 | if (local_symbols != NULL) | |
3067 | { | |
3068 | finish_block (0, &local_symbols, new->old_blocks, new->start_addr, | |
3069 | highpc, objfile); | |
3070 | } | |
3071 | local_symbols = new->locals; | |
3072 | } | |
3073 | ||
af34e669 DJ |
3074 | /* Get low and high pc attributes from a die. Return 1 if the attributes |
3075 | are present and valid, otherwise, return 0. Return -1 if the range is | |
3076 | discontinuous, i.e. derived from DW_AT_ranges information. */ | |
c906108c | 3077 | static int |
af34e669 | 3078 | dwarf2_get_pc_bounds (struct die_info *die, CORE_ADDR *lowpc, |
e7c27a73 | 3079 | CORE_ADDR *highpc, struct dwarf2_cu *cu) |
c906108c | 3080 | { |
e7c27a73 DJ |
3081 | struct objfile *objfile = cu->objfile; |
3082 | struct comp_unit_head *cu_header = &cu->header; | |
c906108c | 3083 | struct attribute *attr; |
af34e669 DJ |
3084 | bfd *obfd = objfile->obfd; |
3085 | CORE_ADDR low = 0; | |
3086 | CORE_ADDR high = 0; | |
3087 | int ret = 0; | |
c906108c | 3088 | |
e142c38c | 3089 | attr = dwarf2_attr (die, DW_AT_high_pc, cu); |
c906108c | 3090 | if (attr) |
af34e669 DJ |
3091 | { |
3092 | high = DW_ADDR (attr); | |
e142c38c | 3093 | attr = dwarf2_attr (die, DW_AT_low_pc, cu); |
af34e669 DJ |
3094 | if (attr) |
3095 | low = DW_ADDR (attr); | |
3096 | else | |
3097 | /* Found high w/o low attribute. */ | |
3098 | return 0; | |
3099 | ||
3100 | /* Found consecutive range of addresses. */ | |
3101 | ret = 1; | |
3102 | } | |
c906108c | 3103 | else |
af34e669 | 3104 | { |
e142c38c | 3105 | attr = dwarf2_attr (die, DW_AT_ranges, cu); |
af34e669 DJ |
3106 | if (attr != NULL) |
3107 | { | |
3108 | unsigned int addr_size = cu_header->addr_size; | |
3109 | CORE_ADDR mask = ~(~(CORE_ADDR)1 << (addr_size * 8 - 1)); | |
3110 | /* Value of the DW_AT_ranges attribute is the offset in the | |
a604369a | 3111 | .debug_ranges section. */ |
af34e669 DJ |
3112 | unsigned int offset = DW_UNSND (attr); |
3113 | /* Base address selection entry. */ | |
0d53c4c4 DJ |
3114 | CORE_ADDR base; |
3115 | int found_base; | |
891d2f0b | 3116 | unsigned int dummy; |
fe1b8b76 | 3117 | gdb_byte *buffer; |
af34e669 DJ |
3118 | CORE_ADDR marker; |
3119 | int low_set; | |
3120 | ||
0d53c4c4 DJ |
3121 | found_base = cu_header->base_known; |
3122 | base = cu_header->base_address; | |
a604369a | 3123 | |
6502dd73 | 3124 | if (offset >= dwarf2_per_objfile->ranges_size) |
a604369a KB |
3125 | { |
3126 | complaint (&symfile_complaints, | |
e2e0b3e5 | 3127 | _("Offset %d out of bounds for DW_AT_ranges attribute"), |
a604369a KB |
3128 | offset); |
3129 | return 0; | |
3130 | } | |
6502dd73 | 3131 | buffer = dwarf2_per_objfile->ranges_buffer + offset; |
af34e669 | 3132 | |
af34e669 | 3133 | /* Read in the largest possible address. */ |
e7c27a73 | 3134 | marker = read_address (obfd, buffer, cu, &dummy); |
af34e669 DJ |
3135 | if ((marker & mask) == mask) |
3136 | { | |
3137 | /* If we found the largest possible address, then | |
3138 | read the base address. */ | |
e7c27a73 | 3139 | base = read_address (obfd, buffer + addr_size, cu, &dummy); |
af34e669 DJ |
3140 | buffer += 2 * addr_size; |
3141 | offset += 2 * addr_size; | |
3142 | found_base = 1; | |
3143 | } | |
3144 | ||
3145 | low_set = 0; | |
3146 | ||
3147 | while (1) | |
3148 | { | |
3149 | CORE_ADDR range_beginning, range_end; | |
3150 | ||
e7c27a73 | 3151 | range_beginning = read_address (obfd, buffer, cu, &dummy); |
af34e669 | 3152 | buffer += addr_size; |
e7c27a73 | 3153 | range_end = read_address (obfd, buffer, cu, &dummy); |
af34e669 DJ |
3154 | buffer += addr_size; |
3155 | offset += 2 * addr_size; | |
3156 | ||
3157 | /* An end of list marker is a pair of zero addresses. */ | |
3158 | if (range_beginning == 0 && range_end == 0) | |
3159 | /* Found the end of list entry. */ | |
3160 | break; | |
3161 | ||
3162 | /* Each base address selection entry is a pair of 2 values. | |
3163 | The first is the largest possible address, the second is | |
3164 | the base address. Check for a base address here. */ | |
3165 | if ((range_beginning & mask) == mask) | |
3166 | { | |
3167 | /* If we found the largest possible address, then | |
3168 | read the base address. */ | |
e7c27a73 | 3169 | base = read_address (obfd, buffer + addr_size, cu, &dummy); |
af34e669 DJ |
3170 | found_base = 1; |
3171 | continue; | |
3172 | } | |
3173 | ||
3174 | if (!found_base) | |
3175 | { | |
3176 | /* We have no valid base address for the ranges | |
3177 | data. */ | |
3178 | complaint (&symfile_complaints, | |
e2e0b3e5 | 3179 | _("Invalid .debug_ranges data (no base address)")); |
af34e669 DJ |
3180 | return 0; |
3181 | } | |
3182 | ||
8f05cde5 DJ |
3183 | range_beginning += base; |
3184 | range_end += base; | |
3185 | ||
af34e669 DJ |
3186 | /* FIXME: This is recording everything as a low-high |
3187 | segment of consecutive addresses. We should have a | |
3188 | data structure for discontiguous block ranges | |
3189 | instead. */ | |
3190 | if (! low_set) | |
3191 | { | |
3192 | low = range_beginning; | |
3193 | high = range_end; | |
3194 | low_set = 1; | |
3195 | } | |
3196 | else | |
3197 | { | |
3198 | if (range_beginning < low) | |
3199 | low = range_beginning; | |
3200 | if (range_end > high) | |
3201 | high = range_end; | |
3202 | } | |
3203 | } | |
3204 | ||
3205 | if (! low_set) | |
3206 | /* If the first entry is an end-of-list marker, the range | |
3207 | describes an empty scope, i.e. no instructions. */ | |
3208 | return 0; | |
3209 | ||
3210 | ret = -1; | |
3211 | } | |
3212 | } | |
c906108c SS |
3213 | |
3214 | if (high < low) | |
3215 | return 0; | |
3216 | ||
3217 | /* When using the GNU linker, .gnu.linkonce. sections are used to | |
3218 | eliminate duplicate copies of functions and vtables and such. | |
3219 | The linker will arbitrarily choose one and discard the others. | |
3220 | The AT_*_pc values for such functions refer to local labels in | |
3221 | these sections. If the section from that file was discarded, the | |
3222 | labels are not in the output, so the relocs get a value of 0. | |
3223 | If this is a discarded function, mark the pc bounds as invalid, | |
3224 | so that GDB will ignore it. */ | |
72dca2f5 | 3225 | if (low == 0 && !dwarf2_per_objfile->has_section_at_zero) |
c906108c SS |
3226 | return 0; |
3227 | ||
3228 | *lowpc = low; | |
3229 | *highpc = high; | |
af34e669 | 3230 | return ret; |
c906108c SS |
3231 | } |
3232 | ||
fae299cd DC |
3233 | /* Get the low and high pc's represented by the scope DIE, and store |
3234 | them in *LOWPC and *HIGHPC. If the correct values can't be | |
3235 | determined, set *LOWPC to -1 and *HIGHPC to 0. */ | |
3236 | ||
3237 | static void | |
3238 | get_scope_pc_bounds (struct die_info *die, | |
3239 | CORE_ADDR *lowpc, CORE_ADDR *highpc, | |
3240 | struct dwarf2_cu *cu) | |
3241 | { | |
3242 | CORE_ADDR best_low = (CORE_ADDR) -1; | |
3243 | CORE_ADDR best_high = (CORE_ADDR) 0; | |
3244 | CORE_ADDR current_low, current_high; | |
3245 | ||
3246 | if (dwarf2_get_pc_bounds (die, ¤t_low, ¤t_high, cu)) | |
3247 | { | |
3248 | best_low = current_low; | |
3249 | best_high = current_high; | |
3250 | } | |
3251 | else | |
3252 | { | |
3253 | struct die_info *child = die->child; | |
3254 | ||
3255 | while (child && child->tag) | |
3256 | { | |
3257 | switch (child->tag) { | |
3258 | case DW_TAG_subprogram: | |
3259 | if (dwarf2_get_pc_bounds (child, ¤t_low, ¤t_high, cu)) | |
3260 | { | |
3261 | best_low = min (best_low, current_low); | |
3262 | best_high = max (best_high, current_high); | |
3263 | } | |
3264 | break; | |
3265 | case DW_TAG_namespace: | |
3266 | /* FIXME: carlton/2004-01-16: Should we do this for | |
3267 | DW_TAG_class_type/DW_TAG_structure_type, too? I think | |
3268 | that current GCC's always emit the DIEs corresponding | |
3269 | to definitions of methods of classes as children of a | |
3270 | DW_TAG_compile_unit or DW_TAG_namespace (as opposed to | |
3271 | the DIEs giving the declarations, which could be | |
3272 | anywhere). But I don't see any reason why the | |
3273 | standards says that they have to be there. */ | |
3274 | get_scope_pc_bounds (child, ¤t_low, ¤t_high, cu); | |
3275 | ||
3276 | if (current_low != ((CORE_ADDR) -1)) | |
3277 | { | |
3278 | best_low = min (best_low, current_low); | |
3279 | best_high = max (best_high, current_high); | |
3280 | } | |
3281 | break; | |
3282 | default: | |
3283 | /* Ignore. */ | |
3284 | break; | |
3285 | } | |
3286 | ||
3287 | child = sibling_die (child); | |
3288 | } | |
3289 | } | |
3290 | ||
3291 | *lowpc = best_low; | |
3292 | *highpc = best_high; | |
3293 | } | |
3294 | ||
c906108c SS |
3295 | /* Add an aggregate field to the field list. */ |
3296 | ||
3297 | static void | |
107d2387 | 3298 | dwarf2_add_field (struct field_info *fip, struct die_info *die, |
e7c27a73 DJ |
3299 | struct dwarf2_cu *cu) |
3300 | { | |
3301 | struct objfile *objfile = cu->objfile; | |
c906108c SS |
3302 | struct nextfield *new_field; |
3303 | struct attribute *attr; | |
3304 | struct field *fp; | |
3305 | char *fieldname = ""; | |
3306 | ||
3307 | /* Allocate a new field list entry and link it in. */ | |
3308 | new_field = (struct nextfield *) xmalloc (sizeof (struct nextfield)); | |
b8c9b27d | 3309 | make_cleanup (xfree, new_field); |
c906108c SS |
3310 | memset (new_field, 0, sizeof (struct nextfield)); |
3311 | new_field->next = fip->fields; | |
3312 | fip->fields = new_field; | |
3313 | fip->nfields++; | |
3314 | ||
3315 | /* Handle accessibility and virtuality of field. | |
3316 | The default accessibility for members is public, the default | |
3317 | accessibility for inheritance is private. */ | |
3318 | if (die->tag != DW_TAG_inheritance) | |
3319 | new_field->accessibility = DW_ACCESS_public; | |
3320 | else | |
3321 | new_field->accessibility = DW_ACCESS_private; | |
3322 | new_field->virtuality = DW_VIRTUALITY_none; | |
3323 | ||
e142c38c | 3324 | attr = dwarf2_attr (die, DW_AT_accessibility, cu); |
c906108c SS |
3325 | if (attr) |
3326 | new_field->accessibility = DW_UNSND (attr); | |
3327 | if (new_field->accessibility != DW_ACCESS_public) | |
3328 | fip->non_public_fields = 1; | |
e142c38c | 3329 | attr = dwarf2_attr (die, DW_AT_virtuality, cu); |
c906108c SS |
3330 | if (attr) |
3331 | new_field->virtuality = DW_UNSND (attr); | |
3332 | ||
3333 | fp = &new_field->field; | |
a9a9bd0f | 3334 | |
e142c38c | 3335 | if (die->tag == DW_TAG_member && ! die_is_declaration (die, cu)) |
c906108c | 3336 | { |
a9a9bd0f DC |
3337 | /* Data member other than a C++ static data member. */ |
3338 | ||
c906108c | 3339 | /* Get type of field. */ |
e7c27a73 | 3340 | fp->type = die_type (die, cu); |
c906108c | 3341 | |
01ad7f36 DJ |
3342 | FIELD_STATIC_KIND (*fp) = 0; |
3343 | ||
c906108c | 3344 | /* Get bit size of field (zero if none). */ |
e142c38c | 3345 | attr = dwarf2_attr (die, DW_AT_bit_size, cu); |
c906108c SS |
3346 | if (attr) |
3347 | { | |
3348 | FIELD_BITSIZE (*fp) = DW_UNSND (attr); | |
3349 | } | |
3350 | else | |
3351 | { | |
3352 | FIELD_BITSIZE (*fp) = 0; | |
3353 | } | |
3354 | ||
3355 | /* Get bit offset of field. */ | |
e142c38c | 3356 | attr = dwarf2_attr (die, DW_AT_data_member_location, cu); |
c906108c SS |
3357 | if (attr) |
3358 | { | |
3359 | FIELD_BITPOS (*fp) = | |
e7c27a73 | 3360 | decode_locdesc (DW_BLOCK (attr), cu) * bits_per_byte; |
c906108c SS |
3361 | } |
3362 | else | |
3363 | FIELD_BITPOS (*fp) = 0; | |
e142c38c | 3364 | attr = dwarf2_attr (die, DW_AT_bit_offset, cu); |
c906108c SS |
3365 | if (attr) |
3366 | { | |
3367 | if (BITS_BIG_ENDIAN) | |
3368 | { | |
3369 | /* For big endian bits, the DW_AT_bit_offset gives the | |
c5aa993b JM |
3370 | additional bit offset from the MSB of the containing |
3371 | anonymous object to the MSB of the field. We don't | |
3372 | have to do anything special since we don't need to | |
3373 | know the size of the anonymous object. */ | |
c906108c SS |
3374 | FIELD_BITPOS (*fp) += DW_UNSND (attr); |
3375 | } | |
3376 | else | |
3377 | { | |
3378 | /* For little endian bits, compute the bit offset to the | |
c5aa993b JM |
3379 | MSB of the anonymous object, subtract off the number of |
3380 | bits from the MSB of the field to the MSB of the | |
3381 | object, and then subtract off the number of bits of | |
3382 | the field itself. The result is the bit offset of | |
3383 | the LSB of the field. */ | |
c906108c SS |
3384 | int anonymous_size; |
3385 | int bit_offset = DW_UNSND (attr); | |
3386 | ||
e142c38c | 3387 | attr = dwarf2_attr (die, DW_AT_byte_size, cu); |
c906108c SS |
3388 | if (attr) |
3389 | { | |
3390 | /* The size of the anonymous object containing | |
3391 | the bit field is explicit, so use the | |
3392 | indicated size (in bytes). */ | |
3393 | anonymous_size = DW_UNSND (attr); | |
3394 | } | |
3395 | else | |
3396 | { | |
3397 | /* The size of the anonymous object containing | |
3398 | the bit field must be inferred from the type | |
3399 | attribute of the data member containing the | |
3400 | bit field. */ | |
3401 | anonymous_size = TYPE_LENGTH (fp->type); | |
3402 | } | |
3403 | FIELD_BITPOS (*fp) += anonymous_size * bits_per_byte | |
3404 | - bit_offset - FIELD_BITSIZE (*fp); | |
3405 | } | |
3406 | } | |
3407 | ||
3408 | /* Get name of field. */ | |
e142c38c | 3409 | attr = dwarf2_attr (die, DW_AT_name, cu); |
c906108c SS |
3410 | if (attr && DW_STRING (attr)) |
3411 | fieldname = DW_STRING (attr); | |
d8151005 DJ |
3412 | |
3413 | /* The name is already allocated along with this objfile, so we don't | |
3414 | need to duplicate it for the type. */ | |
3415 | fp->name = fieldname; | |
c906108c SS |
3416 | |
3417 | /* Change accessibility for artificial fields (e.g. virtual table | |
c5aa993b | 3418 | pointer or virtual base class pointer) to private. */ |
e142c38c | 3419 | if (dwarf2_attr (die, DW_AT_artificial, cu)) |
c906108c SS |
3420 | { |
3421 | new_field->accessibility = DW_ACCESS_private; | |
3422 | fip->non_public_fields = 1; | |
3423 | } | |
3424 | } | |
a9a9bd0f | 3425 | else if (die->tag == DW_TAG_member || die->tag == DW_TAG_variable) |
c906108c | 3426 | { |
a9a9bd0f DC |
3427 | /* C++ static member. */ |
3428 | ||
3429 | /* NOTE: carlton/2002-11-05: It should be a DW_TAG_member that | |
3430 | is a declaration, but all versions of G++ as of this writing | |
3431 | (so through at least 3.2.1) incorrectly generate | |
3432 | DW_TAG_variable tags. */ | |
3433 | ||
c906108c | 3434 | char *physname; |
c906108c | 3435 | |
a9a9bd0f | 3436 | /* Get name of field. */ |
e142c38c | 3437 | attr = dwarf2_attr (die, DW_AT_name, cu); |
2df3850c JM |
3438 | if (attr && DW_STRING (attr)) |
3439 | fieldname = DW_STRING (attr); | |
3440 | else | |
c906108c SS |
3441 | return; |
3442 | ||
2df3850c | 3443 | /* Get physical name. */ |
e142c38c | 3444 | physname = dwarf2_linkage_name (die, cu); |
c906108c | 3445 | |
d8151005 DJ |
3446 | /* The name is already allocated along with this objfile, so we don't |
3447 | need to duplicate it for the type. */ | |
3448 | SET_FIELD_PHYSNAME (*fp, physname ? physname : ""); | |
e7c27a73 | 3449 | FIELD_TYPE (*fp) = die_type (die, cu); |
d8151005 | 3450 | FIELD_NAME (*fp) = fieldname; |
c906108c SS |
3451 | } |
3452 | else if (die->tag == DW_TAG_inheritance) | |
3453 | { | |
3454 | /* C++ base class field. */ | |
e142c38c | 3455 | attr = dwarf2_attr (die, DW_AT_data_member_location, cu); |
c906108c | 3456 | if (attr) |
e7c27a73 | 3457 | FIELD_BITPOS (*fp) = (decode_locdesc (DW_BLOCK (attr), cu) |
107d2387 | 3458 | * bits_per_byte); |
c906108c | 3459 | FIELD_BITSIZE (*fp) = 0; |
01ad7f36 | 3460 | FIELD_STATIC_KIND (*fp) = 0; |
e7c27a73 | 3461 | FIELD_TYPE (*fp) = die_type (die, cu); |
c906108c SS |
3462 | FIELD_NAME (*fp) = type_name_no_tag (fp->type); |
3463 | fip->nbaseclasses++; | |
3464 | } | |
3465 | } | |
3466 | ||
3467 | /* Create the vector of fields, and attach it to the type. */ | |
3468 | ||
3469 | static void | |
fba45db2 | 3470 | dwarf2_attach_fields_to_type (struct field_info *fip, struct type *type, |
e7c27a73 | 3471 | struct dwarf2_cu *cu) |
c906108c SS |
3472 | { |
3473 | int nfields = fip->nfields; | |
3474 | ||
3475 | /* Record the field count, allocate space for the array of fields, | |
3476 | and create blank accessibility bitfields if necessary. */ | |
3477 | TYPE_NFIELDS (type) = nfields; | |
3478 | TYPE_FIELDS (type) = (struct field *) | |
3479 | TYPE_ALLOC (type, sizeof (struct field) * nfields); | |
3480 | memset (TYPE_FIELDS (type), 0, sizeof (struct field) * nfields); | |
3481 | ||
3482 | if (fip->non_public_fields) | |
3483 | { | |
3484 | ALLOCATE_CPLUS_STRUCT_TYPE (type); | |
3485 | ||
3486 | TYPE_FIELD_PRIVATE_BITS (type) = | |
3487 | (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields)); | |
3488 | B_CLRALL (TYPE_FIELD_PRIVATE_BITS (type), nfields); | |
3489 | ||
3490 | TYPE_FIELD_PROTECTED_BITS (type) = | |
3491 | (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields)); | |
3492 | B_CLRALL (TYPE_FIELD_PROTECTED_BITS (type), nfields); | |
3493 | ||
3494 | TYPE_FIELD_IGNORE_BITS (type) = | |
3495 | (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields)); | |
3496 | B_CLRALL (TYPE_FIELD_IGNORE_BITS (type), nfields); | |
3497 | } | |
3498 | ||
3499 | /* If the type has baseclasses, allocate and clear a bit vector for | |
3500 | TYPE_FIELD_VIRTUAL_BITS. */ | |
3501 | if (fip->nbaseclasses) | |
3502 | { | |
3503 | int num_bytes = B_BYTES (fip->nbaseclasses); | |
fe1b8b76 | 3504 | unsigned char *pointer; |
c906108c SS |
3505 | |
3506 | ALLOCATE_CPLUS_STRUCT_TYPE (type); | |
fe1b8b76 JB |
3507 | pointer = TYPE_ALLOC (type, num_bytes); |
3508 | TYPE_FIELD_VIRTUAL_BITS (type) = pointer; | |
c906108c SS |
3509 | B_CLRALL (TYPE_FIELD_VIRTUAL_BITS (type), fip->nbaseclasses); |
3510 | TYPE_N_BASECLASSES (type) = fip->nbaseclasses; | |
3511 | } | |
3512 | ||
3513 | /* Copy the saved-up fields into the field vector. Start from the head | |
3514 | of the list, adding to the tail of the field array, so that they end | |
3515 | up in the same order in the array in which they were added to the list. */ | |
3516 | while (nfields-- > 0) | |
3517 | { | |
3518 | TYPE_FIELD (type, nfields) = fip->fields->field; | |
3519 | switch (fip->fields->accessibility) | |
3520 | { | |
c5aa993b JM |
3521 | case DW_ACCESS_private: |
3522 | SET_TYPE_FIELD_PRIVATE (type, nfields); | |
3523 | break; | |
c906108c | 3524 | |
c5aa993b JM |
3525 | case DW_ACCESS_protected: |
3526 | SET_TYPE_FIELD_PROTECTED (type, nfields); | |
3527 | break; | |
c906108c | 3528 | |
c5aa993b JM |
3529 | case DW_ACCESS_public: |
3530 | break; | |
c906108c | 3531 | |
c5aa993b JM |
3532 | default: |
3533 | /* Unknown accessibility. Complain and treat it as public. */ | |
3534 | { | |
e2e0b3e5 | 3535 | complaint (&symfile_complaints, _("unsupported accessibility %d"), |
4d3c2250 | 3536 | fip->fields->accessibility); |
c5aa993b JM |
3537 | } |
3538 | break; | |
c906108c SS |
3539 | } |
3540 | if (nfields < fip->nbaseclasses) | |
3541 | { | |
3542 | switch (fip->fields->virtuality) | |
3543 | { | |
c5aa993b JM |
3544 | case DW_VIRTUALITY_virtual: |
3545 | case DW_VIRTUALITY_pure_virtual: | |
3546 | SET_TYPE_FIELD_VIRTUAL (type, nfields); | |
3547 | break; | |
c906108c SS |
3548 | } |
3549 | } | |
3550 | fip->fields = fip->fields->next; | |
3551 | } | |
3552 | } | |
3553 | ||
c906108c SS |
3554 | /* Add a member function to the proper fieldlist. */ |
3555 | ||
3556 | static void | |
107d2387 | 3557 | dwarf2_add_member_fn (struct field_info *fip, struct die_info *die, |
e7c27a73 | 3558 | struct type *type, struct dwarf2_cu *cu) |
c906108c | 3559 | { |
e7c27a73 | 3560 | struct objfile *objfile = cu->objfile; |
c906108c SS |
3561 | struct attribute *attr; |
3562 | struct fnfieldlist *flp; | |
3563 | int i; | |
3564 | struct fn_field *fnp; | |
3565 | char *fieldname; | |
3566 | char *physname; | |
3567 | struct nextfnfield *new_fnfield; | |
3568 | ||
2df3850c | 3569 | /* Get name of member function. */ |
e142c38c | 3570 | attr = dwarf2_attr (die, DW_AT_name, cu); |
2df3850c JM |
3571 | if (attr && DW_STRING (attr)) |
3572 | fieldname = DW_STRING (attr); | |
c906108c | 3573 | else |
2df3850c | 3574 | return; |
c906108c | 3575 | |
2df3850c | 3576 | /* Get the mangled name. */ |
e142c38c | 3577 | physname = dwarf2_linkage_name (die, cu); |
c906108c SS |
3578 | |
3579 | /* Look up member function name in fieldlist. */ | |
3580 | for (i = 0; i < fip->nfnfields; i++) | |
3581 | { | |
27bfe10e | 3582 | if (strcmp (fip->fnfieldlists[i].name, fieldname) == 0) |
c906108c SS |
3583 | break; |
3584 | } | |
3585 | ||
3586 | /* Create new list element if necessary. */ | |
3587 | if (i < fip->nfnfields) | |
3588 | flp = &fip->fnfieldlists[i]; | |
3589 | else | |
3590 | { | |
3591 | if ((fip->nfnfields % DW_FIELD_ALLOC_CHUNK) == 0) | |
3592 | { | |
3593 | fip->fnfieldlists = (struct fnfieldlist *) | |
3594 | xrealloc (fip->fnfieldlists, | |
3595 | (fip->nfnfields + DW_FIELD_ALLOC_CHUNK) | |
c5aa993b | 3596 | * sizeof (struct fnfieldlist)); |
c906108c | 3597 | if (fip->nfnfields == 0) |
c13c43fd | 3598 | make_cleanup (free_current_contents, &fip->fnfieldlists); |
c906108c SS |
3599 | } |
3600 | flp = &fip->fnfieldlists[fip->nfnfields]; | |
3601 | flp->name = fieldname; | |
3602 | flp->length = 0; | |
3603 | flp->head = NULL; | |
3604 | fip->nfnfields++; | |
3605 | } | |
3606 | ||
3607 | /* Create a new member function field and chain it to the field list | |
3608 | entry. */ | |
3609 | new_fnfield = (struct nextfnfield *) xmalloc (sizeof (struct nextfnfield)); | |
b8c9b27d | 3610 | make_cleanup (xfree, new_fnfield); |
c906108c SS |
3611 | memset (new_fnfield, 0, sizeof (struct nextfnfield)); |
3612 | new_fnfield->next = flp->head; | |
3613 | flp->head = new_fnfield; | |
3614 | flp->length++; | |
3615 | ||
3616 | /* Fill in the member function field info. */ | |
3617 | fnp = &new_fnfield->fnfield; | |
d8151005 DJ |
3618 | /* The name is already allocated along with this objfile, so we don't |
3619 | need to duplicate it for the type. */ | |
3620 | fnp->physname = physname ? physname : ""; | |
c906108c SS |
3621 | fnp->type = alloc_type (objfile); |
3622 | if (die->type && TYPE_CODE (die->type) == TYPE_CODE_FUNC) | |
3623 | { | |
c906108c | 3624 | int nparams = TYPE_NFIELDS (die->type); |
c906108c | 3625 | |
e26fb1d7 DC |
3626 | /* TYPE is the domain of this method, and DIE->TYPE is the type |
3627 | of the method itself (TYPE_CODE_METHOD). */ | |
3628 | smash_to_method_type (fnp->type, type, | |
ad2f7632 DJ |
3629 | TYPE_TARGET_TYPE (die->type), |
3630 | TYPE_FIELDS (die->type), | |
3631 | TYPE_NFIELDS (die->type), | |
3632 | TYPE_VARARGS (die->type)); | |
c906108c SS |
3633 | |
3634 | /* Handle static member functions. | |
c5aa993b JM |
3635 | Dwarf2 has no clean way to discern C++ static and non-static |
3636 | member functions. G++ helps GDB by marking the first | |
3637 | parameter for non-static member functions (which is the | |
3638 | this pointer) as artificial. We obtain this information | |
3639 | from read_subroutine_type via TYPE_FIELD_ARTIFICIAL. */ | |
c906108c SS |
3640 | if (nparams == 0 || TYPE_FIELD_ARTIFICIAL (die->type, 0) == 0) |
3641 | fnp->voffset = VOFFSET_STATIC; | |
3642 | } | |
3643 | else | |
e2e0b3e5 | 3644 | complaint (&symfile_complaints, _("member function type missing for '%s'"), |
4d3c2250 | 3645 | physname); |
c906108c SS |
3646 | |
3647 | /* Get fcontext from DW_AT_containing_type if present. */ | |
e142c38c | 3648 | if (dwarf2_attr (die, DW_AT_containing_type, cu) != NULL) |
e7c27a73 | 3649 | fnp->fcontext = die_containing_type (die, cu); |
c906108c SS |
3650 | |
3651 | /* dwarf2 doesn't have stubbed physical names, so the setting of is_const | |
3652 | and is_volatile is irrelevant, as it is needed by gdb_mangle_name only. */ | |
3653 | ||
3654 | /* Get accessibility. */ | |
e142c38c | 3655 | attr = dwarf2_attr (die, DW_AT_accessibility, cu); |
c906108c SS |
3656 | if (attr) |
3657 | { | |
3658 | switch (DW_UNSND (attr)) | |
3659 | { | |
c5aa993b JM |
3660 | case DW_ACCESS_private: |
3661 | fnp->is_private = 1; | |
3662 | break; | |
3663 | case DW_ACCESS_protected: | |
3664 | fnp->is_protected = 1; | |
3665 | break; | |
c906108c SS |
3666 | } |
3667 | } | |
3668 | ||
b02dede2 | 3669 | /* Check for artificial methods. */ |
e142c38c | 3670 | attr = dwarf2_attr (die, DW_AT_artificial, cu); |
b02dede2 DJ |
3671 | if (attr && DW_UNSND (attr) != 0) |
3672 | fnp->is_artificial = 1; | |
3673 | ||
c906108c | 3674 | /* Get index in virtual function table if it is a virtual member function. */ |
e142c38c | 3675 | attr = dwarf2_attr (die, DW_AT_vtable_elem_location, cu); |
c906108c | 3676 | if (attr) |
8e19ed76 PS |
3677 | { |
3678 | /* Support the .debug_loc offsets */ | |
3679 | if (attr_form_is_block (attr)) | |
3680 | { | |
e7c27a73 | 3681 | fnp->voffset = decode_locdesc (DW_BLOCK (attr), cu) + 2; |
8e19ed76 PS |
3682 | } |
3683 | else if (attr->form == DW_FORM_data4 || attr->form == DW_FORM_data8) | |
3684 | { | |
4d3c2250 | 3685 | dwarf2_complex_location_expr_complaint (); |
8e19ed76 PS |
3686 | } |
3687 | else | |
3688 | { | |
4d3c2250 KB |
3689 | dwarf2_invalid_attrib_class_complaint ("DW_AT_vtable_elem_location", |
3690 | fieldname); | |
8e19ed76 PS |
3691 | } |
3692 | } | |
c906108c SS |
3693 | } |
3694 | ||
3695 | /* Create the vector of member function fields, and attach it to the type. */ | |
3696 | ||
3697 | static void | |
fba45db2 | 3698 | dwarf2_attach_fn_fields_to_type (struct field_info *fip, struct type *type, |
e7c27a73 | 3699 | struct dwarf2_cu *cu) |
c906108c SS |
3700 | { |
3701 | struct fnfieldlist *flp; | |
3702 | int total_length = 0; | |
3703 | int i; | |
3704 | ||
3705 | ALLOCATE_CPLUS_STRUCT_TYPE (type); | |
3706 | TYPE_FN_FIELDLISTS (type) = (struct fn_fieldlist *) | |
3707 | TYPE_ALLOC (type, sizeof (struct fn_fieldlist) * fip->nfnfields); | |
3708 | ||
3709 | for (i = 0, flp = fip->fnfieldlists; i < fip->nfnfields; i++, flp++) | |
3710 | { | |
3711 | struct nextfnfield *nfp = flp->head; | |
3712 | struct fn_fieldlist *fn_flp = &TYPE_FN_FIELDLIST (type, i); | |
3713 | int k; | |
3714 | ||
3715 | TYPE_FN_FIELDLIST_NAME (type, i) = flp->name; | |
3716 | TYPE_FN_FIELDLIST_LENGTH (type, i) = flp->length; | |
3717 | fn_flp->fn_fields = (struct fn_field *) | |
3718 | TYPE_ALLOC (type, sizeof (struct fn_field) * flp->length); | |
3719 | for (k = flp->length; (k--, nfp); nfp = nfp->next) | |
c5aa993b | 3720 | fn_flp->fn_fields[k] = nfp->fnfield; |
c906108c SS |
3721 | |
3722 | total_length += flp->length; | |
3723 | } | |
3724 | ||
3725 | TYPE_NFN_FIELDS (type) = fip->nfnfields; | |
3726 | TYPE_NFN_FIELDS_TOTAL (type) = total_length; | |
3727 | } | |
3728 | ||
1168df01 JB |
3729 | /* Returns non-zero if NAME is the name of a vtable member in CU's |
3730 | language, zero otherwise. */ | |
3731 | static int | |
3732 | is_vtable_name (const char *name, struct dwarf2_cu *cu) | |
3733 | { | |
3734 | static const char vptr[] = "_vptr"; | |
987504bb | 3735 | static const char vtable[] = "vtable"; |
1168df01 | 3736 | |
987504bb JJ |
3737 | /* Look for the C++ and Java forms of the vtable. */ |
3738 | if ((cu->language == language_java | |
3739 | && strncmp (name, vtable, sizeof (vtable) - 1) == 0) | |
3740 | || (strncmp (name, vptr, sizeof (vptr) - 1) == 0 | |
3741 | && is_cplus_marker (name[sizeof (vptr) - 1]))) | |
1168df01 JB |
3742 | return 1; |
3743 | ||
3744 | return 0; | |
3745 | } | |
3746 | ||
c0dd20ea DJ |
3747 | /* GCC outputs unnamed structures that are really pointers to member |
3748 | functions, with the ABI-specified layout. If DIE (from CU) describes | |
3749 | such a structure, set its type, and return nonzero. Otherwise return | |
61049d3b DJ |
3750 | zero. |
3751 | ||
3752 | GCC shouldn't do this; it should just output pointer to member DIEs. | |
3753 | This is GCC PR debug/28767. */ | |
c0dd20ea DJ |
3754 | |
3755 | static int | |
3756 | quirk_gcc_member_function_pointer (struct die_info *die, struct dwarf2_cu *cu) | |
3757 | { | |
3758 | struct objfile *objfile = cu->objfile; | |
3759 | struct type *type; | |
3760 | struct die_info *pfn_die, *delta_die; | |
3761 | struct attribute *pfn_name, *delta_name; | |
3762 | struct type *pfn_type, *domain_type; | |
3763 | ||
3764 | /* Check for a structure with no name and two children. */ | |
3765 | if (die->tag != DW_TAG_structure_type | |
3766 | || dwarf2_attr (die, DW_AT_name, cu) != NULL | |
3767 | || die->child == NULL | |
3768 | || die->child->sibling == NULL | |
3769 | || (die->child->sibling->sibling != NULL | |
3770 | && die->child->sibling->sibling->tag != DW_TAG_padding)) | |
3771 | return 0; | |
3772 | ||
3773 | /* Check for __pfn and __delta members. */ | |
3774 | pfn_die = die->child; | |
3775 | pfn_name = dwarf2_attr (pfn_die, DW_AT_name, cu); | |
3776 | if (pfn_die->tag != DW_TAG_member | |
3777 | || pfn_name == NULL | |
3778 | || DW_STRING (pfn_name) == NULL | |
3779 | || strcmp ("__pfn", DW_STRING (pfn_name)) != 0) | |
3780 | return 0; | |
3781 | ||
3782 | delta_die = pfn_die->sibling; | |
3783 | delta_name = dwarf2_attr (delta_die, DW_AT_name, cu); | |
3784 | if (delta_die->tag != DW_TAG_member | |
3785 | || delta_name == NULL | |
3786 | || DW_STRING (delta_name) == NULL | |
3787 | || strcmp ("__delta", DW_STRING (delta_name)) != 0) | |
3788 | return 0; | |
3789 | ||
3790 | /* Find the type of the method. */ | |
3791 | pfn_type = die_type (pfn_die, cu); | |
3792 | if (pfn_type == NULL | |
3793 | || TYPE_CODE (pfn_type) != TYPE_CODE_PTR | |
3794 | || TYPE_CODE (TYPE_TARGET_TYPE (pfn_type)) != TYPE_CODE_FUNC) | |
3795 | return 0; | |
3796 | ||
3797 | /* Look for the "this" argument. */ | |
3798 | pfn_type = TYPE_TARGET_TYPE (pfn_type); | |
3799 | if (TYPE_NFIELDS (pfn_type) == 0 | |
3800 | || TYPE_CODE (TYPE_FIELD_TYPE (pfn_type, 0)) != TYPE_CODE_PTR) | |
3801 | return 0; | |
3802 | ||
3803 | domain_type = TYPE_TARGET_TYPE (TYPE_FIELD_TYPE (pfn_type, 0)); | |
3804 | type = alloc_type (objfile); | |
3805 | smash_to_method_type (type, domain_type, TYPE_TARGET_TYPE (pfn_type), | |
3806 | TYPE_FIELDS (pfn_type), TYPE_NFIELDS (pfn_type), | |
3807 | TYPE_VARARGS (pfn_type)); | |
0d5de010 | 3808 | type = lookup_methodptr_type (type); |
c0dd20ea DJ |
3809 | set_die_type (die, type, cu); |
3810 | ||
3811 | return 1; | |
3812 | } | |
1168df01 | 3813 | |
c906108c SS |
3814 | /* Called when we find the DIE that starts a structure or union scope |
3815 | (definition) to process all dies that define the members of the | |
3816 | structure or union. | |
3817 | ||
3818 | NOTE: we need to call struct_type regardless of whether or not the | |
3819 | DIE has an at_name attribute, since it might be an anonymous | |
3820 | structure or union. This gets the type entered into our set of | |
3821 | user defined types. | |
3822 | ||
3823 | However, if the structure is incomplete (an opaque struct/union) | |
3824 | then suppress creating a symbol table entry for it since gdb only | |
3825 | wants to find the one with the complete definition. Note that if | |
3826 | it is complete, we just call new_symbol, which does it's own | |
3827 | checking about whether the struct/union is anonymous or not (and | |
3828 | suppresses creating a symbol table entry itself). */ | |
3829 | ||
3830 | static void | |
134d01f1 | 3831 | read_structure_type (struct die_info *die, struct dwarf2_cu *cu) |
c906108c | 3832 | { |
e7c27a73 | 3833 | struct objfile *objfile = cu->objfile; |
c906108c SS |
3834 | struct type *type; |
3835 | struct attribute *attr; | |
63d06c5c DC |
3836 | const char *previous_prefix = processing_current_prefix; |
3837 | struct cleanup *back_to = NULL; | |
c906108c | 3838 | |
134d01f1 DJ |
3839 | if (die->type) |
3840 | return; | |
3841 | ||
c0dd20ea DJ |
3842 | if (quirk_gcc_member_function_pointer (die, cu)) |
3843 | return; | |
c906108c | 3844 | |
c0dd20ea | 3845 | type = alloc_type (objfile); |
c906108c | 3846 | INIT_CPLUS_SPECIFIC (type); |
e142c38c | 3847 | attr = dwarf2_attr (die, DW_AT_name, cu); |
c906108c SS |
3848 | if (attr && DW_STRING (attr)) |
3849 | { | |
987504bb JJ |
3850 | if (cu->language == language_cplus |
3851 | || cu->language == language_java) | |
63d06c5c | 3852 | { |
8176b9b8 DC |
3853 | char *new_prefix = determine_class_name (die, cu); |
3854 | TYPE_TAG_NAME (type) = obsavestring (new_prefix, | |
3855 | strlen (new_prefix), | |
3856 | &objfile->objfile_obstack); | |
3857 | back_to = make_cleanup (xfree, new_prefix); | |
63d06c5c DC |
3858 | processing_current_prefix = new_prefix; |
3859 | } | |
3860 | else | |
3861 | { | |
d8151005 DJ |
3862 | /* The name is already allocated along with this objfile, so |
3863 | we don't need to duplicate it for the type. */ | |
8176b9b8 | 3864 | TYPE_TAG_NAME (type) = DW_STRING (attr); |
63d06c5c | 3865 | } |
c906108c SS |
3866 | } |
3867 | ||
3868 | if (die->tag == DW_TAG_structure_type) | |
3869 | { | |
3870 | TYPE_CODE (type) = TYPE_CODE_STRUCT; | |
3871 | } | |
3872 | else if (die->tag == DW_TAG_union_type) | |
3873 | { | |
3874 | TYPE_CODE (type) = TYPE_CODE_UNION; | |
3875 | } | |
3876 | else | |
3877 | { | |
3878 | /* FIXME: TYPE_CODE_CLASS is currently defined to TYPE_CODE_STRUCT | |
c5aa993b | 3879 | in gdbtypes.h. */ |
c906108c SS |
3880 | TYPE_CODE (type) = TYPE_CODE_CLASS; |
3881 | } | |
3882 | ||
e142c38c | 3883 | attr = dwarf2_attr (die, DW_AT_byte_size, cu); |
c906108c SS |
3884 | if (attr) |
3885 | { | |
3886 | TYPE_LENGTH (type) = DW_UNSND (attr); | |
3887 | } | |
3888 | else | |
3889 | { | |
3890 | TYPE_LENGTH (type) = 0; | |
3891 | } | |
3892 | ||
d77b6808 | 3893 | TYPE_FLAGS (type) |= TYPE_FLAG_STUB_SUPPORTED; |
dc718098 JB |
3894 | if (die_is_declaration (die, cu)) |
3895 | TYPE_FLAGS (type) |= TYPE_FLAG_STUB; | |
3896 | ||
c906108c SS |
3897 | /* We need to add the type field to the die immediately so we don't |
3898 | infinitely recurse when dealing with pointers to the structure | |
3899 | type within the structure itself. */ | |
1c379e20 | 3900 | set_die_type (die, type, cu); |
c906108c | 3901 | |
e142c38c | 3902 | if (die->child != NULL && ! die_is_declaration (die, cu)) |
c906108c SS |
3903 | { |
3904 | struct field_info fi; | |
3905 | struct die_info *child_die; | |
3906 | struct cleanup *back_to = make_cleanup (null_cleanup, NULL); | |
3907 | ||
3908 | memset (&fi, 0, sizeof (struct field_info)); | |
3909 | ||
639d11d3 | 3910 | child_die = die->child; |
c906108c SS |
3911 | |
3912 | while (child_die && child_die->tag) | |
3913 | { | |
a9a9bd0f DC |
3914 | if (child_die->tag == DW_TAG_member |
3915 | || child_die->tag == DW_TAG_variable) | |
c906108c | 3916 | { |
a9a9bd0f DC |
3917 | /* NOTE: carlton/2002-11-05: A C++ static data member |
3918 | should be a DW_TAG_member that is a declaration, but | |
3919 | all versions of G++ as of this writing (so through at | |
3920 | least 3.2.1) incorrectly generate DW_TAG_variable | |
3921 | tags for them instead. */ | |
e7c27a73 | 3922 | dwarf2_add_field (&fi, child_die, cu); |
c906108c | 3923 | } |
8713b1b1 | 3924 | else if (child_die->tag == DW_TAG_subprogram) |
c906108c SS |
3925 | { |
3926 | /* C++ member function. */ | |
134d01f1 | 3927 | read_type_die (child_die, cu); |
e7c27a73 | 3928 | dwarf2_add_member_fn (&fi, child_die, type, cu); |
c906108c SS |
3929 | } |
3930 | else if (child_die->tag == DW_TAG_inheritance) | |
3931 | { | |
3932 | /* C++ base class field. */ | |
e7c27a73 | 3933 | dwarf2_add_field (&fi, child_die, cu); |
c906108c | 3934 | } |
c906108c SS |
3935 | child_die = sibling_die (child_die); |
3936 | } | |
3937 | ||
3938 | /* Attach fields and member functions to the type. */ | |
3939 | if (fi.nfields) | |
e7c27a73 | 3940 | dwarf2_attach_fields_to_type (&fi, type, cu); |
c906108c SS |
3941 | if (fi.nfnfields) |
3942 | { | |
e7c27a73 | 3943 | dwarf2_attach_fn_fields_to_type (&fi, type, cu); |
c906108c | 3944 | |
c5aa993b | 3945 | /* Get the type which refers to the base class (possibly this |
c906108c SS |
3946 | class itself) which contains the vtable pointer for the current |
3947 | class from the DW_AT_containing_type attribute. */ | |
3948 | ||
e142c38c | 3949 | if (dwarf2_attr (die, DW_AT_containing_type, cu) != NULL) |
c906108c | 3950 | { |
e7c27a73 | 3951 | struct type *t = die_containing_type (die, cu); |
c906108c SS |
3952 | |
3953 | TYPE_VPTR_BASETYPE (type) = t; | |
3954 | if (type == t) | |
3955 | { | |
c906108c SS |
3956 | int i; |
3957 | ||
3958 | /* Our own class provides vtbl ptr. */ | |
3959 | for (i = TYPE_NFIELDS (t) - 1; | |
3960 | i >= TYPE_N_BASECLASSES (t); | |
3961 | --i) | |
3962 | { | |
3963 | char *fieldname = TYPE_FIELD_NAME (t, i); | |
3964 | ||
1168df01 | 3965 | if (is_vtable_name (fieldname, cu)) |
c906108c SS |
3966 | { |
3967 | TYPE_VPTR_FIELDNO (type) = i; | |
3968 | break; | |
3969 | } | |
3970 | } | |
3971 | ||
3972 | /* Complain if virtual function table field not found. */ | |
3973 | if (i < TYPE_N_BASECLASSES (t)) | |
4d3c2250 | 3974 | complaint (&symfile_complaints, |
e2e0b3e5 | 3975 | _("virtual function table pointer not found when defining class '%s'"), |
4d3c2250 KB |
3976 | TYPE_TAG_NAME (type) ? TYPE_TAG_NAME (type) : |
3977 | ""); | |
c906108c SS |
3978 | } |
3979 | else | |
3980 | { | |
3981 | TYPE_VPTR_FIELDNO (type) = TYPE_VPTR_FIELDNO (t); | |
3982 | } | |
3983 | } | |
f6235d4c EZ |
3984 | else if (cu->producer |
3985 | && strncmp (cu->producer, | |
3986 | "IBM(R) XL C/C++ Advanced Edition", 32) == 0) | |
3987 | { | |
3988 | /* The IBM XLC compiler does not provide direct indication | |
3989 | of the containing type, but the vtable pointer is | |
3990 | always named __vfp. */ | |
3991 | ||
3992 | int i; | |
3993 | ||
3994 | for (i = TYPE_NFIELDS (type) - 1; | |
3995 | i >= TYPE_N_BASECLASSES (type); | |
3996 | --i) | |
3997 | { | |
3998 | if (strcmp (TYPE_FIELD_NAME (type, i), "__vfp") == 0) | |
3999 | { | |
4000 | TYPE_VPTR_FIELDNO (type) = i; | |
4001 | TYPE_VPTR_BASETYPE (type) = type; | |
4002 | break; | |
4003 | } | |
4004 | } | |
4005 | } | |
c906108c SS |
4006 | } |
4007 | ||
c906108c SS |
4008 | do_cleanups (back_to); |
4009 | } | |
63d06c5c DC |
4010 | |
4011 | processing_current_prefix = previous_prefix; | |
4012 | if (back_to != NULL) | |
4013 | do_cleanups (back_to); | |
c906108c SS |
4014 | } |
4015 | ||
134d01f1 DJ |
4016 | static void |
4017 | process_structure_scope (struct die_info *die, struct dwarf2_cu *cu) | |
4018 | { | |
4019 | struct objfile *objfile = cu->objfile; | |
4020 | const char *previous_prefix = processing_current_prefix; | |
90aeadfc | 4021 | struct die_info *child_die = die->child; |
c906108c | 4022 | |
134d01f1 DJ |
4023 | if (TYPE_TAG_NAME (die->type) != NULL) |
4024 | processing_current_prefix = TYPE_TAG_NAME (die->type); | |
c906108c | 4025 | |
90aeadfc DC |
4026 | /* NOTE: carlton/2004-03-16: GCC 3.4 (or at least one of its |
4027 | snapshots) has been known to create a die giving a declaration | |
4028 | for a class that has, as a child, a die giving a definition for a | |
4029 | nested class. So we have to process our children even if the | |
4030 | current die is a declaration. Normally, of course, a declaration | |
4031 | won't have any children at all. */ | |
134d01f1 | 4032 | |
90aeadfc DC |
4033 | while (child_die != NULL && child_die->tag) |
4034 | { | |
4035 | if (child_die->tag == DW_TAG_member | |
4036 | || child_die->tag == DW_TAG_variable | |
4037 | || child_die->tag == DW_TAG_inheritance) | |
134d01f1 | 4038 | { |
90aeadfc | 4039 | /* Do nothing. */ |
134d01f1 | 4040 | } |
90aeadfc DC |
4041 | else |
4042 | process_die (child_die, cu); | |
134d01f1 | 4043 | |
90aeadfc | 4044 | child_die = sibling_die (child_die); |
134d01f1 DJ |
4045 | } |
4046 | ||
fa4028e9 JB |
4047 | /* Do not consider external references. According to the DWARF standard, |
4048 | these DIEs are identified by the fact that they have no byte_size | |
4049 | attribute, and a declaration attribute. */ | |
4050 | if (dwarf2_attr (die, DW_AT_byte_size, cu) != NULL | |
4051 | || !die_is_declaration (die, cu)) | |
90aeadfc DC |
4052 | new_symbol (die, die->type, cu); |
4053 | ||
134d01f1 DJ |
4054 | processing_current_prefix = previous_prefix; |
4055 | } | |
4056 | ||
4057 | /* Given a DW_AT_enumeration_type die, set its type. We do not | |
4058 | complete the type's fields yet, or create any symbols. */ | |
c906108c SS |
4059 | |
4060 | static void | |
134d01f1 | 4061 | read_enumeration_type (struct die_info *die, struct dwarf2_cu *cu) |
c906108c | 4062 | { |
e7c27a73 | 4063 | struct objfile *objfile = cu->objfile; |
c906108c | 4064 | struct type *type; |
c906108c | 4065 | struct attribute *attr; |
134d01f1 DJ |
4066 | |
4067 | if (die->type) | |
4068 | return; | |
c906108c SS |
4069 | |
4070 | type = alloc_type (objfile); | |
4071 | ||
4072 | TYPE_CODE (type) = TYPE_CODE_ENUM; | |
e142c38c | 4073 | attr = dwarf2_attr (die, DW_AT_name, cu); |
c906108c SS |
4074 | if (attr && DW_STRING (attr)) |
4075 | { | |
d8151005 | 4076 | char *name = DW_STRING (attr); |
63d06c5c DC |
4077 | |
4078 | if (processing_has_namespace_info) | |
4079 | { | |
987504bb JJ |
4080 | TYPE_TAG_NAME (type) = typename_concat (&objfile->objfile_obstack, |
4081 | processing_current_prefix, | |
4082 | name, cu); | |
63d06c5c DC |
4083 | } |
4084 | else | |
4085 | { | |
d8151005 DJ |
4086 | /* The name is already allocated along with this objfile, so |
4087 | we don't need to duplicate it for the type. */ | |
4088 | TYPE_TAG_NAME (type) = name; | |
63d06c5c | 4089 | } |
c906108c SS |
4090 | } |
4091 | ||
e142c38c | 4092 | attr = dwarf2_attr (die, DW_AT_byte_size, cu); |
c906108c SS |
4093 | if (attr) |
4094 | { | |
4095 | TYPE_LENGTH (type) = DW_UNSND (attr); | |
4096 | } | |
4097 | else | |
4098 | { | |
4099 | TYPE_LENGTH (type) = 0; | |
4100 | } | |
4101 | ||
1c379e20 | 4102 | set_die_type (die, type, cu); |
134d01f1 DJ |
4103 | } |
4104 | ||
8176b9b8 | 4105 | /* Determine the name of the type represented by DIE, which should be |
987504bb | 4106 | a named C++ or Java compound type. Return the name in question; the caller |
8176b9b8 DC |
4107 | is responsible for xfree()'ing it. */ |
4108 | ||
4109 | static char * | |
4110 | determine_class_name (struct die_info *die, struct dwarf2_cu *cu) | |
4111 | { | |
4112 | struct cleanup *back_to = NULL; | |
4113 | struct die_info *spec_die = die_specification (die, cu); | |
4114 | char *new_prefix = NULL; | |
4115 | ||
4116 | /* If this is the definition of a class that is declared by another | |
4117 | die, then processing_current_prefix may not be accurate; see | |
4118 | read_func_scope for a similar example. */ | |
4119 | if (spec_die != NULL) | |
4120 | { | |
4121 | char *specification_prefix = determine_prefix (spec_die, cu); | |
4122 | processing_current_prefix = specification_prefix; | |
4123 | back_to = make_cleanup (xfree, specification_prefix); | |
4124 | } | |
4125 | ||
4126 | /* If we don't have namespace debug info, guess the name by trying | |
4127 | to demangle the names of members, just like we did in | |
72bf9492 | 4128 | guess_structure_name. */ |
8176b9b8 DC |
4129 | if (!processing_has_namespace_info) |
4130 | { | |
4131 | struct die_info *child; | |
4132 | ||
4133 | for (child = die->child; | |
4134 | child != NULL && child->tag != 0; | |
4135 | child = sibling_die (child)) | |
4136 | { | |
4137 | if (child->tag == DW_TAG_subprogram) | |
4138 | { | |
31c27f77 JJ |
4139 | new_prefix |
4140 | = language_class_name_from_physname (cu->language_defn, | |
4141 | dwarf2_linkage_name | |
8176b9b8 DC |
4142 | (child, cu)); |
4143 | ||
4144 | if (new_prefix != NULL) | |
4145 | break; | |
4146 | } | |
4147 | } | |
4148 | } | |
4149 | ||
4150 | if (new_prefix == NULL) | |
4151 | { | |
4152 | const char *name = dwarf2_name (die, cu); | |
987504bb JJ |
4153 | new_prefix = typename_concat (NULL, processing_current_prefix, |
4154 | name ? name : "<<anonymous>>", | |
4155 | cu); | |
8176b9b8 DC |
4156 | } |
4157 | ||
4158 | if (back_to != NULL) | |
4159 | do_cleanups (back_to); | |
4160 | ||
4161 | return new_prefix; | |
4162 | } | |
4163 | ||
134d01f1 DJ |
4164 | /* Given a pointer to a die which begins an enumeration, process all |
4165 | the dies that define the members of the enumeration, and create the | |
4166 | symbol for the enumeration type. | |
4167 | ||
4168 | NOTE: We reverse the order of the element list. */ | |
4169 | ||
4170 | static void | |
4171 | process_enumeration_scope (struct die_info *die, struct dwarf2_cu *cu) | |
4172 | { | |
4173 | struct objfile *objfile = cu->objfile; | |
4174 | struct die_info *child_die; | |
4175 | struct field *fields; | |
4176 | struct attribute *attr; | |
4177 | struct symbol *sym; | |
4178 | int num_fields; | |
4179 | int unsigned_enum = 1; | |
4180 | ||
c906108c SS |
4181 | num_fields = 0; |
4182 | fields = NULL; | |
639d11d3 | 4183 | if (die->child != NULL) |
c906108c | 4184 | { |
639d11d3 | 4185 | child_die = die->child; |
c906108c SS |
4186 | while (child_die && child_die->tag) |
4187 | { | |
4188 | if (child_die->tag != DW_TAG_enumerator) | |
4189 | { | |
e7c27a73 | 4190 | process_die (child_die, cu); |
c906108c SS |
4191 | } |
4192 | else | |
4193 | { | |
e142c38c | 4194 | attr = dwarf2_attr (child_die, DW_AT_name, cu); |
c906108c SS |
4195 | if (attr) |
4196 | { | |
134d01f1 | 4197 | sym = new_symbol (child_die, die->type, cu); |
c906108c SS |
4198 | if (SYMBOL_VALUE (sym) < 0) |
4199 | unsigned_enum = 0; | |
4200 | ||
4201 | if ((num_fields % DW_FIELD_ALLOC_CHUNK) == 0) | |
4202 | { | |
4203 | fields = (struct field *) | |
4204 | xrealloc (fields, | |
4205 | (num_fields + DW_FIELD_ALLOC_CHUNK) | |
c5aa993b | 4206 | * sizeof (struct field)); |
c906108c SS |
4207 | } |
4208 | ||
22abf04a | 4209 | FIELD_NAME (fields[num_fields]) = DEPRECATED_SYMBOL_NAME (sym); |
c906108c SS |
4210 | FIELD_TYPE (fields[num_fields]) = NULL; |
4211 | FIELD_BITPOS (fields[num_fields]) = SYMBOL_VALUE (sym); | |
4212 | FIELD_BITSIZE (fields[num_fields]) = 0; | |
01ad7f36 | 4213 | FIELD_STATIC_KIND (fields[num_fields]) = 0; |
c906108c SS |
4214 | |
4215 | num_fields++; | |
4216 | } | |
4217 | } | |
4218 | ||
4219 | child_die = sibling_die (child_die); | |
4220 | } | |
4221 | ||
4222 | if (num_fields) | |
4223 | { | |
134d01f1 DJ |
4224 | TYPE_NFIELDS (die->type) = num_fields; |
4225 | TYPE_FIELDS (die->type) = (struct field *) | |
4226 | TYPE_ALLOC (die->type, sizeof (struct field) * num_fields); | |
4227 | memcpy (TYPE_FIELDS (die->type), fields, | |
c906108c | 4228 | sizeof (struct field) * num_fields); |
b8c9b27d | 4229 | xfree (fields); |
c906108c SS |
4230 | } |
4231 | if (unsigned_enum) | |
134d01f1 | 4232 | TYPE_FLAGS (die->type) |= TYPE_FLAG_UNSIGNED; |
c906108c | 4233 | } |
134d01f1 DJ |
4234 | |
4235 | new_symbol (die, die->type, cu); | |
c906108c SS |
4236 | } |
4237 | ||
4238 | /* Extract all information from a DW_TAG_array_type DIE and put it in | |
4239 | the DIE's type field. For now, this only handles one dimensional | |
4240 | arrays. */ | |
4241 | ||
4242 | static void | |
e7c27a73 | 4243 | read_array_type (struct die_info *die, struct dwarf2_cu *cu) |
c906108c | 4244 | { |
e7c27a73 | 4245 | struct objfile *objfile = cu->objfile; |
c906108c SS |
4246 | struct die_info *child_die; |
4247 | struct type *type = NULL; | |
4248 | struct type *element_type, *range_type, *index_type; | |
4249 | struct type **range_types = NULL; | |
4250 | struct attribute *attr; | |
4251 | int ndim = 0; | |
4252 | struct cleanup *back_to; | |
4253 | ||
4254 | /* Return if we've already decoded this type. */ | |
4255 | if (die->type) | |
4256 | { | |
4257 | return; | |
4258 | } | |
4259 | ||
e7c27a73 | 4260 | element_type = die_type (die, cu); |
c906108c SS |
4261 | |
4262 | /* Irix 6.2 native cc creates array types without children for | |
4263 | arrays with unspecified length. */ | |
639d11d3 | 4264 | if (die->child == NULL) |
c906108c | 4265 | { |
e142c38c | 4266 | index_type = dwarf2_fundamental_type (objfile, FT_INTEGER, cu); |
c906108c | 4267 | range_type = create_range_type (NULL, index_type, 0, -1); |
1c379e20 DJ |
4268 | set_die_type (die, create_array_type (NULL, element_type, range_type), |
4269 | cu); | |
c906108c SS |
4270 | return; |
4271 | } | |
4272 | ||
4273 | back_to = make_cleanup (null_cleanup, NULL); | |
639d11d3 | 4274 | child_die = die->child; |
c906108c SS |
4275 | while (child_die && child_die->tag) |
4276 | { | |
4277 | if (child_die->tag == DW_TAG_subrange_type) | |
4278 | { | |
a02abb62 | 4279 | read_subrange_type (child_die, cu); |
c906108c | 4280 | |
a02abb62 JB |
4281 | if (child_die->type != NULL) |
4282 | { | |
4283 | /* The range type was succesfully read. Save it for | |
4284 | the array type creation. */ | |
4285 | if ((ndim % DW_FIELD_ALLOC_CHUNK) == 0) | |
4286 | { | |
4287 | range_types = (struct type **) | |
4288 | xrealloc (range_types, (ndim + DW_FIELD_ALLOC_CHUNK) | |
4289 | * sizeof (struct type *)); | |
4290 | if (ndim == 0) | |
4291 | make_cleanup (free_current_contents, &range_types); | |
4292 | } | |
4293 | range_types[ndim++] = child_die->type; | |
4294 | } | |
c906108c SS |
4295 | } |
4296 | child_die = sibling_die (child_die); | |
4297 | } | |
4298 | ||
4299 | /* Dwarf2 dimensions are output from left to right, create the | |
4300 | necessary array types in backwards order. */ | |
7ca2d3a3 | 4301 | |
c906108c | 4302 | type = element_type; |
7ca2d3a3 DL |
4303 | |
4304 | if (read_array_order (die, cu) == DW_ORD_col_major) | |
4305 | { | |
4306 | int i = 0; | |
4307 | while (i < ndim) | |
4308 | type = create_array_type (NULL, type, range_types[i++]); | |
4309 | } | |
4310 | else | |
4311 | { | |
4312 | while (ndim-- > 0) | |
4313 | type = create_array_type (NULL, type, range_types[ndim]); | |
4314 | } | |
c906108c | 4315 | |
f5f8a009 EZ |
4316 | /* Understand Dwarf2 support for vector types (like they occur on |
4317 | the PowerPC w/ AltiVec). Gcc just adds another attribute to the | |
4318 | array type. This is not part of the Dwarf2/3 standard yet, but a | |
4319 | custom vendor extension. The main difference between a regular | |
4320 | array and the vector variant is that vectors are passed by value | |
4321 | to functions. */ | |
e142c38c | 4322 | attr = dwarf2_attr (die, DW_AT_GNU_vector, cu); |
f5f8a009 EZ |
4323 | if (attr) |
4324 | TYPE_FLAGS (type) |= TYPE_FLAG_VECTOR; | |
4325 | ||
714e295e JB |
4326 | attr = dwarf2_attr (die, DW_AT_name, cu); |
4327 | if (attr && DW_STRING (attr)) | |
4328 | TYPE_NAME (type) = DW_STRING (attr); | |
4329 | ||
c906108c SS |
4330 | do_cleanups (back_to); |
4331 | ||
4332 | /* Install the type in the die. */ | |
1c379e20 | 4333 | set_die_type (die, type, cu); |
c906108c SS |
4334 | } |
4335 | ||
7ca2d3a3 DL |
4336 | static enum dwarf_array_dim_ordering |
4337 | read_array_order (struct die_info *die, struct dwarf2_cu *cu) | |
4338 | { | |
4339 | struct attribute *attr; | |
4340 | ||
4341 | attr = dwarf2_attr (die, DW_AT_ordering, cu); | |
4342 | ||
4343 | if (attr) return DW_SND (attr); | |
4344 | ||
4345 | /* | |
4346 | GNU F77 is a special case, as at 08/2004 array type info is the | |
4347 | opposite order to the dwarf2 specification, but data is still | |
4348 | laid out as per normal fortran. | |
4349 | ||
4350 | FIXME: dsl/2004-8-20: If G77 is ever fixed, this will also need | |
4351 | version checking. | |
4352 | */ | |
4353 | ||
4354 | if (cu->language == language_fortran && | |
4355 | cu->producer && strstr (cu->producer, "GNU F77")) | |
4356 | { | |
4357 | return DW_ORD_row_major; | |
4358 | } | |
4359 | ||
4360 | switch (cu->language_defn->la_array_ordering) | |
4361 | { | |
4362 | case array_column_major: | |
4363 | return DW_ORD_col_major; | |
4364 | case array_row_major: | |
4365 | default: | |
4366 | return DW_ORD_row_major; | |
4367 | }; | |
4368 | } | |
4369 | ||
72019c9c GM |
4370 | /* Extract all information from a DW_TAG_set_type DIE and put it in |
4371 | the DIE's type field. */ | |
4372 | ||
4373 | static void | |
4374 | read_set_type (struct die_info *die, struct dwarf2_cu *cu) | |
4375 | { | |
4376 | if (die->type == NULL) | |
4377 | die->type = create_set_type ((struct type *) NULL, die_type (die, cu)); | |
4378 | } | |
7ca2d3a3 | 4379 | |
c906108c SS |
4380 | /* First cut: install each common block member as a global variable. */ |
4381 | ||
4382 | static void | |
e7c27a73 | 4383 | read_common_block (struct die_info *die, struct dwarf2_cu *cu) |
c906108c SS |
4384 | { |
4385 | struct die_info *child_die; | |
4386 | struct attribute *attr; | |
4387 | struct symbol *sym; | |
4388 | CORE_ADDR base = (CORE_ADDR) 0; | |
4389 | ||
e142c38c | 4390 | attr = dwarf2_attr (die, DW_AT_location, cu); |
c906108c SS |
4391 | if (attr) |
4392 | { | |
8e19ed76 PS |
4393 | /* Support the .debug_loc offsets */ |
4394 | if (attr_form_is_block (attr)) | |
4395 | { | |
e7c27a73 | 4396 | base = decode_locdesc (DW_BLOCK (attr), cu); |
8e19ed76 PS |
4397 | } |
4398 | else if (attr->form == DW_FORM_data4 || attr->form == DW_FORM_data8) | |
4399 | { | |
4d3c2250 | 4400 | dwarf2_complex_location_expr_complaint (); |
8e19ed76 PS |
4401 | } |
4402 | else | |
4403 | { | |
4d3c2250 KB |
4404 | dwarf2_invalid_attrib_class_complaint ("DW_AT_location", |
4405 | "common block member"); | |
8e19ed76 | 4406 | } |
c906108c | 4407 | } |
639d11d3 | 4408 | if (die->child != NULL) |
c906108c | 4409 | { |
639d11d3 | 4410 | child_die = die->child; |
c906108c SS |
4411 | while (child_die && child_die->tag) |
4412 | { | |
e7c27a73 | 4413 | sym = new_symbol (child_die, NULL, cu); |
e142c38c | 4414 | attr = dwarf2_attr (child_die, DW_AT_data_member_location, cu); |
c906108c SS |
4415 | if (attr) |
4416 | { | |
4417 | SYMBOL_VALUE_ADDRESS (sym) = | |
e7c27a73 | 4418 | base + decode_locdesc (DW_BLOCK (attr), cu); |
c906108c SS |
4419 | add_symbol_to_list (sym, &global_symbols); |
4420 | } | |
4421 | child_die = sibling_die (child_die); | |
4422 | } | |
4423 | } | |
4424 | } | |
4425 | ||
d9fa45fe DC |
4426 | /* Read a C++ namespace. */ |
4427 | ||
d9fa45fe | 4428 | static void |
e7c27a73 | 4429 | read_namespace (struct die_info *die, struct dwarf2_cu *cu) |
d9fa45fe | 4430 | { |
e7c27a73 | 4431 | struct objfile *objfile = cu->objfile; |
38d518c9 | 4432 | const char *previous_prefix = processing_current_prefix; |
63d06c5c | 4433 | const char *name; |
9219021c DC |
4434 | int is_anonymous; |
4435 | struct die_info *current_die; | |
987504bb | 4436 | struct cleanup *back_to = make_cleanup (null_cleanup, 0); |
9219021c | 4437 | |
e142c38c | 4438 | name = namespace_name (die, &is_anonymous, cu); |
9219021c DC |
4439 | |
4440 | /* Now build the name of the current namespace. */ | |
4441 | ||
38d518c9 | 4442 | if (previous_prefix[0] == '\0') |
9219021c | 4443 | { |
38d518c9 | 4444 | processing_current_prefix = name; |
9219021c DC |
4445 | } |
4446 | else | |
4447 | { | |
987504bb JJ |
4448 | char *temp_name = typename_concat (NULL, previous_prefix, name, cu); |
4449 | make_cleanup (xfree, temp_name); | |
38d518c9 | 4450 | processing_current_prefix = temp_name; |
9219021c DC |
4451 | } |
4452 | ||
5c4e30ca DC |
4453 | /* Add a symbol associated to this if we haven't seen the namespace |
4454 | before. Also, add a using directive if it's an anonymous | |
4455 | namespace. */ | |
9219021c | 4456 | |
e142c38c | 4457 | if (dwarf2_extension (die, cu) == NULL) |
5c4e30ca DC |
4458 | { |
4459 | struct type *type; | |
4460 | ||
4461 | /* FIXME: carlton/2003-06-27: Once GDB is more const-correct, | |
4462 | this cast will hopefully become unnecessary. */ | |
4463 | type = init_type (TYPE_CODE_NAMESPACE, 0, 0, | |
38d518c9 | 4464 | (char *) processing_current_prefix, |
5c4e30ca DC |
4465 | objfile); |
4466 | TYPE_TAG_NAME (type) = TYPE_NAME (type); | |
4467 | ||
e7c27a73 | 4468 | new_symbol (die, type, cu); |
1c379e20 | 4469 | set_die_type (die, type, cu); |
5c4e30ca DC |
4470 | |
4471 | if (is_anonymous) | |
38d518c9 EZ |
4472 | cp_add_using_directive (processing_current_prefix, |
4473 | strlen (previous_prefix), | |
4474 | strlen (processing_current_prefix)); | |
5c4e30ca | 4475 | } |
9219021c | 4476 | |
639d11d3 | 4477 | if (die->child != NULL) |
d9fa45fe | 4478 | { |
639d11d3 | 4479 | struct die_info *child_die = die->child; |
d9fa45fe DC |
4480 | |
4481 | while (child_die && child_die->tag) | |
4482 | { | |
e7c27a73 | 4483 | process_die (child_die, cu); |
d9fa45fe DC |
4484 | child_die = sibling_die (child_die); |
4485 | } | |
4486 | } | |
9219021c | 4487 | |
38d518c9 | 4488 | processing_current_prefix = previous_prefix; |
987504bb | 4489 | do_cleanups (back_to); |
38d518c9 EZ |
4490 | } |
4491 | ||
4492 | /* Return the name of the namespace represented by DIE. Set | |
4493 | *IS_ANONYMOUS to tell whether or not the namespace is an anonymous | |
4494 | namespace. */ | |
4495 | ||
4496 | static const char * | |
e142c38c | 4497 | namespace_name (struct die_info *die, int *is_anonymous, struct dwarf2_cu *cu) |
38d518c9 EZ |
4498 | { |
4499 | struct die_info *current_die; | |
4500 | const char *name = NULL; | |
4501 | ||
4502 | /* Loop through the extensions until we find a name. */ | |
4503 | ||
4504 | for (current_die = die; | |
4505 | current_die != NULL; | |
e142c38c | 4506 | current_die = dwarf2_extension (die, cu)) |
38d518c9 | 4507 | { |
e142c38c | 4508 | name = dwarf2_name (current_die, cu); |
38d518c9 EZ |
4509 | if (name != NULL) |
4510 | break; | |
4511 | } | |
4512 | ||
4513 | /* Is it an anonymous namespace? */ | |
4514 | ||
4515 | *is_anonymous = (name == NULL); | |
4516 | if (*is_anonymous) | |
4517 | name = "(anonymous namespace)"; | |
4518 | ||
4519 | return name; | |
d9fa45fe DC |
4520 | } |
4521 | ||
c906108c SS |
4522 | /* Extract all information from a DW_TAG_pointer_type DIE and add to |
4523 | the user defined type vector. */ | |
4524 | ||
4525 | static void | |
e7c27a73 | 4526 | read_tag_pointer_type (struct die_info *die, struct dwarf2_cu *cu) |
c906108c | 4527 | { |
e7c27a73 | 4528 | struct comp_unit_head *cu_header = &cu->header; |
c906108c | 4529 | struct type *type; |
8b2dbe47 KB |
4530 | struct attribute *attr_byte_size; |
4531 | struct attribute *attr_address_class; | |
4532 | int byte_size, addr_class; | |
c906108c SS |
4533 | |
4534 | if (die->type) | |
4535 | { | |
4536 | return; | |
4537 | } | |
4538 | ||
e7c27a73 | 4539 | type = lookup_pointer_type (die_type (die, cu)); |
8b2dbe47 | 4540 | |
e142c38c | 4541 | attr_byte_size = dwarf2_attr (die, DW_AT_byte_size, cu); |
8b2dbe47 KB |
4542 | if (attr_byte_size) |
4543 | byte_size = DW_UNSND (attr_byte_size); | |
c906108c | 4544 | else |
8b2dbe47 KB |
4545 | byte_size = cu_header->addr_size; |
4546 | ||
e142c38c | 4547 | attr_address_class = dwarf2_attr (die, DW_AT_address_class, cu); |
8b2dbe47 KB |
4548 | if (attr_address_class) |
4549 | addr_class = DW_UNSND (attr_address_class); | |
4550 | else | |
4551 | addr_class = DW_ADDR_none; | |
4552 | ||
4553 | /* If the pointer size or address class is different than the | |
4554 | default, create a type variant marked as such and set the | |
4555 | length accordingly. */ | |
4556 | if (TYPE_LENGTH (type) != byte_size || addr_class != DW_ADDR_none) | |
c906108c | 4557 | { |
849957d9 | 4558 | if (gdbarch_address_class_type_flags_p (current_gdbarch)) |
8b2dbe47 KB |
4559 | { |
4560 | int type_flags; | |
4561 | ||
849957d9 UW |
4562 | type_flags = gdbarch_address_class_type_flags |
4563 | (current_gdbarch, byte_size, addr_class); | |
8b2dbe47 KB |
4564 | gdb_assert ((type_flags & ~TYPE_FLAG_ADDRESS_CLASS_ALL) == 0); |
4565 | type = make_type_with_address_space (type, type_flags); | |
4566 | } | |
4567 | else if (TYPE_LENGTH (type) != byte_size) | |
4568 | { | |
e2e0b3e5 | 4569 | complaint (&symfile_complaints, _("invalid pointer size %d"), byte_size); |
8b2dbe47 KB |
4570 | } |
4571 | else { | |
4572 | /* Should we also complain about unhandled address classes? */ | |
4573 | } | |
c906108c | 4574 | } |
8b2dbe47 KB |
4575 | |
4576 | TYPE_LENGTH (type) = byte_size; | |
1c379e20 | 4577 | set_die_type (die, type, cu); |
c906108c SS |
4578 | } |
4579 | ||
4580 | /* Extract all information from a DW_TAG_ptr_to_member_type DIE and add to | |
4581 | the user defined type vector. */ | |
4582 | ||
4583 | static void | |
e7c27a73 | 4584 | read_tag_ptr_to_member_type (struct die_info *die, struct dwarf2_cu *cu) |
c906108c | 4585 | { |
e7c27a73 | 4586 | struct objfile *objfile = cu->objfile; |
c906108c SS |
4587 | struct type *type; |
4588 | struct type *to_type; | |
4589 | struct type *domain; | |
4590 | ||
4591 | if (die->type) | |
4592 | { | |
4593 | return; | |
4594 | } | |
4595 | ||
e7c27a73 DJ |
4596 | to_type = die_type (die, cu); |
4597 | domain = die_containing_type (die, cu); | |
0d5de010 DJ |
4598 | |
4599 | if (TYPE_CODE (check_typedef (to_type)) == TYPE_CODE_METHOD) | |
4600 | type = lookup_methodptr_type (to_type); | |
4601 | else | |
4602 | type = lookup_memberptr_type (to_type, domain); | |
c906108c | 4603 | |
1c379e20 | 4604 | set_die_type (die, type, cu); |
c906108c SS |
4605 | } |
4606 | ||
4607 | /* Extract all information from a DW_TAG_reference_type DIE and add to | |
4608 | the user defined type vector. */ | |
4609 | ||
4610 | static void | |
e7c27a73 | 4611 | read_tag_reference_type (struct die_info *die, struct dwarf2_cu *cu) |
c906108c | 4612 | { |
e7c27a73 | 4613 | struct comp_unit_head *cu_header = &cu->header; |
c906108c SS |
4614 | struct type *type; |
4615 | struct attribute *attr; | |
4616 | ||
4617 | if (die->type) | |
4618 | { | |
4619 | return; | |
4620 | } | |
4621 | ||
e7c27a73 | 4622 | type = lookup_reference_type (die_type (die, cu)); |
e142c38c | 4623 | attr = dwarf2_attr (die, DW_AT_byte_size, cu); |
c906108c SS |
4624 | if (attr) |
4625 | { | |
4626 | TYPE_LENGTH (type) = DW_UNSND (attr); | |
4627 | } | |
4628 | else | |
4629 | { | |
107d2387 | 4630 | TYPE_LENGTH (type) = cu_header->addr_size; |
c906108c | 4631 | } |
1c379e20 | 4632 | set_die_type (die, type, cu); |
c906108c SS |
4633 | } |
4634 | ||
4635 | static void | |
e7c27a73 | 4636 | read_tag_const_type (struct die_info *die, struct dwarf2_cu *cu) |
c906108c | 4637 | { |
090c42a4 JB |
4638 | struct type *base_type; |
4639 | ||
c906108c SS |
4640 | if (die->type) |
4641 | { | |
4642 | return; | |
4643 | } | |
4644 | ||
e7c27a73 | 4645 | base_type = die_type (die, cu); |
1c379e20 DJ |
4646 | set_die_type (die, make_cv_type (1, TYPE_VOLATILE (base_type), base_type, 0), |
4647 | cu); | |
c906108c SS |
4648 | } |
4649 | ||
4650 | static void | |
e7c27a73 | 4651 | read_tag_volatile_type (struct die_info *die, struct dwarf2_cu *cu) |
c906108c | 4652 | { |
090c42a4 JB |
4653 | struct type *base_type; |
4654 | ||
c906108c SS |
4655 | if (die->type) |
4656 | { | |
4657 | return; | |
4658 | } | |
4659 | ||
e7c27a73 | 4660 | base_type = die_type (die, cu); |
1c379e20 DJ |
4661 | set_die_type (die, make_cv_type (TYPE_CONST (base_type), 1, base_type, 0), |
4662 | cu); | |
c906108c SS |
4663 | } |
4664 | ||
4665 | /* Extract all information from a DW_TAG_string_type DIE and add to | |
4666 | the user defined type vector. It isn't really a user defined type, | |
4667 | but it behaves like one, with other DIE's using an AT_user_def_type | |
4668 | attribute to reference it. */ | |
4669 | ||
4670 | static void | |
e7c27a73 | 4671 | read_tag_string_type (struct die_info *die, struct dwarf2_cu *cu) |
c906108c | 4672 | { |
e7c27a73 | 4673 | struct objfile *objfile = cu->objfile; |
c906108c SS |
4674 | struct type *type, *range_type, *index_type, *char_type; |
4675 | struct attribute *attr; | |
4676 | unsigned int length; | |
4677 | ||
4678 | if (die->type) | |
4679 | { | |
4680 | return; | |
4681 | } | |
4682 | ||
e142c38c | 4683 | attr = dwarf2_attr (die, DW_AT_string_length, cu); |
c906108c SS |
4684 | if (attr) |
4685 | { | |
4686 | length = DW_UNSND (attr); | |
4687 | } | |
4688 | else | |
4689 | { | |
b21b22e0 | 4690 | /* check for the DW_AT_byte_size attribute */ |
e142c38c | 4691 | attr = dwarf2_attr (die, DW_AT_byte_size, cu); |
b21b22e0 PS |
4692 | if (attr) |
4693 | { | |
4694 | length = DW_UNSND (attr); | |
4695 | } | |
4696 | else | |
4697 | { | |
4698 | length = 1; | |
4699 | } | |
c906108c | 4700 | } |
e142c38c | 4701 | index_type = dwarf2_fundamental_type (objfile, FT_INTEGER, cu); |
c906108c | 4702 | range_type = create_range_type (NULL, index_type, 1, length); |
e142c38c | 4703 | if (cu->language == language_fortran) |
b21b22e0 PS |
4704 | { |
4705 | /* Need to create a unique string type for bounds | |
4706 | information */ | |
4707 | type = create_string_type (0, range_type); | |
4708 | } | |
4709 | else | |
4710 | { | |
e142c38c | 4711 | char_type = dwarf2_fundamental_type (objfile, FT_CHAR, cu); |
b21b22e0 PS |
4712 | type = create_string_type (char_type, range_type); |
4713 | } | |
1c379e20 | 4714 | set_die_type (die, type, cu); |
c906108c SS |
4715 | } |
4716 | ||
4717 | /* Handle DIES due to C code like: | |
4718 | ||
4719 | struct foo | |
c5aa993b JM |
4720 | { |
4721 | int (*funcp)(int a, long l); | |
4722 | int b; | |
4723 | }; | |
c906108c SS |
4724 | |
4725 | ('funcp' generates a DW_TAG_subroutine_type DIE) | |
c5aa993b | 4726 | */ |
c906108c SS |
4727 | |
4728 | static void | |
e7c27a73 | 4729 | read_subroutine_type (struct die_info *die, struct dwarf2_cu *cu) |
c906108c SS |
4730 | { |
4731 | struct type *type; /* Type that this function returns */ | |
4732 | struct type *ftype; /* Function that returns above type */ | |
4733 | struct attribute *attr; | |
4734 | ||
4735 | /* Decode the type that this subroutine returns */ | |
4736 | if (die->type) | |
4737 | { | |
4738 | return; | |
4739 | } | |
e7c27a73 | 4740 | type = die_type (die, cu); |
1326e61b | 4741 | ftype = make_function_type (type, (struct type **) 0); |
c906108c | 4742 | |
987504bb | 4743 | /* All functions in C++ and Java have prototypes. */ |
e142c38c | 4744 | attr = dwarf2_attr (die, DW_AT_prototyped, cu); |
c906108c | 4745 | if ((attr && (DW_UNSND (attr) != 0)) |
987504bb JJ |
4746 | || cu->language == language_cplus |
4747 | || cu->language == language_java) | |
c906108c SS |
4748 | TYPE_FLAGS (ftype) |= TYPE_FLAG_PROTOTYPED; |
4749 | ||
639d11d3 | 4750 | if (die->child != NULL) |
c906108c SS |
4751 | { |
4752 | struct die_info *child_die; | |
4753 | int nparams = 0; | |
4754 | int iparams = 0; | |
4755 | ||
4756 | /* Count the number of parameters. | |
4757 | FIXME: GDB currently ignores vararg functions, but knows about | |
4758 | vararg member functions. */ | |
639d11d3 | 4759 | child_die = die->child; |
c906108c SS |
4760 | while (child_die && child_die->tag) |
4761 | { | |
4762 | if (child_die->tag == DW_TAG_formal_parameter) | |
4763 | nparams++; | |
4764 | else if (child_die->tag == DW_TAG_unspecified_parameters) | |
4765 | TYPE_FLAGS (ftype) |= TYPE_FLAG_VARARGS; | |
4766 | child_die = sibling_die (child_die); | |
4767 | } | |
4768 | ||
4769 | /* Allocate storage for parameters and fill them in. */ | |
4770 | TYPE_NFIELDS (ftype) = nparams; | |
4771 | TYPE_FIELDS (ftype) = (struct field *) | |
ae5a43e0 | 4772 | TYPE_ZALLOC (ftype, nparams * sizeof (struct field)); |
c906108c | 4773 | |
639d11d3 | 4774 | child_die = die->child; |
c906108c SS |
4775 | while (child_die && child_die->tag) |
4776 | { | |
4777 | if (child_die->tag == DW_TAG_formal_parameter) | |
4778 | { | |
4779 | /* Dwarf2 has no clean way to discern C++ static and non-static | |
c5aa993b JM |
4780 | member functions. G++ helps GDB by marking the first |
4781 | parameter for non-static member functions (which is the | |
4782 | this pointer) as artificial. We pass this information | |
4783 | to dwarf2_add_member_fn via TYPE_FIELD_ARTIFICIAL. */ | |
e142c38c | 4784 | attr = dwarf2_attr (child_die, DW_AT_artificial, cu); |
c906108c SS |
4785 | if (attr) |
4786 | TYPE_FIELD_ARTIFICIAL (ftype, iparams) = DW_UNSND (attr); | |
4787 | else | |
4788 | TYPE_FIELD_ARTIFICIAL (ftype, iparams) = 0; | |
e7c27a73 | 4789 | TYPE_FIELD_TYPE (ftype, iparams) = die_type (child_die, cu); |
c906108c SS |
4790 | iparams++; |
4791 | } | |
4792 | child_die = sibling_die (child_die); | |
4793 | } | |
4794 | } | |
4795 | ||
1c379e20 | 4796 | set_die_type (die, ftype, cu); |
c906108c SS |
4797 | } |
4798 | ||
4799 | static void | |
e7c27a73 | 4800 | read_typedef (struct die_info *die, struct dwarf2_cu *cu) |
c906108c | 4801 | { |
e7c27a73 | 4802 | struct objfile *objfile = cu->objfile; |
2f038fcb FF |
4803 | struct attribute *attr; |
4804 | char *name = NULL; | |
c906108c SS |
4805 | |
4806 | if (!die->type) | |
4807 | { | |
e142c38c | 4808 | attr = dwarf2_attr (die, DW_AT_name, cu); |
c906108c | 4809 | if (attr && DW_STRING (attr)) |
2f038fcb FF |
4810 | { |
4811 | name = DW_STRING (attr); | |
4812 | } | |
1c379e20 DJ |
4813 | set_die_type (die, init_type (TYPE_CODE_TYPEDEF, 0, |
4814 | TYPE_FLAG_TARGET_STUB, name, objfile), | |
4815 | cu); | |
e7c27a73 | 4816 | TYPE_TARGET_TYPE (die->type) = die_type (die, cu); |
c906108c SS |
4817 | } |
4818 | } | |
4819 | ||
4820 | /* Find a representation of a given base type and install | |
4821 | it in the TYPE field of the die. */ | |
4822 | ||
4823 | static void | |
e7c27a73 | 4824 | read_base_type (struct die_info *die, struct dwarf2_cu *cu) |
c906108c | 4825 | { |
e7c27a73 | 4826 | struct objfile *objfile = cu->objfile; |
c906108c SS |
4827 | struct type *type; |
4828 | struct attribute *attr; | |
4829 | int encoding = 0, size = 0; | |
4830 | ||
4831 | /* If we've already decoded this die, this is a no-op. */ | |
4832 | if (die->type) | |
4833 | { | |
4834 | return; | |
4835 | } | |
4836 | ||
e142c38c | 4837 | attr = dwarf2_attr (die, DW_AT_encoding, cu); |
c906108c SS |
4838 | if (attr) |
4839 | { | |
4840 | encoding = DW_UNSND (attr); | |
4841 | } | |
e142c38c | 4842 | attr = dwarf2_attr (die, DW_AT_byte_size, cu); |
c906108c SS |
4843 | if (attr) |
4844 | { | |
4845 | size = DW_UNSND (attr); | |
4846 | } | |
e142c38c | 4847 | attr = dwarf2_attr (die, DW_AT_name, cu); |
c906108c SS |
4848 | if (attr && DW_STRING (attr)) |
4849 | { | |
4850 | enum type_code code = TYPE_CODE_INT; | |
f5ef7c67 | 4851 | int type_flags = 0; |
c906108c SS |
4852 | |
4853 | switch (encoding) | |
4854 | { | |
4855 | case DW_ATE_address: | |
4856 | /* Turn DW_ATE_address into a void * pointer. */ | |
4857 | code = TYPE_CODE_PTR; | |
f5ef7c67 | 4858 | type_flags |= TYPE_FLAG_UNSIGNED; |
c906108c SS |
4859 | break; |
4860 | case DW_ATE_boolean: | |
4861 | code = TYPE_CODE_BOOL; | |
f5ef7c67 | 4862 | type_flags |= TYPE_FLAG_UNSIGNED; |
c906108c SS |
4863 | break; |
4864 | case DW_ATE_complex_float: | |
4865 | code = TYPE_CODE_COMPLEX; | |
4866 | break; | |
4867 | case DW_ATE_float: | |
4868 | code = TYPE_CODE_FLT; | |
4869 | break; | |
4870 | case DW_ATE_signed: | |
c906108c SS |
4871 | break; |
4872 | case DW_ATE_unsigned: | |
72019c9c GM |
4873 | type_flags |= TYPE_FLAG_UNSIGNED; |
4874 | break; | |
4875 | case DW_ATE_signed_char: | |
4876 | if (cu->language == language_m2) | |
4877 | code = TYPE_CODE_CHAR; | |
4878 | break; | |
4879 | case DW_ATE_unsigned_char: | |
4880 | if (cu->language == language_m2) | |
4881 | code = TYPE_CODE_CHAR; | |
f5ef7c67 | 4882 | type_flags |= TYPE_FLAG_UNSIGNED; |
c906108c SS |
4883 | break; |
4884 | default: | |
e2e0b3e5 | 4885 | complaint (&symfile_complaints, _("unsupported DW_AT_encoding: '%s'"), |
4d3c2250 | 4886 | dwarf_type_encoding_name (encoding)); |
c906108c SS |
4887 | break; |
4888 | } | |
f5ef7c67 | 4889 | type = init_type (code, size, type_flags, DW_STRING (attr), objfile); |
c906108c | 4890 | if (encoding == DW_ATE_address) |
e142c38c DJ |
4891 | TYPE_TARGET_TYPE (type) = dwarf2_fundamental_type (objfile, FT_VOID, |
4892 | cu); | |
f65ca430 DJ |
4893 | else if (encoding == DW_ATE_complex_float) |
4894 | { | |
4895 | if (size == 32) | |
4896 | TYPE_TARGET_TYPE (type) | |
e142c38c | 4897 | = dwarf2_fundamental_type (objfile, FT_EXT_PREC_FLOAT, cu); |
f65ca430 DJ |
4898 | else if (size == 16) |
4899 | TYPE_TARGET_TYPE (type) | |
e142c38c | 4900 | = dwarf2_fundamental_type (objfile, FT_DBL_PREC_FLOAT, cu); |
f65ca430 DJ |
4901 | else if (size == 8) |
4902 | TYPE_TARGET_TYPE (type) | |
e142c38c | 4903 | = dwarf2_fundamental_type (objfile, FT_FLOAT, cu); |
f65ca430 | 4904 | } |
c906108c SS |
4905 | } |
4906 | else | |
4907 | { | |
e7c27a73 | 4908 | type = dwarf_base_type (encoding, size, cu); |
c906108c | 4909 | } |
1c379e20 | 4910 | set_die_type (die, type, cu); |
c906108c SS |
4911 | } |
4912 | ||
a02abb62 JB |
4913 | /* Read the given DW_AT_subrange DIE. */ |
4914 | ||
4915 | static void | |
4916 | read_subrange_type (struct die_info *die, struct dwarf2_cu *cu) | |
4917 | { | |
4918 | struct type *base_type; | |
4919 | struct type *range_type; | |
4920 | struct attribute *attr; | |
4921 | int low = 0; | |
4922 | int high = -1; | |
4923 | ||
4924 | /* If we have already decoded this die, then nothing more to do. */ | |
4925 | if (die->type) | |
4926 | return; | |
4927 | ||
4928 | base_type = die_type (die, cu); | |
3d1f72c2 | 4929 | if (TYPE_CODE (base_type) == TYPE_CODE_VOID) |
a02abb62 JB |
4930 | { |
4931 | complaint (&symfile_complaints, | |
e2e0b3e5 | 4932 | _("DW_AT_type missing from DW_TAG_subrange_type")); |
17a912b6 UW |
4933 | base_type |
4934 | = dwarf_base_type (DW_ATE_signed, | |
4935 | gdbarch_addr_bit (current_gdbarch) / 8, cu); | |
a02abb62 JB |
4936 | } |
4937 | ||
e142c38c | 4938 | if (cu->language == language_fortran) |
a02abb62 JB |
4939 | { |
4940 | /* FORTRAN implies a lower bound of 1, if not given. */ | |
4941 | low = 1; | |
4942 | } | |
4943 | ||
dd5e6932 DJ |
4944 | /* FIXME: For variable sized arrays either of these could be |
4945 | a variable rather than a constant value. We'll allow it, | |
4946 | but we don't know how to handle it. */ | |
e142c38c | 4947 | attr = dwarf2_attr (die, DW_AT_lower_bound, cu); |
a02abb62 JB |
4948 | if (attr) |
4949 | low = dwarf2_get_attr_constant_value (attr, 0); | |
4950 | ||
e142c38c | 4951 | attr = dwarf2_attr (die, DW_AT_upper_bound, cu); |
a02abb62 JB |
4952 | if (attr) |
4953 | { | |
4954 | if (attr->form == DW_FORM_block1) | |
4955 | { | |
4956 | /* GCC encodes arrays with unspecified or dynamic length | |
4957 | with a DW_FORM_block1 attribute. | |
4958 | FIXME: GDB does not yet know how to handle dynamic | |
4959 | arrays properly, treat them as arrays with unspecified | |
4960 | length for now. | |
4961 | ||
4962 | FIXME: jimb/2003-09-22: GDB does not really know | |
4963 | how to handle arrays of unspecified length | |
4964 | either; we just represent them as zero-length | |
4965 | arrays. Choose an appropriate upper bound given | |
4966 | the lower bound we've computed above. */ | |
4967 | high = low - 1; | |
4968 | } | |
4969 | else | |
4970 | high = dwarf2_get_attr_constant_value (attr, 1); | |
4971 | } | |
4972 | ||
4973 | range_type = create_range_type (NULL, base_type, low, high); | |
4974 | ||
e142c38c | 4975 | attr = dwarf2_attr (die, DW_AT_name, cu); |
a02abb62 JB |
4976 | if (attr && DW_STRING (attr)) |
4977 | TYPE_NAME (range_type) = DW_STRING (attr); | |
4978 | ||
e142c38c | 4979 | attr = dwarf2_attr (die, DW_AT_byte_size, cu); |
a02abb62 JB |
4980 | if (attr) |
4981 | TYPE_LENGTH (range_type) = DW_UNSND (attr); | |
4982 | ||
1c379e20 | 4983 | set_die_type (die, range_type, cu); |
a02abb62 JB |
4984 | } |
4985 | ||
81a17f79 JB |
4986 | static void |
4987 | read_unspecified_type (struct die_info *die, struct dwarf2_cu *cu) | |
4988 | { | |
4989 | struct type *type; | |
4990 | struct attribute *attr; | |
4991 | ||
4992 | if (die->type) | |
4993 | return; | |
4994 | ||
4995 | /* For now, we only support the C meaning of an unspecified type: void. */ | |
4996 | ||
4997 | attr = dwarf2_attr (die, DW_AT_name, cu); | |
4998 | type = init_type (TYPE_CODE_VOID, 0, 0, attr ? DW_STRING (attr) : "", | |
4999 | cu->objfile); | |
5000 | ||
5001 | set_die_type (die, type, cu); | |
5002 | } | |
a02abb62 | 5003 | |
c906108c SS |
5004 | /* Read a whole compilation unit into a linked list of dies. */ |
5005 | ||
f9aca02d | 5006 | static struct die_info * |
fe1b8b76 | 5007 | read_comp_unit (gdb_byte *info_ptr, bfd *abfd, struct dwarf2_cu *cu) |
c906108c | 5008 | { |
e7c27a73 | 5009 | return read_die_and_children (info_ptr, abfd, cu, &info_ptr, NULL); |
639d11d3 DC |
5010 | } |
5011 | ||
5012 | /* Read a single die and all its descendents. Set the die's sibling | |
5013 | field to NULL; set other fields in the die correctly, and set all | |
5014 | of the descendents' fields correctly. Set *NEW_INFO_PTR to the | |
5015 | location of the info_ptr after reading all of those dies. PARENT | |
5016 | is the parent of the die in question. */ | |
5017 | ||
5018 | static struct die_info * | |
fe1b8b76 | 5019 | read_die_and_children (gdb_byte *info_ptr, bfd *abfd, |
e7c27a73 | 5020 | struct dwarf2_cu *cu, |
fe1b8b76 | 5021 | gdb_byte **new_info_ptr, |
639d11d3 DC |
5022 | struct die_info *parent) |
5023 | { | |
5024 | struct die_info *die; | |
fe1b8b76 | 5025 | gdb_byte *cur_ptr; |
639d11d3 DC |
5026 | int has_children; |
5027 | ||
e7c27a73 | 5028 | cur_ptr = read_full_die (&die, abfd, info_ptr, cu, &has_children); |
10b3939b | 5029 | store_in_ref_table (die->offset, die, cu); |
639d11d3 DC |
5030 | |
5031 | if (has_children) | |
5032 | { | |
e7c27a73 | 5033 | die->child = read_die_and_siblings (cur_ptr, abfd, cu, |
639d11d3 DC |
5034 | new_info_ptr, die); |
5035 | } | |
5036 | else | |
5037 | { | |
5038 | die->child = NULL; | |
5039 | *new_info_ptr = cur_ptr; | |
5040 | } | |
5041 | ||
5042 | die->sibling = NULL; | |
5043 | die->parent = parent; | |
5044 | return die; | |
5045 | } | |
5046 | ||
5047 | /* Read a die, all of its descendents, and all of its siblings; set | |
5048 | all of the fields of all of the dies correctly. Arguments are as | |
5049 | in read_die_and_children. */ | |
5050 | ||
5051 | static struct die_info * | |
fe1b8b76 | 5052 | read_die_and_siblings (gdb_byte *info_ptr, bfd *abfd, |
e7c27a73 | 5053 | struct dwarf2_cu *cu, |
fe1b8b76 | 5054 | gdb_byte **new_info_ptr, |
639d11d3 DC |
5055 | struct die_info *parent) |
5056 | { | |
5057 | struct die_info *first_die, *last_sibling; | |
fe1b8b76 | 5058 | gdb_byte *cur_ptr; |
639d11d3 | 5059 | |
c906108c | 5060 | cur_ptr = info_ptr; |
639d11d3 DC |
5061 | first_die = last_sibling = NULL; |
5062 | ||
5063 | while (1) | |
c906108c | 5064 | { |
639d11d3 | 5065 | struct die_info *die |
e7c27a73 | 5066 | = read_die_and_children (cur_ptr, abfd, cu, &cur_ptr, parent); |
639d11d3 DC |
5067 | |
5068 | if (!first_die) | |
c906108c | 5069 | { |
639d11d3 | 5070 | first_die = die; |
c906108c | 5071 | } |
639d11d3 | 5072 | else |
c906108c | 5073 | { |
639d11d3 | 5074 | last_sibling->sibling = die; |
c906108c SS |
5075 | } |
5076 | ||
639d11d3 | 5077 | if (die->tag == 0) |
c906108c | 5078 | { |
639d11d3 DC |
5079 | *new_info_ptr = cur_ptr; |
5080 | return first_die; | |
c906108c SS |
5081 | } |
5082 | else | |
5083 | { | |
639d11d3 | 5084 | last_sibling = die; |
c906108c SS |
5085 | } |
5086 | } | |
c906108c SS |
5087 | } |
5088 | ||
5089 | /* Free a linked list of dies. */ | |
5090 | ||
5091 | static void | |
fba45db2 | 5092 | free_die_list (struct die_info *dies) |
c906108c SS |
5093 | { |
5094 | struct die_info *die, *next; | |
5095 | ||
5096 | die = dies; | |
5097 | while (die) | |
5098 | { | |
639d11d3 DC |
5099 | if (die->child != NULL) |
5100 | free_die_list (die->child); | |
5101 | next = die->sibling; | |
b8c9b27d KB |
5102 | xfree (die->attrs); |
5103 | xfree (die); | |
c906108c SS |
5104 | die = next; |
5105 | } | |
5106 | } | |
5107 | ||
5108 | /* Read the contents of the section at OFFSET and of size SIZE from the | |
8b92e4d5 | 5109 | object file specified by OBJFILE into the objfile_obstack and return it. */ |
c906108c | 5110 | |
fe1b8b76 | 5111 | gdb_byte * |
188dd5d6 | 5112 | dwarf2_read_section (struct objfile *objfile, asection *sectp) |
c906108c SS |
5113 | { |
5114 | bfd *abfd = objfile->obfd; | |
fe1b8b76 | 5115 | gdb_byte *buf, *retbuf; |
2c500098 | 5116 | bfd_size_type size = bfd_get_section_size (sectp); |
c906108c SS |
5117 | |
5118 | if (size == 0) | |
5119 | return NULL; | |
5120 | ||
fe1b8b76 JB |
5121 | buf = obstack_alloc (&objfile->objfile_obstack, size); |
5122 | retbuf = symfile_relocate_debug_section (abfd, sectp, buf); | |
086df311 DJ |
5123 | if (retbuf != NULL) |
5124 | return retbuf; | |
5125 | ||
188dd5d6 DJ |
5126 | if (bfd_seek (abfd, sectp->filepos, SEEK_SET) != 0 |
5127 | || bfd_bread (buf, size, abfd) != size) | |
8a3fe4f8 | 5128 | error (_("Dwarf Error: Can't read DWARF data from '%s'"), |
188dd5d6 DJ |
5129 | bfd_get_filename (abfd)); |
5130 | ||
c906108c SS |
5131 | return buf; |
5132 | } | |
5133 | ||
5134 | /* In DWARF version 2, the description of the debugging information is | |
5135 | stored in a separate .debug_abbrev section. Before we read any | |
5136 | dies from a section we read in all abbreviations and install them | |
72bf9492 DJ |
5137 | in a hash table. This function also sets flags in CU describing |
5138 | the data found in the abbrev table. */ | |
c906108c SS |
5139 | |
5140 | static void | |
e7c27a73 | 5141 | dwarf2_read_abbrevs (bfd *abfd, struct dwarf2_cu *cu) |
c906108c | 5142 | { |
e7c27a73 | 5143 | struct comp_unit_head *cu_header = &cu->header; |
fe1b8b76 | 5144 | gdb_byte *abbrev_ptr; |
c906108c SS |
5145 | struct abbrev_info *cur_abbrev; |
5146 | unsigned int abbrev_number, bytes_read, abbrev_name; | |
5147 | unsigned int abbrev_form, hash_number; | |
f3dd6933 DJ |
5148 | struct attr_abbrev *cur_attrs; |
5149 | unsigned int allocated_attrs; | |
c906108c | 5150 | |
57349743 | 5151 | /* Initialize dwarf2 abbrevs */ |
f3dd6933 DJ |
5152 | obstack_init (&cu->abbrev_obstack); |
5153 | cu->dwarf2_abbrevs = obstack_alloc (&cu->abbrev_obstack, | |
5154 | (ABBREV_HASH_SIZE | |
5155 | * sizeof (struct abbrev_info *))); | |
5156 | memset (cu->dwarf2_abbrevs, 0, | |
5157 | ABBREV_HASH_SIZE * sizeof (struct abbrev_info *)); | |
c906108c | 5158 | |
6502dd73 | 5159 | abbrev_ptr = dwarf2_per_objfile->abbrev_buffer + cu_header->abbrev_offset; |
c906108c SS |
5160 | abbrev_number = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read); |
5161 | abbrev_ptr += bytes_read; | |
5162 | ||
f3dd6933 DJ |
5163 | allocated_attrs = ATTR_ALLOC_CHUNK; |
5164 | cur_attrs = xmalloc (allocated_attrs * sizeof (struct attr_abbrev)); | |
5165 | ||
c906108c SS |
5166 | /* loop until we reach an abbrev number of 0 */ |
5167 | while (abbrev_number) | |
5168 | { | |
f3dd6933 | 5169 | cur_abbrev = dwarf_alloc_abbrev (cu); |
c906108c SS |
5170 | |
5171 | /* read in abbrev header */ | |
5172 | cur_abbrev->number = abbrev_number; | |
5173 | cur_abbrev->tag = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read); | |
5174 | abbrev_ptr += bytes_read; | |
5175 | cur_abbrev->has_children = read_1_byte (abfd, abbrev_ptr); | |
5176 | abbrev_ptr += 1; | |
5177 | ||
72bf9492 DJ |
5178 | if (cur_abbrev->tag == DW_TAG_namespace) |
5179 | cu->has_namespace_info = 1; | |
5180 | ||
c906108c SS |
5181 | /* now read in declarations */ |
5182 | abbrev_name = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read); | |
5183 | abbrev_ptr += bytes_read; | |
5184 | abbrev_form = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read); | |
5185 | abbrev_ptr += bytes_read; | |
5186 | while (abbrev_name) | |
5187 | { | |
f3dd6933 | 5188 | if (cur_abbrev->num_attrs == allocated_attrs) |
c906108c | 5189 | { |
f3dd6933 DJ |
5190 | allocated_attrs += ATTR_ALLOC_CHUNK; |
5191 | cur_attrs | |
5192 | = xrealloc (cur_attrs, (allocated_attrs | |
5193 | * sizeof (struct attr_abbrev))); | |
c906108c | 5194 | } |
ae038cb0 DJ |
5195 | |
5196 | /* Record whether this compilation unit might have | |
5197 | inter-compilation-unit references. If we don't know what form | |
5198 | this attribute will have, then it might potentially be a | |
5199 | DW_FORM_ref_addr, so we conservatively expect inter-CU | |
5200 | references. */ | |
5201 | ||
5202 | if (abbrev_form == DW_FORM_ref_addr | |
5203 | || abbrev_form == DW_FORM_indirect) | |
5204 | cu->has_form_ref_addr = 1; | |
5205 | ||
f3dd6933 DJ |
5206 | cur_attrs[cur_abbrev->num_attrs].name = abbrev_name; |
5207 | cur_attrs[cur_abbrev->num_attrs++].form = abbrev_form; | |
c906108c SS |
5208 | abbrev_name = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read); |
5209 | abbrev_ptr += bytes_read; | |
5210 | abbrev_form = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read); | |
5211 | abbrev_ptr += bytes_read; | |
5212 | } | |
5213 | ||
f3dd6933 DJ |
5214 | cur_abbrev->attrs = obstack_alloc (&cu->abbrev_obstack, |
5215 | (cur_abbrev->num_attrs | |
5216 | * sizeof (struct attr_abbrev))); | |
5217 | memcpy (cur_abbrev->attrs, cur_attrs, | |
5218 | cur_abbrev->num_attrs * sizeof (struct attr_abbrev)); | |
5219 | ||
c906108c | 5220 | hash_number = abbrev_number % ABBREV_HASH_SIZE; |
f3dd6933 DJ |
5221 | cur_abbrev->next = cu->dwarf2_abbrevs[hash_number]; |
5222 | cu->dwarf2_abbrevs[hash_number] = cur_abbrev; | |
c906108c SS |
5223 | |
5224 | /* Get next abbreviation. | |
5225 | Under Irix6 the abbreviations for a compilation unit are not | |
c5aa993b JM |
5226 | always properly terminated with an abbrev number of 0. |
5227 | Exit loop if we encounter an abbreviation which we have | |
5228 | already read (which means we are about to read the abbreviations | |
5229 | for the next compile unit) or if the end of the abbreviation | |
5230 | table is reached. */ | |
6502dd73 DJ |
5231 | if ((unsigned int) (abbrev_ptr - dwarf2_per_objfile->abbrev_buffer) |
5232 | >= dwarf2_per_objfile->abbrev_size) | |
c906108c SS |
5233 | break; |
5234 | abbrev_number = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read); | |
5235 | abbrev_ptr += bytes_read; | |
e7c27a73 | 5236 | if (dwarf2_lookup_abbrev (abbrev_number, cu) != NULL) |
c906108c SS |
5237 | break; |
5238 | } | |
f3dd6933 DJ |
5239 | |
5240 | xfree (cur_attrs); | |
c906108c SS |
5241 | } |
5242 | ||
f3dd6933 | 5243 | /* Release the memory used by the abbrev table for a compilation unit. */ |
c906108c | 5244 | |
c906108c | 5245 | static void |
f3dd6933 | 5246 | dwarf2_free_abbrev_table (void *ptr_to_cu) |
c906108c | 5247 | { |
f3dd6933 | 5248 | struct dwarf2_cu *cu = ptr_to_cu; |
c906108c | 5249 | |
f3dd6933 DJ |
5250 | obstack_free (&cu->abbrev_obstack, NULL); |
5251 | cu->dwarf2_abbrevs = NULL; | |
c906108c SS |
5252 | } |
5253 | ||
5254 | /* Lookup an abbrev_info structure in the abbrev hash table. */ | |
5255 | ||
5256 | static struct abbrev_info * | |
e7c27a73 | 5257 | dwarf2_lookup_abbrev (unsigned int number, struct dwarf2_cu *cu) |
c906108c SS |
5258 | { |
5259 | unsigned int hash_number; | |
5260 | struct abbrev_info *abbrev; | |
5261 | ||
5262 | hash_number = number % ABBREV_HASH_SIZE; | |
f3dd6933 | 5263 | abbrev = cu->dwarf2_abbrevs[hash_number]; |
c906108c SS |
5264 | |
5265 | while (abbrev) | |
5266 | { | |
5267 | if (abbrev->number == number) | |
5268 | return abbrev; | |
5269 | else | |
5270 | abbrev = abbrev->next; | |
5271 | } | |
5272 | return NULL; | |
5273 | } | |
5274 | ||
72bf9492 DJ |
5275 | /* Returns nonzero if TAG represents a type that we might generate a partial |
5276 | symbol for. */ | |
5277 | ||
5278 | static int | |
5279 | is_type_tag_for_partial (int tag) | |
5280 | { | |
5281 | switch (tag) | |
5282 | { | |
5283 | #if 0 | |
5284 | /* Some types that would be reasonable to generate partial symbols for, | |
5285 | that we don't at present. */ | |
5286 | case DW_TAG_array_type: | |
5287 | case DW_TAG_file_type: | |
5288 | case DW_TAG_ptr_to_member_type: | |
5289 | case DW_TAG_set_type: | |
5290 | case DW_TAG_string_type: | |
5291 | case DW_TAG_subroutine_type: | |
5292 | #endif | |
5293 | case DW_TAG_base_type: | |
5294 | case DW_TAG_class_type: | |
5295 | case DW_TAG_enumeration_type: | |
5296 | case DW_TAG_structure_type: | |
5297 | case DW_TAG_subrange_type: | |
5298 | case DW_TAG_typedef: | |
5299 | case DW_TAG_union_type: | |
5300 | return 1; | |
5301 | default: | |
5302 | return 0; | |
5303 | } | |
5304 | } | |
5305 | ||
5306 | /* Load all DIEs that are interesting for partial symbols into memory. */ | |
5307 | ||
5308 | static struct partial_die_info * | |
fe1b8b76 | 5309 | load_partial_dies (bfd *abfd, gdb_byte *info_ptr, int building_psymtab, |
72bf9492 DJ |
5310 | struct dwarf2_cu *cu) |
5311 | { | |
5312 | struct partial_die_info *part_die; | |
5313 | struct partial_die_info *parent_die, *last_die, *first_die = NULL; | |
5314 | struct abbrev_info *abbrev; | |
5315 | unsigned int bytes_read; | |
5afb4e99 | 5316 | unsigned int load_all = 0; |
72bf9492 DJ |
5317 | |
5318 | int nesting_level = 1; | |
5319 | ||
5320 | parent_die = NULL; | |
5321 | last_die = NULL; | |
5322 | ||
5afb4e99 DJ |
5323 | if (cu->per_cu && cu->per_cu->load_all_dies) |
5324 | load_all = 1; | |
5325 | ||
72bf9492 DJ |
5326 | cu->partial_dies |
5327 | = htab_create_alloc_ex (cu->header.length / 12, | |
5328 | partial_die_hash, | |
5329 | partial_die_eq, | |
5330 | NULL, | |
5331 | &cu->comp_unit_obstack, | |
5332 | hashtab_obstack_allocate, | |
5333 | dummy_obstack_deallocate); | |
5334 | ||
5335 | part_die = obstack_alloc (&cu->comp_unit_obstack, | |
5336 | sizeof (struct partial_die_info)); | |
5337 | ||
5338 | while (1) | |
5339 | { | |
5340 | abbrev = peek_die_abbrev (info_ptr, &bytes_read, cu); | |
5341 | ||
5342 | /* A NULL abbrev means the end of a series of children. */ | |
5343 | if (abbrev == NULL) | |
5344 | { | |
5345 | if (--nesting_level == 0) | |
5346 | { | |
5347 | /* PART_DIE was probably the last thing allocated on the | |
5348 | comp_unit_obstack, so we could call obstack_free | |
5349 | here. We don't do that because the waste is small, | |
5350 | and will be cleaned up when we're done with this | |
5351 | compilation unit. This way, we're also more robust | |
5352 | against other users of the comp_unit_obstack. */ | |
5353 | return first_die; | |
5354 | } | |
5355 | info_ptr += bytes_read; | |
5356 | last_die = parent_die; | |
5357 | parent_die = parent_die->die_parent; | |
5358 | continue; | |
5359 | } | |
5360 | ||
5afb4e99 DJ |
5361 | /* Check whether this DIE is interesting enough to save. Normally |
5362 | we would not be interested in members here, but there may be | |
5363 | later variables referencing them via DW_AT_specification (for | |
5364 | static members). */ | |
5365 | if (!load_all | |
5366 | && !is_type_tag_for_partial (abbrev->tag) | |
72bf9492 DJ |
5367 | && abbrev->tag != DW_TAG_enumerator |
5368 | && abbrev->tag != DW_TAG_subprogram | |
5369 | && abbrev->tag != DW_TAG_variable | |
5afb4e99 DJ |
5370 | && abbrev->tag != DW_TAG_namespace |
5371 | && abbrev->tag != DW_TAG_member) | |
72bf9492 DJ |
5372 | { |
5373 | /* Otherwise we skip to the next sibling, if any. */ | |
5374 | info_ptr = skip_one_die (info_ptr + bytes_read, abbrev, cu); | |
5375 | continue; | |
5376 | } | |
5377 | ||
5378 | info_ptr = read_partial_die (part_die, abbrev, bytes_read, | |
5379 | abfd, info_ptr, cu); | |
5380 | ||
5381 | /* This two-pass algorithm for processing partial symbols has a | |
5382 | high cost in cache pressure. Thus, handle some simple cases | |
5383 | here which cover the majority of C partial symbols. DIEs | |
5384 | which neither have specification tags in them, nor could have | |
5385 | specification tags elsewhere pointing at them, can simply be | |
5386 | processed and discarded. | |
5387 | ||
5388 | This segment is also optional; scan_partial_symbols and | |
5389 | add_partial_symbol will handle these DIEs if we chain | |
5390 | them in normally. When compilers which do not emit large | |
5391 | quantities of duplicate debug information are more common, | |
5392 | this code can probably be removed. */ | |
5393 | ||
5394 | /* Any complete simple types at the top level (pretty much all | |
5395 | of them, for a language without namespaces), can be processed | |
5396 | directly. */ | |
5397 | if (parent_die == NULL | |
5398 | && part_die->has_specification == 0 | |
5399 | && part_die->is_declaration == 0 | |
5400 | && (part_die->tag == DW_TAG_typedef | |
5401 | || part_die->tag == DW_TAG_base_type | |
5402 | || part_die->tag == DW_TAG_subrange_type)) | |
5403 | { | |
5404 | if (building_psymtab && part_die->name != NULL) | |
5405 | add_psymbol_to_list (part_die->name, strlen (part_die->name), | |
5406 | VAR_DOMAIN, LOC_TYPEDEF, | |
5407 | &cu->objfile->static_psymbols, | |
5408 | 0, (CORE_ADDR) 0, cu->language, cu->objfile); | |
5409 | info_ptr = locate_pdi_sibling (part_die, info_ptr, abfd, cu); | |
5410 | continue; | |
5411 | } | |
5412 | ||
5413 | /* If we're at the second level, and we're an enumerator, and | |
5414 | our parent has no specification (meaning possibly lives in a | |
5415 | namespace elsewhere), then we can add the partial symbol now | |
5416 | instead of queueing it. */ | |
5417 | if (part_die->tag == DW_TAG_enumerator | |
5418 | && parent_die != NULL | |
5419 | && parent_die->die_parent == NULL | |
5420 | && parent_die->tag == DW_TAG_enumeration_type | |
5421 | && parent_die->has_specification == 0) | |
5422 | { | |
5423 | if (part_die->name == NULL) | |
e2e0b3e5 | 5424 | complaint (&symfile_complaints, _("malformed enumerator DIE ignored")); |
72bf9492 DJ |
5425 | else if (building_psymtab) |
5426 | add_psymbol_to_list (part_die->name, strlen (part_die->name), | |
5427 | VAR_DOMAIN, LOC_CONST, | |
987504bb JJ |
5428 | (cu->language == language_cplus |
5429 | || cu->language == language_java) | |
72bf9492 DJ |
5430 | ? &cu->objfile->global_psymbols |
5431 | : &cu->objfile->static_psymbols, | |
5432 | 0, (CORE_ADDR) 0, cu->language, cu->objfile); | |
5433 | ||
5434 | info_ptr = locate_pdi_sibling (part_die, info_ptr, abfd, cu); | |
5435 | continue; | |
5436 | } | |
5437 | ||
5438 | /* We'll save this DIE so link it in. */ | |
5439 | part_die->die_parent = parent_die; | |
5440 | part_die->die_sibling = NULL; | |
5441 | part_die->die_child = NULL; | |
5442 | ||
5443 | if (last_die && last_die == parent_die) | |
5444 | last_die->die_child = part_die; | |
5445 | else if (last_die) | |
5446 | last_die->die_sibling = part_die; | |
5447 | ||
5448 | last_die = part_die; | |
5449 | ||
5450 | if (first_die == NULL) | |
5451 | first_die = part_die; | |
5452 | ||
5453 | /* Maybe add the DIE to the hash table. Not all DIEs that we | |
5454 | find interesting need to be in the hash table, because we | |
5455 | also have the parent/sibling/child chains; only those that we | |
5456 | might refer to by offset later during partial symbol reading. | |
5457 | ||
5458 | For now this means things that might have be the target of a | |
5459 | DW_AT_specification, DW_AT_abstract_origin, or | |
5460 | DW_AT_extension. DW_AT_extension will refer only to | |
5461 | namespaces; DW_AT_abstract_origin refers to functions (and | |
5462 | many things under the function DIE, but we do not recurse | |
5463 | into function DIEs during partial symbol reading) and | |
5464 | possibly variables as well; DW_AT_specification refers to | |
5465 | declarations. Declarations ought to have the DW_AT_declaration | |
5466 | flag. It happens that GCC forgets to put it in sometimes, but | |
5467 | only for functions, not for types. | |
5468 | ||
5469 | Adding more things than necessary to the hash table is harmless | |
5470 | except for the performance cost. Adding too few will result in | |
5afb4e99 DJ |
5471 | wasted time in find_partial_die, when we reread the compilation |
5472 | unit with load_all_dies set. */ | |
72bf9492 | 5473 | |
5afb4e99 DJ |
5474 | if (load_all |
5475 | || abbrev->tag == DW_TAG_subprogram | |
72bf9492 DJ |
5476 | || abbrev->tag == DW_TAG_variable |
5477 | || abbrev->tag == DW_TAG_namespace | |
5478 | || part_die->is_declaration) | |
5479 | { | |
5480 | void **slot; | |
5481 | ||
5482 | slot = htab_find_slot_with_hash (cu->partial_dies, part_die, | |
5483 | part_die->offset, INSERT); | |
5484 | *slot = part_die; | |
5485 | } | |
5486 | ||
5487 | part_die = obstack_alloc (&cu->comp_unit_obstack, | |
5488 | sizeof (struct partial_die_info)); | |
5489 | ||
5490 | /* For some DIEs we want to follow their children (if any). For C | |
5491 | we have no reason to follow the children of structures; for other | |
5492 | languages we have to, both so that we can get at method physnames | |
5493 | to infer fully qualified class names, and for DW_AT_specification. */ | |
5494 | if (last_die->has_children | |
5afb4e99 DJ |
5495 | && (load_all |
5496 | || last_die->tag == DW_TAG_namespace | |
72bf9492 DJ |
5497 | || last_die->tag == DW_TAG_enumeration_type |
5498 | || (cu->language != language_c | |
5499 | && (last_die->tag == DW_TAG_class_type | |
5500 | || last_die->tag == DW_TAG_structure_type | |
5501 | || last_die->tag == DW_TAG_union_type)))) | |
5502 | { | |
5503 | nesting_level++; | |
5504 | parent_die = last_die; | |
5505 | continue; | |
5506 | } | |
5507 | ||
5508 | /* Otherwise we skip to the next sibling, if any. */ | |
5509 | info_ptr = locate_pdi_sibling (last_die, info_ptr, abfd, cu); | |
5510 | ||
5511 | /* Back to the top, do it again. */ | |
5512 | } | |
5513 | } | |
5514 | ||
c906108c SS |
5515 | /* Read a minimal amount of information into the minimal die structure. */ |
5516 | ||
fe1b8b76 | 5517 | static gdb_byte * |
72bf9492 DJ |
5518 | read_partial_die (struct partial_die_info *part_die, |
5519 | struct abbrev_info *abbrev, | |
5520 | unsigned int abbrev_len, bfd *abfd, | |
fe1b8b76 | 5521 | gdb_byte *info_ptr, struct dwarf2_cu *cu) |
c906108c | 5522 | { |
72bf9492 | 5523 | unsigned int bytes_read, i; |
c906108c | 5524 | struct attribute attr; |
c5aa993b | 5525 | int has_low_pc_attr = 0; |
c906108c SS |
5526 | int has_high_pc_attr = 0; |
5527 | ||
72bf9492 | 5528 | memset (part_die, 0, sizeof (struct partial_die_info)); |
c906108c | 5529 | |
6502dd73 | 5530 | part_die->offset = info_ptr - dwarf2_per_objfile->info_buffer; |
72bf9492 DJ |
5531 | |
5532 | info_ptr += abbrev_len; | |
5533 | ||
5534 | if (abbrev == NULL) | |
5535 | return info_ptr; | |
5536 | ||
c906108c SS |
5537 | part_die->tag = abbrev->tag; |
5538 | part_die->has_children = abbrev->has_children; | |
c906108c SS |
5539 | |
5540 | for (i = 0; i < abbrev->num_attrs; ++i) | |
5541 | { | |
e7c27a73 | 5542 | info_ptr = read_attribute (&attr, &abbrev->attrs[i], abfd, info_ptr, cu); |
c906108c SS |
5543 | |
5544 | /* Store the data if it is of an attribute we want to keep in a | |
c5aa993b | 5545 | partial symbol table. */ |
c906108c SS |
5546 | switch (attr.name) |
5547 | { | |
5548 | case DW_AT_name: | |
5549 | ||
5550 | /* Prefer DW_AT_MIPS_linkage_name over DW_AT_name. */ | |
5551 | if (part_die->name == NULL) | |
5552 | part_die->name = DW_STRING (&attr); | |
5553 | break; | |
57c22c6c BR |
5554 | case DW_AT_comp_dir: |
5555 | if (part_die->dirname == NULL) | |
5556 | part_die->dirname = DW_STRING (&attr); | |
5557 | break; | |
c906108c SS |
5558 | case DW_AT_MIPS_linkage_name: |
5559 | part_die->name = DW_STRING (&attr); | |
5560 | break; | |
5561 | case DW_AT_low_pc: | |
5562 | has_low_pc_attr = 1; | |
5563 | part_die->lowpc = DW_ADDR (&attr); | |
5564 | break; | |
5565 | case DW_AT_high_pc: | |
5566 | has_high_pc_attr = 1; | |
5567 | part_die->highpc = DW_ADDR (&attr); | |
5568 | break; | |
5569 | case DW_AT_location: | |
8e19ed76 PS |
5570 | /* Support the .debug_loc offsets */ |
5571 | if (attr_form_is_block (&attr)) | |
5572 | { | |
5573 | part_die->locdesc = DW_BLOCK (&attr); | |
5574 | } | |
5575 | else if (attr.form == DW_FORM_data4 || attr.form == DW_FORM_data8) | |
5576 | { | |
4d3c2250 | 5577 | dwarf2_complex_location_expr_complaint (); |
8e19ed76 PS |
5578 | } |
5579 | else | |
5580 | { | |
4d3c2250 KB |
5581 | dwarf2_invalid_attrib_class_complaint ("DW_AT_location", |
5582 | "partial symbol information"); | |
8e19ed76 | 5583 | } |
c906108c SS |
5584 | break; |
5585 | case DW_AT_language: | |
5586 | part_die->language = DW_UNSND (&attr); | |
5587 | break; | |
5588 | case DW_AT_external: | |
5589 | part_die->is_external = DW_UNSND (&attr); | |
5590 | break; | |
5591 | case DW_AT_declaration: | |
5592 | part_die->is_declaration = DW_UNSND (&attr); | |
5593 | break; | |
5594 | case DW_AT_type: | |
5595 | part_die->has_type = 1; | |
5596 | break; | |
5597 | case DW_AT_abstract_origin: | |
5598 | case DW_AT_specification: | |
72bf9492 DJ |
5599 | case DW_AT_extension: |
5600 | part_die->has_specification = 1; | |
5601 | part_die->spec_offset = dwarf2_get_ref_die_offset (&attr, cu); | |
c906108c SS |
5602 | break; |
5603 | case DW_AT_sibling: | |
5604 | /* Ignore absolute siblings, they might point outside of | |
5605 | the current compile unit. */ | |
5606 | if (attr.form == DW_FORM_ref_addr) | |
e2e0b3e5 | 5607 | complaint (&symfile_complaints, _("ignoring absolute DW_AT_sibling")); |
c906108c | 5608 | else |
6502dd73 DJ |
5609 | part_die->sibling = dwarf2_per_objfile->info_buffer |
5610 | + dwarf2_get_ref_die_offset (&attr, cu); | |
c906108c | 5611 | break; |
aaa75496 JB |
5612 | case DW_AT_stmt_list: |
5613 | part_die->has_stmt_list = 1; | |
5614 | part_die->line_offset = DW_UNSND (&attr); | |
5615 | break; | |
fa4028e9 JB |
5616 | case DW_AT_byte_size: |
5617 | part_die->has_byte_size = 1; | |
5618 | break; | |
c906108c SS |
5619 | default: |
5620 | break; | |
5621 | } | |
5622 | } | |
5623 | ||
c906108c SS |
5624 | /* When using the GNU linker, .gnu.linkonce. sections are used to |
5625 | eliminate duplicate copies of functions and vtables and such. | |
5626 | The linker will arbitrarily choose one and discard the others. | |
5627 | The AT_*_pc values for such functions refer to local labels in | |
5628 | these sections. If the section from that file was discarded, the | |
5629 | labels are not in the output, so the relocs get a value of 0. | |
5630 | If this is a discarded function, mark the pc bounds as invalid, | |
5631 | so that GDB will ignore it. */ | |
5632 | if (has_low_pc_attr && has_high_pc_attr | |
5633 | && part_die->lowpc < part_die->highpc | |
5634 | && (part_die->lowpc != 0 | |
72dca2f5 | 5635 | || dwarf2_per_objfile->has_section_at_zero)) |
0b010bcc | 5636 | part_die->has_pc_info = 1; |
c906108c SS |
5637 | return info_ptr; |
5638 | } | |
5639 | ||
72bf9492 DJ |
5640 | /* Find a cached partial DIE at OFFSET in CU. */ |
5641 | ||
5642 | static struct partial_die_info * | |
5643 | find_partial_die_in_comp_unit (unsigned long offset, struct dwarf2_cu *cu) | |
5644 | { | |
5645 | struct partial_die_info *lookup_die = NULL; | |
5646 | struct partial_die_info part_die; | |
5647 | ||
5648 | part_die.offset = offset; | |
5649 | lookup_die = htab_find_with_hash (cu->partial_dies, &part_die, offset); | |
5650 | ||
72bf9492 DJ |
5651 | return lookup_die; |
5652 | } | |
5653 | ||
5654 | /* Find a partial DIE at OFFSET, which may or may not be in CU. */ | |
5655 | ||
5656 | static struct partial_die_info * | |
10b3939b | 5657 | find_partial_die (unsigned long offset, struct dwarf2_cu *cu) |
72bf9492 | 5658 | { |
5afb4e99 DJ |
5659 | struct dwarf2_per_cu_data *per_cu = NULL; |
5660 | struct partial_die_info *pd = NULL; | |
72bf9492 DJ |
5661 | |
5662 | if (offset >= cu->header.offset | |
5663 | && offset < cu->header.offset + cu->header.length) | |
5afb4e99 DJ |
5664 | { |
5665 | pd = find_partial_die_in_comp_unit (offset, cu); | |
5666 | if (pd != NULL) | |
5667 | return pd; | |
5668 | } | |
72bf9492 | 5669 | |
ae038cb0 DJ |
5670 | per_cu = dwarf2_find_containing_comp_unit (offset, cu->objfile); |
5671 | ||
ae038cb0 DJ |
5672 | if (per_cu->cu == NULL) |
5673 | { | |
5674 | load_comp_unit (per_cu, cu->objfile); | |
5675 | per_cu->cu->read_in_chain = dwarf2_per_objfile->read_in_chain; | |
5676 | dwarf2_per_objfile->read_in_chain = per_cu; | |
5677 | } | |
5678 | ||
5679 | per_cu->cu->last_used = 0; | |
5afb4e99 DJ |
5680 | pd = find_partial_die_in_comp_unit (offset, per_cu->cu); |
5681 | ||
5682 | if (pd == NULL && per_cu->load_all_dies == 0) | |
5683 | { | |
5684 | struct cleanup *back_to; | |
5685 | struct partial_die_info comp_unit_die; | |
5686 | struct abbrev_info *abbrev; | |
5687 | unsigned int bytes_read; | |
5688 | char *info_ptr; | |
5689 | ||
5690 | per_cu->load_all_dies = 1; | |
5691 | ||
5692 | /* Re-read the DIEs. */ | |
5693 | back_to = make_cleanup (null_cleanup, 0); | |
5694 | if (per_cu->cu->dwarf2_abbrevs == NULL) | |
5695 | { | |
5696 | dwarf2_read_abbrevs (per_cu->cu->objfile->obfd, per_cu->cu); | |
5697 | back_to = make_cleanup (dwarf2_free_abbrev_table, per_cu->cu); | |
5698 | } | |
5699 | info_ptr = per_cu->cu->header.first_die_ptr; | |
5700 | abbrev = peek_die_abbrev (info_ptr, &bytes_read, per_cu->cu); | |
5701 | info_ptr = read_partial_die (&comp_unit_die, abbrev, bytes_read, | |
5702 | per_cu->cu->objfile->obfd, info_ptr, | |
5703 | per_cu->cu); | |
5704 | if (comp_unit_die.has_children) | |
5705 | load_partial_dies (per_cu->cu->objfile->obfd, info_ptr, 0, per_cu->cu); | |
5706 | do_cleanups (back_to); | |
5707 | ||
5708 | pd = find_partial_die_in_comp_unit (offset, per_cu->cu); | |
5709 | } | |
5710 | ||
5711 | if (pd == NULL) | |
5712 | internal_error (__FILE__, __LINE__, | |
5713 | _("could not find partial DIE 0x%lx in cache [from module %s]\n"), | |
5714 | offset, bfd_get_filename (cu->objfile->obfd)); | |
5715 | return pd; | |
72bf9492 DJ |
5716 | } |
5717 | ||
5718 | /* Adjust PART_DIE before generating a symbol for it. This function | |
5719 | may set the is_external flag or change the DIE's name. */ | |
5720 | ||
5721 | static void | |
5722 | fixup_partial_die (struct partial_die_info *part_die, | |
5723 | struct dwarf2_cu *cu) | |
5724 | { | |
5725 | /* If we found a reference attribute and the DIE has no name, try | |
5726 | to find a name in the referred to DIE. */ | |
5727 | ||
5728 | if (part_die->name == NULL && part_die->has_specification) | |
5729 | { | |
5730 | struct partial_die_info *spec_die; | |
72bf9492 | 5731 | |
10b3939b | 5732 | spec_die = find_partial_die (part_die->spec_offset, cu); |
72bf9492 | 5733 | |
10b3939b | 5734 | fixup_partial_die (spec_die, cu); |
72bf9492 DJ |
5735 | |
5736 | if (spec_die->name) | |
5737 | { | |
5738 | part_die->name = spec_die->name; | |
5739 | ||
5740 | /* Copy DW_AT_external attribute if it is set. */ | |
5741 | if (spec_die->is_external) | |
5742 | part_die->is_external = spec_die->is_external; | |
5743 | } | |
5744 | } | |
5745 | ||
5746 | /* Set default names for some unnamed DIEs. */ | |
5747 | if (part_die->name == NULL && (part_die->tag == DW_TAG_structure_type | |
5748 | || part_die->tag == DW_TAG_class_type)) | |
5749 | part_die->name = "(anonymous class)"; | |
5750 | ||
5751 | if (part_die->name == NULL && part_die->tag == DW_TAG_namespace) | |
5752 | part_die->name = "(anonymous namespace)"; | |
5753 | ||
5754 | if (part_die->tag == DW_TAG_structure_type | |
5755 | || part_die->tag == DW_TAG_class_type | |
5756 | || part_die->tag == DW_TAG_union_type) | |
5757 | guess_structure_name (part_die, cu); | |
5758 | } | |
5759 | ||
639d11d3 DC |
5760 | /* Read the die from the .debug_info section buffer. Set DIEP to |
5761 | point to a newly allocated die with its information, except for its | |
5762 | child, sibling, and parent fields. Set HAS_CHILDREN to tell | |
5763 | whether the die has children or not. */ | |
c906108c | 5764 | |
fe1b8b76 JB |
5765 | static gdb_byte * |
5766 | read_full_die (struct die_info **diep, bfd *abfd, gdb_byte *info_ptr, | |
e7c27a73 | 5767 | struct dwarf2_cu *cu, int *has_children) |
c906108c SS |
5768 | { |
5769 | unsigned int abbrev_number, bytes_read, i, offset; | |
5770 | struct abbrev_info *abbrev; | |
5771 | struct die_info *die; | |
5772 | ||
6502dd73 | 5773 | offset = info_ptr - dwarf2_per_objfile->info_buffer; |
c906108c SS |
5774 | abbrev_number = read_unsigned_leb128 (abfd, info_ptr, &bytes_read); |
5775 | info_ptr += bytes_read; | |
5776 | if (!abbrev_number) | |
5777 | { | |
5778 | die = dwarf_alloc_die (); | |
5779 | die->tag = 0; | |
5780 | die->abbrev = abbrev_number; | |
5781 | die->type = NULL; | |
5782 | *diep = die; | |
639d11d3 | 5783 | *has_children = 0; |
c906108c SS |
5784 | return info_ptr; |
5785 | } | |
5786 | ||
e7c27a73 | 5787 | abbrev = dwarf2_lookup_abbrev (abbrev_number, cu); |
c906108c SS |
5788 | if (!abbrev) |
5789 | { | |
8a3fe4f8 | 5790 | error (_("Dwarf Error: could not find abbrev number %d [in module %s]"), |
72bf9492 | 5791 | abbrev_number, |
639d11d3 | 5792 | bfd_get_filename (abfd)); |
c906108c SS |
5793 | } |
5794 | die = dwarf_alloc_die (); | |
5795 | die->offset = offset; | |
5796 | die->tag = abbrev->tag; | |
c906108c SS |
5797 | die->abbrev = abbrev_number; |
5798 | die->type = NULL; | |
5799 | ||
5800 | die->num_attrs = abbrev->num_attrs; | |
5801 | die->attrs = (struct attribute *) | |
5802 | xmalloc (die->num_attrs * sizeof (struct attribute)); | |
5803 | ||
5804 | for (i = 0; i < abbrev->num_attrs; ++i) | |
5805 | { | |
5806 | info_ptr = read_attribute (&die->attrs[i], &abbrev->attrs[i], | |
e7c27a73 | 5807 | abfd, info_ptr, cu); |
10b3939b DJ |
5808 | |
5809 | /* If this attribute is an absolute reference to a different | |
5810 | compilation unit, make sure that compilation unit is loaded | |
5811 | also. */ | |
5812 | if (die->attrs[i].form == DW_FORM_ref_addr | |
5813 | && (DW_ADDR (&die->attrs[i]) < cu->header.offset | |
5814 | || (DW_ADDR (&die->attrs[i]) | |
5815 | >= cu->header.offset + cu->header.length))) | |
5816 | { | |
5817 | struct dwarf2_per_cu_data *per_cu; | |
5818 | per_cu = dwarf2_find_containing_comp_unit (DW_ADDR (&die->attrs[i]), | |
5819 | cu->objfile); | |
5820 | ||
5821 | /* Mark the dependence relation so that we don't flush PER_CU | |
5822 | too early. */ | |
5823 | dwarf2_add_dependence (cu, per_cu); | |
5824 | ||
5825 | /* If it's already on the queue, we have nothing to do. */ | |
5826 | if (per_cu->queued) | |
5827 | continue; | |
5828 | ||
5829 | /* If the compilation unit is already loaded, just mark it as | |
5830 | used. */ | |
5831 | if (per_cu->cu != NULL) | |
5832 | { | |
5833 | per_cu->cu->last_used = 0; | |
5834 | continue; | |
5835 | } | |
5836 | ||
5837 | /* Add it to the queue. */ | |
5838 | queue_comp_unit (per_cu); | |
5839 | } | |
c906108c SS |
5840 | } |
5841 | ||
5842 | *diep = die; | |
639d11d3 | 5843 | *has_children = abbrev->has_children; |
c906108c SS |
5844 | return info_ptr; |
5845 | } | |
5846 | ||
a8329558 | 5847 | /* Read an attribute value described by an attribute form. */ |
c906108c | 5848 | |
fe1b8b76 | 5849 | static gdb_byte * |
a8329558 | 5850 | read_attribute_value (struct attribute *attr, unsigned form, |
fe1b8b76 | 5851 | bfd *abfd, gdb_byte *info_ptr, |
e7c27a73 | 5852 | struct dwarf2_cu *cu) |
c906108c | 5853 | { |
e7c27a73 | 5854 | struct comp_unit_head *cu_header = &cu->header; |
c906108c SS |
5855 | unsigned int bytes_read; |
5856 | struct dwarf_block *blk; | |
5857 | ||
a8329558 KW |
5858 | attr->form = form; |
5859 | switch (form) | |
c906108c SS |
5860 | { |
5861 | case DW_FORM_addr: | |
5862 | case DW_FORM_ref_addr: | |
e7c27a73 | 5863 | DW_ADDR (attr) = read_address (abfd, info_ptr, cu, &bytes_read); |
107d2387 | 5864 | info_ptr += bytes_read; |
c906108c SS |
5865 | break; |
5866 | case DW_FORM_block2: | |
7b5a2f43 | 5867 | blk = dwarf_alloc_block (cu); |
c906108c SS |
5868 | blk->size = read_2_bytes (abfd, info_ptr); |
5869 | info_ptr += 2; | |
5870 | blk->data = read_n_bytes (abfd, info_ptr, blk->size); | |
5871 | info_ptr += blk->size; | |
5872 | DW_BLOCK (attr) = blk; | |
5873 | break; | |
5874 | case DW_FORM_block4: | |
7b5a2f43 | 5875 | blk = dwarf_alloc_block (cu); |
c906108c SS |
5876 | blk->size = read_4_bytes (abfd, info_ptr); |
5877 | info_ptr += 4; | |
5878 | blk->data = read_n_bytes (abfd, info_ptr, blk->size); | |
5879 | info_ptr += blk->size; | |
5880 | DW_BLOCK (attr) = blk; | |
5881 | break; | |
5882 | case DW_FORM_data2: | |
5883 | DW_UNSND (attr) = read_2_bytes (abfd, info_ptr); | |
5884 | info_ptr += 2; | |
5885 | break; | |
5886 | case DW_FORM_data4: | |
5887 | DW_UNSND (attr) = read_4_bytes (abfd, info_ptr); | |
5888 | info_ptr += 4; | |
5889 | break; | |
5890 | case DW_FORM_data8: | |
5891 | DW_UNSND (attr) = read_8_bytes (abfd, info_ptr); | |
5892 | info_ptr += 8; | |
5893 | break; | |
5894 | case DW_FORM_string: | |
5895 | DW_STRING (attr) = read_string (abfd, info_ptr, &bytes_read); | |
5896 | info_ptr += bytes_read; | |
5897 | break; | |
4bdf3d34 JJ |
5898 | case DW_FORM_strp: |
5899 | DW_STRING (attr) = read_indirect_string (abfd, info_ptr, cu_header, | |
5900 | &bytes_read); | |
5901 | info_ptr += bytes_read; | |
5902 | break; | |
c906108c | 5903 | case DW_FORM_block: |
7b5a2f43 | 5904 | blk = dwarf_alloc_block (cu); |
c906108c SS |
5905 | blk->size = read_unsigned_leb128 (abfd, info_ptr, &bytes_read); |
5906 | info_ptr += bytes_read; | |
5907 | blk->data = read_n_bytes (abfd, info_ptr, blk->size); | |
5908 | info_ptr += blk->size; | |
5909 | DW_BLOCK (attr) = blk; | |
5910 | break; | |
5911 | case DW_FORM_block1: | |
7b5a2f43 | 5912 | blk = dwarf_alloc_block (cu); |
c906108c SS |
5913 | blk->size = read_1_byte (abfd, info_ptr); |
5914 | info_ptr += 1; | |
5915 | blk->data = read_n_bytes (abfd, info_ptr, blk->size); | |
5916 | info_ptr += blk->size; | |
5917 | DW_BLOCK (attr) = blk; | |
5918 | break; | |
5919 | case DW_FORM_data1: | |
5920 | DW_UNSND (attr) = read_1_byte (abfd, info_ptr); | |
5921 | info_ptr += 1; | |
5922 | break; | |
5923 | case DW_FORM_flag: | |
5924 | DW_UNSND (attr) = read_1_byte (abfd, info_ptr); | |
5925 | info_ptr += 1; | |
5926 | break; | |
5927 | case DW_FORM_sdata: | |
5928 | DW_SND (attr) = read_signed_leb128 (abfd, info_ptr, &bytes_read); | |
5929 | info_ptr += bytes_read; | |
5930 | break; | |
5931 | case DW_FORM_udata: | |
5932 | DW_UNSND (attr) = read_unsigned_leb128 (abfd, info_ptr, &bytes_read); | |
5933 | info_ptr += bytes_read; | |
5934 | break; | |
5935 | case DW_FORM_ref1: | |
10b3939b | 5936 | DW_ADDR (attr) = cu->header.offset + read_1_byte (abfd, info_ptr); |
c906108c SS |
5937 | info_ptr += 1; |
5938 | break; | |
5939 | case DW_FORM_ref2: | |
10b3939b | 5940 | DW_ADDR (attr) = cu->header.offset + read_2_bytes (abfd, info_ptr); |
c906108c SS |
5941 | info_ptr += 2; |
5942 | break; | |
5943 | case DW_FORM_ref4: | |
10b3939b | 5944 | DW_ADDR (attr) = cu->header.offset + read_4_bytes (abfd, info_ptr); |
c906108c SS |
5945 | info_ptr += 4; |
5946 | break; | |
613e1657 | 5947 | case DW_FORM_ref8: |
10b3939b | 5948 | DW_ADDR (attr) = cu->header.offset + read_8_bytes (abfd, info_ptr); |
613e1657 KB |
5949 | info_ptr += 8; |
5950 | break; | |
c906108c | 5951 | case DW_FORM_ref_udata: |
10b3939b DJ |
5952 | DW_ADDR (attr) = (cu->header.offset |
5953 | + read_unsigned_leb128 (abfd, info_ptr, &bytes_read)); | |
c906108c SS |
5954 | info_ptr += bytes_read; |
5955 | break; | |
c906108c | 5956 | case DW_FORM_indirect: |
a8329558 KW |
5957 | form = read_unsigned_leb128 (abfd, info_ptr, &bytes_read); |
5958 | info_ptr += bytes_read; | |
e7c27a73 | 5959 | info_ptr = read_attribute_value (attr, form, abfd, info_ptr, cu); |
a8329558 | 5960 | break; |
c906108c | 5961 | default: |
8a3fe4f8 | 5962 | error (_("Dwarf Error: Cannot handle %s in DWARF reader [in module %s]"), |
659b0389 ML |
5963 | dwarf_form_name (form), |
5964 | bfd_get_filename (abfd)); | |
c906108c SS |
5965 | } |
5966 | return info_ptr; | |
5967 | } | |
5968 | ||
a8329558 KW |
5969 | /* Read an attribute described by an abbreviated attribute. */ |
5970 | ||
fe1b8b76 | 5971 | static gdb_byte * |
a8329558 | 5972 | read_attribute (struct attribute *attr, struct attr_abbrev *abbrev, |
fe1b8b76 | 5973 | bfd *abfd, gdb_byte *info_ptr, struct dwarf2_cu *cu) |
a8329558 KW |
5974 | { |
5975 | attr->name = abbrev->name; | |
e7c27a73 | 5976 | return read_attribute_value (attr, abbrev->form, abfd, info_ptr, cu); |
a8329558 KW |
5977 | } |
5978 | ||
c906108c SS |
5979 | /* read dwarf information from a buffer */ |
5980 | ||
5981 | static unsigned int | |
fe1b8b76 | 5982 | read_1_byte (bfd *abfd, gdb_byte *buf) |
c906108c | 5983 | { |
fe1b8b76 | 5984 | return bfd_get_8 (abfd, buf); |
c906108c SS |
5985 | } |
5986 | ||
5987 | static int | |
fe1b8b76 | 5988 | read_1_signed_byte (bfd *abfd, gdb_byte *buf) |
c906108c | 5989 | { |
fe1b8b76 | 5990 | return bfd_get_signed_8 (abfd, buf); |
c906108c SS |
5991 | } |
5992 | ||
5993 | static unsigned int | |
fe1b8b76 | 5994 | read_2_bytes (bfd *abfd, gdb_byte *buf) |
c906108c | 5995 | { |
fe1b8b76 | 5996 | return bfd_get_16 (abfd, buf); |
c906108c SS |
5997 | } |
5998 | ||
5999 | static int | |
fe1b8b76 | 6000 | read_2_signed_bytes (bfd *abfd, gdb_byte *buf) |
c906108c | 6001 | { |
fe1b8b76 | 6002 | return bfd_get_signed_16 (abfd, buf); |
c906108c SS |
6003 | } |
6004 | ||
6005 | static unsigned int | |
fe1b8b76 | 6006 | read_4_bytes (bfd *abfd, gdb_byte *buf) |
c906108c | 6007 | { |
fe1b8b76 | 6008 | return bfd_get_32 (abfd, buf); |
c906108c SS |
6009 | } |
6010 | ||
6011 | static int | |
fe1b8b76 | 6012 | read_4_signed_bytes (bfd *abfd, gdb_byte *buf) |
c906108c | 6013 | { |
fe1b8b76 | 6014 | return bfd_get_signed_32 (abfd, buf); |
c906108c SS |
6015 | } |
6016 | ||
ce5d95e1 | 6017 | static unsigned long |
fe1b8b76 | 6018 | read_8_bytes (bfd *abfd, gdb_byte *buf) |
c906108c | 6019 | { |
fe1b8b76 | 6020 | return bfd_get_64 (abfd, buf); |
c906108c SS |
6021 | } |
6022 | ||
6023 | static CORE_ADDR | |
fe1b8b76 | 6024 | read_address (bfd *abfd, gdb_byte *buf, struct dwarf2_cu *cu, |
891d2f0b | 6025 | unsigned int *bytes_read) |
c906108c | 6026 | { |
e7c27a73 | 6027 | struct comp_unit_head *cu_header = &cu->header; |
c906108c SS |
6028 | CORE_ADDR retval = 0; |
6029 | ||
107d2387 | 6030 | if (cu_header->signed_addr_p) |
c906108c | 6031 | { |
107d2387 AC |
6032 | switch (cu_header->addr_size) |
6033 | { | |
6034 | case 2: | |
fe1b8b76 | 6035 | retval = bfd_get_signed_16 (abfd, buf); |
107d2387 AC |
6036 | break; |
6037 | case 4: | |
fe1b8b76 | 6038 | retval = bfd_get_signed_32 (abfd, buf); |
107d2387 AC |
6039 | break; |
6040 | case 8: | |
fe1b8b76 | 6041 | retval = bfd_get_signed_64 (abfd, buf); |
107d2387 AC |
6042 | break; |
6043 | default: | |
8e65ff28 | 6044 | internal_error (__FILE__, __LINE__, |
e2e0b3e5 | 6045 | _("read_address: bad switch, signed [in module %s]"), |
659b0389 | 6046 | bfd_get_filename (abfd)); |
107d2387 AC |
6047 | } |
6048 | } | |
6049 | else | |
6050 | { | |
6051 | switch (cu_header->addr_size) | |
6052 | { | |
6053 | case 2: | |
fe1b8b76 | 6054 | retval = bfd_get_16 (abfd, buf); |
107d2387 AC |
6055 | break; |
6056 | case 4: | |
fe1b8b76 | 6057 | retval = bfd_get_32 (abfd, buf); |
107d2387 AC |
6058 | break; |
6059 | case 8: | |
fe1b8b76 | 6060 | retval = bfd_get_64 (abfd, buf); |
107d2387 AC |
6061 | break; |
6062 | default: | |
8e65ff28 | 6063 | internal_error (__FILE__, __LINE__, |
e2e0b3e5 | 6064 | _("read_address: bad switch, unsigned [in module %s]"), |
659b0389 | 6065 | bfd_get_filename (abfd)); |
107d2387 | 6066 | } |
c906108c | 6067 | } |
64367e0a | 6068 | |
107d2387 AC |
6069 | *bytes_read = cu_header->addr_size; |
6070 | return retval; | |
c906108c SS |
6071 | } |
6072 | ||
f7ef9339 | 6073 | /* Read the initial length from a section. The (draft) DWARF 3 |
613e1657 KB |
6074 | specification allows the initial length to take up either 4 bytes |
6075 | or 12 bytes. If the first 4 bytes are 0xffffffff, then the next 8 | |
6076 | bytes describe the length and all offsets will be 8 bytes in length | |
6077 | instead of 4. | |
6078 | ||
f7ef9339 KB |
6079 | An older, non-standard 64-bit format is also handled by this |
6080 | function. The older format in question stores the initial length | |
6081 | as an 8-byte quantity without an escape value. Lengths greater | |
6082 | than 2^32 aren't very common which means that the initial 4 bytes | |
6083 | is almost always zero. Since a length value of zero doesn't make | |
6084 | sense for the 32-bit format, this initial zero can be considered to | |
6085 | be an escape value which indicates the presence of the older 64-bit | |
6086 | format. As written, the code can't detect (old format) lengths | |
917c78fc MK |
6087 | greater than 4GB. If it becomes necessary to handle lengths |
6088 | somewhat larger than 4GB, we could allow other small values (such | |
6089 | as the non-sensical values of 1, 2, and 3) to also be used as | |
6090 | escape values indicating the presence of the old format. | |
f7ef9339 | 6091 | |
917c78fc MK |
6092 | The value returned via bytes_read should be used to increment the |
6093 | relevant pointer after calling read_initial_length(). | |
613e1657 KB |
6094 | |
6095 | As a side effect, this function sets the fields initial_length_size | |
6096 | and offset_size in cu_header to the values appropriate for the | |
6097 | length field. (The format of the initial length field determines | |
dd373385 | 6098 | the width of file offsets to be fetched later with read_offset().) |
613e1657 KB |
6099 | |
6100 | [ Note: read_initial_length() and read_offset() are based on the | |
6101 | document entitled "DWARF Debugging Information Format", revision | |
f7ef9339 | 6102 | 3, draft 8, dated November 19, 2001. This document was obtained |
613e1657 KB |
6103 | from: |
6104 | ||
f7ef9339 | 6105 | http://reality.sgiweb.org/davea/dwarf3-draft8-011125.pdf |
613e1657 KB |
6106 | |
6107 | This document is only a draft and is subject to change. (So beware.) | |
6108 | ||
f7ef9339 | 6109 | Details regarding the older, non-standard 64-bit format were |
917c78fc MK |
6110 | determined empirically by examining 64-bit ELF files produced by |
6111 | the SGI toolchain on an IRIX 6.5 machine. | |
f7ef9339 KB |
6112 | |
6113 | - Kevin, July 16, 2002 | |
613e1657 KB |
6114 | ] */ |
6115 | ||
6116 | static LONGEST | |
fe1b8b76 | 6117 | read_initial_length (bfd *abfd, gdb_byte *buf, struct comp_unit_head *cu_header, |
891d2f0b | 6118 | unsigned int *bytes_read) |
613e1657 | 6119 | { |
fe1b8b76 | 6120 | LONGEST length = bfd_get_32 (abfd, buf); |
613e1657 | 6121 | |
dd373385 | 6122 | if (length == 0xffffffff) |
613e1657 | 6123 | { |
fe1b8b76 | 6124 | length = bfd_get_64 (abfd, buf + 4); |
613e1657 | 6125 | *bytes_read = 12; |
613e1657 | 6126 | } |
dd373385 | 6127 | else if (length == 0) |
f7ef9339 | 6128 | { |
dd373385 | 6129 | /* Handle the (non-standard) 64-bit DWARF2 format used by IRIX. */ |
fe1b8b76 | 6130 | length = bfd_get_64 (abfd, buf); |
f7ef9339 | 6131 | *bytes_read = 8; |
f7ef9339 | 6132 | } |
613e1657 KB |
6133 | else |
6134 | { | |
6135 | *bytes_read = 4; | |
613e1657 KB |
6136 | } |
6137 | ||
dd373385 EZ |
6138 | if (cu_header) |
6139 | { | |
6140 | gdb_assert (cu_header->initial_length_size == 0 | |
6141 | || cu_header->initial_length_size == 4 | |
6142 | || cu_header->initial_length_size == 8 | |
6143 | || cu_header->initial_length_size == 12); | |
6144 | ||
6145 | if (cu_header->initial_length_size != 0 | |
6146 | && cu_header->initial_length_size != *bytes_read) | |
6147 | complaint (&symfile_complaints, | |
6148 | _("intermixed 32-bit and 64-bit DWARF sections")); | |
6149 | ||
6150 | cu_header->initial_length_size = *bytes_read; | |
6151 | cu_header->offset_size = (*bytes_read == 4) ? 4 : 8; | |
6152 | } | |
6153 | ||
6154 | return length; | |
613e1657 KB |
6155 | } |
6156 | ||
6157 | /* Read an offset from the data stream. The size of the offset is | |
917c78fc | 6158 | given by cu_header->offset_size. */ |
613e1657 KB |
6159 | |
6160 | static LONGEST | |
fe1b8b76 | 6161 | read_offset (bfd *abfd, gdb_byte *buf, const struct comp_unit_head *cu_header, |
891d2f0b | 6162 | unsigned int *bytes_read) |
613e1657 KB |
6163 | { |
6164 | LONGEST retval = 0; | |
6165 | ||
6166 | switch (cu_header->offset_size) | |
6167 | { | |
6168 | case 4: | |
fe1b8b76 | 6169 | retval = bfd_get_32 (abfd, buf); |
613e1657 KB |
6170 | *bytes_read = 4; |
6171 | break; | |
6172 | case 8: | |
fe1b8b76 | 6173 | retval = bfd_get_64 (abfd, buf); |
613e1657 KB |
6174 | *bytes_read = 8; |
6175 | break; | |
6176 | default: | |
8e65ff28 | 6177 | internal_error (__FILE__, __LINE__, |
e2e0b3e5 | 6178 | _("read_offset: bad switch [in module %s]"), |
659b0389 | 6179 | bfd_get_filename (abfd)); |
613e1657 KB |
6180 | } |
6181 | ||
917c78fc | 6182 | return retval; |
613e1657 KB |
6183 | } |
6184 | ||
fe1b8b76 JB |
6185 | static gdb_byte * |
6186 | read_n_bytes (bfd *abfd, gdb_byte *buf, unsigned int size) | |
c906108c SS |
6187 | { |
6188 | /* If the size of a host char is 8 bits, we can return a pointer | |
6189 | to the buffer, otherwise we have to copy the data to a buffer | |
6190 | allocated on the temporary obstack. */ | |
4bdf3d34 | 6191 | gdb_assert (HOST_CHAR_BIT == 8); |
c906108c | 6192 | return buf; |
c906108c SS |
6193 | } |
6194 | ||
6195 | static char * | |
fe1b8b76 | 6196 | read_string (bfd *abfd, gdb_byte *buf, unsigned int *bytes_read_ptr) |
c906108c SS |
6197 | { |
6198 | /* If the size of a host char is 8 bits, we can return a pointer | |
6199 | to the string, otherwise we have to copy the string to a buffer | |
6200 | allocated on the temporary obstack. */ | |
4bdf3d34 | 6201 | gdb_assert (HOST_CHAR_BIT == 8); |
c906108c SS |
6202 | if (*buf == '\0') |
6203 | { | |
6204 | *bytes_read_ptr = 1; | |
6205 | return NULL; | |
6206 | } | |
fe1b8b76 JB |
6207 | *bytes_read_ptr = strlen ((char *) buf) + 1; |
6208 | return (char *) buf; | |
4bdf3d34 JJ |
6209 | } |
6210 | ||
6211 | static char * | |
fe1b8b76 | 6212 | read_indirect_string (bfd *abfd, gdb_byte *buf, |
4bdf3d34 JJ |
6213 | const struct comp_unit_head *cu_header, |
6214 | unsigned int *bytes_read_ptr) | |
6215 | { | |
6216 | LONGEST str_offset = read_offset (abfd, buf, cu_header, | |
891d2f0b | 6217 | bytes_read_ptr); |
c906108c | 6218 | |
6502dd73 | 6219 | if (dwarf2_per_objfile->str_buffer == NULL) |
c906108c | 6220 | { |
8a3fe4f8 | 6221 | error (_("DW_FORM_strp used without .debug_str section [in module %s]"), |
659b0389 | 6222 | bfd_get_filename (abfd)); |
4bdf3d34 | 6223 | return NULL; |
c906108c | 6224 | } |
6502dd73 | 6225 | if (str_offset >= dwarf2_per_objfile->str_size) |
c906108c | 6226 | { |
8a3fe4f8 | 6227 | error (_("DW_FORM_strp pointing outside of .debug_str section [in module %s]"), |
659b0389 | 6228 | bfd_get_filename (abfd)); |
c906108c SS |
6229 | return NULL; |
6230 | } | |
4bdf3d34 | 6231 | gdb_assert (HOST_CHAR_BIT == 8); |
6502dd73 | 6232 | if (dwarf2_per_objfile->str_buffer[str_offset] == '\0') |
4bdf3d34 | 6233 | return NULL; |
fe1b8b76 | 6234 | return (char *) (dwarf2_per_objfile->str_buffer + str_offset); |
c906108c SS |
6235 | } |
6236 | ||
ce5d95e1 | 6237 | static unsigned long |
fe1b8b76 | 6238 | read_unsigned_leb128 (bfd *abfd, gdb_byte *buf, unsigned int *bytes_read_ptr) |
c906108c | 6239 | { |
ce5d95e1 JB |
6240 | unsigned long result; |
6241 | unsigned int num_read; | |
c906108c SS |
6242 | int i, shift; |
6243 | unsigned char byte; | |
6244 | ||
6245 | result = 0; | |
6246 | shift = 0; | |
6247 | num_read = 0; | |
6248 | i = 0; | |
6249 | while (1) | |
6250 | { | |
fe1b8b76 | 6251 | byte = bfd_get_8 (abfd, buf); |
c906108c SS |
6252 | buf++; |
6253 | num_read++; | |
ce5d95e1 | 6254 | result |= ((unsigned long)(byte & 127) << shift); |
c906108c SS |
6255 | if ((byte & 128) == 0) |
6256 | { | |
6257 | break; | |
6258 | } | |
6259 | shift += 7; | |
6260 | } | |
6261 | *bytes_read_ptr = num_read; | |
6262 | return result; | |
6263 | } | |
6264 | ||
ce5d95e1 | 6265 | static long |
fe1b8b76 | 6266 | read_signed_leb128 (bfd *abfd, gdb_byte *buf, unsigned int *bytes_read_ptr) |
c906108c | 6267 | { |
ce5d95e1 | 6268 | long result; |
77e0b926 | 6269 | int i, shift, num_read; |
c906108c SS |
6270 | unsigned char byte; |
6271 | ||
6272 | result = 0; | |
6273 | shift = 0; | |
c906108c SS |
6274 | num_read = 0; |
6275 | i = 0; | |
6276 | while (1) | |
6277 | { | |
fe1b8b76 | 6278 | byte = bfd_get_8 (abfd, buf); |
c906108c SS |
6279 | buf++; |
6280 | num_read++; | |
ce5d95e1 | 6281 | result |= ((long)(byte & 127) << shift); |
c906108c SS |
6282 | shift += 7; |
6283 | if ((byte & 128) == 0) | |
6284 | { | |
6285 | break; | |
6286 | } | |
6287 | } | |
77e0b926 DJ |
6288 | if ((shift < 8 * sizeof (result)) && (byte & 0x40)) |
6289 | result |= -(((long)1) << shift); | |
c906108c SS |
6290 | *bytes_read_ptr = num_read; |
6291 | return result; | |
6292 | } | |
6293 | ||
4bb7a0a7 DJ |
6294 | /* Return a pointer to just past the end of an LEB128 number in BUF. */ |
6295 | ||
fe1b8b76 JB |
6296 | static gdb_byte * |
6297 | skip_leb128 (bfd *abfd, gdb_byte *buf) | |
4bb7a0a7 DJ |
6298 | { |
6299 | int byte; | |
6300 | ||
6301 | while (1) | |
6302 | { | |
fe1b8b76 | 6303 | byte = bfd_get_8 (abfd, buf); |
4bb7a0a7 DJ |
6304 | buf++; |
6305 | if ((byte & 128) == 0) | |
6306 | return buf; | |
6307 | } | |
6308 | } | |
6309 | ||
c906108c | 6310 | static void |
e142c38c | 6311 | set_cu_language (unsigned int lang, struct dwarf2_cu *cu) |
c906108c SS |
6312 | { |
6313 | switch (lang) | |
6314 | { | |
6315 | case DW_LANG_C89: | |
6316 | case DW_LANG_C: | |
e142c38c | 6317 | cu->language = language_c; |
c906108c SS |
6318 | break; |
6319 | case DW_LANG_C_plus_plus: | |
e142c38c | 6320 | cu->language = language_cplus; |
c906108c SS |
6321 | break; |
6322 | case DW_LANG_Fortran77: | |
6323 | case DW_LANG_Fortran90: | |
b21b22e0 | 6324 | case DW_LANG_Fortran95: |
e142c38c | 6325 | cu->language = language_fortran; |
c906108c SS |
6326 | break; |
6327 | case DW_LANG_Mips_Assembler: | |
e142c38c | 6328 | cu->language = language_asm; |
c906108c | 6329 | break; |
bebd888e | 6330 | case DW_LANG_Java: |
e142c38c | 6331 | cu->language = language_java; |
bebd888e | 6332 | break; |
c906108c | 6333 | case DW_LANG_Ada83: |
8aaf0b47 | 6334 | case DW_LANG_Ada95: |
bc5f45f8 JB |
6335 | cu->language = language_ada; |
6336 | break; | |
72019c9c GM |
6337 | case DW_LANG_Modula2: |
6338 | cu->language = language_m2; | |
6339 | break; | |
fe8e67fd PM |
6340 | case DW_LANG_Pascal83: |
6341 | cu->language = language_pascal; | |
6342 | break; | |
c906108c SS |
6343 | case DW_LANG_Cobol74: |
6344 | case DW_LANG_Cobol85: | |
c906108c | 6345 | default: |
e142c38c | 6346 | cu->language = language_minimal; |
c906108c SS |
6347 | break; |
6348 | } | |
e142c38c | 6349 | cu->language_defn = language_def (cu->language); |
c906108c SS |
6350 | } |
6351 | ||
6352 | /* Return the named attribute or NULL if not there. */ | |
6353 | ||
6354 | static struct attribute * | |
e142c38c | 6355 | dwarf2_attr (struct die_info *die, unsigned int name, struct dwarf2_cu *cu) |
c906108c SS |
6356 | { |
6357 | unsigned int i; | |
6358 | struct attribute *spec = NULL; | |
6359 | ||
6360 | for (i = 0; i < die->num_attrs; ++i) | |
6361 | { | |
6362 | if (die->attrs[i].name == name) | |
10b3939b | 6363 | return &die->attrs[i]; |
c906108c SS |
6364 | if (die->attrs[i].name == DW_AT_specification |
6365 | || die->attrs[i].name == DW_AT_abstract_origin) | |
6366 | spec = &die->attrs[i]; | |
6367 | } | |
c906108c | 6368 | |
10b3939b DJ |
6369 | if (spec) |
6370 | return dwarf2_attr (follow_die_ref (die, spec, cu), name, cu); | |
c5aa993b | 6371 | |
c906108c SS |
6372 | return NULL; |
6373 | } | |
6374 | ||
05cf31d1 JB |
6375 | /* Return non-zero iff the attribute NAME is defined for the given DIE, |
6376 | and holds a non-zero value. This function should only be used for | |
6377 | DW_FORM_flag attributes. */ | |
6378 | ||
6379 | static int | |
6380 | dwarf2_flag_true_p (struct die_info *die, unsigned name, struct dwarf2_cu *cu) | |
6381 | { | |
6382 | struct attribute *attr = dwarf2_attr (die, name, cu); | |
6383 | ||
6384 | return (attr && DW_UNSND (attr)); | |
6385 | } | |
6386 | ||
3ca72b44 | 6387 | static int |
e142c38c | 6388 | die_is_declaration (struct die_info *die, struct dwarf2_cu *cu) |
3ca72b44 | 6389 | { |
05cf31d1 JB |
6390 | /* A DIE is a declaration if it has a DW_AT_declaration attribute |
6391 | which value is non-zero. However, we have to be careful with | |
6392 | DIEs having a DW_AT_specification attribute, because dwarf2_attr() | |
6393 | (via dwarf2_flag_true_p) follows this attribute. So we may | |
6394 | end up accidently finding a declaration attribute that belongs | |
6395 | to a different DIE referenced by the specification attribute, | |
6396 | even though the given DIE does not have a declaration attribute. */ | |
6397 | return (dwarf2_flag_true_p (die, DW_AT_declaration, cu) | |
6398 | && dwarf2_attr (die, DW_AT_specification, cu) == NULL); | |
3ca72b44 AC |
6399 | } |
6400 | ||
63d06c5c DC |
6401 | /* Return the die giving the specification for DIE, if there is |
6402 | one. */ | |
6403 | ||
6404 | static struct die_info * | |
e142c38c | 6405 | die_specification (struct die_info *die, struct dwarf2_cu *cu) |
63d06c5c | 6406 | { |
e142c38c | 6407 | struct attribute *spec_attr = dwarf2_attr (die, DW_AT_specification, cu); |
63d06c5c DC |
6408 | |
6409 | if (spec_attr == NULL) | |
6410 | return NULL; | |
6411 | else | |
10b3939b | 6412 | return follow_die_ref (die, spec_attr, cu); |
63d06c5c | 6413 | } |
c906108c | 6414 | |
debd256d JB |
6415 | /* Free the line_header structure *LH, and any arrays and strings it |
6416 | refers to. */ | |
6417 | static void | |
6418 | free_line_header (struct line_header *lh) | |
6419 | { | |
6420 | if (lh->standard_opcode_lengths) | |
a8bc7b56 | 6421 | xfree (lh->standard_opcode_lengths); |
debd256d JB |
6422 | |
6423 | /* Remember that all the lh->file_names[i].name pointers are | |
6424 | pointers into debug_line_buffer, and don't need to be freed. */ | |
6425 | if (lh->file_names) | |
a8bc7b56 | 6426 | xfree (lh->file_names); |
debd256d JB |
6427 | |
6428 | /* Similarly for the include directory names. */ | |
6429 | if (lh->include_dirs) | |
a8bc7b56 | 6430 | xfree (lh->include_dirs); |
debd256d | 6431 | |
a8bc7b56 | 6432 | xfree (lh); |
debd256d JB |
6433 | } |
6434 | ||
6435 | ||
6436 | /* Add an entry to LH's include directory table. */ | |
6437 | static void | |
6438 | add_include_dir (struct line_header *lh, char *include_dir) | |
c906108c | 6439 | { |
debd256d JB |
6440 | /* Grow the array if necessary. */ |
6441 | if (lh->include_dirs_size == 0) | |
c5aa993b | 6442 | { |
debd256d JB |
6443 | lh->include_dirs_size = 1; /* for testing */ |
6444 | lh->include_dirs = xmalloc (lh->include_dirs_size | |
6445 | * sizeof (*lh->include_dirs)); | |
6446 | } | |
6447 | else if (lh->num_include_dirs >= lh->include_dirs_size) | |
6448 | { | |
6449 | lh->include_dirs_size *= 2; | |
6450 | lh->include_dirs = xrealloc (lh->include_dirs, | |
6451 | (lh->include_dirs_size | |
6452 | * sizeof (*lh->include_dirs))); | |
c5aa993b | 6453 | } |
c906108c | 6454 | |
debd256d JB |
6455 | lh->include_dirs[lh->num_include_dirs++] = include_dir; |
6456 | } | |
6457 | ||
6458 | ||
6459 | /* Add an entry to LH's file name table. */ | |
6460 | static void | |
6461 | add_file_name (struct line_header *lh, | |
6462 | char *name, | |
6463 | unsigned int dir_index, | |
6464 | unsigned int mod_time, | |
6465 | unsigned int length) | |
6466 | { | |
6467 | struct file_entry *fe; | |
6468 | ||
6469 | /* Grow the array if necessary. */ | |
6470 | if (lh->file_names_size == 0) | |
6471 | { | |
6472 | lh->file_names_size = 1; /* for testing */ | |
6473 | lh->file_names = xmalloc (lh->file_names_size | |
6474 | * sizeof (*lh->file_names)); | |
6475 | } | |
6476 | else if (lh->num_file_names >= lh->file_names_size) | |
6477 | { | |
6478 | lh->file_names_size *= 2; | |
6479 | lh->file_names = xrealloc (lh->file_names, | |
6480 | (lh->file_names_size | |
6481 | * sizeof (*lh->file_names))); | |
6482 | } | |
6483 | ||
6484 | fe = &lh->file_names[lh->num_file_names++]; | |
6485 | fe->name = name; | |
6486 | fe->dir_index = dir_index; | |
6487 | fe->mod_time = mod_time; | |
6488 | fe->length = length; | |
aaa75496 | 6489 | fe->included_p = 0; |
cb1df416 | 6490 | fe->symtab = NULL; |
debd256d JB |
6491 | } |
6492 | ||
6493 | ||
6494 | /* Read the statement program header starting at OFFSET in | |
6502dd73 DJ |
6495 | .debug_line, according to the endianness of ABFD. Return a pointer |
6496 | to a struct line_header, allocated using xmalloc. | |
debd256d JB |
6497 | |
6498 | NOTE: the strings in the include directory and file name tables of | |
6499 | the returned object point into debug_line_buffer, and must not be | |
6500 | freed. */ | |
6501 | static struct line_header * | |
6502 | dwarf_decode_line_header (unsigned int offset, bfd *abfd, | |
e7c27a73 | 6503 | struct dwarf2_cu *cu) |
debd256d JB |
6504 | { |
6505 | struct cleanup *back_to; | |
6506 | struct line_header *lh; | |
fe1b8b76 | 6507 | gdb_byte *line_ptr; |
891d2f0b | 6508 | unsigned int bytes_read; |
debd256d JB |
6509 | int i; |
6510 | char *cur_dir, *cur_file; | |
6511 | ||
6502dd73 | 6512 | if (dwarf2_per_objfile->line_buffer == NULL) |
debd256d | 6513 | { |
e2e0b3e5 | 6514 | complaint (&symfile_complaints, _("missing .debug_line section")); |
debd256d JB |
6515 | return 0; |
6516 | } | |
6517 | ||
a738430d MK |
6518 | /* Make sure that at least there's room for the total_length field. |
6519 | That could be 12 bytes long, but we're just going to fudge that. */ | |
6502dd73 | 6520 | if (offset + 4 >= dwarf2_per_objfile->line_size) |
debd256d | 6521 | { |
4d3c2250 | 6522 | dwarf2_statement_list_fits_in_line_number_section_complaint (); |
debd256d JB |
6523 | return 0; |
6524 | } | |
6525 | ||
6526 | lh = xmalloc (sizeof (*lh)); | |
6527 | memset (lh, 0, sizeof (*lh)); | |
6528 | back_to = make_cleanup ((make_cleanup_ftype *) free_line_header, | |
6529 | (void *) lh); | |
6530 | ||
6502dd73 | 6531 | line_ptr = dwarf2_per_objfile->line_buffer + offset; |
debd256d | 6532 | |
a738430d | 6533 | /* Read in the header. */ |
dd373385 EZ |
6534 | lh->total_length = |
6535 | read_initial_length (abfd, line_ptr, &cu->header, &bytes_read); | |
debd256d | 6536 | line_ptr += bytes_read; |
6502dd73 DJ |
6537 | if (line_ptr + lh->total_length > (dwarf2_per_objfile->line_buffer |
6538 | + dwarf2_per_objfile->line_size)) | |
debd256d | 6539 | { |
4d3c2250 | 6540 | dwarf2_statement_list_fits_in_line_number_section_complaint (); |
debd256d JB |
6541 | return 0; |
6542 | } | |
6543 | lh->statement_program_end = line_ptr + lh->total_length; | |
6544 | lh->version = read_2_bytes (abfd, line_ptr); | |
6545 | line_ptr += 2; | |
e7c27a73 | 6546 | lh->header_length = read_offset (abfd, line_ptr, &cu->header, &bytes_read); |
debd256d JB |
6547 | line_ptr += bytes_read; |
6548 | lh->minimum_instruction_length = read_1_byte (abfd, line_ptr); | |
6549 | line_ptr += 1; | |
6550 | lh->default_is_stmt = read_1_byte (abfd, line_ptr); | |
6551 | line_ptr += 1; | |
6552 | lh->line_base = read_1_signed_byte (abfd, line_ptr); | |
6553 | line_ptr += 1; | |
6554 | lh->line_range = read_1_byte (abfd, line_ptr); | |
6555 | line_ptr += 1; | |
6556 | lh->opcode_base = read_1_byte (abfd, line_ptr); | |
6557 | line_ptr += 1; | |
6558 | lh->standard_opcode_lengths | |
fe1b8b76 | 6559 | = xmalloc (lh->opcode_base * sizeof (lh->standard_opcode_lengths[0])); |
debd256d JB |
6560 | |
6561 | lh->standard_opcode_lengths[0] = 1; /* This should never be used anyway. */ | |
6562 | for (i = 1; i < lh->opcode_base; ++i) | |
6563 | { | |
6564 | lh->standard_opcode_lengths[i] = read_1_byte (abfd, line_ptr); | |
6565 | line_ptr += 1; | |
6566 | } | |
6567 | ||
a738430d | 6568 | /* Read directory table. */ |
debd256d JB |
6569 | while ((cur_dir = read_string (abfd, line_ptr, &bytes_read)) != NULL) |
6570 | { | |
6571 | line_ptr += bytes_read; | |
6572 | add_include_dir (lh, cur_dir); | |
6573 | } | |
6574 | line_ptr += bytes_read; | |
6575 | ||
a738430d | 6576 | /* Read file name table. */ |
debd256d JB |
6577 | while ((cur_file = read_string (abfd, line_ptr, &bytes_read)) != NULL) |
6578 | { | |
6579 | unsigned int dir_index, mod_time, length; | |
6580 | ||
6581 | line_ptr += bytes_read; | |
6582 | dir_index = read_unsigned_leb128 (abfd, line_ptr, &bytes_read); | |
6583 | line_ptr += bytes_read; | |
6584 | mod_time = read_unsigned_leb128 (abfd, line_ptr, &bytes_read); | |
6585 | line_ptr += bytes_read; | |
6586 | length = read_unsigned_leb128 (abfd, line_ptr, &bytes_read); | |
6587 | line_ptr += bytes_read; | |
6588 | ||
6589 | add_file_name (lh, cur_file, dir_index, mod_time, length); | |
6590 | } | |
6591 | line_ptr += bytes_read; | |
6592 | lh->statement_program_start = line_ptr; | |
6593 | ||
6502dd73 DJ |
6594 | if (line_ptr > (dwarf2_per_objfile->line_buffer |
6595 | + dwarf2_per_objfile->line_size)) | |
4d3c2250 | 6596 | complaint (&symfile_complaints, |
e2e0b3e5 | 6597 | _("line number info header doesn't fit in `.debug_line' section")); |
debd256d JB |
6598 | |
6599 | discard_cleanups (back_to); | |
6600 | return lh; | |
6601 | } | |
c906108c | 6602 | |
5fb290d7 DJ |
6603 | /* This function exists to work around a bug in certain compilers |
6604 | (particularly GCC 2.95), in which the first line number marker of a | |
6605 | function does not show up until after the prologue, right before | |
6606 | the second line number marker. This function shifts ADDRESS down | |
6607 | to the beginning of the function if necessary, and is called on | |
6608 | addresses passed to record_line. */ | |
6609 | ||
6610 | static CORE_ADDR | |
e142c38c | 6611 | check_cu_functions (CORE_ADDR address, struct dwarf2_cu *cu) |
5fb290d7 DJ |
6612 | { |
6613 | struct function_range *fn; | |
6614 | ||
6615 | /* Find the function_range containing address. */ | |
e142c38c | 6616 | if (!cu->first_fn) |
5fb290d7 DJ |
6617 | return address; |
6618 | ||
e142c38c DJ |
6619 | if (!cu->cached_fn) |
6620 | cu->cached_fn = cu->first_fn; | |
5fb290d7 | 6621 | |
e142c38c | 6622 | fn = cu->cached_fn; |
5fb290d7 DJ |
6623 | while (fn) |
6624 | if (fn->lowpc <= address && fn->highpc > address) | |
6625 | goto found; | |
6626 | else | |
6627 | fn = fn->next; | |
6628 | ||
e142c38c DJ |
6629 | fn = cu->first_fn; |
6630 | while (fn && fn != cu->cached_fn) | |
5fb290d7 DJ |
6631 | if (fn->lowpc <= address && fn->highpc > address) |
6632 | goto found; | |
6633 | else | |
6634 | fn = fn->next; | |
6635 | ||
6636 | return address; | |
6637 | ||
6638 | found: | |
6639 | if (fn->seen_line) | |
6640 | return address; | |
6641 | if (address != fn->lowpc) | |
4d3c2250 | 6642 | complaint (&symfile_complaints, |
e2e0b3e5 | 6643 | _("misplaced first line number at 0x%lx for '%s'"), |
4d3c2250 | 6644 | (unsigned long) address, fn->name); |
5fb290d7 DJ |
6645 | fn->seen_line = 1; |
6646 | return fn->lowpc; | |
6647 | } | |
6648 | ||
aaa75496 JB |
6649 | /* Decode the Line Number Program (LNP) for the given line_header |
6650 | structure and CU. The actual information extracted and the type | |
6651 | of structures created from the LNP depends on the value of PST. | |
6652 | ||
6653 | 1. If PST is NULL, then this procedure uses the data from the program | |
6654 | to create all necessary symbol tables, and their linetables. | |
6655 | The compilation directory of the file is passed in COMP_DIR, | |
6656 | and must not be NULL. | |
6657 | ||
6658 | 2. If PST is not NULL, this procedure reads the program to determine | |
6659 | the list of files included by the unit represented by PST, and | |
6660 | builds all the associated partial symbol tables. In this case, | |
6661 | the value of COMP_DIR is ignored, and can thus be NULL (the COMP_DIR | |
6662 | is not used to compute the full name of the symtab, and therefore | |
6663 | omitting it when building the partial symtab does not introduce | |
6664 | the potential for inconsistency - a partial symtab and its associated | |
6665 | symbtab having a different fullname -). */ | |
debd256d | 6666 | |
c906108c | 6667 | static void |
debd256d | 6668 | dwarf_decode_lines (struct line_header *lh, char *comp_dir, bfd *abfd, |
aaa75496 | 6669 | struct dwarf2_cu *cu, struct partial_symtab *pst) |
c906108c | 6670 | { |
fe1b8b76 JB |
6671 | gdb_byte *line_ptr; |
6672 | gdb_byte *line_end; | |
e7c27a73 | 6673 | unsigned int bytes_read; |
c906108c | 6674 | unsigned char op_code, extended_op, adj_opcode; |
e142c38c DJ |
6675 | CORE_ADDR baseaddr; |
6676 | struct objfile *objfile = cu->objfile; | |
aaa75496 | 6677 | const int decode_for_pst_p = (pst != NULL); |
cb1df416 | 6678 | struct subfile *last_subfile = NULL, *first_subfile = current_subfile; |
e142c38c DJ |
6679 | |
6680 | baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile)); | |
c906108c | 6681 | |
debd256d JB |
6682 | line_ptr = lh->statement_program_start; |
6683 | line_end = lh->statement_program_end; | |
c906108c SS |
6684 | |
6685 | /* Read the statement sequences until there's nothing left. */ | |
6686 | while (line_ptr < line_end) | |
6687 | { | |
6688 | /* state machine registers */ | |
6689 | CORE_ADDR address = 0; | |
6690 | unsigned int file = 1; | |
6691 | unsigned int line = 1; | |
6692 | unsigned int column = 0; | |
debd256d | 6693 | int is_stmt = lh->default_is_stmt; |
c906108c SS |
6694 | int basic_block = 0; |
6695 | int end_sequence = 0; | |
6696 | ||
aaa75496 | 6697 | if (!decode_for_pst_p && lh->num_file_names >= file) |
c906108c | 6698 | { |
aaa75496 | 6699 | /* Start a subfile for the current file of the state machine. */ |
debd256d JB |
6700 | /* lh->include_dirs and lh->file_names are 0-based, but the |
6701 | directory and file name numbers in the statement program | |
6702 | are 1-based. */ | |
6703 | struct file_entry *fe = &lh->file_names[file - 1]; | |
4f1520fb | 6704 | char *dir = NULL; |
a738430d | 6705 | |
debd256d JB |
6706 | if (fe->dir_index) |
6707 | dir = lh->include_dirs[fe->dir_index - 1]; | |
4f1520fb FR |
6708 | |
6709 | dwarf2_start_subfile (fe->name, dir, comp_dir); | |
c906108c SS |
6710 | } |
6711 | ||
a738430d | 6712 | /* Decode the table. */ |
c5aa993b | 6713 | while (!end_sequence) |
c906108c SS |
6714 | { |
6715 | op_code = read_1_byte (abfd, line_ptr); | |
6716 | line_ptr += 1; | |
9aa1fe7e | 6717 | |
debd256d | 6718 | if (op_code >= lh->opcode_base) |
a738430d MK |
6719 | { |
6720 | /* Special operand. */ | |
debd256d JB |
6721 | adj_opcode = op_code - lh->opcode_base; |
6722 | address += (adj_opcode / lh->line_range) | |
6723 | * lh->minimum_instruction_length; | |
6724 | line += lh->line_base + (adj_opcode % lh->line_range); | |
25e43795 DJ |
6725 | if (lh->num_file_names < file) |
6726 | dwarf2_debug_line_missing_file_complaint (); | |
6727 | else | |
6728 | { | |
6729 | lh->file_names[file - 1].included_p = 1; | |
6730 | if (!decode_for_pst_p) | |
6731 | { | |
6732 | if (last_subfile != current_subfile) | |
6733 | { | |
6734 | if (last_subfile) | |
6735 | record_line (last_subfile, 0, address); | |
6736 | last_subfile = current_subfile; | |
6737 | } | |
6738 | /* Append row to matrix using current values. */ | |
6739 | record_line (current_subfile, line, | |
6740 | check_cu_functions (address, cu)); | |
366da635 | 6741 | } |
25e43795 | 6742 | } |
9aa1fe7e GK |
6743 | basic_block = 1; |
6744 | } | |
6745 | else switch (op_code) | |
c906108c SS |
6746 | { |
6747 | case DW_LNS_extended_op: | |
473b7be6 DJ |
6748 | read_unsigned_leb128 (abfd, line_ptr, &bytes_read); |
6749 | line_ptr += bytes_read; | |
c906108c SS |
6750 | extended_op = read_1_byte (abfd, line_ptr); |
6751 | line_ptr += 1; | |
6752 | switch (extended_op) | |
6753 | { | |
6754 | case DW_LNE_end_sequence: | |
6755 | end_sequence = 1; | |
25e43795 DJ |
6756 | |
6757 | if (lh->num_file_names < file) | |
6758 | dwarf2_debug_line_missing_file_complaint (); | |
6759 | else | |
6760 | { | |
6761 | lh->file_names[file - 1].included_p = 1; | |
6762 | if (!decode_for_pst_p) | |
6763 | record_line (current_subfile, 0, address); | |
6764 | } | |
c906108c SS |
6765 | break; |
6766 | case DW_LNE_set_address: | |
e7c27a73 | 6767 | address = read_address (abfd, line_ptr, cu, &bytes_read); |
107d2387 AC |
6768 | line_ptr += bytes_read; |
6769 | address += baseaddr; | |
c906108c SS |
6770 | break; |
6771 | case DW_LNE_define_file: | |
debd256d JB |
6772 | { |
6773 | char *cur_file; | |
6774 | unsigned int dir_index, mod_time, length; | |
6775 | ||
6776 | cur_file = read_string (abfd, line_ptr, &bytes_read); | |
6777 | line_ptr += bytes_read; | |
6778 | dir_index = | |
6779 | read_unsigned_leb128 (abfd, line_ptr, &bytes_read); | |
6780 | line_ptr += bytes_read; | |
6781 | mod_time = | |
6782 | read_unsigned_leb128 (abfd, line_ptr, &bytes_read); | |
6783 | line_ptr += bytes_read; | |
6784 | length = | |
6785 | read_unsigned_leb128 (abfd, line_ptr, &bytes_read); | |
6786 | line_ptr += bytes_read; | |
6787 | add_file_name (lh, cur_file, dir_index, mod_time, length); | |
6788 | } | |
c906108c SS |
6789 | break; |
6790 | default: | |
4d3c2250 | 6791 | complaint (&symfile_complaints, |
e2e0b3e5 | 6792 | _("mangled .debug_line section")); |
debd256d | 6793 | return; |
c906108c SS |
6794 | } |
6795 | break; | |
6796 | case DW_LNS_copy: | |
25e43795 DJ |
6797 | if (lh->num_file_names < file) |
6798 | dwarf2_debug_line_missing_file_complaint (); | |
6799 | else | |
366da635 | 6800 | { |
25e43795 DJ |
6801 | lh->file_names[file - 1].included_p = 1; |
6802 | if (!decode_for_pst_p) | |
6803 | { | |
6804 | if (last_subfile != current_subfile) | |
6805 | { | |
6806 | if (last_subfile) | |
6807 | record_line (last_subfile, 0, address); | |
6808 | last_subfile = current_subfile; | |
6809 | } | |
6810 | record_line (current_subfile, line, | |
6811 | check_cu_functions (address, cu)); | |
6812 | } | |
366da635 | 6813 | } |
c906108c SS |
6814 | basic_block = 0; |
6815 | break; | |
6816 | case DW_LNS_advance_pc: | |
debd256d | 6817 | address += lh->minimum_instruction_length |
c906108c SS |
6818 | * read_unsigned_leb128 (abfd, line_ptr, &bytes_read); |
6819 | line_ptr += bytes_read; | |
6820 | break; | |
6821 | case DW_LNS_advance_line: | |
6822 | line += read_signed_leb128 (abfd, line_ptr, &bytes_read); | |
6823 | line_ptr += bytes_read; | |
6824 | break; | |
6825 | case DW_LNS_set_file: | |
debd256d | 6826 | { |
a738430d MK |
6827 | /* The arrays lh->include_dirs and lh->file_names are |
6828 | 0-based, but the directory and file name numbers in | |
6829 | the statement program are 1-based. */ | |
debd256d | 6830 | struct file_entry *fe; |
4f1520fb | 6831 | char *dir = NULL; |
a738430d | 6832 | |
debd256d JB |
6833 | file = read_unsigned_leb128 (abfd, line_ptr, &bytes_read); |
6834 | line_ptr += bytes_read; | |
25e43795 DJ |
6835 | if (lh->num_file_names < file) |
6836 | dwarf2_debug_line_missing_file_complaint (); | |
6837 | else | |
6838 | { | |
6839 | fe = &lh->file_names[file - 1]; | |
6840 | if (fe->dir_index) | |
6841 | dir = lh->include_dirs[fe->dir_index - 1]; | |
6842 | if (!decode_for_pst_p) | |
6843 | { | |
6844 | last_subfile = current_subfile; | |
6845 | dwarf2_start_subfile (fe->name, dir, comp_dir); | |
6846 | } | |
6847 | } | |
debd256d | 6848 | } |
c906108c SS |
6849 | break; |
6850 | case DW_LNS_set_column: | |
6851 | column = read_unsigned_leb128 (abfd, line_ptr, &bytes_read); | |
6852 | line_ptr += bytes_read; | |
6853 | break; | |
6854 | case DW_LNS_negate_stmt: | |
6855 | is_stmt = (!is_stmt); | |
6856 | break; | |
6857 | case DW_LNS_set_basic_block: | |
6858 | basic_block = 1; | |
6859 | break; | |
c2c6d25f JM |
6860 | /* Add to the address register of the state machine the |
6861 | address increment value corresponding to special opcode | |
a738430d MK |
6862 | 255. I.e., this value is scaled by the minimum |
6863 | instruction length since special opcode 255 would have | |
6864 | scaled the the increment. */ | |
c906108c | 6865 | case DW_LNS_const_add_pc: |
debd256d JB |
6866 | address += (lh->minimum_instruction_length |
6867 | * ((255 - lh->opcode_base) / lh->line_range)); | |
c906108c SS |
6868 | break; |
6869 | case DW_LNS_fixed_advance_pc: | |
6870 | address += read_2_bytes (abfd, line_ptr); | |
6871 | line_ptr += 2; | |
6872 | break; | |
9aa1fe7e | 6873 | default: |
a738430d MK |
6874 | { |
6875 | /* Unknown standard opcode, ignore it. */ | |
9aa1fe7e | 6876 | int i; |
a738430d | 6877 | |
debd256d | 6878 | for (i = 0; i < lh->standard_opcode_lengths[op_code]; i++) |
9aa1fe7e GK |
6879 | { |
6880 | (void) read_unsigned_leb128 (abfd, line_ptr, &bytes_read); | |
6881 | line_ptr += bytes_read; | |
6882 | } | |
6883 | } | |
c906108c SS |
6884 | } |
6885 | } | |
6886 | } | |
aaa75496 JB |
6887 | |
6888 | if (decode_for_pst_p) | |
6889 | { | |
6890 | int file_index; | |
6891 | ||
6892 | /* Now that we're done scanning the Line Header Program, we can | |
6893 | create the psymtab of each included file. */ | |
6894 | for (file_index = 0; file_index < lh->num_file_names; file_index++) | |
6895 | if (lh->file_names[file_index].included_p == 1) | |
6896 | { | |
5b5464ad JB |
6897 | const struct file_entry fe = lh->file_names [file_index]; |
6898 | char *include_name = fe.name; | |
6899 | char *dir_name = NULL; | |
6900 | char *pst_filename = pst->filename; | |
6901 | ||
6902 | if (fe.dir_index) | |
6903 | dir_name = lh->include_dirs[fe.dir_index - 1]; | |
6904 | ||
6905 | if (!IS_ABSOLUTE_PATH (include_name) && dir_name != NULL) | |
6906 | { | |
1754f103 MK |
6907 | include_name = concat (dir_name, SLASH_STRING, |
6908 | include_name, (char *)NULL); | |
5b5464ad JB |
6909 | make_cleanup (xfree, include_name); |
6910 | } | |
6911 | ||
6912 | if (!IS_ABSOLUTE_PATH (pst_filename) && pst->dirname != NULL) | |
6913 | { | |
1754f103 MK |
6914 | pst_filename = concat (pst->dirname, SLASH_STRING, |
6915 | pst_filename, (char *)NULL); | |
5b5464ad JB |
6916 | make_cleanup (xfree, pst_filename); |
6917 | } | |
6918 | ||
6919 | if (strcmp (include_name, pst_filename) != 0) | |
aaa75496 JB |
6920 | dwarf2_create_include_psymtab (include_name, pst, objfile); |
6921 | } | |
6922 | } | |
cb1df416 DJ |
6923 | else |
6924 | { | |
6925 | /* Make sure a symtab is created for every file, even files | |
6926 | which contain only variables (i.e. no code with associated | |
6927 | line numbers). */ | |
6928 | ||
6929 | int i; | |
6930 | struct file_entry *fe; | |
6931 | ||
6932 | for (i = 0; i < lh->num_file_names; i++) | |
6933 | { | |
6934 | char *dir = NULL; | |
6935 | fe = &lh->file_names[i]; | |
6936 | if (fe->dir_index) | |
6937 | dir = lh->include_dirs[fe->dir_index - 1]; | |
6938 | dwarf2_start_subfile (fe->name, dir, comp_dir); | |
6939 | ||
6940 | /* Skip the main file; we don't need it, and it must be | |
6941 | allocated last, so that it will show up before the | |
6942 | non-primary symtabs in the objfile's symtab list. */ | |
6943 | if (current_subfile == first_subfile) | |
6944 | continue; | |
6945 | ||
6946 | if (current_subfile->symtab == NULL) | |
6947 | current_subfile->symtab = allocate_symtab (current_subfile->name, | |
6948 | cu->objfile); | |
6949 | fe->symtab = current_subfile->symtab; | |
6950 | } | |
6951 | } | |
c906108c SS |
6952 | } |
6953 | ||
6954 | /* Start a subfile for DWARF. FILENAME is the name of the file and | |
6955 | DIRNAME the name of the source directory which contains FILENAME | |
4f1520fb FR |
6956 | or NULL if not known. COMP_DIR is the compilation directory for the |
6957 | linetable's compilation unit or NULL if not known. | |
c906108c SS |
6958 | This routine tries to keep line numbers from identical absolute and |
6959 | relative file names in a common subfile. | |
6960 | ||
6961 | Using the `list' example from the GDB testsuite, which resides in | |
6962 | /srcdir and compiling it with Irix6.2 cc in /compdir using a filename | |
6963 | of /srcdir/list0.c yields the following debugging information for list0.c: | |
6964 | ||
c5aa993b JM |
6965 | DW_AT_name: /srcdir/list0.c |
6966 | DW_AT_comp_dir: /compdir | |
357e46e7 | 6967 | files.files[0].name: list0.h |
c5aa993b | 6968 | files.files[0].dir: /srcdir |
357e46e7 | 6969 | files.files[1].name: list0.c |
c5aa993b | 6970 | files.files[1].dir: /srcdir |
c906108c SS |
6971 | |
6972 | The line number information for list0.c has to end up in a single | |
4f1520fb FR |
6973 | subfile, so that `break /srcdir/list0.c:1' works as expected. |
6974 | start_subfile will ensure that this happens provided that we pass the | |
6975 | concatenation of files.files[1].dir and files.files[1].name as the | |
6976 | subfile's name. */ | |
c906108c SS |
6977 | |
6978 | static void | |
4f1520fb | 6979 | dwarf2_start_subfile (char *filename, char *dirname, char *comp_dir) |
c906108c | 6980 | { |
4f1520fb FR |
6981 | char *fullname; |
6982 | ||
6983 | /* While reading the DIEs, we call start_symtab(DW_AT_name, DW_AT_comp_dir). | |
6984 | `start_symtab' will always pass the contents of DW_AT_comp_dir as | |
6985 | second argument to start_subfile. To be consistent, we do the | |
6986 | same here. In order not to lose the line information directory, | |
6987 | we concatenate it to the filename when it makes sense. | |
6988 | Note that the Dwarf3 standard says (speaking of filenames in line | |
6989 | information): ``The directory index is ignored for file names | |
6990 | that represent full path names''. Thus ignoring dirname in the | |
6991 | `else' branch below isn't an issue. */ | |
c906108c | 6992 | |
d5166ae1 | 6993 | if (!IS_ABSOLUTE_PATH (filename) && dirname != NULL) |
4f1520fb FR |
6994 | fullname = concat (dirname, SLASH_STRING, filename, (char *)NULL); |
6995 | else | |
6996 | fullname = filename; | |
c906108c | 6997 | |
4f1520fb FR |
6998 | start_subfile (fullname, comp_dir); |
6999 | ||
7000 | if (fullname != filename) | |
7001 | xfree (fullname); | |
c906108c SS |
7002 | } |
7003 | ||
4c2df51b DJ |
7004 | static void |
7005 | var_decode_location (struct attribute *attr, struct symbol *sym, | |
e7c27a73 | 7006 | struct dwarf2_cu *cu) |
4c2df51b | 7007 | { |
e7c27a73 DJ |
7008 | struct objfile *objfile = cu->objfile; |
7009 | struct comp_unit_head *cu_header = &cu->header; | |
7010 | ||
4c2df51b DJ |
7011 | /* NOTE drow/2003-01-30: There used to be a comment and some special |
7012 | code here to turn a symbol with DW_AT_external and a | |
7013 | SYMBOL_VALUE_ADDRESS of 0 into a LOC_UNRESOLVED symbol. This was | |
7014 | necessary for platforms (maybe Alpha, certainly PowerPC GNU/Linux | |
7015 | with some versions of binutils) where shared libraries could have | |
7016 | relocations against symbols in their debug information - the | |
7017 | minimal symbol would have the right address, but the debug info | |
7018 | would not. It's no longer necessary, because we will explicitly | |
7019 | apply relocations when we read in the debug information now. */ | |
7020 | ||
7021 | /* A DW_AT_location attribute with no contents indicates that a | |
7022 | variable has been optimized away. */ | |
7023 | if (attr_form_is_block (attr) && DW_BLOCK (attr)->size == 0) | |
7024 | { | |
7025 | SYMBOL_CLASS (sym) = LOC_OPTIMIZED_OUT; | |
7026 | return; | |
7027 | } | |
7028 | ||
7029 | /* Handle one degenerate form of location expression specially, to | |
7030 | preserve GDB's previous behavior when section offsets are | |
7031 | specified. If this is just a DW_OP_addr then mark this symbol | |
7032 | as LOC_STATIC. */ | |
7033 | ||
7034 | if (attr_form_is_block (attr) | |
7035 | && DW_BLOCK (attr)->size == 1 + cu_header->addr_size | |
7036 | && DW_BLOCK (attr)->data[0] == DW_OP_addr) | |
7037 | { | |
891d2f0b | 7038 | unsigned int dummy; |
4c2df51b DJ |
7039 | |
7040 | SYMBOL_VALUE_ADDRESS (sym) = | |
e7c27a73 | 7041 | read_address (objfile->obfd, DW_BLOCK (attr)->data + 1, cu, &dummy); |
4c2df51b DJ |
7042 | fixup_symbol_section (sym, objfile); |
7043 | SYMBOL_VALUE_ADDRESS (sym) += ANOFFSET (objfile->section_offsets, | |
7044 | SYMBOL_SECTION (sym)); | |
7045 | SYMBOL_CLASS (sym) = LOC_STATIC; | |
7046 | return; | |
7047 | } | |
7048 | ||
7049 | /* NOTE drow/2002-01-30: It might be worthwhile to have a static | |
7050 | expression evaluator, and use LOC_COMPUTED only when necessary | |
7051 | (i.e. when the value of a register or memory location is | |
7052 | referenced, or a thread-local block, etc.). Then again, it might | |
7053 | not be worthwhile. I'm assuming that it isn't unless performance | |
7054 | or memory numbers show me otherwise. */ | |
7055 | ||
e7c27a73 | 7056 | dwarf2_symbol_mark_computed (attr, sym, cu); |
4c2df51b DJ |
7057 | SYMBOL_CLASS (sym) = LOC_COMPUTED; |
7058 | } | |
7059 | ||
c906108c SS |
7060 | /* Given a pointer to a DWARF information entry, figure out if we need |
7061 | to make a symbol table entry for it, and if so, create a new entry | |
7062 | and return a pointer to it. | |
7063 | If TYPE is NULL, determine symbol type from the die, otherwise | |
2df3850c | 7064 | used the passed type. */ |
c906108c SS |
7065 | |
7066 | static struct symbol * | |
e7c27a73 | 7067 | new_symbol (struct die_info *die, struct type *type, struct dwarf2_cu *cu) |
c906108c | 7068 | { |
e7c27a73 | 7069 | struct objfile *objfile = cu->objfile; |
c906108c SS |
7070 | struct symbol *sym = NULL; |
7071 | char *name; | |
7072 | struct attribute *attr = NULL; | |
7073 | struct attribute *attr2 = NULL; | |
e142c38c DJ |
7074 | CORE_ADDR baseaddr; |
7075 | ||
7076 | baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile)); | |
c906108c | 7077 | |
5c4e30ca | 7078 | if (die->tag != DW_TAG_namespace) |
e142c38c | 7079 | name = dwarf2_linkage_name (die, cu); |
5c4e30ca DC |
7080 | else |
7081 | name = TYPE_NAME (type); | |
7082 | ||
c906108c SS |
7083 | if (name) |
7084 | { | |
4a146b47 | 7085 | sym = (struct symbol *) obstack_alloc (&objfile->objfile_obstack, |
c906108c SS |
7086 | sizeof (struct symbol)); |
7087 | OBJSTAT (objfile, n_syms++); | |
7088 | memset (sym, 0, sizeof (struct symbol)); | |
2de7ced7 DJ |
7089 | |
7090 | /* Cache this symbol's name and the name's demangled form (if any). */ | |
e142c38c | 7091 | SYMBOL_LANGUAGE (sym) = cu->language; |
2de7ced7 | 7092 | SYMBOL_SET_NAMES (sym, name, strlen (name), objfile); |
c906108c SS |
7093 | |
7094 | /* Default assumptions. | |
c5aa993b | 7095 | Use the passed type or decode it from the die. */ |
176620f1 | 7096 | SYMBOL_DOMAIN (sym) = VAR_DOMAIN; |
875dc2fc | 7097 | SYMBOL_CLASS (sym) = LOC_OPTIMIZED_OUT; |
c906108c SS |
7098 | if (type != NULL) |
7099 | SYMBOL_TYPE (sym) = type; | |
7100 | else | |
e7c27a73 | 7101 | SYMBOL_TYPE (sym) = die_type (die, cu); |
e142c38c | 7102 | attr = dwarf2_attr (die, DW_AT_decl_line, cu); |
c906108c SS |
7103 | if (attr) |
7104 | { | |
7105 | SYMBOL_LINE (sym) = DW_UNSND (attr); | |
7106 | } | |
cb1df416 DJ |
7107 | |
7108 | attr = dwarf2_attr (die, DW_AT_decl_file, cu); | |
7109 | if (attr) | |
7110 | { | |
7111 | int file_index = DW_UNSND (attr); | |
7112 | if (cu->line_header == NULL | |
7113 | || file_index > cu->line_header->num_file_names) | |
7114 | complaint (&symfile_complaints, | |
7115 | _("file index out of range")); | |
1c3d648d | 7116 | else if (file_index > 0) |
cb1df416 DJ |
7117 | { |
7118 | struct file_entry *fe; | |
7119 | fe = &cu->line_header->file_names[file_index - 1]; | |
7120 | SYMBOL_SYMTAB (sym) = fe->symtab; | |
7121 | } | |
7122 | } | |
7123 | ||
c906108c SS |
7124 | switch (die->tag) |
7125 | { | |
7126 | case DW_TAG_label: | |
e142c38c | 7127 | attr = dwarf2_attr (die, DW_AT_low_pc, cu); |
c906108c SS |
7128 | if (attr) |
7129 | { | |
7130 | SYMBOL_VALUE_ADDRESS (sym) = DW_ADDR (attr) + baseaddr; | |
7131 | } | |
7132 | SYMBOL_CLASS (sym) = LOC_LABEL; | |
7133 | break; | |
7134 | case DW_TAG_subprogram: | |
7135 | /* SYMBOL_BLOCK_VALUE (sym) will be filled in later by | |
7136 | finish_block. */ | |
7137 | SYMBOL_CLASS (sym) = LOC_BLOCK; | |
e142c38c | 7138 | attr2 = dwarf2_attr (die, DW_AT_external, cu); |
c906108c SS |
7139 | if (attr2 && (DW_UNSND (attr2) != 0)) |
7140 | { | |
7141 | add_symbol_to_list (sym, &global_symbols); | |
7142 | } | |
7143 | else | |
7144 | { | |
e142c38c | 7145 | add_symbol_to_list (sym, cu->list_in_scope); |
c906108c SS |
7146 | } |
7147 | break; | |
7148 | case DW_TAG_variable: | |
7149 | /* Compilation with minimal debug info may result in variables | |
7150 | with missing type entries. Change the misleading `void' type | |
7151 | to something sensible. */ | |
7152 | if (TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_VOID) | |
7153 | SYMBOL_TYPE (sym) = init_type (TYPE_CODE_INT, | |
9a76efb6 UW |
7154 | gdbarch_int_bit (current_gdbarch) |
7155 | / HOST_CHAR_BIT, | |
7156 | 0, "<variable, no debug info>", | |
c906108c | 7157 | objfile); |
e142c38c | 7158 | attr = dwarf2_attr (die, DW_AT_const_value, cu); |
c906108c SS |
7159 | if (attr) |
7160 | { | |
e7c27a73 | 7161 | dwarf2_const_value (attr, sym, cu); |
e142c38c | 7162 | attr2 = dwarf2_attr (die, DW_AT_external, cu); |
c906108c SS |
7163 | if (attr2 && (DW_UNSND (attr2) != 0)) |
7164 | add_symbol_to_list (sym, &global_symbols); | |
7165 | else | |
e142c38c | 7166 | add_symbol_to_list (sym, cu->list_in_scope); |
c906108c SS |
7167 | break; |
7168 | } | |
e142c38c | 7169 | attr = dwarf2_attr (die, DW_AT_location, cu); |
c906108c SS |
7170 | if (attr) |
7171 | { | |
e7c27a73 | 7172 | var_decode_location (attr, sym, cu); |
e142c38c | 7173 | attr2 = dwarf2_attr (die, DW_AT_external, cu); |
c906108c | 7174 | if (attr2 && (DW_UNSND (attr2) != 0)) |
4c2df51b | 7175 | add_symbol_to_list (sym, &global_symbols); |
c906108c | 7176 | else |
e142c38c | 7177 | add_symbol_to_list (sym, cu->list_in_scope); |
c906108c SS |
7178 | } |
7179 | else | |
7180 | { | |
7181 | /* We do not know the address of this symbol. | |
c5aa993b JM |
7182 | If it is an external symbol and we have type information |
7183 | for it, enter the symbol as a LOC_UNRESOLVED symbol. | |
7184 | The address of the variable will then be determined from | |
7185 | the minimal symbol table whenever the variable is | |
7186 | referenced. */ | |
e142c38c | 7187 | attr2 = dwarf2_attr (die, DW_AT_external, cu); |
c906108c | 7188 | if (attr2 && (DW_UNSND (attr2) != 0) |
e142c38c | 7189 | && dwarf2_attr (die, DW_AT_type, cu) != NULL) |
c906108c SS |
7190 | { |
7191 | SYMBOL_CLASS (sym) = LOC_UNRESOLVED; | |
7192 | add_symbol_to_list (sym, &global_symbols); | |
7193 | } | |
7194 | } | |
7195 | break; | |
7196 | case DW_TAG_formal_parameter: | |
e142c38c | 7197 | attr = dwarf2_attr (die, DW_AT_location, cu); |
c906108c SS |
7198 | if (attr) |
7199 | { | |
e7c27a73 | 7200 | var_decode_location (attr, sym, cu); |
7cf6e574 DJ |
7201 | /* FIXME drow/2003-07-31: Is LOC_COMPUTED_ARG necessary? */ |
7202 | if (SYMBOL_CLASS (sym) == LOC_COMPUTED) | |
7203 | SYMBOL_CLASS (sym) = LOC_COMPUTED_ARG; | |
c906108c | 7204 | } |
e142c38c | 7205 | attr = dwarf2_attr (die, DW_AT_const_value, cu); |
c906108c SS |
7206 | if (attr) |
7207 | { | |
e7c27a73 | 7208 | dwarf2_const_value (attr, sym, cu); |
c906108c | 7209 | } |
e142c38c | 7210 | add_symbol_to_list (sym, cu->list_in_scope); |
c906108c SS |
7211 | break; |
7212 | case DW_TAG_unspecified_parameters: | |
7213 | /* From varargs functions; gdb doesn't seem to have any | |
7214 | interest in this information, so just ignore it for now. | |
7215 | (FIXME?) */ | |
7216 | break; | |
7217 | case DW_TAG_class_type: | |
7218 | case DW_TAG_structure_type: | |
7219 | case DW_TAG_union_type: | |
72019c9c | 7220 | case DW_TAG_set_type: |
c906108c SS |
7221 | case DW_TAG_enumeration_type: |
7222 | SYMBOL_CLASS (sym) = LOC_TYPEDEF; | |
176620f1 | 7223 | SYMBOL_DOMAIN (sym) = STRUCT_DOMAIN; |
c906108c | 7224 | |
63d06c5c DC |
7225 | /* Make sure that the symbol includes appropriate enclosing |
7226 | classes/namespaces in its name. These are calculated in | |
134d01f1 | 7227 | read_structure_type, and the correct name is saved in |
63d06c5c DC |
7228 | the type. */ |
7229 | ||
987504bb JJ |
7230 | if (cu->language == language_cplus |
7231 | || cu->language == language_java) | |
c906108c | 7232 | { |
63d06c5c DC |
7233 | struct type *type = SYMBOL_TYPE (sym); |
7234 | ||
7235 | if (TYPE_TAG_NAME (type) != NULL) | |
7236 | { | |
7237 | /* FIXME: carlton/2003-11-10: Should this use | |
7238 | SYMBOL_SET_NAMES instead? (The same problem also | |
d8151005 DJ |
7239 | arises further down in this function.) */ |
7240 | /* The type's name is already allocated along with | |
7241 | this objfile, so we don't need to duplicate it | |
7242 | for the symbol. */ | |
7243 | SYMBOL_LINKAGE_NAME (sym) = TYPE_TAG_NAME (type); | |
63d06c5c | 7244 | } |
c906108c | 7245 | } |
63d06c5c DC |
7246 | |
7247 | { | |
987504bb | 7248 | /* NOTE: carlton/2003-11-10: C++ and Java class symbols shouldn't |
63d06c5c DC |
7249 | really ever be static objects: otherwise, if you try |
7250 | to, say, break of a class's method and you're in a file | |
7251 | which doesn't mention that class, it won't work unless | |
7252 | the check for all static symbols in lookup_symbol_aux | |
7253 | saves you. See the OtherFileClass tests in | |
7254 | gdb.c++/namespace.exp. */ | |
7255 | ||
7256 | struct pending **list_to_add; | |
7257 | ||
e142c38c | 7258 | list_to_add = (cu->list_in_scope == &file_symbols |
987504bb JJ |
7259 | && (cu->language == language_cplus |
7260 | || cu->language == language_java) | |
e142c38c | 7261 | ? &global_symbols : cu->list_in_scope); |
63d06c5c DC |
7262 | |
7263 | add_symbol_to_list (sym, list_to_add); | |
7264 | ||
7265 | /* The semantics of C++ state that "struct foo { ... }" also | |
987504bb JJ |
7266 | defines a typedef for "foo". A Java class declaration also |
7267 | defines a typedef for the class. Synthesize a typedef symbol | |
7268 | so that "ptype foo" works as expected. */ | |
7269 | if (cu->language == language_cplus | |
8c6860bb JB |
7270 | || cu->language == language_java |
7271 | || cu->language == language_ada) | |
63d06c5c DC |
7272 | { |
7273 | struct symbol *typedef_sym = (struct symbol *) | |
4a146b47 | 7274 | obstack_alloc (&objfile->objfile_obstack, |
63d06c5c DC |
7275 | sizeof (struct symbol)); |
7276 | *typedef_sym = *sym; | |
7277 | SYMBOL_DOMAIN (typedef_sym) = VAR_DOMAIN; | |
d8151005 DJ |
7278 | /* The symbol's name is already allocated along with |
7279 | this objfile, so we don't need to duplicate it for | |
7280 | the type. */ | |
63d06c5c | 7281 | if (TYPE_NAME (SYMBOL_TYPE (sym)) == 0) |
77ef991d | 7282 | TYPE_NAME (SYMBOL_TYPE (sym)) = SYMBOL_SEARCH_NAME (sym); |
63d06c5c DC |
7283 | add_symbol_to_list (typedef_sym, list_to_add); |
7284 | } | |
7285 | } | |
c906108c SS |
7286 | break; |
7287 | case DW_TAG_typedef: | |
63d06c5c DC |
7288 | if (processing_has_namespace_info |
7289 | && processing_current_prefix[0] != '\0') | |
7290 | { | |
987504bb JJ |
7291 | SYMBOL_LINKAGE_NAME (sym) = typename_concat (&objfile->objfile_obstack, |
7292 | processing_current_prefix, | |
7293 | name, cu); | |
63d06c5c DC |
7294 | } |
7295 | SYMBOL_CLASS (sym) = LOC_TYPEDEF; | |
7296 | SYMBOL_DOMAIN (sym) = VAR_DOMAIN; | |
e142c38c | 7297 | add_symbol_to_list (sym, cu->list_in_scope); |
63d06c5c | 7298 | break; |
c906108c | 7299 | case DW_TAG_base_type: |
a02abb62 | 7300 | case DW_TAG_subrange_type: |
c906108c | 7301 | SYMBOL_CLASS (sym) = LOC_TYPEDEF; |
176620f1 | 7302 | SYMBOL_DOMAIN (sym) = VAR_DOMAIN; |
e142c38c | 7303 | add_symbol_to_list (sym, cu->list_in_scope); |
c906108c SS |
7304 | break; |
7305 | case DW_TAG_enumerator: | |
63d06c5c DC |
7306 | if (processing_has_namespace_info |
7307 | && processing_current_prefix[0] != '\0') | |
7308 | { | |
987504bb JJ |
7309 | SYMBOL_LINKAGE_NAME (sym) = typename_concat (&objfile->objfile_obstack, |
7310 | processing_current_prefix, | |
7311 | name, cu); | |
63d06c5c | 7312 | } |
e142c38c | 7313 | attr = dwarf2_attr (die, DW_AT_const_value, cu); |
c906108c SS |
7314 | if (attr) |
7315 | { | |
e7c27a73 | 7316 | dwarf2_const_value (attr, sym, cu); |
c906108c | 7317 | } |
63d06c5c DC |
7318 | { |
7319 | /* NOTE: carlton/2003-11-10: See comment above in the | |
7320 | DW_TAG_class_type, etc. block. */ | |
7321 | ||
7322 | struct pending **list_to_add; | |
7323 | ||
e142c38c | 7324 | list_to_add = (cu->list_in_scope == &file_symbols |
987504bb JJ |
7325 | && (cu->language == language_cplus |
7326 | || cu->language == language_java) | |
e142c38c | 7327 | ? &global_symbols : cu->list_in_scope); |
63d06c5c DC |
7328 | |
7329 | add_symbol_to_list (sym, list_to_add); | |
7330 | } | |
c906108c | 7331 | break; |
5c4e30ca DC |
7332 | case DW_TAG_namespace: |
7333 | SYMBOL_CLASS (sym) = LOC_TYPEDEF; | |
7334 | add_symbol_to_list (sym, &global_symbols); | |
7335 | break; | |
c906108c SS |
7336 | default: |
7337 | /* Not a tag we recognize. Hopefully we aren't processing | |
7338 | trash data, but since we must specifically ignore things | |
7339 | we don't recognize, there is nothing else we should do at | |
7340 | this point. */ | |
e2e0b3e5 | 7341 | complaint (&symfile_complaints, _("unsupported tag: '%s'"), |
4d3c2250 | 7342 | dwarf_tag_name (die->tag)); |
c906108c SS |
7343 | break; |
7344 | } | |
7345 | } | |
7346 | return (sym); | |
7347 | } | |
7348 | ||
7349 | /* Copy constant value from an attribute to a symbol. */ | |
7350 | ||
7351 | static void | |
107d2387 | 7352 | dwarf2_const_value (struct attribute *attr, struct symbol *sym, |
e7c27a73 | 7353 | struct dwarf2_cu *cu) |
c906108c | 7354 | { |
e7c27a73 DJ |
7355 | struct objfile *objfile = cu->objfile; |
7356 | struct comp_unit_head *cu_header = &cu->header; | |
c906108c SS |
7357 | struct dwarf_block *blk; |
7358 | ||
7359 | switch (attr->form) | |
7360 | { | |
7361 | case DW_FORM_addr: | |
107d2387 | 7362 | if (TYPE_LENGTH (SYMBOL_TYPE (sym)) != cu_header->addr_size) |
22abf04a | 7363 | dwarf2_const_value_length_mismatch_complaint (DEPRECATED_SYMBOL_NAME (sym), |
4d3c2250 KB |
7364 | cu_header->addr_size, |
7365 | TYPE_LENGTH (SYMBOL_TYPE | |
7366 | (sym))); | |
4e38b386 | 7367 | SYMBOL_VALUE_BYTES (sym) = |
4a146b47 | 7368 | obstack_alloc (&objfile->objfile_obstack, cu_header->addr_size); |
fbd9dcd3 AC |
7369 | /* NOTE: cagney/2003-05-09: In-lined store_address call with |
7370 | it's body - store_unsigned_integer. */ | |
7371 | store_unsigned_integer (SYMBOL_VALUE_BYTES (sym), cu_header->addr_size, | |
7372 | DW_ADDR (attr)); | |
c906108c SS |
7373 | SYMBOL_CLASS (sym) = LOC_CONST_BYTES; |
7374 | break; | |
7375 | case DW_FORM_block1: | |
7376 | case DW_FORM_block2: | |
7377 | case DW_FORM_block4: | |
7378 | case DW_FORM_block: | |
7379 | blk = DW_BLOCK (attr); | |
7380 | if (TYPE_LENGTH (SYMBOL_TYPE (sym)) != blk->size) | |
22abf04a | 7381 | dwarf2_const_value_length_mismatch_complaint (DEPRECATED_SYMBOL_NAME (sym), |
4d3c2250 KB |
7382 | blk->size, |
7383 | TYPE_LENGTH (SYMBOL_TYPE | |
7384 | (sym))); | |
4e38b386 | 7385 | SYMBOL_VALUE_BYTES (sym) = |
4a146b47 | 7386 | obstack_alloc (&objfile->objfile_obstack, blk->size); |
c906108c SS |
7387 | memcpy (SYMBOL_VALUE_BYTES (sym), blk->data, blk->size); |
7388 | SYMBOL_CLASS (sym) = LOC_CONST_BYTES; | |
7389 | break; | |
2df3850c JM |
7390 | |
7391 | /* The DW_AT_const_value attributes are supposed to carry the | |
7392 | symbol's value "represented as it would be on the target | |
7393 | architecture." By the time we get here, it's already been | |
7394 | converted to host endianness, so we just need to sign- or | |
7395 | zero-extend it as appropriate. */ | |
7396 | case DW_FORM_data1: | |
7397 | dwarf2_const_value_data (attr, sym, 8); | |
7398 | break; | |
c906108c | 7399 | case DW_FORM_data2: |
2df3850c JM |
7400 | dwarf2_const_value_data (attr, sym, 16); |
7401 | break; | |
c906108c | 7402 | case DW_FORM_data4: |
2df3850c JM |
7403 | dwarf2_const_value_data (attr, sym, 32); |
7404 | break; | |
c906108c | 7405 | case DW_FORM_data8: |
2df3850c JM |
7406 | dwarf2_const_value_data (attr, sym, 64); |
7407 | break; | |
7408 | ||
c906108c | 7409 | case DW_FORM_sdata: |
2df3850c JM |
7410 | SYMBOL_VALUE (sym) = DW_SND (attr); |
7411 | SYMBOL_CLASS (sym) = LOC_CONST; | |
7412 | break; | |
7413 | ||
c906108c SS |
7414 | case DW_FORM_udata: |
7415 | SYMBOL_VALUE (sym) = DW_UNSND (attr); | |
7416 | SYMBOL_CLASS (sym) = LOC_CONST; | |
7417 | break; | |
2df3850c | 7418 | |
c906108c | 7419 | default: |
4d3c2250 | 7420 | complaint (&symfile_complaints, |
e2e0b3e5 | 7421 | _("unsupported const value attribute form: '%s'"), |
4d3c2250 | 7422 | dwarf_form_name (attr->form)); |
c906108c SS |
7423 | SYMBOL_VALUE (sym) = 0; |
7424 | SYMBOL_CLASS (sym) = LOC_CONST; | |
7425 | break; | |
7426 | } | |
7427 | } | |
7428 | ||
2df3850c JM |
7429 | |
7430 | /* Given an attr with a DW_FORM_dataN value in host byte order, sign- | |
7431 | or zero-extend it as appropriate for the symbol's type. */ | |
7432 | static void | |
7433 | dwarf2_const_value_data (struct attribute *attr, | |
7434 | struct symbol *sym, | |
7435 | int bits) | |
7436 | { | |
7437 | LONGEST l = DW_UNSND (attr); | |
7438 | ||
7439 | if (bits < sizeof (l) * 8) | |
7440 | { | |
7441 | if (TYPE_UNSIGNED (SYMBOL_TYPE (sym))) | |
7442 | l &= ((LONGEST) 1 << bits) - 1; | |
7443 | else | |
bf9198f1 | 7444 | l = (l << (sizeof (l) * 8 - bits)) >> (sizeof (l) * 8 - bits); |
2df3850c JM |
7445 | } |
7446 | ||
7447 | SYMBOL_VALUE (sym) = l; | |
7448 | SYMBOL_CLASS (sym) = LOC_CONST; | |
7449 | } | |
7450 | ||
7451 | ||
c906108c SS |
7452 | /* Return the type of the die in question using its DW_AT_type attribute. */ |
7453 | ||
7454 | static struct type * | |
e7c27a73 | 7455 | die_type (struct die_info *die, struct dwarf2_cu *cu) |
c906108c SS |
7456 | { |
7457 | struct type *type; | |
7458 | struct attribute *type_attr; | |
7459 | struct die_info *type_die; | |
c906108c | 7460 | |
e142c38c | 7461 | type_attr = dwarf2_attr (die, DW_AT_type, cu); |
c906108c SS |
7462 | if (!type_attr) |
7463 | { | |
7464 | /* A missing DW_AT_type represents a void type. */ | |
e142c38c | 7465 | return dwarf2_fundamental_type (cu->objfile, FT_VOID, cu); |
c906108c SS |
7466 | } |
7467 | else | |
10b3939b DJ |
7468 | type_die = follow_die_ref (die, type_attr, cu); |
7469 | ||
e7c27a73 | 7470 | type = tag_type_to_type (type_die, cu); |
c906108c SS |
7471 | if (!type) |
7472 | { | |
7473 | dump_die (type_die); | |
8a3fe4f8 | 7474 | error (_("Dwarf Error: Problem turning type die at offset into gdb type [in module %s]"), |
e7c27a73 | 7475 | cu->objfile->name); |
c906108c SS |
7476 | } |
7477 | return type; | |
7478 | } | |
7479 | ||
7480 | /* Return the containing type of the die in question using its | |
7481 | DW_AT_containing_type attribute. */ | |
7482 | ||
7483 | static struct type * | |
e7c27a73 | 7484 | die_containing_type (struct die_info *die, struct dwarf2_cu *cu) |
c906108c SS |
7485 | { |
7486 | struct type *type = NULL; | |
7487 | struct attribute *type_attr; | |
7488 | struct die_info *type_die = NULL; | |
c906108c | 7489 | |
e142c38c | 7490 | type_attr = dwarf2_attr (die, DW_AT_containing_type, cu); |
c906108c SS |
7491 | if (type_attr) |
7492 | { | |
10b3939b | 7493 | type_die = follow_die_ref (die, type_attr, cu); |
e7c27a73 | 7494 | type = tag_type_to_type (type_die, cu); |
c906108c SS |
7495 | } |
7496 | if (!type) | |
7497 | { | |
7498 | if (type_die) | |
7499 | dump_die (type_die); | |
8a3fe4f8 | 7500 | error (_("Dwarf Error: Problem turning containing type into gdb type [in module %s]"), |
e7c27a73 | 7501 | cu->objfile->name); |
c906108c SS |
7502 | } |
7503 | return type; | |
7504 | } | |
7505 | ||
c906108c | 7506 | static struct type * |
e7c27a73 | 7507 | tag_type_to_type (struct die_info *die, struct dwarf2_cu *cu) |
c906108c SS |
7508 | { |
7509 | if (die->type) | |
7510 | { | |
7511 | return die->type; | |
7512 | } | |
7513 | else | |
7514 | { | |
e7c27a73 | 7515 | read_type_die (die, cu); |
c906108c SS |
7516 | if (!die->type) |
7517 | { | |
7518 | dump_die (die); | |
8a3fe4f8 | 7519 | error (_("Dwarf Error: Cannot find type of die [in module %s]"), |
e7c27a73 | 7520 | cu->objfile->name); |
c906108c SS |
7521 | } |
7522 | return die->type; | |
7523 | } | |
7524 | } | |
7525 | ||
7526 | static void | |
e7c27a73 | 7527 | read_type_die (struct die_info *die, struct dwarf2_cu *cu) |
c906108c | 7528 | { |
e142c38c | 7529 | char *prefix = determine_prefix (die, cu); |
63d06c5c DC |
7530 | const char *old_prefix = processing_current_prefix; |
7531 | struct cleanup *back_to = make_cleanup (xfree, prefix); | |
7532 | processing_current_prefix = prefix; | |
7533 | ||
c906108c SS |
7534 | switch (die->tag) |
7535 | { | |
7536 | case DW_TAG_class_type: | |
7537 | case DW_TAG_structure_type: | |
7538 | case DW_TAG_union_type: | |
134d01f1 | 7539 | read_structure_type (die, cu); |
c906108c SS |
7540 | break; |
7541 | case DW_TAG_enumeration_type: | |
134d01f1 | 7542 | read_enumeration_type (die, cu); |
c906108c SS |
7543 | break; |
7544 | case DW_TAG_subprogram: | |
7545 | case DW_TAG_subroutine_type: | |
e7c27a73 | 7546 | read_subroutine_type (die, cu); |
c906108c SS |
7547 | break; |
7548 | case DW_TAG_array_type: | |
e7c27a73 | 7549 | read_array_type (die, cu); |
c906108c | 7550 | break; |
72019c9c GM |
7551 | case DW_TAG_set_type: |
7552 | read_set_type (die, cu); | |
7553 | break; | |
c906108c | 7554 | case DW_TAG_pointer_type: |
e7c27a73 | 7555 | read_tag_pointer_type (die, cu); |
c906108c SS |
7556 | break; |
7557 | case DW_TAG_ptr_to_member_type: | |
e7c27a73 | 7558 | read_tag_ptr_to_member_type (die, cu); |
c906108c SS |
7559 | break; |
7560 | case DW_TAG_reference_type: | |
e7c27a73 | 7561 | read_tag_reference_type (die, cu); |
c906108c SS |
7562 | break; |
7563 | case DW_TAG_const_type: | |
e7c27a73 | 7564 | read_tag_const_type (die, cu); |
c906108c SS |
7565 | break; |
7566 | case DW_TAG_volatile_type: | |
e7c27a73 | 7567 | read_tag_volatile_type (die, cu); |
c906108c SS |
7568 | break; |
7569 | case DW_TAG_string_type: | |
e7c27a73 | 7570 | read_tag_string_type (die, cu); |
c906108c SS |
7571 | break; |
7572 | case DW_TAG_typedef: | |
e7c27a73 | 7573 | read_typedef (die, cu); |
c906108c | 7574 | break; |
a02abb62 JB |
7575 | case DW_TAG_subrange_type: |
7576 | read_subrange_type (die, cu); | |
7577 | break; | |
c906108c | 7578 | case DW_TAG_base_type: |
e7c27a73 | 7579 | read_base_type (die, cu); |
c906108c | 7580 | break; |
81a17f79 JB |
7581 | case DW_TAG_unspecified_type: |
7582 | read_unspecified_type (die, cu); | |
7583 | break; | |
c906108c | 7584 | default: |
a1f5b845 | 7585 | complaint (&symfile_complaints, _("unexpected tag in read_type_die: '%s'"), |
4d3c2250 | 7586 | dwarf_tag_name (die->tag)); |
c906108c SS |
7587 | break; |
7588 | } | |
63d06c5c DC |
7589 | |
7590 | processing_current_prefix = old_prefix; | |
7591 | do_cleanups (back_to); | |
7592 | } | |
7593 | ||
fdde2d81 DC |
7594 | /* Return the name of the namespace/class that DIE is defined within, |
7595 | or "" if we can't tell. The caller should xfree the result. */ | |
7596 | ||
7597 | /* NOTE: carlton/2004-01-23: See read_func_scope (and the comment | |
7598 | therein) for an example of how to use this function to deal with | |
7599 | DW_AT_specification. */ | |
7600 | ||
7601 | static char * | |
e142c38c | 7602 | determine_prefix (struct die_info *die, struct dwarf2_cu *cu) |
63d06c5c DC |
7603 | { |
7604 | struct die_info *parent; | |
7605 | ||
987504bb JJ |
7606 | if (cu->language != language_cplus |
7607 | && cu->language != language_java) | |
63d06c5c DC |
7608 | return NULL; |
7609 | ||
7610 | parent = die->parent; | |
7611 | ||
7612 | if (parent == NULL) | |
7613 | { | |
8176b9b8 | 7614 | return xstrdup (""); |
63d06c5c DC |
7615 | } |
7616 | else | |
7617 | { | |
63d06c5c DC |
7618 | switch (parent->tag) { |
7619 | case DW_TAG_namespace: | |
7620 | { | |
8176b9b8 DC |
7621 | /* FIXME: carlton/2004-03-05: Should I follow extension dies |
7622 | before doing this check? */ | |
7623 | if (parent->type != NULL && TYPE_TAG_NAME (parent->type) != NULL) | |
7624 | { | |
7625 | return xstrdup (TYPE_TAG_NAME (parent->type)); | |
7626 | } | |
7627 | else | |
7628 | { | |
7629 | int dummy; | |
7630 | char *parent_prefix = determine_prefix (parent, cu); | |
987504bb | 7631 | char *retval = typename_concat (NULL, parent_prefix, |
8176b9b8 | 7632 | namespace_name (parent, &dummy, |
987504bb JJ |
7633 | cu), |
7634 | cu); | |
8176b9b8 DC |
7635 | xfree (parent_prefix); |
7636 | return retval; | |
7637 | } | |
63d06c5c DC |
7638 | } |
7639 | break; | |
7640 | case DW_TAG_class_type: | |
7641 | case DW_TAG_structure_type: | |
7642 | { | |
8176b9b8 | 7643 | if (parent->type != NULL && TYPE_TAG_NAME (parent->type) != NULL) |
63d06c5c | 7644 | { |
8176b9b8 | 7645 | return xstrdup (TYPE_TAG_NAME (parent->type)); |
63d06c5c DC |
7646 | } |
7647 | else | |
8176b9b8 DC |
7648 | { |
7649 | const char *old_prefix = processing_current_prefix; | |
7650 | char *new_prefix = determine_prefix (parent, cu); | |
7651 | char *retval; | |
7652 | ||
7653 | processing_current_prefix = new_prefix; | |
7654 | retval = determine_class_name (parent, cu); | |
7655 | processing_current_prefix = old_prefix; | |
7656 | ||
7657 | xfree (new_prefix); | |
7658 | return retval; | |
7659 | } | |
63d06c5c | 7660 | } |
63d06c5c | 7661 | default: |
8176b9b8 | 7662 | return determine_prefix (parent, cu); |
63d06c5c | 7663 | } |
63d06c5c DC |
7664 | } |
7665 | } | |
7666 | ||
987504bb JJ |
7667 | /* Return a newly-allocated string formed by concatenating PREFIX and |
7668 | SUFFIX with appropriate separator. If PREFIX or SUFFIX is NULL or empty, then | |
7669 | simply copy the SUFFIX or PREFIX, respectively. If OBS is non-null, | |
7670 | perform an obconcat, otherwise allocate storage for the result. The CU argument | |
7671 | is used to determine the language and hence, the appropriate separator. */ | |
7672 | ||
7673 | #define MAX_SEP_LEN 2 /* sizeof ("::") */ | |
63d06c5c DC |
7674 | |
7675 | static char * | |
987504bb JJ |
7676 | typename_concat (struct obstack *obs, const char *prefix, const char *suffix, |
7677 | struct dwarf2_cu *cu) | |
63d06c5c | 7678 | { |
987504bb | 7679 | char *sep; |
63d06c5c | 7680 | |
987504bb JJ |
7681 | if (suffix == NULL || suffix[0] == '\0' || prefix == NULL || prefix[0] == '\0') |
7682 | sep = ""; | |
7683 | else if (cu->language == language_java) | |
7684 | sep = "."; | |
7685 | else | |
7686 | sep = "::"; | |
63d06c5c | 7687 | |
987504bb JJ |
7688 | if (obs == NULL) |
7689 | { | |
7690 | char *retval = xmalloc (strlen (prefix) + MAX_SEP_LEN + strlen (suffix) + 1); | |
7691 | retval[0] = '\0'; | |
7692 | ||
7693 | if (prefix) | |
7694 | { | |
7695 | strcpy (retval, prefix); | |
7696 | strcat (retval, sep); | |
7697 | } | |
7698 | if (suffix) | |
7699 | strcat (retval, suffix); | |
7700 | ||
63d06c5c DC |
7701 | return retval; |
7702 | } | |
987504bb JJ |
7703 | else |
7704 | { | |
7705 | /* We have an obstack. */ | |
7706 | return obconcat (obs, prefix, sep, suffix); | |
7707 | } | |
63d06c5c DC |
7708 | } |
7709 | ||
c906108c | 7710 | static struct type * |
e7c27a73 | 7711 | dwarf_base_type (int encoding, int size, struct dwarf2_cu *cu) |
c906108c | 7712 | { |
e7c27a73 DJ |
7713 | struct objfile *objfile = cu->objfile; |
7714 | ||
c906108c SS |
7715 | /* FIXME - this should not produce a new (struct type *) |
7716 | every time. It should cache base types. */ | |
7717 | struct type *type; | |
7718 | switch (encoding) | |
7719 | { | |
7720 | case DW_ATE_address: | |
e142c38c | 7721 | type = dwarf2_fundamental_type (objfile, FT_VOID, cu); |
c906108c SS |
7722 | return type; |
7723 | case DW_ATE_boolean: | |
e142c38c | 7724 | type = dwarf2_fundamental_type (objfile, FT_BOOLEAN, cu); |
c906108c SS |
7725 | return type; |
7726 | case DW_ATE_complex_float: | |
7727 | if (size == 16) | |
7728 | { | |
e142c38c | 7729 | type = dwarf2_fundamental_type (objfile, FT_DBL_PREC_COMPLEX, cu); |
c906108c SS |
7730 | } |
7731 | else | |
7732 | { | |
e142c38c | 7733 | type = dwarf2_fundamental_type (objfile, FT_COMPLEX, cu); |
c906108c SS |
7734 | } |
7735 | return type; | |
7736 | case DW_ATE_float: | |
7737 | if (size == 8) | |
7738 | { | |
e142c38c | 7739 | type = dwarf2_fundamental_type (objfile, FT_DBL_PREC_FLOAT, cu); |
c906108c SS |
7740 | } |
7741 | else | |
7742 | { | |
e142c38c | 7743 | type = dwarf2_fundamental_type (objfile, FT_FLOAT, cu); |
c906108c SS |
7744 | } |
7745 | return type; | |
7746 | case DW_ATE_signed: | |
7747 | switch (size) | |
7748 | { | |
7749 | case 1: | |
e142c38c | 7750 | type = dwarf2_fundamental_type (objfile, FT_SIGNED_CHAR, cu); |
c906108c SS |
7751 | break; |
7752 | case 2: | |
e142c38c | 7753 | type = dwarf2_fundamental_type (objfile, FT_SIGNED_SHORT, cu); |
c906108c SS |
7754 | break; |
7755 | default: | |
7756 | case 4: | |
e142c38c | 7757 | type = dwarf2_fundamental_type (objfile, FT_SIGNED_INTEGER, cu); |
c906108c SS |
7758 | break; |
7759 | } | |
7760 | return type; | |
7761 | case DW_ATE_signed_char: | |
e142c38c | 7762 | type = dwarf2_fundamental_type (objfile, FT_SIGNED_CHAR, cu); |
c906108c SS |
7763 | return type; |
7764 | case DW_ATE_unsigned: | |
7765 | switch (size) | |
7766 | { | |
7767 | case 1: | |
e142c38c | 7768 | type = dwarf2_fundamental_type (objfile, FT_UNSIGNED_CHAR, cu); |
c906108c SS |
7769 | break; |
7770 | case 2: | |
e142c38c | 7771 | type = dwarf2_fundamental_type (objfile, FT_UNSIGNED_SHORT, cu); |
c906108c SS |
7772 | break; |
7773 | default: | |
7774 | case 4: | |
e142c38c | 7775 | type = dwarf2_fundamental_type (objfile, FT_UNSIGNED_INTEGER, cu); |
c906108c SS |
7776 | break; |
7777 | } | |
7778 | return type; | |
7779 | case DW_ATE_unsigned_char: | |
e142c38c | 7780 | type = dwarf2_fundamental_type (objfile, FT_UNSIGNED_CHAR, cu); |
c906108c SS |
7781 | return type; |
7782 | default: | |
e142c38c | 7783 | type = dwarf2_fundamental_type (objfile, FT_SIGNED_INTEGER, cu); |
c906108c SS |
7784 | return type; |
7785 | } | |
7786 | } | |
7787 | ||
7788 | #if 0 | |
7789 | struct die_info * | |
fba45db2 | 7790 | copy_die (struct die_info *old_die) |
c906108c SS |
7791 | { |
7792 | struct die_info *new_die; | |
7793 | int i, num_attrs; | |
7794 | ||
7795 | new_die = (struct die_info *) xmalloc (sizeof (struct die_info)); | |
7796 | memset (new_die, 0, sizeof (struct die_info)); | |
7797 | ||
7798 | new_die->tag = old_die->tag; | |
7799 | new_die->has_children = old_die->has_children; | |
7800 | new_die->abbrev = old_die->abbrev; | |
7801 | new_die->offset = old_die->offset; | |
7802 | new_die->type = NULL; | |
7803 | ||
7804 | num_attrs = old_die->num_attrs; | |
7805 | new_die->num_attrs = num_attrs; | |
7806 | new_die->attrs = (struct attribute *) | |
7807 | xmalloc (num_attrs * sizeof (struct attribute)); | |
7808 | ||
7809 | for (i = 0; i < old_die->num_attrs; ++i) | |
7810 | { | |
7811 | new_die->attrs[i].name = old_die->attrs[i].name; | |
7812 | new_die->attrs[i].form = old_die->attrs[i].form; | |
7813 | new_die->attrs[i].u.addr = old_die->attrs[i].u.addr; | |
7814 | } | |
7815 | ||
7816 | new_die->next = NULL; | |
7817 | return new_die; | |
7818 | } | |
7819 | #endif | |
7820 | ||
7821 | /* Return sibling of die, NULL if no sibling. */ | |
7822 | ||
f9aca02d | 7823 | static struct die_info * |
fba45db2 | 7824 | sibling_die (struct die_info *die) |
c906108c | 7825 | { |
639d11d3 | 7826 | return die->sibling; |
c906108c SS |
7827 | } |
7828 | ||
7829 | /* Get linkage name of a die, return NULL if not found. */ | |
7830 | ||
7831 | static char * | |
e142c38c | 7832 | dwarf2_linkage_name (struct die_info *die, struct dwarf2_cu *cu) |
c906108c SS |
7833 | { |
7834 | struct attribute *attr; | |
7835 | ||
e142c38c | 7836 | attr = dwarf2_attr (die, DW_AT_MIPS_linkage_name, cu); |
c906108c SS |
7837 | if (attr && DW_STRING (attr)) |
7838 | return DW_STRING (attr); | |
e142c38c | 7839 | attr = dwarf2_attr (die, DW_AT_name, cu); |
c906108c SS |
7840 | if (attr && DW_STRING (attr)) |
7841 | return DW_STRING (attr); | |
7842 | return NULL; | |
7843 | } | |
7844 | ||
9219021c DC |
7845 | /* Get name of a die, return NULL if not found. */ |
7846 | ||
7847 | static char * | |
e142c38c | 7848 | dwarf2_name (struct die_info *die, struct dwarf2_cu *cu) |
9219021c DC |
7849 | { |
7850 | struct attribute *attr; | |
7851 | ||
e142c38c | 7852 | attr = dwarf2_attr (die, DW_AT_name, cu); |
9219021c DC |
7853 | if (attr && DW_STRING (attr)) |
7854 | return DW_STRING (attr); | |
7855 | return NULL; | |
7856 | } | |
7857 | ||
7858 | /* Return the die that this die in an extension of, or NULL if there | |
7859 | is none. */ | |
7860 | ||
7861 | static struct die_info * | |
e142c38c | 7862 | dwarf2_extension (struct die_info *die, struct dwarf2_cu *cu) |
9219021c DC |
7863 | { |
7864 | struct attribute *attr; | |
9219021c | 7865 | |
e142c38c | 7866 | attr = dwarf2_attr (die, DW_AT_extension, cu); |
9219021c DC |
7867 | if (attr == NULL) |
7868 | return NULL; | |
7869 | ||
10b3939b | 7870 | return follow_die_ref (die, attr, cu); |
9219021c DC |
7871 | } |
7872 | ||
c906108c SS |
7873 | /* Convert a DIE tag into its string name. */ |
7874 | ||
7875 | static char * | |
aa1ee363 | 7876 | dwarf_tag_name (unsigned tag) |
c906108c SS |
7877 | { |
7878 | switch (tag) | |
7879 | { | |
7880 | case DW_TAG_padding: | |
7881 | return "DW_TAG_padding"; | |
7882 | case DW_TAG_array_type: | |
7883 | return "DW_TAG_array_type"; | |
7884 | case DW_TAG_class_type: | |
7885 | return "DW_TAG_class_type"; | |
7886 | case DW_TAG_entry_point: | |
7887 | return "DW_TAG_entry_point"; | |
7888 | case DW_TAG_enumeration_type: | |
7889 | return "DW_TAG_enumeration_type"; | |
7890 | case DW_TAG_formal_parameter: | |
7891 | return "DW_TAG_formal_parameter"; | |
7892 | case DW_TAG_imported_declaration: | |
7893 | return "DW_TAG_imported_declaration"; | |
7894 | case DW_TAG_label: | |
7895 | return "DW_TAG_label"; | |
7896 | case DW_TAG_lexical_block: | |
7897 | return "DW_TAG_lexical_block"; | |
7898 | case DW_TAG_member: | |
7899 | return "DW_TAG_member"; | |
7900 | case DW_TAG_pointer_type: | |
7901 | return "DW_TAG_pointer_type"; | |
7902 | case DW_TAG_reference_type: | |
7903 | return "DW_TAG_reference_type"; | |
7904 | case DW_TAG_compile_unit: | |
7905 | return "DW_TAG_compile_unit"; | |
7906 | case DW_TAG_string_type: | |
7907 | return "DW_TAG_string_type"; | |
7908 | case DW_TAG_structure_type: | |
7909 | return "DW_TAG_structure_type"; | |
7910 | case DW_TAG_subroutine_type: | |
7911 | return "DW_TAG_subroutine_type"; | |
7912 | case DW_TAG_typedef: | |
7913 | return "DW_TAG_typedef"; | |
7914 | case DW_TAG_union_type: | |
7915 | return "DW_TAG_union_type"; | |
7916 | case DW_TAG_unspecified_parameters: | |
7917 | return "DW_TAG_unspecified_parameters"; | |
7918 | case DW_TAG_variant: | |
7919 | return "DW_TAG_variant"; | |
7920 | case DW_TAG_common_block: | |
7921 | return "DW_TAG_common_block"; | |
7922 | case DW_TAG_common_inclusion: | |
7923 | return "DW_TAG_common_inclusion"; | |
7924 | case DW_TAG_inheritance: | |
7925 | return "DW_TAG_inheritance"; | |
7926 | case DW_TAG_inlined_subroutine: | |
7927 | return "DW_TAG_inlined_subroutine"; | |
7928 | case DW_TAG_module: | |
7929 | return "DW_TAG_module"; | |
7930 | case DW_TAG_ptr_to_member_type: | |
7931 | return "DW_TAG_ptr_to_member_type"; | |
7932 | case DW_TAG_set_type: | |
7933 | return "DW_TAG_set_type"; | |
7934 | case DW_TAG_subrange_type: | |
7935 | return "DW_TAG_subrange_type"; | |
7936 | case DW_TAG_with_stmt: | |
7937 | return "DW_TAG_with_stmt"; | |
7938 | case DW_TAG_access_declaration: | |
7939 | return "DW_TAG_access_declaration"; | |
7940 | case DW_TAG_base_type: | |
7941 | return "DW_TAG_base_type"; | |
7942 | case DW_TAG_catch_block: | |
7943 | return "DW_TAG_catch_block"; | |
7944 | case DW_TAG_const_type: | |
7945 | return "DW_TAG_const_type"; | |
7946 | case DW_TAG_constant: | |
7947 | return "DW_TAG_constant"; | |
7948 | case DW_TAG_enumerator: | |
7949 | return "DW_TAG_enumerator"; | |
7950 | case DW_TAG_file_type: | |
7951 | return "DW_TAG_file_type"; | |
7952 | case DW_TAG_friend: | |
7953 | return "DW_TAG_friend"; | |
7954 | case DW_TAG_namelist: | |
7955 | return "DW_TAG_namelist"; | |
7956 | case DW_TAG_namelist_item: | |
7957 | return "DW_TAG_namelist_item"; | |
7958 | case DW_TAG_packed_type: | |
7959 | return "DW_TAG_packed_type"; | |
7960 | case DW_TAG_subprogram: | |
7961 | return "DW_TAG_subprogram"; | |
7962 | case DW_TAG_template_type_param: | |
7963 | return "DW_TAG_template_type_param"; | |
7964 | case DW_TAG_template_value_param: | |
7965 | return "DW_TAG_template_value_param"; | |
7966 | case DW_TAG_thrown_type: | |
7967 | return "DW_TAG_thrown_type"; | |
7968 | case DW_TAG_try_block: | |
7969 | return "DW_TAG_try_block"; | |
7970 | case DW_TAG_variant_part: | |
7971 | return "DW_TAG_variant_part"; | |
7972 | case DW_TAG_variable: | |
7973 | return "DW_TAG_variable"; | |
7974 | case DW_TAG_volatile_type: | |
7975 | return "DW_TAG_volatile_type"; | |
d9fa45fe DC |
7976 | case DW_TAG_dwarf_procedure: |
7977 | return "DW_TAG_dwarf_procedure"; | |
7978 | case DW_TAG_restrict_type: | |
7979 | return "DW_TAG_restrict_type"; | |
7980 | case DW_TAG_interface_type: | |
7981 | return "DW_TAG_interface_type"; | |
7982 | case DW_TAG_namespace: | |
7983 | return "DW_TAG_namespace"; | |
7984 | case DW_TAG_imported_module: | |
7985 | return "DW_TAG_imported_module"; | |
7986 | case DW_TAG_unspecified_type: | |
7987 | return "DW_TAG_unspecified_type"; | |
7988 | case DW_TAG_partial_unit: | |
7989 | return "DW_TAG_partial_unit"; | |
7990 | case DW_TAG_imported_unit: | |
7991 | return "DW_TAG_imported_unit"; | |
b7619582 GF |
7992 | case DW_TAG_condition: |
7993 | return "DW_TAG_condition"; | |
7994 | case DW_TAG_shared_type: | |
7995 | return "DW_TAG_shared_type"; | |
c906108c SS |
7996 | case DW_TAG_MIPS_loop: |
7997 | return "DW_TAG_MIPS_loop"; | |
b7619582 GF |
7998 | case DW_TAG_HP_array_descriptor: |
7999 | return "DW_TAG_HP_array_descriptor"; | |
c906108c SS |
8000 | case DW_TAG_format_label: |
8001 | return "DW_TAG_format_label"; | |
8002 | case DW_TAG_function_template: | |
8003 | return "DW_TAG_function_template"; | |
8004 | case DW_TAG_class_template: | |
8005 | return "DW_TAG_class_template"; | |
b7619582 GF |
8006 | case DW_TAG_GNU_BINCL: |
8007 | return "DW_TAG_GNU_BINCL"; | |
8008 | case DW_TAG_GNU_EINCL: | |
8009 | return "DW_TAG_GNU_EINCL"; | |
8010 | case DW_TAG_upc_shared_type: | |
8011 | return "DW_TAG_upc_shared_type"; | |
8012 | case DW_TAG_upc_strict_type: | |
8013 | return "DW_TAG_upc_strict_type"; | |
8014 | case DW_TAG_upc_relaxed_type: | |
8015 | return "DW_TAG_upc_relaxed_type"; | |
8016 | case DW_TAG_PGI_kanji_type: | |
8017 | return "DW_TAG_PGI_kanji_type"; | |
8018 | case DW_TAG_PGI_interface_block: | |
8019 | return "DW_TAG_PGI_interface_block"; | |
c906108c SS |
8020 | default: |
8021 | return "DW_TAG_<unknown>"; | |
8022 | } | |
8023 | } | |
8024 | ||
8025 | /* Convert a DWARF attribute code into its string name. */ | |
8026 | ||
8027 | static char * | |
aa1ee363 | 8028 | dwarf_attr_name (unsigned attr) |
c906108c SS |
8029 | { |
8030 | switch (attr) | |
8031 | { | |
8032 | case DW_AT_sibling: | |
8033 | return "DW_AT_sibling"; | |
8034 | case DW_AT_location: | |
8035 | return "DW_AT_location"; | |
8036 | case DW_AT_name: | |
8037 | return "DW_AT_name"; | |
8038 | case DW_AT_ordering: | |
8039 | return "DW_AT_ordering"; | |
8040 | case DW_AT_subscr_data: | |
8041 | return "DW_AT_subscr_data"; | |
8042 | case DW_AT_byte_size: | |
8043 | return "DW_AT_byte_size"; | |
8044 | case DW_AT_bit_offset: | |
8045 | return "DW_AT_bit_offset"; | |
8046 | case DW_AT_bit_size: | |
8047 | return "DW_AT_bit_size"; | |
8048 | case DW_AT_element_list: | |
8049 | return "DW_AT_element_list"; | |
8050 | case DW_AT_stmt_list: | |
8051 | return "DW_AT_stmt_list"; | |
8052 | case DW_AT_low_pc: | |
8053 | return "DW_AT_low_pc"; | |
8054 | case DW_AT_high_pc: | |
8055 | return "DW_AT_high_pc"; | |
8056 | case DW_AT_language: | |
8057 | return "DW_AT_language"; | |
8058 | case DW_AT_member: | |
8059 | return "DW_AT_member"; | |
8060 | case DW_AT_discr: | |
8061 | return "DW_AT_discr"; | |
8062 | case DW_AT_discr_value: | |
8063 | return "DW_AT_discr_value"; | |
8064 | case DW_AT_visibility: | |
8065 | return "DW_AT_visibility"; | |
8066 | case DW_AT_import: | |
8067 | return "DW_AT_import"; | |
8068 | case DW_AT_string_length: | |
8069 | return "DW_AT_string_length"; | |
8070 | case DW_AT_common_reference: | |
8071 | return "DW_AT_common_reference"; | |
8072 | case DW_AT_comp_dir: | |
8073 | return "DW_AT_comp_dir"; | |
8074 | case DW_AT_const_value: | |
8075 | return "DW_AT_const_value"; | |
8076 | case DW_AT_containing_type: | |
8077 | return "DW_AT_containing_type"; | |
8078 | case DW_AT_default_value: | |
8079 | return "DW_AT_default_value"; | |
8080 | case DW_AT_inline: | |
8081 | return "DW_AT_inline"; | |
8082 | case DW_AT_is_optional: | |
8083 | return "DW_AT_is_optional"; | |
8084 | case DW_AT_lower_bound: | |
8085 | return "DW_AT_lower_bound"; | |
8086 | case DW_AT_producer: | |
8087 | return "DW_AT_producer"; | |
8088 | case DW_AT_prototyped: | |
8089 | return "DW_AT_prototyped"; | |
8090 | case DW_AT_return_addr: | |
8091 | return "DW_AT_return_addr"; | |
8092 | case DW_AT_start_scope: | |
8093 | return "DW_AT_start_scope"; | |
8094 | case DW_AT_stride_size: | |
8095 | return "DW_AT_stride_size"; | |
8096 | case DW_AT_upper_bound: | |
8097 | return "DW_AT_upper_bound"; | |
8098 | case DW_AT_abstract_origin: | |
8099 | return "DW_AT_abstract_origin"; | |
8100 | case DW_AT_accessibility: | |
8101 | return "DW_AT_accessibility"; | |
8102 | case DW_AT_address_class: | |
8103 | return "DW_AT_address_class"; | |
8104 | case DW_AT_artificial: | |
8105 | return "DW_AT_artificial"; | |
8106 | case DW_AT_base_types: | |
8107 | return "DW_AT_base_types"; | |
8108 | case DW_AT_calling_convention: | |
8109 | return "DW_AT_calling_convention"; | |
8110 | case DW_AT_count: | |
8111 | return "DW_AT_count"; | |
8112 | case DW_AT_data_member_location: | |
8113 | return "DW_AT_data_member_location"; | |
8114 | case DW_AT_decl_column: | |
8115 | return "DW_AT_decl_column"; | |
8116 | case DW_AT_decl_file: | |
8117 | return "DW_AT_decl_file"; | |
8118 | case DW_AT_decl_line: | |
8119 | return "DW_AT_decl_line"; | |
8120 | case DW_AT_declaration: | |
8121 | return "DW_AT_declaration"; | |
8122 | case DW_AT_discr_list: | |
8123 | return "DW_AT_discr_list"; | |
8124 | case DW_AT_encoding: | |
8125 | return "DW_AT_encoding"; | |
8126 | case DW_AT_external: | |
8127 | return "DW_AT_external"; | |
8128 | case DW_AT_frame_base: | |
8129 | return "DW_AT_frame_base"; | |
8130 | case DW_AT_friend: | |
8131 | return "DW_AT_friend"; | |
8132 | case DW_AT_identifier_case: | |
8133 | return "DW_AT_identifier_case"; | |
8134 | case DW_AT_macro_info: | |
8135 | return "DW_AT_macro_info"; | |
8136 | case DW_AT_namelist_items: | |
8137 | return "DW_AT_namelist_items"; | |
8138 | case DW_AT_priority: | |
8139 | return "DW_AT_priority"; | |
8140 | case DW_AT_segment: | |
8141 | return "DW_AT_segment"; | |
8142 | case DW_AT_specification: | |
8143 | return "DW_AT_specification"; | |
8144 | case DW_AT_static_link: | |
8145 | return "DW_AT_static_link"; | |
8146 | case DW_AT_type: | |
8147 | return "DW_AT_type"; | |
8148 | case DW_AT_use_location: | |
8149 | return "DW_AT_use_location"; | |
8150 | case DW_AT_variable_parameter: | |
8151 | return "DW_AT_variable_parameter"; | |
8152 | case DW_AT_virtuality: | |
8153 | return "DW_AT_virtuality"; | |
8154 | case DW_AT_vtable_elem_location: | |
8155 | return "DW_AT_vtable_elem_location"; | |
b7619582 | 8156 | /* DWARF 3 values. */ |
d9fa45fe DC |
8157 | case DW_AT_allocated: |
8158 | return "DW_AT_allocated"; | |
8159 | case DW_AT_associated: | |
8160 | return "DW_AT_associated"; | |
8161 | case DW_AT_data_location: | |
8162 | return "DW_AT_data_location"; | |
8163 | case DW_AT_stride: | |
8164 | return "DW_AT_stride"; | |
8165 | case DW_AT_entry_pc: | |
8166 | return "DW_AT_entry_pc"; | |
8167 | case DW_AT_use_UTF8: | |
8168 | return "DW_AT_use_UTF8"; | |
8169 | case DW_AT_extension: | |
8170 | return "DW_AT_extension"; | |
8171 | case DW_AT_ranges: | |
8172 | return "DW_AT_ranges"; | |
8173 | case DW_AT_trampoline: | |
8174 | return "DW_AT_trampoline"; | |
8175 | case DW_AT_call_column: | |
8176 | return "DW_AT_call_column"; | |
8177 | case DW_AT_call_file: | |
8178 | return "DW_AT_call_file"; | |
8179 | case DW_AT_call_line: | |
8180 | return "DW_AT_call_line"; | |
b7619582 GF |
8181 | case DW_AT_description: |
8182 | return "DW_AT_description"; | |
8183 | case DW_AT_binary_scale: | |
8184 | return "DW_AT_binary_scale"; | |
8185 | case DW_AT_decimal_scale: | |
8186 | return "DW_AT_decimal_scale"; | |
8187 | case DW_AT_small: | |
8188 | return "DW_AT_small"; | |
8189 | case DW_AT_decimal_sign: | |
8190 | return "DW_AT_decimal_sign"; | |
8191 | case DW_AT_digit_count: | |
8192 | return "DW_AT_digit_count"; | |
8193 | case DW_AT_picture_string: | |
8194 | return "DW_AT_picture_string"; | |
8195 | case DW_AT_mutable: | |
8196 | return "DW_AT_mutable"; | |
8197 | case DW_AT_threads_scaled: | |
8198 | return "DW_AT_threads_scaled"; | |
8199 | case DW_AT_explicit: | |
8200 | return "DW_AT_explicit"; | |
8201 | case DW_AT_object_pointer: | |
8202 | return "DW_AT_object_pointer"; | |
8203 | case DW_AT_endianity: | |
8204 | return "DW_AT_endianity"; | |
8205 | case DW_AT_elemental: | |
8206 | return "DW_AT_elemental"; | |
8207 | case DW_AT_pure: | |
8208 | return "DW_AT_pure"; | |
8209 | case DW_AT_recursive: | |
8210 | return "DW_AT_recursive"; | |
c906108c | 8211 | #ifdef MIPS |
b7619582 | 8212 | /* SGI/MIPS extensions. */ |
c906108c SS |
8213 | case DW_AT_MIPS_fde: |
8214 | return "DW_AT_MIPS_fde"; | |
8215 | case DW_AT_MIPS_loop_begin: | |
8216 | return "DW_AT_MIPS_loop_begin"; | |
8217 | case DW_AT_MIPS_tail_loop_begin: | |
8218 | return "DW_AT_MIPS_tail_loop_begin"; | |
8219 | case DW_AT_MIPS_epilog_begin: | |
8220 | return "DW_AT_MIPS_epilog_begin"; | |
8221 | case DW_AT_MIPS_loop_unroll_factor: | |
8222 | return "DW_AT_MIPS_loop_unroll_factor"; | |
8223 | case DW_AT_MIPS_software_pipeline_depth: | |
8224 | return "DW_AT_MIPS_software_pipeline_depth"; | |
8225 | case DW_AT_MIPS_linkage_name: | |
8226 | return "DW_AT_MIPS_linkage_name"; | |
b7619582 GF |
8227 | case DW_AT_MIPS_stride: |
8228 | return "DW_AT_MIPS_stride"; | |
8229 | case DW_AT_MIPS_abstract_name: | |
8230 | return "DW_AT_MIPS_abstract_name"; | |
8231 | case DW_AT_MIPS_clone_origin: | |
8232 | return "DW_AT_MIPS_clone_origin"; | |
8233 | case DW_AT_MIPS_has_inlines: | |
8234 | return "DW_AT_MIPS_has_inlines"; | |
8235 | #endif | |
8236 | /* HP extensions. */ | |
8237 | case DW_AT_HP_block_index: | |
8238 | return "DW_AT_HP_block_index"; | |
8239 | case DW_AT_HP_unmodifiable: | |
8240 | return "DW_AT_HP_unmodifiable"; | |
8241 | case DW_AT_HP_actuals_stmt_list: | |
8242 | return "DW_AT_HP_actuals_stmt_list"; | |
8243 | case DW_AT_HP_proc_per_section: | |
8244 | return "DW_AT_HP_proc_per_section"; | |
8245 | case DW_AT_HP_raw_data_ptr: | |
8246 | return "DW_AT_HP_raw_data_ptr"; | |
8247 | case DW_AT_HP_pass_by_reference: | |
8248 | return "DW_AT_HP_pass_by_reference"; | |
8249 | case DW_AT_HP_opt_level: | |
8250 | return "DW_AT_HP_opt_level"; | |
8251 | case DW_AT_HP_prof_version_id: | |
8252 | return "DW_AT_HP_prof_version_id"; | |
8253 | case DW_AT_HP_opt_flags: | |
8254 | return "DW_AT_HP_opt_flags"; | |
8255 | case DW_AT_HP_cold_region_low_pc: | |
8256 | return "DW_AT_HP_cold_region_low_pc"; | |
8257 | case DW_AT_HP_cold_region_high_pc: | |
8258 | return "DW_AT_HP_cold_region_high_pc"; | |
8259 | case DW_AT_HP_all_variables_modifiable: | |
8260 | return "DW_AT_HP_all_variables_modifiable"; | |
8261 | case DW_AT_HP_linkage_name: | |
8262 | return "DW_AT_HP_linkage_name"; | |
8263 | case DW_AT_HP_prof_flags: | |
8264 | return "DW_AT_HP_prof_flags"; | |
8265 | /* GNU extensions. */ | |
c906108c SS |
8266 | case DW_AT_sf_names: |
8267 | return "DW_AT_sf_names"; | |
8268 | case DW_AT_src_info: | |
8269 | return "DW_AT_src_info"; | |
8270 | case DW_AT_mac_info: | |
8271 | return "DW_AT_mac_info"; | |
8272 | case DW_AT_src_coords: | |
8273 | return "DW_AT_src_coords"; | |
8274 | case DW_AT_body_begin: | |
8275 | return "DW_AT_body_begin"; | |
8276 | case DW_AT_body_end: | |
8277 | return "DW_AT_body_end"; | |
f5f8a009 EZ |
8278 | case DW_AT_GNU_vector: |
8279 | return "DW_AT_GNU_vector"; | |
b7619582 GF |
8280 | /* VMS extensions. */ |
8281 | case DW_AT_VMS_rtnbeg_pd_address: | |
8282 | return "DW_AT_VMS_rtnbeg_pd_address"; | |
8283 | /* UPC extension. */ | |
8284 | case DW_AT_upc_threads_scaled: | |
8285 | return "DW_AT_upc_threads_scaled"; | |
8286 | /* PGI (STMicroelectronics) extensions. */ | |
8287 | case DW_AT_PGI_lbase: | |
8288 | return "DW_AT_PGI_lbase"; | |
8289 | case DW_AT_PGI_soffset: | |
8290 | return "DW_AT_PGI_soffset"; | |
8291 | case DW_AT_PGI_lstride: | |
8292 | return "DW_AT_PGI_lstride"; | |
c906108c SS |
8293 | default: |
8294 | return "DW_AT_<unknown>"; | |
8295 | } | |
8296 | } | |
8297 | ||
8298 | /* Convert a DWARF value form code into its string name. */ | |
8299 | ||
8300 | static char * | |
aa1ee363 | 8301 | dwarf_form_name (unsigned form) |
c906108c SS |
8302 | { |
8303 | switch (form) | |
8304 | { | |
8305 | case DW_FORM_addr: | |
8306 | return "DW_FORM_addr"; | |
8307 | case DW_FORM_block2: | |
8308 | return "DW_FORM_block2"; | |
8309 | case DW_FORM_block4: | |
8310 | return "DW_FORM_block4"; | |
8311 | case DW_FORM_data2: | |
8312 | return "DW_FORM_data2"; | |
8313 | case DW_FORM_data4: | |
8314 | return "DW_FORM_data4"; | |
8315 | case DW_FORM_data8: | |
8316 | return "DW_FORM_data8"; | |
8317 | case DW_FORM_string: | |
8318 | return "DW_FORM_string"; | |
8319 | case DW_FORM_block: | |
8320 | return "DW_FORM_block"; | |
8321 | case DW_FORM_block1: | |
8322 | return "DW_FORM_block1"; | |
8323 | case DW_FORM_data1: | |
8324 | return "DW_FORM_data1"; | |
8325 | case DW_FORM_flag: | |
8326 | return "DW_FORM_flag"; | |
8327 | case DW_FORM_sdata: | |
8328 | return "DW_FORM_sdata"; | |
8329 | case DW_FORM_strp: | |
8330 | return "DW_FORM_strp"; | |
8331 | case DW_FORM_udata: | |
8332 | return "DW_FORM_udata"; | |
8333 | case DW_FORM_ref_addr: | |
8334 | return "DW_FORM_ref_addr"; | |
8335 | case DW_FORM_ref1: | |
8336 | return "DW_FORM_ref1"; | |
8337 | case DW_FORM_ref2: | |
8338 | return "DW_FORM_ref2"; | |
8339 | case DW_FORM_ref4: | |
8340 | return "DW_FORM_ref4"; | |
8341 | case DW_FORM_ref8: | |
8342 | return "DW_FORM_ref8"; | |
8343 | case DW_FORM_ref_udata: | |
8344 | return "DW_FORM_ref_udata"; | |
8345 | case DW_FORM_indirect: | |
8346 | return "DW_FORM_indirect"; | |
8347 | default: | |
8348 | return "DW_FORM_<unknown>"; | |
8349 | } | |
8350 | } | |
8351 | ||
8352 | /* Convert a DWARF stack opcode into its string name. */ | |
8353 | ||
8354 | static char * | |
aa1ee363 | 8355 | dwarf_stack_op_name (unsigned op) |
c906108c SS |
8356 | { |
8357 | switch (op) | |
8358 | { | |
8359 | case DW_OP_addr: | |
8360 | return "DW_OP_addr"; | |
8361 | case DW_OP_deref: | |
8362 | return "DW_OP_deref"; | |
8363 | case DW_OP_const1u: | |
8364 | return "DW_OP_const1u"; | |
8365 | case DW_OP_const1s: | |
8366 | return "DW_OP_const1s"; | |
8367 | case DW_OP_const2u: | |
8368 | return "DW_OP_const2u"; | |
8369 | case DW_OP_const2s: | |
8370 | return "DW_OP_const2s"; | |
8371 | case DW_OP_const4u: | |
8372 | return "DW_OP_const4u"; | |
8373 | case DW_OP_const4s: | |
8374 | return "DW_OP_const4s"; | |
8375 | case DW_OP_const8u: | |
8376 | return "DW_OP_const8u"; | |
8377 | case DW_OP_const8s: | |
8378 | return "DW_OP_const8s"; | |
8379 | case DW_OP_constu: | |
8380 | return "DW_OP_constu"; | |
8381 | case DW_OP_consts: | |
8382 | return "DW_OP_consts"; | |
8383 | case DW_OP_dup: | |
8384 | return "DW_OP_dup"; | |
8385 | case DW_OP_drop: | |
8386 | return "DW_OP_drop"; | |
8387 | case DW_OP_over: | |
8388 | return "DW_OP_over"; | |
8389 | case DW_OP_pick: | |
8390 | return "DW_OP_pick"; | |
8391 | case DW_OP_swap: | |
8392 | return "DW_OP_swap"; | |
8393 | case DW_OP_rot: | |
8394 | return "DW_OP_rot"; | |
8395 | case DW_OP_xderef: | |
8396 | return "DW_OP_xderef"; | |
8397 | case DW_OP_abs: | |
8398 | return "DW_OP_abs"; | |
8399 | case DW_OP_and: | |
8400 | return "DW_OP_and"; | |
8401 | case DW_OP_div: | |
8402 | return "DW_OP_div"; | |
8403 | case DW_OP_minus: | |
8404 | return "DW_OP_minus"; | |
8405 | case DW_OP_mod: | |
8406 | return "DW_OP_mod"; | |
8407 | case DW_OP_mul: | |
8408 | return "DW_OP_mul"; | |
8409 | case DW_OP_neg: | |
8410 | return "DW_OP_neg"; | |
8411 | case DW_OP_not: | |
8412 | return "DW_OP_not"; | |
8413 | case DW_OP_or: | |
8414 | return "DW_OP_or"; | |
8415 | case DW_OP_plus: | |
8416 | return "DW_OP_plus"; | |
8417 | case DW_OP_plus_uconst: | |
8418 | return "DW_OP_plus_uconst"; | |
8419 | case DW_OP_shl: | |
8420 | return "DW_OP_shl"; | |
8421 | case DW_OP_shr: | |
8422 | return "DW_OP_shr"; | |
8423 | case DW_OP_shra: | |
8424 | return "DW_OP_shra"; | |
8425 | case DW_OP_xor: | |
8426 | return "DW_OP_xor"; | |
8427 | case DW_OP_bra: | |
8428 | return "DW_OP_bra"; | |
8429 | case DW_OP_eq: | |
8430 | return "DW_OP_eq"; | |
8431 | case DW_OP_ge: | |
8432 | return "DW_OP_ge"; | |
8433 | case DW_OP_gt: | |
8434 | return "DW_OP_gt"; | |
8435 | case DW_OP_le: | |
8436 | return "DW_OP_le"; | |
8437 | case DW_OP_lt: | |
8438 | return "DW_OP_lt"; | |
8439 | case DW_OP_ne: | |
8440 | return "DW_OP_ne"; | |
8441 | case DW_OP_skip: | |
8442 | return "DW_OP_skip"; | |
8443 | case DW_OP_lit0: | |
8444 | return "DW_OP_lit0"; | |
8445 | case DW_OP_lit1: | |
8446 | return "DW_OP_lit1"; | |
8447 | case DW_OP_lit2: | |
8448 | return "DW_OP_lit2"; | |
8449 | case DW_OP_lit3: | |
8450 | return "DW_OP_lit3"; | |
8451 | case DW_OP_lit4: | |
8452 | return "DW_OP_lit4"; | |
8453 | case DW_OP_lit5: | |
8454 | return "DW_OP_lit5"; | |
8455 | case DW_OP_lit6: | |
8456 | return "DW_OP_lit6"; | |
8457 | case DW_OP_lit7: | |
8458 | return "DW_OP_lit7"; | |
8459 | case DW_OP_lit8: | |
8460 | return "DW_OP_lit8"; | |
8461 | case DW_OP_lit9: | |
8462 | return "DW_OP_lit9"; | |
8463 | case DW_OP_lit10: | |
8464 | return "DW_OP_lit10"; | |
8465 | case DW_OP_lit11: | |
8466 | return "DW_OP_lit11"; | |
8467 | case DW_OP_lit12: | |
8468 | return "DW_OP_lit12"; | |
8469 | case DW_OP_lit13: | |
8470 | return "DW_OP_lit13"; | |
8471 | case DW_OP_lit14: | |
8472 | return "DW_OP_lit14"; | |
8473 | case DW_OP_lit15: | |
8474 | return "DW_OP_lit15"; | |
8475 | case DW_OP_lit16: | |
8476 | return "DW_OP_lit16"; | |
8477 | case DW_OP_lit17: | |
8478 | return "DW_OP_lit17"; | |
8479 | case DW_OP_lit18: | |
8480 | return "DW_OP_lit18"; | |
8481 | case DW_OP_lit19: | |
8482 | return "DW_OP_lit19"; | |
8483 | case DW_OP_lit20: | |
8484 | return "DW_OP_lit20"; | |
8485 | case DW_OP_lit21: | |
8486 | return "DW_OP_lit21"; | |
8487 | case DW_OP_lit22: | |
8488 | return "DW_OP_lit22"; | |
8489 | case DW_OP_lit23: | |
8490 | return "DW_OP_lit23"; | |
8491 | case DW_OP_lit24: | |
8492 | return "DW_OP_lit24"; | |
8493 | case DW_OP_lit25: | |
8494 | return "DW_OP_lit25"; | |
8495 | case DW_OP_lit26: | |
8496 | return "DW_OP_lit26"; | |
8497 | case DW_OP_lit27: | |
8498 | return "DW_OP_lit27"; | |
8499 | case DW_OP_lit28: | |
8500 | return "DW_OP_lit28"; | |
8501 | case DW_OP_lit29: | |
8502 | return "DW_OP_lit29"; | |
8503 | case DW_OP_lit30: | |
8504 | return "DW_OP_lit30"; | |
8505 | case DW_OP_lit31: | |
8506 | return "DW_OP_lit31"; | |
8507 | case DW_OP_reg0: | |
8508 | return "DW_OP_reg0"; | |
8509 | case DW_OP_reg1: | |
8510 | return "DW_OP_reg1"; | |
8511 | case DW_OP_reg2: | |
8512 | return "DW_OP_reg2"; | |
8513 | case DW_OP_reg3: | |
8514 | return "DW_OP_reg3"; | |
8515 | case DW_OP_reg4: | |
8516 | return "DW_OP_reg4"; | |
8517 | case DW_OP_reg5: | |
8518 | return "DW_OP_reg5"; | |
8519 | case DW_OP_reg6: | |
8520 | return "DW_OP_reg6"; | |
8521 | case DW_OP_reg7: | |
8522 | return "DW_OP_reg7"; | |
8523 | case DW_OP_reg8: | |
8524 | return "DW_OP_reg8"; | |
8525 | case DW_OP_reg9: | |
8526 | return "DW_OP_reg9"; | |
8527 | case DW_OP_reg10: | |
8528 | return "DW_OP_reg10"; | |
8529 | case DW_OP_reg11: | |
8530 | return "DW_OP_reg11"; | |
8531 | case DW_OP_reg12: | |
8532 | return "DW_OP_reg12"; | |
8533 | case DW_OP_reg13: | |
8534 | return "DW_OP_reg13"; | |
8535 | case DW_OP_reg14: | |
8536 | return "DW_OP_reg14"; | |
8537 | case DW_OP_reg15: | |
8538 | return "DW_OP_reg15"; | |
8539 | case DW_OP_reg16: | |
8540 | return "DW_OP_reg16"; | |
8541 | case DW_OP_reg17: | |
8542 | return "DW_OP_reg17"; | |
8543 | case DW_OP_reg18: | |
8544 | return "DW_OP_reg18"; | |
8545 | case DW_OP_reg19: | |
8546 | return "DW_OP_reg19"; | |
8547 | case DW_OP_reg20: | |
8548 | return "DW_OP_reg20"; | |
8549 | case DW_OP_reg21: | |
8550 | return "DW_OP_reg21"; | |
8551 | case DW_OP_reg22: | |
8552 | return "DW_OP_reg22"; | |
8553 | case DW_OP_reg23: | |
8554 | return "DW_OP_reg23"; | |
8555 | case DW_OP_reg24: | |
8556 | return "DW_OP_reg24"; | |
8557 | case DW_OP_reg25: | |
8558 | return "DW_OP_reg25"; | |
8559 | case DW_OP_reg26: | |
8560 | return "DW_OP_reg26"; | |
8561 | case DW_OP_reg27: | |
8562 | return "DW_OP_reg27"; | |
8563 | case DW_OP_reg28: | |
8564 | return "DW_OP_reg28"; | |
8565 | case DW_OP_reg29: | |
8566 | return "DW_OP_reg29"; | |
8567 | case DW_OP_reg30: | |
8568 | return "DW_OP_reg30"; | |
8569 | case DW_OP_reg31: | |
8570 | return "DW_OP_reg31"; | |
8571 | case DW_OP_breg0: | |
8572 | return "DW_OP_breg0"; | |
8573 | case DW_OP_breg1: | |
8574 | return "DW_OP_breg1"; | |
8575 | case DW_OP_breg2: | |
8576 | return "DW_OP_breg2"; | |
8577 | case DW_OP_breg3: | |
8578 | return "DW_OP_breg3"; | |
8579 | case DW_OP_breg4: | |
8580 | return "DW_OP_breg4"; | |
8581 | case DW_OP_breg5: | |
8582 | return "DW_OP_breg5"; | |
8583 | case DW_OP_breg6: | |
8584 | return "DW_OP_breg6"; | |
8585 | case DW_OP_breg7: | |
8586 | return "DW_OP_breg7"; | |
8587 | case DW_OP_breg8: | |
8588 | return "DW_OP_breg8"; | |
8589 | case DW_OP_breg9: | |
8590 | return "DW_OP_breg9"; | |
8591 | case DW_OP_breg10: | |
8592 | return "DW_OP_breg10"; | |
8593 | case DW_OP_breg11: | |
8594 | return "DW_OP_breg11"; | |
8595 | case DW_OP_breg12: | |
8596 | return "DW_OP_breg12"; | |
8597 | case DW_OP_breg13: | |
8598 | return "DW_OP_breg13"; | |
8599 | case DW_OP_breg14: | |
8600 | return "DW_OP_breg14"; | |
8601 | case DW_OP_breg15: | |
8602 | return "DW_OP_breg15"; | |
8603 | case DW_OP_breg16: | |
8604 | return "DW_OP_breg16"; | |
8605 | case DW_OP_breg17: | |
8606 | return "DW_OP_breg17"; | |
8607 | case DW_OP_breg18: | |
8608 | return "DW_OP_breg18"; | |
8609 | case DW_OP_breg19: | |
8610 | return "DW_OP_breg19"; | |
8611 | case DW_OP_breg20: | |
8612 | return "DW_OP_breg20"; | |
8613 | case DW_OP_breg21: | |
8614 | return "DW_OP_breg21"; | |
8615 | case DW_OP_breg22: | |
8616 | return "DW_OP_breg22"; | |
8617 | case DW_OP_breg23: | |
8618 | return "DW_OP_breg23"; | |
8619 | case DW_OP_breg24: | |
8620 | return "DW_OP_breg24"; | |
8621 | case DW_OP_breg25: | |
8622 | return "DW_OP_breg25"; | |
8623 | case DW_OP_breg26: | |
8624 | return "DW_OP_breg26"; | |
8625 | case DW_OP_breg27: | |
8626 | return "DW_OP_breg27"; | |
8627 | case DW_OP_breg28: | |
8628 | return "DW_OP_breg28"; | |
8629 | case DW_OP_breg29: | |
8630 | return "DW_OP_breg29"; | |
8631 | case DW_OP_breg30: | |
8632 | return "DW_OP_breg30"; | |
8633 | case DW_OP_breg31: | |
8634 | return "DW_OP_breg31"; | |
8635 | case DW_OP_regx: | |
8636 | return "DW_OP_regx"; | |
8637 | case DW_OP_fbreg: | |
8638 | return "DW_OP_fbreg"; | |
8639 | case DW_OP_bregx: | |
8640 | return "DW_OP_bregx"; | |
8641 | case DW_OP_piece: | |
8642 | return "DW_OP_piece"; | |
8643 | case DW_OP_deref_size: | |
8644 | return "DW_OP_deref_size"; | |
8645 | case DW_OP_xderef_size: | |
8646 | return "DW_OP_xderef_size"; | |
8647 | case DW_OP_nop: | |
8648 | return "DW_OP_nop"; | |
b7619582 | 8649 | /* DWARF 3 extensions. */ |
ed348acc EZ |
8650 | case DW_OP_push_object_address: |
8651 | return "DW_OP_push_object_address"; | |
8652 | case DW_OP_call2: | |
8653 | return "DW_OP_call2"; | |
8654 | case DW_OP_call4: | |
8655 | return "DW_OP_call4"; | |
8656 | case DW_OP_call_ref: | |
8657 | return "DW_OP_call_ref"; | |
b7619582 GF |
8658 | /* GNU extensions. */ |
8659 | case DW_OP_form_tls_address: | |
8660 | return "DW_OP_form_tls_address"; | |
8661 | case DW_OP_call_frame_cfa: | |
8662 | return "DW_OP_call_frame_cfa"; | |
8663 | case DW_OP_bit_piece: | |
8664 | return "DW_OP_bit_piece"; | |
ed348acc EZ |
8665 | case DW_OP_GNU_push_tls_address: |
8666 | return "DW_OP_GNU_push_tls_address"; | |
42be36b3 CT |
8667 | case DW_OP_GNU_uninit: |
8668 | return "DW_OP_GNU_uninit"; | |
b7619582 GF |
8669 | /* HP extensions. */ |
8670 | case DW_OP_HP_is_value: | |
8671 | return "DW_OP_HP_is_value"; | |
8672 | case DW_OP_HP_fltconst4: | |
8673 | return "DW_OP_HP_fltconst4"; | |
8674 | case DW_OP_HP_fltconst8: | |
8675 | return "DW_OP_HP_fltconst8"; | |
8676 | case DW_OP_HP_mod_range: | |
8677 | return "DW_OP_HP_mod_range"; | |
8678 | case DW_OP_HP_unmod_range: | |
8679 | return "DW_OP_HP_unmod_range"; | |
8680 | case DW_OP_HP_tls: | |
8681 | return "DW_OP_HP_tls"; | |
c906108c SS |
8682 | default: |
8683 | return "OP_<unknown>"; | |
8684 | } | |
8685 | } | |
8686 | ||
8687 | static char * | |
fba45db2 | 8688 | dwarf_bool_name (unsigned mybool) |
c906108c SS |
8689 | { |
8690 | if (mybool) | |
8691 | return "TRUE"; | |
8692 | else | |
8693 | return "FALSE"; | |
8694 | } | |
8695 | ||
8696 | /* Convert a DWARF type code into its string name. */ | |
8697 | ||
8698 | static char * | |
aa1ee363 | 8699 | dwarf_type_encoding_name (unsigned enc) |
c906108c SS |
8700 | { |
8701 | switch (enc) | |
8702 | { | |
b7619582 GF |
8703 | case DW_ATE_void: |
8704 | return "DW_ATE_void"; | |
c906108c SS |
8705 | case DW_ATE_address: |
8706 | return "DW_ATE_address"; | |
8707 | case DW_ATE_boolean: | |
8708 | return "DW_ATE_boolean"; | |
8709 | case DW_ATE_complex_float: | |
8710 | return "DW_ATE_complex_float"; | |
8711 | case DW_ATE_float: | |
8712 | return "DW_ATE_float"; | |
8713 | case DW_ATE_signed: | |
8714 | return "DW_ATE_signed"; | |
8715 | case DW_ATE_signed_char: | |
8716 | return "DW_ATE_signed_char"; | |
8717 | case DW_ATE_unsigned: | |
8718 | return "DW_ATE_unsigned"; | |
8719 | case DW_ATE_unsigned_char: | |
8720 | return "DW_ATE_unsigned_char"; | |
b7619582 | 8721 | /* DWARF 3. */ |
d9fa45fe DC |
8722 | case DW_ATE_imaginary_float: |
8723 | return "DW_ATE_imaginary_float"; | |
b7619582 GF |
8724 | case DW_ATE_packed_decimal: |
8725 | return "DW_ATE_packed_decimal"; | |
8726 | case DW_ATE_numeric_string: | |
8727 | return "DW_ATE_numeric_string"; | |
8728 | case DW_ATE_edited: | |
8729 | return "DW_ATE_edited"; | |
8730 | case DW_ATE_signed_fixed: | |
8731 | return "DW_ATE_signed_fixed"; | |
8732 | case DW_ATE_unsigned_fixed: | |
8733 | return "DW_ATE_unsigned_fixed"; | |
8734 | case DW_ATE_decimal_float: | |
8735 | return "DW_ATE_decimal_float"; | |
8736 | /* HP extensions. */ | |
8737 | case DW_ATE_HP_float80: | |
8738 | return "DW_ATE_HP_float80"; | |
8739 | case DW_ATE_HP_complex_float80: | |
8740 | return "DW_ATE_HP_complex_float80"; | |
8741 | case DW_ATE_HP_float128: | |
8742 | return "DW_ATE_HP_float128"; | |
8743 | case DW_ATE_HP_complex_float128: | |
8744 | return "DW_ATE_HP_complex_float128"; | |
8745 | case DW_ATE_HP_floathpintel: | |
8746 | return "DW_ATE_HP_floathpintel"; | |
8747 | case DW_ATE_HP_imaginary_float80: | |
8748 | return "DW_ATE_HP_imaginary_float80"; | |
8749 | case DW_ATE_HP_imaginary_float128: | |
8750 | return "DW_ATE_HP_imaginary_float128"; | |
c906108c SS |
8751 | default: |
8752 | return "DW_ATE_<unknown>"; | |
8753 | } | |
8754 | } | |
8755 | ||
8756 | /* Convert a DWARF call frame info operation to its string name. */ | |
8757 | ||
8758 | #if 0 | |
8759 | static char * | |
aa1ee363 | 8760 | dwarf_cfi_name (unsigned cfi_opc) |
c906108c SS |
8761 | { |
8762 | switch (cfi_opc) | |
8763 | { | |
8764 | case DW_CFA_advance_loc: | |
8765 | return "DW_CFA_advance_loc"; | |
8766 | case DW_CFA_offset: | |
8767 | return "DW_CFA_offset"; | |
8768 | case DW_CFA_restore: | |
8769 | return "DW_CFA_restore"; | |
8770 | case DW_CFA_nop: | |
8771 | return "DW_CFA_nop"; | |
8772 | case DW_CFA_set_loc: | |
8773 | return "DW_CFA_set_loc"; | |
8774 | case DW_CFA_advance_loc1: | |
8775 | return "DW_CFA_advance_loc1"; | |
8776 | case DW_CFA_advance_loc2: | |
8777 | return "DW_CFA_advance_loc2"; | |
8778 | case DW_CFA_advance_loc4: | |
8779 | return "DW_CFA_advance_loc4"; | |
8780 | case DW_CFA_offset_extended: | |
8781 | return "DW_CFA_offset_extended"; | |
8782 | case DW_CFA_restore_extended: | |
8783 | return "DW_CFA_restore_extended"; | |
8784 | case DW_CFA_undefined: | |
8785 | return "DW_CFA_undefined"; | |
8786 | case DW_CFA_same_value: | |
8787 | return "DW_CFA_same_value"; | |
8788 | case DW_CFA_register: | |
8789 | return "DW_CFA_register"; | |
8790 | case DW_CFA_remember_state: | |
8791 | return "DW_CFA_remember_state"; | |
8792 | case DW_CFA_restore_state: | |
8793 | return "DW_CFA_restore_state"; | |
8794 | case DW_CFA_def_cfa: | |
8795 | return "DW_CFA_def_cfa"; | |
8796 | case DW_CFA_def_cfa_register: | |
8797 | return "DW_CFA_def_cfa_register"; | |
8798 | case DW_CFA_def_cfa_offset: | |
8799 | return "DW_CFA_def_cfa_offset"; | |
b7619582 | 8800 | /* DWARF 3. */ |
985cb1a3 JM |
8801 | case DW_CFA_def_cfa_expression: |
8802 | return "DW_CFA_def_cfa_expression"; | |
8803 | case DW_CFA_expression: | |
8804 | return "DW_CFA_expression"; | |
8805 | case DW_CFA_offset_extended_sf: | |
8806 | return "DW_CFA_offset_extended_sf"; | |
8807 | case DW_CFA_def_cfa_sf: | |
8808 | return "DW_CFA_def_cfa_sf"; | |
8809 | case DW_CFA_def_cfa_offset_sf: | |
8810 | return "DW_CFA_def_cfa_offset_sf"; | |
b7619582 GF |
8811 | case DW_CFA_val_offset: |
8812 | return "DW_CFA_val_offset"; | |
8813 | case DW_CFA_val_offset_sf: | |
8814 | return "DW_CFA_val_offset_sf"; | |
8815 | case DW_CFA_val_expression: | |
8816 | return "DW_CFA_val_expression"; | |
8817 | /* SGI/MIPS specific. */ | |
c906108c SS |
8818 | case DW_CFA_MIPS_advance_loc8: |
8819 | return "DW_CFA_MIPS_advance_loc8"; | |
b7619582 | 8820 | /* GNU extensions. */ |
985cb1a3 JM |
8821 | case DW_CFA_GNU_window_save: |
8822 | return "DW_CFA_GNU_window_save"; | |
8823 | case DW_CFA_GNU_args_size: | |
8824 | return "DW_CFA_GNU_args_size"; | |
8825 | case DW_CFA_GNU_negative_offset_extended: | |
8826 | return "DW_CFA_GNU_negative_offset_extended"; | |
c906108c SS |
8827 | default: |
8828 | return "DW_CFA_<unknown>"; | |
8829 | } | |
8830 | } | |
8831 | #endif | |
8832 | ||
f9aca02d | 8833 | static void |
fba45db2 | 8834 | dump_die (struct die_info *die) |
c906108c SS |
8835 | { |
8836 | unsigned int i; | |
8837 | ||
48cd0caa | 8838 | fprintf_unfiltered (gdb_stderr, "Die: %s (abbrev = %d, offset = %d)\n", |
c906108c | 8839 | dwarf_tag_name (die->tag), die->abbrev, die->offset); |
48cd0caa | 8840 | fprintf_unfiltered (gdb_stderr, "\thas children: %s\n", |
639d11d3 | 8841 | dwarf_bool_name (die->child != NULL)); |
c906108c | 8842 | |
48cd0caa | 8843 | fprintf_unfiltered (gdb_stderr, "\tattributes:\n"); |
c906108c SS |
8844 | for (i = 0; i < die->num_attrs; ++i) |
8845 | { | |
48cd0caa | 8846 | fprintf_unfiltered (gdb_stderr, "\t\t%s (%s) ", |
c906108c SS |
8847 | dwarf_attr_name (die->attrs[i].name), |
8848 | dwarf_form_name (die->attrs[i].form)); | |
8849 | switch (die->attrs[i].form) | |
8850 | { | |
8851 | case DW_FORM_ref_addr: | |
8852 | case DW_FORM_addr: | |
48cd0caa | 8853 | fprintf_unfiltered (gdb_stderr, "address: "); |
66bf4b3a | 8854 | deprecated_print_address_numeric (DW_ADDR (&die->attrs[i]), 1, gdb_stderr); |
c906108c SS |
8855 | break; |
8856 | case DW_FORM_block2: | |
8857 | case DW_FORM_block4: | |
8858 | case DW_FORM_block: | |
8859 | case DW_FORM_block1: | |
48cd0caa | 8860 | fprintf_unfiltered (gdb_stderr, "block: size %d", DW_BLOCK (&die->attrs[i])->size); |
c906108c | 8861 | break; |
10b3939b DJ |
8862 | case DW_FORM_ref1: |
8863 | case DW_FORM_ref2: | |
8864 | case DW_FORM_ref4: | |
8865 | fprintf_unfiltered (gdb_stderr, "constant ref: %ld (adjusted)", | |
8866 | (long) (DW_ADDR (&die->attrs[i]))); | |
8867 | break; | |
c906108c SS |
8868 | case DW_FORM_data1: |
8869 | case DW_FORM_data2: | |
8870 | case DW_FORM_data4: | |
ce5d95e1 | 8871 | case DW_FORM_data8: |
c906108c SS |
8872 | case DW_FORM_udata: |
8873 | case DW_FORM_sdata: | |
48cd0caa | 8874 | fprintf_unfiltered (gdb_stderr, "constant: %ld", DW_UNSND (&die->attrs[i])); |
c906108c SS |
8875 | break; |
8876 | case DW_FORM_string: | |
4bdf3d34 | 8877 | case DW_FORM_strp: |
48cd0caa | 8878 | fprintf_unfiltered (gdb_stderr, "string: \"%s\"", |
c906108c | 8879 | DW_STRING (&die->attrs[i]) |
c5aa993b | 8880 | ? DW_STRING (&die->attrs[i]) : ""); |
c906108c SS |
8881 | break; |
8882 | case DW_FORM_flag: | |
8883 | if (DW_UNSND (&die->attrs[i])) | |
48cd0caa | 8884 | fprintf_unfiltered (gdb_stderr, "flag: TRUE"); |
c906108c | 8885 | else |
48cd0caa | 8886 | fprintf_unfiltered (gdb_stderr, "flag: FALSE"); |
c906108c | 8887 | break; |
a8329558 KW |
8888 | case DW_FORM_indirect: |
8889 | /* the reader will have reduced the indirect form to | |
8890 | the "base form" so this form should not occur */ | |
48cd0caa | 8891 | fprintf_unfiltered (gdb_stderr, "unexpected attribute form: DW_FORM_indirect"); |
a8329558 | 8892 | break; |
c906108c | 8893 | default: |
48cd0caa | 8894 | fprintf_unfiltered (gdb_stderr, "unsupported attribute form: %d.", |
c5aa993b | 8895 | die->attrs[i].form); |
c906108c | 8896 | } |
48cd0caa | 8897 | fprintf_unfiltered (gdb_stderr, "\n"); |
c906108c SS |
8898 | } |
8899 | } | |
8900 | ||
f9aca02d | 8901 | static void |
fba45db2 | 8902 | dump_die_list (struct die_info *die) |
c906108c SS |
8903 | { |
8904 | while (die) | |
8905 | { | |
8906 | dump_die (die); | |
639d11d3 DC |
8907 | if (die->child != NULL) |
8908 | dump_die_list (die->child); | |
8909 | if (die->sibling != NULL) | |
8910 | dump_die_list (die->sibling); | |
c906108c SS |
8911 | } |
8912 | } | |
8913 | ||
f9aca02d | 8914 | static void |
10b3939b DJ |
8915 | store_in_ref_table (unsigned int offset, struct die_info *die, |
8916 | struct dwarf2_cu *cu) | |
c906108c SS |
8917 | { |
8918 | int h; | |
8919 | struct die_info *old; | |
8920 | ||
8921 | h = (offset % REF_HASH_SIZE); | |
10b3939b | 8922 | old = cu->die_ref_table[h]; |
c906108c | 8923 | die->next_ref = old; |
10b3939b | 8924 | cu->die_ref_table[h] = die; |
c906108c SS |
8925 | } |
8926 | ||
8927 | static unsigned int | |
e142c38c | 8928 | dwarf2_get_ref_die_offset (struct attribute *attr, struct dwarf2_cu *cu) |
c906108c SS |
8929 | { |
8930 | unsigned int result = 0; | |
8931 | ||
8932 | switch (attr->form) | |
8933 | { | |
8934 | case DW_FORM_ref_addr: | |
c906108c SS |
8935 | case DW_FORM_ref1: |
8936 | case DW_FORM_ref2: | |
8937 | case DW_FORM_ref4: | |
613e1657 | 8938 | case DW_FORM_ref8: |
c906108c | 8939 | case DW_FORM_ref_udata: |
10b3939b | 8940 | result = DW_ADDR (attr); |
c906108c SS |
8941 | break; |
8942 | default: | |
4d3c2250 | 8943 | complaint (&symfile_complaints, |
e2e0b3e5 | 8944 | _("unsupported die ref attribute form: '%s'"), |
4d3c2250 | 8945 | dwarf_form_name (attr->form)); |
c906108c SS |
8946 | } |
8947 | return result; | |
8948 | } | |
8949 | ||
a02abb62 JB |
8950 | /* Return the constant value held by the given attribute. Return -1 |
8951 | if the value held by the attribute is not constant. */ | |
8952 | ||
8953 | static int | |
8954 | dwarf2_get_attr_constant_value (struct attribute *attr, int default_value) | |
8955 | { | |
8956 | if (attr->form == DW_FORM_sdata) | |
8957 | return DW_SND (attr); | |
8958 | else if (attr->form == DW_FORM_udata | |
8959 | || attr->form == DW_FORM_data1 | |
8960 | || attr->form == DW_FORM_data2 | |
8961 | || attr->form == DW_FORM_data4 | |
8962 | || attr->form == DW_FORM_data8) | |
8963 | return DW_UNSND (attr); | |
8964 | else | |
8965 | { | |
e2e0b3e5 | 8966 | complaint (&symfile_complaints, _("Attribute value is not a constant (%s)"), |
a02abb62 JB |
8967 | dwarf_form_name (attr->form)); |
8968 | return default_value; | |
8969 | } | |
8970 | } | |
8971 | ||
f9aca02d | 8972 | static struct die_info * |
10b3939b DJ |
8973 | follow_die_ref (struct die_info *src_die, struct attribute *attr, |
8974 | struct dwarf2_cu *cu) | |
c906108c SS |
8975 | { |
8976 | struct die_info *die; | |
10b3939b | 8977 | unsigned int offset; |
c906108c | 8978 | int h; |
10b3939b DJ |
8979 | struct die_info temp_die; |
8980 | struct dwarf2_cu *target_cu; | |
8981 | ||
8982 | offset = dwarf2_get_ref_die_offset (attr, cu); | |
8983 | ||
8984 | if (DW_ADDR (attr) < cu->header.offset | |
8985 | || DW_ADDR (attr) >= cu->header.offset + cu->header.length) | |
8986 | { | |
8987 | struct dwarf2_per_cu_data *per_cu; | |
8988 | per_cu = dwarf2_find_containing_comp_unit (DW_ADDR (attr), | |
8989 | cu->objfile); | |
8990 | target_cu = per_cu->cu; | |
8991 | } | |
8992 | else | |
8993 | target_cu = cu; | |
c906108c SS |
8994 | |
8995 | h = (offset % REF_HASH_SIZE); | |
10b3939b | 8996 | die = target_cu->die_ref_table[h]; |
c906108c SS |
8997 | while (die) |
8998 | { | |
8999 | if (die->offset == offset) | |
10b3939b | 9000 | return die; |
c906108c SS |
9001 | die = die->next_ref; |
9002 | } | |
10b3939b | 9003 | |
8a3fe4f8 AC |
9004 | error (_("Dwarf Error: Cannot find DIE at 0x%lx referenced from DIE " |
9005 | "at 0x%lx [in module %s]"), | |
10b3939b DJ |
9006 | (long) src_die->offset, (long) offset, cu->objfile->name); |
9007 | ||
c906108c SS |
9008 | return NULL; |
9009 | } | |
9010 | ||
9011 | static struct type * | |
e142c38c DJ |
9012 | dwarf2_fundamental_type (struct objfile *objfile, int typeid, |
9013 | struct dwarf2_cu *cu) | |
c906108c SS |
9014 | { |
9015 | if (typeid < 0 || typeid >= FT_NUM_MEMBERS) | |
9016 | { | |
8a3fe4f8 | 9017 | error (_("Dwarf Error: internal error - invalid fundamental type id %d [in module %s]"), |
659b0389 | 9018 | typeid, objfile->name); |
c906108c SS |
9019 | } |
9020 | ||
9021 | /* Look for this particular type in the fundamental type vector. If | |
9022 | one is not found, create and install one appropriate for the | |
9023 | current language and the current target machine. */ | |
9024 | ||
e142c38c | 9025 | if (cu->ftypes[typeid] == NULL) |
c906108c | 9026 | { |
e142c38c | 9027 | cu->ftypes[typeid] = cu->language_defn->la_fund_type (objfile, typeid); |
c906108c SS |
9028 | } |
9029 | ||
e142c38c | 9030 | return (cu->ftypes[typeid]); |
c906108c SS |
9031 | } |
9032 | ||
9033 | /* Decode simple location descriptions. | |
9034 | Given a pointer to a dwarf block that defines a location, compute | |
9035 | the location and return the value. | |
9036 | ||
4cecd739 DJ |
9037 | NOTE drow/2003-11-18: This function is called in two situations |
9038 | now: for the address of static or global variables (partial symbols | |
9039 | only) and for offsets into structures which are expected to be | |
9040 | (more or less) constant. The partial symbol case should go away, | |
9041 | and only the constant case should remain. That will let this | |
9042 | function complain more accurately. A few special modes are allowed | |
9043 | without complaint for global variables (for instance, global | |
9044 | register values and thread-local values). | |
c906108c SS |
9045 | |
9046 | A location description containing no operations indicates that the | |
4cecd739 | 9047 | object is optimized out. The return value is 0 for that case. |
6b992462 DJ |
9048 | FIXME drow/2003-11-16: No callers check for this case any more; soon all |
9049 | callers will only want a very basic result and this can become a | |
9050 | complaint. | |
c906108c | 9051 | |
c906108c SS |
9052 | Note that stack[0] is unused except as a default error return. |
9053 | Note that stack overflow is not yet handled. */ | |
9054 | ||
9055 | static CORE_ADDR | |
e7c27a73 | 9056 | decode_locdesc (struct dwarf_block *blk, struct dwarf2_cu *cu) |
c906108c | 9057 | { |
e7c27a73 DJ |
9058 | struct objfile *objfile = cu->objfile; |
9059 | struct comp_unit_head *cu_header = &cu->header; | |
c906108c SS |
9060 | int i; |
9061 | int size = blk->size; | |
fe1b8b76 | 9062 | gdb_byte *data = blk->data; |
c906108c SS |
9063 | CORE_ADDR stack[64]; |
9064 | int stacki; | |
9065 | unsigned int bytes_read, unsnd; | |
fe1b8b76 | 9066 | gdb_byte op; |
c906108c SS |
9067 | |
9068 | i = 0; | |
9069 | stacki = 0; | |
9070 | stack[stacki] = 0; | |
c906108c SS |
9071 | |
9072 | while (i < size) | |
9073 | { | |
c906108c SS |
9074 | op = data[i++]; |
9075 | switch (op) | |
9076 | { | |
f1bea926 JM |
9077 | case DW_OP_lit0: |
9078 | case DW_OP_lit1: | |
9079 | case DW_OP_lit2: | |
9080 | case DW_OP_lit3: | |
9081 | case DW_OP_lit4: | |
9082 | case DW_OP_lit5: | |
9083 | case DW_OP_lit6: | |
9084 | case DW_OP_lit7: | |
9085 | case DW_OP_lit8: | |
9086 | case DW_OP_lit9: | |
9087 | case DW_OP_lit10: | |
9088 | case DW_OP_lit11: | |
9089 | case DW_OP_lit12: | |
9090 | case DW_OP_lit13: | |
9091 | case DW_OP_lit14: | |
9092 | case DW_OP_lit15: | |
9093 | case DW_OP_lit16: | |
9094 | case DW_OP_lit17: | |
9095 | case DW_OP_lit18: | |
9096 | case DW_OP_lit19: | |
9097 | case DW_OP_lit20: | |
9098 | case DW_OP_lit21: | |
9099 | case DW_OP_lit22: | |
9100 | case DW_OP_lit23: | |
9101 | case DW_OP_lit24: | |
9102 | case DW_OP_lit25: | |
9103 | case DW_OP_lit26: | |
9104 | case DW_OP_lit27: | |
9105 | case DW_OP_lit28: | |
9106 | case DW_OP_lit29: | |
9107 | case DW_OP_lit30: | |
9108 | case DW_OP_lit31: | |
9109 | stack[++stacki] = op - DW_OP_lit0; | |
9110 | break; | |
9111 | ||
c906108c SS |
9112 | case DW_OP_reg0: |
9113 | case DW_OP_reg1: | |
9114 | case DW_OP_reg2: | |
9115 | case DW_OP_reg3: | |
9116 | case DW_OP_reg4: | |
9117 | case DW_OP_reg5: | |
9118 | case DW_OP_reg6: | |
9119 | case DW_OP_reg7: | |
9120 | case DW_OP_reg8: | |
9121 | case DW_OP_reg9: | |
9122 | case DW_OP_reg10: | |
9123 | case DW_OP_reg11: | |
9124 | case DW_OP_reg12: | |
9125 | case DW_OP_reg13: | |
9126 | case DW_OP_reg14: | |
9127 | case DW_OP_reg15: | |
9128 | case DW_OP_reg16: | |
9129 | case DW_OP_reg17: | |
9130 | case DW_OP_reg18: | |
9131 | case DW_OP_reg19: | |
9132 | case DW_OP_reg20: | |
9133 | case DW_OP_reg21: | |
9134 | case DW_OP_reg22: | |
9135 | case DW_OP_reg23: | |
9136 | case DW_OP_reg24: | |
9137 | case DW_OP_reg25: | |
9138 | case DW_OP_reg26: | |
9139 | case DW_OP_reg27: | |
9140 | case DW_OP_reg28: | |
9141 | case DW_OP_reg29: | |
9142 | case DW_OP_reg30: | |
9143 | case DW_OP_reg31: | |
c906108c | 9144 | stack[++stacki] = op - DW_OP_reg0; |
4cecd739 DJ |
9145 | if (i < size) |
9146 | dwarf2_complex_location_expr_complaint (); | |
c906108c SS |
9147 | break; |
9148 | ||
9149 | case DW_OP_regx: | |
c906108c SS |
9150 | unsnd = read_unsigned_leb128 (NULL, (data + i), &bytes_read); |
9151 | i += bytes_read; | |
c906108c | 9152 | stack[++stacki] = unsnd; |
4cecd739 DJ |
9153 | if (i < size) |
9154 | dwarf2_complex_location_expr_complaint (); | |
c906108c SS |
9155 | break; |
9156 | ||
9157 | case DW_OP_addr: | |
107d2387 | 9158 | stack[++stacki] = read_address (objfile->obfd, &data[i], |
e7c27a73 | 9159 | cu, &bytes_read); |
107d2387 | 9160 | i += bytes_read; |
c906108c SS |
9161 | break; |
9162 | ||
9163 | case DW_OP_const1u: | |
9164 | stack[++stacki] = read_1_byte (objfile->obfd, &data[i]); | |
9165 | i += 1; | |
9166 | break; | |
9167 | ||
9168 | case DW_OP_const1s: | |
9169 | stack[++stacki] = read_1_signed_byte (objfile->obfd, &data[i]); | |
9170 | i += 1; | |
9171 | break; | |
9172 | ||
9173 | case DW_OP_const2u: | |
9174 | stack[++stacki] = read_2_bytes (objfile->obfd, &data[i]); | |
9175 | i += 2; | |
9176 | break; | |
9177 | ||
9178 | case DW_OP_const2s: | |
9179 | stack[++stacki] = read_2_signed_bytes (objfile->obfd, &data[i]); | |
9180 | i += 2; | |
9181 | break; | |
9182 | ||
9183 | case DW_OP_const4u: | |
9184 | stack[++stacki] = read_4_bytes (objfile->obfd, &data[i]); | |
9185 | i += 4; | |
9186 | break; | |
9187 | ||
9188 | case DW_OP_const4s: | |
9189 | stack[++stacki] = read_4_signed_bytes (objfile->obfd, &data[i]); | |
9190 | i += 4; | |
9191 | break; | |
9192 | ||
9193 | case DW_OP_constu: | |
9194 | stack[++stacki] = read_unsigned_leb128 (NULL, (data + i), | |
c5aa993b | 9195 | &bytes_read); |
c906108c SS |
9196 | i += bytes_read; |
9197 | break; | |
9198 | ||
9199 | case DW_OP_consts: | |
9200 | stack[++stacki] = read_signed_leb128 (NULL, (data + i), &bytes_read); | |
9201 | i += bytes_read; | |
9202 | break; | |
9203 | ||
f1bea926 JM |
9204 | case DW_OP_dup: |
9205 | stack[stacki + 1] = stack[stacki]; | |
9206 | stacki++; | |
9207 | break; | |
9208 | ||
c906108c SS |
9209 | case DW_OP_plus: |
9210 | stack[stacki - 1] += stack[stacki]; | |
9211 | stacki--; | |
9212 | break; | |
9213 | ||
9214 | case DW_OP_plus_uconst: | |
9215 | stack[stacki] += read_unsigned_leb128 (NULL, (data + i), &bytes_read); | |
9216 | i += bytes_read; | |
9217 | break; | |
9218 | ||
9219 | case DW_OP_minus: | |
f1bea926 | 9220 | stack[stacki - 1] -= stack[stacki]; |
c906108c SS |
9221 | stacki--; |
9222 | break; | |
9223 | ||
7a292a7a | 9224 | case DW_OP_deref: |
7a292a7a | 9225 | /* If we're not the last op, then we definitely can't encode |
4cecd739 DJ |
9226 | this using GDB's address_class enum. This is valid for partial |
9227 | global symbols, although the variable's address will be bogus | |
9228 | in the psymtab. */ | |
7a292a7a | 9229 | if (i < size) |
4d3c2250 | 9230 | dwarf2_complex_location_expr_complaint (); |
7a292a7a SS |
9231 | break; |
9232 | ||
9d774e44 | 9233 | case DW_OP_GNU_push_tls_address: |
9d774e44 EZ |
9234 | /* The top of the stack has the offset from the beginning |
9235 | of the thread control block at which the variable is located. */ | |
9236 | /* Nothing should follow this operator, so the top of stack would | |
9237 | be returned. */ | |
4cecd739 DJ |
9238 | /* This is valid for partial global symbols, but the variable's |
9239 | address will be bogus in the psymtab. */ | |
9d774e44 | 9240 | if (i < size) |
4d3c2250 | 9241 | dwarf2_complex_location_expr_complaint (); |
9d774e44 EZ |
9242 | break; |
9243 | ||
42be36b3 CT |
9244 | case DW_OP_GNU_uninit: |
9245 | break; | |
9246 | ||
c906108c | 9247 | default: |
e2e0b3e5 | 9248 | complaint (&symfile_complaints, _("unsupported stack op: '%s'"), |
4d3c2250 | 9249 | dwarf_stack_op_name (op)); |
c906108c SS |
9250 | return (stack[stacki]); |
9251 | } | |
9252 | } | |
9253 | return (stack[stacki]); | |
9254 | } | |
9255 | ||
9256 | /* memory allocation interface */ | |
9257 | ||
c906108c | 9258 | static struct dwarf_block * |
7b5a2f43 | 9259 | dwarf_alloc_block (struct dwarf2_cu *cu) |
c906108c SS |
9260 | { |
9261 | struct dwarf_block *blk; | |
9262 | ||
9263 | blk = (struct dwarf_block *) | |
7b5a2f43 | 9264 | obstack_alloc (&cu->comp_unit_obstack, sizeof (struct dwarf_block)); |
c906108c SS |
9265 | return (blk); |
9266 | } | |
9267 | ||
9268 | static struct abbrev_info * | |
f3dd6933 | 9269 | dwarf_alloc_abbrev (struct dwarf2_cu *cu) |
c906108c SS |
9270 | { |
9271 | struct abbrev_info *abbrev; | |
9272 | ||
f3dd6933 DJ |
9273 | abbrev = (struct abbrev_info *) |
9274 | obstack_alloc (&cu->abbrev_obstack, sizeof (struct abbrev_info)); | |
c906108c SS |
9275 | memset (abbrev, 0, sizeof (struct abbrev_info)); |
9276 | return (abbrev); | |
9277 | } | |
9278 | ||
9279 | static struct die_info * | |
fba45db2 | 9280 | dwarf_alloc_die (void) |
c906108c SS |
9281 | { |
9282 | struct die_info *die; | |
9283 | ||
9284 | die = (struct die_info *) xmalloc (sizeof (struct die_info)); | |
9285 | memset (die, 0, sizeof (struct die_info)); | |
9286 | return (die); | |
9287 | } | |
2e276125 JB |
9288 | |
9289 | \f | |
9290 | /* Macro support. */ | |
9291 | ||
9292 | ||
9293 | /* Return the full name of file number I in *LH's file name table. | |
9294 | Use COMP_DIR as the name of the current directory of the | |
9295 | compilation. The result is allocated using xmalloc; the caller is | |
9296 | responsible for freeing it. */ | |
9297 | static char * | |
9298 | file_full_name (int file, struct line_header *lh, const char *comp_dir) | |
9299 | { | |
6a83a1e6 EZ |
9300 | /* Is the file number a valid index into the line header's file name |
9301 | table? Remember that file numbers start with one, not zero. */ | |
9302 | if (1 <= file && file <= lh->num_file_names) | |
9303 | { | |
9304 | struct file_entry *fe = &lh->file_names[file - 1]; | |
2e276125 | 9305 | |
6a83a1e6 EZ |
9306 | if (IS_ABSOLUTE_PATH (fe->name)) |
9307 | return xstrdup (fe->name); | |
9308 | else | |
9309 | { | |
9310 | const char *dir; | |
9311 | int dir_len; | |
9312 | char *full_name; | |
9313 | ||
9314 | if (fe->dir_index) | |
9315 | dir = lh->include_dirs[fe->dir_index - 1]; | |
9316 | else | |
9317 | dir = comp_dir; | |
9318 | ||
9319 | if (dir) | |
9320 | { | |
9321 | dir_len = strlen (dir); | |
9322 | full_name = xmalloc (dir_len + 1 + strlen (fe->name) + 1); | |
9323 | strcpy (full_name, dir); | |
9324 | full_name[dir_len] = '/'; | |
9325 | strcpy (full_name + dir_len + 1, fe->name); | |
9326 | return full_name; | |
9327 | } | |
9328 | else | |
9329 | return xstrdup (fe->name); | |
9330 | } | |
9331 | } | |
2e276125 JB |
9332 | else |
9333 | { | |
6a83a1e6 EZ |
9334 | /* The compiler produced a bogus file number. We can at least |
9335 | record the macro definitions made in the file, even if we | |
9336 | won't be able to find the file by name. */ | |
9337 | char fake_name[80]; | |
9338 | sprintf (fake_name, "<bad macro file number %d>", file); | |
2e276125 | 9339 | |
6a83a1e6 EZ |
9340 | complaint (&symfile_complaints, |
9341 | _("bad file number in macro information (%d)"), | |
9342 | file); | |
2e276125 | 9343 | |
6a83a1e6 | 9344 | return xstrdup (fake_name); |
2e276125 JB |
9345 | } |
9346 | } | |
9347 | ||
9348 | ||
9349 | static struct macro_source_file * | |
9350 | macro_start_file (int file, int line, | |
9351 | struct macro_source_file *current_file, | |
9352 | const char *comp_dir, | |
9353 | struct line_header *lh, struct objfile *objfile) | |
9354 | { | |
9355 | /* The full name of this source file. */ | |
9356 | char *full_name = file_full_name (file, lh, comp_dir); | |
9357 | ||
9358 | /* We don't create a macro table for this compilation unit | |
9359 | at all until we actually get a filename. */ | |
9360 | if (! pending_macros) | |
4a146b47 | 9361 | pending_macros = new_macro_table (&objfile->objfile_obstack, |
af5f3db6 | 9362 | objfile->macro_cache); |
2e276125 JB |
9363 | |
9364 | if (! current_file) | |
9365 | /* If we have no current file, then this must be the start_file | |
9366 | directive for the compilation unit's main source file. */ | |
9367 | current_file = macro_set_main (pending_macros, full_name); | |
9368 | else | |
9369 | current_file = macro_include (current_file, line, full_name); | |
9370 | ||
9371 | xfree (full_name); | |
9372 | ||
9373 | return current_file; | |
9374 | } | |
9375 | ||
9376 | ||
9377 | /* Copy the LEN characters at BUF to a xmalloc'ed block of memory, | |
9378 | followed by a null byte. */ | |
9379 | static char * | |
9380 | copy_string (const char *buf, int len) | |
9381 | { | |
9382 | char *s = xmalloc (len + 1); | |
9383 | memcpy (s, buf, len); | |
9384 | s[len] = '\0'; | |
9385 | ||
9386 | return s; | |
9387 | } | |
9388 | ||
9389 | ||
9390 | static const char * | |
9391 | consume_improper_spaces (const char *p, const char *body) | |
9392 | { | |
9393 | if (*p == ' ') | |
9394 | { | |
4d3c2250 | 9395 | complaint (&symfile_complaints, |
e2e0b3e5 | 9396 | _("macro definition contains spaces in formal argument list:\n`%s'"), |
4d3c2250 | 9397 | body); |
2e276125 JB |
9398 | |
9399 | while (*p == ' ') | |
9400 | p++; | |
9401 | } | |
9402 | ||
9403 | return p; | |
9404 | } | |
9405 | ||
9406 | ||
9407 | static void | |
9408 | parse_macro_definition (struct macro_source_file *file, int line, | |
9409 | const char *body) | |
9410 | { | |
9411 | const char *p; | |
9412 | ||
9413 | /* The body string takes one of two forms. For object-like macro | |
9414 | definitions, it should be: | |
9415 | ||
9416 | <macro name> " " <definition> | |
9417 | ||
9418 | For function-like macro definitions, it should be: | |
9419 | ||
9420 | <macro name> "() " <definition> | |
9421 | or | |
9422 | <macro name> "(" <arg name> ( "," <arg name> ) * ") " <definition> | |
9423 | ||
9424 | Spaces may appear only where explicitly indicated, and in the | |
9425 | <definition>. | |
9426 | ||
9427 | The Dwarf 2 spec says that an object-like macro's name is always | |
9428 | followed by a space, but versions of GCC around March 2002 omit | |
9429 | the space when the macro's definition is the empty string. | |
9430 | ||
9431 | The Dwarf 2 spec says that there should be no spaces between the | |
9432 | formal arguments in a function-like macro's formal argument list, | |
9433 | but versions of GCC around March 2002 include spaces after the | |
9434 | commas. */ | |
9435 | ||
9436 | ||
9437 | /* Find the extent of the macro name. The macro name is terminated | |
9438 | by either a space or null character (for an object-like macro) or | |
9439 | an opening paren (for a function-like macro). */ | |
9440 | for (p = body; *p; p++) | |
9441 | if (*p == ' ' || *p == '(') | |
9442 | break; | |
9443 | ||
9444 | if (*p == ' ' || *p == '\0') | |
9445 | { | |
9446 | /* It's an object-like macro. */ | |
9447 | int name_len = p - body; | |
9448 | char *name = copy_string (body, name_len); | |
9449 | const char *replacement; | |
9450 | ||
9451 | if (*p == ' ') | |
9452 | replacement = body + name_len + 1; | |
9453 | else | |
9454 | { | |
4d3c2250 | 9455 | dwarf2_macro_malformed_definition_complaint (body); |
2e276125 JB |
9456 | replacement = body + name_len; |
9457 | } | |
9458 | ||
9459 | macro_define_object (file, line, name, replacement); | |
9460 | ||
9461 | xfree (name); | |
9462 | } | |
9463 | else if (*p == '(') | |
9464 | { | |
9465 | /* It's a function-like macro. */ | |
9466 | char *name = copy_string (body, p - body); | |
9467 | int argc = 0; | |
9468 | int argv_size = 1; | |
9469 | char **argv = xmalloc (argv_size * sizeof (*argv)); | |
9470 | ||
9471 | p++; | |
9472 | ||
9473 | p = consume_improper_spaces (p, body); | |
9474 | ||
9475 | /* Parse the formal argument list. */ | |
9476 | while (*p && *p != ')') | |
9477 | { | |
9478 | /* Find the extent of the current argument name. */ | |
9479 | const char *arg_start = p; | |
9480 | ||
9481 | while (*p && *p != ',' && *p != ')' && *p != ' ') | |
9482 | p++; | |
9483 | ||
9484 | if (! *p || p == arg_start) | |
4d3c2250 | 9485 | dwarf2_macro_malformed_definition_complaint (body); |
2e276125 JB |
9486 | else |
9487 | { | |
9488 | /* Make sure argv has room for the new argument. */ | |
9489 | if (argc >= argv_size) | |
9490 | { | |
9491 | argv_size *= 2; | |
9492 | argv = xrealloc (argv, argv_size * sizeof (*argv)); | |
9493 | } | |
9494 | ||
9495 | argv[argc++] = copy_string (arg_start, p - arg_start); | |
9496 | } | |
9497 | ||
9498 | p = consume_improper_spaces (p, body); | |
9499 | ||
9500 | /* Consume the comma, if present. */ | |
9501 | if (*p == ',') | |
9502 | { | |
9503 | p++; | |
9504 | ||
9505 | p = consume_improper_spaces (p, body); | |
9506 | } | |
9507 | } | |
9508 | ||
9509 | if (*p == ')') | |
9510 | { | |
9511 | p++; | |
9512 | ||
9513 | if (*p == ' ') | |
9514 | /* Perfectly formed definition, no complaints. */ | |
9515 | macro_define_function (file, line, name, | |
9516 | argc, (const char **) argv, | |
9517 | p + 1); | |
9518 | else if (*p == '\0') | |
9519 | { | |
9520 | /* Complain, but do define it. */ | |
4d3c2250 | 9521 | dwarf2_macro_malformed_definition_complaint (body); |
2e276125 JB |
9522 | macro_define_function (file, line, name, |
9523 | argc, (const char **) argv, | |
9524 | p); | |
9525 | } | |
9526 | else | |
9527 | /* Just complain. */ | |
4d3c2250 | 9528 | dwarf2_macro_malformed_definition_complaint (body); |
2e276125 JB |
9529 | } |
9530 | else | |
9531 | /* Just complain. */ | |
4d3c2250 | 9532 | dwarf2_macro_malformed_definition_complaint (body); |
2e276125 JB |
9533 | |
9534 | xfree (name); | |
9535 | { | |
9536 | int i; | |
9537 | ||
9538 | for (i = 0; i < argc; i++) | |
9539 | xfree (argv[i]); | |
9540 | } | |
9541 | xfree (argv); | |
9542 | } | |
9543 | else | |
4d3c2250 | 9544 | dwarf2_macro_malformed_definition_complaint (body); |
2e276125 JB |
9545 | } |
9546 | ||
9547 | ||
9548 | static void | |
9549 | dwarf_decode_macros (struct line_header *lh, unsigned int offset, | |
9550 | char *comp_dir, bfd *abfd, | |
e7c27a73 | 9551 | struct dwarf2_cu *cu) |
2e276125 | 9552 | { |
fe1b8b76 | 9553 | gdb_byte *mac_ptr, *mac_end; |
2e276125 JB |
9554 | struct macro_source_file *current_file = 0; |
9555 | ||
6502dd73 | 9556 | if (dwarf2_per_objfile->macinfo_buffer == NULL) |
2e276125 | 9557 | { |
e2e0b3e5 | 9558 | complaint (&symfile_complaints, _("missing .debug_macinfo section")); |
2e276125 JB |
9559 | return; |
9560 | } | |
9561 | ||
6502dd73 DJ |
9562 | mac_ptr = dwarf2_per_objfile->macinfo_buffer + offset; |
9563 | mac_end = dwarf2_per_objfile->macinfo_buffer | |
9564 | + dwarf2_per_objfile->macinfo_size; | |
2e276125 JB |
9565 | |
9566 | for (;;) | |
9567 | { | |
9568 | enum dwarf_macinfo_record_type macinfo_type; | |
9569 | ||
9570 | /* Do we at least have room for a macinfo type byte? */ | |
9571 | if (mac_ptr >= mac_end) | |
9572 | { | |
4d3c2250 | 9573 | dwarf2_macros_too_long_complaint (); |
2e276125 JB |
9574 | return; |
9575 | } | |
9576 | ||
9577 | macinfo_type = read_1_byte (abfd, mac_ptr); | |
9578 | mac_ptr++; | |
9579 | ||
9580 | switch (macinfo_type) | |
9581 | { | |
9582 | /* A zero macinfo type indicates the end of the macro | |
9583 | information. */ | |
9584 | case 0: | |
9585 | return; | |
9586 | ||
9587 | case DW_MACINFO_define: | |
9588 | case DW_MACINFO_undef: | |
9589 | { | |
891d2f0b | 9590 | unsigned int bytes_read; |
2e276125 JB |
9591 | int line; |
9592 | char *body; | |
9593 | ||
9594 | line = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read); | |
9595 | mac_ptr += bytes_read; | |
9596 | body = read_string (abfd, mac_ptr, &bytes_read); | |
9597 | mac_ptr += bytes_read; | |
9598 | ||
9599 | if (! current_file) | |
4d3c2250 | 9600 | complaint (&symfile_complaints, |
e2e0b3e5 | 9601 | _("debug info gives macro %s outside of any file: %s"), |
4d3c2250 KB |
9602 | macinfo_type == |
9603 | DW_MACINFO_define ? "definition" : macinfo_type == | |
9604 | DW_MACINFO_undef ? "undefinition" : | |
9605 | "something-or-other", body); | |
2e276125 JB |
9606 | else |
9607 | { | |
9608 | if (macinfo_type == DW_MACINFO_define) | |
9609 | parse_macro_definition (current_file, line, body); | |
9610 | else if (macinfo_type == DW_MACINFO_undef) | |
9611 | macro_undef (current_file, line, body); | |
9612 | } | |
9613 | } | |
9614 | break; | |
9615 | ||
9616 | case DW_MACINFO_start_file: | |
9617 | { | |
891d2f0b | 9618 | unsigned int bytes_read; |
2e276125 JB |
9619 | int line, file; |
9620 | ||
9621 | line = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read); | |
9622 | mac_ptr += bytes_read; | |
9623 | file = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read); | |
9624 | mac_ptr += bytes_read; | |
9625 | ||
9626 | current_file = macro_start_file (file, line, | |
9627 | current_file, comp_dir, | |
e7c27a73 | 9628 | lh, cu->objfile); |
2e276125 JB |
9629 | } |
9630 | break; | |
9631 | ||
9632 | case DW_MACINFO_end_file: | |
9633 | if (! current_file) | |
4d3c2250 | 9634 | complaint (&symfile_complaints, |
e2e0b3e5 | 9635 | _("macro debug info has an unmatched `close_file' directive")); |
2e276125 JB |
9636 | else |
9637 | { | |
9638 | current_file = current_file->included_by; | |
9639 | if (! current_file) | |
9640 | { | |
9641 | enum dwarf_macinfo_record_type next_type; | |
9642 | ||
9643 | /* GCC circa March 2002 doesn't produce the zero | |
9644 | type byte marking the end of the compilation | |
9645 | unit. Complain if it's not there, but exit no | |
9646 | matter what. */ | |
9647 | ||
9648 | /* Do we at least have room for a macinfo type byte? */ | |
9649 | if (mac_ptr >= mac_end) | |
9650 | { | |
4d3c2250 | 9651 | dwarf2_macros_too_long_complaint (); |
2e276125 JB |
9652 | return; |
9653 | } | |
9654 | ||
9655 | /* We don't increment mac_ptr here, so this is just | |
9656 | a look-ahead. */ | |
9657 | next_type = read_1_byte (abfd, mac_ptr); | |
9658 | if (next_type != 0) | |
4d3c2250 | 9659 | complaint (&symfile_complaints, |
e2e0b3e5 | 9660 | _("no terminating 0-type entry for macros in `.debug_macinfo' section")); |
2e276125 JB |
9661 | |
9662 | return; | |
9663 | } | |
9664 | } | |
9665 | break; | |
9666 | ||
9667 | case DW_MACINFO_vendor_ext: | |
9668 | { | |
891d2f0b | 9669 | unsigned int bytes_read; |
2e276125 JB |
9670 | int constant; |
9671 | char *string; | |
9672 | ||
9673 | constant = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read); | |
9674 | mac_ptr += bytes_read; | |
9675 | string = read_string (abfd, mac_ptr, &bytes_read); | |
9676 | mac_ptr += bytes_read; | |
9677 | ||
9678 | /* We don't recognize any vendor extensions. */ | |
9679 | } | |
9680 | break; | |
9681 | } | |
9682 | } | |
9683 | } | |
8e19ed76 PS |
9684 | |
9685 | /* Check if the attribute's form is a DW_FORM_block* | |
9686 | if so return true else false. */ | |
9687 | static int | |
9688 | attr_form_is_block (struct attribute *attr) | |
9689 | { | |
9690 | return (attr == NULL ? 0 : | |
9691 | attr->form == DW_FORM_block1 | |
9692 | || attr->form == DW_FORM_block2 | |
9693 | || attr->form == DW_FORM_block4 | |
9694 | || attr->form == DW_FORM_block); | |
9695 | } | |
4c2df51b DJ |
9696 | |
9697 | static void | |
9698 | dwarf2_symbol_mark_computed (struct attribute *attr, struct symbol *sym, | |
e7c27a73 | 9699 | struct dwarf2_cu *cu) |
4c2df51b | 9700 | { |
93e7bd98 DJ |
9701 | struct objfile *objfile = cu->objfile; |
9702 | ||
9703 | /* Save the master objfile, so that we can report and look up the | |
9704 | correct file containing this variable. */ | |
9705 | if (objfile->separate_debug_objfile_backlink) | |
9706 | objfile = objfile->separate_debug_objfile_backlink; | |
9707 | ||
99bcc461 DJ |
9708 | if ((attr->form == DW_FORM_data4 || attr->form == DW_FORM_data8) |
9709 | /* ".debug_loc" may not exist at all, or the offset may be outside | |
9710 | the section. If so, fall through to the complaint in the | |
9711 | other branch. */ | |
9712 | && DW_UNSND (attr) < dwarf2_per_objfile->loc_size) | |
4c2df51b | 9713 | { |
0d53c4c4 | 9714 | struct dwarf2_loclist_baton *baton; |
4c2df51b | 9715 | |
4a146b47 | 9716 | baton = obstack_alloc (&cu->objfile->objfile_obstack, |
0d53c4c4 | 9717 | sizeof (struct dwarf2_loclist_baton)); |
93e7bd98 | 9718 | baton->objfile = objfile; |
4c2df51b | 9719 | |
0d53c4c4 DJ |
9720 | /* We don't know how long the location list is, but make sure we |
9721 | don't run off the edge of the section. */ | |
6502dd73 DJ |
9722 | baton->size = dwarf2_per_objfile->loc_size - DW_UNSND (attr); |
9723 | baton->data = dwarf2_per_objfile->loc_buffer + DW_UNSND (attr); | |
e7c27a73 DJ |
9724 | baton->base_address = cu->header.base_address; |
9725 | if (cu->header.base_known == 0) | |
0d53c4c4 | 9726 | complaint (&symfile_complaints, |
e2e0b3e5 | 9727 | _("Location list used without specifying the CU base address.")); |
4c2df51b | 9728 | |
a67af2b9 | 9729 | SYMBOL_OPS (sym) = &dwarf2_loclist_funcs; |
0d53c4c4 DJ |
9730 | SYMBOL_LOCATION_BATON (sym) = baton; |
9731 | } | |
9732 | else | |
9733 | { | |
9734 | struct dwarf2_locexpr_baton *baton; | |
9735 | ||
4a146b47 | 9736 | baton = obstack_alloc (&cu->objfile->objfile_obstack, |
0d53c4c4 | 9737 | sizeof (struct dwarf2_locexpr_baton)); |
93e7bd98 | 9738 | baton->objfile = objfile; |
0d53c4c4 DJ |
9739 | |
9740 | if (attr_form_is_block (attr)) | |
9741 | { | |
9742 | /* Note that we're just copying the block's data pointer | |
9743 | here, not the actual data. We're still pointing into the | |
6502dd73 DJ |
9744 | info_buffer for SYM's objfile; right now we never release |
9745 | that buffer, but when we do clean up properly this may | |
9746 | need to change. */ | |
0d53c4c4 DJ |
9747 | baton->size = DW_BLOCK (attr)->size; |
9748 | baton->data = DW_BLOCK (attr)->data; | |
9749 | } | |
9750 | else | |
9751 | { | |
9752 | dwarf2_invalid_attrib_class_complaint ("location description", | |
9753 | SYMBOL_NATURAL_NAME (sym)); | |
9754 | baton->size = 0; | |
9755 | baton->data = NULL; | |
9756 | } | |
9757 | ||
a67af2b9 | 9758 | SYMBOL_OPS (sym) = &dwarf2_locexpr_funcs; |
0d53c4c4 DJ |
9759 | SYMBOL_LOCATION_BATON (sym) = baton; |
9760 | } | |
4c2df51b | 9761 | } |
6502dd73 | 9762 | |
ae038cb0 | 9763 | /* Locate the compilation unit from CU's objfile which contains the |
10b3939b | 9764 | DIE at OFFSET. Raises an error on failure. */ |
ae038cb0 DJ |
9765 | |
9766 | static struct dwarf2_per_cu_data * | |
9767 | dwarf2_find_containing_comp_unit (unsigned long offset, | |
9768 | struct objfile *objfile) | |
9769 | { | |
9770 | struct dwarf2_per_cu_data *this_cu; | |
9771 | int low, high; | |
9772 | ||
ae038cb0 DJ |
9773 | low = 0; |
9774 | high = dwarf2_per_objfile->n_comp_units - 1; | |
9775 | while (high > low) | |
9776 | { | |
9777 | int mid = low + (high - low) / 2; | |
9778 | if (dwarf2_per_objfile->all_comp_units[mid]->offset >= offset) | |
9779 | high = mid; | |
9780 | else | |
9781 | low = mid + 1; | |
9782 | } | |
9783 | gdb_assert (low == high); | |
9784 | if (dwarf2_per_objfile->all_comp_units[low]->offset > offset) | |
9785 | { | |
10b3939b | 9786 | if (low == 0) |
8a3fe4f8 AC |
9787 | error (_("Dwarf Error: could not find partial DIE containing " |
9788 | "offset 0x%lx [in module %s]"), | |
10b3939b DJ |
9789 | (long) offset, bfd_get_filename (objfile->obfd)); |
9790 | ||
ae038cb0 DJ |
9791 | gdb_assert (dwarf2_per_objfile->all_comp_units[low-1]->offset <= offset); |
9792 | return dwarf2_per_objfile->all_comp_units[low-1]; | |
9793 | } | |
9794 | else | |
9795 | { | |
9796 | this_cu = dwarf2_per_objfile->all_comp_units[low]; | |
9797 | if (low == dwarf2_per_objfile->n_comp_units - 1 | |
9798 | && offset >= this_cu->offset + this_cu->length) | |
8a3fe4f8 | 9799 | error (_("invalid dwarf2 offset %ld"), offset); |
ae038cb0 DJ |
9800 | gdb_assert (offset < this_cu->offset + this_cu->length); |
9801 | return this_cu; | |
9802 | } | |
9803 | } | |
9804 | ||
10b3939b DJ |
9805 | /* Locate the compilation unit from OBJFILE which is located at exactly |
9806 | OFFSET. Raises an error on failure. */ | |
9807 | ||
ae038cb0 DJ |
9808 | static struct dwarf2_per_cu_data * |
9809 | dwarf2_find_comp_unit (unsigned long offset, struct objfile *objfile) | |
9810 | { | |
9811 | struct dwarf2_per_cu_data *this_cu; | |
9812 | this_cu = dwarf2_find_containing_comp_unit (offset, objfile); | |
9813 | if (this_cu->offset != offset) | |
8a3fe4f8 | 9814 | error (_("no compilation unit with offset %ld."), offset); |
ae038cb0 DJ |
9815 | return this_cu; |
9816 | } | |
9817 | ||
9818 | /* Release one cached compilation unit, CU. We unlink it from the tree | |
9819 | of compilation units, but we don't remove it from the read_in_chain; | |
9820 | the caller is responsible for that. */ | |
9821 | ||
9822 | static void | |
9823 | free_one_comp_unit (void *data) | |
9824 | { | |
9825 | struct dwarf2_cu *cu = data; | |
9826 | ||
9827 | if (cu->per_cu != NULL) | |
9828 | cu->per_cu->cu = NULL; | |
9829 | cu->per_cu = NULL; | |
9830 | ||
9831 | obstack_free (&cu->comp_unit_obstack, NULL); | |
10b3939b DJ |
9832 | if (cu->dies) |
9833 | free_die_list (cu->dies); | |
ae038cb0 DJ |
9834 | |
9835 | xfree (cu); | |
9836 | } | |
9837 | ||
72bf9492 | 9838 | /* This cleanup function is passed the address of a dwarf2_cu on the stack |
ae038cb0 DJ |
9839 | when we're finished with it. We can't free the pointer itself, but be |
9840 | sure to unlink it from the cache. Also release any associated storage | |
9841 | and perform cache maintenance. | |
72bf9492 DJ |
9842 | |
9843 | Only used during partial symbol parsing. */ | |
9844 | ||
9845 | static void | |
9846 | free_stack_comp_unit (void *data) | |
9847 | { | |
9848 | struct dwarf2_cu *cu = data; | |
9849 | ||
9850 | obstack_free (&cu->comp_unit_obstack, NULL); | |
9851 | cu->partial_dies = NULL; | |
ae038cb0 DJ |
9852 | |
9853 | if (cu->per_cu != NULL) | |
9854 | { | |
9855 | /* This compilation unit is on the stack in our caller, so we | |
9856 | should not xfree it. Just unlink it. */ | |
9857 | cu->per_cu->cu = NULL; | |
9858 | cu->per_cu = NULL; | |
9859 | ||
9860 | /* If we had a per-cu pointer, then we may have other compilation | |
9861 | units loaded, so age them now. */ | |
9862 | age_cached_comp_units (); | |
9863 | } | |
9864 | } | |
9865 | ||
9866 | /* Free all cached compilation units. */ | |
9867 | ||
9868 | static void | |
9869 | free_cached_comp_units (void *data) | |
9870 | { | |
9871 | struct dwarf2_per_cu_data *per_cu, **last_chain; | |
9872 | ||
9873 | per_cu = dwarf2_per_objfile->read_in_chain; | |
9874 | last_chain = &dwarf2_per_objfile->read_in_chain; | |
9875 | while (per_cu != NULL) | |
9876 | { | |
9877 | struct dwarf2_per_cu_data *next_cu; | |
9878 | ||
9879 | next_cu = per_cu->cu->read_in_chain; | |
9880 | ||
9881 | free_one_comp_unit (per_cu->cu); | |
9882 | *last_chain = next_cu; | |
9883 | ||
9884 | per_cu = next_cu; | |
9885 | } | |
9886 | } | |
9887 | ||
9888 | /* Increase the age counter on each cached compilation unit, and free | |
9889 | any that are too old. */ | |
9890 | ||
9891 | static void | |
9892 | age_cached_comp_units (void) | |
9893 | { | |
9894 | struct dwarf2_per_cu_data *per_cu, **last_chain; | |
9895 | ||
9896 | dwarf2_clear_marks (dwarf2_per_objfile->read_in_chain); | |
9897 | per_cu = dwarf2_per_objfile->read_in_chain; | |
9898 | while (per_cu != NULL) | |
9899 | { | |
9900 | per_cu->cu->last_used ++; | |
9901 | if (per_cu->cu->last_used <= dwarf2_max_cache_age) | |
9902 | dwarf2_mark (per_cu->cu); | |
9903 | per_cu = per_cu->cu->read_in_chain; | |
9904 | } | |
9905 | ||
9906 | per_cu = dwarf2_per_objfile->read_in_chain; | |
9907 | last_chain = &dwarf2_per_objfile->read_in_chain; | |
9908 | while (per_cu != NULL) | |
9909 | { | |
9910 | struct dwarf2_per_cu_data *next_cu; | |
9911 | ||
9912 | next_cu = per_cu->cu->read_in_chain; | |
9913 | ||
9914 | if (!per_cu->cu->mark) | |
9915 | { | |
9916 | free_one_comp_unit (per_cu->cu); | |
9917 | *last_chain = next_cu; | |
9918 | } | |
9919 | else | |
9920 | last_chain = &per_cu->cu->read_in_chain; | |
9921 | ||
9922 | per_cu = next_cu; | |
9923 | } | |
9924 | } | |
9925 | ||
9926 | /* Remove a single compilation unit from the cache. */ | |
9927 | ||
9928 | static void | |
9929 | free_one_cached_comp_unit (void *target_cu) | |
9930 | { | |
9931 | struct dwarf2_per_cu_data *per_cu, **last_chain; | |
9932 | ||
9933 | per_cu = dwarf2_per_objfile->read_in_chain; | |
9934 | last_chain = &dwarf2_per_objfile->read_in_chain; | |
9935 | while (per_cu != NULL) | |
9936 | { | |
9937 | struct dwarf2_per_cu_data *next_cu; | |
9938 | ||
9939 | next_cu = per_cu->cu->read_in_chain; | |
9940 | ||
9941 | if (per_cu->cu == target_cu) | |
9942 | { | |
9943 | free_one_comp_unit (per_cu->cu); | |
9944 | *last_chain = next_cu; | |
9945 | break; | |
9946 | } | |
9947 | else | |
9948 | last_chain = &per_cu->cu->read_in_chain; | |
9949 | ||
9950 | per_cu = next_cu; | |
9951 | } | |
9952 | } | |
9953 | ||
1c379e20 DJ |
9954 | /* A pair of DIE offset and GDB type pointer. We store these |
9955 | in a hash table separate from the DIEs, and preserve them | |
9956 | when the DIEs are flushed out of cache. */ | |
9957 | ||
9958 | struct dwarf2_offset_and_type | |
9959 | { | |
9960 | unsigned int offset; | |
9961 | struct type *type; | |
9962 | }; | |
9963 | ||
9964 | /* Hash function for a dwarf2_offset_and_type. */ | |
9965 | ||
9966 | static hashval_t | |
9967 | offset_and_type_hash (const void *item) | |
9968 | { | |
9969 | const struct dwarf2_offset_and_type *ofs = item; | |
9970 | return ofs->offset; | |
9971 | } | |
9972 | ||
9973 | /* Equality function for a dwarf2_offset_and_type. */ | |
9974 | ||
9975 | static int | |
9976 | offset_and_type_eq (const void *item_lhs, const void *item_rhs) | |
9977 | { | |
9978 | const struct dwarf2_offset_and_type *ofs_lhs = item_lhs; | |
9979 | const struct dwarf2_offset_and_type *ofs_rhs = item_rhs; | |
9980 | return ofs_lhs->offset == ofs_rhs->offset; | |
9981 | } | |
9982 | ||
9983 | /* Set the type associated with DIE to TYPE. Save it in CU's hash | |
9984 | table if necessary. */ | |
9985 | ||
9986 | static void | |
9987 | set_die_type (struct die_info *die, struct type *type, struct dwarf2_cu *cu) | |
9988 | { | |
9989 | struct dwarf2_offset_and_type **slot, ofs; | |
9990 | ||
9991 | die->type = type; | |
9992 | ||
9993 | if (cu->per_cu == NULL) | |
9994 | return; | |
9995 | ||
9996 | if (cu->per_cu->type_hash == NULL) | |
9997 | cu->per_cu->type_hash | |
9998 | = htab_create_alloc_ex (cu->header.length / 24, | |
9999 | offset_and_type_hash, | |
10000 | offset_and_type_eq, | |
10001 | NULL, | |
10002 | &cu->objfile->objfile_obstack, | |
10003 | hashtab_obstack_allocate, | |
10004 | dummy_obstack_deallocate); | |
10005 | ||
10006 | ofs.offset = die->offset; | |
10007 | ofs.type = type; | |
10008 | slot = (struct dwarf2_offset_and_type **) | |
10009 | htab_find_slot_with_hash (cu->per_cu->type_hash, &ofs, ofs.offset, INSERT); | |
10010 | *slot = obstack_alloc (&cu->objfile->objfile_obstack, sizeof (**slot)); | |
10011 | **slot = ofs; | |
10012 | } | |
10013 | ||
1c379e20 DJ |
10014 | /* Find the type for DIE in TYPE_HASH, or return NULL if DIE does not |
10015 | have a saved type. */ | |
10016 | ||
10017 | static struct type * | |
10018 | get_die_type (struct die_info *die, htab_t type_hash) | |
10019 | { | |
10020 | struct dwarf2_offset_and_type *slot, ofs; | |
10021 | ||
10022 | ofs.offset = die->offset; | |
10023 | slot = htab_find_with_hash (type_hash, &ofs, ofs.offset); | |
10024 | if (slot) | |
10025 | return slot->type; | |
10026 | else | |
10027 | return NULL; | |
10028 | } | |
10029 | ||
10030 | /* Restore the types of the DIE tree starting at START_DIE from the hash | |
10031 | table saved in CU. */ | |
10032 | ||
10033 | static void | |
10034 | reset_die_and_siblings_types (struct die_info *start_die, struct dwarf2_cu *cu) | |
10035 | { | |
10036 | struct die_info *die; | |
10037 | ||
10038 | if (cu->per_cu->type_hash == NULL) | |
10039 | return; | |
10040 | ||
10041 | for (die = start_die; die != NULL; die = die->sibling) | |
10042 | { | |
10043 | die->type = get_die_type (die, cu->per_cu->type_hash); | |
10044 | if (die->child != NULL) | |
10045 | reset_die_and_siblings_types (die->child, cu); | |
10046 | } | |
10047 | } | |
10048 | ||
10b3939b DJ |
10049 | /* Set the mark field in CU and in every other compilation unit in the |
10050 | cache that we must keep because we are keeping CU. */ | |
10051 | ||
10052 | /* Add a dependence relationship from CU to REF_PER_CU. */ | |
10053 | ||
10054 | static void | |
10055 | dwarf2_add_dependence (struct dwarf2_cu *cu, | |
10056 | struct dwarf2_per_cu_data *ref_per_cu) | |
10057 | { | |
10058 | void **slot; | |
10059 | ||
10060 | if (cu->dependencies == NULL) | |
10061 | cu->dependencies | |
10062 | = htab_create_alloc_ex (5, htab_hash_pointer, htab_eq_pointer, | |
10063 | NULL, &cu->comp_unit_obstack, | |
10064 | hashtab_obstack_allocate, | |
10065 | dummy_obstack_deallocate); | |
10066 | ||
10067 | slot = htab_find_slot (cu->dependencies, ref_per_cu, INSERT); | |
10068 | if (*slot == NULL) | |
10069 | *slot = ref_per_cu; | |
10070 | } | |
1c379e20 | 10071 | |
ae038cb0 DJ |
10072 | /* Set the mark field in CU and in every other compilation unit in the |
10073 | cache that we must keep because we are keeping CU. */ | |
10074 | ||
10b3939b DJ |
10075 | static int |
10076 | dwarf2_mark_helper (void **slot, void *data) | |
10077 | { | |
10078 | struct dwarf2_per_cu_data *per_cu; | |
10079 | ||
10080 | per_cu = (struct dwarf2_per_cu_data *) *slot; | |
10081 | if (per_cu->cu->mark) | |
10082 | return 1; | |
10083 | per_cu->cu->mark = 1; | |
10084 | ||
10085 | if (per_cu->cu->dependencies != NULL) | |
10086 | htab_traverse (per_cu->cu->dependencies, dwarf2_mark_helper, NULL); | |
10087 | ||
10088 | return 1; | |
10089 | } | |
10090 | ||
ae038cb0 DJ |
10091 | static void |
10092 | dwarf2_mark (struct dwarf2_cu *cu) | |
10093 | { | |
10094 | if (cu->mark) | |
10095 | return; | |
10096 | cu->mark = 1; | |
10b3939b DJ |
10097 | if (cu->dependencies != NULL) |
10098 | htab_traverse (cu->dependencies, dwarf2_mark_helper, NULL); | |
ae038cb0 DJ |
10099 | } |
10100 | ||
10101 | static void | |
10102 | dwarf2_clear_marks (struct dwarf2_per_cu_data *per_cu) | |
10103 | { | |
10104 | while (per_cu) | |
10105 | { | |
10106 | per_cu->cu->mark = 0; | |
10107 | per_cu = per_cu->cu->read_in_chain; | |
10108 | } | |
72bf9492 DJ |
10109 | } |
10110 | ||
72bf9492 DJ |
10111 | /* Trivial hash function for partial_die_info: the hash value of a DIE |
10112 | is its offset in .debug_info for this objfile. */ | |
10113 | ||
10114 | static hashval_t | |
10115 | partial_die_hash (const void *item) | |
10116 | { | |
10117 | const struct partial_die_info *part_die = item; | |
10118 | return part_die->offset; | |
10119 | } | |
10120 | ||
10121 | /* Trivial comparison function for partial_die_info structures: two DIEs | |
10122 | are equal if they have the same offset. */ | |
10123 | ||
10124 | static int | |
10125 | partial_die_eq (const void *item_lhs, const void *item_rhs) | |
10126 | { | |
10127 | const struct partial_die_info *part_die_lhs = item_lhs; | |
10128 | const struct partial_die_info *part_die_rhs = item_rhs; | |
10129 | return part_die_lhs->offset == part_die_rhs->offset; | |
10130 | } | |
10131 | ||
ae038cb0 DJ |
10132 | static struct cmd_list_element *set_dwarf2_cmdlist; |
10133 | static struct cmd_list_element *show_dwarf2_cmdlist; | |
10134 | ||
10135 | static void | |
10136 | set_dwarf2_cmd (char *args, int from_tty) | |
10137 | { | |
10138 | help_list (set_dwarf2_cmdlist, "maintenance set dwarf2 ", -1, gdb_stdout); | |
10139 | } | |
10140 | ||
10141 | static void | |
10142 | show_dwarf2_cmd (char *args, int from_tty) | |
10143 | { | |
10144 | cmd_show_list (show_dwarf2_cmdlist, from_tty, ""); | |
10145 | } | |
10146 | ||
6502dd73 DJ |
10147 | void _initialize_dwarf2_read (void); |
10148 | ||
10149 | void | |
10150 | _initialize_dwarf2_read (void) | |
10151 | { | |
10152 | dwarf2_objfile_data_key = register_objfile_data (); | |
ae038cb0 | 10153 | |
1bedd215 AC |
10154 | add_prefix_cmd ("dwarf2", class_maintenance, set_dwarf2_cmd, _("\ |
10155 | Set DWARF 2 specific variables.\n\ | |
10156 | Configure DWARF 2 variables such as the cache size"), | |
ae038cb0 DJ |
10157 | &set_dwarf2_cmdlist, "maintenance set dwarf2 ", |
10158 | 0/*allow-unknown*/, &maintenance_set_cmdlist); | |
10159 | ||
1bedd215 AC |
10160 | add_prefix_cmd ("dwarf2", class_maintenance, show_dwarf2_cmd, _("\ |
10161 | Show DWARF 2 specific variables\n\ | |
10162 | Show DWARF 2 variables such as the cache size"), | |
ae038cb0 DJ |
10163 | &show_dwarf2_cmdlist, "maintenance show dwarf2 ", |
10164 | 0/*allow-unknown*/, &maintenance_show_cmdlist); | |
10165 | ||
10166 | add_setshow_zinteger_cmd ("max-cache-age", class_obscure, | |
7915a72c AC |
10167 | &dwarf2_max_cache_age, _("\ |
10168 | Set the upper bound on the age of cached dwarf2 compilation units."), _("\ | |
10169 | Show the upper bound on the age of cached dwarf2 compilation units."), _("\ | |
10170 | A higher limit means that cached compilation units will be stored\n\ | |
10171 | in memory longer, and more total memory will be used. Zero disables\n\ | |
10172 | caching, which can slow down startup."), | |
2c5b56ce | 10173 | NULL, |
920d2a44 | 10174 | show_dwarf2_max_cache_age, |
2c5b56ce | 10175 | &set_dwarf2_cmdlist, |
ae038cb0 | 10176 | &show_dwarf2_cmdlist); |
6502dd73 | 10177 | } |