Remove free_dwo_file_cleanup
[deliverable/binutils-gdb.git] / gdb / dwarf2read.c
1 /* DWARF 2 debugging format support for GDB.
2
3 Copyright (C) 1994-2018 Free Software Foundation, Inc.
4
5 Adapted by Gary Funck (gary@intrepid.com), Intrepid Technology,
6 Inc. with support from Florida State University (under contract
7 with the Ada Joint Program Office), and Silicon Graphics, Inc.
8 Initial contribution by Brent Benson, Harris Computer Systems, Inc.,
9 based on Fred Fish's (Cygnus Support) implementation of DWARF 1
10 support.
11
12 This file is part of GDB.
13
14 This program is free software; you can redistribute it and/or modify
15 it under the terms of the GNU General Public License as published by
16 the Free Software Foundation; either version 3 of the License, or
17 (at your option) any later version.
18
19 This program is distributed in the hope that it will be useful,
20 but WITHOUT ANY WARRANTY; without even the implied warranty of
21 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 GNU General Public License for more details.
23
24 You should have received a copy of the GNU General Public License
25 along with this program. If not, see <http://www.gnu.org/licenses/>. */
26
27 /* FIXME: Various die-reading functions need to be more careful with
28 reading off the end of the section.
29 E.g., load_partial_dies, read_partial_die. */
30
31 #include "defs.h"
32 #include "dwarf2read.h"
33 #include "dwarf-index-common.h"
34 #include "bfd.h"
35 #include "elf-bfd.h"
36 #include "symtab.h"
37 #include "gdbtypes.h"
38 #include "objfiles.h"
39 #include "dwarf2.h"
40 #include "buildsym.h"
41 #include "demangle.h"
42 #include "gdb-demangle.h"
43 #include "expression.h"
44 #include "filenames.h" /* for DOSish file names */
45 #include "macrotab.h"
46 #include "language.h"
47 #include "complaints.h"
48 #include "bcache.h"
49 #include "dwarf2expr.h"
50 #include "dwarf2loc.h"
51 #include "cp-support.h"
52 #include "hashtab.h"
53 #include "command.h"
54 #include "gdbcmd.h"
55 #include "block.h"
56 #include "addrmap.h"
57 #include "typeprint.h"
58 #include "psympriv.h"
59 #include <sys/stat.h>
60 #include "completer.h"
61 #include "vec.h"
62 #include "c-lang.h"
63 #include "go-lang.h"
64 #include "valprint.h"
65 #include "gdbcore.h" /* for gnutarget */
66 #include "gdb/gdb-index.h"
67 #include <ctype.h>
68 #include "gdb_bfd.h"
69 #include "f-lang.h"
70 #include "source.h"
71 #include "filestuff.h"
72 #include "build-id.h"
73 #include "namespace.h"
74 #include "common/gdb_unlinker.h"
75 #include "common/function-view.h"
76 #include "common/gdb_optional.h"
77 #include "common/underlying.h"
78 #include "common/byte-vector.h"
79 #include "common/hash_enum.h"
80 #include "filename-seen-cache.h"
81 #include "producer.h"
82 #include <fcntl.h>
83 #include <sys/types.h>
84 #include <algorithm>
85 #include <unordered_set>
86 #include <unordered_map>
87 #include "selftest.h"
88 #include <cmath>
89 #include <set>
90 #include <forward_list>
91 #include "rust-lang.h"
92 #include "common/pathstuff.h"
93
94 /* When == 1, print basic high level tracing messages.
95 When > 1, be more verbose.
96 This is in contrast to the low level DIE reading of dwarf_die_debug. */
97 static unsigned int dwarf_read_debug = 0;
98
99 /* When non-zero, dump DIEs after they are read in. */
100 static unsigned int dwarf_die_debug = 0;
101
102 /* When non-zero, dump line number entries as they are read in. */
103 static unsigned int dwarf_line_debug = 0;
104
105 /* When non-zero, cross-check physname against demangler. */
106 static int check_physname = 0;
107
108 /* When non-zero, do not reject deprecated .gdb_index sections. */
109 static int use_deprecated_index_sections = 0;
110
111 static const struct objfile_data *dwarf2_objfile_data_key;
112
113 /* The "aclass" indices for various kinds of computed DWARF symbols. */
114
115 static int dwarf2_locexpr_index;
116 static int dwarf2_loclist_index;
117 static int dwarf2_locexpr_block_index;
118 static int dwarf2_loclist_block_index;
119
120 /* An index into a (C++) symbol name component in a symbol name as
121 recorded in the mapped_index's symbol table. For each C++ symbol
122 in the symbol table, we record one entry for the start of each
123 component in the symbol in a table of name components, and then
124 sort the table, in order to be able to binary search symbol names,
125 ignoring leading namespaces, both completion and regular look up.
126 For example, for symbol "A::B::C", we'll have an entry that points
127 to "A::B::C", another that points to "B::C", and another for "C".
128 Note that function symbols in GDB index have no parameter
129 information, just the function/method names. You can convert a
130 name_component to a "const char *" using the
131 'mapped_index::symbol_name_at(offset_type)' method. */
132
133 struct name_component
134 {
135 /* Offset in the symbol name where the component starts. Stored as
136 a (32-bit) offset instead of a pointer to save memory and improve
137 locality on 64-bit architectures. */
138 offset_type name_offset;
139
140 /* The symbol's index in the symbol and constant pool tables of a
141 mapped_index. */
142 offset_type idx;
143 };
144
145 /* Base class containing bits shared by both .gdb_index and
146 .debug_name indexes. */
147
148 struct mapped_index_base
149 {
150 /* The name_component table (a sorted vector). See name_component's
151 description above. */
152 std::vector<name_component> name_components;
153
154 /* How NAME_COMPONENTS is sorted. */
155 enum case_sensitivity name_components_casing;
156
157 /* Return the number of names in the symbol table. */
158 virtual size_t symbol_name_count () const = 0;
159
160 /* Get the name of the symbol at IDX in the symbol table. */
161 virtual const char *symbol_name_at (offset_type idx) const = 0;
162
163 /* Return whether the name at IDX in the symbol table should be
164 ignored. */
165 virtual bool symbol_name_slot_invalid (offset_type idx) const
166 {
167 return false;
168 }
169
170 /* Build the symbol name component sorted vector, if we haven't
171 yet. */
172 void build_name_components ();
173
174 /* Returns the lower (inclusive) and upper (exclusive) bounds of the
175 possible matches for LN_NO_PARAMS in the name component
176 vector. */
177 std::pair<std::vector<name_component>::const_iterator,
178 std::vector<name_component>::const_iterator>
179 find_name_components_bounds (const lookup_name_info &ln_no_params) const;
180
181 /* Prevent deleting/destroying via a base class pointer. */
182 protected:
183 ~mapped_index_base() = default;
184 };
185
186 /* A description of the mapped index. The file format is described in
187 a comment by the code that writes the index. */
188 struct mapped_index final : public mapped_index_base
189 {
190 /* A slot/bucket in the symbol table hash. */
191 struct symbol_table_slot
192 {
193 const offset_type name;
194 const offset_type vec;
195 };
196
197 /* Index data format version. */
198 int version;
199
200 /* The total length of the buffer. */
201 off_t total_size;
202
203 /* The address table data. */
204 gdb::array_view<const gdb_byte> address_table;
205
206 /* The symbol table, implemented as a hash table. */
207 gdb::array_view<symbol_table_slot> symbol_table;
208
209 /* A pointer to the constant pool. */
210 const char *constant_pool;
211
212 bool symbol_name_slot_invalid (offset_type idx) const override
213 {
214 const auto &bucket = this->symbol_table[idx];
215 return bucket.name == 0 && bucket.vec;
216 }
217
218 /* Convenience method to get at the name of the symbol at IDX in the
219 symbol table. */
220 const char *symbol_name_at (offset_type idx) const override
221 { return this->constant_pool + MAYBE_SWAP (this->symbol_table[idx].name); }
222
223 size_t symbol_name_count () const override
224 { return this->symbol_table.size (); }
225 };
226
227 /* A description of the mapped .debug_names.
228 Uninitialized map has CU_COUNT 0. */
229 struct mapped_debug_names final : public mapped_index_base
230 {
231 mapped_debug_names (struct dwarf2_per_objfile *dwarf2_per_objfile_)
232 : dwarf2_per_objfile (dwarf2_per_objfile_)
233 {}
234
235 struct dwarf2_per_objfile *dwarf2_per_objfile;
236 bfd_endian dwarf5_byte_order;
237 bool dwarf5_is_dwarf64;
238 bool augmentation_is_gdb;
239 uint8_t offset_size;
240 uint32_t cu_count = 0;
241 uint32_t tu_count, bucket_count, name_count;
242 const gdb_byte *cu_table_reordered, *tu_table_reordered;
243 const uint32_t *bucket_table_reordered, *hash_table_reordered;
244 const gdb_byte *name_table_string_offs_reordered;
245 const gdb_byte *name_table_entry_offs_reordered;
246 const gdb_byte *entry_pool;
247
248 struct index_val
249 {
250 ULONGEST dwarf_tag;
251 struct attr
252 {
253 /* Attribute name DW_IDX_*. */
254 ULONGEST dw_idx;
255
256 /* Attribute form DW_FORM_*. */
257 ULONGEST form;
258
259 /* Value if FORM is DW_FORM_implicit_const. */
260 LONGEST implicit_const;
261 };
262 std::vector<attr> attr_vec;
263 };
264
265 std::unordered_map<ULONGEST, index_val> abbrev_map;
266
267 const char *namei_to_name (uint32_t namei) const;
268
269 /* Implementation of the mapped_index_base virtual interface, for
270 the name_components cache. */
271
272 const char *symbol_name_at (offset_type idx) const override
273 { return namei_to_name (idx); }
274
275 size_t symbol_name_count () const override
276 { return this->name_count; }
277 };
278
279 /* See dwarf2read.h. */
280
281 dwarf2_per_objfile *
282 get_dwarf2_per_objfile (struct objfile *objfile)
283 {
284 return ((struct dwarf2_per_objfile *)
285 objfile_data (objfile, dwarf2_objfile_data_key));
286 }
287
288 /* Set the dwarf2_per_objfile associated to OBJFILE. */
289
290 void
291 set_dwarf2_per_objfile (struct objfile *objfile,
292 struct dwarf2_per_objfile *dwarf2_per_objfile)
293 {
294 gdb_assert (get_dwarf2_per_objfile (objfile) == NULL);
295 set_objfile_data (objfile, dwarf2_objfile_data_key, dwarf2_per_objfile);
296 }
297
298 /* Default names of the debugging sections. */
299
300 /* Note that if the debugging section has been compressed, it might
301 have a name like .zdebug_info. */
302
303 static const struct dwarf2_debug_sections dwarf2_elf_names =
304 {
305 { ".debug_info", ".zdebug_info" },
306 { ".debug_abbrev", ".zdebug_abbrev" },
307 { ".debug_line", ".zdebug_line" },
308 { ".debug_loc", ".zdebug_loc" },
309 { ".debug_loclists", ".zdebug_loclists" },
310 { ".debug_macinfo", ".zdebug_macinfo" },
311 { ".debug_macro", ".zdebug_macro" },
312 { ".debug_str", ".zdebug_str" },
313 { ".debug_line_str", ".zdebug_line_str" },
314 { ".debug_ranges", ".zdebug_ranges" },
315 { ".debug_rnglists", ".zdebug_rnglists" },
316 { ".debug_types", ".zdebug_types" },
317 { ".debug_addr", ".zdebug_addr" },
318 { ".debug_frame", ".zdebug_frame" },
319 { ".eh_frame", NULL },
320 { ".gdb_index", ".zgdb_index" },
321 { ".debug_names", ".zdebug_names" },
322 { ".debug_aranges", ".zdebug_aranges" },
323 23
324 };
325
326 /* List of DWO/DWP sections. */
327
328 static const struct dwop_section_names
329 {
330 struct dwarf2_section_names abbrev_dwo;
331 struct dwarf2_section_names info_dwo;
332 struct dwarf2_section_names line_dwo;
333 struct dwarf2_section_names loc_dwo;
334 struct dwarf2_section_names loclists_dwo;
335 struct dwarf2_section_names macinfo_dwo;
336 struct dwarf2_section_names macro_dwo;
337 struct dwarf2_section_names str_dwo;
338 struct dwarf2_section_names str_offsets_dwo;
339 struct dwarf2_section_names types_dwo;
340 struct dwarf2_section_names cu_index;
341 struct dwarf2_section_names tu_index;
342 }
343 dwop_section_names =
344 {
345 { ".debug_abbrev.dwo", ".zdebug_abbrev.dwo" },
346 { ".debug_info.dwo", ".zdebug_info.dwo" },
347 { ".debug_line.dwo", ".zdebug_line.dwo" },
348 { ".debug_loc.dwo", ".zdebug_loc.dwo" },
349 { ".debug_loclists.dwo", ".zdebug_loclists.dwo" },
350 { ".debug_macinfo.dwo", ".zdebug_macinfo.dwo" },
351 { ".debug_macro.dwo", ".zdebug_macro.dwo" },
352 { ".debug_str.dwo", ".zdebug_str.dwo" },
353 { ".debug_str_offsets.dwo", ".zdebug_str_offsets.dwo" },
354 { ".debug_types.dwo", ".zdebug_types.dwo" },
355 { ".debug_cu_index", ".zdebug_cu_index" },
356 { ".debug_tu_index", ".zdebug_tu_index" },
357 };
358
359 /* local data types */
360
361 /* The data in a compilation unit header, after target2host
362 translation, looks like this. */
363 struct comp_unit_head
364 {
365 unsigned int length;
366 short version;
367 unsigned char addr_size;
368 unsigned char signed_addr_p;
369 sect_offset abbrev_sect_off;
370
371 /* Size of file offsets; either 4 or 8. */
372 unsigned int offset_size;
373
374 /* Size of the length field; either 4 or 12. */
375 unsigned int initial_length_size;
376
377 enum dwarf_unit_type unit_type;
378
379 /* Offset to the first byte of this compilation unit header in the
380 .debug_info section, for resolving relative reference dies. */
381 sect_offset sect_off;
382
383 /* Offset to first die in this cu from the start of the cu.
384 This will be the first byte following the compilation unit header. */
385 cu_offset first_die_cu_offset;
386
387 /* 64-bit signature of this type unit - it is valid only for
388 UNIT_TYPE DW_UT_type. */
389 ULONGEST signature;
390
391 /* For types, offset in the type's DIE of the type defined by this TU. */
392 cu_offset type_cu_offset_in_tu;
393 };
394
395 /* Type used for delaying computation of method physnames.
396 See comments for compute_delayed_physnames. */
397 struct delayed_method_info
398 {
399 /* The type to which the method is attached, i.e., its parent class. */
400 struct type *type;
401
402 /* The index of the method in the type's function fieldlists. */
403 int fnfield_index;
404
405 /* The index of the method in the fieldlist. */
406 int index;
407
408 /* The name of the DIE. */
409 const char *name;
410
411 /* The DIE associated with this method. */
412 struct die_info *die;
413 };
414
415 /* Internal state when decoding a particular compilation unit. */
416 struct dwarf2_cu
417 {
418 explicit dwarf2_cu (struct dwarf2_per_cu_data *per_cu);
419 ~dwarf2_cu ();
420
421 DISABLE_COPY_AND_ASSIGN (dwarf2_cu);
422
423 /* The header of the compilation unit. */
424 struct comp_unit_head header {};
425
426 /* Base address of this compilation unit. */
427 CORE_ADDR base_address = 0;
428
429 /* Non-zero if base_address has been set. */
430 int base_known = 0;
431
432 /* The language we are debugging. */
433 enum language language = language_unknown;
434 const struct language_defn *language_defn = nullptr;
435
436 const char *producer = nullptr;
437
438 /* The generic symbol table building routines have separate lists for
439 file scope symbols and all all other scopes (local scopes). So
440 we need to select the right one to pass to add_symbol_to_list().
441 We do it by keeping a pointer to the correct list in list_in_scope.
442
443 FIXME: The original dwarf code just treated the file scope as the
444 first local scope, and all other local scopes as nested local
445 scopes, and worked fine. Check to see if we really need to
446 distinguish these in buildsym.c. */
447 struct pending **list_in_scope = nullptr;
448
449 /* Hash table holding all the loaded partial DIEs
450 with partial_die->offset.SECT_OFF as hash. */
451 htab_t partial_dies = nullptr;
452
453 /* Storage for things with the same lifetime as this read-in compilation
454 unit, including partial DIEs. */
455 auto_obstack comp_unit_obstack;
456
457 /* When multiple dwarf2_cu structures are living in memory, this field
458 chains them all together, so that they can be released efficiently.
459 We will probably also want a generation counter so that most-recently-used
460 compilation units are cached... */
461 struct dwarf2_per_cu_data *read_in_chain = nullptr;
462
463 /* Backlink to our per_cu entry. */
464 struct dwarf2_per_cu_data *per_cu;
465
466 /* How many compilation units ago was this CU last referenced? */
467 int last_used = 0;
468
469 /* A hash table of DIE cu_offset for following references with
470 die_info->offset.sect_off as hash. */
471 htab_t die_hash = nullptr;
472
473 /* Full DIEs if read in. */
474 struct die_info *dies = nullptr;
475
476 /* A set of pointers to dwarf2_per_cu_data objects for compilation
477 units referenced by this one. Only set during full symbol processing;
478 partial symbol tables do not have dependencies. */
479 htab_t dependencies = nullptr;
480
481 /* Header data from the line table, during full symbol processing. */
482 struct line_header *line_header = nullptr;
483 /* Non-NULL if LINE_HEADER is owned by this DWARF_CU. Otherwise,
484 it's owned by dwarf2_per_objfile::line_header_hash. If non-NULL,
485 this is the DW_TAG_compile_unit die for this CU. We'll hold on
486 to the line header as long as this DIE is being processed. See
487 process_die_scope. */
488 die_info *line_header_die_owner = nullptr;
489
490 /* A list of methods which need to have physnames computed
491 after all type information has been read. */
492 std::vector<delayed_method_info> method_list;
493
494 /* To be copied to symtab->call_site_htab. */
495 htab_t call_site_htab = nullptr;
496
497 /* Non-NULL if this CU came from a DWO file.
498 There is an invariant here that is important to remember:
499 Except for attributes copied from the top level DIE in the "main"
500 (or "stub") file in preparation for reading the DWO file
501 (e.g., DW_AT_GNU_addr_base), we KISS: there is only *one* CU.
502 Either there isn't a DWO file (in which case this is NULL and the point
503 is moot), or there is and either we're not going to read it (in which
504 case this is NULL) or there is and we are reading it (in which case this
505 is non-NULL). */
506 struct dwo_unit *dwo_unit = nullptr;
507
508 /* The DW_AT_addr_base attribute if present, zero otherwise
509 (zero is a valid value though).
510 Note this value comes from the Fission stub CU/TU's DIE. */
511 ULONGEST addr_base = 0;
512
513 /* The DW_AT_ranges_base attribute if present, zero otherwise
514 (zero is a valid value though).
515 Note this value comes from the Fission stub CU/TU's DIE.
516 Also note that the value is zero in the non-DWO case so this value can
517 be used without needing to know whether DWO files are in use or not.
518 N.B. This does not apply to DW_AT_ranges appearing in
519 DW_TAG_compile_unit dies. This is a bit of a wart, consider if ever
520 DW_AT_ranges appeared in the DW_TAG_compile_unit of DWO DIEs: then
521 DW_AT_ranges_base *would* have to be applied, and we'd have to care
522 whether the DW_AT_ranges attribute came from the skeleton or DWO. */
523 ULONGEST ranges_base = 0;
524
525 /* When reading debug info generated by older versions of rustc, we
526 have to rewrite some union types to be struct types with a
527 variant part. This rewriting must be done after the CU is fully
528 read in, because otherwise at the point of rewriting some struct
529 type might not have been fully processed. So, we keep a list of
530 all such types here and process them after expansion. */
531 std::vector<struct type *> rust_unions;
532
533 /* Mark used when releasing cached dies. */
534 unsigned int mark : 1;
535
536 /* This CU references .debug_loc. See the symtab->locations_valid field.
537 This test is imperfect as there may exist optimized debug code not using
538 any location list and still facing inlining issues if handled as
539 unoptimized code. For a future better test see GCC PR other/32998. */
540 unsigned int has_loclist : 1;
541
542 /* These cache the results for producer_is_* fields. CHECKED_PRODUCER is set
543 if all the producer_is_* fields are valid. This information is cached
544 because profiling CU expansion showed excessive time spent in
545 producer_is_gxx_lt_4_6. */
546 unsigned int checked_producer : 1;
547 unsigned int producer_is_gxx_lt_4_6 : 1;
548 unsigned int producer_is_gcc_lt_4_3 : 1;
549 unsigned int producer_is_icc_lt_14 : 1;
550
551 /* When set, the file that we're processing is known to have
552 debugging info for C++ namespaces. GCC 3.3.x did not produce
553 this information, but later versions do. */
554
555 unsigned int processing_has_namespace_info : 1;
556
557 struct partial_die_info *find_partial_die (sect_offset sect_off);
558 };
559
560 /* A struct that can be used as a hash key for tables based on DW_AT_stmt_list.
561 This includes type_unit_group and quick_file_names. */
562
563 struct stmt_list_hash
564 {
565 /* The DWO unit this table is from or NULL if there is none. */
566 struct dwo_unit *dwo_unit;
567
568 /* Offset in .debug_line or .debug_line.dwo. */
569 sect_offset line_sect_off;
570 };
571
572 /* Each element of dwarf2_per_objfile->type_unit_groups is a pointer to
573 an object of this type. */
574
575 struct type_unit_group
576 {
577 /* dwarf2read.c's main "handle" on a TU symtab.
578 To simplify things we create an artificial CU that "includes" all the
579 type units using this stmt_list so that the rest of the code still has
580 a "per_cu" handle on the symtab.
581 This PER_CU is recognized by having no section. */
582 #define IS_TYPE_UNIT_GROUP(per_cu) ((per_cu)->section == NULL)
583 struct dwarf2_per_cu_data per_cu;
584
585 /* The TUs that share this DW_AT_stmt_list entry.
586 This is added to while parsing type units to build partial symtabs,
587 and is deleted afterwards and not used again. */
588 VEC (sig_type_ptr) *tus;
589
590 /* The compunit symtab.
591 Type units in a group needn't all be defined in the same source file,
592 so we create an essentially anonymous symtab as the compunit symtab. */
593 struct compunit_symtab *compunit_symtab;
594
595 /* The data used to construct the hash key. */
596 struct stmt_list_hash hash;
597
598 /* The number of symtabs from the line header.
599 The value here must match line_header.num_file_names. */
600 unsigned int num_symtabs;
601
602 /* The symbol tables for this TU (obtained from the files listed in
603 DW_AT_stmt_list).
604 WARNING: The order of entries here must match the order of entries
605 in the line header. After the first TU using this type_unit_group, the
606 line header for the subsequent TUs is recreated from this. This is done
607 because we need to use the same symtabs for each TU using the same
608 DW_AT_stmt_list value. Also note that symtabs may be repeated here,
609 there's no guarantee the line header doesn't have duplicate entries. */
610 struct symtab **symtabs;
611 };
612
613 /* These sections are what may appear in a (real or virtual) DWO file. */
614
615 struct dwo_sections
616 {
617 struct dwarf2_section_info abbrev;
618 struct dwarf2_section_info line;
619 struct dwarf2_section_info loc;
620 struct dwarf2_section_info loclists;
621 struct dwarf2_section_info macinfo;
622 struct dwarf2_section_info macro;
623 struct dwarf2_section_info str;
624 struct dwarf2_section_info str_offsets;
625 /* In the case of a virtual DWO file, these two are unused. */
626 struct dwarf2_section_info info;
627 VEC (dwarf2_section_info_def) *types;
628 };
629
630 /* CUs/TUs in DWP/DWO files. */
631
632 struct dwo_unit
633 {
634 /* Backlink to the containing struct dwo_file. */
635 struct dwo_file *dwo_file;
636
637 /* The "id" that distinguishes this CU/TU.
638 .debug_info calls this "dwo_id", .debug_types calls this "signature".
639 Since signatures came first, we stick with it for consistency. */
640 ULONGEST signature;
641
642 /* The section this CU/TU lives in, in the DWO file. */
643 struct dwarf2_section_info *section;
644
645 /* Same as dwarf2_per_cu_data:{sect_off,length} but in the DWO section. */
646 sect_offset sect_off;
647 unsigned int length;
648
649 /* For types, offset in the type's DIE of the type defined by this TU. */
650 cu_offset type_offset_in_tu;
651 };
652
653 /* include/dwarf2.h defines the DWP section codes.
654 It defines a max value but it doesn't define a min value, which we
655 use for error checking, so provide one. */
656
657 enum dwp_v2_section_ids
658 {
659 DW_SECT_MIN = 1
660 };
661
662 /* Data for one DWO file.
663
664 This includes virtual DWO files (a virtual DWO file is a DWO file as it
665 appears in a DWP file). DWP files don't really have DWO files per se -
666 comdat folding of types "loses" the DWO file they came from, and from
667 a high level view DWP files appear to contain a mass of random types.
668 However, to maintain consistency with the non-DWP case we pretend DWP
669 files contain virtual DWO files, and we assign each TU with one virtual
670 DWO file (generally based on the line and abbrev section offsets -
671 a heuristic that seems to work in practice). */
672
673 struct dwo_file
674 {
675 /* The DW_AT_GNU_dwo_name attribute.
676 For virtual DWO files the name is constructed from the section offsets
677 of abbrev,line,loc,str_offsets so that we combine virtual DWO files
678 from related CU+TUs. */
679 const char *dwo_name;
680
681 /* The DW_AT_comp_dir attribute. */
682 const char *comp_dir;
683
684 /* The bfd, when the file is open. Otherwise this is NULL.
685 This is unused(NULL) for virtual DWO files where we use dwp_file.dbfd. */
686 bfd *dbfd;
687
688 /* The sections that make up this DWO file.
689 Remember that for virtual DWO files in DWP V2, these are virtual
690 sections (for lack of a better name). */
691 struct dwo_sections sections;
692
693 /* The CUs in the file.
694 Each element is a struct dwo_unit. Multiple CUs per DWO are supported as
695 an extension to handle LLVM's Link Time Optimization output (where
696 multiple source files may be compiled into a single object/dwo pair). */
697 htab_t cus;
698
699 /* Table of TUs in the file.
700 Each element is a struct dwo_unit. */
701 htab_t tus;
702 };
703
704 /* These sections are what may appear in a DWP file. */
705
706 struct dwp_sections
707 {
708 /* These are used by both DWP version 1 and 2. */
709 struct dwarf2_section_info str;
710 struct dwarf2_section_info cu_index;
711 struct dwarf2_section_info tu_index;
712
713 /* These are only used by DWP version 2 files.
714 In DWP version 1 the .debug_info.dwo, .debug_types.dwo, and other
715 sections are referenced by section number, and are not recorded here.
716 In DWP version 2 there is at most one copy of all these sections, each
717 section being (effectively) comprised of the concatenation of all of the
718 individual sections that exist in the version 1 format.
719 To keep the code simple we treat each of these concatenated pieces as a
720 section itself (a virtual section?). */
721 struct dwarf2_section_info abbrev;
722 struct dwarf2_section_info info;
723 struct dwarf2_section_info line;
724 struct dwarf2_section_info loc;
725 struct dwarf2_section_info macinfo;
726 struct dwarf2_section_info macro;
727 struct dwarf2_section_info str_offsets;
728 struct dwarf2_section_info types;
729 };
730
731 /* These sections are what may appear in a virtual DWO file in DWP version 1.
732 A virtual DWO file is a DWO file as it appears in a DWP file. */
733
734 struct virtual_v1_dwo_sections
735 {
736 struct dwarf2_section_info abbrev;
737 struct dwarf2_section_info line;
738 struct dwarf2_section_info loc;
739 struct dwarf2_section_info macinfo;
740 struct dwarf2_section_info macro;
741 struct dwarf2_section_info str_offsets;
742 /* Each DWP hash table entry records one CU or one TU.
743 That is recorded here, and copied to dwo_unit.section. */
744 struct dwarf2_section_info info_or_types;
745 };
746
747 /* Similar to virtual_v1_dwo_sections, but for DWP version 2.
748 In version 2, the sections of the DWO files are concatenated together
749 and stored in one section of that name. Thus each ELF section contains
750 several "virtual" sections. */
751
752 struct virtual_v2_dwo_sections
753 {
754 bfd_size_type abbrev_offset;
755 bfd_size_type abbrev_size;
756
757 bfd_size_type line_offset;
758 bfd_size_type line_size;
759
760 bfd_size_type loc_offset;
761 bfd_size_type loc_size;
762
763 bfd_size_type macinfo_offset;
764 bfd_size_type macinfo_size;
765
766 bfd_size_type macro_offset;
767 bfd_size_type macro_size;
768
769 bfd_size_type str_offsets_offset;
770 bfd_size_type str_offsets_size;
771
772 /* Each DWP hash table entry records one CU or one TU.
773 That is recorded here, and copied to dwo_unit.section. */
774 bfd_size_type info_or_types_offset;
775 bfd_size_type info_or_types_size;
776 };
777
778 /* Contents of DWP hash tables. */
779
780 struct dwp_hash_table
781 {
782 uint32_t version, nr_columns;
783 uint32_t nr_units, nr_slots;
784 const gdb_byte *hash_table, *unit_table;
785 union
786 {
787 struct
788 {
789 const gdb_byte *indices;
790 } v1;
791 struct
792 {
793 /* This is indexed by column number and gives the id of the section
794 in that column. */
795 #define MAX_NR_V2_DWO_SECTIONS \
796 (1 /* .debug_info or .debug_types */ \
797 + 1 /* .debug_abbrev */ \
798 + 1 /* .debug_line */ \
799 + 1 /* .debug_loc */ \
800 + 1 /* .debug_str_offsets */ \
801 + 1 /* .debug_macro or .debug_macinfo */)
802 int section_ids[MAX_NR_V2_DWO_SECTIONS];
803 const gdb_byte *offsets;
804 const gdb_byte *sizes;
805 } v2;
806 } section_pool;
807 };
808
809 /* Data for one DWP file. */
810
811 struct dwp_file
812 {
813 /* Name of the file. */
814 const char *name;
815
816 /* File format version. */
817 int version;
818
819 /* The bfd. */
820 bfd *dbfd;
821
822 /* Section info for this file. */
823 struct dwp_sections sections;
824
825 /* Table of CUs in the file. */
826 const struct dwp_hash_table *cus;
827
828 /* Table of TUs in the file. */
829 const struct dwp_hash_table *tus;
830
831 /* Tables of loaded CUs/TUs. Each entry is a struct dwo_unit *. */
832 htab_t loaded_cus;
833 htab_t loaded_tus;
834
835 /* Table to map ELF section numbers to their sections.
836 This is only needed for the DWP V1 file format. */
837 unsigned int num_sections;
838 asection **elf_sections;
839 };
840
841 /* This represents a '.dwz' file. */
842
843 struct dwz_file
844 {
845 /* A dwz file can only contain a few sections. */
846 struct dwarf2_section_info abbrev;
847 struct dwarf2_section_info info;
848 struct dwarf2_section_info str;
849 struct dwarf2_section_info line;
850 struct dwarf2_section_info macro;
851 struct dwarf2_section_info gdb_index;
852 struct dwarf2_section_info debug_names;
853
854 /* The dwz's BFD. */
855 bfd *dwz_bfd;
856 };
857
858 /* Struct used to pass misc. parameters to read_die_and_children, et
859 al. which are used for both .debug_info and .debug_types dies.
860 All parameters here are unchanging for the life of the call. This
861 struct exists to abstract away the constant parameters of die reading. */
862
863 struct die_reader_specs
864 {
865 /* The bfd of die_section. */
866 bfd* abfd;
867
868 /* The CU of the DIE we are parsing. */
869 struct dwarf2_cu *cu;
870
871 /* Non-NULL if reading a DWO file (including one packaged into a DWP). */
872 struct dwo_file *dwo_file;
873
874 /* The section the die comes from.
875 This is either .debug_info or .debug_types, or the .dwo variants. */
876 struct dwarf2_section_info *die_section;
877
878 /* die_section->buffer. */
879 const gdb_byte *buffer;
880
881 /* The end of the buffer. */
882 const gdb_byte *buffer_end;
883
884 /* The value of the DW_AT_comp_dir attribute. */
885 const char *comp_dir;
886
887 /* The abbreviation table to use when reading the DIEs. */
888 struct abbrev_table *abbrev_table;
889 };
890
891 /* Type of function passed to init_cutu_and_read_dies, et.al. */
892 typedef void (die_reader_func_ftype) (const struct die_reader_specs *reader,
893 const gdb_byte *info_ptr,
894 struct die_info *comp_unit_die,
895 int has_children,
896 void *data);
897
898 /* A 1-based directory index. This is a strong typedef to prevent
899 accidentally using a directory index as a 0-based index into an
900 array/vector. */
901 enum class dir_index : unsigned int {};
902
903 /* Likewise, a 1-based file name index. */
904 enum class file_name_index : unsigned int {};
905
906 struct file_entry
907 {
908 file_entry () = default;
909
910 file_entry (const char *name_, dir_index d_index_,
911 unsigned int mod_time_, unsigned int length_)
912 : name (name_),
913 d_index (d_index_),
914 mod_time (mod_time_),
915 length (length_)
916 {}
917
918 /* Return the include directory at D_INDEX stored in LH. Returns
919 NULL if D_INDEX is out of bounds. */
920 const char *include_dir (const line_header *lh) const;
921
922 /* The file name. Note this is an observing pointer. The memory is
923 owned by debug_line_buffer. */
924 const char *name {};
925
926 /* The directory index (1-based). */
927 dir_index d_index {};
928
929 unsigned int mod_time {};
930
931 unsigned int length {};
932
933 /* True if referenced by the Line Number Program. */
934 bool included_p {};
935
936 /* The associated symbol table, if any. */
937 struct symtab *symtab {};
938 };
939
940 /* The line number information for a compilation unit (found in the
941 .debug_line section) begins with a "statement program header",
942 which contains the following information. */
943 struct line_header
944 {
945 line_header ()
946 : offset_in_dwz {}
947 {}
948
949 /* Add an entry to the include directory table. */
950 void add_include_dir (const char *include_dir);
951
952 /* Add an entry to the file name table. */
953 void add_file_name (const char *name, dir_index d_index,
954 unsigned int mod_time, unsigned int length);
955
956 /* Return the include dir at INDEX (1-based). Returns NULL if INDEX
957 is out of bounds. */
958 const char *include_dir_at (dir_index index) const
959 {
960 /* Convert directory index number (1-based) to vector index
961 (0-based). */
962 size_t vec_index = to_underlying (index) - 1;
963
964 if (vec_index >= include_dirs.size ())
965 return NULL;
966 return include_dirs[vec_index];
967 }
968
969 /* Return the file name at INDEX (1-based). Returns NULL if INDEX
970 is out of bounds. */
971 file_entry *file_name_at (file_name_index index)
972 {
973 /* Convert file name index number (1-based) to vector index
974 (0-based). */
975 size_t vec_index = to_underlying (index) - 1;
976
977 if (vec_index >= file_names.size ())
978 return NULL;
979 return &file_names[vec_index];
980 }
981
982 /* Const version of the above. */
983 const file_entry *file_name_at (unsigned int index) const
984 {
985 if (index >= file_names.size ())
986 return NULL;
987 return &file_names[index];
988 }
989
990 /* Offset of line number information in .debug_line section. */
991 sect_offset sect_off {};
992
993 /* OFFSET is for struct dwz_file associated with dwarf2_per_objfile. */
994 unsigned offset_in_dwz : 1; /* Can't initialize bitfields in-class. */
995
996 unsigned int total_length {};
997 unsigned short version {};
998 unsigned int header_length {};
999 unsigned char minimum_instruction_length {};
1000 unsigned char maximum_ops_per_instruction {};
1001 unsigned char default_is_stmt {};
1002 int line_base {};
1003 unsigned char line_range {};
1004 unsigned char opcode_base {};
1005
1006 /* standard_opcode_lengths[i] is the number of operands for the
1007 standard opcode whose value is i. This means that
1008 standard_opcode_lengths[0] is unused, and the last meaningful
1009 element is standard_opcode_lengths[opcode_base - 1]. */
1010 std::unique_ptr<unsigned char[]> standard_opcode_lengths;
1011
1012 /* The include_directories table. Note these are observing
1013 pointers. The memory is owned by debug_line_buffer. */
1014 std::vector<const char *> include_dirs;
1015
1016 /* The file_names table. */
1017 std::vector<file_entry> file_names;
1018
1019 /* The start and end of the statement program following this
1020 header. These point into dwarf2_per_objfile->line_buffer. */
1021 const gdb_byte *statement_program_start {}, *statement_program_end {};
1022 };
1023
1024 typedef std::unique_ptr<line_header> line_header_up;
1025
1026 const char *
1027 file_entry::include_dir (const line_header *lh) const
1028 {
1029 return lh->include_dir_at (d_index);
1030 }
1031
1032 /* When we construct a partial symbol table entry we only
1033 need this much information. */
1034 struct partial_die_info : public allocate_on_obstack
1035 {
1036 partial_die_info (sect_offset sect_off, struct abbrev_info *abbrev);
1037
1038 /* Disable assign but still keep copy ctor, which is needed
1039 load_partial_dies. */
1040 partial_die_info& operator=(const partial_die_info& rhs) = delete;
1041
1042 /* Adjust the partial die before generating a symbol for it. This
1043 function may set the is_external flag or change the DIE's
1044 name. */
1045 void fixup (struct dwarf2_cu *cu);
1046
1047 /* Read a minimal amount of information into the minimal die
1048 structure. */
1049 const gdb_byte *read (const struct die_reader_specs *reader,
1050 const struct abbrev_info &abbrev,
1051 const gdb_byte *info_ptr);
1052
1053 /* Offset of this DIE. */
1054 const sect_offset sect_off;
1055
1056 /* DWARF-2 tag for this DIE. */
1057 const ENUM_BITFIELD(dwarf_tag) tag : 16;
1058
1059 /* Assorted flags describing the data found in this DIE. */
1060 const unsigned int has_children : 1;
1061
1062 unsigned int is_external : 1;
1063 unsigned int is_declaration : 1;
1064 unsigned int has_type : 1;
1065 unsigned int has_specification : 1;
1066 unsigned int has_pc_info : 1;
1067 unsigned int may_be_inlined : 1;
1068
1069 /* This DIE has been marked DW_AT_main_subprogram. */
1070 unsigned int main_subprogram : 1;
1071
1072 /* Flag set if the SCOPE field of this structure has been
1073 computed. */
1074 unsigned int scope_set : 1;
1075
1076 /* Flag set if the DIE has a byte_size attribute. */
1077 unsigned int has_byte_size : 1;
1078
1079 /* Flag set if the DIE has a DW_AT_const_value attribute. */
1080 unsigned int has_const_value : 1;
1081
1082 /* Flag set if any of the DIE's children are template arguments. */
1083 unsigned int has_template_arguments : 1;
1084
1085 /* Flag set if fixup has been called on this die. */
1086 unsigned int fixup_called : 1;
1087
1088 /* Flag set if DW_TAG_imported_unit uses DW_FORM_GNU_ref_alt. */
1089 unsigned int is_dwz : 1;
1090
1091 /* Flag set if spec_offset uses DW_FORM_GNU_ref_alt. */
1092 unsigned int spec_is_dwz : 1;
1093
1094 /* The name of this DIE. Normally the value of DW_AT_name, but
1095 sometimes a default name for unnamed DIEs. */
1096 const char *name = nullptr;
1097
1098 /* The linkage name, if present. */
1099 const char *linkage_name = nullptr;
1100
1101 /* The scope to prepend to our children. This is generally
1102 allocated on the comp_unit_obstack, so will disappear
1103 when this compilation unit leaves the cache. */
1104 const char *scope = nullptr;
1105
1106 /* Some data associated with the partial DIE. The tag determines
1107 which field is live. */
1108 union
1109 {
1110 /* The location description associated with this DIE, if any. */
1111 struct dwarf_block *locdesc;
1112 /* The offset of an import, for DW_TAG_imported_unit. */
1113 sect_offset sect_off;
1114 } d {};
1115
1116 /* If HAS_PC_INFO, the PC range associated with this DIE. */
1117 CORE_ADDR lowpc = 0;
1118 CORE_ADDR highpc = 0;
1119
1120 /* Pointer into the info_buffer (or types_buffer) pointing at the target of
1121 DW_AT_sibling, if any. */
1122 /* NOTE: This member isn't strictly necessary, partial_die_info::read
1123 could return DW_AT_sibling values to its caller load_partial_dies. */
1124 const gdb_byte *sibling = nullptr;
1125
1126 /* If HAS_SPECIFICATION, the offset of the DIE referred to by
1127 DW_AT_specification (or DW_AT_abstract_origin or
1128 DW_AT_extension). */
1129 sect_offset spec_offset {};
1130
1131 /* Pointers to this DIE's parent, first child, and next sibling,
1132 if any. */
1133 struct partial_die_info *die_parent = nullptr;
1134 struct partial_die_info *die_child = nullptr;
1135 struct partial_die_info *die_sibling = nullptr;
1136
1137 friend struct partial_die_info *
1138 dwarf2_cu::find_partial_die (sect_offset sect_off);
1139
1140 private:
1141 /* Only need to do look up in dwarf2_cu::find_partial_die. */
1142 partial_die_info (sect_offset sect_off)
1143 : partial_die_info (sect_off, DW_TAG_padding, 0)
1144 {
1145 }
1146
1147 partial_die_info (sect_offset sect_off_, enum dwarf_tag tag_,
1148 int has_children_)
1149 : sect_off (sect_off_), tag (tag_), has_children (has_children_)
1150 {
1151 is_external = 0;
1152 is_declaration = 0;
1153 has_type = 0;
1154 has_specification = 0;
1155 has_pc_info = 0;
1156 may_be_inlined = 0;
1157 main_subprogram = 0;
1158 scope_set = 0;
1159 has_byte_size = 0;
1160 has_const_value = 0;
1161 has_template_arguments = 0;
1162 fixup_called = 0;
1163 is_dwz = 0;
1164 spec_is_dwz = 0;
1165 }
1166 };
1167
1168 /* This data structure holds the information of an abbrev. */
1169 struct abbrev_info
1170 {
1171 unsigned int number; /* number identifying abbrev */
1172 enum dwarf_tag tag; /* dwarf tag */
1173 unsigned short has_children; /* boolean */
1174 unsigned short num_attrs; /* number of attributes */
1175 struct attr_abbrev *attrs; /* an array of attribute descriptions */
1176 struct abbrev_info *next; /* next in chain */
1177 };
1178
1179 struct attr_abbrev
1180 {
1181 ENUM_BITFIELD(dwarf_attribute) name : 16;
1182 ENUM_BITFIELD(dwarf_form) form : 16;
1183
1184 /* It is valid only if FORM is DW_FORM_implicit_const. */
1185 LONGEST implicit_const;
1186 };
1187
1188 /* Size of abbrev_table.abbrev_hash_table. */
1189 #define ABBREV_HASH_SIZE 121
1190
1191 /* Top level data structure to contain an abbreviation table. */
1192
1193 struct abbrev_table
1194 {
1195 explicit abbrev_table (sect_offset off)
1196 : sect_off (off)
1197 {
1198 m_abbrevs =
1199 XOBNEWVEC (&abbrev_obstack, struct abbrev_info *, ABBREV_HASH_SIZE);
1200 memset (m_abbrevs, 0, ABBREV_HASH_SIZE * sizeof (struct abbrev_info *));
1201 }
1202
1203 DISABLE_COPY_AND_ASSIGN (abbrev_table);
1204
1205 /* Allocate space for a struct abbrev_info object in
1206 ABBREV_TABLE. */
1207 struct abbrev_info *alloc_abbrev ();
1208
1209 /* Add an abbreviation to the table. */
1210 void add_abbrev (unsigned int abbrev_number, struct abbrev_info *abbrev);
1211
1212 /* Look up an abbrev in the table.
1213 Returns NULL if the abbrev is not found. */
1214
1215 struct abbrev_info *lookup_abbrev (unsigned int abbrev_number);
1216
1217
1218 /* Where the abbrev table came from.
1219 This is used as a sanity check when the table is used. */
1220 const sect_offset sect_off;
1221
1222 /* Storage for the abbrev table. */
1223 auto_obstack abbrev_obstack;
1224
1225 private:
1226
1227 /* Hash table of abbrevs.
1228 This is an array of size ABBREV_HASH_SIZE allocated in abbrev_obstack.
1229 It could be statically allocated, but the previous code didn't so we
1230 don't either. */
1231 struct abbrev_info **m_abbrevs;
1232 };
1233
1234 typedef std::unique_ptr<struct abbrev_table> abbrev_table_up;
1235
1236 /* Attributes have a name and a value. */
1237 struct attribute
1238 {
1239 ENUM_BITFIELD(dwarf_attribute) name : 16;
1240 ENUM_BITFIELD(dwarf_form) form : 15;
1241
1242 /* Has DW_STRING already been updated by dwarf2_canonicalize_name? This
1243 field should be in u.str (existing only for DW_STRING) but it is kept
1244 here for better struct attribute alignment. */
1245 unsigned int string_is_canonical : 1;
1246
1247 union
1248 {
1249 const char *str;
1250 struct dwarf_block *blk;
1251 ULONGEST unsnd;
1252 LONGEST snd;
1253 CORE_ADDR addr;
1254 ULONGEST signature;
1255 }
1256 u;
1257 };
1258
1259 /* This data structure holds a complete die structure. */
1260 struct die_info
1261 {
1262 /* DWARF-2 tag for this DIE. */
1263 ENUM_BITFIELD(dwarf_tag) tag : 16;
1264
1265 /* Number of attributes */
1266 unsigned char num_attrs;
1267
1268 /* True if we're presently building the full type name for the
1269 type derived from this DIE. */
1270 unsigned char building_fullname : 1;
1271
1272 /* True if this die is in process. PR 16581. */
1273 unsigned char in_process : 1;
1274
1275 /* Abbrev number */
1276 unsigned int abbrev;
1277
1278 /* Offset in .debug_info or .debug_types section. */
1279 sect_offset sect_off;
1280
1281 /* The dies in a compilation unit form an n-ary tree. PARENT
1282 points to this die's parent; CHILD points to the first child of
1283 this node; and all the children of a given node are chained
1284 together via their SIBLING fields. */
1285 struct die_info *child; /* Its first child, if any. */
1286 struct die_info *sibling; /* Its next sibling, if any. */
1287 struct die_info *parent; /* Its parent, if any. */
1288
1289 /* An array of attributes, with NUM_ATTRS elements. There may be
1290 zero, but it's not common and zero-sized arrays are not
1291 sufficiently portable C. */
1292 struct attribute attrs[1];
1293 };
1294
1295 /* Get at parts of an attribute structure. */
1296
1297 #define DW_STRING(attr) ((attr)->u.str)
1298 #define DW_STRING_IS_CANONICAL(attr) ((attr)->string_is_canonical)
1299 #define DW_UNSND(attr) ((attr)->u.unsnd)
1300 #define DW_BLOCK(attr) ((attr)->u.blk)
1301 #define DW_SND(attr) ((attr)->u.snd)
1302 #define DW_ADDR(attr) ((attr)->u.addr)
1303 #define DW_SIGNATURE(attr) ((attr)->u.signature)
1304
1305 /* Blocks are a bunch of untyped bytes. */
1306 struct dwarf_block
1307 {
1308 size_t size;
1309
1310 /* Valid only if SIZE is not zero. */
1311 const gdb_byte *data;
1312 };
1313
1314 #ifndef ATTR_ALLOC_CHUNK
1315 #define ATTR_ALLOC_CHUNK 4
1316 #endif
1317
1318 /* Allocate fields for structs, unions and enums in this size. */
1319 #ifndef DW_FIELD_ALLOC_CHUNK
1320 #define DW_FIELD_ALLOC_CHUNK 4
1321 #endif
1322
1323 /* FIXME: We might want to set this from BFD via bfd_arch_bits_per_byte,
1324 but this would require a corresponding change in unpack_field_as_long
1325 and friends. */
1326 static int bits_per_byte = 8;
1327
1328 /* When reading a variant or variant part, we track a bit more
1329 information about the field, and store it in an object of this
1330 type. */
1331
1332 struct variant_field
1333 {
1334 /* If we see a DW_TAG_variant, then this will be the discriminant
1335 value. */
1336 ULONGEST discriminant_value;
1337 /* If we see a DW_TAG_variant, then this will be set if this is the
1338 default branch. */
1339 bool default_branch;
1340 /* While reading a DW_TAG_variant_part, this will be set if this
1341 field is the discriminant. */
1342 bool is_discriminant;
1343 };
1344
1345 struct nextfield
1346 {
1347 int accessibility = 0;
1348 int virtuality = 0;
1349 /* Extra information to describe a variant or variant part. */
1350 struct variant_field variant {};
1351 struct field field {};
1352 };
1353
1354 struct fnfieldlist
1355 {
1356 const char *name = nullptr;
1357 std::vector<struct fn_field> fnfields;
1358 };
1359
1360 /* The routines that read and process dies for a C struct or C++ class
1361 pass lists of data member fields and lists of member function fields
1362 in an instance of a field_info structure, as defined below. */
1363 struct field_info
1364 {
1365 /* List of data member and baseclasses fields. */
1366 std::vector<struct nextfield> fields;
1367 std::vector<struct nextfield> baseclasses;
1368
1369 /* Number of fields (including baseclasses). */
1370 int nfields = 0;
1371
1372 /* Set if the accesibility of one of the fields is not public. */
1373 int non_public_fields = 0;
1374
1375 /* Member function fieldlist array, contains name of possibly overloaded
1376 member function, number of overloaded member functions and a pointer
1377 to the head of the member function field chain. */
1378 std::vector<struct fnfieldlist> fnfieldlists;
1379
1380 /* typedefs defined inside this class. TYPEDEF_FIELD_LIST contains head of
1381 a NULL terminated list of TYPEDEF_FIELD_LIST_COUNT elements. */
1382 std::vector<struct decl_field> typedef_field_list;
1383
1384 /* Nested types defined by this class and the number of elements in this
1385 list. */
1386 std::vector<struct decl_field> nested_types_list;
1387 };
1388
1389 /* One item on the queue of compilation units to read in full symbols
1390 for. */
1391 struct dwarf2_queue_item
1392 {
1393 struct dwarf2_per_cu_data *per_cu;
1394 enum language pretend_language;
1395 struct dwarf2_queue_item *next;
1396 };
1397
1398 /* The current queue. */
1399 static struct dwarf2_queue_item *dwarf2_queue, *dwarf2_queue_tail;
1400
1401 /* Loaded secondary compilation units are kept in memory until they
1402 have not been referenced for the processing of this many
1403 compilation units. Set this to zero to disable caching. Cache
1404 sizes of up to at least twenty will improve startup time for
1405 typical inter-CU-reference binaries, at an obvious memory cost. */
1406 static int dwarf_max_cache_age = 5;
1407 static void
1408 show_dwarf_max_cache_age (struct ui_file *file, int from_tty,
1409 struct cmd_list_element *c, const char *value)
1410 {
1411 fprintf_filtered (file, _("The upper bound on the age of cached "
1412 "DWARF compilation units is %s.\n"),
1413 value);
1414 }
1415 \f
1416 /* local function prototypes */
1417
1418 static const char *get_section_name (const struct dwarf2_section_info *);
1419
1420 static const char *get_section_file_name (const struct dwarf2_section_info *);
1421
1422 static void dwarf2_find_base_address (struct die_info *die,
1423 struct dwarf2_cu *cu);
1424
1425 static struct partial_symtab *create_partial_symtab
1426 (struct dwarf2_per_cu_data *per_cu, const char *name);
1427
1428 static void build_type_psymtabs_reader (const struct die_reader_specs *reader,
1429 const gdb_byte *info_ptr,
1430 struct die_info *type_unit_die,
1431 int has_children, void *data);
1432
1433 static void dwarf2_build_psymtabs_hard
1434 (struct dwarf2_per_objfile *dwarf2_per_objfile);
1435
1436 static void scan_partial_symbols (struct partial_die_info *,
1437 CORE_ADDR *, CORE_ADDR *,
1438 int, struct dwarf2_cu *);
1439
1440 static void add_partial_symbol (struct partial_die_info *,
1441 struct dwarf2_cu *);
1442
1443 static void add_partial_namespace (struct partial_die_info *pdi,
1444 CORE_ADDR *lowpc, CORE_ADDR *highpc,
1445 int set_addrmap, struct dwarf2_cu *cu);
1446
1447 static void add_partial_module (struct partial_die_info *pdi, CORE_ADDR *lowpc,
1448 CORE_ADDR *highpc, int set_addrmap,
1449 struct dwarf2_cu *cu);
1450
1451 static void add_partial_enumeration (struct partial_die_info *enum_pdi,
1452 struct dwarf2_cu *cu);
1453
1454 static void add_partial_subprogram (struct partial_die_info *pdi,
1455 CORE_ADDR *lowpc, CORE_ADDR *highpc,
1456 int need_pc, struct dwarf2_cu *cu);
1457
1458 static void dwarf2_read_symtab (struct partial_symtab *,
1459 struct objfile *);
1460
1461 static void psymtab_to_symtab_1 (struct partial_symtab *);
1462
1463 static abbrev_table_up abbrev_table_read_table
1464 (struct dwarf2_per_objfile *dwarf2_per_objfile, struct dwarf2_section_info *,
1465 sect_offset);
1466
1467 static unsigned int peek_abbrev_code (bfd *, const gdb_byte *);
1468
1469 static struct partial_die_info *load_partial_dies
1470 (const struct die_reader_specs *, const gdb_byte *, int);
1471
1472 static struct partial_die_info *find_partial_die (sect_offset, int,
1473 struct dwarf2_cu *);
1474
1475 static const gdb_byte *read_attribute (const struct die_reader_specs *,
1476 struct attribute *, struct attr_abbrev *,
1477 const gdb_byte *);
1478
1479 static unsigned int read_1_byte (bfd *, const gdb_byte *);
1480
1481 static int read_1_signed_byte (bfd *, const gdb_byte *);
1482
1483 static unsigned int read_2_bytes (bfd *, const gdb_byte *);
1484
1485 static unsigned int read_4_bytes (bfd *, const gdb_byte *);
1486
1487 static ULONGEST read_8_bytes (bfd *, const gdb_byte *);
1488
1489 static CORE_ADDR read_address (bfd *, const gdb_byte *ptr, struct dwarf2_cu *,
1490 unsigned int *);
1491
1492 static LONGEST read_initial_length (bfd *, const gdb_byte *, unsigned int *);
1493
1494 static LONGEST read_checked_initial_length_and_offset
1495 (bfd *, const gdb_byte *, const struct comp_unit_head *,
1496 unsigned int *, unsigned int *);
1497
1498 static LONGEST read_offset (bfd *, const gdb_byte *,
1499 const struct comp_unit_head *,
1500 unsigned int *);
1501
1502 static LONGEST read_offset_1 (bfd *, const gdb_byte *, unsigned int);
1503
1504 static sect_offset read_abbrev_offset
1505 (struct dwarf2_per_objfile *dwarf2_per_objfile,
1506 struct dwarf2_section_info *, sect_offset);
1507
1508 static const gdb_byte *read_n_bytes (bfd *, const gdb_byte *, unsigned int);
1509
1510 static const char *read_direct_string (bfd *, const gdb_byte *, unsigned int *);
1511
1512 static const char *read_indirect_string
1513 (struct dwarf2_per_objfile *dwarf2_per_objfile, bfd *, const gdb_byte *,
1514 const struct comp_unit_head *, unsigned int *);
1515
1516 static const char *read_indirect_line_string
1517 (struct dwarf2_per_objfile *dwarf2_per_objfile, bfd *, const gdb_byte *,
1518 const struct comp_unit_head *, unsigned int *);
1519
1520 static const char *read_indirect_string_at_offset
1521 (struct dwarf2_per_objfile *dwarf2_per_objfile, bfd *abfd,
1522 LONGEST str_offset);
1523
1524 static const char *read_indirect_string_from_dwz
1525 (struct objfile *objfile, struct dwz_file *, LONGEST);
1526
1527 static LONGEST read_signed_leb128 (bfd *, const gdb_byte *, unsigned int *);
1528
1529 static CORE_ADDR read_addr_index_from_leb128 (struct dwarf2_cu *,
1530 const gdb_byte *,
1531 unsigned int *);
1532
1533 static const char *read_str_index (const struct die_reader_specs *reader,
1534 ULONGEST str_index);
1535
1536 static void set_cu_language (unsigned int, struct dwarf2_cu *);
1537
1538 static struct attribute *dwarf2_attr (struct die_info *, unsigned int,
1539 struct dwarf2_cu *);
1540
1541 static struct attribute *dwarf2_attr_no_follow (struct die_info *,
1542 unsigned int);
1543
1544 static const char *dwarf2_string_attr (struct die_info *die, unsigned int name,
1545 struct dwarf2_cu *cu);
1546
1547 static int dwarf2_flag_true_p (struct die_info *die, unsigned name,
1548 struct dwarf2_cu *cu);
1549
1550 static int die_is_declaration (struct die_info *, struct dwarf2_cu *cu);
1551
1552 static struct die_info *die_specification (struct die_info *die,
1553 struct dwarf2_cu **);
1554
1555 static line_header_up dwarf_decode_line_header (sect_offset sect_off,
1556 struct dwarf2_cu *cu);
1557
1558 static void dwarf_decode_lines (struct line_header *, const char *,
1559 struct dwarf2_cu *, struct partial_symtab *,
1560 CORE_ADDR, int decode_mapping);
1561
1562 static void dwarf2_start_subfile (const char *, const char *);
1563
1564 static struct compunit_symtab *dwarf2_start_symtab (struct dwarf2_cu *,
1565 const char *, const char *,
1566 CORE_ADDR);
1567
1568 static struct symbol *new_symbol (struct die_info *, struct type *,
1569 struct dwarf2_cu *, struct symbol * = NULL);
1570
1571 static void dwarf2_const_value (const struct attribute *, struct symbol *,
1572 struct dwarf2_cu *);
1573
1574 static void dwarf2_const_value_attr (const struct attribute *attr,
1575 struct type *type,
1576 const char *name,
1577 struct obstack *obstack,
1578 struct dwarf2_cu *cu, LONGEST *value,
1579 const gdb_byte **bytes,
1580 struct dwarf2_locexpr_baton **baton);
1581
1582 static struct type *die_type (struct die_info *, struct dwarf2_cu *);
1583
1584 static int need_gnat_info (struct dwarf2_cu *);
1585
1586 static struct type *die_descriptive_type (struct die_info *,
1587 struct dwarf2_cu *);
1588
1589 static void set_descriptive_type (struct type *, struct die_info *,
1590 struct dwarf2_cu *);
1591
1592 static struct type *die_containing_type (struct die_info *,
1593 struct dwarf2_cu *);
1594
1595 static struct type *lookup_die_type (struct die_info *, const struct attribute *,
1596 struct dwarf2_cu *);
1597
1598 static struct type *read_type_die (struct die_info *, struct dwarf2_cu *);
1599
1600 static struct type *read_type_die_1 (struct die_info *, struct dwarf2_cu *);
1601
1602 static const char *determine_prefix (struct die_info *die, struct dwarf2_cu *);
1603
1604 static char *typename_concat (struct obstack *obs, const char *prefix,
1605 const char *suffix, int physname,
1606 struct dwarf2_cu *cu);
1607
1608 static void read_file_scope (struct die_info *, struct dwarf2_cu *);
1609
1610 static void read_type_unit_scope (struct die_info *, struct dwarf2_cu *);
1611
1612 static void read_func_scope (struct die_info *, struct dwarf2_cu *);
1613
1614 static void read_lexical_block_scope (struct die_info *, struct dwarf2_cu *);
1615
1616 static void read_call_site_scope (struct die_info *die, struct dwarf2_cu *cu);
1617
1618 static void read_variable (struct die_info *die, struct dwarf2_cu *cu);
1619
1620 static int dwarf2_ranges_read (unsigned, CORE_ADDR *, CORE_ADDR *,
1621 struct dwarf2_cu *, struct partial_symtab *);
1622
1623 /* How dwarf2_get_pc_bounds constructed its *LOWPC and *HIGHPC return
1624 values. Keep the items ordered with increasing constraints compliance. */
1625 enum pc_bounds_kind
1626 {
1627 /* No attribute DW_AT_low_pc, DW_AT_high_pc or DW_AT_ranges was found. */
1628 PC_BOUNDS_NOT_PRESENT,
1629
1630 /* Some of the attributes DW_AT_low_pc, DW_AT_high_pc or DW_AT_ranges
1631 were present but they do not form a valid range of PC addresses. */
1632 PC_BOUNDS_INVALID,
1633
1634 /* Discontiguous range was found - that is DW_AT_ranges was found. */
1635 PC_BOUNDS_RANGES,
1636
1637 /* Contiguous range was found - DW_AT_low_pc and DW_AT_high_pc were found. */
1638 PC_BOUNDS_HIGH_LOW,
1639 };
1640
1641 static enum pc_bounds_kind dwarf2_get_pc_bounds (struct die_info *,
1642 CORE_ADDR *, CORE_ADDR *,
1643 struct dwarf2_cu *,
1644 struct partial_symtab *);
1645
1646 static void get_scope_pc_bounds (struct die_info *,
1647 CORE_ADDR *, CORE_ADDR *,
1648 struct dwarf2_cu *);
1649
1650 static void dwarf2_record_block_ranges (struct die_info *, struct block *,
1651 CORE_ADDR, struct dwarf2_cu *);
1652
1653 static void dwarf2_add_field (struct field_info *, struct die_info *,
1654 struct dwarf2_cu *);
1655
1656 static void dwarf2_attach_fields_to_type (struct field_info *,
1657 struct type *, struct dwarf2_cu *);
1658
1659 static void dwarf2_add_member_fn (struct field_info *,
1660 struct die_info *, struct type *,
1661 struct dwarf2_cu *);
1662
1663 static void dwarf2_attach_fn_fields_to_type (struct field_info *,
1664 struct type *,
1665 struct dwarf2_cu *);
1666
1667 static void process_structure_scope (struct die_info *, struct dwarf2_cu *);
1668
1669 static void read_common_block (struct die_info *, struct dwarf2_cu *);
1670
1671 static void read_namespace (struct die_info *die, struct dwarf2_cu *);
1672
1673 static void read_module (struct die_info *die, struct dwarf2_cu *cu);
1674
1675 static struct using_direct **using_directives (enum language);
1676
1677 static void read_import_statement (struct die_info *die, struct dwarf2_cu *);
1678
1679 static int read_namespace_alias (struct die_info *die, struct dwarf2_cu *cu);
1680
1681 static struct type *read_module_type (struct die_info *die,
1682 struct dwarf2_cu *cu);
1683
1684 static const char *namespace_name (struct die_info *die,
1685 int *is_anonymous, struct dwarf2_cu *);
1686
1687 static void process_enumeration_scope (struct die_info *, struct dwarf2_cu *);
1688
1689 static CORE_ADDR decode_locdesc (struct dwarf_block *, struct dwarf2_cu *);
1690
1691 static enum dwarf_array_dim_ordering read_array_order (struct die_info *,
1692 struct dwarf2_cu *);
1693
1694 static struct die_info *read_die_and_siblings_1
1695 (const struct die_reader_specs *, const gdb_byte *, const gdb_byte **,
1696 struct die_info *);
1697
1698 static struct die_info *read_die_and_siblings (const struct die_reader_specs *,
1699 const gdb_byte *info_ptr,
1700 const gdb_byte **new_info_ptr,
1701 struct die_info *parent);
1702
1703 static const gdb_byte *read_full_die_1 (const struct die_reader_specs *,
1704 struct die_info **, const gdb_byte *,
1705 int *, int);
1706
1707 static const gdb_byte *read_full_die (const struct die_reader_specs *,
1708 struct die_info **, const gdb_byte *,
1709 int *);
1710
1711 static void process_die (struct die_info *, struct dwarf2_cu *);
1712
1713 static const char *dwarf2_canonicalize_name (const char *, struct dwarf2_cu *,
1714 struct obstack *);
1715
1716 static const char *dwarf2_name (struct die_info *die, struct dwarf2_cu *);
1717
1718 static const char *dwarf2_full_name (const char *name,
1719 struct die_info *die,
1720 struct dwarf2_cu *cu);
1721
1722 static const char *dwarf2_physname (const char *name, struct die_info *die,
1723 struct dwarf2_cu *cu);
1724
1725 static struct die_info *dwarf2_extension (struct die_info *die,
1726 struct dwarf2_cu **);
1727
1728 static const char *dwarf_tag_name (unsigned int);
1729
1730 static const char *dwarf_attr_name (unsigned int);
1731
1732 static const char *dwarf_form_name (unsigned int);
1733
1734 static const char *dwarf_bool_name (unsigned int);
1735
1736 static const char *dwarf_type_encoding_name (unsigned int);
1737
1738 static struct die_info *sibling_die (struct die_info *);
1739
1740 static void dump_die_shallow (struct ui_file *, int indent, struct die_info *);
1741
1742 static void dump_die_for_error (struct die_info *);
1743
1744 static void dump_die_1 (struct ui_file *, int level, int max_level,
1745 struct die_info *);
1746
1747 /*static*/ void dump_die (struct die_info *, int max_level);
1748
1749 static void store_in_ref_table (struct die_info *,
1750 struct dwarf2_cu *);
1751
1752 static sect_offset dwarf2_get_ref_die_offset (const struct attribute *);
1753
1754 static LONGEST dwarf2_get_attr_constant_value (const struct attribute *, int);
1755
1756 static struct die_info *follow_die_ref_or_sig (struct die_info *,
1757 const struct attribute *,
1758 struct dwarf2_cu **);
1759
1760 static struct die_info *follow_die_ref (struct die_info *,
1761 const struct attribute *,
1762 struct dwarf2_cu **);
1763
1764 static struct die_info *follow_die_sig (struct die_info *,
1765 const struct attribute *,
1766 struct dwarf2_cu **);
1767
1768 static struct type *get_signatured_type (struct die_info *, ULONGEST,
1769 struct dwarf2_cu *);
1770
1771 static struct type *get_DW_AT_signature_type (struct die_info *,
1772 const struct attribute *,
1773 struct dwarf2_cu *);
1774
1775 static void load_full_type_unit (struct dwarf2_per_cu_data *per_cu);
1776
1777 static void read_signatured_type (struct signatured_type *);
1778
1779 static int attr_to_dynamic_prop (const struct attribute *attr,
1780 struct die_info *die, struct dwarf2_cu *cu,
1781 struct dynamic_prop *prop);
1782
1783 /* memory allocation interface */
1784
1785 static struct dwarf_block *dwarf_alloc_block (struct dwarf2_cu *);
1786
1787 static struct die_info *dwarf_alloc_die (struct dwarf2_cu *, int);
1788
1789 static void dwarf_decode_macros (struct dwarf2_cu *, unsigned int, int);
1790
1791 static int attr_form_is_block (const struct attribute *);
1792
1793 static int attr_form_is_section_offset (const struct attribute *);
1794
1795 static int attr_form_is_constant (const struct attribute *);
1796
1797 static int attr_form_is_ref (const struct attribute *);
1798
1799 static void fill_in_loclist_baton (struct dwarf2_cu *cu,
1800 struct dwarf2_loclist_baton *baton,
1801 const struct attribute *attr);
1802
1803 static void dwarf2_symbol_mark_computed (const struct attribute *attr,
1804 struct symbol *sym,
1805 struct dwarf2_cu *cu,
1806 int is_block);
1807
1808 static const gdb_byte *skip_one_die (const struct die_reader_specs *reader,
1809 const gdb_byte *info_ptr,
1810 struct abbrev_info *abbrev);
1811
1812 static hashval_t partial_die_hash (const void *item);
1813
1814 static int partial_die_eq (const void *item_lhs, const void *item_rhs);
1815
1816 static struct dwarf2_per_cu_data *dwarf2_find_containing_comp_unit
1817 (sect_offset sect_off, unsigned int offset_in_dwz,
1818 struct dwarf2_per_objfile *dwarf2_per_objfile);
1819
1820 static void prepare_one_comp_unit (struct dwarf2_cu *cu,
1821 struct die_info *comp_unit_die,
1822 enum language pretend_language);
1823
1824 static void age_cached_comp_units (struct dwarf2_per_objfile *dwarf2_per_objfile);
1825
1826 static void free_one_cached_comp_unit (struct dwarf2_per_cu_data *);
1827
1828 static struct type *set_die_type (struct die_info *, struct type *,
1829 struct dwarf2_cu *);
1830
1831 static void create_all_comp_units (struct dwarf2_per_objfile *dwarf2_per_objfile);
1832
1833 static int create_all_type_units (struct dwarf2_per_objfile *dwarf2_per_objfile);
1834
1835 static void load_full_comp_unit (struct dwarf2_per_cu_data *,
1836 enum language);
1837
1838 static void process_full_comp_unit (struct dwarf2_per_cu_data *,
1839 enum language);
1840
1841 static void process_full_type_unit (struct dwarf2_per_cu_data *,
1842 enum language);
1843
1844 static void dwarf2_add_dependence (struct dwarf2_cu *,
1845 struct dwarf2_per_cu_data *);
1846
1847 static void dwarf2_mark (struct dwarf2_cu *);
1848
1849 static void dwarf2_clear_marks (struct dwarf2_per_cu_data *);
1850
1851 static struct type *get_die_type_at_offset (sect_offset,
1852 struct dwarf2_per_cu_data *);
1853
1854 static struct type *get_die_type (struct die_info *die, struct dwarf2_cu *cu);
1855
1856 static void queue_comp_unit (struct dwarf2_per_cu_data *per_cu,
1857 enum language pretend_language);
1858
1859 static void process_queue (struct dwarf2_per_objfile *dwarf2_per_objfile);
1860
1861 /* Class, the destructor of which frees all allocated queue entries. This
1862 will only have work to do if an error was thrown while processing the
1863 dwarf. If no error was thrown then the queue entries should have all
1864 been processed, and freed, as we went along. */
1865
1866 class dwarf2_queue_guard
1867 {
1868 public:
1869 dwarf2_queue_guard () = default;
1870
1871 /* Free any entries remaining on the queue. There should only be
1872 entries left if we hit an error while processing the dwarf. */
1873 ~dwarf2_queue_guard ()
1874 {
1875 struct dwarf2_queue_item *item, *last;
1876
1877 item = dwarf2_queue;
1878 while (item)
1879 {
1880 /* Anything still marked queued is likely to be in an
1881 inconsistent state, so discard it. */
1882 if (item->per_cu->queued)
1883 {
1884 if (item->per_cu->cu != NULL)
1885 free_one_cached_comp_unit (item->per_cu);
1886 item->per_cu->queued = 0;
1887 }
1888
1889 last = item;
1890 item = item->next;
1891 xfree (last);
1892 }
1893
1894 dwarf2_queue = dwarf2_queue_tail = NULL;
1895 }
1896 };
1897
1898 /* The return type of find_file_and_directory. Note, the enclosed
1899 string pointers are only valid while this object is valid. */
1900
1901 struct file_and_directory
1902 {
1903 /* The filename. This is never NULL. */
1904 const char *name;
1905
1906 /* The compilation directory. NULL if not known. If we needed to
1907 compute a new string, this points to COMP_DIR_STORAGE, otherwise,
1908 points directly to the DW_AT_comp_dir string attribute owned by
1909 the obstack that owns the DIE. */
1910 const char *comp_dir;
1911
1912 /* If we needed to build a new string for comp_dir, this is what
1913 owns the storage. */
1914 std::string comp_dir_storage;
1915 };
1916
1917 static file_and_directory find_file_and_directory (struct die_info *die,
1918 struct dwarf2_cu *cu);
1919
1920 static char *file_full_name (int file, struct line_header *lh,
1921 const char *comp_dir);
1922
1923 /* Expected enum dwarf_unit_type for read_comp_unit_head. */
1924 enum class rcuh_kind { COMPILE, TYPE };
1925
1926 static const gdb_byte *read_and_check_comp_unit_head
1927 (struct dwarf2_per_objfile* dwarf2_per_objfile,
1928 struct comp_unit_head *header,
1929 struct dwarf2_section_info *section,
1930 struct dwarf2_section_info *abbrev_section, const gdb_byte *info_ptr,
1931 rcuh_kind section_kind);
1932
1933 static void init_cutu_and_read_dies
1934 (struct dwarf2_per_cu_data *this_cu, struct abbrev_table *abbrev_table,
1935 int use_existing_cu, int keep,
1936 die_reader_func_ftype *die_reader_func, void *data);
1937
1938 static void init_cutu_and_read_dies_simple
1939 (struct dwarf2_per_cu_data *this_cu,
1940 die_reader_func_ftype *die_reader_func, void *data);
1941
1942 static htab_t allocate_signatured_type_table (struct objfile *objfile);
1943
1944 static htab_t allocate_dwo_unit_table (struct objfile *objfile);
1945
1946 static struct dwo_unit *lookup_dwo_unit_in_dwp
1947 (struct dwarf2_per_objfile *dwarf2_per_objfile,
1948 struct dwp_file *dwp_file, const char *comp_dir,
1949 ULONGEST signature, int is_debug_types);
1950
1951 static struct dwp_file *get_dwp_file
1952 (struct dwarf2_per_objfile *dwarf2_per_objfile);
1953
1954 static struct dwo_unit *lookup_dwo_comp_unit
1955 (struct dwarf2_per_cu_data *, const char *, const char *, ULONGEST);
1956
1957 static struct dwo_unit *lookup_dwo_type_unit
1958 (struct signatured_type *, const char *, const char *);
1959
1960 static void queue_and_load_all_dwo_tus (struct dwarf2_per_cu_data *);
1961
1962 static void free_dwo_file (struct dwo_file *);
1963
1964 /* A unique_ptr helper to free a dwo_file. */
1965
1966 struct dwo_file_deleter
1967 {
1968 void operator() (struct dwo_file *df) const
1969 {
1970 free_dwo_file (df);
1971 }
1972 };
1973
1974 /* A unique pointer to a dwo_file. */
1975
1976 typedef std::unique_ptr<struct dwo_file, dwo_file_deleter> dwo_file_up;
1977
1978 static void process_cu_includes (struct dwarf2_per_objfile *dwarf2_per_objfile);
1979
1980 static void check_producer (struct dwarf2_cu *cu);
1981
1982 static void free_line_header_voidp (void *arg);
1983 \f
1984 /* Various complaints about symbol reading that don't abort the process. */
1985
1986 static void
1987 dwarf2_statement_list_fits_in_line_number_section_complaint (void)
1988 {
1989 complaint (&symfile_complaints,
1990 _("statement list doesn't fit in .debug_line section"));
1991 }
1992
1993 static void
1994 dwarf2_debug_line_missing_file_complaint (void)
1995 {
1996 complaint (&symfile_complaints,
1997 _(".debug_line section has line data without a file"));
1998 }
1999
2000 static void
2001 dwarf2_debug_line_missing_end_sequence_complaint (void)
2002 {
2003 complaint (&symfile_complaints,
2004 _(".debug_line section has line "
2005 "program sequence without an end"));
2006 }
2007
2008 static void
2009 dwarf2_complex_location_expr_complaint (void)
2010 {
2011 complaint (&symfile_complaints, _("location expression too complex"));
2012 }
2013
2014 static void
2015 dwarf2_const_value_length_mismatch_complaint (const char *arg1, int arg2,
2016 int arg3)
2017 {
2018 complaint (&symfile_complaints,
2019 _("const value length mismatch for '%s', got %d, expected %d"),
2020 arg1, arg2, arg3);
2021 }
2022
2023 static void
2024 dwarf2_section_buffer_overflow_complaint (struct dwarf2_section_info *section)
2025 {
2026 complaint (&symfile_complaints,
2027 _("debug info runs off end of %s section"
2028 " [in module %s]"),
2029 get_section_name (section),
2030 get_section_file_name (section));
2031 }
2032
2033 static void
2034 dwarf2_macro_malformed_definition_complaint (const char *arg1)
2035 {
2036 complaint (&symfile_complaints,
2037 _("macro debug info contains a "
2038 "malformed macro definition:\n`%s'"),
2039 arg1);
2040 }
2041
2042 static void
2043 dwarf2_invalid_attrib_class_complaint (const char *arg1, const char *arg2)
2044 {
2045 complaint (&symfile_complaints,
2046 _("invalid attribute class or form for '%s' in '%s'"),
2047 arg1, arg2);
2048 }
2049
2050 /* Hash function for line_header_hash. */
2051
2052 static hashval_t
2053 line_header_hash (const struct line_header *ofs)
2054 {
2055 return to_underlying (ofs->sect_off) ^ ofs->offset_in_dwz;
2056 }
2057
2058 /* Hash function for htab_create_alloc_ex for line_header_hash. */
2059
2060 static hashval_t
2061 line_header_hash_voidp (const void *item)
2062 {
2063 const struct line_header *ofs = (const struct line_header *) item;
2064
2065 return line_header_hash (ofs);
2066 }
2067
2068 /* Equality function for line_header_hash. */
2069
2070 static int
2071 line_header_eq_voidp (const void *item_lhs, const void *item_rhs)
2072 {
2073 const struct line_header *ofs_lhs = (const struct line_header *) item_lhs;
2074 const struct line_header *ofs_rhs = (const struct line_header *) item_rhs;
2075
2076 return (ofs_lhs->sect_off == ofs_rhs->sect_off
2077 && ofs_lhs->offset_in_dwz == ofs_rhs->offset_in_dwz);
2078 }
2079
2080 \f
2081
2082 /* Read the given attribute value as an address, taking the attribute's
2083 form into account. */
2084
2085 static CORE_ADDR
2086 attr_value_as_address (struct attribute *attr)
2087 {
2088 CORE_ADDR addr;
2089
2090 if (attr->form != DW_FORM_addr && attr->form != DW_FORM_GNU_addr_index)
2091 {
2092 /* Aside from a few clearly defined exceptions, attributes that
2093 contain an address must always be in DW_FORM_addr form.
2094 Unfortunately, some compilers happen to be violating this
2095 requirement by encoding addresses using other forms, such
2096 as DW_FORM_data4 for example. For those broken compilers,
2097 we try to do our best, without any guarantee of success,
2098 to interpret the address correctly. It would also be nice
2099 to generate a complaint, but that would require us to maintain
2100 a list of legitimate cases where a non-address form is allowed,
2101 as well as update callers to pass in at least the CU's DWARF
2102 version. This is more overhead than what we're willing to
2103 expand for a pretty rare case. */
2104 addr = DW_UNSND (attr);
2105 }
2106 else
2107 addr = DW_ADDR (attr);
2108
2109 return addr;
2110 }
2111
2112 /* See declaration. */
2113
2114 dwarf2_per_objfile::dwarf2_per_objfile (struct objfile *objfile_,
2115 const dwarf2_debug_sections *names)
2116 : objfile (objfile_)
2117 {
2118 if (names == NULL)
2119 names = &dwarf2_elf_names;
2120
2121 bfd *obfd = objfile->obfd;
2122
2123 for (asection *sec = obfd->sections; sec != NULL; sec = sec->next)
2124 locate_sections (obfd, sec, *names);
2125 }
2126
2127 static void free_dwo_files (htab_t dwo_files, struct objfile *objfile);
2128
2129 dwarf2_per_objfile::~dwarf2_per_objfile ()
2130 {
2131 /* Cached DIE trees use xmalloc and the comp_unit_obstack. */
2132 free_cached_comp_units ();
2133
2134 if (quick_file_names_table)
2135 htab_delete (quick_file_names_table);
2136
2137 if (line_header_hash)
2138 htab_delete (line_header_hash);
2139
2140 for (int ix = 0; ix < n_comp_units; ++ix)
2141 VEC_free (dwarf2_per_cu_ptr, all_comp_units[ix]->imported_symtabs);
2142
2143 for (int ix = 0; ix < n_type_units; ++ix)
2144 VEC_free (dwarf2_per_cu_ptr,
2145 all_type_units[ix]->per_cu.imported_symtabs);
2146 xfree (all_type_units);
2147
2148 VEC_free (dwarf2_section_info_def, types);
2149
2150 if (dwo_files != NULL)
2151 free_dwo_files (dwo_files, objfile);
2152 if (dwp_file != NULL)
2153 gdb_bfd_unref (dwp_file->dbfd);
2154
2155 if (dwz_file != NULL && dwz_file->dwz_bfd)
2156 gdb_bfd_unref (dwz_file->dwz_bfd);
2157
2158 if (index_table != NULL)
2159 index_table->~mapped_index ();
2160
2161 /* Everything else should be on the objfile obstack. */
2162 }
2163
2164 /* See declaration. */
2165
2166 void
2167 dwarf2_per_objfile::free_cached_comp_units ()
2168 {
2169 dwarf2_per_cu_data *per_cu = read_in_chain;
2170 dwarf2_per_cu_data **last_chain = &read_in_chain;
2171 while (per_cu != NULL)
2172 {
2173 dwarf2_per_cu_data *next_cu = per_cu->cu->read_in_chain;
2174
2175 delete per_cu->cu;
2176 *last_chain = next_cu;
2177 per_cu = next_cu;
2178 }
2179 }
2180
2181 /* A helper class that calls free_cached_comp_units on
2182 destruction. */
2183
2184 class free_cached_comp_units
2185 {
2186 public:
2187
2188 explicit free_cached_comp_units (dwarf2_per_objfile *per_objfile)
2189 : m_per_objfile (per_objfile)
2190 {
2191 }
2192
2193 ~free_cached_comp_units ()
2194 {
2195 m_per_objfile->free_cached_comp_units ();
2196 }
2197
2198 DISABLE_COPY_AND_ASSIGN (free_cached_comp_units);
2199
2200 private:
2201
2202 dwarf2_per_objfile *m_per_objfile;
2203 };
2204
2205 /* Try to locate the sections we need for DWARF 2 debugging
2206 information and return true if we have enough to do something.
2207 NAMES points to the dwarf2 section names, or is NULL if the standard
2208 ELF names are used. */
2209
2210 int
2211 dwarf2_has_info (struct objfile *objfile,
2212 const struct dwarf2_debug_sections *names)
2213 {
2214 if (objfile->flags & OBJF_READNEVER)
2215 return 0;
2216
2217 struct dwarf2_per_objfile *dwarf2_per_objfile
2218 = get_dwarf2_per_objfile (objfile);
2219
2220 if (dwarf2_per_objfile == NULL)
2221 {
2222 /* Initialize per-objfile state. */
2223 dwarf2_per_objfile
2224 = new (&objfile->objfile_obstack) struct dwarf2_per_objfile (objfile,
2225 names);
2226 set_dwarf2_per_objfile (objfile, dwarf2_per_objfile);
2227 }
2228 return (!dwarf2_per_objfile->info.is_virtual
2229 && dwarf2_per_objfile->info.s.section != NULL
2230 && !dwarf2_per_objfile->abbrev.is_virtual
2231 && dwarf2_per_objfile->abbrev.s.section != NULL);
2232 }
2233
2234 /* Return the containing section of virtual section SECTION. */
2235
2236 static struct dwarf2_section_info *
2237 get_containing_section (const struct dwarf2_section_info *section)
2238 {
2239 gdb_assert (section->is_virtual);
2240 return section->s.containing_section;
2241 }
2242
2243 /* Return the bfd owner of SECTION. */
2244
2245 static struct bfd *
2246 get_section_bfd_owner (const struct dwarf2_section_info *section)
2247 {
2248 if (section->is_virtual)
2249 {
2250 section = get_containing_section (section);
2251 gdb_assert (!section->is_virtual);
2252 }
2253 return section->s.section->owner;
2254 }
2255
2256 /* Return the bfd section of SECTION.
2257 Returns NULL if the section is not present. */
2258
2259 static asection *
2260 get_section_bfd_section (const struct dwarf2_section_info *section)
2261 {
2262 if (section->is_virtual)
2263 {
2264 section = get_containing_section (section);
2265 gdb_assert (!section->is_virtual);
2266 }
2267 return section->s.section;
2268 }
2269
2270 /* Return the name of SECTION. */
2271
2272 static const char *
2273 get_section_name (const struct dwarf2_section_info *section)
2274 {
2275 asection *sectp = get_section_bfd_section (section);
2276
2277 gdb_assert (sectp != NULL);
2278 return bfd_section_name (get_section_bfd_owner (section), sectp);
2279 }
2280
2281 /* Return the name of the file SECTION is in. */
2282
2283 static const char *
2284 get_section_file_name (const struct dwarf2_section_info *section)
2285 {
2286 bfd *abfd = get_section_bfd_owner (section);
2287
2288 return bfd_get_filename (abfd);
2289 }
2290
2291 /* Return the id of SECTION.
2292 Returns 0 if SECTION doesn't exist. */
2293
2294 static int
2295 get_section_id (const struct dwarf2_section_info *section)
2296 {
2297 asection *sectp = get_section_bfd_section (section);
2298
2299 if (sectp == NULL)
2300 return 0;
2301 return sectp->id;
2302 }
2303
2304 /* Return the flags of SECTION.
2305 SECTION (or containing section if this is a virtual section) must exist. */
2306
2307 static int
2308 get_section_flags (const struct dwarf2_section_info *section)
2309 {
2310 asection *sectp = get_section_bfd_section (section);
2311
2312 gdb_assert (sectp != NULL);
2313 return bfd_get_section_flags (sectp->owner, sectp);
2314 }
2315
2316 /* When loading sections, we look either for uncompressed section or for
2317 compressed section names. */
2318
2319 static int
2320 section_is_p (const char *section_name,
2321 const struct dwarf2_section_names *names)
2322 {
2323 if (names->normal != NULL
2324 && strcmp (section_name, names->normal) == 0)
2325 return 1;
2326 if (names->compressed != NULL
2327 && strcmp (section_name, names->compressed) == 0)
2328 return 1;
2329 return 0;
2330 }
2331
2332 /* See declaration. */
2333
2334 void
2335 dwarf2_per_objfile::locate_sections (bfd *abfd, asection *sectp,
2336 const dwarf2_debug_sections &names)
2337 {
2338 flagword aflag = bfd_get_section_flags (abfd, sectp);
2339
2340 if ((aflag & SEC_HAS_CONTENTS) == 0)
2341 {
2342 }
2343 else if (section_is_p (sectp->name, &names.info))
2344 {
2345 this->info.s.section = sectp;
2346 this->info.size = bfd_get_section_size (sectp);
2347 }
2348 else if (section_is_p (sectp->name, &names.abbrev))
2349 {
2350 this->abbrev.s.section = sectp;
2351 this->abbrev.size = bfd_get_section_size (sectp);
2352 }
2353 else if (section_is_p (sectp->name, &names.line))
2354 {
2355 this->line.s.section = sectp;
2356 this->line.size = bfd_get_section_size (sectp);
2357 }
2358 else if (section_is_p (sectp->name, &names.loc))
2359 {
2360 this->loc.s.section = sectp;
2361 this->loc.size = bfd_get_section_size (sectp);
2362 }
2363 else if (section_is_p (sectp->name, &names.loclists))
2364 {
2365 this->loclists.s.section = sectp;
2366 this->loclists.size = bfd_get_section_size (sectp);
2367 }
2368 else if (section_is_p (sectp->name, &names.macinfo))
2369 {
2370 this->macinfo.s.section = sectp;
2371 this->macinfo.size = bfd_get_section_size (sectp);
2372 }
2373 else if (section_is_p (sectp->name, &names.macro))
2374 {
2375 this->macro.s.section = sectp;
2376 this->macro.size = bfd_get_section_size (sectp);
2377 }
2378 else if (section_is_p (sectp->name, &names.str))
2379 {
2380 this->str.s.section = sectp;
2381 this->str.size = bfd_get_section_size (sectp);
2382 }
2383 else if (section_is_p (sectp->name, &names.line_str))
2384 {
2385 this->line_str.s.section = sectp;
2386 this->line_str.size = bfd_get_section_size (sectp);
2387 }
2388 else if (section_is_p (sectp->name, &names.addr))
2389 {
2390 this->addr.s.section = sectp;
2391 this->addr.size = bfd_get_section_size (sectp);
2392 }
2393 else if (section_is_p (sectp->name, &names.frame))
2394 {
2395 this->frame.s.section = sectp;
2396 this->frame.size = bfd_get_section_size (sectp);
2397 }
2398 else if (section_is_p (sectp->name, &names.eh_frame))
2399 {
2400 this->eh_frame.s.section = sectp;
2401 this->eh_frame.size = bfd_get_section_size (sectp);
2402 }
2403 else if (section_is_p (sectp->name, &names.ranges))
2404 {
2405 this->ranges.s.section = sectp;
2406 this->ranges.size = bfd_get_section_size (sectp);
2407 }
2408 else if (section_is_p (sectp->name, &names.rnglists))
2409 {
2410 this->rnglists.s.section = sectp;
2411 this->rnglists.size = bfd_get_section_size (sectp);
2412 }
2413 else if (section_is_p (sectp->name, &names.types))
2414 {
2415 struct dwarf2_section_info type_section;
2416
2417 memset (&type_section, 0, sizeof (type_section));
2418 type_section.s.section = sectp;
2419 type_section.size = bfd_get_section_size (sectp);
2420
2421 VEC_safe_push (dwarf2_section_info_def, this->types,
2422 &type_section);
2423 }
2424 else if (section_is_p (sectp->name, &names.gdb_index))
2425 {
2426 this->gdb_index.s.section = sectp;
2427 this->gdb_index.size = bfd_get_section_size (sectp);
2428 }
2429 else if (section_is_p (sectp->name, &names.debug_names))
2430 {
2431 this->debug_names.s.section = sectp;
2432 this->debug_names.size = bfd_get_section_size (sectp);
2433 }
2434 else if (section_is_p (sectp->name, &names.debug_aranges))
2435 {
2436 this->debug_aranges.s.section = sectp;
2437 this->debug_aranges.size = bfd_get_section_size (sectp);
2438 }
2439
2440 if ((bfd_get_section_flags (abfd, sectp) & (SEC_LOAD | SEC_ALLOC))
2441 && bfd_section_vma (abfd, sectp) == 0)
2442 this->has_section_at_zero = true;
2443 }
2444
2445 /* A helper function that decides whether a section is empty,
2446 or not present. */
2447
2448 static int
2449 dwarf2_section_empty_p (const struct dwarf2_section_info *section)
2450 {
2451 if (section->is_virtual)
2452 return section->size == 0;
2453 return section->s.section == NULL || section->size == 0;
2454 }
2455
2456 /* See dwarf2read.h. */
2457
2458 void
2459 dwarf2_read_section (struct objfile *objfile, dwarf2_section_info *info)
2460 {
2461 asection *sectp;
2462 bfd *abfd;
2463 gdb_byte *buf, *retbuf;
2464
2465 if (info->readin)
2466 return;
2467 info->buffer = NULL;
2468 info->readin = 1;
2469
2470 if (dwarf2_section_empty_p (info))
2471 return;
2472
2473 sectp = get_section_bfd_section (info);
2474
2475 /* If this is a virtual section we need to read in the real one first. */
2476 if (info->is_virtual)
2477 {
2478 struct dwarf2_section_info *containing_section =
2479 get_containing_section (info);
2480
2481 gdb_assert (sectp != NULL);
2482 if ((sectp->flags & SEC_RELOC) != 0)
2483 {
2484 error (_("Dwarf Error: DWP format V2 with relocations is not"
2485 " supported in section %s [in module %s]"),
2486 get_section_name (info), get_section_file_name (info));
2487 }
2488 dwarf2_read_section (objfile, containing_section);
2489 /* Other code should have already caught virtual sections that don't
2490 fit. */
2491 gdb_assert (info->virtual_offset + info->size
2492 <= containing_section->size);
2493 /* If the real section is empty or there was a problem reading the
2494 section we shouldn't get here. */
2495 gdb_assert (containing_section->buffer != NULL);
2496 info->buffer = containing_section->buffer + info->virtual_offset;
2497 return;
2498 }
2499
2500 /* If the section has relocations, we must read it ourselves.
2501 Otherwise we attach it to the BFD. */
2502 if ((sectp->flags & SEC_RELOC) == 0)
2503 {
2504 info->buffer = gdb_bfd_map_section (sectp, &info->size);
2505 return;
2506 }
2507
2508 buf = (gdb_byte *) obstack_alloc (&objfile->objfile_obstack, info->size);
2509 info->buffer = buf;
2510
2511 /* When debugging .o files, we may need to apply relocations; see
2512 http://sourceware.org/ml/gdb-patches/2002-04/msg00136.html .
2513 We never compress sections in .o files, so we only need to
2514 try this when the section is not compressed. */
2515 retbuf = symfile_relocate_debug_section (objfile, sectp, buf);
2516 if (retbuf != NULL)
2517 {
2518 info->buffer = retbuf;
2519 return;
2520 }
2521
2522 abfd = get_section_bfd_owner (info);
2523 gdb_assert (abfd != NULL);
2524
2525 if (bfd_seek (abfd, sectp->filepos, SEEK_SET) != 0
2526 || bfd_bread (buf, info->size, abfd) != info->size)
2527 {
2528 error (_("Dwarf Error: Can't read DWARF data"
2529 " in section %s [in module %s]"),
2530 bfd_section_name (abfd, sectp), bfd_get_filename (abfd));
2531 }
2532 }
2533
2534 /* A helper function that returns the size of a section in a safe way.
2535 If you are positive that the section has been read before using the
2536 size, then it is safe to refer to the dwarf2_section_info object's
2537 "size" field directly. In other cases, you must call this
2538 function, because for compressed sections the size field is not set
2539 correctly until the section has been read. */
2540
2541 static bfd_size_type
2542 dwarf2_section_size (struct objfile *objfile,
2543 struct dwarf2_section_info *info)
2544 {
2545 if (!info->readin)
2546 dwarf2_read_section (objfile, info);
2547 return info->size;
2548 }
2549
2550 /* Fill in SECTP, BUFP and SIZEP with section info, given OBJFILE and
2551 SECTION_NAME. */
2552
2553 void
2554 dwarf2_get_section_info (struct objfile *objfile,
2555 enum dwarf2_section_enum sect,
2556 asection **sectp, const gdb_byte **bufp,
2557 bfd_size_type *sizep)
2558 {
2559 struct dwarf2_per_objfile *data
2560 = (struct dwarf2_per_objfile *) objfile_data (objfile,
2561 dwarf2_objfile_data_key);
2562 struct dwarf2_section_info *info;
2563
2564 /* We may see an objfile without any DWARF, in which case we just
2565 return nothing. */
2566 if (data == NULL)
2567 {
2568 *sectp = NULL;
2569 *bufp = NULL;
2570 *sizep = 0;
2571 return;
2572 }
2573 switch (sect)
2574 {
2575 case DWARF2_DEBUG_FRAME:
2576 info = &data->frame;
2577 break;
2578 case DWARF2_EH_FRAME:
2579 info = &data->eh_frame;
2580 break;
2581 default:
2582 gdb_assert_not_reached ("unexpected section");
2583 }
2584
2585 dwarf2_read_section (objfile, info);
2586
2587 *sectp = get_section_bfd_section (info);
2588 *bufp = info->buffer;
2589 *sizep = info->size;
2590 }
2591
2592 /* A helper function to find the sections for a .dwz file. */
2593
2594 static void
2595 locate_dwz_sections (bfd *abfd, asection *sectp, void *arg)
2596 {
2597 struct dwz_file *dwz_file = (struct dwz_file *) arg;
2598
2599 /* Note that we only support the standard ELF names, because .dwz
2600 is ELF-only (at the time of writing). */
2601 if (section_is_p (sectp->name, &dwarf2_elf_names.abbrev))
2602 {
2603 dwz_file->abbrev.s.section = sectp;
2604 dwz_file->abbrev.size = bfd_get_section_size (sectp);
2605 }
2606 else if (section_is_p (sectp->name, &dwarf2_elf_names.info))
2607 {
2608 dwz_file->info.s.section = sectp;
2609 dwz_file->info.size = bfd_get_section_size (sectp);
2610 }
2611 else if (section_is_p (sectp->name, &dwarf2_elf_names.str))
2612 {
2613 dwz_file->str.s.section = sectp;
2614 dwz_file->str.size = bfd_get_section_size (sectp);
2615 }
2616 else if (section_is_p (sectp->name, &dwarf2_elf_names.line))
2617 {
2618 dwz_file->line.s.section = sectp;
2619 dwz_file->line.size = bfd_get_section_size (sectp);
2620 }
2621 else if (section_is_p (sectp->name, &dwarf2_elf_names.macro))
2622 {
2623 dwz_file->macro.s.section = sectp;
2624 dwz_file->macro.size = bfd_get_section_size (sectp);
2625 }
2626 else if (section_is_p (sectp->name, &dwarf2_elf_names.gdb_index))
2627 {
2628 dwz_file->gdb_index.s.section = sectp;
2629 dwz_file->gdb_index.size = bfd_get_section_size (sectp);
2630 }
2631 else if (section_is_p (sectp->name, &dwarf2_elf_names.debug_names))
2632 {
2633 dwz_file->debug_names.s.section = sectp;
2634 dwz_file->debug_names.size = bfd_get_section_size (sectp);
2635 }
2636 }
2637
2638 /* Open the separate '.dwz' debug file, if needed. Return NULL if
2639 there is no .gnu_debugaltlink section in the file. Error if there
2640 is such a section but the file cannot be found. */
2641
2642 static struct dwz_file *
2643 dwarf2_get_dwz_file (struct dwarf2_per_objfile *dwarf2_per_objfile)
2644 {
2645 const char *filename;
2646 struct dwz_file *result;
2647 bfd_size_type buildid_len_arg;
2648 size_t buildid_len;
2649 bfd_byte *buildid;
2650
2651 if (dwarf2_per_objfile->dwz_file != NULL)
2652 return dwarf2_per_objfile->dwz_file;
2653
2654 bfd_set_error (bfd_error_no_error);
2655 gdb::unique_xmalloc_ptr<char> data
2656 (bfd_get_alt_debug_link_info (dwarf2_per_objfile->objfile->obfd,
2657 &buildid_len_arg, &buildid));
2658 if (data == NULL)
2659 {
2660 if (bfd_get_error () == bfd_error_no_error)
2661 return NULL;
2662 error (_("could not read '.gnu_debugaltlink' section: %s"),
2663 bfd_errmsg (bfd_get_error ()));
2664 }
2665
2666 gdb::unique_xmalloc_ptr<bfd_byte> buildid_holder (buildid);
2667
2668 buildid_len = (size_t) buildid_len_arg;
2669
2670 filename = data.get ();
2671
2672 std::string abs_storage;
2673 if (!IS_ABSOLUTE_PATH (filename))
2674 {
2675 gdb::unique_xmalloc_ptr<char> abs
2676 = gdb_realpath (objfile_name (dwarf2_per_objfile->objfile));
2677
2678 abs_storage = ldirname (abs.get ()) + SLASH_STRING + filename;
2679 filename = abs_storage.c_str ();
2680 }
2681
2682 /* First try the file name given in the section. If that doesn't
2683 work, try to use the build-id instead. */
2684 gdb_bfd_ref_ptr dwz_bfd (gdb_bfd_open (filename, gnutarget, -1));
2685 if (dwz_bfd != NULL)
2686 {
2687 if (!build_id_verify (dwz_bfd.get (), buildid_len, buildid))
2688 dwz_bfd.release ();
2689 }
2690
2691 if (dwz_bfd == NULL)
2692 dwz_bfd = build_id_to_debug_bfd (buildid_len, buildid);
2693
2694 if (dwz_bfd == NULL)
2695 error (_("could not find '.gnu_debugaltlink' file for %s"),
2696 objfile_name (dwarf2_per_objfile->objfile));
2697
2698 result = OBSTACK_ZALLOC (&dwarf2_per_objfile->objfile->objfile_obstack,
2699 struct dwz_file);
2700 result->dwz_bfd = dwz_bfd.release ();
2701
2702 bfd_map_over_sections (result->dwz_bfd, locate_dwz_sections, result);
2703
2704 gdb_bfd_record_inclusion (dwarf2_per_objfile->objfile->obfd, result->dwz_bfd);
2705 dwarf2_per_objfile->dwz_file = result;
2706 return result;
2707 }
2708 \f
2709 /* DWARF quick_symbols_functions support. */
2710
2711 /* TUs can share .debug_line entries, and there can be a lot more TUs than
2712 unique line tables, so we maintain a separate table of all .debug_line
2713 derived entries to support the sharing.
2714 All the quick functions need is the list of file names. We discard the
2715 line_header when we're done and don't need to record it here. */
2716 struct quick_file_names
2717 {
2718 /* The data used to construct the hash key. */
2719 struct stmt_list_hash hash;
2720
2721 /* The number of entries in file_names, real_names. */
2722 unsigned int num_file_names;
2723
2724 /* The file names from the line table, after being run through
2725 file_full_name. */
2726 const char **file_names;
2727
2728 /* The file names from the line table after being run through
2729 gdb_realpath. These are computed lazily. */
2730 const char **real_names;
2731 };
2732
2733 /* When using the index (and thus not using psymtabs), each CU has an
2734 object of this type. This is used to hold information needed by
2735 the various "quick" methods. */
2736 struct dwarf2_per_cu_quick_data
2737 {
2738 /* The file table. This can be NULL if there was no file table
2739 or it's currently not read in.
2740 NOTE: This points into dwarf2_per_objfile->quick_file_names_table. */
2741 struct quick_file_names *file_names;
2742
2743 /* The corresponding symbol table. This is NULL if symbols for this
2744 CU have not yet been read. */
2745 struct compunit_symtab *compunit_symtab;
2746
2747 /* A temporary mark bit used when iterating over all CUs in
2748 expand_symtabs_matching. */
2749 unsigned int mark : 1;
2750
2751 /* True if we've tried to read the file table and found there isn't one.
2752 There will be no point in trying to read it again next time. */
2753 unsigned int no_file_data : 1;
2754 };
2755
2756 /* Utility hash function for a stmt_list_hash. */
2757
2758 static hashval_t
2759 hash_stmt_list_entry (const struct stmt_list_hash *stmt_list_hash)
2760 {
2761 hashval_t v = 0;
2762
2763 if (stmt_list_hash->dwo_unit != NULL)
2764 v += (uintptr_t) stmt_list_hash->dwo_unit->dwo_file;
2765 v += to_underlying (stmt_list_hash->line_sect_off);
2766 return v;
2767 }
2768
2769 /* Utility equality function for a stmt_list_hash. */
2770
2771 static int
2772 eq_stmt_list_entry (const struct stmt_list_hash *lhs,
2773 const struct stmt_list_hash *rhs)
2774 {
2775 if ((lhs->dwo_unit != NULL) != (rhs->dwo_unit != NULL))
2776 return 0;
2777 if (lhs->dwo_unit != NULL
2778 && lhs->dwo_unit->dwo_file != rhs->dwo_unit->dwo_file)
2779 return 0;
2780
2781 return lhs->line_sect_off == rhs->line_sect_off;
2782 }
2783
2784 /* Hash function for a quick_file_names. */
2785
2786 static hashval_t
2787 hash_file_name_entry (const void *e)
2788 {
2789 const struct quick_file_names *file_data
2790 = (const struct quick_file_names *) e;
2791
2792 return hash_stmt_list_entry (&file_data->hash);
2793 }
2794
2795 /* Equality function for a quick_file_names. */
2796
2797 static int
2798 eq_file_name_entry (const void *a, const void *b)
2799 {
2800 const struct quick_file_names *ea = (const struct quick_file_names *) a;
2801 const struct quick_file_names *eb = (const struct quick_file_names *) b;
2802
2803 return eq_stmt_list_entry (&ea->hash, &eb->hash);
2804 }
2805
2806 /* Delete function for a quick_file_names. */
2807
2808 static void
2809 delete_file_name_entry (void *e)
2810 {
2811 struct quick_file_names *file_data = (struct quick_file_names *) e;
2812 int i;
2813
2814 for (i = 0; i < file_data->num_file_names; ++i)
2815 {
2816 xfree ((void*) file_data->file_names[i]);
2817 if (file_data->real_names)
2818 xfree ((void*) file_data->real_names[i]);
2819 }
2820
2821 /* The space for the struct itself lives on objfile_obstack,
2822 so we don't free it here. */
2823 }
2824
2825 /* Create a quick_file_names hash table. */
2826
2827 static htab_t
2828 create_quick_file_names_table (unsigned int nr_initial_entries)
2829 {
2830 return htab_create_alloc (nr_initial_entries,
2831 hash_file_name_entry, eq_file_name_entry,
2832 delete_file_name_entry, xcalloc, xfree);
2833 }
2834
2835 /* Read in PER_CU->CU. This function is unrelated to symtabs, symtab would
2836 have to be created afterwards. You should call age_cached_comp_units after
2837 processing PER_CU->CU. dw2_setup must have been already called. */
2838
2839 static void
2840 load_cu (struct dwarf2_per_cu_data *per_cu)
2841 {
2842 if (per_cu->is_debug_types)
2843 load_full_type_unit (per_cu);
2844 else
2845 load_full_comp_unit (per_cu, language_minimal);
2846
2847 if (per_cu->cu == NULL)
2848 return; /* Dummy CU. */
2849
2850 dwarf2_find_base_address (per_cu->cu->dies, per_cu->cu);
2851 }
2852
2853 /* Read in the symbols for PER_CU. */
2854
2855 static void
2856 dw2_do_instantiate_symtab (struct dwarf2_per_cu_data *per_cu)
2857 {
2858 struct dwarf2_per_objfile *dwarf2_per_objfile = per_cu->dwarf2_per_objfile;
2859
2860 /* Skip type_unit_groups, reading the type units they contain
2861 is handled elsewhere. */
2862 if (IS_TYPE_UNIT_GROUP (per_cu))
2863 return;
2864
2865 /* The destructor of dwarf2_queue_guard frees any entries left on
2866 the queue. After this point we're guaranteed to leave this function
2867 with the dwarf queue empty. */
2868 dwarf2_queue_guard q_guard;
2869
2870 if (dwarf2_per_objfile->using_index
2871 ? per_cu->v.quick->compunit_symtab == NULL
2872 : (per_cu->v.psymtab == NULL || !per_cu->v.psymtab->readin))
2873 {
2874 queue_comp_unit (per_cu, language_minimal);
2875 load_cu (per_cu);
2876
2877 /* If we just loaded a CU from a DWO, and we're working with an index
2878 that may badly handle TUs, load all the TUs in that DWO as well.
2879 http://sourceware.org/bugzilla/show_bug.cgi?id=15021 */
2880 if (!per_cu->is_debug_types
2881 && per_cu->cu != NULL
2882 && per_cu->cu->dwo_unit != NULL
2883 && dwarf2_per_objfile->index_table != NULL
2884 && dwarf2_per_objfile->index_table->version <= 7
2885 /* DWP files aren't supported yet. */
2886 && get_dwp_file (dwarf2_per_objfile) == NULL)
2887 queue_and_load_all_dwo_tus (per_cu);
2888 }
2889
2890 process_queue (dwarf2_per_objfile);
2891
2892 /* Age the cache, releasing compilation units that have not
2893 been used recently. */
2894 age_cached_comp_units (dwarf2_per_objfile);
2895 }
2896
2897 /* Ensure that the symbols for PER_CU have been read in. OBJFILE is
2898 the objfile from which this CU came. Returns the resulting symbol
2899 table. */
2900
2901 static struct compunit_symtab *
2902 dw2_instantiate_symtab (struct dwarf2_per_cu_data *per_cu)
2903 {
2904 struct dwarf2_per_objfile *dwarf2_per_objfile = per_cu->dwarf2_per_objfile;
2905
2906 gdb_assert (dwarf2_per_objfile->using_index);
2907 if (!per_cu->v.quick->compunit_symtab)
2908 {
2909 free_cached_comp_units freer (dwarf2_per_objfile);
2910 scoped_restore decrementer = increment_reading_symtab ();
2911 dw2_do_instantiate_symtab (per_cu);
2912 process_cu_includes (dwarf2_per_objfile);
2913 }
2914
2915 return per_cu->v.quick->compunit_symtab;
2916 }
2917
2918 /* Return the CU/TU given its index.
2919
2920 This is intended for loops like:
2921
2922 for (i = 0; i < (dwarf2_per_objfile->n_comp_units
2923 + dwarf2_per_objfile->n_type_units); ++i)
2924 {
2925 struct dwarf2_per_cu_data *per_cu = dw2_get_cutu (i);
2926
2927 ...;
2928 }
2929 */
2930
2931 static struct dwarf2_per_cu_data *
2932 dw2_get_cutu (struct dwarf2_per_objfile *dwarf2_per_objfile,
2933 int index)
2934 {
2935 if (index >= dwarf2_per_objfile->n_comp_units)
2936 {
2937 index -= dwarf2_per_objfile->n_comp_units;
2938 gdb_assert (index < dwarf2_per_objfile->n_type_units);
2939 return &dwarf2_per_objfile->all_type_units[index]->per_cu;
2940 }
2941
2942 return dwarf2_per_objfile->all_comp_units[index];
2943 }
2944
2945 /* Return the CU given its index.
2946 This differs from dw2_get_cutu in that it's for when you know INDEX
2947 refers to a CU. */
2948
2949 static struct dwarf2_per_cu_data *
2950 dw2_get_cu (struct dwarf2_per_objfile *dwarf2_per_objfile, int index)
2951 {
2952 gdb_assert (index >= 0 && index < dwarf2_per_objfile->n_comp_units);
2953
2954 return dwarf2_per_objfile->all_comp_units[index];
2955 }
2956
2957 /* Return a new dwarf2_per_cu_data allocated on OBJFILE's
2958 objfile_obstack, and constructed with the specified field
2959 values. */
2960
2961 static dwarf2_per_cu_data *
2962 create_cu_from_index_list (struct dwarf2_per_objfile *dwarf2_per_objfile,
2963 struct dwarf2_section_info *section,
2964 int is_dwz,
2965 sect_offset sect_off, ULONGEST length)
2966 {
2967 struct objfile *objfile = dwarf2_per_objfile->objfile;
2968 dwarf2_per_cu_data *the_cu
2969 = OBSTACK_ZALLOC (&objfile->objfile_obstack,
2970 struct dwarf2_per_cu_data);
2971 the_cu->sect_off = sect_off;
2972 the_cu->length = length;
2973 the_cu->dwarf2_per_objfile = dwarf2_per_objfile;
2974 the_cu->section = section;
2975 the_cu->v.quick = OBSTACK_ZALLOC (&objfile->objfile_obstack,
2976 struct dwarf2_per_cu_quick_data);
2977 the_cu->is_dwz = is_dwz;
2978 return the_cu;
2979 }
2980
2981 /* A helper for create_cus_from_index that handles a given list of
2982 CUs. */
2983
2984 static void
2985 create_cus_from_index_list (struct objfile *objfile,
2986 const gdb_byte *cu_list, offset_type n_elements,
2987 struct dwarf2_section_info *section,
2988 int is_dwz,
2989 int base_offset)
2990 {
2991 offset_type i;
2992 struct dwarf2_per_objfile *dwarf2_per_objfile
2993 = get_dwarf2_per_objfile (objfile);
2994
2995 for (i = 0; i < n_elements; i += 2)
2996 {
2997 gdb_static_assert (sizeof (ULONGEST) >= 8);
2998
2999 sect_offset sect_off
3000 = (sect_offset) extract_unsigned_integer (cu_list, 8, BFD_ENDIAN_LITTLE);
3001 ULONGEST length = extract_unsigned_integer (cu_list + 8, 8, BFD_ENDIAN_LITTLE);
3002 cu_list += 2 * 8;
3003
3004 dwarf2_per_objfile->all_comp_units[base_offset + i / 2]
3005 = create_cu_from_index_list (dwarf2_per_objfile, section, is_dwz,
3006 sect_off, length);
3007 }
3008 }
3009
3010 /* Read the CU list from the mapped index, and use it to create all
3011 the CU objects for this objfile. */
3012
3013 static void
3014 create_cus_from_index (struct objfile *objfile,
3015 const gdb_byte *cu_list, offset_type cu_list_elements,
3016 const gdb_byte *dwz_list, offset_type dwz_elements)
3017 {
3018 struct dwz_file *dwz;
3019 struct dwarf2_per_objfile *dwarf2_per_objfile
3020 = get_dwarf2_per_objfile (objfile);
3021
3022 dwarf2_per_objfile->n_comp_units = (cu_list_elements + dwz_elements) / 2;
3023 dwarf2_per_objfile->all_comp_units =
3024 XOBNEWVEC (&objfile->objfile_obstack, struct dwarf2_per_cu_data *,
3025 dwarf2_per_objfile->n_comp_units);
3026
3027 create_cus_from_index_list (objfile, cu_list, cu_list_elements,
3028 &dwarf2_per_objfile->info, 0, 0);
3029
3030 if (dwz_elements == 0)
3031 return;
3032
3033 dwz = dwarf2_get_dwz_file (dwarf2_per_objfile);
3034 create_cus_from_index_list (objfile, dwz_list, dwz_elements, &dwz->info, 1,
3035 cu_list_elements / 2);
3036 }
3037
3038 /* Create the signatured type hash table from the index. */
3039
3040 static void
3041 create_signatured_type_table_from_index (struct objfile *objfile,
3042 struct dwarf2_section_info *section,
3043 const gdb_byte *bytes,
3044 offset_type elements)
3045 {
3046 offset_type i;
3047 htab_t sig_types_hash;
3048 struct dwarf2_per_objfile *dwarf2_per_objfile
3049 = get_dwarf2_per_objfile (objfile);
3050
3051 dwarf2_per_objfile->n_type_units
3052 = dwarf2_per_objfile->n_allocated_type_units
3053 = elements / 3;
3054 dwarf2_per_objfile->all_type_units =
3055 XNEWVEC (struct signatured_type *, dwarf2_per_objfile->n_type_units);
3056
3057 sig_types_hash = allocate_signatured_type_table (objfile);
3058
3059 for (i = 0; i < elements; i += 3)
3060 {
3061 struct signatured_type *sig_type;
3062 ULONGEST signature;
3063 void **slot;
3064 cu_offset type_offset_in_tu;
3065
3066 gdb_static_assert (sizeof (ULONGEST) >= 8);
3067 sect_offset sect_off
3068 = (sect_offset) extract_unsigned_integer (bytes, 8, BFD_ENDIAN_LITTLE);
3069 type_offset_in_tu
3070 = (cu_offset) extract_unsigned_integer (bytes + 8, 8,
3071 BFD_ENDIAN_LITTLE);
3072 signature = extract_unsigned_integer (bytes + 16, 8, BFD_ENDIAN_LITTLE);
3073 bytes += 3 * 8;
3074
3075 sig_type = OBSTACK_ZALLOC (&objfile->objfile_obstack,
3076 struct signatured_type);
3077 sig_type->signature = signature;
3078 sig_type->type_offset_in_tu = type_offset_in_tu;
3079 sig_type->per_cu.is_debug_types = 1;
3080 sig_type->per_cu.section = section;
3081 sig_type->per_cu.sect_off = sect_off;
3082 sig_type->per_cu.dwarf2_per_objfile = dwarf2_per_objfile;
3083 sig_type->per_cu.v.quick
3084 = OBSTACK_ZALLOC (&objfile->objfile_obstack,
3085 struct dwarf2_per_cu_quick_data);
3086
3087 slot = htab_find_slot (sig_types_hash, sig_type, INSERT);
3088 *slot = sig_type;
3089
3090 dwarf2_per_objfile->all_type_units[i / 3] = sig_type;
3091 }
3092
3093 dwarf2_per_objfile->signatured_types = sig_types_hash;
3094 }
3095
3096 /* Create the signatured type hash table from .debug_names. */
3097
3098 static void
3099 create_signatured_type_table_from_debug_names
3100 (struct dwarf2_per_objfile *dwarf2_per_objfile,
3101 const mapped_debug_names &map,
3102 struct dwarf2_section_info *section,
3103 struct dwarf2_section_info *abbrev_section)
3104 {
3105 struct objfile *objfile = dwarf2_per_objfile->objfile;
3106
3107 dwarf2_read_section (objfile, section);
3108 dwarf2_read_section (objfile, abbrev_section);
3109
3110 dwarf2_per_objfile->n_type_units
3111 = dwarf2_per_objfile->n_allocated_type_units
3112 = map.tu_count;
3113 dwarf2_per_objfile->all_type_units
3114 = XNEWVEC (struct signatured_type *, dwarf2_per_objfile->n_type_units);
3115
3116 htab_t sig_types_hash = allocate_signatured_type_table (objfile);
3117
3118 for (uint32_t i = 0; i < map.tu_count; ++i)
3119 {
3120 struct signatured_type *sig_type;
3121 ULONGEST signature;
3122 void **slot;
3123 cu_offset type_offset_in_tu;
3124
3125 sect_offset sect_off
3126 = (sect_offset) (extract_unsigned_integer
3127 (map.tu_table_reordered + i * map.offset_size,
3128 map.offset_size,
3129 map.dwarf5_byte_order));
3130
3131 comp_unit_head cu_header;
3132 read_and_check_comp_unit_head (dwarf2_per_objfile, &cu_header, section,
3133 abbrev_section,
3134 section->buffer + to_underlying (sect_off),
3135 rcuh_kind::TYPE);
3136
3137 sig_type = OBSTACK_ZALLOC (&objfile->objfile_obstack,
3138 struct signatured_type);
3139 sig_type->signature = cu_header.signature;
3140 sig_type->type_offset_in_tu = cu_header.type_cu_offset_in_tu;
3141 sig_type->per_cu.is_debug_types = 1;
3142 sig_type->per_cu.section = section;
3143 sig_type->per_cu.sect_off = sect_off;
3144 sig_type->per_cu.dwarf2_per_objfile = dwarf2_per_objfile;
3145 sig_type->per_cu.v.quick
3146 = OBSTACK_ZALLOC (&objfile->objfile_obstack,
3147 struct dwarf2_per_cu_quick_data);
3148
3149 slot = htab_find_slot (sig_types_hash, sig_type, INSERT);
3150 *slot = sig_type;
3151
3152 dwarf2_per_objfile->all_type_units[i] = sig_type;
3153 }
3154
3155 dwarf2_per_objfile->signatured_types = sig_types_hash;
3156 }
3157
3158 /* Read the address map data from the mapped index, and use it to
3159 populate the objfile's psymtabs_addrmap. */
3160
3161 static void
3162 create_addrmap_from_index (struct dwarf2_per_objfile *dwarf2_per_objfile,
3163 struct mapped_index *index)
3164 {
3165 struct objfile *objfile = dwarf2_per_objfile->objfile;
3166 struct gdbarch *gdbarch = get_objfile_arch (objfile);
3167 const gdb_byte *iter, *end;
3168 struct addrmap *mutable_map;
3169 CORE_ADDR baseaddr;
3170
3171 auto_obstack temp_obstack;
3172
3173 mutable_map = addrmap_create_mutable (&temp_obstack);
3174
3175 iter = index->address_table.data ();
3176 end = iter + index->address_table.size ();
3177
3178 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
3179
3180 while (iter < end)
3181 {
3182 ULONGEST hi, lo, cu_index;
3183 lo = extract_unsigned_integer (iter, 8, BFD_ENDIAN_LITTLE);
3184 iter += 8;
3185 hi = extract_unsigned_integer (iter, 8, BFD_ENDIAN_LITTLE);
3186 iter += 8;
3187 cu_index = extract_unsigned_integer (iter, 4, BFD_ENDIAN_LITTLE);
3188 iter += 4;
3189
3190 if (lo > hi)
3191 {
3192 complaint (&symfile_complaints,
3193 _(".gdb_index address table has invalid range (%s - %s)"),
3194 hex_string (lo), hex_string (hi));
3195 continue;
3196 }
3197
3198 if (cu_index >= dwarf2_per_objfile->n_comp_units)
3199 {
3200 complaint (&symfile_complaints,
3201 _(".gdb_index address table has invalid CU number %u"),
3202 (unsigned) cu_index);
3203 continue;
3204 }
3205
3206 lo = gdbarch_adjust_dwarf2_addr (gdbarch, lo + baseaddr);
3207 hi = gdbarch_adjust_dwarf2_addr (gdbarch, hi + baseaddr);
3208 addrmap_set_empty (mutable_map, lo, hi - 1,
3209 dw2_get_cutu (dwarf2_per_objfile, cu_index));
3210 }
3211
3212 objfile->psymtabs_addrmap = addrmap_create_fixed (mutable_map,
3213 &objfile->objfile_obstack);
3214 }
3215
3216 /* Read the address map data from DWARF-5 .debug_aranges, and use it to
3217 populate the objfile's psymtabs_addrmap. */
3218
3219 static void
3220 create_addrmap_from_aranges (struct dwarf2_per_objfile *dwarf2_per_objfile,
3221 struct dwarf2_section_info *section)
3222 {
3223 struct objfile *objfile = dwarf2_per_objfile->objfile;
3224 bfd *abfd = objfile->obfd;
3225 struct gdbarch *gdbarch = get_objfile_arch (objfile);
3226 const CORE_ADDR baseaddr = ANOFFSET (objfile->section_offsets,
3227 SECT_OFF_TEXT (objfile));
3228
3229 auto_obstack temp_obstack;
3230 addrmap *mutable_map = addrmap_create_mutable (&temp_obstack);
3231
3232 std::unordered_map<sect_offset,
3233 dwarf2_per_cu_data *,
3234 gdb::hash_enum<sect_offset>>
3235 debug_info_offset_to_per_cu;
3236 for (int cui = 0; cui < dwarf2_per_objfile->n_comp_units; ++cui)
3237 {
3238 dwarf2_per_cu_data *per_cu = dw2_get_cutu (dwarf2_per_objfile, cui);
3239 const auto insertpair
3240 = debug_info_offset_to_per_cu.emplace (per_cu->sect_off, per_cu);
3241 if (!insertpair.second)
3242 {
3243 warning (_("Section .debug_aranges in %s has duplicate "
3244 "debug_info_offset %s, ignoring .debug_aranges."),
3245 objfile_name (objfile), sect_offset_str (per_cu->sect_off));
3246 return;
3247 }
3248 }
3249
3250 dwarf2_read_section (objfile, section);
3251
3252 const bfd_endian dwarf5_byte_order = gdbarch_byte_order (gdbarch);
3253
3254 const gdb_byte *addr = section->buffer;
3255
3256 while (addr < section->buffer + section->size)
3257 {
3258 const gdb_byte *const entry_addr = addr;
3259 unsigned int bytes_read;
3260
3261 const LONGEST entry_length = read_initial_length (abfd, addr,
3262 &bytes_read);
3263 addr += bytes_read;
3264
3265 const gdb_byte *const entry_end = addr + entry_length;
3266 const bool dwarf5_is_dwarf64 = bytes_read != 4;
3267 const uint8_t offset_size = dwarf5_is_dwarf64 ? 8 : 4;
3268 if (addr + entry_length > section->buffer + section->size)
3269 {
3270 warning (_("Section .debug_aranges in %s entry at offset %zu "
3271 "length %s exceeds section length %s, "
3272 "ignoring .debug_aranges."),
3273 objfile_name (objfile), entry_addr - section->buffer,
3274 plongest (bytes_read + entry_length),
3275 pulongest (section->size));
3276 return;
3277 }
3278
3279 /* The version number. */
3280 const uint16_t version = read_2_bytes (abfd, addr);
3281 addr += 2;
3282 if (version != 2)
3283 {
3284 warning (_("Section .debug_aranges in %s entry at offset %zu "
3285 "has unsupported version %d, ignoring .debug_aranges."),
3286 objfile_name (objfile), entry_addr - section->buffer,
3287 version);
3288 return;
3289 }
3290
3291 const uint64_t debug_info_offset
3292 = extract_unsigned_integer (addr, offset_size, dwarf5_byte_order);
3293 addr += offset_size;
3294 const auto per_cu_it
3295 = debug_info_offset_to_per_cu.find (sect_offset (debug_info_offset));
3296 if (per_cu_it == debug_info_offset_to_per_cu.cend ())
3297 {
3298 warning (_("Section .debug_aranges in %s entry at offset %zu "
3299 "debug_info_offset %s does not exists, "
3300 "ignoring .debug_aranges."),
3301 objfile_name (objfile), entry_addr - section->buffer,
3302 pulongest (debug_info_offset));
3303 return;
3304 }
3305 dwarf2_per_cu_data *const per_cu = per_cu_it->second;
3306
3307 const uint8_t address_size = *addr++;
3308 if (address_size < 1 || address_size > 8)
3309 {
3310 warning (_("Section .debug_aranges in %s entry at offset %zu "
3311 "address_size %u is invalid, ignoring .debug_aranges."),
3312 objfile_name (objfile), entry_addr - section->buffer,
3313 address_size);
3314 return;
3315 }
3316
3317 const uint8_t segment_selector_size = *addr++;
3318 if (segment_selector_size != 0)
3319 {
3320 warning (_("Section .debug_aranges in %s entry at offset %zu "
3321 "segment_selector_size %u is not supported, "
3322 "ignoring .debug_aranges."),
3323 objfile_name (objfile), entry_addr - section->buffer,
3324 segment_selector_size);
3325 return;
3326 }
3327
3328 /* Must pad to an alignment boundary that is twice the address
3329 size. It is undocumented by the DWARF standard but GCC does
3330 use it. */
3331 for (size_t padding = ((-(addr - section->buffer))
3332 & (2 * address_size - 1));
3333 padding > 0; padding--)
3334 if (*addr++ != 0)
3335 {
3336 warning (_("Section .debug_aranges in %s entry at offset %zu "
3337 "padding is not zero, ignoring .debug_aranges."),
3338 objfile_name (objfile), entry_addr - section->buffer);
3339 return;
3340 }
3341
3342 for (;;)
3343 {
3344 if (addr + 2 * address_size > entry_end)
3345 {
3346 warning (_("Section .debug_aranges in %s entry at offset %zu "
3347 "address list is not properly terminated, "
3348 "ignoring .debug_aranges."),
3349 objfile_name (objfile), entry_addr - section->buffer);
3350 return;
3351 }
3352 ULONGEST start = extract_unsigned_integer (addr, address_size,
3353 dwarf5_byte_order);
3354 addr += address_size;
3355 ULONGEST length = extract_unsigned_integer (addr, address_size,
3356 dwarf5_byte_order);
3357 addr += address_size;
3358 if (start == 0 && length == 0)
3359 break;
3360 if (start == 0 && !dwarf2_per_objfile->has_section_at_zero)
3361 {
3362 /* Symbol was eliminated due to a COMDAT group. */
3363 continue;
3364 }
3365 ULONGEST end = start + length;
3366 start = gdbarch_adjust_dwarf2_addr (gdbarch, start + baseaddr);
3367 end = gdbarch_adjust_dwarf2_addr (gdbarch, end + baseaddr);
3368 addrmap_set_empty (mutable_map, start, end - 1, per_cu);
3369 }
3370 }
3371
3372 objfile->psymtabs_addrmap = addrmap_create_fixed (mutable_map,
3373 &objfile->objfile_obstack);
3374 }
3375
3376 /* Find a slot in the mapped index INDEX for the object named NAME.
3377 If NAME is found, set *VEC_OUT to point to the CU vector in the
3378 constant pool and return true. If NAME cannot be found, return
3379 false. */
3380
3381 static bool
3382 find_slot_in_mapped_hash (struct mapped_index *index, const char *name,
3383 offset_type **vec_out)
3384 {
3385 offset_type hash;
3386 offset_type slot, step;
3387 int (*cmp) (const char *, const char *);
3388
3389 gdb::unique_xmalloc_ptr<char> without_params;
3390 if (current_language->la_language == language_cplus
3391 || current_language->la_language == language_fortran
3392 || current_language->la_language == language_d)
3393 {
3394 /* NAME is already canonical. Drop any qualifiers as .gdb_index does
3395 not contain any. */
3396
3397 if (strchr (name, '(') != NULL)
3398 {
3399 without_params = cp_remove_params (name);
3400
3401 if (without_params != NULL)
3402 name = without_params.get ();
3403 }
3404 }
3405
3406 /* Index version 4 did not support case insensitive searches. But the
3407 indices for case insensitive languages are built in lowercase, therefore
3408 simulate our NAME being searched is also lowercased. */
3409 hash = mapped_index_string_hash ((index->version == 4
3410 && case_sensitivity == case_sensitive_off
3411 ? 5 : index->version),
3412 name);
3413
3414 slot = hash & (index->symbol_table.size () - 1);
3415 step = ((hash * 17) & (index->symbol_table.size () - 1)) | 1;
3416 cmp = (case_sensitivity == case_sensitive_on ? strcmp : strcasecmp);
3417
3418 for (;;)
3419 {
3420 const char *str;
3421
3422 const auto &bucket = index->symbol_table[slot];
3423 if (bucket.name == 0 && bucket.vec == 0)
3424 return false;
3425
3426 str = index->constant_pool + MAYBE_SWAP (bucket.name);
3427 if (!cmp (name, str))
3428 {
3429 *vec_out = (offset_type *) (index->constant_pool
3430 + MAYBE_SWAP (bucket.vec));
3431 return true;
3432 }
3433
3434 slot = (slot + step) & (index->symbol_table.size () - 1);
3435 }
3436 }
3437
3438 /* A helper function that reads the .gdb_index from SECTION and fills
3439 in MAP. FILENAME is the name of the file containing the section;
3440 it is used for error reporting. DEPRECATED_OK is nonzero if it is
3441 ok to use deprecated sections.
3442
3443 CU_LIST, CU_LIST_ELEMENTS, TYPES_LIST, and TYPES_LIST_ELEMENTS are
3444 out parameters that are filled in with information about the CU and
3445 TU lists in the section.
3446
3447 Returns 1 if all went well, 0 otherwise. */
3448
3449 static int
3450 read_index_from_section (struct objfile *objfile,
3451 const char *filename,
3452 int deprecated_ok,
3453 struct dwarf2_section_info *section,
3454 struct mapped_index *map,
3455 const gdb_byte **cu_list,
3456 offset_type *cu_list_elements,
3457 const gdb_byte **types_list,
3458 offset_type *types_list_elements)
3459 {
3460 const gdb_byte *addr;
3461 offset_type version;
3462 offset_type *metadata;
3463 int i;
3464
3465 if (dwarf2_section_empty_p (section))
3466 return 0;
3467
3468 /* Older elfutils strip versions could keep the section in the main
3469 executable while splitting it for the separate debug info file. */
3470 if ((get_section_flags (section) & SEC_HAS_CONTENTS) == 0)
3471 return 0;
3472
3473 dwarf2_read_section (objfile, section);
3474
3475 addr = section->buffer;
3476 /* Version check. */
3477 version = MAYBE_SWAP (*(offset_type *) addr);
3478 /* Versions earlier than 3 emitted every copy of a psymbol. This
3479 causes the index to behave very poorly for certain requests. Version 3
3480 contained incomplete addrmap. So, it seems better to just ignore such
3481 indices. */
3482 if (version < 4)
3483 {
3484 static int warning_printed = 0;
3485 if (!warning_printed)
3486 {
3487 warning (_("Skipping obsolete .gdb_index section in %s."),
3488 filename);
3489 warning_printed = 1;
3490 }
3491 return 0;
3492 }
3493 /* Index version 4 uses a different hash function than index version
3494 5 and later.
3495
3496 Versions earlier than 6 did not emit psymbols for inlined
3497 functions. Using these files will cause GDB not to be able to
3498 set breakpoints on inlined functions by name, so we ignore these
3499 indices unless the user has done
3500 "set use-deprecated-index-sections on". */
3501 if (version < 6 && !deprecated_ok)
3502 {
3503 static int warning_printed = 0;
3504 if (!warning_printed)
3505 {
3506 warning (_("\
3507 Skipping deprecated .gdb_index section in %s.\n\
3508 Do \"set use-deprecated-index-sections on\" before the file is read\n\
3509 to use the section anyway."),
3510 filename);
3511 warning_printed = 1;
3512 }
3513 return 0;
3514 }
3515 /* Version 7 indices generated by gold refer to the CU for a symbol instead
3516 of the TU (for symbols coming from TUs),
3517 http://sourceware.org/bugzilla/show_bug.cgi?id=15021.
3518 Plus gold-generated indices can have duplicate entries for global symbols,
3519 http://sourceware.org/bugzilla/show_bug.cgi?id=15646.
3520 These are just performance bugs, and we can't distinguish gdb-generated
3521 indices from gold-generated ones, so issue no warning here. */
3522
3523 /* Indexes with higher version than the one supported by GDB may be no
3524 longer backward compatible. */
3525 if (version > 8)
3526 return 0;
3527
3528 map->version = version;
3529 map->total_size = section->size;
3530
3531 metadata = (offset_type *) (addr + sizeof (offset_type));
3532
3533 i = 0;
3534 *cu_list = addr + MAYBE_SWAP (metadata[i]);
3535 *cu_list_elements = ((MAYBE_SWAP (metadata[i + 1]) - MAYBE_SWAP (metadata[i]))
3536 / 8);
3537 ++i;
3538
3539 *types_list = addr + MAYBE_SWAP (metadata[i]);
3540 *types_list_elements = ((MAYBE_SWAP (metadata[i + 1])
3541 - MAYBE_SWAP (metadata[i]))
3542 / 8);
3543 ++i;
3544
3545 const gdb_byte *address_table = addr + MAYBE_SWAP (metadata[i]);
3546 const gdb_byte *address_table_end = addr + MAYBE_SWAP (metadata[i + 1]);
3547 map->address_table
3548 = gdb::array_view<const gdb_byte> (address_table, address_table_end);
3549 ++i;
3550
3551 const gdb_byte *symbol_table = addr + MAYBE_SWAP (metadata[i]);
3552 const gdb_byte *symbol_table_end = addr + MAYBE_SWAP (metadata[i + 1]);
3553 map->symbol_table
3554 = gdb::array_view<mapped_index::symbol_table_slot>
3555 ((mapped_index::symbol_table_slot *) symbol_table,
3556 (mapped_index::symbol_table_slot *) symbol_table_end);
3557
3558 ++i;
3559 map->constant_pool = (char *) (addr + MAYBE_SWAP (metadata[i]));
3560
3561 return 1;
3562 }
3563
3564 /* Read .gdb_index. If everything went ok, initialize the "quick"
3565 elements of all the CUs and return 1. Otherwise, return 0. */
3566
3567 static int
3568 dwarf2_read_index (struct objfile *objfile)
3569 {
3570 struct mapped_index local_map, *map;
3571 const gdb_byte *cu_list, *types_list, *dwz_list = NULL;
3572 offset_type cu_list_elements, types_list_elements, dwz_list_elements = 0;
3573 struct dwz_file *dwz;
3574 struct dwarf2_per_objfile *dwarf2_per_objfile
3575 = get_dwarf2_per_objfile (objfile);
3576
3577 if (!read_index_from_section (objfile, objfile_name (objfile),
3578 use_deprecated_index_sections,
3579 &dwarf2_per_objfile->gdb_index, &local_map,
3580 &cu_list, &cu_list_elements,
3581 &types_list, &types_list_elements))
3582 return 0;
3583
3584 /* Don't use the index if it's empty. */
3585 if (local_map.symbol_table.empty ())
3586 return 0;
3587
3588 /* If there is a .dwz file, read it so we can get its CU list as
3589 well. */
3590 dwz = dwarf2_get_dwz_file (dwarf2_per_objfile);
3591 if (dwz != NULL)
3592 {
3593 struct mapped_index dwz_map;
3594 const gdb_byte *dwz_types_ignore;
3595 offset_type dwz_types_elements_ignore;
3596
3597 if (!read_index_from_section (objfile, bfd_get_filename (dwz->dwz_bfd),
3598 1,
3599 &dwz->gdb_index, &dwz_map,
3600 &dwz_list, &dwz_list_elements,
3601 &dwz_types_ignore,
3602 &dwz_types_elements_ignore))
3603 {
3604 warning (_("could not read '.gdb_index' section from %s; skipping"),
3605 bfd_get_filename (dwz->dwz_bfd));
3606 return 0;
3607 }
3608 }
3609
3610 create_cus_from_index (objfile, cu_list, cu_list_elements, dwz_list,
3611 dwz_list_elements);
3612
3613 if (types_list_elements)
3614 {
3615 struct dwarf2_section_info *section;
3616
3617 /* We can only handle a single .debug_types when we have an
3618 index. */
3619 if (VEC_length (dwarf2_section_info_def, dwarf2_per_objfile->types) != 1)
3620 return 0;
3621
3622 section = VEC_index (dwarf2_section_info_def,
3623 dwarf2_per_objfile->types, 0);
3624
3625 create_signatured_type_table_from_index (objfile, section, types_list,
3626 types_list_elements);
3627 }
3628
3629 create_addrmap_from_index (dwarf2_per_objfile, &local_map);
3630
3631 map = XOBNEW (&objfile->objfile_obstack, struct mapped_index);
3632 map = new (map) mapped_index ();
3633 *map = local_map;
3634
3635 dwarf2_per_objfile->index_table = map;
3636 dwarf2_per_objfile->using_index = 1;
3637 dwarf2_per_objfile->quick_file_names_table =
3638 create_quick_file_names_table (dwarf2_per_objfile->n_comp_units);
3639
3640 return 1;
3641 }
3642
3643 /* die_reader_func for dw2_get_file_names. */
3644
3645 static void
3646 dw2_get_file_names_reader (const struct die_reader_specs *reader,
3647 const gdb_byte *info_ptr,
3648 struct die_info *comp_unit_die,
3649 int has_children,
3650 void *data)
3651 {
3652 struct dwarf2_cu *cu = reader->cu;
3653 struct dwarf2_per_cu_data *this_cu = cu->per_cu;
3654 struct dwarf2_per_objfile *dwarf2_per_objfile
3655 = cu->per_cu->dwarf2_per_objfile;
3656 struct objfile *objfile = dwarf2_per_objfile->objfile;
3657 struct dwarf2_per_cu_data *lh_cu;
3658 struct attribute *attr;
3659 int i;
3660 void **slot;
3661 struct quick_file_names *qfn;
3662
3663 gdb_assert (! this_cu->is_debug_types);
3664
3665 /* Our callers never want to match partial units -- instead they
3666 will match the enclosing full CU. */
3667 if (comp_unit_die->tag == DW_TAG_partial_unit)
3668 {
3669 this_cu->v.quick->no_file_data = 1;
3670 return;
3671 }
3672
3673 lh_cu = this_cu;
3674 slot = NULL;
3675
3676 line_header_up lh;
3677 sect_offset line_offset {};
3678
3679 attr = dwarf2_attr (comp_unit_die, DW_AT_stmt_list, cu);
3680 if (attr)
3681 {
3682 struct quick_file_names find_entry;
3683
3684 line_offset = (sect_offset) DW_UNSND (attr);
3685
3686 /* We may have already read in this line header (TU line header sharing).
3687 If we have we're done. */
3688 find_entry.hash.dwo_unit = cu->dwo_unit;
3689 find_entry.hash.line_sect_off = line_offset;
3690 slot = htab_find_slot (dwarf2_per_objfile->quick_file_names_table,
3691 &find_entry, INSERT);
3692 if (*slot != NULL)
3693 {
3694 lh_cu->v.quick->file_names = (struct quick_file_names *) *slot;
3695 return;
3696 }
3697
3698 lh = dwarf_decode_line_header (line_offset, cu);
3699 }
3700 if (lh == NULL)
3701 {
3702 lh_cu->v.quick->no_file_data = 1;
3703 return;
3704 }
3705
3706 qfn = XOBNEW (&objfile->objfile_obstack, struct quick_file_names);
3707 qfn->hash.dwo_unit = cu->dwo_unit;
3708 qfn->hash.line_sect_off = line_offset;
3709 gdb_assert (slot != NULL);
3710 *slot = qfn;
3711
3712 file_and_directory fnd = find_file_and_directory (comp_unit_die, cu);
3713
3714 qfn->num_file_names = lh->file_names.size ();
3715 qfn->file_names =
3716 XOBNEWVEC (&objfile->objfile_obstack, const char *, lh->file_names.size ());
3717 for (i = 0; i < lh->file_names.size (); ++i)
3718 qfn->file_names[i] = file_full_name (i + 1, lh.get (), fnd.comp_dir);
3719 qfn->real_names = NULL;
3720
3721 lh_cu->v.quick->file_names = qfn;
3722 }
3723
3724 /* A helper for the "quick" functions which attempts to read the line
3725 table for THIS_CU. */
3726
3727 static struct quick_file_names *
3728 dw2_get_file_names (struct dwarf2_per_cu_data *this_cu)
3729 {
3730 /* This should never be called for TUs. */
3731 gdb_assert (! this_cu->is_debug_types);
3732 /* Nor type unit groups. */
3733 gdb_assert (! IS_TYPE_UNIT_GROUP (this_cu));
3734
3735 if (this_cu->v.quick->file_names != NULL)
3736 return this_cu->v.quick->file_names;
3737 /* If we know there is no line data, no point in looking again. */
3738 if (this_cu->v.quick->no_file_data)
3739 return NULL;
3740
3741 init_cutu_and_read_dies_simple (this_cu, dw2_get_file_names_reader, NULL);
3742
3743 if (this_cu->v.quick->no_file_data)
3744 return NULL;
3745 return this_cu->v.quick->file_names;
3746 }
3747
3748 /* A helper for the "quick" functions which computes and caches the
3749 real path for a given file name from the line table. */
3750
3751 static const char *
3752 dw2_get_real_path (struct objfile *objfile,
3753 struct quick_file_names *qfn, int index)
3754 {
3755 if (qfn->real_names == NULL)
3756 qfn->real_names = OBSTACK_CALLOC (&objfile->objfile_obstack,
3757 qfn->num_file_names, const char *);
3758
3759 if (qfn->real_names[index] == NULL)
3760 qfn->real_names[index] = gdb_realpath (qfn->file_names[index]).release ();
3761
3762 return qfn->real_names[index];
3763 }
3764
3765 static struct symtab *
3766 dw2_find_last_source_symtab (struct objfile *objfile)
3767 {
3768 struct dwarf2_per_objfile *dwarf2_per_objfile
3769 = get_dwarf2_per_objfile (objfile);
3770 int index = dwarf2_per_objfile->n_comp_units - 1;
3771 dwarf2_per_cu_data *dwarf_cu = dw2_get_cutu (dwarf2_per_objfile, index);
3772 compunit_symtab *cust = dw2_instantiate_symtab (dwarf_cu);
3773
3774 if (cust == NULL)
3775 return NULL;
3776
3777 return compunit_primary_filetab (cust);
3778 }
3779
3780 /* Traversal function for dw2_forget_cached_source_info. */
3781
3782 static int
3783 dw2_free_cached_file_names (void **slot, void *info)
3784 {
3785 struct quick_file_names *file_data = (struct quick_file_names *) *slot;
3786
3787 if (file_data->real_names)
3788 {
3789 int i;
3790
3791 for (i = 0; i < file_data->num_file_names; ++i)
3792 {
3793 xfree ((void*) file_data->real_names[i]);
3794 file_data->real_names[i] = NULL;
3795 }
3796 }
3797
3798 return 1;
3799 }
3800
3801 static void
3802 dw2_forget_cached_source_info (struct objfile *objfile)
3803 {
3804 struct dwarf2_per_objfile *dwarf2_per_objfile
3805 = get_dwarf2_per_objfile (objfile);
3806
3807 htab_traverse_noresize (dwarf2_per_objfile->quick_file_names_table,
3808 dw2_free_cached_file_names, NULL);
3809 }
3810
3811 /* Helper function for dw2_map_symtabs_matching_filename that expands
3812 the symtabs and calls the iterator. */
3813
3814 static int
3815 dw2_map_expand_apply (struct objfile *objfile,
3816 struct dwarf2_per_cu_data *per_cu,
3817 const char *name, const char *real_path,
3818 gdb::function_view<bool (symtab *)> callback)
3819 {
3820 struct compunit_symtab *last_made = objfile->compunit_symtabs;
3821
3822 /* Don't visit already-expanded CUs. */
3823 if (per_cu->v.quick->compunit_symtab)
3824 return 0;
3825
3826 /* This may expand more than one symtab, and we want to iterate over
3827 all of them. */
3828 dw2_instantiate_symtab (per_cu);
3829
3830 return iterate_over_some_symtabs (name, real_path, objfile->compunit_symtabs,
3831 last_made, callback);
3832 }
3833
3834 /* Implementation of the map_symtabs_matching_filename method. */
3835
3836 static bool
3837 dw2_map_symtabs_matching_filename
3838 (struct objfile *objfile, const char *name, const char *real_path,
3839 gdb::function_view<bool (symtab *)> callback)
3840 {
3841 int i;
3842 const char *name_basename = lbasename (name);
3843 struct dwarf2_per_objfile *dwarf2_per_objfile
3844 = get_dwarf2_per_objfile (objfile);
3845
3846 /* The rule is CUs specify all the files, including those used by
3847 any TU, so there's no need to scan TUs here. */
3848
3849 for (int i = 0; i < dwarf2_per_objfile->n_comp_units; ++i)
3850 {
3851 int j;
3852 struct dwarf2_per_cu_data *per_cu = dw2_get_cu (dwarf2_per_objfile, i);
3853 struct quick_file_names *file_data;
3854
3855 /* We only need to look at symtabs not already expanded. */
3856 if (per_cu->v.quick->compunit_symtab)
3857 continue;
3858
3859 file_data = dw2_get_file_names (per_cu);
3860 if (file_data == NULL)
3861 continue;
3862
3863 for (j = 0; j < file_data->num_file_names; ++j)
3864 {
3865 const char *this_name = file_data->file_names[j];
3866 const char *this_real_name;
3867
3868 if (compare_filenames_for_search (this_name, name))
3869 {
3870 if (dw2_map_expand_apply (objfile, per_cu, name, real_path,
3871 callback))
3872 return true;
3873 continue;
3874 }
3875
3876 /* Before we invoke realpath, which can get expensive when many
3877 files are involved, do a quick comparison of the basenames. */
3878 if (! basenames_may_differ
3879 && FILENAME_CMP (lbasename (this_name), name_basename) != 0)
3880 continue;
3881
3882 this_real_name = dw2_get_real_path (objfile, file_data, j);
3883 if (compare_filenames_for_search (this_real_name, name))
3884 {
3885 if (dw2_map_expand_apply (objfile, per_cu, name, real_path,
3886 callback))
3887 return true;
3888 continue;
3889 }
3890
3891 if (real_path != NULL)
3892 {
3893 gdb_assert (IS_ABSOLUTE_PATH (real_path));
3894 gdb_assert (IS_ABSOLUTE_PATH (name));
3895 if (this_real_name != NULL
3896 && FILENAME_CMP (real_path, this_real_name) == 0)
3897 {
3898 if (dw2_map_expand_apply (objfile, per_cu, name, real_path,
3899 callback))
3900 return true;
3901 continue;
3902 }
3903 }
3904 }
3905 }
3906
3907 return false;
3908 }
3909
3910 /* Struct used to manage iterating over all CUs looking for a symbol. */
3911
3912 struct dw2_symtab_iterator
3913 {
3914 /* The dwarf2_per_objfile owning the CUs we are iterating on. */
3915 struct dwarf2_per_objfile *dwarf2_per_objfile;
3916 /* If non-zero, only look for symbols that match BLOCK_INDEX. */
3917 int want_specific_block;
3918 /* One of GLOBAL_BLOCK or STATIC_BLOCK.
3919 Unused if !WANT_SPECIFIC_BLOCK. */
3920 int block_index;
3921 /* The kind of symbol we're looking for. */
3922 domain_enum domain;
3923 /* The list of CUs from the index entry of the symbol,
3924 or NULL if not found. */
3925 offset_type *vec;
3926 /* The next element in VEC to look at. */
3927 int next;
3928 /* The number of elements in VEC, or zero if there is no match. */
3929 int length;
3930 /* Have we seen a global version of the symbol?
3931 If so we can ignore all further global instances.
3932 This is to work around gold/15646, inefficient gold-generated
3933 indices. */
3934 int global_seen;
3935 };
3936
3937 /* Initialize the index symtab iterator ITER.
3938 If WANT_SPECIFIC_BLOCK is non-zero, only look for symbols
3939 in block BLOCK_INDEX. Otherwise BLOCK_INDEX is ignored. */
3940
3941 static void
3942 dw2_symtab_iter_init (struct dw2_symtab_iterator *iter,
3943 struct dwarf2_per_objfile *dwarf2_per_objfile,
3944 int want_specific_block,
3945 int block_index,
3946 domain_enum domain,
3947 const char *name)
3948 {
3949 iter->dwarf2_per_objfile = dwarf2_per_objfile;
3950 iter->want_specific_block = want_specific_block;
3951 iter->block_index = block_index;
3952 iter->domain = domain;
3953 iter->next = 0;
3954 iter->global_seen = 0;
3955
3956 mapped_index *index = dwarf2_per_objfile->index_table;
3957
3958 /* index is NULL if OBJF_READNOW. */
3959 if (index != NULL && find_slot_in_mapped_hash (index, name, &iter->vec))
3960 iter->length = MAYBE_SWAP (*iter->vec);
3961 else
3962 {
3963 iter->vec = NULL;
3964 iter->length = 0;
3965 }
3966 }
3967
3968 /* Return the next matching CU or NULL if there are no more. */
3969
3970 static struct dwarf2_per_cu_data *
3971 dw2_symtab_iter_next (struct dw2_symtab_iterator *iter)
3972 {
3973 struct dwarf2_per_objfile *dwarf2_per_objfile = iter->dwarf2_per_objfile;
3974
3975 for ( ; iter->next < iter->length; ++iter->next)
3976 {
3977 offset_type cu_index_and_attrs =
3978 MAYBE_SWAP (iter->vec[iter->next + 1]);
3979 offset_type cu_index = GDB_INDEX_CU_VALUE (cu_index_and_attrs);
3980 struct dwarf2_per_cu_data *per_cu;
3981 int want_static = iter->block_index != GLOBAL_BLOCK;
3982 /* This value is only valid for index versions >= 7. */
3983 int is_static = GDB_INDEX_SYMBOL_STATIC_VALUE (cu_index_and_attrs);
3984 gdb_index_symbol_kind symbol_kind =
3985 GDB_INDEX_SYMBOL_KIND_VALUE (cu_index_and_attrs);
3986 /* Only check the symbol attributes if they're present.
3987 Indices prior to version 7 don't record them,
3988 and indices >= 7 may elide them for certain symbols
3989 (gold does this). */
3990 int attrs_valid =
3991 (dwarf2_per_objfile->index_table->version >= 7
3992 && symbol_kind != GDB_INDEX_SYMBOL_KIND_NONE);
3993
3994 /* Don't crash on bad data. */
3995 if (cu_index >= (dwarf2_per_objfile->n_comp_units
3996 + dwarf2_per_objfile->n_type_units))
3997 {
3998 complaint (&symfile_complaints,
3999 _(".gdb_index entry has bad CU index"
4000 " [in module %s]"),
4001 objfile_name (dwarf2_per_objfile->objfile));
4002 continue;
4003 }
4004
4005 per_cu = dw2_get_cutu (dwarf2_per_objfile, cu_index);
4006
4007 /* Skip if already read in. */
4008 if (per_cu->v.quick->compunit_symtab)
4009 continue;
4010
4011 /* Check static vs global. */
4012 if (attrs_valid)
4013 {
4014 if (iter->want_specific_block
4015 && want_static != is_static)
4016 continue;
4017 /* Work around gold/15646. */
4018 if (!is_static && iter->global_seen)
4019 continue;
4020 if (!is_static)
4021 iter->global_seen = 1;
4022 }
4023
4024 /* Only check the symbol's kind if it has one. */
4025 if (attrs_valid)
4026 {
4027 switch (iter->domain)
4028 {
4029 case VAR_DOMAIN:
4030 if (symbol_kind != GDB_INDEX_SYMBOL_KIND_VARIABLE
4031 && symbol_kind != GDB_INDEX_SYMBOL_KIND_FUNCTION
4032 /* Some types are also in VAR_DOMAIN. */
4033 && symbol_kind != GDB_INDEX_SYMBOL_KIND_TYPE)
4034 continue;
4035 break;
4036 case STRUCT_DOMAIN:
4037 if (symbol_kind != GDB_INDEX_SYMBOL_KIND_TYPE)
4038 continue;
4039 break;
4040 case LABEL_DOMAIN:
4041 if (symbol_kind != GDB_INDEX_SYMBOL_KIND_OTHER)
4042 continue;
4043 break;
4044 default:
4045 break;
4046 }
4047 }
4048
4049 ++iter->next;
4050 return per_cu;
4051 }
4052
4053 return NULL;
4054 }
4055
4056 static struct compunit_symtab *
4057 dw2_lookup_symbol (struct objfile *objfile, int block_index,
4058 const char *name, domain_enum domain)
4059 {
4060 struct compunit_symtab *stab_best = NULL;
4061 struct dwarf2_per_objfile *dwarf2_per_objfile
4062 = get_dwarf2_per_objfile (objfile);
4063
4064 lookup_name_info lookup_name (name, symbol_name_match_type::FULL);
4065
4066 struct dw2_symtab_iterator iter;
4067 struct dwarf2_per_cu_data *per_cu;
4068
4069 dw2_symtab_iter_init (&iter, dwarf2_per_objfile, 1, block_index, domain, name);
4070
4071 while ((per_cu = dw2_symtab_iter_next (&iter)) != NULL)
4072 {
4073 struct symbol *sym, *with_opaque = NULL;
4074 struct compunit_symtab *stab = dw2_instantiate_symtab (per_cu);
4075 const struct blockvector *bv = COMPUNIT_BLOCKVECTOR (stab);
4076 struct block *block = BLOCKVECTOR_BLOCK (bv, block_index);
4077
4078 sym = block_find_symbol (block, name, domain,
4079 block_find_non_opaque_type_preferred,
4080 &with_opaque);
4081
4082 /* Some caution must be observed with overloaded functions
4083 and methods, since the index will not contain any overload
4084 information (but NAME might contain it). */
4085
4086 if (sym != NULL
4087 && SYMBOL_MATCHES_SEARCH_NAME (sym, lookup_name))
4088 return stab;
4089 if (with_opaque != NULL
4090 && SYMBOL_MATCHES_SEARCH_NAME (with_opaque, lookup_name))
4091 stab_best = stab;
4092
4093 /* Keep looking through other CUs. */
4094 }
4095
4096 return stab_best;
4097 }
4098
4099 static void
4100 dw2_print_stats (struct objfile *objfile)
4101 {
4102 struct dwarf2_per_objfile *dwarf2_per_objfile
4103 = get_dwarf2_per_objfile (objfile);
4104 int total = dwarf2_per_objfile->n_comp_units + dwarf2_per_objfile->n_type_units;
4105 int count = 0;
4106
4107 for (int i = 0; i < total; ++i)
4108 {
4109 struct dwarf2_per_cu_data *per_cu = dw2_get_cutu (dwarf2_per_objfile, i);
4110
4111 if (!per_cu->v.quick->compunit_symtab)
4112 ++count;
4113 }
4114 printf_filtered (_(" Number of read CUs: %d\n"), total - count);
4115 printf_filtered (_(" Number of unread CUs: %d\n"), count);
4116 }
4117
4118 /* This dumps minimal information about the index.
4119 It is called via "mt print objfiles".
4120 One use is to verify .gdb_index has been loaded by the
4121 gdb.dwarf2/gdb-index.exp testcase. */
4122
4123 static void
4124 dw2_dump (struct objfile *objfile)
4125 {
4126 struct dwarf2_per_objfile *dwarf2_per_objfile
4127 = get_dwarf2_per_objfile (objfile);
4128
4129 gdb_assert (dwarf2_per_objfile->using_index);
4130 printf_filtered (".gdb_index:");
4131 if (dwarf2_per_objfile->index_table != NULL)
4132 {
4133 printf_filtered (" version %d\n",
4134 dwarf2_per_objfile->index_table->version);
4135 }
4136 else
4137 printf_filtered (" faked for \"readnow\"\n");
4138 printf_filtered ("\n");
4139 }
4140
4141 static void
4142 dw2_relocate (struct objfile *objfile,
4143 const struct section_offsets *new_offsets,
4144 const struct section_offsets *delta)
4145 {
4146 /* There's nothing to relocate here. */
4147 }
4148
4149 static void
4150 dw2_expand_symtabs_for_function (struct objfile *objfile,
4151 const char *func_name)
4152 {
4153 struct dwarf2_per_objfile *dwarf2_per_objfile
4154 = get_dwarf2_per_objfile (objfile);
4155
4156 struct dw2_symtab_iterator iter;
4157 struct dwarf2_per_cu_data *per_cu;
4158
4159 /* Note: It doesn't matter what we pass for block_index here. */
4160 dw2_symtab_iter_init (&iter, dwarf2_per_objfile, 0, GLOBAL_BLOCK, VAR_DOMAIN,
4161 func_name);
4162
4163 while ((per_cu = dw2_symtab_iter_next (&iter)) != NULL)
4164 dw2_instantiate_symtab (per_cu);
4165
4166 }
4167
4168 static void
4169 dw2_expand_all_symtabs (struct objfile *objfile)
4170 {
4171 struct dwarf2_per_objfile *dwarf2_per_objfile
4172 = get_dwarf2_per_objfile (objfile);
4173 int total_units = (dwarf2_per_objfile->n_comp_units
4174 + dwarf2_per_objfile->n_type_units);
4175
4176 for (int i = 0; i < total_units; ++i)
4177 {
4178 struct dwarf2_per_cu_data *per_cu
4179 = dw2_get_cutu (dwarf2_per_objfile, i);
4180
4181 dw2_instantiate_symtab (per_cu);
4182 }
4183 }
4184
4185 static void
4186 dw2_expand_symtabs_with_fullname (struct objfile *objfile,
4187 const char *fullname)
4188 {
4189 struct dwarf2_per_objfile *dwarf2_per_objfile
4190 = get_dwarf2_per_objfile (objfile);
4191
4192 /* We don't need to consider type units here.
4193 This is only called for examining code, e.g. expand_line_sal.
4194 There can be an order of magnitude (or more) more type units
4195 than comp units, and we avoid them if we can. */
4196
4197 for (int i = 0; i < dwarf2_per_objfile->n_comp_units; ++i)
4198 {
4199 int j;
4200 struct dwarf2_per_cu_data *per_cu = dw2_get_cutu (dwarf2_per_objfile, i);
4201 struct quick_file_names *file_data;
4202
4203 /* We only need to look at symtabs not already expanded. */
4204 if (per_cu->v.quick->compunit_symtab)
4205 continue;
4206
4207 file_data = dw2_get_file_names (per_cu);
4208 if (file_data == NULL)
4209 continue;
4210
4211 for (j = 0; j < file_data->num_file_names; ++j)
4212 {
4213 const char *this_fullname = file_data->file_names[j];
4214
4215 if (filename_cmp (this_fullname, fullname) == 0)
4216 {
4217 dw2_instantiate_symtab (per_cu);
4218 break;
4219 }
4220 }
4221 }
4222 }
4223
4224 static void
4225 dw2_map_matching_symbols (struct objfile *objfile,
4226 const char * name, domain_enum domain,
4227 int global,
4228 int (*callback) (struct block *,
4229 struct symbol *, void *),
4230 void *data, symbol_name_match_type match,
4231 symbol_compare_ftype *ordered_compare)
4232 {
4233 /* Currently unimplemented; used for Ada. The function can be called if the
4234 current language is Ada for a non-Ada objfile using GNU index. As Ada
4235 does not look for non-Ada symbols this function should just return. */
4236 }
4237
4238 /* Symbol name matcher for .gdb_index names.
4239
4240 Symbol names in .gdb_index have a few particularities:
4241
4242 - There's no indication of which is the language of each symbol.
4243
4244 Since each language has its own symbol name matching algorithm,
4245 and we don't know which language is the right one, we must match
4246 each symbol against all languages. This would be a potential
4247 performance problem if it were not mitigated by the
4248 mapped_index::name_components lookup table, which significantly
4249 reduces the number of times we need to call into this matcher,
4250 making it a non-issue.
4251
4252 - Symbol names in the index have no overload (parameter)
4253 information. I.e., in C++, "foo(int)" and "foo(long)" both
4254 appear as "foo" in the index, for example.
4255
4256 This means that the lookup names passed to the symbol name
4257 matcher functions must have no parameter information either
4258 because (e.g.) symbol search name "foo" does not match
4259 lookup-name "foo(int)" [while swapping search name for lookup
4260 name would match].
4261 */
4262 class gdb_index_symbol_name_matcher
4263 {
4264 public:
4265 /* Prepares the vector of comparison functions for LOOKUP_NAME. */
4266 gdb_index_symbol_name_matcher (const lookup_name_info &lookup_name);
4267
4268 /* Walk all the matcher routines and match SYMBOL_NAME against them.
4269 Returns true if any matcher matches. */
4270 bool matches (const char *symbol_name);
4271
4272 private:
4273 /* A reference to the lookup name we're matching against. */
4274 const lookup_name_info &m_lookup_name;
4275
4276 /* A vector holding all the different symbol name matchers, for all
4277 languages. */
4278 std::vector<symbol_name_matcher_ftype *> m_symbol_name_matcher_funcs;
4279 };
4280
4281 gdb_index_symbol_name_matcher::gdb_index_symbol_name_matcher
4282 (const lookup_name_info &lookup_name)
4283 : m_lookup_name (lookup_name)
4284 {
4285 /* Prepare the vector of comparison functions upfront, to avoid
4286 doing the same work for each symbol. Care is taken to avoid
4287 matching with the same matcher more than once if/when multiple
4288 languages use the same matcher function. */
4289 auto &matchers = m_symbol_name_matcher_funcs;
4290 matchers.reserve (nr_languages);
4291
4292 matchers.push_back (default_symbol_name_matcher);
4293
4294 for (int i = 0; i < nr_languages; i++)
4295 {
4296 const language_defn *lang = language_def ((enum language) i);
4297 symbol_name_matcher_ftype *name_matcher
4298 = get_symbol_name_matcher (lang, m_lookup_name);
4299
4300 /* Don't insert the same comparison routine more than once.
4301 Note that we do this linear walk instead of a seemingly
4302 cheaper sorted insert, or use a std::set or something like
4303 that, because relative order of function addresses is not
4304 stable. This is not a problem in practice because the number
4305 of supported languages is low, and the cost here is tiny
4306 compared to the number of searches we'll do afterwards using
4307 this object. */
4308 if (name_matcher != default_symbol_name_matcher
4309 && (std::find (matchers.begin (), matchers.end (), name_matcher)
4310 == matchers.end ()))
4311 matchers.push_back (name_matcher);
4312 }
4313 }
4314
4315 bool
4316 gdb_index_symbol_name_matcher::matches (const char *symbol_name)
4317 {
4318 for (auto matches_name : m_symbol_name_matcher_funcs)
4319 if (matches_name (symbol_name, m_lookup_name, NULL))
4320 return true;
4321
4322 return false;
4323 }
4324
4325 /* Starting from a search name, return the string that finds the upper
4326 bound of all strings that start with SEARCH_NAME in a sorted name
4327 list. Returns the empty string to indicate that the upper bound is
4328 the end of the list. */
4329
4330 static std::string
4331 make_sort_after_prefix_name (const char *search_name)
4332 {
4333 /* When looking to complete "func", we find the upper bound of all
4334 symbols that start with "func" by looking for where we'd insert
4335 the closest string that would follow "func" in lexicographical
4336 order. Usually, that's "func"-with-last-character-incremented,
4337 i.e. "fund". Mind non-ASCII characters, though. Usually those
4338 will be UTF-8 multi-byte sequences, but we can't be certain.
4339 Especially mind the 0xff character, which is a valid character in
4340 non-UTF-8 source character sets (e.g. Latin1 'ÿ'), and we can't
4341 rule out compilers allowing it in identifiers. Note that
4342 conveniently, strcmp/strcasecmp are specified to compare
4343 characters interpreted as unsigned char. So what we do is treat
4344 the whole string as a base 256 number composed of a sequence of
4345 base 256 "digits" and add 1 to it. I.e., adding 1 to 0xff wraps
4346 to 0, and carries 1 to the following more-significant position.
4347 If the very first character in SEARCH_NAME ends up incremented
4348 and carries/overflows, then the upper bound is the end of the
4349 list. The string after the empty string is also the empty
4350 string.
4351
4352 Some examples of this operation:
4353
4354 SEARCH_NAME => "+1" RESULT
4355
4356 "abc" => "abd"
4357 "ab\xff" => "ac"
4358 "\xff" "a" "\xff" => "\xff" "b"
4359 "\xff" => ""
4360 "\xff\xff" => ""
4361 "" => ""
4362
4363 Then, with these symbols for example:
4364
4365 func
4366 func1
4367 fund
4368
4369 completing "func" looks for symbols between "func" and
4370 "func"-with-last-character-incremented, i.e. "fund" (exclusive),
4371 which finds "func" and "func1", but not "fund".
4372
4373 And with:
4374
4375 funcÿ (Latin1 'ÿ' [0xff])
4376 funcÿ1
4377 fund
4378
4379 completing "funcÿ" looks for symbols between "funcÿ" and "fund"
4380 (exclusive), which finds "funcÿ" and "funcÿ1", but not "fund".
4381
4382 And with:
4383
4384 ÿÿ (Latin1 'ÿ' [0xff])
4385 ÿÿ1
4386
4387 completing "ÿ" or "ÿÿ" looks for symbols between between "ÿÿ" and
4388 the end of the list.
4389 */
4390 std::string after = search_name;
4391 while (!after.empty () && (unsigned char) after.back () == 0xff)
4392 after.pop_back ();
4393 if (!after.empty ())
4394 after.back () = (unsigned char) after.back () + 1;
4395 return after;
4396 }
4397
4398 /* See declaration. */
4399
4400 std::pair<std::vector<name_component>::const_iterator,
4401 std::vector<name_component>::const_iterator>
4402 mapped_index_base::find_name_components_bounds
4403 (const lookup_name_info &lookup_name_without_params) const
4404 {
4405 auto *name_cmp
4406 = this->name_components_casing == case_sensitive_on ? strcmp : strcasecmp;
4407
4408 const char *cplus
4409 = lookup_name_without_params.cplus ().lookup_name ().c_str ();
4410
4411 /* Comparison function object for lower_bound that matches against a
4412 given symbol name. */
4413 auto lookup_compare_lower = [&] (const name_component &elem,
4414 const char *name)
4415 {
4416 const char *elem_qualified = this->symbol_name_at (elem.idx);
4417 const char *elem_name = elem_qualified + elem.name_offset;
4418 return name_cmp (elem_name, name) < 0;
4419 };
4420
4421 /* Comparison function object for upper_bound that matches against a
4422 given symbol name. */
4423 auto lookup_compare_upper = [&] (const char *name,
4424 const name_component &elem)
4425 {
4426 const char *elem_qualified = this->symbol_name_at (elem.idx);
4427 const char *elem_name = elem_qualified + elem.name_offset;
4428 return name_cmp (name, elem_name) < 0;
4429 };
4430
4431 auto begin = this->name_components.begin ();
4432 auto end = this->name_components.end ();
4433
4434 /* Find the lower bound. */
4435 auto lower = [&] ()
4436 {
4437 if (lookup_name_without_params.completion_mode () && cplus[0] == '\0')
4438 return begin;
4439 else
4440 return std::lower_bound (begin, end, cplus, lookup_compare_lower);
4441 } ();
4442
4443 /* Find the upper bound. */
4444 auto upper = [&] ()
4445 {
4446 if (lookup_name_without_params.completion_mode ())
4447 {
4448 /* In completion mode, we want UPPER to point past all
4449 symbols names that have the same prefix. I.e., with
4450 these symbols, and completing "func":
4451
4452 function << lower bound
4453 function1
4454 other_function << upper bound
4455
4456 We find the upper bound by looking for the insertion
4457 point of "func"-with-last-character-incremented,
4458 i.e. "fund". */
4459 std::string after = make_sort_after_prefix_name (cplus);
4460 if (after.empty ())
4461 return end;
4462 return std::lower_bound (lower, end, after.c_str (),
4463 lookup_compare_lower);
4464 }
4465 else
4466 return std::upper_bound (lower, end, cplus, lookup_compare_upper);
4467 } ();
4468
4469 return {lower, upper};
4470 }
4471
4472 /* See declaration. */
4473
4474 void
4475 mapped_index_base::build_name_components ()
4476 {
4477 if (!this->name_components.empty ())
4478 return;
4479
4480 this->name_components_casing = case_sensitivity;
4481 auto *name_cmp
4482 = this->name_components_casing == case_sensitive_on ? strcmp : strcasecmp;
4483
4484 /* The code below only knows how to break apart components of C++
4485 symbol names (and other languages that use '::' as
4486 namespace/module separator). If we add support for wild matching
4487 to some language that uses some other operator (E.g., Ada, Go and
4488 D use '.'), then we'll need to try splitting the symbol name
4489 according to that language too. Note that Ada does support wild
4490 matching, but doesn't currently support .gdb_index. */
4491 auto count = this->symbol_name_count ();
4492 for (offset_type idx = 0; idx < count; idx++)
4493 {
4494 if (this->symbol_name_slot_invalid (idx))
4495 continue;
4496
4497 const char *name = this->symbol_name_at (idx);
4498
4499 /* Add each name component to the name component table. */
4500 unsigned int previous_len = 0;
4501 for (unsigned int current_len = cp_find_first_component (name);
4502 name[current_len] != '\0';
4503 current_len += cp_find_first_component (name + current_len))
4504 {
4505 gdb_assert (name[current_len] == ':');
4506 this->name_components.push_back ({previous_len, idx});
4507 /* Skip the '::'. */
4508 current_len += 2;
4509 previous_len = current_len;
4510 }
4511 this->name_components.push_back ({previous_len, idx});
4512 }
4513
4514 /* Sort name_components elements by name. */
4515 auto name_comp_compare = [&] (const name_component &left,
4516 const name_component &right)
4517 {
4518 const char *left_qualified = this->symbol_name_at (left.idx);
4519 const char *right_qualified = this->symbol_name_at (right.idx);
4520
4521 const char *left_name = left_qualified + left.name_offset;
4522 const char *right_name = right_qualified + right.name_offset;
4523
4524 return name_cmp (left_name, right_name) < 0;
4525 };
4526
4527 std::sort (this->name_components.begin (),
4528 this->name_components.end (),
4529 name_comp_compare);
4530 }
4531
4532 /* Helper for dw2_expand_symtabs_matching that works with a
4533 mapped_index_base instead of the containing objfile. This is split
4534 to a separate function in order to be able to unit test the
4535 name_components matching using a mock mapped_index_base. For each
4536 symbol name that matches, calls MATCH_CALLBACK, passing it the
4537 symbol's index in the mapped_index_base symbol table. */
4538
4539 static void
4540 dw2_expand_symtabs_matching_symbol
4541 (mapped_index_base &index,
4542 const lookup_name_info &lookup_name_in,
4543 gdb::function_view<expand_symtabs_symbol_matcher_ftype> symbol_matcher,
4544 enum search_domain kind,
4545 gdb::function_view<void (offset_type)> match_callback)
4546 {
4547 lookup_name_info lookup_name_without_params
4548 = lookup_name_in.make_ignore_params ();
4549 gdb_index_symbol_name_matcher lookup_name_matcher
4550 (lookup_name_without_params);
4551
4552 /* Build the symbol name component sorted vector, if we haven't
4553 yet. */
4554 index.build_name_components ();
4555
4556 auto bounds = index.find_name_components_bounds (lookup_name_without_params);
4557
4558 /* Now for each symbol name in range, check to see if we have a name
4559 match, and if so, call the MATCH_CALLBACK callback. */
4560
4561 /* The same symbol may appear more than once in the range though.
4562 E.g., if we're looking for symbols that complete "w", and we have
4563 a symbol named "w1::w2", we'll find the two name components for
4564 that same symbol in the range. To be sure we only call the
4565 callback once per symbol, we first collect the symbol name
4566 indexes that matched in a temporary vector and ignore
4567 duplicates. */
4568 std::vector<offset_type> matches;
4569 matches.reserve (std::distance (bounds.first, bounds.second));
4570
4571 for (; bounds.first != bounds.second; ++bounds.first)
4572 {
4573 const char *qualified = index.symbol_name_at (bounds.first->idx);
4574
4575 if (!lookup_name_matcher.matches (qualified)
4576 || (symbol_matcher != NULL && !symbol_matcher (qualified)))
4577 continue;
4578
4579 matches.push_back (bounds.first->idx);
4580 }
4581
4582 std::sort (matches.begin (), matches.end ());
4583
4584 /* Finally call the callback, once per match. */
4585 ULONGEST prev = -1;
4586 for (offset_type idx : matches)
4587 {
4588 if (prev != idx)
4589 {
4590 match_callback (idx);
4591 prev = idx;
4592 }
4593 }
4594
4595 /* Above we use a type wider than idx's for 'prev', since 0 and
4596 (offset_type)-1 are both possible values. */
4597 static_assert (sizeof (prev) > sizeof (offset_type), "");
4598 }
4599
4600 #if GDB_SELF_TEST
4601
4602 namespace selftests { namespace dw2_expand_symtabs_matching {
4603
4604 /* A mock .gdb_index/.debug_names-like name index table, enough to
4605 exercise dw2_expand_symtabs_matching_symbol, which works with the
4606 mapped_index_base interface. Builds an index from the symbol list
4607 passed as parameter to the constructor. */
4608 class mock_mapped_index : public mapped_index_base
4609 {
4610 public:
4611 mock_mapped_index (gdb::array_view<const char *> symbols)
4612 : m_symbol_table (symbols)
4613 {}
4614
4615 DISABLE_COPY_AND_ASSIGN (mock_mapped_index);
4616
4617 /* Return the number of names in the symbol table. */
4618 virtual size_t symbol_name_count () const
4619 {
4620 return m_symbol_table.size ();
4621 }
4622
4623 /* Get the name of the symbol at IDX in the symbol table. */
4624 virtual const char *symbol_name_at (offset_type idx) const
4625 {
4626 return m_symbol_table[idx];
4627 }
4628
4629 private:
4630 gdb::array_view<const char *> m_symbol_table;
4631 };
4632
4633 /* Convenience function that converts a NULL pointer to a "<null>"
4634 string, to pass to print routines. */
4635
4636 static const char *
4637 string_or_null (const char *str)
4638 {
4639 return str != NULL ? str : "<null>";
4640 }
4641
4642 /* Check if a lookup_name_info built from
4643 NAME/MATCH_TYPE/COMPLETION_MODE matches the symbols in the mock
4644 index. EXPECTED_LIST is the list of expected matches, in expected
4645 matching order. If no match expected, then an empty list is
4646 specified. Returns true on success. On failure prints a warning
4647 indicating the file:line that failed, and returns false. */
4648
4649 static bool
4650 check_match (const char *file, int line,
4651 mock_mapped_index &mock_index,
4652 const char *name, symbol_name_match_type match_type,
4653 bool completion_mode,
4654 std::initializer_list<const char *> expected_list)
4655 {
4656 lookup_name_info lookup_name (name, match_type, completion_mode);
4657
4658 bool matched = true;
4659
4660 auto mismatch = [&] (const char *expected_str,
4661 const char *got)
4662 {
4663 warning (_("%s:%d: match_type=%s, looking-for=\"%s\", "
4664 "expected=\"%s\", got=\"%s\"\n"),
4665 file, line,
4666 (match_type == symbol_name_match_type::FULL
4667 ? "FULL" : "WILD"),
4668 name, string_or_null (expected_str), string_or_null (got));
4669 matched = false;
4670 };
4671
4672 auto expected_it = expected_list.begin ();
4673 auto expected_end = expected_list.end ();
4674
4675 dw2_expand_symtabs_matching_symbol (mock_index, lookup_name,
4676 NULL, ALL_DOMAIN,
4677 [&] (offset_type idx)
4678 {
4679 const char *matched_name = mock_index.symbol_name_at (idx);
4680 const char *expected_str
4681 = expected_it == expected_end ? NULL : *expected_it++;
4682
4683 if (expected_str == NULL || strcmp (expected_str, matched_name) != 0)
4684 mismatch (expected_str, matched_name);
4685 });
4686
4687 const char *expected_str
4688 = expected_it == expected_end ? NULL : *expected_it++;
4689 if (expected_str != NULL)
4690 mismatch (expected_str, NULL);
4691
4692 return matched;
4693 }
4694
4695 /* The symbols added to the mock mapped_index for testing (in
4696 canonical form). */
4697 static const char *test_symbols[] = {
4698 "function",
4699 "std::bar",
4700 "std::zfunction",
4701 "std::zfunction2",
4702 "w1::w2",
4703 "ns::foo<char*>",
4704 "ns::foo<int>",
4705 "ns::foo<long>",
4706 "ns2::tmpl<int>::foo2",
4707 "(anonymous namespace)::A::B::C",
4708
4709 /* These are used to check that the increment-last-char in the
4710 matching algorithm for completion doesn't match "t1_fund" when
4711 completing "t1_func". */
4712 "t1_func",
4713 "t1_func1",
4714 "t1_fund",
4715 "t1_fund1",
4716
4717 /* A UTF-8 name with multi-byte sequences to make sure that
4718 cp-name-parser understands this as a single identifier ("função"
4719 is "function" in PT). */
4720 u8"u8função",
4721
4722 /* \377 (0xff) is Latin1 'ÿ'. */
4723 "yfunc\377",
4724
4725 /* \377 (0xff) is Latin1 'ÿ'. */
4726 "\377",
4727 "\377\377123",
4728
4729 /* A name with all sorts of complications. Starts with "z" to make
4730 it easier for the completion tests below. */
4731 #define Z_SYM_NAME \
4732 "z::std::tuple<(anonymous namespace)::ui*, std::bar<(anonymous namespace)::ui> >" \
4733 "::tuple<(anonymous namespace)::ui*, " \
4734 "std::default_delete<(anonymous namespace)::ui>, void>"
4735
4736 Z_SYM_NAME
4737 };
4738
4739 /* Returns true if the mapped_index_base::find_name_component_bounds
4740 method finds EXPECTED_SYMS in INDEX when looking for SEARCH_NAME,
4741 in completion mode. */
4742
4743 static bool
4744 check_find_bounds_finds (mapped_index_base &index,
4745 const char *search_name,
4746 gdb::array_view<const char *> expected_syms)
4747 {
4748 lookup_name_info lookup_name (search_name,
4749 symbol_name_match_type::FULL, true);
4750
4751 auto bounds = index.find_name_components_bounds (lookup_name);
4752
4753 size_t distance = std::distance (bounds.first, bounds.second);
4754 if (distance != expected_syms.size ())
4755 return false;
4756
4757 for (size_t exp_elem = 0; exp_elem < distance; exp_elem++)
4758 {
4759 auto nc_elem = bounds.first + exp_elem;
4760 const char *qualified = index.symbol_name_at (nc_elem->idx);
4761 if (strcmp (qualified, expected_syms[exp_elem]) != 0)
4762 return false;
4763 }
4764
4765 return true;
4766 }
4767
4768 /* Test the lower-level mapped_index::find_name_component_bounds
4769 method. */
4770
4771 static void
4772 test_mapped_index_find_name_component_bounds ()
4773 {
4774 mock_mapped_index mock_index (test_symbols);
4775
4776 mock_index.build_name_components ();
4777
4778 /* Test the lower-level mapped_index::find_name_component_bounds
4779 method in completion mode. */
4780 {
4781 static const char *expected_syms[] = {
4782 "t1_func",
4783 "t1_func1",
4784 };
4785
4786 SELF_CHECK (check_find_bounds_finds (mock_index,
4787 "t1_func", expected_syms));
4788 }
4789
4790 /* Check that the increment-last-char in the name matching algorithm
4791 for completion doesn't get confused with Ansi1 'ÿ' / 0xff. */
4792 {
4793 static const char *expected_syms1[] = {
4794 "\377",
4795 "\377\377123",
4796 };
4797 SELF_CHECK (check_find_bounds_finds (mock_index,
4798 "\377", expected_syms1));
4799
4800 static const char *expected_syms2[] = {
4801 "\377\377123",
4802 };
4803 SELF_CHECK (check_find_bounds_finds (mock_index,
4804 "\377\377", expected_syms2));
4805 }
4806 }
4807
4808 /* Test dw2_expand_symtabs_matching_symbol. */
4809
4810 static void
4811 test_dw2_expand_symtabs_matching_symbol ()
4812 {
4813 mock_mapped_index mock_index (test_symbols);
4814
4815 /* We let all tests run until the end even if some fails, for debug
4816 convenience. */
4817 bool any_mismatch = false;
4818
4819 /* Create the expected symbols list (an initializer_list). Needed
4820 because lists have commas, and we need to pass them to CHECK,
4821 which is a macro. */
4822 #define EXPECT(...) { __VA_ARGS__ }
4823
4824 /* Wrapper for check_match that passes down the current
4825 __FILE__/__LINE__. */
4826 #define CHECK_MATCH(NAME, MATCH_TYPE, COMPLETION_MODE, EXPECTED_LIST) \
4827 any_mismatch |= !check_match (__FILE__, __LINE__, \
4828 mock_index, \
4829 NAME, MATCH_TYPE, COMPLETION_MODE, \
4830 EXPECTED_LIST)
4831
4832 /* Identity checks. */
4833 for (const char *sym : test_symbols)
4834 {
4835 /* Should be able to match all existing symbols. */
4836 CHECK_MATCH (sym, symbol_name_match_type::FULL, false,
4837 EXPECT (sym));
4838
4839 /* Should be able to match all existing symbols with
4840 parameters. */
4841 std::string with_params = std::string (sym) + "(int)";
4842 CHECK_MATCH (with_params.c_str (), symbol_name_match_type::FULL, false,
4843 EXPECT (sym));
4844
4845 /* Should be able to match all existing symbols with
4846 parameters and qualifiers. */
4847 with_params = std::string (sym) + " ( int ) const";
4848 CHECK_MATCH (with_params.c_str (), symbol_name_match_type::FULL, false,
4849 EXPECT (sym));
4850
4851 /* This should really find sym, but cp-name-parser.y doesn't
4852 know about lvalue/rvalue qualifiers yet. */
4853 with_params = std::string (sym) + " ( int ) &&";
4854 CHECK_MATCH (with_params.c_str (), symbol_name_match_type::FULL, false,
4855 {});
4856 }
4857
4858 /* Check that the name matching algorithm for completion doesn't get
4859 confused with Latin1 'ÿ' / 0xff. */
4860 {
4861 static const char str[] = "\377";
4862 CHECK_MATCH (str, symbol_name_match_type::FULL, true,
4863 EXPECT ("\377", "\377\377123"));
4864 }
4865
4866 /* Check that the increment-last-char in the matching algorithm for
4867 completion doesn't match "t1_fund" when completing "t1_func". */
4868 {
4869 static const char str[] = "t1_func";
4870 CHECK_MATCH (str, symbol_name_match_type::FULL, true,
4871 EXPECT ("t1_func", "t1_func1"));
4872 }
4873
4874 /* Check that completion mode works at each prefix of the expected
4875 symbol name. */
4876 {
4877 static const char str[] = "function(int)";
4878 size_t len = strlen (str);
4879 std::string lookup;
4880
4881 for (size_t i = 1; i < len; i++)
4882 {
4883 lookup.assign (str, i);
4884 CHECK_MATCH (lookup.c_str (), symbol_name_match_type::FULL, true,
4885 EXPECT ("function"));
4886 }
4887 }
4888
4889 /* While "w" is a prefix of both components, the match function
4890 should still only be called once. */
4891 {
4892 CHECK_MATCH ("w", symbol_name_match_type::FULL, true,
4893 EXPECT ("w1::w2"));
4894 CHECK_MATCH ("w", symbol_name_match_type::WILD, true,
4895 EXPECT ("w1::w2"));
4896 }
4897
4898 /* Same, with a "complicated" symbol. */
4899 {
4900 static const char str[] = Z_SYM_NAME;
4901 size_t len = strlen (str);
4902 std::string lookup;
4903
4904 for (size_t i = 1; i < len; i++)
4905 {
4906 lookup.assign (str, i);
4907 CHECK_MATCH (lookup.c_str (), symbol_name_match_type::FULL, true,
4908 EXPECT (Z_SYM_NAME));
4909 }
4910 }
4911
4912 /* In FULL mode, an incomplete symbol doesn't match. */
4913 {
4914 CHECK_MATCH ("std::zfunction(int", symbol_name_match_type::FULL, false,
4915 {});
4916 }
4917
4918 /* A complete symbol with parameters matches any overload, since the
4919 index has no overload info. */
4920 {
4921 CHECK_MATCH ("std::zfunction(int)", symbol_name_match_type::FULL, true,
4922 EXPECT ("std::zfunction", "std::zfunction2"));
4923 CHECK_MATCH ("zfunction(int)", symbol_name_match_type::WILD, true,
4924 EXPECT ("std::zfunction", "std::zfunction2"));
4925 CHECK_MATCH ("zfunc", symbol_name_match_type::WILD, true,
4926 EXPECT ("std::zfunction", "std::zfunction2"));
4927 }
4928
4929 /* Check that whitespace is ignored appropriately. A symbol with a
4930 template argument list. */
4931 {
4932 static const char expected[] = "ns::foo<int>";
4933 CHECK_MATCH ("ns :: foo < int > ", symbol_name_match_type::FULL, false,
4934 EXPECT (expected));
4935 CHECK_MATCH ("foo < int > ", symbol_name_match_type::WILD, false,
4936 EXPECT (expected));
4937 }
4938
4939 /* Check that whitespace is ignored appropriately. A symbol with a
4940 template argument list that includes a pointer. */
4941 {
4942 static const char expected[] = "ns::foo<char*>";
4943 /* Try both completion and non-completion modes. */
4944 static const bool completion_mode[2] = {false, true};
4945 for (size_t i = 0; i < 2; i++)
4946 {
4947 CHECK_MATCH ("ns :: foo < char * >", symbol_name_match_type::FULL,
4948 completion_mode[i], EXPECT (expected));
4949 CHECK_MATCH ("foo < char * >", symbol_name_match_type::WILD,
4950 completion_mode[i], EXPECT (expected));
4951
4952 CHECK_MATCH ("ns :: foo < char * > (int)", symbol_name_match_type::FULL,
4953 completion_mode[i], EXPECT (expected));
4954 CHECK_MATCH ("foo < char * > (int)", symbol_name_match_type::WILD,
4955 completion_mode[i], EXPECT (expected));
4956 }
4957 }
4958
4959 {
4960 /* Check method qualifiers are ignored. */
4961 static const char expected[] = "ns::foo<char*>";
4962 CHECK_MATCH ("ns :: foo < char * > ( int ) const",
4963 symbol_name_match_type::FULL, true, EXPECT (expected));
4964 CHECK_MATCH ("ns :: foo < char * > ( int ) &&",
4965 symbol_name_match_type::FULL, true, EXPECT (expected));
4966 CHECK_MATCH ("foo < char * > ( int ) const",
4967 symbol_name_match_type::WILD, true, EXPECT (expected));
4968 CHECK_MATCH ("foo < char * > ( int ) &&",
4969 symbol_name_match_type::WILD, true, EXPECT (expected));
4970 }
4971
4972 /* Test lookup names that don't match anything. */
4973 {
4974 CHECK_MATCH ("bar2", symbol_name_match_type::WILD, false,
4975 {});
4976
4977 CHECK_MATCH ("doesntexist", symbol_name_match_type::FULL, false,
4978 {});
4979 }
4980
4981 /* Some wild matching tests, exercising "(anonymous namespace)",
4982 which should not be confused with a parameter list. */
4983 {
4984 static const char *syms[] = {
4985 "A::B::C",
4986 "B::C",
4987 "C",
4988 "A :: B :: C ( int )",
4989 "B :: C ( int )",
4990 "C ( int )",
4991 };
4992
4993 for (const char *s : syms)
4994 {
4995 CHECK_MATCH (s, symbol_name_match_type::WILD, false,
4996 EXPECT ("(anonymous namespace)::A::B::C"));
4997 }
4998 }
4999
5000 {
5001 static const char expected[] = "ns2::tmpl<int>::foo2";
5002 CHECK_MATCH ("tmp", symbol_name_match_type::WILD, true,
5003 EXPECT (expected));
5004 CHECK_MATCH ("tmpl<", symbol_name_match_type::WILD, true,
5005 EXPECT (expected));
5006 }
5007
5008 SELF_CHECK (!any_mismatch);
5009
5010 #undef EXPECT
5011 #undef CHECK_MATCH
5012 }
5013
5014 static void
5015 run_test ()
5016 {
5017 test_mapped_index_find_name_component_bounds ();
5018 test_dw2_expand_symtabs_matching_symbol ();
5019 }
5020
5021 }} // namespace selftests::dw2_expand_symtabs_matching
5022
5023 #endif /* GDB_SELF_TEST */
5024
5025 /* If FILE_MATCHER is NULL or if PER_CU has
5026 dwarf2_per_cu_quick_data::MARK set (see
5027 dw_expand_symtabs_matching_file_matcher), expand the CU and call
5028 EXPANSION_NOTIFY on it. */
5029
5030 static void
5031 dw2_expand_symtabs_matching_one
5032 (struct dwarf2_per_cu_data *per_cu,
5033 gdb::function_view<expand_symtabs_file_matcher_ftype> file_matcher,
5034 gdb::function_view<expand_symtabs_exp_notify_ftype> expansion_notify)
5035 {
5036 if (file_matcher == NULL || per_cu->v.quick->mark)
5037 {
5038 bool symtab_was_null
5039 = (per_cu->v.quick->compunit_symtab == NULL);
5040
5041 dw2_instantiate_symtab (per_cu);
5042
5043 if (expansion_notify != NULL
5044 && symtab_was_null
5045 && per_cu->v.quick->compunit_symtab != NULL)
5046 expansion_notify (per_cu->v.quick->compunit_symtab);
5047 }
5048 }
5049
5050 /* Helper for dw2_expand_matching symtabs. Called on each symbol
5051 matched, to expand corresponding CUs that were marked. IDX is the
5052 index of the symbol name that matched. */
5053
5054 static void
5055 dw2_expand_marked_cus
5056 (struct dwarf2_per_objfile *dwarf2_per_objfile, offset_type idx,
5057 gdb::function_view<expand_symtabs_file_matcher_ftype> file_matcher,
5058 gdb::function_view<expand_symtabs_exp_notify_ftype> expansion_notify,
5059 search_domain kind)
5060 {
5061 offset_type *vec, vec_len, vec_idx;
5062 bool global_seen = false;
5063 mapped_index &index = *dwarf2_per_objfile->index_table;
5064
5065 vec = (offset_type *) (index.constant_pool
5066 + MAYBE_SWAP (index.symbol_table[idx].vec));
5067 vec_len = MAYBE_SWAP (vec[0]);
5068 for (vec_idx = 0; vec_idx < vec_len; ++vec_idx)
5069 {
5070 struct dwarf2_per_cu_data *per_cu;
5071 offset_type cu_index_and_attrs = MAYBE_SWAP (vec[vec_idx + 1]);
5072 /* This value is only valid for index versions >= 7. */
5073 int is_static = GDB_INDEX_SYMBOL_STATIC_VALUE (cu_index_and_attrs);
5074 gdb_index_symbol_kind symbol_kind =
5075 GDB_INDEX_SYMBOL_KIND_VALUE (cu_index_and_attrs);
5076 int cu_index = GDB_INDEX_CU_VALUE (cu_index_and_attrs);
5077 /* Only check the symbol attributes if they're present.
5078 Indices prior to version 7 don't record them,
5079 and indices >= 7 may elide them for certain symbols
5080 (gold does this). */
5081 int attrs_valid =
5082 (index.version >= 7
5083 && symbol_kind != GDB_INDEX_SYMBOL_KIND_NONE);
5084
5085 /* Work around gold/15646. */
5086 if (attrs_valid)
5087 {
5088 if (!is_static && global_seen)
5089 continue;
5090 if (!is_static)
5091 global_seen = true;
5092 }
5093
5094 /* Only check the symbol's kind if it has one. */
5095 if (attrs_valid)
5096 {
5097 switch (kind)
5098 {
5099 case VARIABLES_DOMAIN:
5100 if (symbol_kind != GDB_INDEX_SYMBOL_KIND_VARIABLE)
5101 continue;
5102 break;
5103 case FUNCTIONS_DOMAIN:
5104 if (symbol_kind != GDB_INDEX_SYMBOL_KIND_FUNCTION)
5105 continue;
5106 break;
5107 case TYPES_DOMAIN:
5108 if (symbol_kind != GDB_INDEX_SYMBOL_KIND_TYPE)
5109 continue;
5110 break;
5111 default:
5112 break;
5113 }
5114 }
5115
5116 /* Don't crash on bad data. */
5117 if (cu_index >= (dwarf2_per_objfile->n_comp_units
5118 + dwarf2_per_objfile->n_type_units))
5119 {
5120 complaint (&symfile_complaints,
5121 _(".gdb_index entry has bad CU index"
5122 " [in module %s]"),
5123 objfile_name (dwarf2_per_objfile->objfile));
5124 continue;
5125 }
5126
5127 per_cu = dw2_get_cutu (dwarf2_per_objfile, cu_index);
5128 dw2_expand_symtabs_matching_one (per_cu, file_matcher,
5129 expansion_notify);
5130 }
5131 }
5132
5133 /* If FILE_MATCHER is non-NULL, set all the
5134 dwarf2_per_cu_quick_data::MARK of the current DWARF2_PER_OBJFILE
5135 that match FILE_MATCHER. */
5136
5137 static void
5138 dw_expand_symtabs_matching_file_matcher
5139 (struct dwarf2_per_objfile *dwarf2_per_objfile,
5140 gdb::function_view<expand_symtabs_file_matcher_ftype> file_matcher)
5141 {
5142 if (file_matcher == NULL)
5143 return;
5144
5145 objfile *const objfile = dwarf2_per_objfile->objfile;
5146
5147 htab_up visited_found (htab_create_alloc (10, htab_hash_pointer,
5148 htab_eq_pointer,
5149 NULL, xcalloc, xfree));
5150 htab_up visited_not_found (htab_create_alloc (10, htab_hash_pointer,
5151 htab_eq_pointer,
5152 NULL, xcalloc, xfree));
5153
5154 /* The rule is CUs specify all the files, including those used by
5155 any TU, so there's no need to scan TUs here. */
5156
5157 for (int i = 0; i < dwarf2_per_objfile->n_comp_units; ++i)
5158 {
5159 int j;
5160 struct dwarf2_per_cu_data *per_cu = dw2_get_cu (dwarf2_per_objfile, i);
5161 struct quick_file_names *file_data;
5162 void **slot;
5163
5164 QUIT;
5165
5166 per_cu->v.quick->mark = 0;
5167
5168 /* We only need to look at symtabs not already expanded. */
5169 if (per_cu->v.quick->compunit_symtab)
5170 continue;
5171
5172 file_data = dw2_get_file_names (per_cu);
5173 if (file_data == NULL)
5174 continue;
5175
5176 if (htab_find (visited_not_found.get (), file_data) != NULL)
5177 continue;
5178 else if (htab_find (visited_found.get (), file_data) != NULL)
5179 {
5180 per_cu->v.quick->mark = 1;
5181 continue;
5182 }
5183
5184 for (j = 0; j < file_data->num_file_names; ++j)
5185 {
5186 const char *this_real_name;
5187
5188 if (file_matcher (file_data->file_names[j], false))
5189 {
5190 per_cu->v.quick->mark = 1;
5191 break;
5192 }
5193
5194 /* Before we invoke realpath, which can get expensive when many
5195 files are involved, do a quick comparison of the basenames. */
5196 if (!basenames_may_differ
5197 && !file_matcher (lbasename (file_data->file_names[j]),
5198 true))
5199 continue;
5200
5201 this_real_name = dw2_get_real_path (objfile, file_data, j);
5202 if (file_matcher (this_real_name, false))
5203 {
5204 per_cu->v.quick->mark = 1;
5205 break;
5206 }
5207 }
5208
5209 slot = htab_find_slot (per_cu->v.quick->mark
5210 ? visited_found.get ()
5211 : visited_not_found.get (),
5212 file_data, INSERT);
5213 *slot = file_data;
5214 }
5215 }
5216
5217 static void
5218 dw2_expand_symtabs_matching
5219 (struct objfile *objfile,
5220 gdb::function_view<expand_symtabs_file_matcher_ftype> file_matcher,
5221 const lookup_name_info &lookup_name,
5222 gdb::function_view<expand_symtabs_symbol_matcher_ftype> symbol_matcher,
5223 gdb::function_view<expand_symtabs_exp_notify_ftype> expansion_notify,
5224 enum search_domain kind)
5225 {
5226 struct dwarf2_per_objfile *dwarf2_per_objfile
5227 = get_dwarf2_per_objfile (objfile);
5228
5229 /* index_table is NULL if OBJF_READNOW. */
5230 if (!dwarf2_per_objfile->index_table)
5231 return;
5232
5233 dw_expand_symtabs_matching_file_matcher (dwarf2_per_objfile, file_matcher);
5234
5235 mapped_index &index = *dwarf2_per_objfile->index_table;
5236
5237 dw2_expand_symtabs_matching_symbol (index, lookup_name,
5238 symbol_matcher,
5239 kind, [&] (offset_type idx)
5240 {
5241 dw2_expand_marked_cus (dwarf2_per_objfile, idx, file_matcher,
5242 expansion_notify, kind);
5243 });
5244 }
5245
5246 /* A helper for dw2_find_pc_sect_compunit_symtab which finds the most specific
5247 symtab. */
5248
5249 static struct compunit_symtab *
5250 recursively_find_pc_sect_compunit_symtab (struct compunit_symtab *cust,
5251 CORE_ADDR pc)
5252 {
5253 int i;
5254
5255 if (COMPUNIT_BLOCKVECTOR (cust) != NULL
5256 && blockvector_contains_pc (COMPUNIT_BLOCKVECTOR (cust), pc))
5257 return cust;
5258
5259 if (cust->includes == NULL)
5260 return NULL;
5261
5262 for (i = 0; cust->includes[i]; ++i)
5263 {
5264 struct compunit_symtab *s = cust->includes[i];
5265
5266 s = recursively_find_pc_sect_compunit_symtab (s, pc);
5267 if (s != NULL)
5268 return s;
5269 }
5270
5271 return NULL;
5272 }
5273
5274 static struct compunit_symtab *
5275 dw2_find_pc_sect_compunit_symtab (struct objfile *objfile,
5276 struct bound_minimal_symbol msymbol,
5277 CORE_ADDR pc,
5278 struct obj_section *section,
5279 int warn_if_readin)
5280 {
5281 struct dwarf2_per_cu_data *data;
5282 struct compunit_symtab *result;
5283
5284 if (!objfile->psymtabs_addrmap)
5285 return NULL;
5286
5287 data = (struct dwarf2_per_cu_data *) addrmap_find (objfile->psymtabs_addrmap,
5288 pc);
5289 if (!data)
5290 return NULL;
5291
5292 if (warn_if_readin && data->v.quick->compunit_symtab)
5293 warning (_("(Internal error: pc %s in read in CU, but not in symtab.)"),
5294 paddress (get_objfile_arch (objfile), pc));
5295
5296 result
5297 = recursively_find_pc_sect_compunit_symtab (dw2_instantiate_symtab (data),
5298 pc);
5299 gdb_assert (result != NULL);
5300 return result;
5301 }
5302
5303 static void
5304 dw2_map_symbol_filenames (struct objfile *objfile, symbol_filename_ftype *fun,
5305 void *data, int need_fullname)
5306 {
5307 struct dwarf2_per_objfile *dwarf2_per_objfile
5308 = get_dwarf2_per_objfile (objfile);
5309
5310 if (!dwarf2_per_objfile->filenames_cache)
5311 {
5312 dwarf2_per_objfile->filenames_cache.emplace ();
5313
5314 htab_up visited (htab_create_alloc (10,
5315 htab_hash_pointer, htab_eq_pointer,
5316 NULL, xcalloc, xfree));
5317
5318 /* The rule is CUs specify all the files, including those used
5319 by any TU, so there's no need to scan TUs here. We can
5320 ignore file names coming from already-expanded CUs. */
5321
5322 for (int i = 0; i < dwarf2_per_objfile->n_comp_units; ++i)
5323 {
5324 dwarf2_per_cu_data *per_cu = dw2_get_cutu (dwarf2_per_objfile, i);
5325
5326 if (per_cu->v.quick->compunit_symtab)
5327 {
5328 void **slot = htab_find_slot (visited.get (),
5329 per_cu->v.quick->file_names,
5330 INSERT);
5331
5332 *slot = per_cu->v.quick->file_names;
5333 }
5334 }
5335
5336 for (int i = 0; i < dwarf2_per_objfile->n_comp_units; ++i)
5337 {
5338 dwarf2_per_cu_data *per_cu = dw2_get_cu (dwarf2_per_objfile, i);
5339 struct quick_file_names *file_data;
5340 void **slot;
5341
5342 /* We only need to look at symtabs not already expanded. */
5343 if (per_cu->v.quick->compunit_symtab)
5344 continue;
5345
5346 file_data = dw2_get_file_names (per_cu);
5347 if (file_data == NULL)
5348 continue;
5349
5350 slot = htab_find_slot (visited.get (), file_data, INSERT);
5351 if (*slot)
5352 {
5353 /* Already visited. */
5354 continue;
5355 }
5356 *slot = file_data;
5357
5358 for (int j = 0; j < file_data->num_file_names; ++j)
5359 {
5360 const char *filename = file_data->file_names[j];
5361 dwarf2_per_objfile->filenames_cache->seen (filename);
5362 }
5363 }
5364 }
5365
5366 dwarf2_per_objfile->filenames_cache->traverse ([&] (const char *filename)
5367 {
5368 gdb::unique_xmalloc_ptr<char> this_real_name;
5369
5370 if (need_fullname)
5371 this_real_name = gdb_realpath (filename);
5372 (*fun) (filename, this_real_name.get (), data);
5373 });
5374 }
5375
5376 static int
5377 dw2_has_symbols (struct objfile *objfile)
5378 {
5379 return 1;
5380 }
5381
5382 const struct quick_symbol_functions dwarf2_gdb_index_functions =
5383 {
5384 dw2_has_symbols,
5385 dw2_find_last_source_symtab,
5386 dw2_forget_cached_source_info,
5387 dw2_map_symtabs_matching_filename,
5388 dw2_lookup_symbol,
5389 dw2_print_stats,
5390 dw2_dump,
5391 dw2_relocate,
5392 dw2_expand_symtabs_for_function,
5393 dw2_expand_all_symtabs,
5394 dw2_expand_symtabs_with_fullname,
5395 dw2_map_matching_symbols,
5396 dw2_expand_symtabs_matching,
5397 dw2_find_pc_sect_compunit_symtab,
5398 NULL,
5399 dw2_map_symbol_filenames
5400 };
5401
5402 /* DWARF-5 debug_names reader. */
5403
5404 /* DWARF-5 augmentation string for GDB's DW_IDX_GNU_* extension. */
5405 static const gdb_byte dwarf5_augmentation[] = { 'G', 'D', 'B', 0 };
5406
5407 /* A helper function that reads the .debug_names section in SECTION
5408 and fills in MAP. FILENAME is the name of the file containing the
5409 section; it is used for error reporting.
5410
5411 Returns true if all went well, false otherwise. */
5412
5413 static bool
5414 read_debug_names_from_section (struct objfile *objfile,
5415 const char *filename,
5416 struct dwarf2_section_info *section,
5417 mapped_debug_names &map)
5418 {
5419 if (dwarf2_section_empty_p (section))
5420 return false;
5421
5422 /* Older elfutils strip versions could keep the section in the main
5423 executable while splitting it for the separate debug info file. */
5424 if ((get_section_flags (section) & SEC_HAS_CONTENTS) == 0)
5425 return false;
5426
5427 dwarf2_read_section (objfile, section);
5428
5429 map.dwarf5_byte_order = gdbarch_byte_order (get_objfile_arch (objfile));
5430
5431 const gdb_byte *addr = section->buffer;
5432
5433 bfd *const abfd = get_section_bfd_owner (section);
5434
5435 unsigned int bytes_read;
5436 LONGEST length = read_initial_length (abfd, addr, &bytes_read);
5437 addr += bytes_read;
5438
5439 map.dwarf5_is_dwarf64 = bytes_read != 4;
5440 map.offset_size = map.dwarf5_is_dwarf64 ? 8 : 4;
5441 if (bytes_read + length != section->size)
5442 {
5443 /* There may be multiple per-CU indices. */
5444 warning (_("Section .debug_names in %s length %s does not match "
5445 "section length %s, ignoring .debug_names."),
5446 filename, plongest (bytes_read + length),
5447 pulongest (section->size));
5448 return false;
5449 }
5450
5451 /* The version number. */
5452 uint16_t version = read_2_bytes (abfd, addr);
5453 addr += 2;
5454 if (version != 5)
5455 {
5456 warning (_("Section .debug_names in %s has unsupported version %d, "
5457 "ignoring .debug_names."),
5458 filename, version);
5459 return false;
5460 }
5461
5462 /* Padding. */
5463 uint16_t padding = read_2_bytes (abfd, addr);
5464 addr += 2;
5465 if (padding != 0)
5466 {
5467 warning (_("Section .debug_names in %s has unsupported padding %d, "
5468 "ignoring .debug_names."),
5469 filename, padding);
5470 return false;
5471 }
5472
5473 /* comp_unit_count - The number of CUs in the CU list. */
5474 map.cu_count = read_4_bytes (abfd, addr);
5475 addr += 4;
5476
5477 /* local_type_unit_count - The number of TUs in the local TU
5478 list. */
5479 map.tu_count = read_4_bytes (abfd, addr);
5480 addr += 4;
5481
5482 /* foreign_type_unit_count - The number of TUs in the foreign TU
5483 list. */
5484 uint32_t foreign_tu_count = read_4_bytes (abfd, addr);
5485 addr += 4;
5486 if (foreign_tu_count != 0)
5487 {
5488 warning (_("Section .debug_names in %s has unsupported %lu foreign TUs, "
5489 "ignoring .debug_names."),
5490 filename, static_cast<unsigned long> (foreign_tu_count));
5491 return false;
5492 }
5493
5494 /* bucket_count - The number of hash buckets in the hash lookup
5495 table. */
5496 map.bucket_count = read_4_bytes (abfd, addr);
5497 addr += 4;
5498
5499 /* name_count - The number of unique names in the index. */
5500 map.name_count = read_4_bytes (abfd, addr);
5501 addr += 4;
5502
5503 /* abbrev_table_size - The size in bytes of the abbreviations
5504 table. */
5505 uint32_t abbrev_table_size = read_4_bytes (abfd, addr);
5506 addr += 4;
5507
5508 /* augmentation_string_size - The size in bytes of the augmentation
5509 string. This value is rounded up to a multiple of 4. */
5510 uint32_t augmentation_string_size = read_4_bytes (abfd, addr);
5511 addr += 4;
5512 map.augmentation_is_gdb = ((augmentation_string_size
5513 == sizeof (dwarf5_augmentation))
5514 && memcmp (addr, dwarf5_augmentation,
5515 sizeof (dwarf5_augmentation)) == 0);
5516 augmentation_string_size += (-augmentation_string_size) & 3;
5517 addr += augmentation_string_size;
5518
5519 /* List of CUs */
5520 map.cu_table_reordered = addr;
5521 addr += map.cu_count * map.offset_size;
5522
5523 /* List of Local TUs */
5524 map.tu_table_reordered = addr;
5525 addr += map.tu_count * map.offset_size;
5526
5527 /* Hash Lookup Table */
5528 map.bucket_table_reordered = reinterpret_cast<const uint32_t *> (addr);
5529 addr += map.bucket_count * 4;
5530 map.hash_table_reordered = reinterpret_cast<const uint32_t *> (addr);
5531 addr += map.name_count * 4;
5532
5533 /* Name Table */
5534 map.name_table_string_offs_reordered = addr;
5535 addr += map.name_count * map.offset_size;
5536 map.name_table_entry_offs_reordered = addr;
5537 addr += map.name_count * map.offset_size;
5538
5539 const gdb_byte *abbrev_table_start = addr;
5540 for (;;)
5541 {
5542 unsigned int bytes_read;
5543 const ULONGEST index_num = read_unsigned_leb128 (abfd, addr, &bytes_read);
5544 addr += bytes_read;
5545 if (index_num == 0)
5546 break;
5547
5548 const auto insertpair
5549 = map.abbrev_map.emplace (index_num, mapped_debug_names::index_val ());
5550 if (!insertpair.second)
5551 {
5552 warning (_("Section .debug_names in %s has duplicate index %s, "
5553 "ignoring .debug_names."),
5554 filename, pulongest (index_num));
5555 return false;
5556 }
5557 mapped_debug_names::index_val &indexval = insertpair.first->second;
5558 indexval.dwarf_tag = read_unsigned_leb128 (abfd, addr, &bytes_read);
5559 addr += bytes_read;
5560
5561 for (;;)
5562 {
5563 mapped_debug_names::index_val::attr attr;
5564 attr.dw_idx = read_unsigned_leb128 (abfd, addr, &bytes_read);
5565 addr += bytes_read;
5566 attr.form = read_unsigned_leb128 (abfd, addr, &bytes_read);
5567 addr += bytes_read;
5568 if (attr.form == DW_FORM_implicit_const)
5569 {
5570 attr.implicit_const = read_signed_leb128 (abfd, addr,
5571 &bytes_read);
5572 addr += bytes_read;
5573 }
5574 if (attr.dw_idx == 0 && attr.form == 0)
5575 break;
5576 indexval.attr_vec.push_back (std::move (attr));
5577 }
5578 }
5579 if (addr != abbrev_table_start + abbrev_table_size)
5580 {
5581 warning (_("Section .debug_names in %s has abbreviation_table "
5582 "of size %zu vs. written as %u, ignoring .debug_names."),
5583 filename, addr - abbrev_table_start, abbrev_table_size);
5584 return false;
5585 }
5586 map.entry_pool = addr;
5587
5588 return true;
5589 }
5590
5591 /* A helper for create_cus_from_debug_names that handles the MAP's CU
5592 list. */
5593
5594 static void
5595 create_cus_from_debug_names_list (struct dwarf2_per_objfile *dwarf2_per_objfile,
5596 const mapped_debug_names &map,
5597 dwarf2_section_info &section,
5598 bool is_dwz, int base_offset)
5599 {
5600 sect_offset sect_off_prev;
5601 for (uint32_t i = 0; i <= map.cu_count; ++i)
5602 {
5603 sect_offset sect_off_next;
5604 if (i < map.cu_count)
5605 {
5606 sect_off_next
5607 = (sect_offset) (extract_unsigned_integer
5608 (map.cu_table_reordered + i * map.offset_size,
5609 map.offset_size,
5610 map.dwarf5_byte_order));
5611 }
5612 else
5613 sect_off_next = (sect_offset) section.size;
5614 if (i >= 1)
5615 {
5616 const ULONGEST length = sect_off_next - sect_off_prev;
5617 dwarf2_per_objfile->all_comp_units[base_offset + (i - 1)]
5618 = create_cu_from_index_list (dwarf2_per_objfile, &section, is_dwz,
5619 sect_off_prev, length);
5620 }
5621 sect_off_prev = sect_off_next;
5622 }
5623 }
5624
5625 /* Read the CU list from the mapped index, and use it to create all
5626 the CU objects for this dwarf2_per_objfile. */
5627
5628 static void
5629 create_cus_from_debug_names (struct dwarf2_per_objfile *dwarf2_per_objfile,
5630 const mapped_debug_names &map,
5631 const mapped_debug_names &dwz_map)
5632 {
5633 struct objfile *objfile = dwarf2_per_objfile->objfile;
5634
5635 dwarf2_per_objfile->n_comp_units = map.cu_count + dwz_map.cu_count;
5636 dwarf2_per_objfile->all_comp_units
5637 = XOBNEWVEC (&objfile->objfile_obstack, struct dwarf2_per_cu_data *,
5638 dwarf2_per_objfile->n_comp_units);
5639
5640 create_cus_from_debug_names_list (dwarf2_per_objfile, map,
5641 dwarf2_per_objfile->info,
5642 false /* is_dwz */,
5643 0 /* base_offset */);
5644
5645 if (dwz_map.cu_count == 0)
5646 return;
5647
5648 dwz_file *dwz = dwarf2_get_dwz_file (dwarf2_per_objfile);
5649 create_cus_from_debug_names_list (dwarf2_per_objfile, dwz_map, dwz->info,
5650 true /* is_dwz */,
5651 map.cu_count /* base_offset */);
5652 }
5653
5654 /* Read .debug_names. If everything went ok, initialize the "quick"
5655 elements of all the CUs and return true. Otherwise, return false. */
5656
5657 static bool
5658 dwarf2_read_debug_names (struct dwarf2_per_objfile *dwarf2_per_objfile)
5659 {
5660 mapped_debug_names local_map (dwarf2_per_objfile);
5661 mapped_debug_names dwz_map (dwarf2_per_objfile);
5662 struct objfile *objfile = dwarf2_per_objfile->objfile;
5663
5664 if (!read_debug_names_from_section (objfile, objfile_name (objfile),
5665 &dwarf2_per_objfile->debug_names,
5666 local_map))
5667 return false;
5668
5669 /* Don't use the index if it's empty. */
5670 if (local_map.name_count == 0)
5671 return false;
5672
5673 /* If there is a .dwz file, read it so we can get its CU list as
5674 well. */
5675 dwz_file *dwz = dwarf2_get_dwz_file (dwarf2_per_objfile);
5676 if (dwz != NULL)
5677 {
5678 if (!read_debug_names_from_section (objfile,
5679 bfd_get_filename (dwz->dwz_bfd),
5680 &dwz->debug_names, dwz_map))
5681 {
5682 warning (_("could not read '.debug_names' section from %s; skipping"),
5683 bfd_get_filename (dwz->dwz_bfd));
5684 return false;
5685 }
5686 }
5687
5688 create_cus_from_debug_names (dwarf2_per_objfile, local_map, dwz_map);
5689
5690 if (local_map.tu_count != 0)
5691 {
5692 /* We can only handle a single .debug_types when we have an
5693 index. */
5694 if (VEC_length (dwarf2_section_info_def, dwarf2_per_objfile->types) != 1)
5695 return false;
5696
5697 dwarf2_section_info *section = VEC_index (dwarf2_section_info_def,
5698 dwarf2_per_objfile->types, 0);
5699
5700 create_signatured_type_table_from_debug_names
5701 (dwarf2_per_objfile, local_map, section, &dwarf2_per_objfile->abbrev);
5702 }
5703
5704 create_addrmap_from_aranges (dwarf2_per_objfile,
5705 &dwarf2_per_objfile->debug_aranges);
5706
5707 dwarf2_per_objfile->debug_names_table.reset
5708 (new mapped_debug_names (dwarf2_per_objfile));
5709 *dwarf2_per_objfile->debug_names_table = std::move (local_map);
5710 dwarf2_per_objfile->using_index = 1;
5711 dwarf2_per_objfile->quick_file_names_table =
5712 create_quick_file_names_table (dwarf2_per_objfile->n_comp_units);
5713
5714 return true;
5715 }
5716
5717 /* Type used to manage iterating over all CUs looking for a symbol for
5718 .debug_names. */
5719
5720 class dw2_debug_names_iterator
5721 {
5722 public:
5723 /* If WANT_SPECIFIC_BLOCK is true, only look for symbols in block
5724 BLOCK_INDEX. Otherwise BLOCK_INDEX is ignored. */
5725 dw2_debug_names_iterator (const mapped_debug_names &map,
5726 bool want_specific_block,
5727 block_enum block_index, domain_enum domain,
5728 const char *name)
5729 : m_map (map), m_want_specific_block (want_specific_block),
5730 m_block_index (block_index), m_domain (domain),
5731 m_addr (find_vec_in_debug_names (map, name))
5732 {}
5733
5734 dw2_debug_names_iterator (const mapped_debug_names &map,
5735 search_domain search, uint32_t namei)
5736 : m_map (map),
5737 m_search (search),
5738 m_addr (find_vec_in_debug_names (map, namei))
5739 {}
5740
5741 /* Return the next matching CU or NULL if there are no more. */
5742 dwarf2_per_cu_data *next ();
5743
5744 private:
5745 static const gdb_byte *find_vec_in_debug_names (const mapped_debug_names &map,
5746 const char *name);
5747 static const gdb_byte *find_vec_in_debug_names (const mapped_debug_names &map,
5748 uint32_t namei);
5749
5750 /* The internalized form of .debug_names. */
5751 const mapped_debug_names &m_map;
5752
5753 /* If true, only look for symbols that match BLOCK_INDEX. */
5754 const bool m_want_specific_block = false;
5755
5756 /* One of GLOBAL_BLOCK or STATIC_BLOCK.
5757 Unused if !WANT_SPECIFIC_BLOCK - FIRST_LOCAL_BLOCK is an invalid
5758 value. */
5759 const block_enum m_block_index = FIRST_LOCAL_BLOCK;
5760
5761 /* The kind of symbol we're looking for. */
5762 const domain_enum m_domain = UNDEF_DOMAIN;
5763 const search_domain m_search = ALL_DOMAIN;
5764
5765 /* The list of CUs from the index entry of the symbol, or NULL if
5766 not found. */
5767 const gdb_byte *m_addr;
5768 };
5769
5770 const char *
5771 mapped_debug_names::namei_to_name (uint32_t namei) const
5772 {
5773 const ULONGEST namei_string_offs
5774 = extract_unsigned_integer ((name_table_string_offs_reordered
5775 + namei * offset_size),
5776 offset_size,
5777 dwarf5_byte_order);
5778 return read_indirect_string_at_offset
5779 (dwarf2_per_objfile, dwarf2_per_objfile->objfile->obfd, namei_string_offs);
5780 }
5781
5782 /* Find a slot in .debug_names for the object named NAME. If NAME is
5783 found, return pointer to its pool data. If NAME cannot be found,
5784 return NULL. */
5785
5786 const gdb_byte *
5787 dw2_debug_names_iterator::find_vec_in_debug_names
5788 (const mapped_debug_names &map, const char *name)
5789 {
5790 int (*cmp) (const char *, const char *);
5791
5792 if (current_language->la_language == language_cplus
5793 || current_language->la_language == language_fortran
5794 || current_language->la_language == language_d)
5795 {
5796 /* NAME is already canonical. Drop any qualifiers as
5797 .debug_names does not contain any. */
5798
5799 if (strchr (name, '(') != NULL)
5800 {
5801 gdb::unique_xmalloc_ptr<char> without_params
5802 = cp_remove_params (name);
5803
5804 if (without_params != NULL)
5805 {
5806 name = without_params.get();
5807 }
5808 }
5809 }
5810
5811 cmp = (case_sensitivity == case_sensitive_on ? strcmp : strcasecmp);
5812
5813 const uint32_t full_hash = dwarf5_djb_hash (name);
5814 uint32_t namei
5815 = extract_unsigned_integer (reinterpret_cast<const gdb_byte *>
5816 (map.bucket_table_reordered
5817 + (full_hash % map.bucket_count)), 4,
5818 map.dwarf5_byte_order);
5819 if (namei == 0)
5820 return NULL;
5821 --namei;
5822 if (namei >= map.name_count)
5823 {
5824 complaint (&symfile_complaints,
5825 _("Wrong .debug_names with name index %u but name_count=%u "
5826 "[in module %s]"),
5827 namei, map.name_count,
5828 objfile_name (map.dwarf2_per_objfile->objfile));
5829 return NULL;
5830 }
5831
5832 for (;;)
5833 {
5834 const uint32_t namei_full_hash
5835 = extract_unsigned_integer (reinterpret_cast<const gdb_byte *>
5836 (map.hash_table_reordered + namei), 4,
5837 map.dwarf5_byte_order);
5838 if (full_hash % map.bucket_count != namei_full_hash % map.bucket_count)
5839 return NULL;
5840
5841 if (full_hash == namei_full_hash)
5842 {
5843 const char *const namei_string = map.namei_to_name (namei);
5844
5845 #if 0 /* An expensive sanity check. */
5846 if (namei_full_hash != dwarf5_djb_hash (namei_string))
5847 {
5848 complaint (&symfile_complaints,
5849 _("Wrong .debug_names hash for string at index %u "
5850 "[in module %s]"),
5851 namei, objfile_name (dwarf2_per_objfile->objfile));
5852 return NULL;
5853 }
5854 #endif
5855
5856 if (cmp (namei_string, name) == 0)
5857 {
5858 const ULONGEST namei_entry_offs
5859 = extract_unsigned_integer ((map.name_table_entry_offs_reordered
5860 + namei * map.offset_size),
5861 map.offset_size, map.dwarf5_byte_order);
5862 return map.entry_pool + namei_entry_offs;
5863 }
5864 }
5865
5866 ++namei;
5867 if (namei >= map.name_count)
5868 return NULL;
5869 }
5870 }
5871
5872 const gdb_byte *
5873 dw2_debug_names_iterator::find_vec_in_debug_names
5874 (const mapped_debug_names &map, uint32_t namei)
5875 {
5876 if (namei >= map.name_count)
5877 {
5878 complaint (&symfile_complaints,
5879 _("Wrong .debug_names with name index %u but name_count=%u "
5880 "[in module %s]"),
5881 namei, map.name_count,
5882 objfile_name (map.dwarf2_per_objfile->objfile));
5883 return NULL;
5884 }
5885
5886 const ULONGEST namei_entry_offs
5887 = extract_unsigned_integer ((map.name_table_entry_offs_reordered
5888 + namei * map.offset_size),
5889 map.offset_size, map.dwarf5_byte_order);
5890 return map.entry_pool + namei_entry_offs;
5891 }
5892
5893 /* See dw2_debug_names_iterator. */
5894
5895 dwarf2_per_cu_data *
5896 dw2_debug_names_iterator::next ()
5897 {
5898 if (m_addr == NULL)
5899 return NULL;
5900
5901 struct dwarf2_per_objfile *dwarf2_per_objfile = m_map.dwarf2_per_objfile;
5902 struct objfile *objfile = dwarf2_per_objfile->objfile;
5903 bfd *const abfd = objfile->obfd;
5904
5905 again:
5906
5907 unsigned int bytes_read;
5908 const ULONGEST abbrev = read_unsigned_leb128 (abfd, m_addr, &bytes_read);
5909 m_addr += bytes_read;
5910 if (abbrev == 0)
5911 return NULL;
5912
5913 const auto indexval_it = m_map.abbrev_map.find (abbrev);
5914 if (indexval_it == m_map.abbrev_map.cend ())
5915 {
5916 complaint (&symfile_complaints,
5917 _("Wrong .debug_names undefined abbrev code %s "
5918 "[in module %s]"),
5919 pulongest (abbrev), objfile_name (objfile));
5920 return NULL;
5921 }
5922 const mapped_debug_names::index_val &indexval = indexval_it->second;
5923 bool have_is_static = false;
5924 bool is_static;
5925 dwarf2_per_cu_data *per_cu = NULL;
5926 for (const mapped_debug_names::index_val::attr &attr : indexval.attr_vec)
5927 {
5928 ULONGEST ull;
5929 switch (attr.form)
5930 {
5931 case DW_FORM_implicit_const:
5932 ull = attr.implicit_const;
5933 break;
5934 case DW_FORM_flag_present:
5935 ull = 1;
5936 break;
5937 case DW_FORM_udata:
5938 ull = read_unsigned_leb128 (abfd, m_addr, &bytes_read);
5939 m_addr += bytes_read;
5940 break;
5941 default:
5942 complaint (&symfile_complaints,
5943 _("Unsupported .debug_names form %s [in module %s]"),
5944 dwarf_form_name (attr.form),
5945 objfile_name (objfile));
5946 return NULL;
5947 }
5948 switch (attr.dw_idx)
5949 {
5950 case DW_IDX_compile_unit:
5951 /* Don't crash on bad data. */
5952 if (ull >= dwarf2_per_objfile->n_comp_units)
5953 {
5954 complaint (&symfile_complaints,
5955 _(".debug_names entry has bad CU index %s"
5956 " [in module %s]"),
5957 pulongest (ull),
5958 objfile_name (dwarf2_per_objfile->objfile));
5959 continue;
5960 }
5961 per_cu = dw2_get_cutu (dwarf2_per_objfile, ull);
5962 break;
5963 case DW_IDX_type_unit:
5964 /* Don't crash on bad data. */
5965 if (ull >= dwarf2_per_objfile->n_type_units)
5966 {
5967 complaint (&symfile_complaints,
5968 _(".debug_names entry has bad TU index %s"
5969 " [in module %s]"),
5970 pulongest (ull),
5971 objfile_name (dwarf2_per_objfile->objfile));
5972 continue;
5973 }
5974 per_cu = dw2_get_cutu (dwarf2_per_objfile,
5975 dwarf2_per_objfile->n_comp_units + ull);
5976 break;
5977 case DW_IDX_GNU_internal:
5978 if (!m_map.augmentation_is_gdb)
5979 break;
5980 have_is_static = true;
5981 is_static = true;
5982 break;
5983 case DW_IDX_GNU_external:
5984 if (!m_map.augmentation_is_gdb)
5985 break;
5986 have_is_static = true;
5987 is_static = false;
5988 break;
5989 }
5990 }
5991
5992 /* Skip if already read in. */
5993 if (per_cu->v.quick->compunit_symtab)
5994 goto again;
5995
5996 /* Check static vs global. */
5997 if (have_is_static)
5998 {
5999 const bool want_static = m_block_index != GLOBAL_BLOCK;
6000 if (m_want_specific_block && want_static != is_static)
6001 goto again;
6002 }
6003
6004 /* Match dw2_symtab_iter_next, symbol_kind
6005 and debug_names::psymbol_tag. */
6006 switch (m_domain)
6007 {
6008 case VAR_DOMAIN:
6009 switch (indexval.dwarf_tag)
6010 {
6011 case DW_TAG_variable:
6012 case DW_TAG_subprogram:
6013 /* Some types are also in VAR_DOMAIN. */
6014 case DW_TAG_typedef:
6015 case DW_TAG_structure_type:
6016 break;
6017 default:
6018 goto again;
6019 }
6020 break;
6021 case STRUCT_DOMAIN:
6022 switch (indexval.dwarf_tag)
6023 {
6024 case DW_TAG_typedef:
6025 case DW_TAG_structure_type:
6026 break;
6027 default:
6028 goto again;
6029 }
6030 break;
6031 case LABEL_DOMAIN:
6032 switch (indexval.dwarf_tag)
6033 {
6034 case 0:
6035 case DW_TAG_variable:
6036 break;
6037 default:
6038 goto again;
6039 }
6040 break;
6041 default:
6042 break;
6043 }
6044
6045 /* Match dw2_expand_symtabs_matching, symbol_kind and
6046 debug_names::psymbol_tag. */
6047 switch (m_search)
6048 {
6049 case VARIABLES_DOMAIN:
6050 switch (indexval.dwarf_tag)
6051 {
6052 case DW_TAG_variable:
6053 break;
6054 default:
6055 goto again;
6056 }
6057 break;
6058 case FUNCTIONS_DOMAIN:
6059 switch (indexval.dwarf_tag)
6060 {
6061 case DW_TAG_subprogram:
6062 break;
6063 default:
6064 goto again;
6065 }
6066 break;
6067 case TYPES_DOMAIN:
6068 switch (indexval.dwarf_tag)
6069 {
6070 case DW_TAG_typedef:
6071 case DW_TAG_structure_type:
6072 break;
6073 default:
6074 goto again;
6075 }
6076 break;
6077 default:
6078 break;
6079 }
6080
6081 return per_cu;
6082 }
6083
6084 static struct compunit_symtab *
6085 dw2_debug_names_lookup_symbol (struct objfile *objfile, int block_index_int,
6086 const char *name, domain_enum domain)
6087 {
6088 const block_enum block_index = static_cast<block_enum> (block_index_int);
6089 struct dwarf2_per_objfile *dwarf2_per_objfile
6090 = get_dwarf2_per_objfile (objfile);
6091
6092 const auto &mapp = dwarf2_per_objfile->debug_names_table;
6093 if (!mapp)
6094 {
6095 /* index is NULL if OBJF_READNOW. */
6096 return NULL;
6097 }
6098 const auto &map = *mapp;
6099
6100 dw2_debug_names_iterator iter (map, true /* want_specific_block */,
6101 block_index, domain, name);
6102
6103 struct compunit_symtab *stab_best = NULL;
6104 struct dwarf2_per_cu_data *per_cu;
6105 while ((per_cu = iter.next ()) != NULL)
6106 {
6107 struct symbol *sym, *with_opaque = NULL;
6108 struct compunit_symtab *stab = dw2_instantiate_symtab (per_cu);
6109 const struct blockvector *bv = COMPUNIT_BLOCKVECTOR (stab);
6110 struct block *block = BLOCKVECTOR_BLOCK (bv, block_index);
6111
6112 sym = block_find_symbol (block, name, domain,
6113 block_find_non_opaque_type_preferred,
6114 &with_opaque);
6115
6116 /* Some caution must be observed with overloaded functions and
6117 methods, since the index will not contain any overload
6118 information (but NAME might contain it). */
6119
6120 if (sym != NULL
6121 && strcmp_iw (SYMBOL_SEARCH_NAME (sym), name) == 0)
6122 return stab;
6123 if (with_opaque != NULL
6124 && strcmp_iw (SYMBOL_SEARCH_NAME (with_opaque), name) == 0)
6125 stab_best = stab;
6126
6127 /* Keep looking through other CUs. */
6128 }
6129
6130 return stab_best;
6131 }
6132
6133 /* This dumps minimal information about .debug_names. It is called
6134 via "mt print objfiles". The gdb.dwarf2/gdb-index.exp testcase
6135 uses this to verify that .debug_names has been loaded. */
6136
6137 static void
6138 dw2_debug_names_dump (struct objfile *objfile)
6139 {
6140 struct dwarf2_per_objfile *dwarf2_per_objfile
6141 = get_dwarf2_per_objfile (objfile);
6142
6143 gdb_assert (dwarf2_per_objfile->using_index);
6144 printf_filtered (".debug_names:");
6145 if (dwarf2_per_objfile->debug_names_table)
6146 printf_filtered (" exists\n");
6147 else
6148 printf_filtered (" faked for \"readnow\"\n");
6149 printf_filtered ("\n");
6150 }
6151
6152 static void
6153 dw2_debug_names_expand_symtabs_for_function (struct objfile *objfile,
6154 const char *func_name)
6155 {
6156 struct dwarf2_per_objfile *dwarf2_per_objfile
6157 = get_dwarf2_per_objfile (objfile);
6158
6159 /* dwarf2_per_objfile->debug_names_table is NULL if OBJF_READNOW. */
6160 if (dwarf2_per_objfile->debug_names_table)
6161 {
6162 const mapped_debug_names &map = *dwarf2_per_objfile->debug_names_table;
6163
6164 /* Note: It doesn't matter what we pass for block_index here. */
6165 dw2_debug_names_iterator iter (map, false /* want_specific_block */,
6166 GLOBAL_BLOCK, VAR_DOMAIN, func_name);
6167
6168 struct dwarf2_per_cu_data *per_cu;
6169 while ((per_cu = iter.next ()) != NULL)
6170 dw2_instantiate_symtab (per_cu);
6171 }
6172 }
6173
6174 static void
6175 dw2_debug_names_expand_symtabs_matching
6176 (struct objfile *objfile,
6177 gdb::function_view<expand_symtabs_file_matcher_ftype> file_matcher,
6178 const lookup_name_info &lookup_name,
6179 gdb::function_view<expand_symtabs_symbol_matcher_ftype> symbol_matcher,
6180 gdb::function_view<expand_symtabs_exp_notify_ftype> expansion_notify,
6181 enum search_domain kind)
6182 {
6183 struct dwarf2_per_objfile *dwarf2_per_objfile
6184 = get_dwarf2_per_objfile (objfile);
6185
6186 /* debug_names_table is NULL if OBJF_READNOW. */
6187 if (!dwarf2_per_objfile->debug_names_table)
6188 return;
6189
6190 dw_expand_symtabs_matching_file_matcher (dwarf2_per_objfile, file_matcher);
6191
6192 mapped_debug_names &map = *dwarf2_per_objfile->debug_names_table;
6193
6194 dw2_expand_symtabs_matching_symbol (map, lookup_name,
6195 symbol_matcher,
6196 kind, [&] (offset_type namei)
6197 {
6198 /* The name was matched, now expand corresponding CUs that were
6199 marked. */
6200 dw2_debug_names_iterator iter (map, kind, namei);
6201
6202 struct dwarf2_per_cu_data *per_cu;
6203 while ((per_cu = iter.next ()) != NULL)
6204 dw2_expand_symtabs_matching_one (per_cu, file_matcher,
6205 expansion_notify);
6206 });
6207 }
6208
6209 const struct quick_symbol_functions dwarf2_debug_names_functions =
6210 {
6211 dw2_has_symbols,
6212 dw2_find_last_source_symtab,
6213 dw2_forget_cached_source_info,
6214 dw2_map_symtabs_matching_filename,
6215 dw2_debug_names_lookup_symbol,
6216 dw2_print_stats,
6217 dw2_debug_names_dump,
6218 dw2_relocate,
6219 dw2_debug_names_expand_symtabs_for_function,
6220 dw2_expand_all_symtabs,
6221 dw2_expand_symtabs_with_fullname,
6222 dw2_map_matching_symbols,
6223 dw2_debug_names_expand_symtabs_matching,
6224 dw2_find_pc_sect_compunit_symtab,
6225 NULL,
6226 dw2_map_symbol_filenames
6227 };
6228
6229 /* See symfile.h. */
6230
6231 bool
6232 dwarf2_initialize_objfile (struct objfile *objfile, dw_index_kind *index_kind)
6233 {
6234 struct dwarf2_per_objfile *dwarf2_per_objfile
6235 = get_dwarf2_per_objfile (objfile);
6236
6237 /* If we're about to read full symbols, don't bother with the
6238 indices. In this case we also don't care if some other debug
6239 format is making psymtabs, because they are all about to be
6240 expanded anyway. */
6241 if ((objfile->flags & OBJF_READNOW))
6242 {
6243 int i;
6244
6245 dwarf2_per_objfile->using_index = 1;
6246 create_all_comp_units (dwarf2_per_objfile);
6247 create_all_type_units (dwarf2_per_objfile);
6248 dwarf2_per_objfile->quick_file_names_table =
6249 create_quick_file_names_table (dwarf2_per_objfile->n_comp_units);
6250
6251 for (i = 0; i < (dwarf2_per_objfile->n_comp_units
6252 + dwarf2_per_objfile->n_type_units); ++i)
6253 {
6254 dwarf2_per_cu_data *per_cu = dw2_get_cutu (dwarf2_per_objfile, i);
6255
6256 per_cu->v.quick = OBSTACK_ZALLOC (&objfile->objfile_obstack,
6257 struct dwarf2_per_cu_quick_data);
6258 }
6259
6260 /* Return 1 so that gdb sees the "quick" functions. However,
6261 these functions will be no-ops because we will have expanded
6262 all symtabs. */
6263 *index_kind = dw_index_kind::GDB_INDEX;
6264 return true;
6265 }
6266
6267 if (dwarf2_read_debug_names (dwarf2_per_objfile))
6268 {
6269 *index_kind = dw_index_kind::DEBUG_NAMES;
6270 return true;
6271 }
6272
6273 if (dwarf2_read_index (objfile))
6274 {
6275 *index_kind = dw_index_kind::GDB_INDEX;
6276 return true;
6277 }
6278
6279 return false;
6280 }
6281
6282 \f
6283
6284 /* Build a partial symbol table. */
6285
6286 void
6287 dwarf2_build_psymtabs (struct objfile *objfile)
6288 {
6289 struct dwarf2_per_objfile *dwarf2_per_objfile
6290 = get_dwarf2_per_objfile (objfile);
6291
6292 if (objfile->global_psymbols.capacity () == 0
6293 && objfile->static_psymbols.capacity () == 0)
6294 init_psymbol_list (objfile, 1024);
6295
6296 TRY
6297 {
6298 /* This isn't really ideal: all the data we allocate on the
6299 objfile's obstack is still uselessly kept around. However,
6300 freeing it seems unsafe. */
6301 psymtab_discarder psymtabs (objfile);
6302 dwarf2_build_psymtabs_hard (dwarf2_per_objfile);
6303 psymtabs.keep ();
6304 }
6305 CATCH (except, RETURN_MASK_ERROR)
6306 {
6307 exception_print (gdb_stderr, except);
6308 }
6309 END_CATCH
6310 }
6311
6312 /* Return the total length of the CU described by HEADER. */
6313
6314 static unsigned int
6315 get_cu_length (const struct comp_unit_head *header)
6316 {
6317 return header->initial_length_size + header->length;
6318 }
6319
6320 /* Return TRUE if SECT_OFF is within CU_HEADER. */
6321
6322 static inline bool
6323 offset_in_cu_p (const comp_unit_head *cu_header, sect_offset sect_off)
6324 {
6325 sect_offset bottom = cu_header->sect_off;
6326 sect_offset top = cu_header->sect_off + get_cu_length (cu_header);
6327
6328 return sect_off >= bottom && sect_off < top;
6329 }
6330
6331 /* Find the base address of the compilation unit for range lists and
6332 location lists. It will normally be specified by DW_AT_low_pc.
6333 In DWARF-3 draft 4, the base address could be overridden by
6334 DW_AT_entry_pc. It's been removed, but GCC still uses this for
6335 compilation units with discontinuous ranges. */
6336
6337 static void
6338 dwarf2_find_base_address (struct die_info *die, struct dwarf2_cu *cu)
6339 {
6340 struct attribute *attr;
6341
6342 cu->base_known = 0;
6343 cu->base_address = 0;
6344
6345 attr = dwarf2_attr (die, DW_AT_entry_pc, cu);
6346 if (attr)
6347 {
6348 cu->base_address = attr_value_as_address (attr);
6349 cu->base_known = 1;
6350 }
6351 else
6352 {
6353 attr = dwarf2_attr (die, DW_AT_low_pc, cu);
6354 if (attr)
6355 {
6356 cu->base_address = attr_value_as_address (attr);
6357 cu->base_known = 1;
6358 }
6359 }
6360 }
6361
6362 /* Read in the comp unit header information from the debug_info at info_ptr.
6363 Use rcuh_kind::COMPILE as the default type if not known by the caller.
6364 NOTE: This leaves members offset, first_die_offset to be filled in
6365 by the caller. */
6366
6367 static const gdb_byte *
6368 read_comp_unit_head (struct comp_unit_head *cu_header,
6369 const gdb_byte *info_ptr,
6370 struct dwarf2_section_info *section,
6371 rcuh_kind section_kind)
6372 {
6373 int signed_addr;
6374 unsigned int bytes_read;
6375 const char *filename = get_section_file_name (section);
6376 bfd *abfd = get_section_bfd_owner (section);
6377
6378 cu_header->length = read_initial_length (abfd, info_ptr, &bytes_read);
6379 cu_header->initial_length_size = bytes_read;
6380 cu_header->offset_size = (bytes_read == 4) ? 4 : 8;
6381 info_ptr += bytes_read;
6382 cu_header->version = read_2_bytes (abfd, info_ptr);
6383 info_ptr += 2;
6384 if (cu_header->version < 5)
6385 switch (section_kind)
6386 {
6387 case rcuh_kind::COMPILE:
6388 cu_header->unit_type = DW_UT_compile;
6389 break;
6390 case rcuh_kind::TYPE:
6391 cu_header->unit_type = DW_UT_type;
6392 break;
6393 default:
6394 internal_error (__FILE__, __LINE__,
6395 _("read_comp_unit_head: invalid section_kind"));
6396 }
6397 else
6398 {
6399 cu_header->unit_type = static_cast<enum dwarf_unit_type>
6400 (read_1_byte (abfd, info_ptr));
6401 info_ptr += 1;
6402 switch (cu_header->unit_type)
6403 {
6404 case DW_UT_compile:
6405 if (section_kind != rcuh_kind::COMPILE)
6406 error (_("Dwarf Error: wrong unit_type in compilation unit header "
6407 "(is DW_UT_compile, should be DW_UT_type) [in module %s]"),
6408 filename);
6409 break;
6410 case DW_UT_type:
6411 section_kind = rcuh_kind::TYPE;
6412 break;
6413 default:
6414 error (_("Dwarf Error: wrong unit_type in compilation unit header "
6415 "(is %d, should be %d or %d) [in module %s]"),
6416 cu_header->unit_type, DW_UT_compile, DW_UT_type, filename);
6417 }
6418
6419 cu_header->addr_size = read_1_byte (abfd, info_ptr);
6420 info_ptr += 1;
6421 }
6422 cu_header->abbrev_sect_off = (sect_offset) read_offset (abfd, info_ptr,
6423 cu_header,
6424 &bytes_read);
6425 info_ptr += bytes_read;
6426 if (cu_header->version < 5)
6427 {
6428 cu_header->addr_size = read_1_byte (abfd, info_ptr);
6429 info_ptr += 1;
6430 }
6431 signed_addr = bfd_get_sign_extend_vma (abfd);
6432 if (signed_addr < 0)
6433 internal_error (__FILE__, __LINE__,
6434 _("read_comp_unit_head: dwarf from non elf file"));
6435 cu_header->signed_addr_p = signed_addr;
6436
6437 if (section_kind == rcuh_kind::TYPE)
6438 {
6439 LONGEST type_offset;
6440
6441 cu_header->signature = read_8_bytes (abfd, info_ptr);
6442 info_ptr += 8;
6443
6444 type_offset = read_offset (abfd, info_ptr, cu_header, &bytes_read);
6445 info_ptr += bytes_read;
6446 cu_header->type_cu_offset_in_tu = (cu_offset) type_offset;
6447 if (to_underlying (cu_header->type_cu_offset_in_tu) != type_offset)
6448 error (_("Dwarf Error: Too big type_offset in compilation unit "
6449 "header (is %s) [in module %s]"), plongest (type_offset),
6450 filename);
6451 }
6452
6453 return info_ptr;
6454 }
6455
6456 /* Helper function that returns the proper abbrev section for
6457 THIS_CU. */
6458
6459 static struct dwarf2_section_info *
6460 get_abbrev_section_for_cu (struct dwarf2_per_cu_data *this_cu)
6461 {
6462 struct dwarf2_section_info *abbrev;
6463 struct dwarf2_per_objfile *dwarf2_per_objfile = this_cu->dwarf2_per_objfile;
6464
6465 if (this_cu->is_dwz)
6466 abbrev = &dwarf2_get_dwz_file (dwarf2_per_objfile)->abbrev;
6467 else
6468 abbrev = &dwarf2_per_objfile->abbrev;
6469
6470 return abbrev;
6471 }
6472
6473 /* Subroutine of read_and_check_comp_unit_head and
6474 read_and_check_type_unit_head to simplify them.
6475 Perform various error checking on the header. */
6476
6477 static void
6478 error_check_comp_unit_head (struct dwarf2_per_objfile *dwarf2_per_objfile,
6479 struct comp_unit_head *header,
6480 struct dwarf2_section_info *section,
6481 struct dwarf2_section_info *abbrev_section)
6482 {
6483 const char *filename = get_section_file_name (section);
6484
6485 if (header->version < 2 || header->version > 5)
6486 error (_("Dwarf Error: wrong version in compilation unit header "
6487 "(is %d, should be 2, 3, 4 or 5) [in module %s]"), header->version,
6488 filename);
6489
6490 if (to_underlying (header->abbrev_sect_off)
6491 >= dwarf2_section_size (dwarf2_per_objfile->objfile, abbrev_section))
6492 error (_("Dwarf Error: bad offset (%s) in compilation unit header "
6493 "(offset %s + 6) [in module %s]"),
6494 sect_offset_str (header->abbrev_sect_off),
6495 sect_offset_str (header->sect_off),
6496 filename);
6497
6498 /* Cast to ULONGEST to use 64-bit arithmetic when possible to
6499 avoid potential 32-bit overflow. */
6500 if (((ULONGEST) header->sect_off + get_cu_length (header))
6501 > section->size)
6502 error (_("Dwarf Error: bad length (0x%x) in compilation unit header "
6503 "(offset %s + 0) [in module %s]"),
6504 header->length, sect_offset_str (header->sect_off),
6505 filename);
6506 }
6507
6508 /* Read in a CU/TU header and perform some basic error checking.
6509 The contents of the header are stored in HEADER.
6510 The result is a pointer to the start of the first DIE. */
6511
6512 static const gdb_byte *
6513 read_and_check_comp_unit_head (struct dwarf2_per_objfile *dwarf2_per_objfile,
6514 struct comp_unit_head *header,
6515 struct dwarf2_section_info *section,
6516 struct dwarf2_section_info *abbrev_section,
6517 const gdb_byte *info_ptr,
6518 rcuh_kind section_kind)
6519 {
6520 const gdb_byte *beg_of_comp_unit = info_ptr;
6521
6522 header->sect_off = (sect_offset) (beg_of_comp_unit - section->buffer);
6523
6524 info_ptr = read_comp_unit_head (header, info_ptr, section, section_kind);
6525
6526 header->first_die_cu_offset = (cu_offset) (info_ptr - beg_of_comp_unit);
6527
6528 error_check_comp_unit_head (dwarf2_per_objfile, header, section,
6529 abbrev_section);
6530
6531 return info_ptr;
6532 }
6533
6534 /* Fetch the abbreviation table offset from a comp or type unit header. */
6535
6536 static sect_offset
6537 read_abbrev_offset (struct dwarf2_per_objfile *dwarf2_per_objfile,
6538 struct dwarf2_section_info *section,
6539 sect_offset sect_off)
6540 {
6541 bfd *abfd = get_section_bfd_owner (section);
6542 const gdb_byte *info_ptr;
6543 unsigned int initial_length_size, offset_size;
6544 uint16_t version;
6545
6546 dwarf2_read_section (dwarf2_per_objfile->objfile, section);
6547 info_ptr = section->buffer + to_underlying (sect_off);
6548 read_initial_length (abfd, info_ptr, &initial_length_size);
6549 offset_size = initial_length_size == 4 ? 4 : 8;
6550 info_ptr += initial_length_size;
6551
6552 version = read_2_bytes (abfd, info_ptr);
6553 info_ptr += 2;
6554 if (version >= 5)
6555 {
6556 /* Skip unit type and address size. */
6557 info_ptr += 2;
6558 }
6559
6560 return (sect_offset) read_offset_1 (abfd, info_ptr, offset_size);
6561 }
6562
6563 /* Allocate a new partial symtab for file named NAME and mark this new
6564 partial symtab as being an include of PST. */
6565
6566 static void
6567 dwarf2_create_include_psymtab (const char *name, struct partial_symtab *pst,
6568 struct objfile *objfile)
6569 {
6570 struct partial_symtab *subpst = allocate_psymtab (name, objfile);
6571
6572 if (!IS_ABSOLUTE_PATH (subpst->filename))
6573 {
6574 /* It shares objfile->objfile_obstack. */
6575 subpst->dirname = pst->dirname;
6576 }
6577
6578 subpst->textlow = 0;
6579 subpst->texthigh = 0;
6580
6581 subpst->dependencies
6582 = XOBNEW (&objfile->objfile_obstack, struct partial_symtab *);
6583 subpst->dependencies[0] = pst;
6584 subpst->number_of_dependencies = 1;
6585
6586 subpst->globals_offset = 0;
6587 subpst->n_global_syms = 0;
6588 subpst->statics_offset = 0;
6589 subpst->n_static_syms = 0;
6590 subpst->compunit_symtab = NULL;
6591 subpst->read_symtab = pst->read_symtab;
6592 subpst->readin = 0;
6593
6594 /* No private part is necessary for include psymtabs. This property
6595 can be used to differentiate between such include psymtabs and
6596 the regular ones. */
6597 subpst->read_symtab_private = NULL;
6598 }
6599
6600 /* Read the Line Number Program data and extract the list of files
6601 included by the source file represented by PST. Build an include
6602 partial symtab for each of these included files. */
6603
6604 static void
6605 dwarf2_build_include_psymtabs (struct dwarf2_cu *cu,
6606 struct die_info *die,
6607 struct partial_symtab *pst)
6608 {
6609 line_header_up lh;
6610 struct attribute *attr;
6611
6612 attr = dwarf2_attr (die, DW_AT_stmt_list, cu);
6613 if (attr)
6614 lh = dwarf_decode_line_header ((sect_offset) DW_UNSND (attr), cu);
6615 if (lh == NULL)
6616 return; /* No linetable, so no includes. */
6617
6618 /* NOTE: pst->dirname is DW_AT_comp_dir (if present). */
6619 dwarf_decode_lines (lh.get (), pst->dirname, cu, pst, pst->textlow, 1);
6620 }
6621
6622 static hashval_t
6623 hash_signatured_type (const void *item)
6624 {
6625 const struct signatured_type *sig_type
6626 = (const struct signatured_type *) item;
6627
6628 /* This drops the top 32 bits of the signature, but is ok for a hash. */
6629 return sig_type->signature;
6630 }
6631
6632 static int
6633 eq_signatured_type (const void *item_lhs, const void *item_rhs)
6634 {
6635 const struct signatured_type *lhs = (const struct signatured_type *) item_lhs;
6636 const struct signatured_type *rhs = (const struct signatured_type *) item_rhs;
6637
6638 return lhs->signature == rhs->signature;
6639 }
6640
6641 /* Allocate a hash table for signatured types. */
6642
6643 static htab_t
6644 allocate_signatured_type_table (struct objfile *objfile)
6645 {
6646 return htab_create_alloc_ex (41,
6647 hash_signatured_type,
6648 eq_signatured_type,
6649 NULL,
6650 &objfile->objfile_obstack,
6651 hashtab_obstack_allocate,
6652 dummy_obstack_deallocate);
6653 }
6654
6655 /* A helper function to add a signatured type CU to a table. */
6656
6657 static int
6658 add_signatured_type_cu_to_table (void **slot, void *datum)
6659 {
6660 struct signatured_type *sigt = (struct signatured_type *) *slot;
6661 struct signatured_type ***datap = (struct signatured_type ***) datum;
6662
6663 **datap = sigt;
6664 ++*datap;
6665
6666 return 1;
6667 }
6668
6669 /* A helper for create_debug_types_hash_table. Read types from SECTION
6670 and fill them into TYPES_HTAB. It will process only type units,
6671 therefore DW_UT_type. */
6672
6673 static void
6674 create_debug_type_hash_table (struct dwarf2_per_objfile *dwarf2_per_objfile,
6675 struct dwo_file *dwo_file,
6676 dwarf2_section_info *section, htab_t &types_htab,
6677 rcuh_kind section_kind)
6678 {
6679 struct objfile *objfile = dwarf2_per_objfile->objfile;
6680 struct dwarf2_section_info *abbrev_section;
6681 bfd *abfd;
6682 const gdb_byte *info_ptr, *end_ptr;
6683
6684 abbrev_section = (dwo_file != NULL
6685 ? &dwo_file->sections.abbrev
6686 : &dwarf2_per_objfile->abbrev);
6687
6688 if (dwarf_read_debug)
6689 fprintf_unfiltered (gdb_stdlog, "Reading %s for %s:\n",
6690 get_section_name (section),
6691 get_section_file_name (abbrev_section));
6692
6693 dwarf2_read_section (objfile, section);
6694 info_ptr = section->buffer;
6695
6696 if (info_ptr == NULL)
6697 return;
6698
6699 /* We can't set abfd until now because the section may be empty or
6700 not present, in which case the bfd is unknown. */
6701 abfd = get_section_bfd_owner (section);
6702
6703 /* We don't use init_cutu_and_read_dies_simple, or some such, here
6704 because we don't need to read any dies: the signature is in the
6705 header. */
6706
6707 end_ptr = info_ptr + section->size;
6708 while (info_ptr < end_ptr)
6709 {
6710 struct signatured_type *sig_type;
6711 struct dwo_unit *dwo_tu;
6712 void **slot;
6713 const gdb_byte *ptr = info_ptr;
6714 struct comp_unit_head header;
6715 unsigned int length;
6716
6717 sect_offset sect_off = (sect_offset) (ptr - section->buffer);
6718
6719 /* Initialize it due to a false compiler warning. */
6720 header.signature = -1;
6721 header.type_cu_offset_in_tu = (cu_offset) -1;
6722
6723 /* We need to read the type's signature in order to build the hash
6724 table, but we don't need anything else just yet. */
6725
6726 ptr = read_and_check_comp_unit_head (dwarf2_per_objfile, &header, section,
6727 abbrev_section, ptr, section_kind);
6728
6729 length = get_cu_length (&header);
6730
6731 /* Skip dummy type units. */
6732 if (ptr >= info_ptr + length
6733 || peek_abbrev_code (abfd, ptr) == 0
6734 || header.unit_type != DW_UT_type)
6735 {
6736 info_ptr += length;
6737 continue;
6738 }
6739
6740 if (types_htab == NULL)
6741 {
6742 if (dwo_file)
6743 types_htab = allocate_dwo_unit_table (objfile);
6744 else
6745 types_htab = allocate_signatured_type_table (objfile);
6746 }
6747
6748 if (dwo_file)
6749 {
6750 sig_type = NULL;
6751 dwo_tu = OBSTACK_ZALLOC (&objfile->objfile_obstack,
6752 struct dwo_unit);
6753 dwo_tu->dwo_file = dwo_file;
6754 dwo_tu->signature = header.signature;
6755 dwo_tu->type_offset_in_tu = header.type_cu_offset_in_tu;
6756 dwo_tu->section = section;
6757 dwo_tu->sect_off = sect_off;
6758 dwo_tu->length = length;
6759 }
6760 else
6761 {
6762 /* N.B.: type_offset is not usable if this type uses a DWO file.
6763 The real type_offset is in the DWO file. */
6764 dwo_tu = NULL;
6765 sig_type = OBSTACK_ZALLOC (&objfile->objfile_obstack,
6766 struct signatured_type);
6767 sig_type->signature = header.signature;
6768 sig_type->type_offset_in_tu = header.type_cu_offset_in_tu;
6769 sig_type->per_cu.dwarf2_per_objfile = dwarf2_per_objfile;
6770 sig_type->per_cu.is_debug_types = 1;
6771 sig_type->per_cu.section = section;
6772 sig_type->per_cu.sect_off = sect_off;
6773 sig_type->per_cu.length = length;
6774 }
6775
6776 slot = htab_find_slot (types_htab,
6777 dwo_file ? (void*) dwo_tu : (void *) sig_type,
6778 INSERT);
6779 gdb_assert (slot != NULL);
6780 if (*slot != NULL)
6781 {
6782 sect_offset dup_sect_off;
6783
6784 if (dwo_file)
6785 {
6786 const struct dwo_unit *dup_tu
6787 = (const struct dwo_unit *) *slot;
6788
6789 dup_sect_off = dup_tu->sect_off;
6790 }
6791 else
6792 {
6793 const struct signatured_type *dup_tu
6794 = (const struct signatured_type *) *slot;
6795
6796 dup_sect_off = dup_tu->per_cu.sect_off;
6797 }
6798
6799 complaint (&symfile_complaints,
6800 _("debug type entry at offset %s is duplicate to"
6801 " the entry at offset %s, signature %s"),
6802 sect_offset_str (sect_off), sect_offset_str (dup_sect_off),
6803 hex_string (header.signature));
6804 }
6805 *slot = dwo_file ? (void *) dwo_tu : (void *) sig_type;
6806
6807 if (dwarf_read_debug > 1)
6808 fprintf_unfiltered (gdb_stdlog, " offset %s, signature %s\n",
6809 sect_offset_str (sect_off),
6810 hex_string (header.signature));
6811
6812 info_ptr += length;
6813 }
6814 }
6815
6816 /* Create the hash table of all entries in the .debug_types
6817 (or .debug_types.dwo) section(s).
6818 If reading a DWO file, then DWO_FILE is a pointer to the DWO file object,
6819 otherwise it is NULL.
6820
6821 The result is a pointer to the hash table or NULL if there are no types.
6822
6823 Note: This function processes DWO files only, not DWP files. */
6824
6825 static void
6826 create_debug_types_hash_table (struct dwarf2_per_objfile *dwarf2_per_objfile,
6827 struct dwo_file *dwo_file,
6828 VEC (dwarf2_section_info_def) *types,
6829 htab_t &types_htab)
6830 {
6831 int ix;
6832 struct dwarf2_section_info *section;
6833
6834 if (VEC_empty (dwarf2_section_info_def, types))
6835 return;
6836
6837 for (ix = 0;
6838 VEC_iterate (dwarf2_section_info_def, types, ix, section);
6839 ++ix)
6840 create_debug_type_hash_table (dwarf2_per_objfile, dwo_file, section,
6841 types_htab, rcuh_kind::TYPE);
6842 }
6843
6844 /* Create the hash table of all entries in the .debug_types section,
6845 and initialize all_type_units.
6846 The result is zero if there is an error (e.g. missing .debug_types section),
6847 otherwise non-zero. */
6848
6849 static int
6850 create_all_type_units (struct dwarf2_per_objfile *dwarf2_per_objfile)
6851 {
6852 htab_t types_htab = NULL;
6853 struct signatured_type **iter;
6854
6855 create_debug_type_hash_table (dwarf2_per_objfile, NULL,
6856 &dwarf2_per_objfile->info, types_htab,
6857 rcuh_kind::COMPILE);
6858 create_debug_types_hash_table (dwarf2_per_objfile, NULL,
6859 dwarf2_per_objfile->types, types_htab);
6860 if (types_htab == NULL)
6861 {
6862 dwarf2_per_objfile->signatured_types = NULL;
6863 return 0;
6864 }
6865
6866 dwarf2_per_objfile->signatured_types = types_htab;
6867
6868 dwarf2_per_objfile->n_type_units
6869 = dwarf2_per_objfile->n_allocated_type_units
6870 = htab_elements (types_htab);
6871 dwarf2_per_objfile->all_type_units =
6872 XNEWVEC (struct signatured_type *, dwarf2_per_objfile->n_type_units);
6873 iter = &dwarf2_per_objfile->all_type_units[0];
6874 htab_traverse_noresize (types_htab, add_signatured_type_cu_to_table, &iter);
6875 gdb_assert (iter - &dwarf2_per_objfile->all_type_units[0]
6876 == dwarf2_per_objfile->n_type_units);
6877
6878 return 1;
6879 }
6880
6881 /* Add an entry for signature SIG to dwarf2_per_objfile->signatured_types.
6882 If SLOT is non-NULL, it is the entry to use in the hash table.
6883 Otherwise we find one. */
6884
6885 static struct signatured_type *
6886 add_type_unit (struct dwarf2_per_objfile *dwarf2_per_objfile, ULONGEST sig,
6887 void **slot)
6888 {
6889 struct objfile *objfile = dwarf2_per_objfile->objfile;
6890 int n_type_units = dwarf2_per_objfile->n_type_units;
6891 struct signatured_type *sig_type;
6892
6893 gdb_assert (n_type_units <= dwarf2_per_objfile->n_allocated_type_units);
6894 ++n_type_units;
6895 if (n_type_units > dwarf2_per_objfile->n_allocated_type_units)
6896 {
6897 if (dwarf2_per_objfile->n_allocated_type_units == 0)
6898 dwarf2_per_objfile->n_allocated_type_units = 1;
6899 dwarf2_per_objfile->n_allocated_type_units *= 2;
6900 dwarf2_per_objfile->all_type_units
6901 = XRESIZEVEC (struct signatured_type *,
6902 dwarf2_per_objfile->all_type_units,
6903 dwarf2_per_objfile->n_allocated_type_units);
6904 ++dwarf2_per_objfile->tu_stats.nr_all_type_units_reallocs;
6905 }
6906 dwarf2_per_objfile->n_type_units = n_type_units;
6907
6908 sig_type = OBSTACK_ZALLOC (&objfile->objfile_obstack,
6909 struct signatured_type);
6910 dwarf2_per_objfile->all_type_units[n_type_units - 1] = sig_type;
6911 sig_type->signature = sig;
6912 sig_type->per_cu.is_debug_types = 1;
6913 if (dwarf2_per_objfile->using_index)
6914 {
6915 sig_type->per_cu.v.quick =
6916 OBSTACK_ZALLOC (&objfile->objfile_obstack,
6917 struct dwarf2_per_cu_quick_data);
6918 }
6919
6920 if (slot == NULL)
6921 {
6922 slot = htab_find_slot (dwarf2_per_objfile->signatured_types,
6923 sig_type, INSERT);
6924 }
6925 gdb_assert (*slot == NULL);
6926 *slot = sig_type;
6927 /* The rest of sig_type must be filled in by the caller. */
6928 return sig_type;
6929 }
6930
6931 /* Subroutine of lookup_dwo_signatured_type and lookup_dwp_signatured_type.
6932 Fill in SIG_ENTRY with DWO_ENTRY. */
6933
6934 static void
6935 fill_in_sig_entry_from_dwo_entry (struct dwarf2_per_objfile *dwarf2_per_objfile,
6936 struct signatured_type *sig_entry,
6937 struct dwo_unit *dwo_entry)
6938 {
6939 /* Make sure we're not clobbering something we don't expect to. */
6940 gdb_assert (! sig_entry->per_cu.queued);
6941 gdb_assert (sig_entry->per_cu.cu == NULL);
6942 if (dwarf2_per_objfile->using_index)
6943 {
6944 gdb_assert (sig_entry->per_cu.v.quick != NULL);
6945 gdb_assert (sig_entry->per_cu.v.quick->compunit_symtab == NULL);
6946 }
6947 else
6948 gdb_assert (sig_entry->per_cu.v.psymtab == NULL);
6949 gdb_assert (sig_entry->signature == dwo_entry->signature);
6950 gdb_assert (to_underlying (sig_entry->type_offset_in_section) == 0);
6951 gdb_assert (sig_entry->type_unit_group == NULL);
6952 gdb_assert (sig_entry->dwo_unit == NULL);
6953
6954 sig_entry->per_cu.section = dwo_entry->section;
6955 sig_entry->per_cu.sect_off = dwo_entry->sect_off;
6956 sig_entry->per_cu.length = dwo_entry->length;
6957 sig_entry->per_cu.reading_dwo_directly = 1;
6958 sig_entry->per_cu.dwarf2_per_objfile = dwarf2_per_objfile;
6959 sig_entry->type_offset_in_tu = dwo_entry->type_offset_in_tu;
6960 sig_entry->dwo_unit = dwo_entry;
6961 }
6962
6963 /* Subroutine of lookup_signatured_type.
6964 If we haven't read the TU yet, create the signatured_type data structure
6965 for a TU to be read in directly from a DWO file, bypassing the stub.
6966 This is the "Stay in DWO Optimization": When there is no DWP file and we're
6967 using .gdb_index, then when reading a CU we want to stay in the DWO file
6968 containing that CU. Otherwise we could end up reading several other DWO
6969 files (due to comdat folding) to process the transitive closure of all the
6970 mentioned TUs, and that can be slow. The current DWO file will have every
6971 type signature that it needs.
6972 We only do this for .gdb_index because in the psymtab case we already have
6973 to read all the DWOs to build the type unit groups. */
6974
6975 static struct signatured_type *
6976 lookup_dwo_signatured_type (struct dwarf2_cu *cu, ULONGEST sig)
6977 {
6978 struct dwarf2_per_objfile *dwarf2_per_objfile
6979 = cu->per_cu->dwarf2_per_objfile;
6980 struct objfile *objfile = dwarf2_per_objfile->objfile;
6981 struct dwo_file *dwo_file;
6982 struct dwo_unit find_dwo_entry, *dwo_entry;
6983 struct signatured_type find_sig_entry, *sig_entry;
6984 void **slot;
6985
6986 gdb_assert (cu->dwo_unit && dwarf2_per_objfile->using_index);
6987
6988 /* If TU skeletons have been removed then we may not have read in any
6989 TUs yet. */
6990 if (dwarf2_per_objfile->signatured_types == NULL)
6991 {
6992 dwarf2_per_objfile->signatured_types
6993 = allocate_signatured_type_table (objfile);
6994 }
6995
6996 /* We only ever need to read in one copy of a signatured type.
6997 Use the global signatured_types array to do our own comdat-folding
6998 of types. If this is the first time we're reading this TU, and
6999 the TU has an entry in .gdb_index, replace the recorded data from
7000 .gdb_index with this TU. */
7001
7002 find_sig_entry.signature = sig;
7003 slot = htab_find_slot (dwarf2_per_objfile->signatured_types,
7004 &find_sig_entry, INSERT);
7005 sig_entry = (struct signatured_type *) *slot;
7006
7007 /* We can get here with the TU already read, *or* in the process of being
7008 read. Don't reassign the global entry to point to this DWO if that's
7009 the case. Also note that if the TU is already being read, it may not
7010 have come from a DWO, the program may be a mix of Fission-compiled
7011 code and non-Fission-compiled code. */
7012
7013 /* Have we already tried to read this TU?
7014 Note: sig_entry can be NULL if the skeleton TU was removed (thus it
7015 needn't exist in the global table yet). */
7016 if (sig_entry != NULL && sig_entry->per_cu.tu_read)
7017 return sig_entry;
7018
7019 /* Note: cu->dwo_unit is the dwo_unit that references this TU, not the
7020 dwo_unit of the TU itself. */
7021 dwo_file = cu->dwo_unit->dwo_file;
7022
7023 /* Ok, this is the first time we're reading this TU. */
7024 if (dwo_file->tus == NULL)
7025 return NULL;
7026 find_dwo_entry.signature = sig;
7027 dwo_entry = (struct dwo_unit *) htab_find (dwo_file->tus, &find_dwo_entry);
7028 if (dwo_entry == NULL)
7029 return NULL;
7030
7031 /* If the global table doesn't have an entry for this TU, add one. */
7032 if (sig_entry == NULL)
7033 sig_entry = add_type_unit (dwarf2_per_objfile, sig, slot);
7034
7035 fill_in_sig_entry_from_dwo_entry (dwarf2_per_objfile, sig_entry, dwo_entry);
7036 sig_entry->per_cu.tu_read = 1;
7037 return sig_entry;
7038 }
7039
7040 /* Subroutine of lookup_signatured_type.
7041 Look up the type for signature SIG, and if we can't find SIG in .gdb_index
7042 then try the DWP file. If the TU stub (skeleton) has been removed then
7043 it won't be in .gdb_index. */
7044
7045 static struct signatured_type *
7046 lookup_dwp_signatured_type (struct dwarf2_cu *cu, ULONGEST sig)
7047 {
7048 struct dwarf2_per_objfile *dwarf2_per_objfile
7049 = cu->per_cu->dwarf2_per_objfile;
7050 struct objfile *objfile = dwarf2_per_objfile->objfile;
7051 struct dwp_file *dwp_file = get_dwp_file (dwarf2_per_objfile);
7052 struct dwo_unit *dwo_entry;
7053 struct signatured_type find_sig_entry, *sig_entry;
7054 void **slot;
7055
7056 gdb_assert (cu->dwo_unit && dwarf2_per_objfile->using_index);
7057 gdb_assert (dwp_file != NULL);
7058
7059 /* If TU skeletons have been removed then we may not have read in any
7060 TUs yet. */
7061 if (dwarf2_per_objfile->signatured_types == NULL)
7062 {
7063 dwarf2_per_objfile->signatured_types
7064 = allocate_signatured_type_table (objfile);
7065 }
7066
7067 find_sig_entry.signature = sig;
7068 slot = htab_find_slot (dwarf2_per_objfile->signatured_types,
7069 &find_sig_entry, INSERT);
7070 sig_entry = (struct signatured_type *) *slot;
7071
7072 /* Have we already tried to read this TU?
7073 Note: sig_entry can be NULL if the skeleton TU was removed (thus it
7074 needn't exist in the global table yet). */
7075 if (sig_entry != NULL)
7076 return sig_entry;
7077
7078 if (dwp_file->tus == NULL)
7079 return NULL;
7080 dwo_entry = lookup_dwo_unit_in_dwp (dwarf2_per_objfile, dwp_file, NULL,
7081 sig, 1 /* is_debug_types */);
7082 if (dwo_entry == NULL)
7083 return NULL;
7084
7085 sig_entry = add_type_unit (dwarf2_per_objfile, sig, slot);
7086 fill_in_sig_entry_from_dwo_entry (dwarf2_per_objfile, sig_entry, dwo_entry);
7087
7088 return sig_entry;
7089 }
7090
7091 /* Lookup a signature based type for DW_FORM_ref_sig8.
7092 Returns NULL if signature SIG is not present in the table.
7093 It is up to the caller to complain about this. */
7094
7095 static struct signatured_type *
7096 lookup_signatured_type (struct dwarf2_cu *cu, ULONGEST sig)
7097 {
7098 struct dwarf2_per_objfile *dwarf2_per_objfile
7099 = cu->per_cu->dwarf2_per_objfile;
7100
7101 if (cu->dwo_unit
7102 && dwarf2_per_objfile->using_index)
7103 {
7104 /* We're in a DWO/DWP file, and we're using .gdb_index.
7105 These cases require special processing. */
7106 if (get_dwp_file (dwarf2_per_objfile) == NULL)
7107 return lookup_dwo_signatured_type (cu, sig);
7108 else
7109 return lookup_dwp_signatured_type (cu, sig);
7110 }
7111 else
7112 {
7113 struct signatured_type find_entry, *entry;
7114
7115 if (dwarf2_per_objfile->signatured_types == NULL)
7116 return NULL;
7117 find_entry.signature = sig;
7118 entry = ((struct signatured_type *)
7119 htab_find (dwarf2_per_objfile->signatured_types, &find_entry));
7120 return entry;
7121 }
7122 }
7123 \f
7124 /* Low level DIE reading support. */
7125
7126 /* Initialize a die_reader_specs struct from a dwarf2_cu struct. */
7127
7128 static void
7129 init_cu_die_reader (struct die_reader_specs *reader,
7130 struct dwarf2_cu *cu,
7131 struct dwarf2_section_info *section,
7132 struct dwo_file *dwo_file,
7133 struct abbrev_table *abbrev_table)
7134 {
7135 gdb_assert (section->readin && section->buffer != NULL);
7136 reader->abfd = get_section_bfd_owner (section);
7137 reader->cu = cu;
7138 reader->dwo_file = dwo_file;
7139 reader->die_section = section;
7140 reader->buffer = section->buffer;
7141 reader->buffer_end = section->buffer + section->size;
7142 reader->comp_dir = NULL;
7143 reader->abbrev_table = abbrev_table;
7144 }
7145
7146 /* Subroutine of init_cutu_and_read_dies to simplify it.
7147 Read in the rest of a CU/TU top level DIE from DWO_UNIT.
7148 There's just a lot of work to do, and init_cutu_and_read_dies is big enough
7149 already.
7150
7151 STUB_COMP_UNIT_DIE is for the stub DIE, we copy over certain attributes
7152 from it to the DIE in the DWO. If NULL we are skipping the stub.
7153 STUB_COMP_DIR is similar to STUB_COMP_UNIT_DIE: When reading a TU directly
7154 from the DWO file, bypassing the stub, it contains the DW_AT_comp_dir
7155 attribute of the referencing CU. At most one of STUB_COMP_UNIT_DIE and
7156 STUB_COMP_DIR may be non-NULL.
7157 *RESULT_READER,*RESULT_INFO_PTR,*RESULT_COMP_UNIT_DIE,*RESULT_HAS_CHILDREN
7158 are filled in with the info of the DIE from the DWO file.
7159 *RESULT_DWO_ABBREV_TABLE will be filled in with the abbrev table allocated
7160 from the dwo. Since *RESULT_READER references this abbrev table, it must be
7161 kept around for at least as long as *RESULT_READER.
7162
7163 The result is non-zero if a valid (non-dummy) DIE was found. */
7164
7165 static int
7166 read_cutu_die_from_dwo (struct dwarf2_per_cu_data *this_cu,
7167 struct dwo_unit *dwo_unit,
7168 struct die_info *stub_comp_unit_die,
7169 const char *stub_comp_dir,
7170 struct die_reader_specs *result_reader,
7171 const gdb_byte **result_info_ptr,
7172 struct die_info **result_comp_unit_die,
7173 int *result_has_children,
7174 abbrev_table_up *result_dwo_abbrev_table)
7175 {
7176 struct dwarf2_per_objfile *dwarf2_per_objfile = this_cu->dwarf2_per_objfile;
7177 struct objfile *objfile = dwarf2_per_objfile->objfile;
7178 struct dwarf2_cu *cu = this_cu->cu;
7179 bfd *abfd;
7180 const gdb_byte *begin_info_ptr, *info_ptr;
7181 struct attribute *comp_dir, *stmt_list, *low_pc, *high_pc, *ranges;
7182 int i,num_extra_attrs;
7183 struct dwarf2_section_info *dwo_abbrev_section;
7184 struct attribute *attr;
7185 struct die_info *comp_unit_die;
7186
7187 /* At most one of these may be provided. */
7188 gdb_assert ((stub_comp_unit_die != NULL) + (stub_comp_dir != NULL) <= 1);
7189
7190 /* These attributes aren't processed until later:
7191 DW_AT_stmt_list, DW_AT_low_pc, DW_AT_high_pc, DW_AT_ranges.
7192 DW_AT_comp_dir is used now, to find the DWO file, but it is also
7193 referenced later. However, these attributes are found in the stub
7194 which we won't have later. In order to not impose this complication
7195 on the rest of the code, we read them here and copy them to the
7196 DWO CU/TU die. */
7197
7198 stmt_list = NULL;
7199 low_pc = NULL;
7200 high_pc = NULL;
7201 ranges = NULL;
7202 comp_dir = NULL;
7203
7204 if (stub_comp_unit_die != NULL)
7205 {
7206 /* For TUs in DWO files, the DW_AT_stmt_list attribute lives in the
7207 DWO file. */
7208 if (! this_cu->is_debug_types)
7209 stmt_list = dwarf2_attr (stub_comp_unit_die, DW_AT_stmt_list, cu);
7210 low_pc = dwarf2_attr (stub_comp_unit_die, DW_AT_low_pc, cu);
7211 high_pc = dwarf2_attr (stub_comp_unit_die, DW_AT_high_pc, cu);
7212 ranges = dwarf2_attr (stub_comp_unit_die, DW_AT_ranges, cu);
7213 comp_dir = dwarf2_attr (stub_comp_unit_die, DW_AT_comp_dir, cu);
7214
7215 /* There should be a DW_AT_addr_base attribute here (if needed).
7216 We need the value before we can process DW_FORM_GNU_addr_index. */
7217 cu->addr_base = 0;
7218 attr = dwarf2_attr (stub_comp_unit_die, DW_AT_GNU_addr_base, cu);
7219 if (attr)
7220 cu->addr_base = DW_UNSND (attr);
7221
7222 /* There should be a DW_AT_ranges_base attribute here (if needed).
7223 We need the value before we can process DW_AT_ranges. */
7224 cu->ranges_base = 0;
7225 attr = dwarf2_attr (stub_comp_unit_die, DW_AT_GNU_ranges_base, cu);
7226 if (attr)
7227 cu->ranges_base = DW_UNSND (attr);
7228 }
7229 else if (stub_comp_dir != NULL)
7230 {
7231 /* Reconstruct the comp_dir attribute to simplify the code below. */
7232 comp_dir = XOBNEW (&cu->comp_unit_obstack, struct attribute);
7233 comp_dir->name = DW_AT_comp_dir;
7234 comp_dir->form = DW_FORM_string;
7235 DW_STRING_IS_CANONICAL (comp_dir) = 0;
7236 DW_STRING (comp_dir) = stub_comp_dir;
7237 }
7238
7239 /* Set up for reading the DWO CU/TU. */
7240 cu->dwo_unit = dwo_unit;
7241 dwarf2_section_info *section = dwo_unit->section;
7242 dwarf2_read_section (objfile, section);
7243 abfd = get_section_bfd_owner (section);
7244 begin_info_ptr = info_ptr = (section->buffer
7245 + to_underlying (dwo_unit->sect_off));
7246 dwo_abbrev_section = &dwo_unit->dwo_file->sections.abbrev;
7247
7248 if (this_cu->is_debug_types)
7249 {
7250 struct signatured_type *sig_type = (struct signatured_type *) this_cu;
7251
7252 info_ptr = read_and_check_comp_unit_head (dwarf2_per_objfile,
7253 &cu->header, section,
7254 dwo_abbrev_section,
7255 info_ptr, rcuh_kind::TYPE);
7256 /* This is not an assert because it can be caused by bad debug info. */
7257 if (sig_type->signature != cu->header.signature)
7258 {
7259 error (_("Dwarf Error: signature mismatch %s vs %s while reading"
7260 " TU at offset %s [in module %s]"),
7261 hex_string (sig_type->signature),
7262 hex_string (cu->header.signature),
7263 sect_offset_str (dwo_unit->sect_off),
7264 bfd_get_filename (abfd));
7265 }
7266 gdb_assert (dwo_unit->sect_off == cu->header.sect_off);
7267 /* For DWOs coming from DWP files, we don't know the CU length
7268 nor the type's offset in the TU until now. */
7269 dwo_unit->length = get_cu_length (&cu->header);
7270 dwo_unit->type_offset_in_tu = cu->header.type_cu_offset_in_tu;
7271
7272 /* Establish the type offset that can be used to lookup the type.
7273 For DWO files, we don't know it until now. */
7274 sig_type->type_offset_in_section
7275 = dwo_unit->sect_off + to_underlying (dwo_unit->type_offset_in_tu);
7276 }
7277 else
7278 {
7279 info_ptr = read_and_check_comp_unit_head (dwarf2_per_objfile,
7280 &cu->header, section,
7281 dwo_abbrev_section,
7282 info_ptr, rcuh_kind::COMPILE);
7283 gdb_assert (dwo_unit->sect_off == cu->header.sect_off);
7284 /* For DWOs coming from DWP files, we don't know the CU length
7285 until now. */
7286 dwo_unit->length = get_cu_length (&cu->header);
7287 }
7288
7289 *result_dwo_abbrev_table
7290 = abbrev_table_read_table (dwarf2_per_objfile, dwo_abbrev_section,
7291 cu->header.abbrev_sect_off);
7292 init_cu_die_reader (result_reader, cu, section, dwo_unit->dwo_file,
7293 result_dwo_abbrev_table->get ());
7294
7295 /* Read in the die, but leave space to copy over the attributes
7296 from the stub. This has the benefit of simplifying the rest of
7297 the code - all the work to maintain the illusion of a single
7298 DW_TAG_{compile,type}_unit DIE is done here. */
7299 num_extra_attrs = ((stmt_list != NULL)
7300 + (low_pc != NULL)
7301 + (high_pc != NULL)
7302 + (ranges != NULL)
7303 + (comp_dir != NULL));
7304 info_ptr = read_full_die_1 (result_reader, result_comp_unit_die, info_ptr,
7305 result_has_children, num_extra_attrs);
7306
7307 /* Copy over the attributes from the stub to the DIE we just read in. */
7308 comp_unit_die = *result_comp_unit_die;
7309 i = comp_unit_die->num_attrs;
7310 if (stmt_list != NULL)
7311 comp_unit_die->attrs[i++] = *stmt_list;
7312 if (low_pc != NULL)
7313 comp_unit_die->attrs[i++] = *low_pc;
7314 if (high_pc != NULL)
7315 comp_unit_die->attrs[i++] = *high_pc;
7316 if (ranges != NULL)
7317 comp_unit_die->attrs[i++] = *ranges;
7318 if (comp_dir != NULL)
7319 comp_unit_die->attrs[i++] = *comp_dir;
7320 comp_unit_die->num_attrs += num_extra_attrs;
7321
7322 if (dwarf_die_debug)
7323 {
7324 fprintf_unfiltered (gdb_stdlog,
7325 "Read die from %s@0x%x of %s:\n",
7326 get_section_name (section),
7327 (unsigned) (begin_info_ptr - section->buffer),
7328 bfd_get_filename (abfd));
7329 dump_die (comp_unit_die, dwarf_die_debug);
7330 }
7331
7332 /* Save the comp_dir attribute. If there is no DWP file then we'll read
7333 TUs by skipping the stub and going directly to the entry in the DWO file.
7334 However, skipping the stub means we won't get DW_AT_comp_dir, so we have
7335 to get it via circuitous means. Blech. */
7336 if (comp_dir != NULL)
7337 result_reader->comp_dir = DW_STRING (comp_dir);
7338
7339 /* Skip dummy compilation units. */
7340 if (info_ptr >= begin_info_ptr + dwo_unit->length
7341 || peek_abbrev_code (abfd, info_ptr) == 0)
7342 return 0;
7343
7344 *result_info_ptr = info_ptr;
7345 return 1;
7346 }
7347
7348 /* Subroutine of init_cutu_and_read_dies to simplify it.
7349 Look up the DWO unit specified by COMP_UNIT_DIE of THIS_CU.
7350 Returns NULL if the specified DWO unit cannot be found. */
7351
7352 static struct dwo_unit *
7353 lookup_dwo_unit (struct dwarf2_per_cu_data *this_cu,
7354 struct die_info *comp_unit_die)
7355 {
7356 struct dwarf2_cu *cu = this_cu->cu;
7357 ULONGEST signature;
7358 struct dwo_unit *dwo_unit;
7359 const char *comp_dir, *dwo_name;
7360
7361 gdb_assert (cu != NULL);
7362
7363 /* Yeah, we look dwo_name up again, but it simplifies the code. */
7364 dwo_name = dwarf2_string_attr (comp_unit_die, DW_AT_GNU_dwo_name, cu);
7365 comp_dir = dwarf2_string_attr (comp_unit_die, DW_AT_comp_dir, cu);
7366
7367 if (this_cu->is_debug_types)
7368 {
7369 struct signatured_type *sig_type;
7370
7371 /* Since this_cu is the first member of struct signatured_type,
7372 we can go from a pointer to one to a pointer to the other. */
7373 sig_type = (struct signatured_type *) this_cu;
7374 signature = sig_type->signature;
7375 dwo_unit = lookup_dwo_type_unit (sig_type, dwo_name, comp_dir);
7376 }
7377 else
7378 {
7379 struct attribute *attr;
7380
7381 attr = dwarf2_attr (comp_unit_die, DW_AT_GNU_dwo_id, cu);
7382 if (! attr)
7383 error (_("Dwarf Error: missing dwo_id for dwo_name %s"
7384 " [in module %s]"),
7385 dwo_name, objfile_name (this_cu->dwarf2_per_objfile->objfile));
7386 signature = DW_UNSND (attr);
7387 dwo_unit = lookup_dwo_comp_unit (this_cu, dwo_name, comp_dir,
7388 signature);
7389 }
7390
7391 return dwo_unit;
7392 }
7393
7394 /* Subroutine of init_cutu_and_read_dies to simplify it.
7395 See it for a description of the parameters.
7396 Read a TU directly from a DWO file, bypassing the stub. */
7397
7398 static void
7399 init_tu_and_read_dwo_dies (struct dwarf2_per_cu_data *this_cu,
7400 int use_existing_cu, int keep,
7401 die_reader_func_ftype *die_reader_func,
7402 void *data)
7403 {
7404 std::unique_ptr<dwarf2_cu> new_cu;
7405 struct signatured_type *sig_type;
7406 struct die_reader_specs reader;
7407 const gdb_byte *info_ptr;
7408 struct die_info *comp_unit_die;
7409 int has_children;
7410 struct dwarf2_per_objfile *dwarf2_per_objfile = this_cu->dwarf2_per_objfile;
7411
7412 /* Verify we can do the following downcast, and that we have the
7413 data we need. */
7414 gdb_assert (this_cu->is_debug_types && this_cu->reading_dwo_directly);
7415 sig_type = (struct signatured_type *) this_cu;
7416 gdb_assert (sig_type->dwo_unit != NULL);
7417
7418 if (use_existing_cu && this_cu->cu != NULL)
7419 {
7420 gdb_assert (this_cu->cu->dwo_unit == sig_type->dwo_unit);
7421 /* There's no need to do the rereading_dwo_cu handling that
7422 init_cutu_and_read_dies does since we don't read the stub. */
7423 }
7424 else
7425 {
7426 /* If !use_existing_cu, this_cu->cu must be NULL. */
7427 gdb_assert (this_cu->cu == NULL);
7428 new_cu.reset (new dwarf2_cu (this_cu));
7429 }
7430
7431 /* A future optimization, if needed, would be to use an existing
7432 abbrev table. When reading DWOs with skeletonless TUs, all the TUs
7433 could share abbrev tables. */
7434
7435 /* The abbreviation table used by READER, this must live at least as long as
7436 READER. */
7437 abbrev_table_up dwo_abbrev_table;
7438
7439 if (read_cutu_die_from_dwo (this_cu, sig_type->dwo_unit,
7440 NULL /* stub_comp_unit_die */,
7441 sig_type->dwo_unit->dwo_file->comp_dir,
7442 &reader, &info_ptr,
7443 &comp_unit_die, &has_children,
7444 &dwo_abbrev_table) == 0)
7445 {
7446 /* Dummy die. */
7447 return;
7448 }
7449
7450 /* All the "real" work is done here. */
7451 die_reader_func (&reader, info_ptr, comp_unit_die, has_children, data);
7452
7453 /* This duplicates the code in init_cutu_and_read_dies,
7454 but the alternative is making the latter more complex.
7455 This function is only for the special case of using DWO files directly:
7456 no point in overly complicating the general case just to handle this. */
7457 if (new_cu != NULL && keep)
7458 {
7459 /* Link this CU into read_in_chain. */
7460 this_cu->cu->read_in_chain = dwarf2_per_objfile->read_in_chain;
7461 dwarf2_per_objfile->read_in_chain = this_cu;
7462 /* The chain owns it now. */
7463 new_cu.release ();
7464 }
7465 }
7466
7467 /* Initialize a CU (or TU) and read its DIEs.
7468 If the CU defers to a DWO file, read the DWO file as well.
7469
7470 ABBREV_TABLE, if non-NULL, is the abbreviation table to use.
7471 Otherwise the table specified in the comp unit header is read in and used.
7472 This is an optimization for when we already have the abbrev table.
7473
7474 If USE_EXISTING_CU is non-zero, and THIS_CU->cu is non-NULL, then use it.
7475 Otherwise, a new CU is allocated with xmalloc.
7476
7477 If KEEP is non-zero, then if we allocated a dwarf2_cu we add it to
7478 read_in_chain. Otherwise the dwarf2_cu data is freed at the end.
7479
7480 WARNING: If THIS_CU is a "dummy CU" (used as filler by the incremental
7481 linker) then DIE_READER_FUNC will not get called. */
7482
7483 static void
7484 init_cutu_and_read_dies (struct dwarf2_per_cu_data *this_cu,
7485 struct abbrev_table *abbrev_table,
7486 int use_existing_cu, int keep,
7487 die_reader_func_ftype *die_reader_func,
7488 void *data)
7489 {
7490 struct dwarf2_per_objfile *dwarf2_per_objfile = this_cu->dwarf2_per_objfile;
7491 struct objfile *objfile = dwarf2_per_objfile->objfile;
7492 struct dwarf2_section_info *section = this_cu->section;
7493 bfd *abfd = get_section_bfd_owner (section);
7494 struct dwarf2_cu *cu;
7495 const gdb_byte *begin_info_ptr, *info_ptr;
7496 struct die_reader_specs reader;
7497 struct die_info *comp_unit_die;
7498 int has_children;
7499 struct attribute *attr;
7500 struct signatured_type *sig_type = NULL;
7501 struct dwarf2_section_info *abbrev_section;
7502 /* Non-zero if CU currently points to a DWO file and we need to
7503 reread it. When this happens we need to reread the skeleton die
7504 before we can reread the DWO file (this only applies to CUs, not TUs). */
7505 int rereading_dwo_cu = 0;
7506
7507 if (dwarf_die_debug)
7508 fprintf_unfiltered (gdb_stdlog, "Reading %s unit at offset %s\n",
7509 this_cu->is_debug_types ? "type" : "comp",
7510 sect_offset_str (this_cu->sect_off));
7511
7512 if (use_existing_cu)
7513 gdb_assert (keep);
7514
7515 /* If we're reading a TU directly from a DWO file, including a virtual DWO
7516 file (instead of going through the stub), short-circuit all of this. */
7517 if (this_cu->reading_dwo_directly)
7518 {
7519 /* Narrow down the scope of possibilities to have to understand. */
7520 gdb_assert (this_cu->is_debug_types);
7521 gdb_assert (abbrev_table == NULL);
7522 init_tu_and_read_dwo_dies (this_cu, use_existing_cu, keep,
7523 die_reader_func, data);
7524 return;
7525 }
7526
7527 /* This is cheap if the section is already read in. */
7528 dwarf2_read_section (objfile, section);
7529
7530 begin_info_ptr = info_ptr = section->buffer + to_underlying (this_cu->sect_off);
7531
7532 abbrev_section = get_abbrev_section_for_cu (this_cu);
7533
7534 std::unique_ptr<dwarf2_cu> new_cu;
7535 if (use_existing_cu && this_cu->cu != NULL)
7536 {
7537 cu = this_cu->cu;
7538 /* If this CU is from a DWO file we need to start over, we need to
7539 refetch the attributes from the skeleton CU.
7540 This could be optimized by retrieving those attributes from when we
7541 were here the first time: the previous comp_unit_die was stored in
7542 comp_unit_obstack. But there's no data yet that we need this
7543 optimization. */
7544 if (cu->dwo_unit != NULL)
7545 rereading_dwo_cu = 1;
7546 }
7547 else
7548 {
7549 /* If !use_existing_cu, this_cu->cu must be NULL. */
7550 gdb_assert (this_cu->cu == NULL);
7551 new_cu.reset (new dwarf2_cu (this_cu));
7552 cu = new_cu.get ();
7553 }
7554
7555 /* Get the header. */
7556 if (to_underlying (cu->header.first_die_cu_offset) != 0 && !rereading_dwo_cu)
7557 {
7558 /* We already have the header, there's no need to read it in again. */
7559 info_ptr += to_underlying (cu->header.first_die_cu_offset);
7560 }
7561 else
7562 {
7563 if (this_cu->is_debug_types)
7564 {
7565 info_ptr = read_and_check_comp_unit_head (dwarf2_per_objfile,
7566 &cu->header, section,
7567 abbrev_section, info_ptr,
7568 rcuh_kind::TYPE);
7569
7570 /* Since per_cu is the first member of struct signatured_type,
7571 we can go from a pointer to one to a pointer to the other. */
7572 sig_type = (struct signatured_type *) this_cu;
7573 gdb_assert (sig_type->signature == cu->header.signature);
7574 gdb_assert (sig_type->type_offset_in_tu
7575 == cu->header.type_cu_offset_in_tu);
7576 gdb_assert (this_cu->sect_off == cu->header.sect_off);
7577
7578 /* LENGTH has not been set yet for type units if we're
7579 using .gdb_index. */
7580 this_cu->length = get_cu_length (&cu->header);
7581
7582 /* Establish the type offset that can be used to lookup the type. */
7583 sig_type->type_offset_in_section =
7584 this_cu->sect_off + to_underlying (sig_type->type_offset_in_tu);
7585
7586 this_cu->dwarf_version = cu->header.version;
7587 }
7588 else
7589 {
7590 info_ptr = read_and_check_comp_unit_head (dwarf2_per_objfile,
7591 &cu->header, section,
7592 abbrev_section,
7593 info_ptr,
7594 rcuh_kind::COMPILE);
7595
7596 gdb_assert (this_cu->sect_off == cu->header.sect_off);
7597 gdb_assert (this_cu->length == get_cu_length (&cu->header));
7598 this_cu->dwarf_version = cu->header.version;
7599 }
7600 }
7601
7602 /* Skip dummy compilation units. */
7603 if (info_ptr >= begin_info_ptr + this_cu->length
7604 || peek_abbrev_code (abfd, info_ptr) == 0)
7605 return;
7606
7607 /* If we don't have them yet, read the abbrevs for this compilation unit.
7608 And if we need to read them now, make sure they're freed when we're
7609 done (own the table through ABBREV_TABLE_HOLDER). */
7610 abbrev_table_up abbrev_table_holder;
7611 if (abbrev_table != NULL)
7612 gdb_assert (cu->header.abbrev_sect_off == abbrev_table->sect_off);
7613 else
7614 {
7615 abbrev_table_holder
7616 = abbrev_table_read_table (dwarf2_per_objfile, abbrev_section,
7617 cu->header.abbrev_sect_off);
7618 abbrev_table = abbrev_table_holder.get ();
7619 }
7620
7621 /* Read the top level CU/TU die. */
7622 init_cu_die_reader (&reader, cu, section, NULL, abbrev_table);
7623 info_ptr = read_full_die (&reader, &comp_unit_die, info_ptr, &has_children);
7624
7625 /* If we are in a DWO stub, process it and then read in the "real" CU/TU
7626 from the DWO file. read_cutu_die_from_dwo will allocate the abbreviation
7627 table from the DWO file and pass the ownership over to us. It will be
7628 referenced from READER, so we must make sure to free it after we're done
7629 with READER.
7630
7631 Note that if USE_EXISTING_OK != 0, and THIS_CU->cu already contains a
7632 DWO CU, that this test will fail (the attribute will not be present). */
7633 attr = dwarf2_attr (comp_unit_die, DW_AT_GNU_dwo_name, cu);
7634 abbrev_table_up dwo_abbrev_table;
7635 if (attr)
7636 {
7637 struct dwo_unit *dwo_unit;
7638 struct die_info *dwo_comp_unit_die;
7639
7640 if (has_children)
7641 {
7642 complaint (&symfile_complaints,
7643 _("compilation unit with DW_AT_GNU_dwo_name"
7644 " has children (offset %s) [in module %s]"),
7645 sect_offset_str (this_cu->sect_off),
7646 bfd_get_filename (abfd));
7647 }
7648 dwo_unit = lookup_dwo_unit (this_cu, comp_unit_die);
7649 if (dwo_unit != NULL)
7650 {
7651 if (read_cutu_die_from_dwo (this_cu, dwo_unit,
7652 comp_unit_die, NULL,
7653 &reader, &info_ptr,
7654 &dwo_comp_unit_die, &has_children,
7655 &dwo_abbrev_table) == 0)
7656 {
7657 /* Dummy die. */
7658 return;
7659 }
7660 comp_unit_die = dwo_comp_unit_die;
7661 }
7662 else
7663 {
7664 /* Yikes, we couldn't find the rest of the DIE, we only have
7665 the stub. A complaint has already been logged. There's
7666 not much more we can do except pass on the stub DIE to
7667 die_reader_func. We don't want to throw an error on bad
7668 debug info. */
7669 }
7670 }
7671
7672 /* All of the above is setup for this call. Yikes. */
7673 die_reader_func (&reader, info_ptr, comp_unit_die, has_children, data);
7674
7675 /* Done, clean up. */
7676 if (new_cu != NULL && keep)
7677 {
7678 /* Link this CU into read_in_chain. */
7679 this_cu->cu->read_in_chain = dwarf2_per_objfile->read_in_chain;
7680 dwarf2_per_objfile->read_in_chain = this_cu;
7681 /* The chain owns it now. */
7682 new_cu.release ();
7683 }
7684 }
7685
7686 /* Read CU/TU THIS_CU but do not follow DW_AT_GNU_dwo_name if present.
7687 DWO_FILE, if non-NULL, is the DWO file to read (the caller is assumed
7688 to have already done the lookup to find the DWO file).
7689
7690 The caller is required to fill in THIS_CU->section, THIS_CU->offset, and
7691 THIS_CU->is_debug_types, but nothing else.
7692
7693 We fill in THIS_CU->length.
7694
7695 WARNING: If THIS_CU is a "dummy CU" (used as filler by the incremental
7696 linker) then DIE_READER_FUNC will not get called.
7697
7698 THIS_CU->cu is always freed when done.
7699 This is done in order to not leave THIS_CU->cu in a state where we have
7700 to care whether it refers to the "main" CU or the DWO CU. */
7701
7702 static void
7703 init_cutu_and_read_dies_no_follow (struct dwarf2_per_cu_data *this_cu,
7704 struct dwo_file *dwo_file,
7705 die_reader_func_ftype *die_reader_func,
7706 void *data)
7707 {
7708 struct dwarf2_per_objfile *dwarf2_per_objfile = this_cu->dwarf2_per_objfile;
7709 struct objfile *objfile = dwarf2_per_objfile->objfile;
7710 struct dwarf2_section_info *section = this_cu->section;
7711 bfd *abfd = get_section_bfd_owner (section);
7712 struct dwarf2_section_info *abbrev_section;
7713 const gdb_byte *begin_info_ptr, *info_ptr;
7714 struct die_reader_specs reader;
7715 struct die_info *comp_unit_die;
7716 int has_children;
7717
7718 if (dwarf_die_debug)
7719 fprintf_unfiltered (gdb_stdlog, "Reading %s unit at offset %s\n",
7720 this_cu->is_debug_types ? "type" : "comp",
7721 sect_offset_str (this_cu->sect_off));
7722
7723 gdb_assert (this_cu->cu == NULL);
7724
7725 abbrev_section = (dwo_file != NULL
7726 ? &dwo_file->sections.abbrev
7727 : get_abbrev_section_for_cu (this_cu));
7728
7729 /* This is cheap if the section is already read in. */
7730 dwarf2_read_section (objfile, section);
7731
7732 struct dwarf2_cu cu (this_cu);
7733
7734 begin_info_ptr = info_ptr = section->buffer + to_underlying (this_cu->sect_off);
7735 info_ptr = read_and_check_comp_unit_head (dwarf2_per_objfile,
7736 &cu.header, section,
7737 abbrev_section, info_ptr,
7738 (this_cu->is_debug_types
7739 ? rcuh_kind::TYPE
7740 : rcuh_kind::COMPILE));
7741
7742 this_cu->length = get_cu_length (&cu.header);
7743
7744 /* Skip dummy compilation units. */
7745 if (info_ptr >= begin_info_ptr + this_cu->length
7746 || peek_abbrev_code (abfd, info_ptr) == 0)
7747 return;
7748
7749 abbrev_table_up abbrev_table
7750 = abbrev_table_read_table (dwarf2_per_objfile, abbrev_section,
7751 cu.header.abbrev_sect_off);
7752
7753 init_cu_die_reader (&reader, &cu, section, dwo_file, abbrev_table.get ());
7754 info_ptr = read_full_die (&reader, &comp_unit_die, info_ptr, &has_children);
7755
7756 die_reader_func (&reader, info_ptr, comp_unit_die, has_children, data);
7757 }
7758
7759 /* Read a CU/TU, except that this does not look for DW_AT_GNU_dwo_name and
7760 does not lookup the specified DWO file.
7761 This cannot be used to read DWO files.
7762
7763 THIS_CU->cu is always freed when done.
7764 This is done in order to not leave THIS_CU->cu in a state where we have
7765 to care whether it refers to the "main" CU or the DWO CU.
7766 We can revisit this if the data shows there's a performance issue. */
7767
7768 static void
7769 init_cutu_and_read_dies_simple (struct dwarf2_per_cu_data *this_cu,
7770 die_reader_func_ftype *die_reader_func,
7771 void *data)
7772 {
7773 init_cutu_and_read_dies_no_follow (this_cu, NULL, die_reader_func, data);
7774 }
7775 \f
7776 /* Type Unit Groups.
7777
7778 Type Unit Groups are a way to collapse the set of all TUs (type units) into
7779 a more manageable set. The grouping is done by DW_AT_stmt_list entry
7780 so that all types coming from the same compilation (.o file) are grouped
7781 together. A future step could be to put the types in the same symtab as
7782 the CU the types ultimately came from. */
7783
7784 static hashval_t
7785 hash_type_unit_group (const void *item)
7786 {
7787 const struct type_unit_group *tu_group
7788 = (const struct type_unit_group *) item;
7789
7790 return hash_stmt_list_entry (&tu_group->hash);
7791 }
7792
7793 static int
7794 eq_type_unit_group (const void *item_lhs, const void *item_rhs)
7795 {
7796 const struct type_unit_group *lhs = (const struct type_unit_group *) item_lhs;
7797 const struct type_unit_group *rhs = (const struct type_unit_group *) item_rhs;
7798
7799 return eq_stmt_list_entry (&lhs->hash, &rhs->hash);
7800 }
7801
7802 /* Allocate a hash table for type unit groups. */
7803
7804 static htab_t
7805 allocate_type_unit_groups_table (struct objfile *objfile)
7806 {
7807 return htab_create_alloc_ex (3,
7808 hash_type_unit_group,
7809 eq_type_unit_group,
7810 NULL,
7811 &objfile->objfile_obstack,
7812 hashtab_obstack_allocate,
7813 dummy_obstack_deallocate);
7814 }
7815
7816 /* Type units that don't have DW_AT_stmt_list are grouped into their own
7817 partial symtabs. We combine several TUs per psymtab to not let the size
7818 of any one psymtab grow too big. */
7819 #define NO_STMT_LIST_TYPE_UNIT_PSYMTAB (1 << 31)
7820 #define NO_STMT_LIST_TYPE_UNIT_PSYMTAB_SIZE 10
7821
7822 /* Helper routine for get_type_unit_group.
7823 Create the type_unit_group object used to hold one or more TUs. */
7824
7825 static struct type_unit_group *
7826 create_type_unit_group (struct dwarf2_cu *cu, sect_offset line_offset_struct)
7827 {
7828 struct dwarf2_per_objfile *dwarf2_per_objfile
7829 = cu->per_cu->dwarf2_per_objfile;
7830 struct objfile *objfile = dwarf2_per_objfile->objfile;
7831 struct dwarf2_per_cu_data *per_cu;
7832 struct type_unit_group *tu_group;
7833
7834 tu_group = OBSTACK_ZALLOC (&objfile->objfile_obstack,
7835 struct type_unit_group);
7836 per_cu = &tu_group->per_cu;
7837 per_cu->dwarf2_per_objfile = dwarf2_per_objfile;
7838
7839 if (dwarf2_per_objfile->using_index)
7840 {
7841 per_cu->v.quick = OBSTACK_ZALLOC (&objfile->objfile_obstack,
7842 struct dwarf2_per_cu_quick_data);
7843 }
7844 else
7845 {
7846 unsigned int line_offset = to_underlying (line_offset_struct);
7847 struct partial_symtab *pst;
7848 char *name;
7849
7850 /* Give the symtab a useful name for debug purposes. */
7851 if ((line_offset & NO_STMT_LIST_TYPE_UNIT_PSYMTAB) != 0)
7852 name = xstrprintf ("<type_units_%d>",
7853 (line_offset & ~NO_STMT_LIST_TYPE_UNIT_PSYMTAB));
7854 else
7855 name = xstrprintf ("<type_units_at_0x%x>", line_offset);
7856
7857 pst = create_partial_symtab (per_cu, name);
7858 pst->anonymous = 1;
7859
7860 xfree (name);
7861 }
7862
7863 tu_group->hash.dwo_unit = cu->dwo_unit;
7864 tu_group->hash.line_sect_off = line_offset_struct;
7865
7866 return tu_group;
7867 }
7868
7869 /* Look up the type_unit_group for type unit CU, and create it if necessary.
7870 STMT_LIST is a DW_AT_stmt_list attribute. */
7871
7872 static struct type_unit_group *
7873 get_type_unit_group (struct dwarf2_cu *cu, const struct attribute *stmt_list)
7874 {
7875 struct dwarf2_per_objfile *dwarf2_per_objfile
7876 = cu->per_cu->dwarf2_per_objfile;
7877 struct tu_stats *tu_stats = &dwarf2_per_objfile->tu_stats;
7878 struct type_unit_group *tu_group;
7879 void **slot;
7880 unsigned int line_offset;
7881 struct type_unit_group type_unit_group_for_lookup;
7882
7883 if (dwarf2_per_objfile->type_unit_groups == NULL)
7884 {
7885 dwarf2_per_objfile->type_unit_groups =
7886 allocate_type_unit_groups_table (dwarf2_per_objfile->objfile);
7887 }
7888
7889 /* Do we need to create a new group, or can we use an existing one? */
7890
7891 if (stmt_list)
7892 {
7893 line_offset = DW_UNSND (stmt_list);
7894 ++tu_stats->nr_symtab_sharers;
7895 }
7896 else
7897 {
7898 /* Ugh, no stmt_list. Rare, but we have to handle it.
7899 We can do various things here like create one group per TU or
7900 spread them over multiple groups to split up the expansion work.
7901 To avoid worst case scenarios (too many groups or too large groups)
7902 we, umm, group them in bunches. */
7903 line_offset = (NO_STMT_LIST_TYPE_UNIT_PSYMTAB
7904 | (tu_stats->nr_stmt_less_type_units
7905 / NO_STMT_LIST_TYPE_UNIT_PSYMTAB_SIZE));
7906 ++tu_stats->nr_stmt_less_type_units;
7907 }
7908
7909 type_unit_group_for_lookup.hash.dwo_unit = cu->dwo_unit;
7910 type_unit_group_for_lookup.hash.line_sect_off = (sect_offset) line_offset;
7911 slot = htab_find_slot (dwarf2_per_objfile->type_unit_groups,
7912 &type_unit_group_for_lookup, INSERT);
7913 if (*slot != NULL)
7914 {
7915 tu_group = (struct type_unit_group *) *slot;
7916 gdb_assert (tu_group != NULL);
7917 }
7918 else
7919 {
7920 sect_offset line_offset_struct = (sect_offset) line_offset;
7921 tu_group = create_type_unit_group (cu, line_offset_struct);
7922 *slot = tu_group;
7923 ++tu_stats->nr_symtabs;
7924 }
7925
7926 return tu_group;
7927 }
7928 \f
7929 /* Partial symbol tables. */
7930
7931 /* Create a psymtab named NAME and assign it to PER_CU.
7932
7933 The caller must fill in the following details:
7934 dirname, textlow, texthigh. */
7935
7936 static struct partial_symtab *
7937 create_partial_symtab (struct dwarf2_per_cu_data *per_cu, const char *name)
7938 {
7939 struct objfile *objfile = per_cu->dwarf2_per_objfile->objfile;
7940 struct partial_symtab *pst;
7941
7942 pst = start_psymtab_common (objfile, name, 0,
7943 objfile->global_psymbols,
7944 objfile->static_psymbols);
7945
7946 pst->psymtabs_addrmap_supported = 1;
7947
7948 /* This is the glue that links PST into GDB's symbol API. */
7949 pst->read_symtab_private = per_cu;
7950 pst->read_symtab = dwarf2_read_symtab;
7951 per_cu->v.psymtab = pst;
7952
7953 return pst;
7954 }
7955
7956 /* The DATA object passed to process_psymtab_comp_unit_reader has this
7957 type. */
7958
7959 struct process_psymtab_comp_unit_data
7960 {
7961 /* True if we are reading a DW_TAG_partial_unit. */
7962
7963 int want_partial_unit;
7964
7965 /* The "pretend" language that is used if the CU doesn't declare a
7966 language. */
7967
7968 enum language pretend_language;
7969 };
7970
7971 /* die_reader_func for process_psymtab_comp_unit. */
7972
7973 static void
7974 process_psymtab_comp_unit_reader (const struct die_reader_specs *reader,
7975 const gdb_byte *info_ptr,
7976 struct die_info *comp_unit_die,
7977 int has_children,
7978 void *data)
7979 {
7980 struct dwarf2_cu *cu = reader->cu;
7981 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
7982 struct gdbarch *gdbarch = get_objfile_arch (objfile);
7983 struct dwarf2_per_cu_data *per_cu = cu->per_cu;
7984 CORE_ADDR baseaddr;
7985 CORE_ADDR best_lowpc = 0, best_highpc = 0;
7986 struct partial_symtab *pst;
7987 enum pc_bounds_kind cu_bounds_kind;
7988 const char *filename;
7989 struct process_psymtab_comp_unit_data *info
7990 = (struct process_psymtab_comp_unit_data *) data;
7991
7992 if (comp_unit_die->tag == DW_TAG_partial_unit && !info->want_partial_unit)
7993 return;
7994
7995 gdb_assert (! per_cu->is_debug_types);
7996
7997 prepare_one_comp_unit (cu, comp_unit_die, info->pretend_language);
7998
7999 cu->list_in_scope = &file_symbols;
8000
8001 /* Allocate a new partial symbol table structure. */
8002 filename = dwarf2_string_attr (comp_unit_die, DW_AT_name, cu);
8003 if (filename == NULL)
8004 filename = "";
8005
8006 pst = create_partial_symtab (per_cu, filename);
8007
8008 /* This must be done before calling dwarf2_build_include_psymtabs. */
8009 pst->dirname = dwarf2_string_attr (comp_unit_die, DW_AT_comp_dir, cu);
8010
8011 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
8012
8013 dwarf2_find_base_address (comp_unit_die, cu);
8014
8015 /* Possibly set the default values of LOWPC and HIGHPC from
8016 `DW_AT_ranges'. */
8017 cu_bounds_kind = dwarf2_get_pc_bounds (comp_unit_die, &best_lowpc,
8018 &best_highpc, cu, pst);
8019 if (cu_bounds_kind == PC_BOUNDS_HIGH_LOW && best_lowpc < best_highpc)
8020 /* Store the contiguous range if it is not empty; it can be empty for
8021 CUs with no code. */
8022 addrmap_set_empty (objfile->psymtabs_addrmap,
8023 gdbarch_adjust_dwarf2_addr (gdbarch,
8024 best_lowpc + baseaddr),
8025 gdbarch_adjust_dwarf2_addr (gdbarch,
8026 best_highpc + baseaddr) - 1,
8027 pst);
8028
8029 /* Check if comp unit has_children.
8030 If so, read the rest of the partial symbols from this comp unit.
8031 If not, there's no more debug_info for this comp unit. */
8032 if (has_children)
8033 {
8034 struct partial_die_info *first_die;
8035 CORE_ADDR lowpc, highpc;
8036
8037 lowpc = ((CORE_ADDR) -1);
8038 highpc = ((CORE_ADDR) 0);
8039
8040 first_die = load_partial_dies (reader, info_ptr, 1);
8041
8042 scan_partial_symbols (first_die, &lowpc, &highpc,
8043 cu_bounds_kind <= PC_BOUNDS_INVALID, cu);
8044
8045 /* If we didn't find a lowpc, set it to highpc to avoid
8046 complaints from `maint check'. */
8047 if (lowpc == ((CORE_ADDR) -1))
8048 lowpc = highpc;
8049
8050 /* If the compilation unit didn't have an explicit address range,
8051 then use the information extracted from its child dies. */
8052 if (cu_bounds_kind <= PC_BOUNDS_INVALID)
8053 {
8054 best_lowpc = lowpc;
8055 best_highpc = highpc;
8056 }
8057 }
8058 pst->textlow = gdbarch_adjust_dwarf2_addr (gdbarch, best_lowpc + baseaddr);
8059 pst->texthigh = gdbarch_adjust_dwarf2_addr (gdbarch, best_highpc + baseaddr);
8060
8061 end_psymtab_common (objfile, pst);
8062
8063 if (!VEC_empty (dwarf2_per_cu_ptr, cu->per_cu->imported_symtabs))
8064 {
8065 int i;
8066 int len = VEC_length (dwarf2_per_cu_ptr, cu->per_cu->imported_symtabs);
8067 struct dwarf2_per_cu_data *iter;
8068
8069 /* Fill in 'dependencies' here; we fill in 'users' in a
8070 post-pass. */
8071 pst->number_of_dependencies = len;
8072 pst->dependencies =
8073 XOBNEWVEC (&objfile->objfile_obstack, struct partial_symtab *, len);
8074 for (i = 0;
8075 VEC_iterate (dwarf2_per_cu_ptr, cu->per_cu->imported_symtabs,
8076 i, iter);
8077 ++i)
8078 pst->dependencies[i] = iter->v.psymtab;
8079
8080 VEC_free (dwarf2_per_cu_ptr, cu->per_cu->imported_symtabs);
8081 }
8082
8083 /* Get the list of files included in the current compilation unit,
8084 and build a psymtab for each of them. */
8085 dwarf2_build_include_psymtabs (cu, comp_unit_die, pst);
8086
8087 if (dwarf_read_debug)
8088 {
8089 struct gdbarch *gdbarch = get_objfile_arch (objfile);
8090
8091 fprintf_unfiltered (gdb_stdlog,
8092 "Psymtab for %s unit @%s: %s - %s"
8093 ", %d global, %d static syms\n",
8094 per_cu->is_debug_types ? "type" : "comp",
8095 sect_offset_str (per_cu->sect_off),
8096 paddress (gdbarch, pst->textlow),
8097 paddress (gdbarch, pst->texthigh),
8098 pst->n_global_syms, pst->n_static_syms);
8099 }
8100 }
8101
8102 /* Subroutine of dwarf2_build_psymtabs_hard to simplify it.
8103 Process compilation unit THIS_CU for a psymtab. */
8104
8105 static void
8106 process_psymtab_comp_unit (struct dwarf2_per_cu_data *this_cu,
8107 int want_partial_unit,
8108 enum language pretend_language)
8109 {
8110 /* If this compilation unit was already read in, free the
8111 cached copy in order to read it in again. This is
8112 necessary because we skipped some symbols when we first
8113 read in the compilation unit (see load_partial_dies).
8114 This problem could be avoided, but the benefit is unclear. */
8115 if (this_cu->cu != NULL)
8116 free_one_cached_comp_unit (this_cu);
8117
8118 if (this_cu->is_debug_types)
8119 init_cutu_and_read_dies (this_cu, NULL, 0, 0, build_type_psymtabs_reader,
8120 NULL);
8121 else
8122 {
8123 process_psymtab_comp_unit_data info;
8124 info.want_partial_unit = want_partial_unit;
8125 info.pretend_language = pretend_language;
8126 init_cutu_and_read_dies (this_cu, NULL, 0, 0,
8127 process_psymtab_comp_unit_reader, &info);
8128 }
8129
8130 /* Age out any secondary CUs. */
8131 age_cached_comp_units (this_cu->dwarf2_per_objfile);
8132 }
8133
8134 /* Reader function for build_type_psymtabs. */
8135
8136 static void
8137 build_type_psymtabs_reader (const struct die_reader_specs *reader,
8138 const gdb_byte *info_ptr,
8139 struct die_info *type_unit_die,
8140 int has_children,
8141 void *data)
8142 {
8143 struct dwarf2_per_objfile *dwarf2_per_objfile
8144 = reader->cu->per_cu->dwarf2_per_objfile;
8145 struct objfile *objfile = dwarf2_per_objfile->objfile;
8146 struct dwarf2_cu *cu = reader->cu;
8147 struct dwarf2_per_cu_data *per_cu = cu->per_cu;
8148 struct signatured_type *sig_type;
8149 struct type_unit_group *tu_group;
8150 struct attribute *attr;
8151 struct partial_die_info *first_die;
8152 CORE_ADDR lowpc, highpc;
8153 struct partial_symtab *pst;
8154
8155 gdb_assert (data == NULL);
8156 gdb_assert (per_cu->is_debug_types);
8157 sig_type = (struct signatured_type *) per_cu;
8158
8159 if (! has_children)
8160 return;
8161
8162 attr = dwarf2_attr_no_follow (type_unit_die, DW_AT_stmt_list);
8163 tu_group = get_type_unit_group (cu, attr);
8164
8165 VEC_safe_push (sig_type_ptr, tu_group->tus, sig_type);
8166
8167 prepare_one_comp_unit (cu, type_unit_die, language_minimal);
8168 cu->list_in_scope = &file_symbols;
8169 pst = create_partial_symtab (per_cu, "");
8170 pst->anonymous = 1;
8171
8172 first_die = load_partial_dies (reader, info_ptr, 1);
8173
8174 lowpc = (CORE_ADDR) -1;
8175 highpc = (CORE_ADDR) 0;
8176 scan_partial_symbols (first_die, &lowpc, &highpc, 0, cu);
8177
8178 end_psymtab_common (objfile, pst);
8179 }
8180
8181 /* Struct used to sort TUs by their abbreviation table offset. */
8182
8183 struct tu_abbrev_offset
8184 {
8185 struct signatured_type *sig_type;
8186 sect_offset abbrev_offset;
8187 };
8188
8189 /* Helper routine for build_type_psymtabs_1, passed to std::sort. */
8190
8191 static bool
8192 sort_tu_by_abbrev_offset (const struct tu_abbrev_offset &a,
8193 const struct tu_abbrev_offset &b)
8194 {
8195 return a.abbrev_offset < b.abbrev_offset;
8196 }
8197
8198 /* Efficiently read all the type units.
8199 This does the bulk of the work for build_type_psymtabs.
8200
8201 The efficiency is because we sort TUs by the abbrev table they use and
8202 only read each abbrev table once. In one program there are 200K TUs
8203 sharing 8K abbrev tables.
8204
8205 The main purpose of this function is to support building the
8206 dwarf2_per_objfile->type_unit_groups table.
8207 TUs typically share the DW_AT_stmt_list of the CU they came from, so we
8208 can collapse the search space by grouping them by stmt_list.
8209 The savings can be significant, in the same program from above the 200K TUs
8210 share 8K stmt_list tables.
8211
8212 FUNC is expected to call get_type_unit_group, which will create the
8213 struct type_unit_group if necessary and add it to
8214 dwarf2_per_objfile->type_unit_groups. */
8215
8216 static void
8217 build_type_psymtabs_1 (struct dwarf2_per_objfile *dwarf2_per_objfile)
8218 {
8219 struct tu_stats *tu_stats = &dwarf2_per_objfile->tu_stats;
8220 abbrev_table_up abbrev_table;
8221 sect_offset abbrev_offset;
8222 int i;
8223
8224 /* It's up to the caller to not call us multiple times. */
8225 gdb_assert (dwarf2_per_objfile->type_unit_groups == NULL);
8226
8227 if (dwarf2_per_objfile->n_type_units == 0)
8228 return;
8229
8230 /* TUs typically share abbrev tables, and there can be way more TUs than
8231 abbrev tables. Sort by abbrev table to reduce the number of times we
8232 read each abbrev table in.
8233 Alternatives are to punt or to maintain a cache of abbrev tables.
8234 This is simpler and efficient enough for now.
8235
8236 Later we group TUs by their DW_AT_stmt_list value (as this defines the
8237 symtab to use). Typically TUs with the same abbrev offset have the same
8238 stmt_list value too so in practice this should work well.
8239
8240 The basic algorithm here is:
8241
8242 sort TUs by abbrev table
8243 for each TU with same abbrev table:
8244 read abbrev table if first user
8245 read TU top level DIE
8246 [IWBN if DWO skeletons had DW_AT_stmt_list]
8247 call FUNC */
8248
8249 if (dwarf_read_debug)
8250 fprintf_unfiltered (gdb_stdlog, "Building type unit groups ...\n");
8251
8252 /* Sort in a separate table to maintain the order of all_type_units
8253 for .gdb_index: TU indices directly index all_type_units. */
8254 std::vector<struct tu_abbrev_offset> sorted_by_abbrev
8255 (dwarf2_per_objfile->n_type_units);
8256 for (i = 0; i < dwarf2_per_objfile->n_type_units; ++i)
8257 {
8258 struct signatured_type *sig_type = dwarf2_per_objfile->all_type_units[i];
8259
8260 sorted_by_abbrev[i].sig_type = sig_type;
8261 sorted_by_abbrev[i].abbrev_offset =
8262 read_abbrev_offset (dwarf2_per_objfile,
8263 sig_type->per_cu.section,
8264 sig_type->per_cu.sect_off);
8265 }
8266 std::sort (sorted_by_abbrev.begin (), sorted_by_abbrev.end (),
8267 sort_tu_by_abbrev_offset);
8268
8269 abbrev_offset = (sect_offset) ~(unsigned) 0;
8270
8271 for (i = 0; i < dwarf2_per_objfile->n_type_units; ++i)
8272 {
8273 const struct tu_abbrev_offset *tu = &sorted_by_abbrev[i];
8274
8275 /* Switch to the next abbrev table if necessary. */
8276 if (abbrev_table == NULL
8277 || tu->abbrev_offset != abbrev_offset)
8278 {
8279 abbrev_offset = tu->abbrev_offset;
8280 abbrev_table =
8281 abbrev_table_read_table (dwarf2_per_objfile,
8282 &dwarf2_per_objfile->abbrev,
8283 abbrev_offset);
8284 ++tu_stats->nr_uniq_abbrev_tables;
8285 }
8286
8287 init_cutu_and_read_dies (&tu->sig_type->per_cu, abbrev_table.get (),
8288 0, 0, build_type_psymtabs_reader, NULL);
8289 }
8290 }
8291
8292 /* Print collected type unit statistics. */
8293
8294 static void
8295 print_tu_stats (struct dwarf2_per_objfile *dwarf2_per_objfile)
8296 {
8297 struct tu_stats *tu_stats = &dwarf2_per_objfile->tu_stats;
8298
8299 fprintf_unfiltered (gdb_stdlog, "Type unit statistics:\n");
8300 fprintf_unfiltered (gdb_stdlog, " %d TUs\n",
8301 dwarf2_per_objfile->n_type_units);
8302 fprintf_unfiltered (gdb_stdlog, " %d uniq abbrev tables\n",
8303 tu_stats->nr_uniq_abbrev_tables);
8304 fprintf_unfiltered (gdb_stdlog, " %d symtabs from stmt_list entries\n",
8305 tu_stats->nr_symtabs);
8306 fprintf_unfiltered (gdb_stdlog, " %d symtab sharers\n",
8307 tu_stats->nr_symtab_sharers);
8308 fprintf_unfiltered (gdb_stdlog, " %d type units without a stmt_list\n",
8309 tu_stats->nr_stmt_less_type_units);
8310 fprintf_unfiltered (gdb_stdlog, " %d all_type_units reallocs\n",
8311 tu_stats->nr_all_type_units_reallocs);
8312 }
8313
8314 /* Traversal function for build_type_psymtabs. */
8315
8316 static int
8317 build_type_psymtab_dependencies (void **slot, void *info)
8318 {
8319 struct dwarf2_per_objfile *dwarf2_per_objfile
8320 = (struct dwarf2_per_objfile *) info;
8321 struct objfile *objfile = dwarf2_per_objfile->objfile;
8322 struct type_unit_group *tu_group = (struct type_unit_group *) *slot;
8323 struct dwarf2_per_cu_data *per_cu = &tu_group->per_cu;
8324 struct partial_symtab *pst = per_cu->v.psymtab;
8325 int len = VEC_length (sig_type_ptr, tu_group->tus);
8326 struct signatured_type *iter;
8327 int i;
8328
8329 gdb_assert (len > 0);
8330 gdb_assert (IS_TYPE_UNIT_GROUP (per_cu));
8331
8332 pst->number_of_dependencies = len;
8333 pst->dependencies =
8334 XOBNEWVEC (&objfile->objfile_obstack, struct partial_symtab *, len);
8335 for (i = 0;
8336 VEC_iterate (sig_type_ptr, tu_group->tus, i, iter);
8337 ++i)
8338 {
8339 gdb_assert (iter->per_cu.is_debug_types);
8340 pst->dependencies[i] = iter->per_cu.v.psymtab;
8341 iter->type_unit_group = tu_group;
8342 }
8343
8344 VEC_free (sig_type_ptr, tu_group->tus);
8345
8346 return 1;
8347 }
8348
8349 /* Subroutine of dwarf2_build_psymtabs_hard to simplify it.
8350 Build partial symbol tables for the .debug_types comp-units. */
8351
8352 static void
8353 build_type_psymtabs (struct dwarf2_per_objfile *dwarf2_per_objfile)
8354 {
8355 if (! create_all_type_units (dwarf2_per_objfile))
8356 return;
8357
8358 build_type_psymtabs_1 (dwarf2_per_objfile);
8359 }
8360
8361 /* Traversal function for process_skeletonless_type_unit.
8362 Read a TU in a DWO file and build partial symbols for it. */
8363
8364 static int
8365 process_skeletonless_type_unit (void **slot, void *info)
8366 {
8367 struct dwo_unit *dwo_unit = (struct dwo_unit *) *slot;
8368 struct dwarf2_per_objfile *dwarf2_per_objfile
8369 = (struct dwarf2_per_objfile *) info;
8370 struct signatured_type find_entry, *entry;
8371
8372 /* If this TU doesn't exist in the global table, add it and read it in. */
8373
8374 if (dwarf2_per_objfile->signatured_types == NULL)
8375 {
8376 dwarf2_per_objfile->signatured_types
8377 = allocate_signatured_type_table (dwarf2_per_objfile->objfile);
8378 }
8379
8380 find_entry.signature = dwo_unit->signature;
8381 slot = htab_find_slot (dwarf2_per_objfile->signatured_types, &find_entry,
8382 INSERT);
8383 /* If we've already seen this type there's nothing to do. What's happening
8384 is we're doing our own version of comdat-folding here. */
8385 if (*slot != NULL)
8386 return 1;
8387
8388 /* This does the job that create_all_type_units would have done for
8389 this TU. */
8390 entry = add_type_unit (dwarf2_per_objfile, dwo_unit->signature, slot);
8391 fill_in_sig_entry_from_dwo_entry (dwarf2_per_objfile, entry, dwo_unit);
8392 *slot = entry;
8393
8394 /* This does the job that build_type_psymtabs_1 would have done. */
8395 init_cutu_and_read_dies (&entry->per_cu, NULL, 0, 0,
8396 build_type_psymtabs_reader, NULL);
8397
8398 return 1;
8399 }
8400
8401 /* Traversal function for process_skeletonless_type_units. */
8402
8403 static int
8404 process_dwo_file_for_skeletonless_type_units (void **slot, void *info)
8405 {
8406 struct dwo_file *dwo_file = (struct dwo_file *) *slot;
8407
8408 if (dwo_file->tus != NULL)
8409 {
8410 htab_traverse_noresize (dwo_file->tus,
8411 process_skeletonless_type_unit, info);
8412 }
8413
8414 return 1;
8415 }
8416
8417 /* Scan all TUs of DWO files, verifying we've processed them.
8418 This is needed in case a TU was emitted without its skeleton.
8419 Note: This can't be done until we know what all the DWO files are. */
8420
8421 static void
8422 process_skeletonless_type_units (struct dwarf2_per_objfile *dwarf2_per_objfile)
8423 {
8424 /* Skeletonless TUs in DWP files without .gdb_index is not supported yet. */
8425 if (get_dwp_file (dwarf2_per_objfile) == NULL
8426 && dwarf2_per_objfile->dwo_files != NULL)
8427 {
8428 htab_traverse_noresize (dwarf2_per_objfile->dwo_files,
8429 process_dwo_file_for_skeletonless_type_units,
8430 dwarf2_per_objfile);
8431 }
8432 }
8433
8434 /* Compute the 'user' field for each psymtab in DWARF2_PER_OBJFILE. */
8435
8436 static void
8437 set_partial_user (struct dwarf2_per_objfile *dwarf2_per_objfile)
8438 {
8439 int i;
8440
8441 for (i = 0; i < dwarf2_per_objfile->n_comp_units; ++i)
8442 {
8443 struct dwarf2_per_cu_data *per_cu = dw2_get_cutu (dwarf2_per_objfile, i);
8444 struct partial_symtab *pst = per_cu->v.psymtab;
8445 int j;
8446
8447 if (pst == NULL)
8448 continue;
8449
8450 for (j = 0; j < pst->number_of_dependencies; ++j)
8451 {
8452 /* Set the 'user' field only if it is not already set. */
8453 if (pst->dependencies[j]->user == NULL)
8454 pst->dependencies[j]->user = pst;
8455 }
8456 }
8457 }
8458
8459 /* Build the partial symbol table by doing a quick pass through the
8460 .debug_info and .debug_abbrev sections. */
8461
8462 static void
8463 dwarf2_build_psymtabs_hard (struct dwarf2_per_objfile *dwarf2_per_objfile)
8464 {
8465 int i;
8466 struct objfile *objfile = dwarf2_per_objfile->objfile;
8467
8468 if (dwarf_read_debug)
8469 {
8470 fprintf_unfiltered (gdb_stdlog, "Building psymtabs of objfile %s ...\n",
8471 objfile_name (objfile));
8472 }
8473
8474 dwarf2_per_objfile->reading_partial_symbols = 1;
8475
8476 dwarf2_read_section (objfile, &dwarf2_per_objfile->info);
8477
8478 /* Any cached compilation units will be linked by the per-objfile
8479 read_in_chain. Make sure to free them when we're done. */
8480 free_cached_comp_units freer (dwarf2_per_objfile);
8481
8482 build_type_psymtabs (dwarf2_per_objfile);
8483
8484 create_all_comp_units (dwarf2_per_objfile);
8485
8486 /* Create a temporary address map on a temporary obstack. We later
8487 copy this to the final obstack. */
8488 auto_obstack temp_obstack;
8489
8490 scoped_restore save_psymtabs_addrmap
8491 = make_scoped_restore (&objfile->psymtabs_addrmap,
8492 addrmap_create_mutable (&temp_obstack));
8493
8494 for (i = 0; i < dwarf2_per_objfile->n_comp_units; ++i)
8495 {
8496 struct dwarf2_per_cu_data *per_cu = dw2_get_cutu (dwarf2_per_objfile, i);
8497
8498 process_psymtab_comp_unit (per_cu, 0, language_minimal);
8499 }
8500
8501 /* This has to wait until we read the CUs, we need the list of DWOs. */
8502 process_skeletonless_type_units (dwarf2_per_objfile);
8503
8504 /* Now that all TUs have been processed we can fill in the dependencies. */
8505 if (dwarf2_per_objfile->type_unit_groups != NULL)
8506 {
8507 htab_traverse_noresize (dwarf2_per_objfile->type_unit_groups,
8508 build_type_psymtab_dependencies, dwarf2_per_objfile);
8509 }
8510
8511 if (dwarf_read_debug)
8512 print_tu_stats (dwarf2_per_objfile);
8513
8514 set_partial_user (dwarf2_per_objfile);
8515
8516 objfile->psymtabs_addrmap = addrmap_create_fixed (objfile->psymtabs_addrmap,
8517 &objfile->objfile_obstack);
8518 /* At this point we want to keep the address map. */
8519 save_psymtabs_addrmap.release ();
8520
8521 if (dwarf_read_debug)
8522 fprintf_unfiltered (gdb_stdlog, "Done building psymtabs of %s\n",
8523 objfile_name (objfile));
8524 }
8525
8526 /* die_reader_func for load_partial_comp_unit. */
8527
8528 static void
8529 load_partial_comp_unit_reader (const struct die_reader_specs *reader,
8530 const gdb_byte *info_ptr,
8531 struct die_info *comp_unit_die,
8532 int has_children,
8533 void *data)
8534 {
8535 struct dwarf2_cu *cu = reader->cu;
8536
8537 prepare_one_comp_unit (cu, comp_unit_die, language_minimal);
8538
8539 /* Check if comp unit has_children.
8540 If so, read the rest of the partial symbols from this comp unit.
8541 If not, there's no more debug_info for this comp unit. */
8542 if (has_children)
8543 load_partial_dies (reader, info_ptr, 0);
8544 }
8545
8546 /* Load the partial DIEs for a secondary CU into memory.
8547 This is also used when rereading a primary CU with load_all_dies. */
8548
8549 static void
8550 load_partial_comp_unit (struct dwarf2_per_cu_data *this_cu)
8551 {
8552 init_cutu_and_read_dies (this_cu, NULL, 1, 1,
8553 load_partial_comp_unit_reader, NULL);
8554 }
8555
8556 static void
8557 read_comp_units_from_section (struct dwarf2_per_objfile *dwarf2_per_objfile,
8558 struct dwarf2_section_info *section,
8559 struct dwarf2_section_info *abbrev_section,
8560 unsigned int is_dwz,
8561 int *n_allocated,
8562 int *n_comp_units,
8563 struct dwarf2_per_cu_data ***all_comp_units)
8564 {
8565 const gdb_byte *info_ptr;
8566 struct objfile *objfile = dwarf2_per_objfile->objfile;
8567
8568 if (dwarf_read_debug)
8569 fprintf_unfiltered (gdb_stdlog, "Reading %s for %s\n",
8570 get_section_name (section),
8571 get_section_file_name (section));
8572
8573 dwarf2_read_section (objfile, section);
8574
8575 info_ptr = section->buffer;
8576
8577 while (info_ptr < section->buffer + section->size)
8578 {
8579 struct dwarf2_per_cu_data *this_cu;
8580
8581 sect_offset sect_off = (sect_offset) (info_ptr - section->buffer);
8582
8583 comp_unit_head cu_header;
8584 read_and_check_comp_unit_head (dwarf2_per_objfile, &cu_header, section,
8585 abbrev_section, info_ptr,
8586 rcuh_kind::COMPILE);
8587
8588 /* Save the compilation unit for later lookup. */
8589 if (cu_header.unit_type != DW_UT_type)
8590 {
8591 this_cu = XOBNEW (&objfile->objfile_obstack,
8592 struct dwarf2_per_cu_data);
8593 memset (this_cu, 0, sizeof (*this_cu));
8594 }
8595 else
8596 {
8597 auto sig_type = XOBNEW (&objfile->objfile_obstack,
8598 struct signatured_type);
8599 memset (sig_type, 0, sizeof (*sig_type));
8600 sig_type->signature = cu_header.signature;
8601 sig_type->type_offset_in_tu = cu_header.type_cu_offset_in_tu;
8602 this_cu = &sig_type->per_cu;
8603 }
8604 this_cu->is_debug_types = (cu_header.unit_type == DW_UT_type);
8605 this_cu->sect_off = sect_off;
8606 this_cu->length = cu_header.length + cu_header.initial_length_size;
8607 this_cu->is_dwz = is_dwz;
8608 this_cu->dwarf2_per_objfile = dwarf2_per_objfile;
8609 this_cu->section = section;
8610
8611 if (*n_comp_units == *n_allocated)
8612 {
8613 *n_allocated *= 2;
8614 *all_comp_units = XRESIZEVEC (struct dwarf2_per_cu_data *,
8615 *all_comp_units, *n_allocated);
8616 }
8617 (*all_comp_units)[*n_comp_units] = this_cu;
8618 ++*n_comp_units;
8619
8620 info_ptr = info_ptr + this_cu->length;
8621 }
8622 }
8623
8624 /* Create a list of all compilation units in OBJFILE.
8625 This is only done for -readnow and building partial symtabs. */
8626
8627 static void
8628 create_all_comp_units (struct dwarf2_per_objfile *dwarf2_per_objfile)
8629 {
8630 int n_allocated;
8631 int n_comp_units;
8632 struct dwarf2_per_cu_data **all_comp_units;
8633 struct dwz_file *dwz;
8634 struct objfile *objfile = dwarf2_per_objfile->objfile;
8635
8636 n_comp_units = 0;
8637 n_allocated = 10;
8638 all_comp_units = XNEWVEC (struct dwarf2_per_cu_data *, n_allocated);
8639
8640 read_comp_units_from_section (dwarf2_per_objfile, &dwarf2_per_objfile->info,
8641 &dwarf2_per_objfile->abbrev, 0,
8642 &n_allocated, &n_comp_units, &all_comp_units);
8643
8644 dwz = dwarf2_get_dwz_file (dwarf2_per_objfile);
8645 if (dwz != NULL)
8646 read_comp_units_from_section (dwarf2_per_objfile, &dwz->info, &dwz->abbrev,
8647 1, &n_allocated, &n_comp_units,
8648 &all_comp_units);
8649
8650 dwarf2_per_objfile->all_comp_units = XOBNEWVEC (&objfile->objfile_obstack,
8651 struct dwarf2_per_cu_data *,
8652 n_comp_units);
8653 memcpy (dwarf2_per_objfile->all_comp_units, all_comp_units,
8654 n_comp_units * sizeof (struct dwarf2_per_cu_data *));
8655 xfree (all_comp_units);
8656 dwarf2_per_objfile->n_comp_units = n_comp_units;
8657 }
8658
8659 /* Process all loaded DIEs for compilation unit CU, starting at
8660 FIRST_DIE. The caller should pass SET_ADDRMAP == 1 if the compilation
8661 unit DIE did not have PC info (DW_AT_low_pc and DW_AT_high_pc, or
8662 DW_AT_ranges). See the comments of add_partial_subprogram on how
8663 SET_ADDRMAP is used and how *LOWPC and *HIGHPC are updated. */
8664
8665 static void
8666 scan_partial_symbols (struct partial_die_info *first_die, CORE_ADDR *lowpc,
8667 CORE_ADDR *highpc, int set_addrmap,
8668 struct dwarf2_cu *cu)
8669 {
8670 struct partial_die_info *pdi;
8671
8672 /* Now, march along the PDI's, descending into ones which have
8673 interesting children but skipping the children of the other ones,
8674 until we reach the end of the compilation unit. */
8675
8676 pdi = first_die;
8677
8678 while (pdi != NULL)
8679 {
8680 pdi->fixup (cu);
8681
8682 /* Anonymous namespaces or modules have no name but have interesting
8683 children, so we need to look at them. Ditto for anonymous
8684 enums. */
8685
8686 if (pdi->name != NULL || pdi->tag == DW_TAG_namespace
8687 || pdi->tag == DW_TAG_module || pdi->tag == DW_TAG_enumeration_type
8688 || pdi->tag == DW_TAG_imported_unit
8689 || pdi->tag == DW_TAG_inlined_subroutine)
8690 {
8691 switch (pdi->tag)
8692 {
8693 case DW_TAG_subprogram:
8694 case DW_TAG_inlined_subroutine:
8695 add_partial_subprogram (pdi, lowpc, highpc, set_addrmap, cu);
8696 break;
8697 case DW_TAG_constant:
8698 case DW_TAG_variable:
8699 case DW_TAG_typedef:
8700 case DW_TAG_union_type:
8701 if (!pdi->is_declaration)
8702 {
8703 add_partial_symbol (pdi, cu);
8704 }
8705 break;
8706 case DW_TAG_class_type:
8707 case DW_TAG_interface_type:
8708 case DW_TAG_structure_type:
8709 if (!pdi->is_declaration)
8710 {
8711 add_partial_symbol (pdi, cu);
8712 }
8713 if ((cu->language == language_rust
8714 || cu->language == language_cplus) && pdi->has_children)
8715 scan_partial_symbols (pdi->die_child, lowpc, highpc,
8716 set_addrmap, cu);
8717 break;
8718 case DW_TAG_enumeration_type:
8719 if (!pdi->is_declaration)
8720 add_partial_enumeration (pdi, cu);
8721 break;
8722 case DW_TAG_base_type:
8723 case DW_TAG_subrange_type:
8724 /* File scope base type definitions are added to the partial
8725 symbol table. */
8726 add_partial_symbol (pdi, cu);
8727 break;
8728 case DW_TAG_namespace:
8729 add_partial_namespace (pdi, lowpc, highpc, set_addrmap, cu);
8730 break;
8731 case DW_TAG_module:
8732 add_partial_module (pdi, lowpc, highpc, set_addrmap, cu);
8733 break;
8734 case DW_TAG_imported_unit:
8735 {
8736 struct dwarf2_per_cu_data *per_cu;
8737
8738 /* For now we don't handle imported units in type units. */
8739 if (cu->per_cu->is_debug_types)
8740 {
8741 error (_("Dwarf Error: DW_TAG_imported_unit is not"
8742 " supported in type units [in module %s]"),
8743 objfile_name (cu->per_cu->dwarf2_per_objfile->objfile));
8744 }
8745
8746 per_cu = dwarf2_find_containing_comp_unit
8747 (pdi->d.sect_off, pdi->is_dwz,
8748 cu->per_cu->dwarf2_per_objfile);
8749
8750 /* Go read the partial unit, if needed. */
8751 if (per_cu->v.psymtab == NULL)
8752 process_psymtab_comp_unit (per_cu, 1, cu->language);
8753
8754 VEC_safe_push (dwarf2_per_cu_ptr,
8755 cu->per_cu->imported_symtabs, per_cu);
8756 }
8757 break;
8758 case DW_TAG_imported_declaration:
8759 add_partial_symbol (pdi, cu);
8760 break;
8761 default:
8762 break;
8763 }
8764 }
8765
8766 /* If the die has a sibling, skip to the sibling. */
8767
8768 pdi = pdi->die_sibling;
8769 }
8770 }
8771
8772 /* Functions used to compute the fully scoped name of a partial DIE.
8773
8774 Normally, this is simple. For C++, the parent DIE's fully scoped
8775 name is concatenated with "::" and the partial DIE's name.
8776 Enumerators are an exception; they use the scope of their parent
8777 enumeration type, i.e. the name of the enumeration type is not
8778 prepended to the enumerator.
8779
8780 There are two complexities. One is DW_AT_specification; in this
8781 case "parent" means the parent of the target of the specification,
8782 instead of the direct parent of the DIE. The other is compilers
8783 which do not emit DW_TAG_namespace; in this case we try to guess
8784 the fully qualified name of structure types from their members'
8785 linkage names. This must be done using the DIE's children rather
8786 than the children of any DW_AT_specification target. We only need
8787 to do this for structures at the top level, i.e. if the target of
8788 any DW_AT_specification (if any; otherwise the DIE itself) does not
8789 have a parent. */
8790
8791 /* Compute the scope prefix associated with PDI's parent, in
8792 compilation unit CU. The result will be allocated on CU's
8793 comp_unit_obstack, or a copy of the already allocated PDI->NAME
8794 field. NULL is returned if no prefix is necessary. */
8795 static const char *
8796 partial_die_parent_scope (struct partial_die_info *pdi,
8797 struct dwarf2_cu *cu)
8798 {
8799 const char *grandparent_scope;
8800 struct partial_die_info *parent, *real_pdi;
8801
8802 /* We need to look at our parent DIE; if we have a DW_AT_specification,
8803 then this means the parent of the specification DIE. */
8804
8805 real_pdi = pdi;
8806 while (real_pdi->has_specification)
8807 real_pdi = find_partial_die (real_pdi->spec_offset,
8808 real_pdi->spec_is_dwz, cu);
8809
8810 parent = real_pdi->die_parent;
8811 if (parent == NULL)
8812 return NULL;
8813
8814 if (parent->scope_set)
8815 return parent->scope;
8816
8817 parent->fixup (cu);
8818
8819 grandparent_scope = partial_die_parent_scope (parent, cu);
8820
8821 /* GCC 4.0 and 4.1 had a bug (PR c++/28460) where they generated bogus
8822 DW_TAG_namespace DIEs with a name of "::" for the global namespace.
8823 Work around this problem here. */
8824 if (cu->language == language_cplus
8825 && parent->tag == DW_TAG_namespace
8826 && strcmp (parent->name, "::") == 0
8827 && grandparent_scope == NULL)
8828 {
8829 parent->scope = NULL;
8830 parent->scope_set = 1;
8831 return NULL;
8832 }
8833
8834 if (pdi->tag == DW_TAG_enumerator)
8835 /* Enumerators should not get the name of the enumeration as a prefix. */
8836 parent->scope = grandparent_scope;
8837 else if (parent->tag == DW_TAG_namespace
8838 || parent->tag == DW_TAG_module
8839 || parent->tag == DW_TAG_structure_type
8840 || parent->tag == DW_TAG_class_type
8841 || parent->tag == DW_TAG_interface_type
8842 || parent->tag == DW_TAG_union_type
8843 || parent->tag == DW_TAG_enumeration_type)
8844 {
8845 if (grandparent_scope == NULL)
8846 parent->scope = parent->name;
8847 else
8848 parent->scope = typename_concat (&cu->comp_unit_obstack,
8849 grandparent_scope,
8850 parent->name, 0, cu);
8851 }
8852 else
8853 {
8854 /* FIXME drow/2004-04-01: What should we be doing with
8855 function-local names? For partial symbols, we should probably be
8856 ignoring them. */
8857 complaint (&symfile_complaints,
8858 _("unhandled containing DIE tag %d for DIE at %s"),
8859 parent->tag, sect_offset_str (pdi->sect_off));
8860 parent->scope = grandparent_scope;
8861 }
8862
8863 parent->scope_set = 1;
8864 return parent->scope;
8865 }
8866
8867 /* Return the fully scoped name associated with PDI, from compilation unit
8868 CU. The result will be allocated with malloc. */
8869
8870 static char *
8871 partial_die_full_name (struct partial_die_info *pdi,
8872 struct dwarf2_cu *cu)
8873 {
8874 const char *parent_scope;
8875
8876 /* If this is a template instantiation, we can not work out the
8877 template arguments from partial DIEs. So, unfortunately, we have
8878 to go through the full DIEs. At least any work we do building
8879 types here will be reused if full symbols are loaded later. */
8880 if (pdi->has_template_arguments)
8881 {
8882 pdi->fixup (cu);
8883
8884 if (pdi->name != NULL && strchr (pdi->name, '<') == NULL)
8885 {
8886 struct die_info *die;
8887 struct attribute attr;
8888 struct dwarf2_cu *ref_cu = cu;
8889
8890 /* DW_FORM_ref_addr is using section offset. */
8891 attr.name = (enum dwarf_attribute) 0;
8892 attr.form = DW_FORM_ref_addr;
8893 attr.u.unsnd = to_underlying (pdi->sect_off);
8894 die = follow_die_ref (NULL, &attr, &ref_cu);
8895
8896 return xstrdup (dwarf2_full_name (NULL, die, ref_cu));
8897 }
8898 }
8899
8900 parent_scope = partial_die_parent_scope (pdi, cu);
8901 if (parent_scope == NULL)
8902 return NULL;
8903 else
8904 return typename_concat (NULL, parent_scope, pdi->name, 0, cu);
8905 }
8906
8907 static void
8908 add_partial_symbol (struct partial_die_info *pdi, struct dwarf2_cu *cu)
8909 {
8910 struct dwarf2_per_objfile *dwarf2_per_objfile
8911 = cu->per_cu->dwarf2_per_objfile;
8912 struct objfile *objfile = dwarf2_per_objfile->objfile;
8913 struct gdbarch *gdbarch = get_objfile_arch (objfile);
8914 CORE_ADDR addr = 0;
8915 const char *actual_name = NULL;
8916 CORE_ADDR baseaddr;
8917 char *built_actual_name;
8918
8919 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
8920
8921 built_actual_name = partial_die_full_name (pdi, cu);
8922 if (built_actual_name != NULL)
8923 actual_name = built_actual_name;
8924
8925 if (actual_name == NULL)
8926 actual_name = pdi->name;
8927
8928 switch (pdi->tag)
8929 {
8930 case DW_TAG_inlined_subroutine:
8931 case DW_TAG_subprogram:
8932 addr = gdbarch_adjust_dwarf2_addr (gdbarch, pdi->lowpc + baseaddr);
8933 if (pdi->is_external || cu->language == language_ada)
8934 {
8935 /* brobecker/2007-12-26: Normally, only "external" DIEs are part
8936 of the global scope. But in Ada, we want to be able to access
8937 nested procedures globally. So all Ada subprograms are stored
8938 in the global scope. */
8939 add_psymbol_to_list (actual_name, strlen (actual_name),
8940 built_actual_name != NULL,
8941 VAR_DOMAIN, LOC_BLOCK,
8942 &objfile->global_psymbols,
8943 addr, cu->language, objfile);
8944 }
8945 else
8946 {
8947 add_psymbol_to_list (actual_name, strlen (actual_name),
8948 built_actual_name != NULL,
8949 VAR_DOMAIN, LOC_BLOCK,
8950 &objfile->static_psymbols,
8951 addr, cu->language, objfile);
8952 }
8953
8954 if (pdi->main_subprogram && actual_name != NULL)
8955 set_objfile_main_name (objfile, actual_name, cu->language);
8956 break;
8957 case DW_TAG_constant:
8958 {
8959 std::vector<partial_symbol *> *list;
8960
8961 if (pdi->is_external)
8962 list = &objfile->global_psymbols;
8963 else
8964 list = &objfile->static_psymbols;
8965 add_psymbol_to_list (actual_name, strlen (actual_name),
8966 built_actual_name != NULL, VAR_DOMAIN, LOC_STATIC,
8967 list, 0, cu->language, objfile);
8968 }
8969 break;
8970 case DW_TAG_variable:
8971 if (pdi->d.locdesc)
8972 addr = decode_locdesc (pdi->d.locdesc, cu);
8973
8974 if (pdi->d.locdesc
8975 && addr == 0
8976 && !dwarf2_per_objfile->has_section_at_zero)
8977 {
8978 /* A global or static variable may also have been stripped
8979 out by the linker if unused, in which case its address
8980 will be nullified; do not add such variables into partial
8981 symbol table then. */
8982 }
8983 else if (pdi->is_external)
8984 {
8985 /* Global Variable.
8986 Don't enter into the minimal symbol tables as there is
8987 a minimal symbol table entry from the ELF symbols already.
8988 Enter into partial symbol table if it has a location
8989 descriptor or a type.
8990 If the location descriptor is missing, new_symbol will create
8991 a LOC_UNRESOLVED symbol, the address of the variable will then
8992 be determined from the minimal symbol table whenever the variable
8993 is referenced.
8994 The address for the partial symbol table entry is not
8995 used by GDB, but it comes in handy for debugging partial symbol
8996 table building. */
8997
8998 if (pdi->d.locdesc || pdi->has_type)
8999 add_psymbol_to_list (actual_name, strlen (actual_name),
9000 built_actual_name != NULL,
9001 VAR_DOMAIN, LOC_STATIC,
9002 &objfile->global_psymbols,
9003 addr + baseaddr,
9004 cu->language, objfile);
9005 }
9006 else
9007 {
9008 int has_loc = pdi->d.locdesc != NULL;
9009
9010 /* Static Variable. Skip symbols whose value we cannot know (those
9011 without location descriptors or constant values). */
9012 if (!has_loc && !pdi->has_const_value)
9013 {
9014 xfree (built_actual_name);
9015 return;
9016 }
9017
9018 add_psymbol_to_list (actual_name, strlen (actual_name),
9019 built_actual_name != NULL,
9020 VAR_DOMAIN, LOC_STATIC,
9021 &objfile->static_psymbols,
9022 has_loc ? addr + baseaddr : (CORE_ADDR) 0,
9023 cu->language, objfile);
9024 }
9025 break;
9026 case DW_TAG_typedef:
9027 case DW_TAG_base_type:
9028 case DW_TAG_subrange_type:
9029 add_psymbol_to_list (actual_name, strlen (actual_name),
9030 built_actual_name != NULL,
9031 VAR_DOMAIN, LOC_TYPEDEF,
9032 &objfile->static_psymbols,
9033 0, cu->language, objfile);
9034 break;
9035 case DW_TAG_imported_declaration:
9036 case DW_TAG_namespace:
9037 add_psymbol_to_list (actual_name, strlen (actual_name),
9038 built_actual_name != NULL,
9039 VAR_DOMAIN, LOC_TYPEDEF,
9040 &objfile->global_psymbols,
9041 0, cu->language, objfile);
9042 break;
9043 case DW_TAG_module:
9044 add_psymbol_to_list (actual_name, strlen (actual_name),
9045 built_actual_name != NULL,
9046 MODULE_DOMAIN, LOC_TYPEDEF,
9047 &objfile->global_psymbols,
9048 0, cu->language, objfile);
9049 break;
9050 case DW_TAG_class_type:
9051 case DW_TAG_interface_type:
9052 case DW_TAG_structure_type:
9053 case DW_TAG_union_type:
9054 case DW_TAG_enumeration_type:
9055 /* Skip external references. The DWARF standard says in the section
9056 about "Structure, Union, and Class Type Entries": "An incomplete
9057 structure, union or class type is represented by a structure,
9058 union or class entry that does not have a byte size attribute
9059 and that has a DW_AT_declaration attribute." */
9060 if (!pdi->has_byte_size && pdi->is_declaration)
9061 {
9062 xfree (built_actual_name);
9063 return;
9064 }
9065
9066 /* NOTE: carlton/2003-10-07: See comment in new_symbol about
9067 static vs. global. */
9068 add_psymbol_to_list (actual_name, strlen (actual_name),
9069 built_actual_name != NULL,
9070 STRUCT_DOMAIN, LOC_TYPEDEF,
9071 cu->language == language_cplus
9072 ? &objfile->global_psymbols
9073 : &objfile->static_psymbols,
9074 0, cu->language, objfile);
9075
9076 break;
9077 case DW_TAG_enumerator:
9078 add_psymbol_to_list (actual_name, strlen (actual_name),
9079 built_actual_name != NULL,
9080 VAR_DOMAIN, LOC_CONST,
9081 cu->language == language_cplus
9082 ? &objfile->global_psymbols
9083 : &objfile->static_psymbols,
9084 0, cu->language, objfile);
9085 break;
9086 default:
9087 break;
9088 }
9089
9090 xfree (built_actual_name);
9091 }
9092
9093 /* Read a partial die corresponding to a namespace; also, add a symbol
9094 corresponding to that namespace to the symbol table. NAMESPACE is
9095 the name of the enclosing namespace. */
9096
9097 static void
9098 add_partial_namespace (struct partial_die_info *pdi,
9099 CORE_ADDR *lowpc, CORE_ADDR *highpc,
9100 int set_addrmap, struct dwarf2_cu *cu)
9101 {
9102 /* Add a symbol for the namespace. */
9103
9104 add_partial_symbol (pdi, cu);
9105
9106 /* Now scan partial symbols in that namespace. */
9107
9108 if (pdi->has_children)
9109 scan_partial_symbols (pdi->die_child, lowpc, highpc, set_addrmap, cu);
9110 }
9111
9112 /* Read a partial die corresponding to a Fortran module. */
9113
9114 static void
9115 add_partial_module (struct partial_die_info *pdi, CORE_ADDR *lowpc,
9116 CORE_ADDR *highpc, int set_addrmap, struct dwarf2_cu *cu)
9117 {
9118 /* Add a symbol for the namespace. */
9119
9120 add_partial_symbol (pdi, cu);
9121
9122 /* Now scan partial symbols in that module. */
9123
9124 if (pdi->has_children)
9125 scan_partial_symbols (pdi->die_child, lowpc, highpc, set_addrmap, cu);
9126 }
9127
9128 /* Read a partial die corresponding to a subprogram or an inlined
9129 subprogram and create a partial symbol for that subprogram.
9130 When the CU language allows it, this routine also defines a partial
9131 symbol for each nested subprogram that this subprogram contains.
9132 If SET_ADDRMAP is true, record the covered ranges in the addrmap.
9133 Set *LOWPC and *HIGHPC to the lowest and highest PC values found in PDI.
9134
9135 PDI may also be a lexical block, in which case we simply search
9136 recursively for subprograms defined inside that lexical block.
9137 Again, this is only performed when the CU language allows this
9138 type of definitions. */
9139
9140 static void
9141 add_partial_subprogram (struct partial_die_info *pdi,
9142 CORE_ADDR *lowpc, CORE_ADDR *highpc,
9143 int set_addrmap, struct dwarf2_cu *cu)
9144 {
9145 if (pdi->tag == DW_TAG_subprogram || pdi->tag == DW_TAG_inlined_subroutine)
9146 {
9147 if (pdi->has_pc_info)
9148 {
9149 if (pdi->lowpc < *lowpc)
9150 *lowpc = pdi->lowpc;
9151 if (pdi->highpc > *highpc)
9152 *highpc = pdi->highpc;
9153 if (set_addrmap)
9154 {
9155 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
9156 struct gdbarch *gdbarch = get_objfile_arch (objfile);
9157 CORE_ADDR baseaddr;
9158 CORE_ADDR highpc;
9159 CORE_ADDR lowpc;
9160
9161 baseaddr = ANOFFSET (objfile->section_offsets,
9162 SECT_OFF_TEXT (objfile));
9163 lowpc = gdbarch_adjust_dwarf2_addr (gdbarch,
9164 pdi->lowpc + baseaddr);
9165 highpc = gdbarch_adjust_dwarf2_addr (gdbarch,
9166 pdi->highpc + baseaddr);
9167 addrmap_set_empty (objfile->psymtabs_addrmap, lowpc, highpc - 1,
9168 cu->per_cu->v.psymtab);
9169 }
9170 }
9171
9172 if (pdi->has_pc_info || (!pdi->is_external && pdi->may_be_inlined))
9173 {
9174 if (!pdi->is_declaration)
9175 /* Ignore subprogram DIEs that do not have a name, they are
9176 illegal. Do not emit a complaint at this point, we will
9177 do so when we convert this psymtab into a symtab. */
9178 if (pdi->name)
9179 add_partial_symbol (pdi, cu);
9180 }
9181 }
9182
9183 if (! pdi->has_children)
9184 return;
9185
9186 if (cu->language == language_ada)
9187 {
9188 pdi = pdi->die_child;
9189 while (pdi != NULL)
9190 {
9191 pdi->fixup (cu);
9192 if (pdi->tag == DW_TAG_subprogram
9193 || pdi->tag == DW_TAG_inlined_subroutine
9194 || pdi->tag == DW_TAG_lexical_block)
9195 add_partial_subprogram (pdi, lowpc, highpc, set_addrmap, cu);
9196 pdi = pdi->die_sibling;
9197 }
9198 }
9199 }
9200
9201 /* Read a partial die corresponding to an enumeration type. */
9202
9203 static void
9204 add_partial_enumeration (struct partial_die_info *enum_pdi,
9205 struct dwarf2_cu *cu)
9206 {
9207 struct partial_die_info *pdi;
9208
9209 if (enum_pdi->name != NULL)
9210 add_partial_symbol (enum_pdi, cu);
9211
9212 pdi = enum_pdi->die_child;
9213 while (pdi)
9214 {
9215 if (pdi->tag != DW_TAG_enumerator || pdi->name == NULL)
9216 complaint (&symfile_complaints, _("malformed enumerator DIE ignored"));
9217 else
9218 add_partial_symbol (pdi, cu);
9219 pdi = pdi->die_sibling;
9220 }
9221 }
9222
9223 /* Return the initial uleb128 in the die at INFO_PTR. */
9224
9225 static unsigned int
9226 peek_abbrev_code (bfd *abfd, const gdb_byte *info_ptr)
9227 {
9228 unsigned int bytes_read;
9229
9230 return read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
9231 }
9232
9233 /* Read the initial uleb128 in the die at INFO_PTR in compilation unit
9234 READER::CU. Use READER::ABBREV_TABLE to lookup any abbreviation.
9235
9236 Return the corresponding abbrev, or NULL if the number is zero (indicating
9237 an empty DIE). In either case *BYTES_READ will be set to the length of
9238 the initial number. */
9239
9240 static struct abbrev_info *
9241 peek_die_abbrev (const die_reader_specs &reader,
9242 const gdb_byte *info_ptr, unsigned int *bytes_read)
9243 {
9244 dwarf2_cu *cu = reader.cu;
9245 bfd *abfd = cu->per_cu->dwarf2_per_objfile->objfile->obfd;
9246 unsigned int abbrev_number
9247 = read_unsigned_leb128 (abfd, info_ptr, bytes_read);
9248
9249 if (abbrev_number == 0)
9250 return NULL;
9251
9252 abbrev_info *abbrev = reader.abbrev_table->lookup_abbrev (abbrev_number);
9253 if (!abbrev)
9254 {
9255 error (_("Dwarf Error: Could not find abbrev number %d in %s"
9256 " at offset %s [in module %s]"),
9257 abbrev_number, cu->per_cu->is_debug_types ? "TU" : "CU",
9258 sect_offset_str (cu->header.sect_off), bfd_get_filename (abfd));
9259 }
9260
9261 return abbrev;
9262 }
9263
9264 /* Scan the debug information for CU starting at INFO_PTR in buffer BUFFER.
9265 Returns a pointer to the end of a series of DIEs, terminated by an empty
9266 DIE. Any children of the skipped DIEs will also be skipped. */
9267
9268 static const gdb_byte *
9269 skip_children (const struct die_reader_specs *reader, const gdb_byte *info_ptr)
9270 {
9271 while (1)
9272 {
9273 unsigned int bytes_read;
9274 abbrev_info *abbrev = peek_die_abbrev (*reader, info_ptr, &bytes_read);
9275
9276 if (abbrev == NULL)
9277 return info_ptr + bytes_read;
9278 else
9279 info_ptr = skip_one_die (reader, info_ptr + bytes_read, abbrev);
9280 }
9281 }
9282
9283 /* Scan the debug information for CU starting at INFO_PTR in buffer BUFFER.
9284 INFO_PTR should point just after the initial uleb128 of a DIE, and the
9285 abbrev corresponding to that skipped uleb128 should be passed in
9286 ABBREV. Returns a pointer to this DIE's sibling, skipping any
9287 children. */
9288
9289 static const gdb_byte *
9290 skip_one_die (const struct die_reader_specs *reader, const gdb_byte *info_ptr,
9291 struct abbrev_info *abbrev)
9292 {
9293 unsigned int bytes_read;
9294 struct attribute attr;
9295 bfd *abfd = reader->abfd;
9296 struct dwarf2_cu *cu = reader->cu;
9297 const gdb_byte *buffer = reader->buffer;
9298 const gdb_byte *buffer_end = reader->buffer_end;
9299 unsigned int form, i;
9300
9301 for (i = 0; i < abbrev->num_attrs; i++)
9302 {
9303 /* The only abbrev we care about is DW_AT_sibling. */
9304 if (abbrev->attrs[i].name == DW_AT_sibling)
9305 {
9306 read_attribute (reader, &attr, &abbrev->attrs[i], info_ptr);
9307 if (attr.form == DW_FORM_ref_addr)
9308 complaint (&symfile_complaints,
9309 _("ignoring absolute DW_AT_sibling"));
9310 else
9311 {
9312 sect_offset off = dwarf2_get_ref_die_offset (&attr);
9313 const gdb_byte *sibling_ptr = buffer + to_underlying (off);
9314
9315 if (sibling_ptr < info_ptr)
9316 complaint (&symfile_complaints,
9317 _("DW_AT_sibling points backwards"));
9318 else if (sibling_ptr > reader->buffer_end)
9319 dwarf2_section_buffer_overflow_complaint (reader->die_section);
9320 else
9321 return sibling_ptr;
9322 }
9323 }
9324
9325 /* If it isn't DW_AT_sibling, skip this attribute. */
9326 form = abbrev->attrs[i].form;
9327 skip_attribute:
9328 switch (form)
9329 {
9330 case DW_FORM_ref_addr:
9331 /* In DWARF 2, DW_FORM_ref_addr is address sized; in DWARF 3
9332 and later it is offset sized. */
9333 if (cu->header.version == 2)
9334 info_ptr += cu->header.addr_size;
9335 else
9336 info_ptr += cu->header.offset_size;
9337 break;
9338 case DW_FORM_GNU_ref_alt:
9339 info_ptr += cu->header.offset_size;
9340 break;
9341 case DW_FORM_addr:
9342 info_ptr += cu->header.addr_size;
9343 break;
9344 case DW_FORM_data1:
9345 case DW_FORM_ref1:
9346 case DW_FORM_flag:
9347 info_ptr += 1;
9348 break;
9349 case DW_FORM_flag_present:
9350 case DW_FORM_implicit_const:
9351 break;
9352 case DW_FORM_data2:
9353 case DW_FORM_ref2:
9354 info_ptr += 2;
9355 break;
9356 case DW_FORM_data4:
9357 case DW_FORM_ref4:
9358 info_ptr += 4;
9359 break;
9360 case DW_FORM_data8:
9361 case DW_FORM_ref8:
9362 case DW_FORM_ref_sig8:
9363 info_ptr += 8;
9364 break;
9365 case DW_FORM_data16:
9366 info_ptr += 16;
9367 break;
9368 case DW_FORM_string:
9369 read_direct_string (abfd, info_ptr, &bytes_read);
9370 info_ptr += bytes_read;
9371 break;
9372 case DW_FORM_sec_offset:
9373 case DW_FORM_strp:
9374 case DW_FORM_GNU_strp_alt:
9375 info_ptr += cu->header.offset_size;
9376 break;
9377 case DW_FORM_exprloc:
9378 case DW_FORM_block:
9379 info_ptr += read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
9380 info_ptr += bytes_read;
9381 break;
9382 case DW_FORM_block1:
9383 info_ptr += 1 + read_1_byte (abfd, info_ptr);
9384 break;
9385 case DW_FORM_block2:
9386 info_ptr += 2 + read_2_bytes (abfd, info_ptr);
9387 break;
9388 case DW_FORM_block4:
9389 info_ptr += 4 + read_4_bytes (abfd, info_ptr);
9390 break;
9391 case DW_FORM_sdata:
9392 case DW_FORM_udata:
9393 case DW_FORM_ref_udata:
9394 case DW_FORM_GNU_addr_index:
9395 case DW_FORM_GNU_str_index:
9396 info_ptr = safe_skip_leb128 (info_ptr, buffer_end);
9397 break;
9398 case DW_FORM_indirect:
9399 form = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
9400 info_ptr += bytes_read;
9401 /* We need to continue parsing from here, so just go back to
9402 the top. */
9403 goto skip_attribute;
9404
9405 default:
9406 error (_("Dwarf Error: Cannot handle %s "
9407 "in DWARF reader [in module %s]"),
9408 dwarf_form_name (form),
9409 bfd_get_filename (abfd));
9410 }
9411 }
9412
9413 if (abbrev->has_children)
9414 return skip_children (reader, info_ptr);
9415 else
9416 return info_ptr;
9417 }
9418
9419 /* Locate ORIG_PDI's sibling.
9420 INFO_PTR should point to the start of the next DIE after ORIG_PDI. */
9421
9422 static const gdb_byte *
9423 locate_pdi_sibling (const struct die_reader_specs *reader,
9424 struct partial_die_info *orig_pdi,
9425 const gdb_byte *info_ptr)
9426 {
9427 /* Do we know the sibling already? */
9428
9429 if (orig_pdi->sibling)
9430 return orig_pdi->sibling;
9431
9432 /* Are there any children to deal with? */
9433
9434 if (!orig_pdi->has_children)
9435 return info_ptr;
9436
9437 /* Skip the children the long way. */
9438
9439 return skip_children (reader, info_ptr);
9440 }
9441
9442 /* Expand this partial symbol table into a full symbol table. SELF is
9443 not NULL. */
9444
9445 static void
9446 dwarf2_read_symtab (struct partial_symtab *self,
9447 struct objfile *objfile)
9448 {
9449 struct dwarf2_per_objfile *dwarf2_per_objfile
9450 = get_dwarf2_per_objfile (objfile);
9451
9452 if (self->readin)
9453 {
9454 warning (_("bug: psymtab for %s is already read in."),
9455 self->filename);
9456 }
9457 else
9458 {
9459 if (info_verbose)
9460 {
9461 printf_filtered (_("Reading in symbols for %s..."),
9462 self->filename);
9463 gdb_flush (gdb_stdout);
9464 }
9465
9466 /* If this psymtab is constructed from a debug-only objfile, the
9467 has_section_at_zero flag will not necessarily be correct. We
9468 can get the correct value for this flag by looking at the data
9469 associated with the (presumably stripped) associated objfile. */
9470 if (objfile->separate_debug_objfile_backlink)
9471 {
9472 struct dwarf2_per_objfile *dpo_backlink
9473 = get_dwarf2_per_objfile (objfile->separate_debug_objfile_backlink);
9474
9475 dwarf2_per_objfile->has_section_at_zero
9476 = dpo_backlink->has_section_at_zero;
9477 }
9478
9479 dwarf2_per_objfile->reading_partial_symbols = 0;
9480
9481 psymtab_to_symtab_1 (self);
9482
9483 /* Finish up the debug error message. */
9484 if (info_verbose)
9485 printf_filtered (_("done.\n"));
9486 }
9487
9488 process_cu_includes (dwarf2_per_objfile);
9489 }
9490 \f
9491 /* Reading in full CUs. */
9492
9493 /* Add PER_CU to the queue. */
9494
9495 static void
9496 queue_comp_unit (struct dwarf2_per_cu_data *per_cu,
9497 enum language pretend_language)
9498 {
9499 struct dwarf2_queue_item *item;
9500
9501 per_cu->queued = 1;
9502 item = XNEW (struct dwarf2_queue_item);
9503 item->per_cu = per_cu;
9504 item->pretend_language = pretend_language;
9505 item->next = NULL;
9506
9507 if (dwarf2_queue == NULL)
9508 dwarf2_queue = item;
9509 else
9510 dwarf2_queue_tail->next = item;
9511
9512 dwarf2_queue_tail = item;
9513 }
9514
9515 /* If PER_CU is not yet queued, add it to the queue.
9516 If DEPENDENT_CU is non-NULL, it has a reference to PER_CU so add a
9517 dependency.
9518 The result is non-zero if PER_CU was queued, otherwise the result is zero
9519 meaning either PER_CU is already queued or it is already loaded.
9520
9521 N.B. There is an invariant here that if a CU is queued then it is loaded.
9522 The caller is required to load PER_CU if we return non-zero. */
9523
9524 static int
9525 maybe_queue_comp_unit (struct dwarf2_cu *dependent_cu,
9526 struct dwarf2_per_cu_data *per_cu,
9527 enum language pretend_language)
9528 {
9529 /* We may arrive here during partial symbol reading, if we need full
9530 DIEs to process an unusual case (e.g. template arguments). Do
9531 not queue PER_CU, just tell our caller to load its DIEs. */
9532 if (per_cu->dwarf2_per_objfile->reading_partial_symbols)
9533 {
9534 if (per_cu->cu == NULL || per_cu->cu->dies == NULL)
9535 return 1;
9536 return 0;
9537 }
9538
9539 /* Mark the dependence relation so that we don't flush PER_CU
9540 too early. */
9541 if (dependent_cu != NULL)
9542 dwarf2_add_dependence (dependent_cu, per_cu);
9543
9544 /* If it's already on the queue, we have nothing to do. */
9545 if (per_cu->queued)
9546 return 0;
9547
9548 /* If the compilation unit is already loaded, just mark it as
9549 used. */
9550 if (per_cu->cu != NULL)
9551 {
9552 per_cu->cu->last_used = 0;
9553 return 0;
9554 }
9555
9556 /* Add it to the queue. */
9557 queue_comp_unit (per_cu, pretend_language);
9558
9559 return 1;
9560 }
9561
9562 /* Process the queue. */
9563
9564 static void
9565 process_queue (struct dwarf2_per_objfile *dwarf2_per_objfile)
9566 {
9567 struct dwarf2_queue_item *item, *next_item;
9568
9569 if (dwarf_read_debug)
9570 {
9571 fprintf_unfiltered (gdb_stdlog,
9572 "Expanding one or more symtabs of objfile %s ...\n",
9573 objfile_name (dwarf2_per_objfile->objfile));
9574 }
9575
9576 /* The queue starts out with one item, but following a DIE reference
9577 may load a new CU, adding it to the end of the queue. */
9578 for (item = dwarf2_queue; item != NULL; dwarf2_queue = item = next_item)
9579 {
9580 if ((dwarf2_per_objfile->using_index
9581 ? !item->per_cu->v.quick->compunit_symtab
9582 : (item->per_cu->v.psymtab && !item->per_cu->v.psymtab->readin))
9583 /* Skip dummy CUs. */
9584 && item->per_cu->cu != NULL)
9585 {
9586 struct dwarf2_per_cu_data *per_cu = item->per_cu;
9587 unsigned int debug_print_threshold;
9588 char buf[100];
9589
9590 if (per_cu->is_debug_types)
9591 {
9592 struct signatured_type *sig_type =
9593 (struct signatured_type *) per_cu;
9594
9595 sprintf (buf, "TU %s at offset %s",
9596 hex_string (sig_type->signature),
9597 sect_offset_str (per_cu->sect_off));
9598 /* There can be 100s of TUs.
9599 Only print them in verbose mode. */
9600 debug_print_threshold = 2;
9601 }
9602 else
9603 {
9604 sprintf (buf, "CU at offset %s",
9605 sect_offset_str (per_cu->sect_off));
9606 debug_print_threshold = 1;
9607 }
9608
9609 if (dwarf_read_debug >= debug_print_threshold)
9610 fprintf_unfiltered (gdb_stdlog, "Expanding symtab of %s\n", buf);
9611
9612 if (per_cu->is_debug_types)
9613 process_full_type_unit (per_cu, item->pretend_language);
9614 else
9615 process_full_comp_unit (per_cu, item->pretend_language);
9616
9617 if (dwarf_read_debug >= debug_print_threshold)
9618 fprintf_unfiltered (gdb_stdlog, "Done expanding %s\n", buf);
9619 }
9620
9621 item->per_cu->queued = 0;
9622 next_item = item->next;
9623 xfree (item);
9624 }
9625
9626 dwarf2_queue_tail = NULL;
9627
9628 if (dwarf_read_debug)
9629 {
9630 fprintf_unfiltered (gdb_stdlog, "Done expanding symtabs of %s.\n",
9631 objfile_name (dwarf2_per_objfile->objfile));
9632 }
9633 }
9634
9635 /* Read in full symbols for PST, and anything it depends on. */
9636
9637 static void
9638 psymtab_to_symtab_1 (struct partial_symtab *pst)
9639 {
9640 struct dwarf2_per_cu_data *per_cu;
9641 int i;
9642
9643 if (pst->readin)
9644 return;
9645
9646 for (i = 0; i < pst->number_of_dependencies; i++)
9647 if (!pst->dependencies[i]->readin
9648 && pst->dependencies[i]->user == NULL)
9649 {
9650 /* Inform about additional files that need to be read in. */
9651 if (info_verbose)
9652 {
9653 /* FIXME: i18n: Need to make this a single string. */
9654 fputs_filtered (" ", gdb_stdout);
9655 wrap_here ("");
9656 fputs_filtered ("and ", gdb_stdout);
9657 wrap_here ("");
9658 printf_filtered ("%s...", pst->dependencies[i]->filename);
9659 wrap_here (""); /* Flush output. */
9660 gdb_flush (gdb_stdout);
9661 }
9662 psymtab_to_symtab_1 (pst->dependencies[i]);
9663 }
9664
9665 per_cu = (struct dwarf2_per_cu_data *) pst->read_symtab_private;
9666
9667 if (per_cu == NULL)
9668 {
9669 /* It's an include file, no symbols to read for it.
9670 Everything is in the parent symtab. */
9671 pst->readin = 1;
9672 return;
9673 }
9674
9675 dw2_do_instantiate_symtab (per_cu);
9676 }
9677
9678 /* Trivial hash function for die_info: the hash value of a DIE
9679 is its offset in .debug_info for this objfile. */
9680
9681 static hashval_t
9682 die_hash (const void *item)
9683 {
9684 const struct die_info *die = (const struct die_info *) item;
9685
9686 return to_underlying (die->sect_off);
9687 }
9688
9689 /* Trivial comparison function for die_info structures: two DIEs
9690 are equal if they have the same offset. */
9691
9692 static int
9693 die_eq (const void *item_lhs, const void *item_rhs)
9694 {
9695 const struct die_info *die_lhs = (const struct die_info *) item_lhs;
9696 const struct die_info *die_rhs = (const struct die_info *) item_rhs;
9697
9698 return die_lhs->sect_off == die_rhs->sect_off;
9699 }
9700
9701 /* die_reader_func for load_full_comp_unit.
9702 This is identical to read_signatured_type_reader,
9703 but is kept separate for now. */
9704
9705 static void
9706 load_full_comp_unit_reader (const struct die_reader_specs *reader,
9707 const gdb_byte *info_ptr,
9708 struct die_info *comp_unit_die,
9709 int has_children,
9710 void *data)
9711 {
9712 struct dwarf2_cu *cu = reader->cu;
9713 enum language *language_ptr = (enum language *) data;
9714
9715 gdb_assert (cu->die_hash == NULL);
9716 cu->die_hash =
9717 htab_create_alloc_ex (cu->header.length / 12,
9718 die_hash,
9719 die_eq,
9720 NULL,
9721 &cu->comp_unit_obstack,
9722 hashtab_obstack_allocate,
9723 dummy_obstack_deallocate);
9724
9725 if (has_children)
9726 comp_unit_die->child = read_die_and_siblings (reader, info_ptr,
9727 &info_ptr, comp_unit_die);
9728 cu->dies = comp_unit_die;
9729 /* comp_unit_die is not stored in die_hash, no need. */
9730
9731 /* We try not to read any attributes in this function, because not
9732 all CUs needed for references have been loaded yet, and symbol
9733 table processing isn't initialized. But we have to set the CU language,
9734 or we won't be able to build types correctly.
9735 Similarly, if we do not read the producer, we can not apply
9736 producer-specific interpretation. */
9737 prepare_one_comp_unit (cu, cu->dies, *language_ptr);
9738 }
9739
9740 /* Load the DIEs associated with PER_CU into memory. */
9741
9742 static void
9743 load_full_comp_unit (struct dwarf2_per_cu_data *this_cu,
9744 enum language pretend_language)
9745 {
9746 gdb_assert (! this_cu->is_debug_types);
9747
9748 init_cutu_and_read_dies (this_cu, NULL, 1, 1,
9749 load_full_comp_unit_reader, &pretend_language);
9750 }
9751
9752 /* Add a DIE to the delayed physname list. */
9753
9754 static void
9755 add_to_method_list (struct type *type, int fnfield_index, int index,
9756 const char *name, struct die_info *die,
9757 struct dwarf2_cu *cu)
9758 {
9759 struct delayed_method_info mi;
9760 mi.type = type;
9761 mi.fnfield_index = fnfield_index;
9762 mi.index = index;
9763 mi.name = name;
9764 mi.die = die;
9765 cu->method_list.push_back (mi);
9766 }
9767
9768 /* Check whether [PHYSNAME, PHYSNAME+LEN) ends with a modifier like
9769 "const" / "volatile". If so, decrements LEN by the length of the
9770 modifier and return true. Otherwise return false. */
9771
9772 template<size_t N>
9773 static bool
9774 check_modifier (const char *physname, size_t &len, const char (&mod)[N])
9775 {
9776 size_t mod_len = sizeof (mod) - 1;
9777 if (len > mod_len && startswith (physname + (len - mod_len), mod))
9778 {
9779 len -= mod_len;
9780 return true;
9781 }
9782 return false;
9783 }
9784
9785 /* Compute the physnames of any methods on the CU's method list.
9786
9787 The computation of method physnames is delayed in order to avoid the
9788 (bad) condition that one of the method's formal parameters is of an as yet
9789 incomplete type. */
9790
9791 static void
9792 compute_delayed_physnames (struct dwarf2_cu *cu)
9793 {
9794 /* Only C++ delays computing physnames. */
9795 if (cu->method_list.empty ())
9796 return;
9797 gdb_assert (cu->language == language_cplus);
9798
9799 for (struct delayed_method_info &mi : cu->method_list)
9800 {
9801 const char *physname;
9802 struct fn_fieldlist *fn_flp
9803 = &TYPE_FN_FIELDLIST (mi.type, mi.fnfield_index);
9804 physname = dwarf2_physname (mi.name, mi.die, cu);
9805 TYPE_FN_FIELD_PHYSNAME (fn_flp->fn_fields, mi.index)
9806 = physname ? physname : "";
9807
9808 /* Since there's no tag to indicate whether a method is a
9809 const/volatile overload, extract that information out of the
9810 demangled name. */
9811 if (physname != NULL)
9812 {
9813 size_t len = strlen (physname);
9814
9815 while (1)
9816 {
9817 if (physname[len] == ')') /* shortcut */
9818 break;
9819 else if (check_modifier (physname, len, " const"))
9820 TYPE_FN_FIELD_CONST (fn_flp->fn_fields, mi.index) = 1;
9821 else if (check_modifier (physname, len, " volatile"))
9822 TYPE_FN_FIELD_VOLATILE (fn_flp->fn_fields, mi.index) = 1;
9823 else
9824 break;
9825 }
9826 }
9827 }
9828
9829 /* The list is no longer needed. */
9830 cu->method_list.clear ();
9831 }
9832
9833 /* Go objects should be embedded in a DW_TAG_module DIE,
9834 and it's not clear if/how imported objects will appear.
9835 To keep Go support simple until that's worked out,
9836 go back through what we've read and create something usable.
9837 We could do this while processing each DIE, and feels kinda cleaner,
9838 but that way is more invasive.
9839 This is to, for example, allow the user to type "p var" or "b main"
9840 without having to specify the package name, and allow lookups
9841 of module.object to work in contexts that use the expression
9842 parser. */
9843
9844 static void
9845 fixup_go_packaging (struct dwarf2_cu *cu)
9846 {
9847 char *package_name = NULL;
9848 struct pending *list;
9849 int i;
9850
9851 for (list = global_symbols; list != NULL; list = list->next)
9852 {
9853 for (i = 0; i < list->nsyms; ++i)
9854 {
9855 struct symbol *sym = list->symbol[i];
9856
9857 if (SYMBOL_LANGUAGE (sym) == language_go
9858 && SYMBOL_CLASS (sym) == LOC_BLOCK)
9859 {
9860 char *this_package_name = go_symbol_package_name (sym);
9861
9862 if (this_package_name == NULL)
9863 continue;
9864 if (package_name == NULL)
9865 package_name = this_package_name;
9866 else
9867 {
9868 struct objfile *objfile
9869 = cu->per_cu->dwarf2_per_objfile->objfile;
9870 if (strcmp (package_name, this_package_name) != 0)
9871 complaint (&symfile_complaints,
9872 _("Symtab %s has objects from two different Go packages: %s and %s"),
9873 (symbol_symtab (sym) != NULL
9874 ? symtab_to_filename_for_display
9875 (symbol_symtab (sym))
9876 : objfile_name (objfile)),
9877 this_package_name, package_name);
9878 xfree (this_package_name);
9879 }
9880 }
9881 }
9882 }
9883
9884 if (package_name != NULL)
9885 {
9886 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
9887 const char *saved_package_name
9888 = (const char *) obstack_copy0 (&objfile->per_bfd->storage_obstack,
9889 package_name,
9890 strlen (package_name));
9891 struct type *type = init_type (objfile, TYPE_CODE_MODULE, 0,
9892 saved_package_name);
9893 struct symbol *sym;
9894
9895 TYPE_TAG_NAME (type) = TYPE_NAME (type);
9896
9897 sym = allocate_symbol (objfile);
9898 SYMBOL_SET_LANGUAGE (sym, language_go, &objfile->objfile_obstack);
9899 SYMBOL_SET_NAMES (sym, saved_package_name,
9900 strlen (saved_package_name), 0, objfile);
9901 /* This is not VAR_DOMAIN because we want a way to ensure a lookup of,
9902 e.g., "main" finds the "main" module and not C's main(). */
9903 SYMBOL_DOMAIN (sym) = STRUCT_DOMAIN;
9904 SYMBOL_ACLASS_INDEX (sym) = LOC_TYPEDEF;
9905 SYMBOL_TYPE (sym) = type;
9906
9907 add_symbol_to_list (sym, &global_symbols);
9908
9909 xfree (package_name);
9910 }
9911 }
9912
9913 /* Allocate a fully-qualified name consisting of the two parts on the
9914 obstack. */
9915
9916 static const char *
9917 rust_fully_qualify (struct obstack *obstack, const char *p1, const char *p2)
9918 {
9919 return obconcat (obstack, p1, "::", p2, (char *) NULL);
9920 }
9921
9922 /* A helper that allocates a struct discriminant_info to attach to a
9923 union type. */
9924
9925 static struct discriminant_info *
9926 alloc_discriminant_info (struct type *type, int discriminant_index,
9927 int default_index)
9928 {
9929 gdb_assert (TYPE_CODE (type) == TYPE_CODE_UNION);
9930 gdb_assert (discriminant_index == -1
9931 || (discriminant_index >= 0
9932 && discriminant_index < TYPE_NFIELDS (type)));
9933 gdb_assert (default_index == -1
9934 || (default_index >= 0 && default_index < TYPE_NFIELDS (type)));
9935
9936 TYPE_FLAG_DISCRIMINATED_UNION (type) = 1;
9937
9938 struct discriminant_info *disc
9939 = ((struct discriminant_info *)
9940 TYPE_ZALLOC (type,
9941 offsetof (struct discriminant_info, discriminants)
9942 + TYPE_NFIELDS (type) * sizeof (disc->discriminants[0])));
9943 disc->default_index = default_index;
9944 disc->discriminant_index = discriminant_index;
9945
9946 struct dynamic_prop prop;
9947 prop.kind = PROP_UNDEFINED;
9948 prop.data.baton = disc;
9949
9950 add_dyn_prop (DYN_PROP_DISCRIMINATED, prop, type);
9951
9952 return disc;
9953 }
9954
9955 /* Some versions of rustc emitted enums in an unusual way.
9956
9957 Ordinary enums were emitted as unions. The first element of each
9958 structure in the union was named "RUST$ENUM$DISR". This element
9959 held the discriminant.
9960
9961 These versions of Rust also implemented the "non-zero"
9962 optimization. When the enum had two values, and one is empty and
9963 the other holds a pointer that cannot be zero, the pointer is used
9964 as the discriminant, with a zero value meaning the empty variant.
9965 Here, the union's first member is of the form
9966 RUST$ENCODED$ENUM$<fieldno>$<fieldno>$...$<variantname>
9967 where the fieldnos are the indices of the fields that should be
9968 traversed in order to find the field (which may be several fields deep)
9969 and the variantname is the name of the variant of the case when the
9970 field is zero.
9971
9972 This function recognizes whether TYPE is of one of these forms,
9973 and, if so, smashes it to be a variant type. */
9974
9975 static void
9976 quirk_rust_enum (struct type *type, struct objfile *objfile)
9977 {
9978 gdb_assert (TYPE_CODE (type) == TYPE_CODE_UNION);
9979
9980 /* We don't need to deal with empty enums. */
9981 if (TYPE_NFIELDS (type) == 0)
9982 return;
9983
9984 #define RUST_ENUM_PREFIX "RUST$ENCODED$ENUM$"
9985 if (TYPE_NFIELDS (type) == 1
9986 && startswith (TYPE_FIELD_NAME (type, 0), RUST_ENUM_PREFIX))
9987 {
9988 const char *name = TYPE_FIELD_NAME (type, 0) + strlen (RUST_ENUM_PREFIX);
9989
9990 /* Decode the field name to find the offset of the
9991 discriminant. */
9992 ULONGEST bit_offset = 0;
9993 struct type *field_type = TYPE_FIELD_TYPE (type, 0);
9994 while (name[0] >= '0' && name[0] <= '9')
9995 {
9996 char *tail;
9997 unsigned long index = strtoul (name, &tail, 10);
9998 name = tail;
9999 if (*name != '$'
10000 || index >= TYPE_NFIELDS (field_type)
10001 || (TYPE_FIELD_LOC_KIND (field_type, index)
10002 != FIELD_LOC_KIND_BITPOS))
10003 {
10004 complaint (&symfile_complaints,
10005 _("Could not parse Rust enum encoding string \"%s\""
10006 "[in module %s]"),
10007 TYPE_FIELD_NAME (type, 0),
10008 objfile_name (objfile));
10009 return;
10010 }
10011 ++name;
10012
10013 bit_offset += TYPE_FIELD_BITPOS (field_type, index);
10014 field_type = TYPE_FIELD_TYPE (field_type, index);
10015 }
10016
10017 /* Make a union to hold the variants. */
10018 struct type *union_type = alloc_type (objfile);
10019 TYPE_CODE (union_type) = TYPE_CODE_UNION;
10020 TYPE_NFIELDS (union_type) = 3;
10021 TYPE_FIELDS (union_type)
10022 = (struct field *) TYPE_ZALLOC (type, 3 * sizeof (struct field));
10023 TYPE_LENGTH (union_type) = TYPE_LENGTH (type);
10024
10025 /* Put the discriminant must at index 0. */
10026 TYPE_FIELD_TYPE (union_type, 0) = field_type;
10027 TYPE_FIELD_ARTIFICIAL (union_type, 0) = 1;
10028 TYPE_FIELD_NAME (union_type, 0) = "<<discriminant>>";
10029 SET_FIELD_BITPOS (TYPE_FIELD (union_type, 0), bit_offset);
10030
10031 /* The order of fields doesn't really matter, so put the real
10032 field at index 1 and the data-less field at index 2. */
10033 struct discriminant_info *disc
10034 = alloc_discriminant_info (union_type, 0, 1);
10035 TYPE_FIELD (union_type, 1) = TYPE_FIELD (type, 0);
10036 TYPE_FIELD_NAME (union_type, 1)
10037 = rust_last_path_segment (TYPE_NAME (TYPE_FIELD_TYPE (union_type, 1)));
10038 TYPE_NAME (TYPE_FIELD_TYPE (union_type, 1))
10039 = rust_fully_qualify (&objfile->objfile_obstack, TYPE_NAME (type),
10040 TYPE_FIELD_NAME (union_type, 1));
10041
10042 const char *dataless_name
10043 = rust_fully_qualify (&objfile->objfile_obstack, TYPE_NAME (type),
10044 name);
10045 struct type *dataless_type = init_type (objfile, TYPE_CODE_VOID, 0,
10046 dataless_name);
10047 TYPE_FIELD_TYPE (union_type, 2) = dataless_type;
10048 /* NAME points into the original discriminant name, which
10049 already has the correct lifetime. */
10050 TYPE_FIELD_NAME (union_type, 2) = name;
10051 SET_FIELD_BITPOS (TYPE_FIELD (union_type, 2), 0);
10052 disc->discriminants[2] = 0;
10053
10054 /* Smash this type to be a structure type. We have to do this
10055 because the type has already been recorded. */
10056 TYPE_CODE (type) = TYPE_CODE_STRUCT;
10057 TYPE_NFIELDS (type) = 1;
10058 TYPE_FIELDS (type)
10059 = (struct field *) TYPE_ZALLOC (type, sizeof (struct field));
10060
10061 /* Install the variant part. */
10062 TYPE_FIELD_TYPE (type, 0) = union_type;
10063 SET_FIELD_BITPOS (TYPE_FIELD (type, 0), 0);
10064 TYPE_FIELD_NAME (type, 0) = "<<variants>>";
10065 }
10066 else if (TYPE_NFIELDS (type) == 1)
10067 {
10068 /* We assume that a union with a single field is a univariant
10069 enum. */
10070 /* Smash this type to be a structure type. We have to do this
10071 because the type has already been recorded. */
10072 TYPE_CODE (type) = TYPE_CODE_STRUCT;
10073
10074 /* Make a union to hold the variants. */
10075 struct type *union_type = alloc_type (objfile);
10076 TYPE_CODE (union_type) = TYPE_CODE_UNION;
10077 TYPE_NFIELDS (union_type) = TYPE_NFIELDS (type);
10078 TYPE_LENGTH (union_type) = TYPE_LENGTH (type);
10079 TYPE_FIELDS (union_type) = TYPE_FIELDS (type);
10080
10081 struct type *field_type = TYPE_FIELD_TYPE (union_type, 0);
10082 const char *variant_name
10083 = rust_last_path_segment (TYPE_NAME (field_type));
10084 TYPE_FIELD_NAME (union_type, 0) = variant_name;
10085 TYPE_NAME (field_type)
10086 = rust_fully_qualify (&objfile->objfile_obstack,
10087 TYPE_NAME (type), variant_name);
10088
10089 /* Install the union in the outer struct type. */
10090 TYPE_NFIELDS (type) = 1;
10091 TYPE_FIELDS (type)
10092 = (struct field *) TYPE_ZALLOC (union_type, sizeof (struct field));
10093 TYPE_FIELD_TYPE (type, 0) = union_type;
10094 TYPE_FIELD_NAME (type, 0) = "<<variants>>";
10095 SET_FIELD_BITPOS (TYPE_FIELD (type, 0), 0);
10096
10097 alloc_discriminant_info (union_type, -1, 0);
10098 }
10099 else
10100 {
10101 struct type *disr_type = nullptr;
10102 for (int i = 0; i < TYPE_NFIELDS (type); ++i)
10103 {
10104 disr_type = TYPE_FIELD_TYPE (type, i);
10105
10106 if (TYPE_NFIELDS (disr_type) == 0)
10107 {
10108 /* Could be data-less variant, so keep going. */
10109 }
10110 else if (strcmp (TYPE_FIELD_NAME (disr_type, 0),
10111 "RUST$ENUM$DISR") != 0)
10112 {
10113 /* Not a Rust enum. */
10114 return;
10115 }
10116 else
10117 {
10118 /* Found one. */
10119 break;
10120 }
10121 }
10122
10123 /* If we got here without a discriminant, then it's probably
10124 just a union. */
10125 if (disr_type == nullptr)
10126 return;
10127
10128 /* Smash this type to be a structure type. We have to do this
10129 because the type has already been recorded. */
10130 TYPE_CODE (type) = TYPE_CODE_STRUCT;
10131
10132 /* Make a union to hold the variants. */
10133 struct field *disr_field = &TYPE_FIELD (disr_type, 0);
10134 struct type *union_type = alloc_type (objfile);
10135 TYPE_CODE (union_type) = TYPE_CODE_UNION;
10136 TYPE_NFIELDS (union_type) = 1 + TYPE_NFIELDS (type);
10137 TYPE_LENGTH (union_type) = TYPE_LENGTH (type);
10138 TYPE_FIELDS (union_type)
10139 = (struct field *) TYPE_ZALLOC (union_type,
10140 (TYPE_NFIELDS (union_type)
10141 * sizeof (struct field)));
10142
10143 memcpy (TYPE_FIELDS (union_type) + 1, TYPE_FIELDS (type),
10144 TYPE_NFIELDS (type) * sizeof (struct field));
10145
10146 /* Install the discriminant at index 0 in the union. */
10147 TYPE_FIELD (union_type, 0) = *disr_field;
10148 TYPE_FIELD_ARTIFICIAL (union_type, 0) = 1;
10149 TYPE_FIELD_NAME (union_type, 0) = "<<discriminant>>";
10150
10151 /* Install the union in the outer struct type. */
10152 TYPE_FIELD_TYPE (type, 0) = union_type;
10153 TYPE_FIELD_NAME (type, 0) = "<<variants>>";
10154 TYPE_NFIELDS (type) = 1;
10155
10156 /* Set the size and offset of the union type. */
10157 SET_FIELD_BITPOS (TYPE_FIELD (type, 0), 0);
10158
10159 /* We need a way to find the correct discriminant given a
10160 variant name. For convenience we build a map here. */
10161 struct type *enum_type = FIELD_TYPE (*disr_field);
10162 std::unordered_map<std::string, ULONGEST> discriminant_map;
10163 for (int i = 0; i < TYPE_NFIELDS (enum_type); ++i)
10164 {
10165 if (TYPE_FIELD_LOC_KIND (enum_type, i) == FIELD_LOC_KIND_ENUMVAL)
10166 {
10167 const char *name
10168 = rust_last_path_segment (TYPE_FIELD_NAME (enum_type, i));
10169 discriminant_map[name] = TYPE_FIELD_ENUMVAL (enum_type, i);
10170 }
10171 }
10172
10173 int n_fields = TYPE_NFIELDS (union_type);
10174 struct discriminant_info *disc
10175 = alloc_discriminant_info (union_type, 0, -1);
10176 /* Skip the discriminant here. */
10177 for (int i = 1; i < n_fields; ++i)
10178 {
10179 /* Find the final word in the name of this variant's type.
10180 That name can be used to look up the correct
10181 discriminant. */
10182 const char *variant_name
10183 = rust_last_path_segment (TYPE_NAME (TYPE_FIELD_TYPE (union_type,
10184 i)));
10185
10186 auto iter = discriminant_map.find (variant_name);
10187 if (iter != discriminant_map.end ())
10188 disc->discriminants[i] = iter->second;
10189
10190 /* Remove the discriminant field. */
10191 struct type *sub_type = TYPE_FIELD_TYPE (union_type, i);
10192 --TYPE_NFIELDS (sub_type);
10193 ++TYPE_FIELDS (sub_type);
10194 TYPE_FIELD_NAME (union_type, i) = variant_name;
10195 TYPE_NAME (sub_type)
10196 = rust_fully_qualify (&objfile->objfile_obstack,
10197 TYPE_NAME (type), variant_name);
10198 }
10199 }
10200 }
10201
10202 /* Rewrite some Rust unions to be structures with variants parts. */
10203
10204 static void
10205 rust_union_quirks (struct dwarf2_cu *cu)
10206 {
10207 gdb_assert (cu->language == language_rust);
10208 for (struct type *type : cu->rust_unions)
10209 quirk_rust_enum (type, cu->per_cu->dwarf2_per_objfile->objfile);
10210 }
10211
10212 /* Return the symtab for PER_CU. This works properly regardless of
10213 whether we're using the index or psymtabs. */
10214
10215 static struct compunit_symtab *
10216 get_compunit_symtab (struct dwarf2_per_cu_data *per_cu)
10217 {
10218 return (per_cu->dwarf2_per_objfile->using_index
10219 ? per_cu->v.quick->compunit_symtab
10220 : per_cu->v.psymtab->compunit_symtab);
10221 }
10222
10223 /* A helper function for computing the list of all symbol tables
10224 included by PER_CU. */
10225
10226 static void
10227 recursively_compute_inclusions (VEC (compunit_symtab_ptr) **result,
10228 htab_t all_children, htab_t all_type_symtabs,
10229 struct dwarf2_per_cu_data *per_cu,
10230 struct compunit_symtab *immediate_parent)
10231 {
10232 void **slot;
10233 int ix;
10234 struct compunit_symtab *cust;
10235 struct dwarf2_per_cu_data *iter;
10236
10237 slot = htab_find_slot (all_children, per_cu, INSERT);
10238 if (*slot != NULL)
10239 {
10240 /* This inclusion and its children have been processed. */
10241 return;
10242 }
10243
10244 *slot = per_cu;
10245 /* Only add a CU if it has a symbol table. */
10246 cust = get_compunit_symtab (per_cu);
10247 if (cust != NULL)
10248 {
10249 /* If this is a type unit only add its symbol table if we haven't
10250 seen it yet (type unit per_cu's can share symtabs). */
10251 if (per_cu->is_debug_types)
10252 {
10253 slot = htab_find_slot (all_type_symtabs, cust, INSERT);
10254 if (*slot == NULL)
10255 {
10256 *slot = cust;
10257 VEC_safe_push (compunit_symtab_ptr, *result, cust);
10258 if (cust->user == NULL)
10259 cust->user = immediate_parent;
10260 }
10261 }
10262 else
10263 {
10264 VEC_safe_push (compunit_symtab_ptr, *result, cust);
10265 if (cust->user == NULL)
10266 cust->user = immediate_parent;
10267 }
10268 }
10269
10270 for (ix = 0;
10271 VEC_iterate (dwarf2_per_cu_ptr, per_cu->imported_symtabs, ix, iter);
10272 ++ix)
10273 {
10274 recursively_compute_inclusions (result, all_children,
10275 all_type_symtabs, iter, cust);
10276 }
10277 }
10278
10279 /* Compute the compunit_symtab 'includes' fields for the compunit_symtab of
10280 PER_CU. */
10281
10282 static void
10283 compute_compunit_symtab_includes (struct dwarf2_per_cu_data *per_cu)
10284 {
10285 gdb_assert (! per_cu->is_debug_types);
10286
10287 if (!VEC_empty (dwarf2_per_cu_ptr, per_cu->imported_symtabs))
10288 {
10289 int ix, len;
10290 struct dwarf2_per_cu_data *per_cu_iter;
10291 struct compunit_symtab *compunit_symtab_iter;
10292 VEC (compunit_symtab_ptr) *result_symtabs = NULL;
10293 htab_t all_children, all_type_symtabs;
10294 struct compunit_symtab *cust = get_compunit_symtab (per_cu);
10295
10296 /* If we don't have a symtab, we can just skip this case. */
10297 if (cust == NULL)
10298 return;
10299
10300 all_children = htab_create_alloc (1, htab_hash_pointer, htab_eq_pointer,
10301 NULL, xcalloc, xfree);
10302 all_type_symtabs = htab_create_alloc (1, htab_hash_pointer, htab_eq_pointer,
10303 NULL, xcalloc, xfree);
10304
10305 for (ix = 0;
10306 VEC_iterate (dwarf2_per_cu_ptr, per_cu->imported_symtabs,
10307 ix, per_cu_iter);
10308 ++ix)
10309 {
10310 recursively_compute_inclusions (&result_symtabs, all_children,
10311 all_type_symtabs, per_cu_iter,
10312 cust);
10313 }
10314
10315 /* Now we have a transitive closure of all the included symtabs. */
10316 len = VEC_length (compunit_symtab_ptr, result_symtabs);
10317 cust->includes
10318 = XOBNEWVEC (&per_cu->dwarf2_per_objfile->objfile->objfile_obstack,
10319 struct compunit_symtab *, len + 1);
10320 for (ix = 0;
10321 VEC_iterate (compunit_symtab_ptr, result_symtabs, ix,
10322 compunit_symtab_iter);
10323 ++ix)
10324 cust->includes[ix] = compunit_symtab_iter;
10325 cust->includes[len] = NULL;
10326
10327 VEC_free (compunit_symtab_ptr, result_symtabs);
10328 htab_delete (all_children);
10329 htab_delete (all_type_symtabs);
10330 }
10331 }
10332
10333 /* Compute the 'includes' field for the symtabs of all the CUs we just
10334 read. */
10335
10336 static void
10337 process_cu_includes (struct dwarf2_per_objfile *dwarf2_per_objfile)
10338 {
10339 int ix;
10340 struct dwarf2_per_cu_data *iter;
10341
10342 for (ix = 0;
10343 VEC_iterate (dwarf2_per_cu_ptr, dwarf2_per_objfile->just_read_cus,
10344 ix, iter);
10345 ++ix)
10346 {
10347 if (! iter->is_debug_types)
10348 compute_compunit_symtab_includes (iter);
10349 }
10350
10351 VEC_free (dwarf2_per_cu_ptr, dwarf2_per_objfile->just_read_cus);
10352 }
10353
10354 /* Generate full symbol information for PER_CU, whose DIEs have
10355 already been loaded into memory. */
10356
10357 static void
10358 process_full_comp_unit (struct dwarf2_per_cu_data *per_cu,
10359 enum language pretend_language)
10360 {
10361 struct dwarf2_cu *cu = per_cu->cu;
10362 struct dwarf2_per_objfile *dwarf2_per_objfile = per_cu->dwarf2_per_objfile;
10363 struct objfile *objfile = dwarf2_per_objfile->objfile;
10364 struct gdbarch *gdbarch = get_objfile_arch (objfile);
10365 CORE_ADDR lowpc, highpc;
10366 struct compunit_symtab *cust;
10367 CORE_ADDR baseaddr;
10368 struct block *static_block;
10369 CORE_ADDR addr;
10370
10371 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
10372
10373 buildsym_init ();
10374 scoped_free_pendings free_pending;
10375
10376 /* Clear the list here in case something was left over. */
10377 cu->method_list.clear ();
10378
10379 cu->list_in_scope = &file_symbols;
10380
10381 cu->language = pretend_language;
10382 cu->language_defn = language_def (cu->language);
10383
10384 /* Do line number decoding in read_file_scope () */
10385 process_die (cu->dies, cu);
10386
10387 /* For now fudge the Go package. */
10388 if (cu->language == language_go)
10389 fixup_go_packaging (cu);
10390
10391 /* Now that we have processed all the DIEs in the CU, all the types
10392 should be complete, and it should now be safe to compute all of the
10393 physnames. */
10394 compute_delayed_physnames (cu);
10395
10396 if (cu->language == language_rust)
10397 rust_union_quirks (cu);
10398
10399 /* Some compilers don't define a DW_AT_high_pc attribute for the
10400 compilation unit. If the DW_AT_high_pc is missing, synthesize
10401 it, by scanning the DIE's below the compilation unit. */
10402 get_scope_pc_bounds (cu->dies, &lowpc, &highpc, cu);
10403
10404 addr = gdbarch_adjust_dwarf2_addr (gdbarch, highpc + baseaddr);
10405 static_block = end_symtab_get_static_block (addr, 0, 1);
10406
10407 /* If the comp unit has DW_AT_ranges, it may have discontiguous ranges.
10408 Also, DW_AT_ranges may record ranges not belonging to any child DIEs
10409 (such as virtual method tables). Record the ranges in STATIC_BLOCK's
10410 addrmap to help ensure it has an accurate map of pc values belonging to
10411 this comp unit. */
10412 dwarf2_record_block_ranges (cu->dies, static_block, baseaddr, cu);
10413
10414 cust = end_symtab_from_static_block (static_block,
10415 SECT_OFF_TEXT (objfile), 0);
10416
10417 if (cust != NULL)
10418 {
10419 int gcc_4_minor = producer_is_gcc_ge_4 (cu->producer);
10420
10421 /* Set symtab language to language from DW_AT_language. If the
10422 compilation is from a C file generated by language preprocessors, do
10423 not set the language if it was already deduced by start_subfile. */
10424 if (!(cu->language == language_c
10425 && COMPUNIT_FILETABS (cust)->language != language_unknown))
10426 COMPUNIT_FILETABS (cust)->language = cu->language;
10427
10428 /* GCC-4.0 has started to support -fvar-tracking. GCC-3.x still can
10429 produce DW_AT_location with location lists but it can be possibly
10430 invalid without -fvar-tracking. Still up to GCC-4.4.x incl. 4.4.0
10431 there were bugs in prologue debug info, fixed later in GCC-4.5
10432 by "unwind info for epilogues" patch (which is not directly related).
10433
10434 For -gdwarf-4 type units LOCATIONS_VALID indication is fortunately not
10435 needed, it would be wrong due to missing DW_AT_producer there.
10436
10437 Still one can confuse GDB by using non-standard GCC compilation
10438 options - this waits on GCC PR other/32998 (-frecord-gcc-switches).
10439 */
10440 if (cu->has_loclist && gcc_4_minor >= 5)
10441 cust->locations_valid = 1;
10442
10443 if (gcc_4_minor >= 5)
10444 cust->epilogue_unwind_valid = 1;
10445
10446 cust->call_site_htab = cu->call_site_htab;
10447 }
10448
10449 if (dwarf2_per_objfile->using_index)
10450 per_cu->v.quick->compunit_symtab = cust;
10451 else
10452 {
10453 struct partial_symtab *pst = per_cu->v.psymtab;
10454 pst->compunit_symtab = cust;
10455 pst->readin = 1;
10456 }
10457
10458 /* Push it for inclusion processing later. */
10459 VEC_safe_push (dwarf2_per_cu_ptr, dwarf2_per_objfile->just_read_cus, per_cu);
10460 }
10461
10462 /* Generate full symbol information for type unit PER_CU, whose DIEs have
10463 already been loaded into memory. */
10464
10465 static void
10466 process_full_type_unit (struct dwarf2_per_cu_data *per_cu,
10467 enum language pretend_language)
10468 {
10469 struct dwarf2_cu *cu = per_cu->cu;
10470 struct dwarf2_per_objfile *dwarf2_per_objfile = per_cu->dwarf2_per_objfile;
10471 struct objfile *objfile = dwarf2_per_objfile->objfile;
10472 struct compunit_symtab *cust;
10473 struct signatured_type *sig_type;
10474
10475 gdb_assert (per_cu->is_debug_types);
10476 sig_type = (struct signatured_type *) per_cu;
10477
10478 buildsym_init ();
10479 scoped_free_pendings free_pending;
10480
10481 /* Clear the list here in case something was left over. */
10482 cu->method_list.clear ();
10483
10484 cu->list_in_scope = &file_symbols;
10485
10486 cu->language = pretend_language;
10487 cu->language_defn = language_def (cu->language);
10488
10489 /* The symbol tables are set up in read_type_unit_scope. */
10490 process_die (cu->dies, cu);
10491
10492 /* For now fudge the Go package. */
10493 if (cu->language == language_go)
10494 fixup_go_packaging (cu);
10495
10496 /* Now that we have processed all the DIEs in the CU, all the types
10497 should be complete, and it should now be safe to compute all of the
10498 physnames. */
10499 compute_delayed_physnames (cu);
10500
10501 if (cu->language == language_rust)
10502 rust_union_quirks (cu);
10503
10504 /* TUs share symbol tables.
10505 If this is the first TU to use this symtab, complete the construction
10506 of it with end_expandable_symtab. Otherwise, complete the addition of
10507 this TU's symbols to the existing symtab. */
10508 if (sig_type->type_unit_group->compunit_symtab == NULL)
10509 {
10510 cust = end_expandable_symtab (0, SECT_OFF_TEXT (objfile));
10511 sig_type->type_unit_group->compunit_symtab = cust;
10512
10513 if (cust != NULL)
10514 {
10515 /* Set symtab language to language from DW_AT_language. If the
10516 compilation is from a C file generated by language preprocessors,
10517 do not set the language if it was already deduced by
10518 start_subfile. */
10519 if (!(cu->language == language_c
10520 && COMPUNIT_FILETABS (cust)->language != language_c))
10521 COMPUNIT_FILETABS (cust)->language = cu->language;
10522 }
10523 }
10524 else
10525 {
10526 augment_type_symtab ();
10527 cust = sig_type->type_unit_group->compunit_symtab;
10528 }
10529
10530 if (dwarf2_per_objfile->using_index)
10531 per_cu->v.quick->compunit_symtab = cust;
10532 else
10533 {
10534 struct partial_symtab *pst = per_cu->v.psymtab;
10535 pst->compunit_symtab = cust;
10536 pst->readin = 1;
10537 }
10538 }
10539
10540 /* Process an imported unit DIE. */
10541
10542 static void
10543 process_imported_unit_die (struct die_info *die, struct dwarf2_cu *cu)
10544 {
10545 struct attribute *attr;
10546
10547 /* For now we don't handle imported units in type units. */
10548 if (cu->per_cu->is_debug_types)
10549 {
10550 error (_("Dwarf Error: DW_TAG_imported_unit is not"
10551 " supported in type units [in module %s]"),
10552 objfile_name (cu->per_cu->dwarf2_per_objfile->objfile));
10553 }
10554
10555 attr = dwarf2_attr (die, DW_AT_import, cu);
10556 if (attr != NULL)
10557 {
10558 sect_offset sect_off = dwarf2_get_ref_die_offset (attr);
10559 bool is_dwz = (attr->form == DW_FORM_GNU_ref_alt || cu->per_cu->is_dwz);
10560 dwarf2_per_cu_data *per_cu
10561 = dwarf2_find_containing_comp_unit (sect_off, is_dwz,
10562 cu->per_cu->dwarf2_per_objfile);
10563
10564 /* If necessary, add it to the queue and load its DIEs. */
10565 if (maybe_queue_comp_unit (cu, per_cu, cu->language))
10566 load_full_comp_unit (per_cu, cu->language);
10567
10568 VEC_safe_push (dwarf2_per_cu_ptr, cu->per_cu->imported_symtabs,
10569 per_cu);
10570 }
10571 }
10572
10573 /* RAII object that represents a process_die scope: i.e.,
10574 starts/finishes processing a DIE. */
10575 class process_die_scope
10576 {
10577 public:
10578 process_die_scope (die_info *die, dwarf2_cu *cu)
10579 : m_die (die), m_cu (cu)
10580 {
10581 /* We should only be processing DIEs not already in process. */
10582 gdb_assert (!m_die->in_process);
10583 m_die->in_process = true;
10584 }
10585
10586 ~process_die_scope ()
10587 {
10588 m_die->in_process = false;
10589
10590 /* If we're done processing the DIE for the CU that owns the line
10591 header, we don't need the line header anymore. */
10592 if (m_cu->line_header_die_owner == m_die)
10593 {
10594 delete m_cu->line_header;
10595 m_cu->line_header = NULL;
10596 m_cu->line_header_die_owner = NULL;
10597 }
10598 }
10599
10600 private:
10601 die_info *m_die;
10602 dwarf2_cu *m_cu;
10603 };
10604
10605 /* Process a die and its children. */
10606
10607 static void
10608 process_die (struct die_info *die, struct dwarf2_cu *cu)
10609 {
10610 process_die_scope scope (die, cu);
10611
10612 switch (die->tag)
10613 {
10614 case DW_TAG_padding:
10615 break;
10616 case DW_TAG_compile_unit:
10617 case DW_TAG_partial_unit:
10618 read_file_scope (die, cu);
10619 break;
10620 case DW_TAG_type_unit:
10621 read_type_unit_scope (die, cu);
10622 break;
10623 case DW_TAG_subprogram:
10624 case DW_TAG_inlined_subroutine:
10625 read_func_scope (die, cu);
10626 break;
10627 case DW_TAG_lexical_block:
10628 case DW_TAG_try_block:
10629 case DW_TAG_catch_block:
10630 read_lexical_block_scope (die, cu);
10631 break;
10632 case DW_TAG_call_site:
10633 case DW_TAG_GNU_call_site:
10634 read_call_site_scope (die, cu);
10635 break;
10636 case DW_TAG_class_type:
10637 case DW_TAG_interface_type:
10638 case DW_TAG_structure_type:
10639 case DW_TAG_union_type:
10640 process_structure_scope (die, cu);
10641 break;
10642 case DW_TAG_enumeration_type:
10643 process_enumeration_scope (die, cu);
10644 break;
10645
10646 /* These dies have a type, but processing them does not create
10647 a symbol or recurse to process the children. Therefore we can
10648 read them on-demand through read_type_die. */
10649 case DW_TAG_subroutine_type:
10650 case DW_TAG_set_type:
10651 case DW_TAG_array_type:
10652 case DW_TAG_pointer_type:
10653 case DW_TAG_ptr_to_member_type:
10654 case DW_TAG_reference_type:
10655 case DW_TAG_rvalue_reference_type:
10656 case DW_TAG_string_type:
10657 break;
10658
10659 case DW_TAG_base_type:
10660 case DW_TAG_subrange_type:
10661 case DW_TAG_typedef:
10662 /* Add a typedef symbol for the type definition, if it has a
10663 DW_AT_name. */
10664 new_symbol (die, read_type_die (die, cu), cu);
10665 break;
10666 case DW_TAG_common_block:
10667 read_common_block (die, cu);
10668 break;
10669 case DW_TAG_common_inclusion:
10670 break;
10671 case DW_TAG_namespace:
10672 cu->processing_has_namespace_info = 1;
10673 read_namespace (die, cu);
10674 break;
10675 case DW_TAG_module:
10676 cu->processing_has_namespace_info = 1;
10677 read_module (die, cu);
10678 break;
10679 case DW_TAG_imported_declaration:
10680 cu->processing_has_namespace_info = 1;
10681 if (read_namespace_alias (die, cu))
10682 break;
10683 /* The declaration is not a global namespace alias: fall through. */
10684 case DW_TAG_imported_module:
10685 cu->processing_has_namespace_info = 1;
10686 if (die->child != NULL && (die->tag == DW_TAG_imported_declaration
10687 || cu->language != language_fortran))
10688 complaint (&symfile_complaints, _("Tag '%s' has unexpected children"),
10689 dwarf_tag_name (die->tag));
10690 read_import_statement (die, cu);
10691 break;
10692
10693 case DW_TAG_imported_unit:
10694 process_imported_unit_die (die, cu);
10695 break;
10696
10697 case DW_TAG_variable:
10698 read_variable (die, cu);
10699 break;
10700
10701 default:
10702 new_symbol (die, NULL, cu);
10703 break;
10704 }
10705 }
10706 \f
10707 /* DWARF name computation. */
10708
10709 /* A helper function for dwarf2_compute_name which determines whether DIE
10710 needs to have the name of the scope prepended to the name listed in the
10711 die. */
10712
10713 static int
10714 die_needs_namespace (struct die_info *die, struct dwarf2_cu *cu)
10715 {
10716 struct attribute *attr;
10717
10718 switch (die->tag)
10719 {
10720 case DW_TAG_namespace:
10721 case DW_TAG_typedef:
10722 case DW_TAG_class_type:
10723 case DW_TAG_interface_type:
10724 case DW_TAG_structure_type:
10725 case DW_TAG_union_type:
10726 case DW_TAG_enumeration_type:
10727 case DW_TAG_enumerator:
10728 case DW_TAG_subprogram:
10729 case DW_TAG_inlined_subroutine:
10730 case DW_TAG_member:
10731 case DW_TAG_imported_declaration:
10732 return 1;
10733
10734 case DW_TAG_variable:
10735 case DW_TAG_constant:
10736 /* We only need to prefix "globally" visible variables. These include
10737 any variable marked with DW_AT_external or any variable that
10738 lives in a namespace. [Variables in anonymous namespaces
10739 require prefixing, but they are not DW_AT_external.] */
10740
10741 if (dwarf2_attr (die, DW_AT_specification, cu))
10742 {
10743 struct dwarf2_cu *spec_cu = cu;
10744
10745 return die_needs_namespace (die_specification (die, &spec_cu),
10746 spec_cu);
10747 }
10748
10749 attr = dwarf2_attr (die, DW_AT_external, cu);
10750 if (attr == NULL && die->parent->tag != DW_TAG_namespace
10751 && die->parent->tag != DW_TAG_module)
10752 return 0;
10753 /* A variable in a lexical block of some kind does not need a
10754 namespace, even though in C++ such variables may be external
10755 and have a mangled name. */
10756 if (die->parent->tag == DW_TAG_lexical_block
10757 || die->parent->tag == DW_TAG_try_block
10758 || die->parent->tag == DW_TAG_catch_block
10759 || die->parent->tag == DW_TAG_subprogram)
10760 return 0;
10761 return 1;
10762
10763 default:
10764 return 0;
10765 }
10766 }
10767
10768 /* Return the DIE's linkage name attribute, either DW_AT_linkage_name
10769 or DW_AT_MIPS_linkage_name. Returns NULL if the attribute is not
10770 defined for the given DIE. */
10771
10772 static struct attribute *
10773 dw2_linkage_name_attr (struct die_info *die, struct dwarf2_cu *cu)
10774 {
10775 struct attribute *attr;
10776
10777 attr = dwarf2_attr (die, DW_AT_linkage_name, cu);
10778 if (attr == NULL)
10779 attr = dwarf2_attr (die, DW_AT_MIPS_linkage_name, cu);
10780
10781 return attr;
10782 }
10783
10784 /* Return the DIE's linkage name as a string, either DW_AT_linkage_name
10785 or DW_AT_MIPS_linkage_name. Returns NULL if the attribute is not
10786 defined for the given DIE. */
10787
10788 static const char *
10789 dw2_linkage_name (struct die_info *die, struct dwarf2_cu *cu)
10790 {
10791 const char *linkage_name;
10792
10793 linkage_name = dwarf2_string_attr (die, DW_AT_linkage_name, cu);
10794 if (linkage_name == NULL)
10795 linkage_name = dwarf2_string_attr (die, DW_AT_MIPS_linkage_name, cu);
10796
10797 return linkage_name;
10798 }
10799
10800 /* Compute the fully qualified name of DIE in CU. If PHYSNAME is nonzero,
10801 compute the physname for the object, which include a method's:
10802 - formal parameters (C++),
10803 - receiver type (Go),
10804
10805 The term "physname" is a bit confusing.
10806 For C++, for example, it is the demangled name.
10807 For Go, for example, it's the mangled name.
10808
10809 For Ada, return the DIE's linkage name rather than the fully qualified
10810 name. PHYSNAME is ignored..
10811
10812 The result is allocated on the objfile_obstack and canonicalized. */
10813
10814 static const char *
10815 dwarf2_compute_name (const char *name,
10816 struct die_info *die, struct dwarf2_cu *cu,
10817 int physname)
10818 {
10819 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
10820
10821 if (name == NULL)
10822 name = dwarf2_name (die, cu);
10823
10824 /* For Fortran GDB prefers DW_AT_*linkage_name for the physname if present
10825 but otherwise compute it by typename_concat inside GDB.
10826 FIXME: Actually this is not really true, or at least not always true.
10827 It's all very confusing. SYMBOL_SET_NAMES doesn't try to demangle
10828 Fortran names because there is no mangling standard. So new_symbol
10829 will set the demangled name to the result of dwarf2_full_name, and it is
10830 the demangled name that GDB uses if it exists. */
10831 if (cu->language == language_ada
10832 || (cu->language == language_fortran && physname))
10833 {
10834 /* For Ada unit, we prefer the linkage name over the name, as
10835 the former contains the exported name, which the user expects
10836 to be able to reference. Ideally, we want the user to be able
10837 to reference this entity using either natural or linkage name,
10838 but we haven't started looking at this enhancement yet. */
10839 const char *linkage_name = dw2_linkage_name (die, cu);
10840
10841 if (linkage_name != NULL)
10842 return linkage_name;
10843 }
10844
10845 /* These are the only languages we know how to qualify names in. */
10846 if (name != NULL
10847 && (cu->language == language_cplus
10848 || cu->language == language_fortran || cu->language == language_d
10849 || cu->language == language_rust))
10850 {
10851 if (die_needs_namespace (die, cu))
10852 {
10853 const char *prefix;
10854 const char *canonical_name = NULL;
10855
10856 string_file buf;
10857
10858 prefix = determine_prefix (die, cu);
10859 if (*prefix != '\0')
10860 {
10861 char *prefixed_name = typename_concat (NULL, prefix, name,
10862 physname, cu);
10863
10864 buf.puts (prefixed_name);
10865 xfree (prefixed_name);
10866 }
10867 else
10868 buf.puts (name);
10869
10870 /* Template parameters may be specified in the DIE's DW_AT_name, or
10871 as children with DW_TAG_template_type_param or
10872 DW_TAG_value_type_param. If the latter, add them to the name
10873 here. If the name already has template parameters, then
10874 skip this step; some versions of GCC emit both, and
10875 it is more efficient to use the pre-computed name.
10876
10877 Something to keep in mind about this process: it is very
10878 unlikely, or in some cases downright impossible, to produce
10879 something that will match the mangled name of a function.
10880 If the definition of the function has the same debug info,
10881 we should be able to match up with it anyway. But fallbacks
10882 using the minimal symbol, for instance to find a method
10883 implemented in a stripped copy of libstdc++, will not work.
10884 If we do not have debug info for the definition, we will have to
10885 match them up some other way.
10886
10887 When we do name matching there is a related problem with function
10888 templates; two instantiated function templates are allowed to
10889 differ only by their return types, which we do not add here. */
10890
10891 if (cu->language == language_cplus && strchr (name, '<') == NULL)
10892 {
10893 struct attribute *attr;
10894 struct die_info *child;
10895 int first = 1;
10896
10897 die->building_fullname = 1;
10898
10899 for (child = die->child; child != NULL; child = child->sibling)
10900 {
10901 struct type *type;
10902 LONGEST value;
10903 const gdb_byte *bytes;
10904 struct dwarf2_locexpr_baton *baton;
10905 struct value *v;
10906
10907 if (child->tag != DW_TAG_template_type_param
10908 && child->tag != DW_TAG_template_value_param)
10909 continue;
10910
10911 if (first)
10912 {
10913 buf.puts ("<");
10914 first = 0;
10915 }
10916 else
10917 buf.puts (", ");
10918
10919 attr = dwarf2_attr (child, DW_AT_type, cu);
10920 if (attr == NULL)
10921 {
10922 complaint (&symfile_complaints,
10923 _("template parameter missing DW_AT_type"));
10924 buf.puts ("UNKNOWN_TYPE");
10925 continue;
10926 }
10927 type = die_type (child, cu);
10928
10929 if (child->tag == DW_TAG_template_type_param)
10930 {
10931 c_print_type (type, "", &buf, -1, 0, &type_print_raw_options);
10932 continue;
10933 }
10934
10935 attr = dwarf2_attr (child, DW_AT_const_value, cu);
10936 if (attr == NULL)
10937 {
10938 complaint (&symfile_complaints,
10939 _("template parameter missing "
10940 "DW_AT_const_value"));
10941 buf.puts ("UNKNOWN_VALUE");
10942 continue;
10943 }
10944
10945 dwarf2_const_value_attr (attr, type, name,
10946 &cu->comp_unit_obstack, cu,
10947 &value, &bytes, &baton);
10948
10949 if (TYPE_NOSIGN (type))
10950 /* GDB prints characters as NUMBER 'CHAR'. If that's
10951 changed, this can use value_print instead. */
10952 c_printchar (value, type, &buf);
10953 else
10954 {
10955 struct value_print_options opts;
10956
10957 if (baton != NULL)
10958 v = dwarf2_evaluate_loc_desc (type, NULL,
10959 baton->data,
10960 baton->size,
10961 baton->per_cu);
10962 else if (bytes != NULL)
10963 {
10964 v = allocate_value (type);
10965 memcpy (value_contents_writeable (v), bytes,
10966 TYPE_LENGTH (type));
10967 }
10968 else
10969 v = value_from_longest (type, value);
10970
10971 /* Specify decimal so that we do not depend on
10972 the radix. */
10973 get_formatted_print_options (&opts, 'd');
10974 opts.raw = 1;
10975 value_print (v, &buf, &opts);
10976 release_value (v);
10977 value_free (v);
10978 }
10979 }
10980
10981 die->building_fullname = 0;
10982
10983 if (!first)
10984 {
10985 /* Close the argument list, with a space if necessary
10986 (nested templates). */
10987 if (!buf.empty () && buf.string ().back () == '>')
10988 buf.puts (" >");
10989 else
10990 buf.puts (">");
10991 }
10992 }
10993
10994 /* For C++ methods, append formal parameter type
10995 information, if PHYSNAME. */
10996
10997 if (physname && die->tag == DW_TAG_subprogram
10998 && cu->language == language_cplus)
10999 {
11000 struct type *type = read_type_die (die, cu);
11001
11002 c_type_print_args (type, &buf, 1, cu->language,
11003 &type_print_raw_options);
11004
11005 if (cu->language == language_cplus)
11006 {
11007 /* Assume that an artificial first parameter is
11008 "this", but do not crash if it is not. RealView
11009 marks unnamed (and thus unused) parameters as
11010 artificial; there is no way to differentiate
11011 the two cases. */
11012 if (TYPE_NFIELDS (type) > 0
11013 && TYPE_FIELD_ARTIFICIAL (type, 0)
11014 && TYPE_CODE (TYPE_FIELD_TYPE (type, 0)) == TYPE_CODE_PTR
11015 && TYPE_CONST (TYPE_TARGET_TYPE (TYPE_FIELD_TYPE (type,
11016 0))))
11017 buf.puts (" const");
11018 }
11019 }
11020
11021 const std::string &intermediate_name = buf.string ();
11022
11023 if (cu->language == language_cplus)
11024 canonical_name
11025 = dwarf2_canonicalize_name (intermediate_name.c_str (), cu,
11026 &objfile->per_bfd->storage_obstack);
11027
11028 /* If we only computed INTERMEDIATE_NAME, or if
11029 INTERMEDIATE_NAME is already canonical, then we need to
11030 copy it to the appropriate obstack. */
11031 if (canonical_name == NULL || canonical_name == intermediate_name.c_str ())
11032 name = ((const char *)
11033 obstack_copy0 (&objfile->per_bfd->storage_obstack,
11034 intermediate_name.c_str (),
11035 intermediate_name.length ()));
11036 else
11037 name = canonical_name;
11038 }
11039 }
11040
11041 return name;
11042 }
11043
11044 /* Return the fully qualified name of DIE, based on its DW_AT_name.
11045 If scope qualifiers are appropriate they will be added. The result
11046 will be allocated on the storage_obstack, or NULL if the DIE does
11047 not have a name. NAME may either be from a previous call to
11048 dwarf2_name or NULL.
11049
11050 The output string will be canonicalized (if C++). */
11051
11052 static const char *
11053 dwarf2_full_name (const char *name, struct die_info *die, struct dwarf2_cu *cu)
11054 {
11055 return dwarf2_compute_name (name, die, cu, 0);
11056 }
11057
11058 /* Construct a physname for the given DIE in CU. NAME may either be
11059 from a previous call to dwarf2_name or NULL. The result will be
11060 allocated on the objfile_objstack or NULL if the DIE does not have a
11061 name.
11062
11063 The output string will be canonicalized (if C++). */
11064
11065 static const char *
11066 dwarf2_physname (const char *name, struct die_info *die, struct dwarf2_cu *cu)
11067 {
11068 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
11069 const char *retval, *mangled = NULL, *canon = NULL;
11070 int need_copy = 1;
11071
11072 /* In this case dwarf2_compute_name is just a shortcut not building anything
11073 on its own. */
11074 if (!die_needs_namespace (die, cu))
11075 return dwarf2_compute_name (name, die, cu, 1);
11076
11077 mangled = dw2_linkage_name (die, cu);
11078
11079 /* rustc emits invalid values for DW_AT_linkage_name. Ignore these.
11080 See https://github.com/rust-lang/rust/issues/32925. */
11081 if (cu->language == language_rust && mangled != NULL
11082 && strchr (mangled, '{') != NULL)
11083 mangled = NULL;
11084
11085 /* DW_AT_linkage_name is missing in some cases - depend on what GDB
11086 has computed. */
11087 gdb::unique_xmalloc_ptr<char> demangled;
11088 if (mangled != NULL)
11089 {
11090
11091 if (language_def (cu->language)->la_store_sym_names_in_linkage_form_p)
11092 {
11093 /* Do nothing (do not demangle the symbol name). */
11094 }
11095 else if (cu->language == language_go)
11096 {
11097 /* This is a lie, but we already lie to the caller new_symbol.
11098 new_symbol assumes we return the mangled name.
11099 This just undoes that lie until things are cleaned up. */
11100 }
11101 else
11102 {
11103 /* Use DMGL_RET_DROP for C++ template functions to suppress
11104 their return type. It is easier for GDB users to search
11105 for such functions as `name(params)' than `long name(params)'.
11106 In such case the minimal symbol names do not match the full
11107 symbol names but for template functions there is never a need
11108 to look up their definition from their declaration so
11109 the only disadvantage remains the minimal symbol variant
11110 `long name(params)' does not have the proper inferior type. */
11111 demangled.reset (gdb_demangle (mangled,
11112 (DMGL_PARAMS | DMGL_ANSI
11113 | DMGL_RET_DROP)));
11114 }
11115 if (demangled)
11116 canon = demangled.get ();
11117 else
11118 {
11119 canon = mangled;
11120 need_copy = 0;
11121 }
11122 }
11123
11124 if (canon == NULL || check_physname)
11125 {
11126 const char *physname = dwarf2_compute_name (name, die, cu, 1);
11127
11128 if (canon != NULL && strcmp (physname, canon) != 0)
11129 {
11130 /* It may not mean a bug in GDB. The compiler could also
11131 compute DW_AT_linkage_name incorrectly. But in such case
11132 GDB would need to be bug-to-bug compatible. */
11133
11134 complaint (&symfile_complaints,
11135 _("Computed physname <%s> does not match demangled <%s> "
11136 "(from linkage <%s>) - DIE at %s [in module %s]"),
11137 physname, canon, mangled, sect_offset_str (die->sect_off),
11138 objfile_name (objfile));
11139
11140 /* Prefer DW_AT_linkage_name (in the CANON form) - when it
11141 is available here - over computed PHYSNAME. It is safer
11142 against both buggy GDB and buggy compilers. */
11143
11144 retval = canon;
11145 }
11146 else
11147 {
11148 retval = physname;
11149 need_copy = 0;
11150 }
11151 }
11152 else
11153 retval = canon;
11154
11155 if (need_copy)
11156 retval = ((const char *)
11157 obstack_copy0 (&objfile->per_bfd->storage_obstack,
11158 retval, strlen (retval)));
11159
11160 return retval;
11161 }
11162
11163 /* Inspect DIE in CU for a namespace alias. If one exists, record
11164 a new symbol for it.
11165
11166 Returns 1 if a namespace alias was recorded, 0 otherwise. */
11167
11168 static int
11169 read_namespace_alias (struct die_info *die, struct dwarf2_cu *cu)
11170 {
11171 struct attribute *attr;
11172
11173 /* If the die does not have a name, this is not a namespace
11174 alias. */
11175 attr = dwarf2_attr (die, DW_AT_name, cu);
11176 if (attr != NULL)
11177 {
11178 int num;
11179 struct die_info *d = die;
11180 struct dwarf2_cu *imported_cu = cu;
11181
11182 /* If the compiler has nested DW_AT_imported_declaration DIEs,
11183 keep inspecting DIEs until we hit the underlying import. */
11184 #define MAX_NESTED_IMPORTED_DECLARATIONS 100
11185 for (num = 0; num < MAX_NESTED_IMPORTED_DECLARATIONS; ++num)
11186 {
11187 attr = dwarf2_attr (d, DW_AT_import, cu);
11188 if (attr == NULL)
11189 break;
11190
11191 d = follow_die_ref (d, attr, &imported_cu);
11192 if (d->tag != DW_TAG_imported_declaration)
11193 break;
11194 }
11195
11196 if (num == MAX_NESTED_IMPORTED_DECLARATIONS)
11197 {
11198 complaint (&symfile_complaints,
11199 _("DIE at %s has too many recursively imported "
11200 "declarations"), sect_offset_str (d->sect_off));
11201 return 0;
11202 }
11203
11204 if (attr != NULL)
11205 {
11206 struct type *type;
11207 sect_offset sect_off = dwarf2_get_ref_die_offset (attr);
11208
11209 type = get_die_type_at_offset (sect_off, cu->per_cu);
11210 if (type != NULL && TYPE_CODE (type) == TYPE_CODE_NAMESPACE)
11211 {
11212 /* This declaration is a global namespace alias. Add
11213 a symbol for it whose type is the aliased namespace. */
11214 new_symbol (die, type, cu);
11215 return 1;
11216 }
11217 }
11218 }
11219
11220 return 0;
11221 }
11222
11223 /* Return the using directives repository (global or local?) to use in the
11224 current context for LANGUAGE.
11225
11226 For Ada, imported declarations can materialize renamings, which *may* be
11227 global. However it is impossible (for now?) in DWARF to distinguish
11228 "external" imported declarations and "static" ones. As all imported
11229 declarations seem to be static in all other languages, make them all CU-wide
11230 global only in Ada. */
11231
11232 static struct using_direct **
11233 using_directives (enum language language)
11234 {
11235 if (language == language_ada && context_stack_depth == 0)
11236 return &global_using_directives;
11237 else
11238 return &local_using_directives;
11239 }
11240
11241 /* Read the import statement specified by the given die and record it. */
11242
11243 static void
11244 read_import_statement (struct die_info *die, struct dwarf2_cu *cu)
11245 {
11246 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
11247 struct attribute *import_attr;
11248 struct die_info *imported_die, *child_die;
11249 struct dwarf2_cu *imported_cu;
11250 const char *imported_name;
11251 const char *imported_name_prefix;
11252 const char *canonical_name;
11253 const char *import_alias;
11254 const char *imported_declaration = NULL;
11255 const char *import_prefix;
11256 std::vector<const char *> excludes;
11257
11258 import_attr = dwarf2_attr (die, DW_AT_import, cu);
11259 if (import_attr == NULL)
11260 {
11261 complaint (&symfile_complaints, _("Tag '%s' has no DW_AT_import"),
11262 dwarf_tag_name (die->tag));
11263 return;
11264 }
11265
11266 imported_cu = cu;
11267 imported_die = follow_die_ref_or_sig (die, import_attr, &imported_cu);
11268 imported_name = dwarf2_name (imported_die, imported_cu);
11269 if (imported_name == NULL)
11270 {
11271 /* GCC bug: https://bugzilla.redhat.com/show_bug.cgi?id=506524
11272
11273 The import in the following code:
11274 namespace A
11275 {
11276 typedef int B;
11277 }
11278
11279 int main ()
11280 {
11281 using A::B;
11282 B b;
11283 return b;
11284 }
11285
11286 ...
11287 <2><51>: Abbrev Number: 3 (DW_TAG_imported_declaration)
11288 <52> DW_AT_decl_file : 1
11289 <53> DW_AT_decl_line : 6
11290 <54> DW_AT_import : <0x75>
11291 <2><58>: Abbrev Number: 4 (DW_TAG_typedef)
11292 <59> DW_AT_name : B
11293 <5b> DW_AT_decl_file : 1
11294 <5c> DW_AT_decl_line : 2
11295 <5d> DW_AT_type : <0x6e>
11296 ...
11297 <1><75>: Abbrev Number: 7 (DW_TAG_base_type)
11298 <76> DW_AT_byte_size : 4
11299 <77> DW_AT_encoding : 5 (signed)
11300
11301 imports the wrong die ( 0x75 instead of 0x58 ).
11302 This case will be ignored until the gcc bug is fixed. */
11303 return;
11304 }
11305
11306 /* Figure out the local name after import. */
11307 import_alias = dwarf2_name (die, cu);
11308
11309 /* Figure out where the statement is being imported to. */
11310 import_prefix = determine_prefix (die, cu);
11311
11312 /* Figure out what the scope of the imported die is and prepend it
11313 to the name of the imported die. */
11314 imported_name_prefix = determine_prefix (imported_die, imported_cu);
11315
11316 if (imported_die->tag != DW_TAG_namespace
11317 && imported_die->tag != DW_TAG_module)
11318 {
11319 imported_declaration = imported_name;
11320 canonical_name = imported_name_prefix;
11321 }
11322 else if (strlen (imported_name_prefix) > 0)
11323 canonical_name = obconcat (&objfile->objfile_obstack,
11324 imported_name_prefix,
11325 (cu->language == language_d ? "." : "::"),
11326 imported_name, (char *) NULL);
11327 else
11328 canonical_name = imported_name;
11329
11330 if (die->tag == DW_TAG_imported_module && cu->language == language_fortran)
11331 for (child_die = die->child; child_die && child_die->tag;
11332 child_die = sibling_die (child_die))
11333 {
11334 /* DWARF-4: A Fortran use statement with a “rename list” may be
11335 represented by an imported module entry with an import attribute
11336 referring to the module and owned entries corresponding to those
11337 entities that are renamed as part of being imported. */
11338
11339 if (child_die->tag != DW_TAG_imported_declaration)
11340 {
11341 complaint (&symfile_complaints,
11342 _("child DW_TAG_imported_declaration expected "
11343 "- DIE at %s [in module %s]"),
11344 sect_offset_str (child_die->sect_off),
11345 objfile_name (objfile));
11346 continue;
11347 }
11348
11349 import_attr = dwarf2_attr (child_die, DW_AT_import, cu);
11350 if (import_attr == NULL)
11351 {
11352 complaint (&symfile_complaints, _("Tag '%s' has no DW_AT_import"),
11353 dwarf_tag_name (child_die->tag));
11354 continue;
11355 }
11356
11357 imported_cu = cu;
11358 imported_die = follow_die_ref_or_sig (child_die, import_attr,
11359 &imported_cu);
11360 imported_name = dwarf2_name (imported_die, imported_cu);
11361 if (imported_name == NULL)
11362 {
11363 complaint (&symfile_complaints,
11364 _("child DW_TAG_imported_declaration has unknown "
11365 "imported name - DIE at %s [in module %s]"),
11366 sect_offset_str (child_die->sect_off),
11367 objfile_name (objfile));
11368 continue;
11369 }
11370
11371 excludes.push_back (imported_name);
11372
11373 process_die (child_die, cu);
11374 }
11375
11376 add_using_directive (using_directives (cu->language),
11377 import_prefix,
11378 canonical_name,
11379 import_alias,
11380 imported_declaration,
11381 excludes,
11382 0,
11383 &objfile->objfile_obstack);
11384 }
11385
11386 /* ICC<14 does not output the required DW_AT_declaration on incomplete
11387 types, but gives them a size of zero. Starting with version 14,
11388 ICC is compatible with GCC. */
11389
11390 static int
11391 producer_is_icc_lt_14 (struct dwarf2_cu *cu)
11392 {
11393 if (!cu->checked_producer)
11394 check_producer (cu);
11395
11396 return cu->producer_is_icc_lt_14;
11397 }
11398
11399 /* Check for possibly missing DW_AT_comp_dir with relative .debug_line
11400 directory paths. GCC SVN r127613 (new option -fdebug-prefix-map) fixed
11401 this, it was first present in GCC release 4.3.0. */
11402
11403 static int
11404 producer_is_gcc_lt_4_3 (struct dwarf2_cu *cu)
11405 {
11406 if (!cu->checked_producer)
11407 check_producer (cu);
11408
11409 return cu->producer_is_gcc_lt_4_3;
11410 }
11411
11412 static file_and_directory
11413 find_file_and_directory (struct die_info *die, struct dwarf2_cu *cu)
11414 {
11415 file_and_directory res;
11416
11417 /* Find the filename. Do not use dwarf2_name here, since the filename
11418 is not a source language identifier. */
11419 res.name = dwarf2_string_attr (die, DW_AT_name, cu);
11420 res.comp_dir = dwarf2_string_attr (die, DW_AT_comp_dir, cu);
11421
11422 if (res.comp_dir == NULL
11423 && producer_is_gcc_lt_4_3 (cu) && res.name != NULL
11424 && IS_ABSOLUTE_PATH (res.name))
11425 {
11426 res.comp_dir_storage = ldirname (res.name);
11427 if (!res.comp_dir_storage.empty ())
11428 res.comp_dir = res.comp_dir_storage.c_str ();
11429 }
11430 if (res.comp_dir != NULL)
11431 {
11432 /* Irix 6.2 native cc prepends <machine>.: to the compilation
11433 directory, get rid of it. */
11434 const char *cp = strchr (res.comp_dir, ':');
11435
11436 if (cp && cp != res.comp_dir && cp[-1] == '.' && cp[1] == '/')
11437 res.comp_dir = cp + 1;
11438 }
11439
11440 if (res.name == NULL)
11441 res.name = "<unknown>";
11442
11443 return res;
11444 }
11445
11446 /* Handle DW_AT_stmt_list for a compilation unit.
11447 DIE is the DW_TAG_compile_unit die for CU.
11448 COMP_DIR is the compilation directory. LOWPC is passed to
11449 dwarf_decode_lines. See dwarf_decode_lines comments about it. */
11450
11451 static void
11452 handle_DW_AT_stmt_list (struct die_info *die, struct dwarf2_cu *cu,
11453 const char *comp_dir, CORE_ADDR lowpc) /* ARI: editCase function */
11454 {
11455 struct dwarf2_per_objfile *dwarf2_per_objfile
11456 = cu->per_cu->dwarf2_per_objfile;
11457 struct objfile *objfile = dwarf2_per_objfile->objfile;
11458 struct attribute *attr;
11459 struct line_header line_header_local;
11460 hashval_t line_header_local_hash;
11461 void **slot;
11462 int decode_mapping;
11463
11464 gdb_assert (! cu->per_cu->is_debug_types);
11465
11466 attr = dwarf2_attr (die, DW_AT_stmt_list, cu);
11467 if (attr == NULL)
11468 return;
11469
11470 sect_offset line_offset = (sect_offset) DW_UNSND (attr);
11471
11472 /* The line header hash table is only created if needed (it exists to
11473 prevent redundant reading of the line table for partial_units).
11474 If we're given a partial_unit, we'll need it. If we're given a
11475 compile_unit, then use the line header hash table if it's already
11476 created, but don't create one just yet. */
11477
11478 if (dwarf2_per_objfile->line_header_hash == NULL
11479 && die->tag == DW_TAG_partial_unit)
11480 {
11481 dwarf2_per_objfile->line_header_hash
11482 = htab_create_alloc_ex (127, line_header_hash_voidp,
11483 line_header_eq_voidp,
11484 free_line_header_voidp,
11485 &objfile->objfile_obstack,
11486 hashtab_obstack_allocate,
11487 dummy_obstack_deallocate);
11488 }
11489
11490 line_header_local.sect_off = line_offset;
11491 line_header_local.offset_in_dwz = cu->per_cu->is_dwz;
11492 line_header_local_hash = line_header_hash (&line_header_local);
11493 if (dwarf2_per_objfile->line_header_hash != NULL)
11494 {
11495 slot = htab_find_slot_with_hash (dwarf2_per_objfile->line_header_hash,
11496 &line_header_local,
11497 line_header_local_hash, NO_INSERT);
11498
11499 /* For DW_TAG_compile_unit we need info like symtab::linetable which
11500 is not present in *SLOT (since if there is something in *SLOT then
11501 it will be for a partial_unit). */
11502 if (die->tag == DW_TAG_partial_unit && slot != NULL)
11503 {
11504 gdb_assert (*slot != NULL);
11505 cu->line_header = (struct line_header *) *slot;
11506 return;
11507 }
11508 }
11509
11510 /* dwarf_decode_line_header does not yet provide sufficient information.
11511 We always have to call also dwarf_decode_lines for it. */
11512 line_header_up lh = dwarf_decode_line_header (line_offset, cu);
11513 if (lh == NULL)
11514 return;
11515
11516 cu->line_header = lh.release ();
11517 cu->line_header_die_owner = die;
11518
11519 if (dwarf2_per_objfile->line_header_hash == NULL)
11520 slot = NULL;
11521 else
11522 {
11523 slot = htab_find_slot_with_hash (dwarf2_per_objfile->line_header_hash,
11524 &line_header_local,
11525 line_header_local_hash, INSERT);
11526 gdb_assert (slot != NULL);
11527 }
11528 if (slot != NULL && *slot == NULL)
11529 {
11530 /* This newly decoded line number information unit will be owned
11531 by line_header_hash hash table. */
11532 *slot = cu->line_header;
11533 cu->line_header_die_owner = NULL;
11534 }
11535 else
11536 {
11537 /* We cannot free any current entry in (*slot) as that struct line_header
11538 may be already used by multiple CUs. Create only temporary decoded
11539 line_header for this CU - it may happen at most once for each line
11540 number information unit. And if we're not using line_header_hash
11541 then this is what we want as well. */
11542 gdb_assert (die->tag != DW_TAG_partial_unit);
11543 }
11544 decode_mapping = (die->tag != DW_TAG_partial_unit);
11545 dwarf_decode_lines (cu->line_header, comp_dir, cu, NULL, lowpc,
11546 decode_mapping);
11547
11548 }
11549
11550 /* Process DW_TAG_compile_unit or DW_TAG_partial_unit. */
11551
11552 static void
11553 read_file_scope (struct die_info *die, struct dwarf2_cu *cu)
11554 {
11555 struct dwarf2_per_objfile *dwarf2_per_objfile
11556 = cu->per_cu->dwarf2_per_objfile;
11557 struct objfile *objfile = dwarf2_per_objfile->objfile;
11558 struct gdbarch *gdbarch = get_objfile_arch (objfile);
11559 CORE_ADDR lowpc = ((CORE_ADDR) -1);
11560 CORE_ADDR highpc = ((CORE_ADDR) 0);
11561 struct attribute *attr;
11562 struct die_info *child_die;
11563 CORE_ADDR baseaddr;
11564
11565 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
11566
11567 get_scope_pc_bounds (die, &lowpc, &highpc, cu);
11568
11569 /* If we didn't find a lowpc, set it to highpc to avoid complaints
11570 from finish_block. */
11571 if (lowpc == ((CORE_ADDR) -1))
11572 lowpc = highpc;
11573 lowpc = gdbarch_adjust_dwarf2_addr (gdbarch, lowpc + baseaddr);
11574
11575 file_and_directory fnd = find_file_and_directory (die, cu);
11576
11577 prepare_one_comp_unit (cu, die, cu->language);
11578
11579 /* The XLCL doesn't generate DW_LANG_OpenCL because this attribute is not
11580 standardised yet. As a workaround for the language detection we fall
11581 back to the DW_AT_producer string. */
11582 if (cu->producer && strstr (cu->producer, "IBM XL C for OpenCL") != NULL)
11583 cu->language = language_opencl;
11584
11585 /* Similar hack for Go. */
11586 if (cu->producer && strstr (cu->producer, "GNU Go ") != NULL)
11587 set_cu_language (DW_LANG_Go, cu);
11588
11589 dwarf2_start_symtab (cu, fnd.name, fnd.comp_dir, lowpc);
11590
11591 /* Decode line number information if present. We do this before
11592 processing child DIEs, so that the line header table is available
11593 for DW_AT_decl_file. */
11594 handle_DW_AT_stmt_list (die, cu, fnd.comp_dir, lowpc);
11595
11596 /* Process all dies in compilation unit. */
11597 if (die->child != NULL)
11598 {
11599 child_die = die->child;
11600 while (child_die && child_die->tag)
11601 {
11602 process_die (child_die, cu);
11603 child_die = sibling_die (child_die);
11604 }
11605 }
11606
11607 /* Decode macro information, if present. Dwarf 2 macro information
11608 refers to information in the line number info statement program
11609 header, so we can only read it if we've read the header
11610 successfully. */
11611 attr = dwarf2_attr (die, DW_AT_macros, cu);
11612 if (attr == NULL)
11613 attr = dwarf2_attr (die, DW_AT_GNU_macros, cu);
11614 if (attr && cu->line_header)
11615 {
11616 if (dwarf2_attr (die, DW_AT_macro_info, cu))
11617 complaint (&symfile_complaints,
11618 _("CU refers to both DW_AT_macros and DW_AT_macro_info"));
11619
11620 dwarf_decode_macros (cu, DW_UNSND (attr), 1);
11621 }
11622 else
11623 {
11624 attr = dwarf2_attr (die, DW_AT_macro_info, cu);
11625 if (attr && cu->line_header)
11626 {
11627 unsigned int macro_offset = DW_UNSND (attr);
11628
11629 dwarf_decode_macros (cu, macro_offset, 0);
11630 }
11631 }
11632 }
11633
11634 /* TU version of handle_DW_AT_stmt_list for read_type_unit_scope.
11635 Create the set of symtabs used by this TU, or if this TU is sharing
11636 symtabs with another TU and the symtabs have already been created
11637 then restore those symtabs in the line header.
11638 We don't need the pc/line-number mapping for type units. */
11639
11640 static void
11641 setup_type_unit_groups (struct die_info *die, struct dwarf2_cu *cu)
11642 {
11643 struct dwarf2_per_cu_data *per_cu = cu->per_cu;
11644 struct type_unit_group *tu_group;
11645 int first_time;
11646 struct attribute *attr;
11647 unsigned int i;
11648 struct signatured_type *sig_type;
11649
11650 gdb_assert (per_cu->is_debug_types);
11651 sig_type = (struct signatured_type *) per_cu;
11652
11653 attr = dwarf2_attr (die, DW_AT_stmt_list, cu);
11654
11655 /* If we're using .gdb_index (includes -readnow) then
11656 per_cu->type_unit_group may not have been set up yet. */
11657 if (sig_type->type_unit_group == NULL)
11658 sig_type->type_unit_group = get_type_unit_group (cu, attr);
11659 tu_group = sig_type->type_unit_group;
11660
11661 /* If we've already processed this stmt_list there's no real need to
11662 do it again, we could fake it and just recreate the part we need
11663 (file name,index -> symtab mapping). If data shows this optimization
11664 is useful we can do it then. */
11665 first_time = tu_group->compunit_symtab == NULL;
11666
11667 /* We have to handle the case of both a missing DW_AT_stmt_list or bad
11668 debug info. */
11669 line_header_up lh;
11670 if (attr != NULL)
11671 {
11672 sect_offset line_offset = (sect_offset) DW_UNSND (attr);
11673 lh = dwarf_decode_line_header (line_offset, cu);
11674 }
11675 if (lh == NULL)
11676 {
11677 if (first_time)
11678 dwarf2_start_symtab (cu, "", NULL, 0);
11679 else
11680 {
11681 gdb_assert (tu_group->symtabs == NULL);
11682 restart_symtab (tu_group->compunit_symtab, "", 0);
11683 }
11684 return;
11685 }
11686
11687 cu->line_header = lh.release ();
11688 cu->line_header_die_owner = die;
11689
11690 if (first_time)
11691 {
11692 struct compunit_symtab *cust = dwarf2_start_symtab (cu, "", NULL, 0);
11693
11694 /* Note: We don't assign tu_group->compunit_symtab yet because we're
11695 still initializing it, and our caller (a few levels up)
11696 process_full_type_unit still needs to know if this is the first
11697 time. */
11698
11699 tu_group->num_symtabs = cu->line_header->file_names.size ();
11700 tu_group->symtabs = XNEWVEC (struct symtab *,
11701 cu->line_header->file_names.size ());
11702
11703 for (i = 0; i < cu->line_header->file_names.size (); ++i)
11704 {
11705 file_entry &fe = cu->line_header->file_names[i];
11706
11707 dwarf2_start_subfile (fe.name, fe.include_dir (cu->line_header));
11708
11709 if (current_subfile->symtab == NULL)
11710 {
11711 /* NOTE: start_subfile will recognize when it's been
11712 passed a file it has already seen. So we can't
11713 assume there's a simple mapping from
11714 cu->line_header->file_names to subfiles, plus
11715 cu->line_header->file_names may contain dups. */
11716 current_subfile->symtab
11717 = allocate_symtab (cust, current_subfile->name);
11718 }
11719
11720 fe.symtab = current_subfile->symtab;
11721 tu_group->symtabs[i] = fe.symtab;
11722 }
11723 }
11724 else
11725 {
11726 restart_symtab (tu_group->compunit_symtab, "", 0);
11727
11728 for (i = 0; i < cu->line_header->file_names.size (); ++i)
11729 {
11730 file_entry &fe = cu->line_header->file_names[i];
11731
11732 fe.symtab = tu_group->symtabs[i];
11733 }
11734 }
11735
11736 /* The main symtab is allocated last. Type units don't have DW_AT_name
11737 so they don't have a "real" (so to speak) symtab anyway.
11738 There is later code that will assign the main symtab to all symbols
11739 that don't have one. We need to handle the case of a symbol with a
11740 missing symtab (DW_AT_decl_file) anyway. */
11741 }
11742
11743 /* Process DW_TAG_type_unit.
11744 For TUs we want to skip the first top level sibling if it's not the
11745 actual type being defined by this TU. In this case the first top
11746 level sibling is there to provide context only. */
11747
11748 static void
11749 read_type_unit_scope (struct die_info *die, struct dwarf2_cu *cu)
11750 {
11751 struct die_info *child_die;
11752
11753 prepare_one_comp_unit (cu, die, language_minimal);
11754
11755 /* Initialize (or reinitialize) the machinery for building symtabs.
11756 We do this before processing child DIEs, so that the line header table
11757 is available for DW_AT_decl_file. */
11758 setup_type_unit_groups (die, cu);
11759
11760 if (die->child != NULL)
11761 {
11762 child_die = die->child;
11763 while (child_die && child_die->tag)
11764 {
11765 process_die (child_die, cu);
11766 child_die = sibling_die (child_die);
11767 }
11768 }
11769 }
11770 \f
11771 /* DWO/DWP files.
11772
11773 http://gcc.gnu.org/wiki/DebugFission
11774 http://gcc.gnu.org/wiki/DebugFissionDWP
11775
11776 To simplify handling of both DWO files ("object" files with the DWARF info)
11777 and DWP files (a file with the DWOs packaged up into one file), we treat
11778 DWP files as having a collection of virtual DWO files. */
11779
11780 static hashval_t
11781 hash_dwo_file (const void *item)
11782 {
11783 const struct dwo_file *dwo_file = (const struct dwo_file *) item;
11784 hashval_t hash;
11785
11786 hash = htab_hash_string (dwo_file->dwo_name);
11787 if (dwo_file->comp_dir != NULL)
11788 hash += htab_hash_string (dwo_file->comp_dir);
11789 return hash;
11790 }
11791
11792 static int
11793 eq_dwo_file (const void *item_lhs, const void *item_rhs)
11794 {
11795 const struct dwo_file *lhs = (const struct dwo_file *) item_lhs;
11796 const struct dwo_file *rhs = (const struct dwo_file *) item_rhs;
11797
11798 if (strcmp (lhs->dwo_name, rhs->dwo_name) != 0)
11799 return 0;
11800 if (lhs->comp_dir == NULL || rhs->comp_dir == NULL)
11801 return lhs->comp_dir == rhs->comp_dir;
11802 return strcmp (lhs->comp_dir, rhs->comp_dir) == 0;
11803 }
11804
11805 /* Allocate a hash table for DWO files. */
11806
11807 static htab_t
11808 allocate_dwo_file_hash_table (struct objfile *objfile)
11809 {
11810 return htab_create_alloc_ex (41,
11811 hash_dwo_file,
11812 eq_dwo_file,
11813 NULL,
11814 &objfile->objfile_obstack,
11815 hashtab_obstack_allocate,
11816 dummy_obstack_deallocate);
11817 }
11818
11819 /* Lookup DWO file DWO_NAME. */
11820
11821 static void **
11822 lookup_dwo_file_slot (struct dwarf2_per_objfile *dwarf2_per_objfile,
11823 const char *dwo_name,
11824 const char *comp_dir)
11825 {
11826 struct dwo_file find_entry;
11827 void **slot;
11828
11829 if (dwarf2_per_objfile->dwo_files == NULL)
11830 dwarf2_per_objfile->dwo_files
11831 = allocate_dwo_file_hash_table (dwarf2_per_objfile->objfile);
11832
11833 memset (&find_entry, 0, sizeof (find_entry));
11834 find_entry.dwo_name = dwo_name;
11835 find_entry.comp_dir = comp_dir;
11836 slot = htab_find_slot (dwarf2_per_objfile->dwo_files, &find_entry, INSERT);
11837
11838 return slot;
11839 }
11840
11841 static hashval_t
11842 hash_dwo_unit (const void *item)
11843 {
11844 const struct dwo_unit *dwo_unit = (const struct dwo_unit *) item;
11845
11846 /* This drops the top 32 bits of the id, but is ok for a hash. */
11847 return dwo_unit->signature;
11848 }
11849
11850 static int
11851 eq_dwo_unit (const void *item_lhs, const void *item_rhs)
11852 {
11853 const struct dwo_unit *lhs = (const struct dwo_unit *) item_lhs;
11854 const struct dwo_unit *rhs = (const struct dwo_unit *) item_rhs;
11855
11856 /* The signature is assumed to be unique within the DWO file.
11857 So while object file CU dwo_id's always have the value zero,
11858 that's OK, assuming each object file DWO file has only one CU,
11859 and that's the rule for now. */
11860 return lhs->signature == rhs->signature;
11861 }
11862
11863 /* Allocate a hash table for DWO CUs,TUs.
11864 There is one of these tables for each of CUs,TUs for each DWO file. */
11865
11866 static htab_t
11867 allocate_dwo_unit_table (struct objfile *objfile)
11868 {
11869 /* Start out with a pretty small number.
11870 Generally DWO files contain only one CU and maybe some TUs. */
11871 return htab_create_alloc_ex (3,
11872 hash_dwo_unit,
11873 eq_dwo_unit,
11874 NULL,
11875 &objfile->objfile_obstack,
11876 hashtab_obstack_allocate,
11877 dummy_obstack_deallocate);
11878 }
11879
11880 /* Structure used to pass data to create_dwo_debug_info_hash_table_reader. */
11881
11882 struct create_dwo_cu_data
11883 {
11884 struct dwo_file *dwo_file;
11885 struct dwo_unit dwo_unit;
11886 };
11887
11888 /* die_reader_func for create_dwo_cu. */
11889
11890 static void
11891 create_dwo_cu_reader (const struct die_reader_specs *reader,
11892 const gdb_byte *info_ptr,
11893 struct die_info *comp_unit_die,
11894 int has_children,
11895 void *datap)
11896 {
11897 struct dwarf2_cu *cu = reader->cu;
11898 sect_offset sect_off = cu->per_cu->sect_off;
11899 struct dwarf2_section_info *section = cu->per_cu->section;
11900 struct create_dwo_cu_data *data = (struct create_dwo_cu_data *) datap;
11901 struct dwo_file *dwo_file = data->dwo_file;
11902 struct dwo_unit *dwo_unit = &data->dwo_unit;
11903 struct attribute *attr;
11904
11905 attr = dwarf2_attr (comp_unit_die, DW_AT_GNU_dwo_id, cu);
11906 if (attr == NULL)
11907 {
11908 complaint (&symfile_complaints,
11909 _("Dwarf Error: debug entry at offset %s is missing"
11910 " its dwo_id [in module %s]"),
11911 sect_offset_str (sect_off), dwo_file->dwo_name);
11912 return;
11913 }
11914
11915 dwo_unit->dwo_file = dwo_file;
11916 dwo_unit->signature = DW_UNSND (attr);
11917 dwo_unit->section = section;
11918 dwo_unit->sect_off = sect_off;
11919 dwo_unit->length = cu->per_cu->length;
11920
11921 if (dwarf_read_debug)
11922 fprintf_unfiltered (gdb_stdlog, " offset %s, dwo_id %s\n",
11923 sect_offset_str (sect_off),
11924 hex_string (dwo_unit->signature));
11925 }
11926
11927 /* Create the dwo_units for the CUs in a DWO_FILE.
11928 Note: This function processes DWO files only, not DWP files. */
11929
11930 static void
11931 create_cus_hash_table (struct dwarf2_per_objfile *dwarf2_per_objfile,
11932 struct dwo_file &dwo_file, dwarf2_section_info &section,
11933 htab_t &cus_htab)
11934 {
11935 struct objfile *objfile = dwarf2_per_objfile->objfile;
11936 const gdb_byte *info_ptr, *end_ptr;
11937
11938 dwarf2_read_section (objfile, &section);
11939 info_ptr = section.buffer;
11940
11941 if (info_ptr == NULL)
11942 return;
11943
11944 if (dwarf_read_debug)
11945 {
11946 fprintf_unfiltered (gdb_stdlog, "Reading %s for %s:\n",
11947 get_section_name (&section),
11948 get_section_file_name (&section));
11949 }
11950
11951 end_ptr = info_ptr + section.size;
11952 while (info_ptr < end_ptr)
11953 {
11954 struct dwarf2_per_cu_data per_cu;
11955 struct create_dwo_cu_data create_dwo_cu_data;
11956 struct dwo_unit *dwo_unit;
11957 void **slot;
11958 sect_offset sect_off = (sect_offset) (info_ptr - section.buffer);
11959
11960 memset (&create_dwo_cu_data.dwo_unit, 0,
11961 sizeof (create_dwo_cu_data.dwo_unit));
11962 memset (&per_cu, 0, sizeof (per_cu));
11963 per_cu.dwarf2_per_objfile = dwarf2_per_objfile;
11964 per_cu.is_debug_types = 0;
11965 per_cu.sect_off = sect_offset (info_ptr - section.buffer);
11966 per_cu.section = &section;
11967 create_dwo_cu_data.dwo_file = &dwo_file;
11968
11969 init_cutu_and_read_dies_no_follow (
11970 &per_cu, &dwo_file, create_dwo_cu_reader, &create_dwo_cu_data);
11971 info_ptr += per_cu.length;
11972
11973 // If the unit could not be parsed, skip it.
11974 if (create_dwo_cu_data.dwo_unit.dwo_file == NULL)
11975 continue;
11976
11977 if (cus_htab == NULL)
11978 cus_htab = allocate_dwo_unit_table (objfile);
11979
11980 dwo_unit = OBSTACK_ZALLOC (&objfile->objfile_obstack, struct dwo_unit);
11981 *dwo_unit = create_dwo_cu_data.dwo_unit;
11982 slot = htab_find_slot (cus_htab, dwo_unit, INSERT);
11983 gdb_assert (slot != NULL);
11984 if (*slot != NULL)
11985 {
11986 const struct dwo_unit *dup_cu = (const struct dwo_unit *)*slot;
11987 sect_offset dup_sect_off = dup_cu->sect_off;
11988
11989 complaint (&symfile_complaints,
11990 _("debug cu entry at offset %s is duplicate to"
11991 " the entry at offset %s, signature %s"),
11992 sect_offset_str (sect_off), sect_offset_str (dup_sect_off),
11993 hex_string (dwo_unit->signature));
11994 }
11995 *slot = (void *)dwo_unit;
11996 }
11997 }
11998
11999 /* DWP file .debug_{cu,tu}_index section format:
12000 [ref: http://gcc.gnu.org/wiki/DebugFissionDWP]
12001
12002 DWP Version 1:
12003
12004 Both index sections have the same format, and serve to map a 64-bit
12005 signature to a set of section numbers. Each section begins with a header,
12006 followed by a hash table of 64-bit signatures, a parallel table of 32-bit
12007 indexes, and a pool of 32-bit section numbers. The index sections will be
12008 aligned at 8-byte boundaries in the file.
12009
12010 The index section header consists of:
12011
12012 V, 32 bit version number
12013 -, 32 bits unused
12014 N, 32 bit number of compilation units or type units in the index
12015 M, 32 bit number of slots in the hash table
12016
12017 Numbers are recorded using the byte order of the application binary.
12018
12019 The hash table begins at offset 16 in the section, and consists of an array
12020 of M 64-bit slots. Each slot contains a 64-bit signature (using the byte
12021 order of the application binary). Unused slots in the hash table are 0.
12022 (We rely on the extreme unlikeliness of a signature being exactly 0.)
12023
12024 The parallel table begins immediately after the hash table
12025 (at offset 16 + 8 * M from the beginning of the section), and consists of an
12026 array of 32-bit indexes (using the byte order of the application binary),
12027 corresponding 1-1 with slots in the hash table. Each entry in the parallel
12028 table contains a 32-bit index into the pool of section numbers. For unused
12029 hash table slots, the corresponding entry in the parallel table will be 0.
12030
12031 The pool of section numbers begins immediately following the hash table
12032 (at offset 16 + 12 * M from the beginning of the section). The pool of
12033 section numbers consists of an array of 32-bit words (using the byte order
12034 of the application binary). Each item in the array is indexed starting
12035 from 0. The hash table entry provides the index of the first section
12036 number in the set. Additional section numbers in the set follow, and the
12037 set is terminated by a 0 entry (section number 0 is not used in ELF).
12038
12039 In each set of section numbers, the .debug_info.dwo or .debug_types.dwo
12040 section must be the first entry in the set, and the .debug_abbrev.dwo must
12041 be the second entry. Other members of the set may follow in any order.
12042
12043 ---
12044
12045 DWP Version 2:
12046
12047 DWP Version 2 combines all the .debug_info, etc. sections into one,
12048 and the entries in the index tables are now offsets into these sections.
12049 CU offsets begin at 0. TU offsets begin at the size of the .debug_info
12050 section.
12051
12052 Index Section Contents:
12053 Header
12054 Hash Table of Signatures dwp_hash_table.hash_table
12055 Parallel Table of Indices dwp_hash_table.unit_table
12056 Table of Section Offsets dwp_hash_table.v2.{section_ids,offsets}
12057 Table of Section Sizes dwp_hash_table.v2.sizes
12058
12059 The index section header consists of:
12060
12061 V, 32 bit version number
12062 L, 32 bit number of columns in the table of section offsets
12063 N, 32 bit number of compilation units or type units in the index
12064 M, 32 bit number of slots in the hash table
12065
12066 Numbers are recorded using the byte order of the application binary.
12067
12068 The hash table has the same format as version 1.
12069 The parallel table of indices has the same format as version 1,
12070 except that the entries are origin-1 indices into the table of sections
12071 offsets and the table of section sizes.
12072
12073 The table of offsets begins immediately following the parallel table
12074 (at offset 16 + 12 * M from the beginning of the section). The table is
12075 a two-dimensional array of 32-bit words (using the byte order of the
12076 application binary), with L columns and N+1 rows, in row-major order.
12077 Each row in the array is indexed starting from 0. The first row provides
12078 a key to the remaining rows: each column in this row provides an identifier
12079 for a debug section, and the offsets in the same column of subsequent rows
12080 refer to that section. The section identifiers are:
12081
12082 DW_SECT_INFO 1 .debug_info.dwo
12083 DW_SECT_TYPES 2 .debug_types.dwo
12084 DW_SECT_ABBREV 3 .debug_abbrev.dwo
12085 DW_SECT_LINE 4 .debug_line.dwo
12086 DW_SECT_LOC 5 .debug_loc.dwo
12087 DW_SECT_STR_OFFSETS 6 .debug_str_offsets.dwo
12088 DW_SECT_MACINFO 7 .debug_macinfo.dwo
12089 DW_SECT_MACRO 8 .debug_macro.dwo
12090
12091 The offsets provided by the CU and TU index sections are the base offsets
12092 for the contributions made by each CU or TU to the corresponding section
12093 in the package file. Each CU and TU header contains an abbrev_offset
12094 field, used to find the abbreviations table for that CU or TU within the
12095 contribution to the .debug_abbrev.dwo section for that CU or TU, and should
12096 be interpreted as relative to the base offset given in the index section.
12097 Likewise, offsets into .debug_line.dwo from DW_AT_stmt_list attributes
12098 should be interpreted as relative to the base offset for .debug_line.dwo,
12099 and offsets into other debug sections obtained from DWARF attributes should
12100 also be interpreted as relative to the corresponding base offset.
12101
12102 The table of sizes begins immediately following the table of offsets.
12103 Like the table of offsets, it is a two-dimensional array of 32-bit words,
12104 with L columns and N rows, in row-major order. Each row in the array is
12105 indexed starting from 1 (row 0 is shared by the two tables).
12106
12107 ---
12108
12109 Hash table lookup is handled the same in version 1 and 2:
12110
12111 We assume that N and M will not exceed 2^32 - 1.
12112 The size of the hash table, M, must be 2^k such that 2^k > 3*N/2.
12113
12114 Given a 64-bit compilation unit signature or a type signature S, an entry
12115 in the hash table is located as follows:
12116
12117 1) Calculate a primary hash H = S & MASK(k), where MASK(k) is a mask with
12118 the low-order k bits all set to 1.
12119
12120 2) Calculate a secondary hash H' = (((S >> 32) & MASK(k)) | 1).
12121
12122 3) If the hash table entry at index H matches the signature, use that
12123 entry. If the hash table entry at index H is unused (all zeroes),
12124 terminate the search: the signature is not present in the table.
12125
12126 4) Let H = (H + H') modulo M. Repeat at Step 3.
12127
12128 Because M > N and H' and M are relatively prime, the search is guaranteed
12129 to stop at an unused slot or find the match. */
12130
12131 /* Create a hash table to map DWO IDs to their CU/TU entry in
12132 .debug_{info,types}.dwo in DWP_FILE.
12133 Returns NULL if there isn't one.
12134 Note: This function processes DWP files only, not DWO files. */
12135
12136 static struct dwp_hash_table *
12137 create_dwp_hash_table (struct dwarf2_per_objfile *dwarf2_per_objfile,
12138 struct dwp_file *dwp_file, int is_debug_types)
12139 {
12140 struct objfile *objfile = dwarf2_per_objfile->objfile;
12141 bfd *dbfd = dwp_file->dbfd;
12142 const gdb_byte *index_ptr, *index_end;
12143 struct dwarf2_section_info *index;
12144 uint32_t version, nr_columns, nr_units, nr_slots;
12145 struct dwp_hash_table *htab;
12146
12147 if (is_debug_types)
12148 index = &dwp_file->sections.tu_index;
12149 else
12150 index = &dwp_file->sections.cu_index;
12151
12152 if (dwarf2_section_empty_p (index))
12153 return NULL;
12154 dwarf2_read_section (objfile, index);
12155
12156 index_ptr = index->buffer;
12157 index_end = index_ptr + index->size;
12158
12159 version = read_4_bytes (dbfd, index_ptr);
12160 index_ptr += 4;
12161 if (version == 2)
12162 nr_columns = read_4_bytes (dbfd, index_ptr);
12163 else
12164 nr_columns = 0;
12165 index_ptr += 4;
12166 nr_units = read_4_bytes (dbfd, index_ptr);
12167 index_ptr += 4;
12168 nr_slots = read_4_bytes (dbfd, index_ptr);
12169 index_ptr += 4;
12170
12171 if (version != 1 && version != 2)
12172 {
12173 error (_("Dwarf Error: unsupported DWP file version (%s)"
12174 " [in module %s]"),
12175 pulongest (version), dwp_file->name);
12176 }
12177 if (nr_slots != (nr_slots & -nr_slots))
12178 {
12179 error (_("Dwarf Error: number of slots in DWP hash table (%s)"
12180 " is not power of 2 [in module %s]"),
12181 pulongest (nr_slots), dwp_file->name);
12182 }
12183
12184 htab = OBSTACK_ZALLOC (&objfile->objfile_obstack, struct dwp_hash_table);
12185 htab->version = version;
12186 htab->nr_columns = nr_columns;
12187 htab->nr_units = nr_units;
12188 htab->nr_slots = nr_slots;
12189 htab->hash_table = index_ptr;
12190 htab->unit_table = htab->hash_table + sizeof (uint64_t) * nr_slots;
12191
12192 /* Exit early if the table is empty. */
12193 if (nr_slots == 0 || nr_units == 0
12194 || (version == 2 && nr_columns == 0))
12195 {
12196 /* All must be zero. */
12197 if (nr_slots != 0 || nr_units != 0
12198 || (version == 2 && nr_columns != 0))
12199 {
12200 complaint (&symfile_complaints,
12201 _("Empty DWP but nr_slots,nr_units,nr_columns not"
12202 " all zero [in modules %s]"),
12203 dwp_file->name);
12204 }
12205 return htab;
12206 }
12207
12208 if (version == 1)
12209 {
12210 htab->section_pool.v1.indices =
12211 htab->unit_table + sizeof (uint32_t) * nr_slots;
12212 /* It's harder to decide whether the section is too small in v1.
12213 V1 is deprecated anyway so we punt. */
12214 }
12215 else
12216 {
12217 const gdb_byte *ids_ptr = htab->unit_table + sizeof (uint32_t) * nr_slots;
12218 int *ids = htab->section_pool.v2.section_ids;
12219 /* Reverse map for error checking. */
12220 int ids_seen[DW_SECT_MAX + 1];
12221 int i;
12222
12223 if (nr_columns < 2)
12224 {
12225 error (_("Dwarf Error: bad DWP hash table, too few columns"
12226 " in section table [in module %s]"),
12227 dwp_file->name);
12228 }
12229 if (nr_columns > MAX_NR_V2_DWO_SECTIONS)
12230 {
12231 error (_("Dwarf Error: bad DWP hash table, too many columns"
12232 " in section table [in module %s]"),
12233 dwp_file->name);
12234 }
12235 memset (ids, 255, (DW_SECT_MAX + 1) * sizeof (int32_t));
12236 memset (ids_seen, 255, (DW_SECT_MAX + 1) * sizeof (int32_t));
12237 for (i = 0; i < nr_columns; ++i)
12238 {
12239 int id = read_4_bytes (dbfd, ids_ptr + i * sizeof (uint32_t));
12240
12241 if (id < DW_SECT_MIN || id > DW_SECT_MAX)
12242 {
12243 error (_("Dwarf Error: bad DWP hash table, bad section id %d"
12244 " in section table [in module %s]"),
12245 id, dwp_file->name);
12246 }
12247 if (ids_seen[id] != -1)
12248 {
12249 error (_("Dwarf Error: bad DWP hash table, duplicate section"
12250 " id %d in section table [in module %s]"),
12251 id, dwp_file->name);
12252 }
12253 ids_seen[id] = i;
12254 ids[i] = id;
12255 }
12256 /* Must have exactly one info or types section. */
12257 if (((ids_seen[DW_SECT_INFO] != -1)
12258 + (ids_seen[DW_SECT_TYPES] != -1))
12259 != 1)
12260 {
12261 error (_("Dwarf Error: bad DWP hash table, missing/duplicate"
12262 " DWO info/types section [in module %s]"),
12263 dwp_file->name);
12264 }
12265 /* Must have an abbrev section. */
12266 if (ids_seen[DW_SECT_ABBREV] == -1)
12267 {
12268 error (_("Dwarf Error: bad DWP hash table, missing DWO abbrev"
12269 " section [in module %s]"),
12270 dwp_file->name);
12271 }
12272 htab->section_pool.v2.offsets = ids_ptr + sizeof (uint32_t) * nr_columns;
12273 htab->section_pool.v2.sizes =
12274 htab->section_pool.v2.offsets + (sizeof (uint32_t)
12275 * nr_units * nr_columns);
12276 if ((htab->section_pool.v2.sizes + (sizeof (uint32_t)
12277 * nr_units * nr_columns))
12278 > index_end)
12279 {
12280 error (_("Dwarf Error: DWP index section is corrupt (too small)"
12281 " [in module %s]"),
12282 dwp_file->name);
12283 }
12284 }
12285
12286 return htab;
12287 }
12288
12289 /* Update SECTIONS with the data from SECTP.
12290
12291 This function is like the other "locate" section routines that are
12292 passed to bfd_map_over_sections, but in this context the sections to
12293 read comes from the DWP V1 hash table, not the full ELF section table.
12294
12295 The result is non-zero for success, or zero if an error was found. */
12296
12297 static int
12298 locate_v1_virtual_dwo_sections (asection *sectp,
12299 struct virtual_v1_dwo_sections *sections)
12300 {
12301 const struct dwop_section_names *names = &dwop_section_names;
12302
12303 if (section_is_p (sectp->name, &names->abbrev_dwo))
12304 {
12305 /* There can be only one. */
12306 if (sections->abbrev.s.section != NULL)
12307 return 0;
12308 sections->abbrev.s.section = sectp;
12309 sections->abbrev.size = bfd_get_section_size (sectp);
12310 }
12311 else if (section_is_p (sectp->name, &names->info_dwo)
12312 || section_is_p (sectp->name, &names->types_dwo))
12313 {
12314 /* There can be only one. */
12315 if (sections->info_or_types.s.section != NULL)
12316 return 0;
12317 sections->info_or_types.s.section = sectp;
12318 sections->info_or_types.size = bfd_get_section_size (sectp);
12319 }
12320 else if (section_is_p (sectp->name, &names->line_dwo))
12321 {
12322 /* There can be only one. */
12323 if (sections->line.s.section != NULL)
12324 return 0;
12325 sections->line.s.section = sectp;
12326 sections->line.size = bfd_get_section_size (sectp);
12327 }
12328 else if (section_is_p (sectp->name, &names->loc_dwo))
12329 {
12330 /* There can be only one. */
12331 if (sections->loc.s.section != NULL)
12332 return 0;
12333 sections->loc.s.section = sectp;
12334 sections->loc.size = bfd_get_section_size (sectp);
12335 }
12336 else if (section_is_p (sectp->name, &names->macinfo_dwo))
12337 {
12338 /* There can be only one. */
12339 if (sections->macinfo.s.section != NULL)
12340 return 0;
12341 sections->macinfo.s.section = sectp;
12342 sections->macinfo.size = bfd_get_section_size (sectp);
12343 }
12344 else if (section_is_p (sectp->name, &names->macro_dwo))
12345 {
12346 /* There can be only one. */
12347 if (sections->macro.s.section != NULL)
12348 return 0;
12349 sections->macro.s.section = sectp;
12350 sections->macro.size = bfd_get_section_size (sectp);
12351 }
12352 else if (section_is_p (sectp->name, &names->str_offsets_dwo))
12353 {
12354 /* There can be only one. */
12355 if (sections->str_offsets.s.section != NULL)
12356 return 0;
12357 sections->str_offsets.s.section = sectp;
12358 sections->str_offsets.size = bfd_get_section_size (sectp);
12359 }
12360 else
12361 {
12362 /* No other kind of section is valid. */
12363 return 0;
12364 }
12365
12366 return 1;
12367 }
12368
12369 /* Create a dwo_unit object for the DWO unit with signature SIGNATURE.
12370 UNIT_INDEX is the index of the DWO unit in the DWP hash table.
12371 COMP_DIR is the DW_AT_comp_dir attribute of the referencing CU.
12372 This is for DWP version 1 files. */
12373
12374 static struct dwo_unit *
12375 create_dwo_unit_in_dwp_v1 (struct dwarf2_per_objfile *dwarf2_per_objfile,
12376 struct dwp_file *dwp_file,
12377 uint32_t unit_index,
12378 const char *comp_dir,
12379 ULONGEST signature, int is_debug_types)
12380 {
12381 struct objfile *objfile = dwarf2_per_objfile->objfile;
12382 const struct dwp_hash_table *dwp_htab =
12383 is_debug_types ? dwp_file->tus : dwp_file->cus;
12384 bfd *dbfd = dwp_file->dbfd;
12385 const char *kind = is_debug_types ? "TU" : "CU";
12386 struct dwo_file *dwo_file;
12387 struct dwo_unit *dwo_unit;
12388 struct virtual_v1_dwo_sections sections;
12389 void **dwo_file_slot;
12390 int i;
12391
12392 gdb_assert (dwp_file->version == 1);
12393
12394 if (dwarf_read_debug)
12395 {
12396 fprintf_unfiltered (gdb_stdlog, "Reading %s %s/%s in DWP V1 file: %s\n",
12397 kind,
12398 pulongest (unit_index), hex_string (signature),
12399 dwp_file->name);
12400 }
12401
12402 /* Fetch the sections of this DWO unit.
12403 Put a limit on the number of sections we look for so that bad data
12404 doesn't cause us to loop forever. */
12405
12406 #define MAX_NR_V1_DWO_SECTIONS \
12407 (1 /* .debug_info or .debug_types */ \
12408 + 1 /* .debug_abbrev */ \
12409 + 1 /* .debug_line */ \
12410 + 1 /* .debug_loc */ \
12411 + 1 /* .debug_str_offsets */ \
12412 + 1 /* .debug_macro or .debug_macinfo */ \
12413 + 1 /* trailing zero */)
12414
12415 memset (&sections, 0, sizeof (sections));
12416
12417 for (i = 0; i < MAX_NR_V1_DWO_SECTIONS; ++i)
12418 {
12419 asection *sectp;
12420 uint32_t section_nr =
12421 read_4_bytes (dbfd,
12422 dwp_htab->section_pool.v1.indices
12423 + (unit_index + i) * sizeof (uint32_t));
12424
12425 if (section_nr == 0)
12426 break;
12427 if (section_nr >= dwp_file->num_sections)
12428 {
12429 error (_("Dwarf Error: bad DWP hash table, section number too large"
12430 " [in module %s]"),
12431 dwp_file->name);
12432 }
12433
12434 sectp = dwp_file->elf_sections[section_nr];
12435 if (! locate_v1_virtual_dwo_sections (sectp, &sections))
12436 {
12437 error (_("Dwarf Error: bad DWP hash table, invalid section found"
12438 " [in module %s]"),
12439 dwp_file->name);
12440 }
12441 }
12442
12443 if (i < 2
12444 || dwarf2_section_empty_p (&sections.info_or_types)
12445 || dwarf2_section_empty_p (&sections.abbrev))
12446 {
12447 error (_("Dwarf Error: bad DWP hash table, missing DWO sections"
12448 " [in module %s]"),
12449 dwp_file->name);
12450 }
12451 if (i == MAX_NR_V1_DWO_SECTIONS)
12452 {
12453 error (_("Dwarf Error: bad DWP hash table, too many DWO sections"
12454 " [in module %s]"),
12455 dwp_file->name);
12456 }
12457
12458 /* It's easier for the rest of the code if we fake a struct dwo_file and
12459 have dwo_unit "live" in that. At least for now.
12460
12461 The DWP file can be made up of a random collection of CUs and TUs.
12462 However, for each CU + set of TUs that came from the same original DWO
12463 file, we can combine them back into a virtual DWO file to save space
12464 (fewer struct dwo_file objects to allocate). Remember that for really
12465 large apps there can be on the order of 8K CUs and 200K TUs, or more. */
12466
12467 std::string virtual_dwo_name =
12468 string_printf ("virtual-dwo/%d-%d-%d-%d",
12469 get_section_id (&sections.abbrev),
12470 get_section_id (&sections.line),
12471 get_section_id (&sections.loc),
12472 get_section_id (&sections.str_offsets));
12473 /* Can we use an existing virtual DWO file? */
12474 dwo_file_slot = lookup_dwo_file_slot (dwarf2_per_objfile,
12475 virtual_dwo_name.c_str (),
12476 comp_dir);
12477 /* Create one if necessary. */
12478 if (*dwo_file_slot == NULL)
12479 {
12480 if (dwarf_read_debug)
12481 {
12482 fprintf_unfiltered (gdb_stdlog, "Creating virtual DWO: %s\n",
12483 virtual_dwo_name.c_str ());
12484 }
12485 dwo_file = OBSTACK_ZALLOC (&objfile->objfile_obstack, struct dwo_file);
12486 dwo_file->dwo_name
12487 = (const char *) obstack_copy0 (&objfile->objfile_obstack,
12488 virtual_dwo_name.c_str (),
12489 virtual_dwo_name.size ());
12490 dwo_file->comp_dir = comp_dir;
12491 dwo_file->sections.abbrev = sections.abbrev;
12492 dwo_file->sections.line = sections.line;
12493 dwo_file->sections.loc = sections.loc;
12494 dwo_file->sections.macinfo = sections.macinfo;
12495 dwo_file->sections.macro = sections.macro;
12496 dwo_file->sections.str_offsets = sections.str_offsets;
12497 /* The "str" section is global to the entire DWP file. */
12498 dwo_file->sections.str = dwp_file->sections.str;
12499 /* The info or types section is assigned below to dwo_unit,
12500 there's no need to record it in dwo_file.
12501 Also, we can't simply record type sections in dwo_file because
12502 we record a pointer into the vector in dwo_unit. As we collect more
12503 types we'll grow the vector and eventually have to reallocate space
12504 for it, invalidating all copies of pointers into the previous
12505 contents. */
12506 *dwo_file_slot = dwo_file;
12507 }
12508 else
12509 {
12510 if (dwarf_read_debug)
12511 {
12512 fprintf_unfiltered (gdb_stdlog, "Using existing virtual DWO: %s\n",
12513 virtual_dwo_name.c_str ());
12514 }
12515 dwo_file = (struct dwo_file *) *dwo_file_slot;
12516 }
12517
12518 dwo_unit = OBSTACK_ZALLOC (&objfile->objfile_obstack, struct dwo_unit);
12519 dwo_unit->dwo_file = dwo_file;
12520 dwo_unit->signature = signature;
12521 dwo_unit->section =
12522 XOBNEW (&objfile->objfile_obstack, struct dwarf2_section_info);
12523 *dwo_unit->section = sections.info_or_types;
12524 /* dwo_unit->{offset,length,type_offset_in_tu} are set later. */
12525
12526 return dwo_unit;
12527 }
12528
12529 /* Subroutine of create_dwo_unit_in_dwp_v2 to simplify it.
12530 Given a pointer to the containing section SECTION, and OFFSET,SIZE of the
12531 piece within that section used by a TU/CU, return a virtual section
12532 of just that piece. */
12533
12534 static struct dwarf2_section_info
12535 create_dwp_v2_section (struct dwarf2_per_objfile *dwarf2_per_objfile,
12536 struct dwarf2_section_info *section,
12537 bfd_size_type offset, bfd_size_type size)
12538 {
12539 struct dwarf2_section_info result;
12540 asection *sectp;
12541
12542 gdb_assert (section != NULL);
12543 gdb_assert (!section->is_virtual);
12544
12545 memset (&result, 0, sizeof (result));
12546 result.s.containing_section = section;
12547 result.is_virtual = 1;
12548
12549 if (size == 0)
12550 return result;
12551
12552 sectp = get_section_bfd_section (section);
12553
12554 /* Flag an error if the piece denoted by OFFSET,SIZE is outside the
12555 bounds of the real section. This is a pretty-rare event, so just
12556 flag an error (easier) instead of a warning and trying to cope. */
12557 if (sectp == NULL
12558 || offset + size > bfd_get_section_size (sectp))
12559 {
12560 error (_("Dwarf Error: Bad DWP V2 section info, doesn't fit"
12561 " in section %s [in module %s]"),
12562 sectp ? bfd_section_name (abfd, sectp) : "<unknown>",
12563 objfile_name (dwarf2_per_objfile->objfile));
12564 }
12565
12566 result.virtual_offset = offset;
12567 result.size = size;
12568 return result;
12569 }
12570
12571 /* Create a dwo_unit object for the DWO unit with signature SIGNATURE.
12572 UNIT_INDEX is the index of the DWO unit in the DWP hash table.
12573 COMP_DIR is the DW_AT_comp_dir attribute of the referencing CU.
12574 This is for DWP version 2 files. */
12575
12576 static struct dwo_unit *
12577 create_dwo_unit_in_dwp_v2 (struct dwarf2_per_objfile *dwarf2_per_objfile,
12578 struct dwp_file *dwp_file,
12579 uint32_t unit_index,
12580 const char *comp_dir,
12581 ULONGEST signature, int is_debug_types)
12582 {
12583 struct objfile *objfile = dwarf2_per_objfile->objfile;
12584 const struct dwp_hash_table *dwp_htab =
12585 is_debug_types ? dwp_file->tus : dwp_file->cus;
12586 bfd *dbfd = dwp_file->dbfd;
12587 const char *kind = is_debug_types ? "TU" : "CU";
12588 struct dwo_file *dwo_file;
12589 struct dwo_unit *dwo_unit;
12590 struct virtual_v2_dwo_sections sections;
12591 void **dwo_file_slot;
12592 int i;
12593
12594 gdb_assert (dwp_file->version == 2);
12595
12596 if (dwarf_read_debug)
12597 {
12598 fprintf_unfiltered (gdb_stdlog, "Reading %s %s/%s in DWP V2 file: %s\n",
12599 kind,
12600 pulongest (unit_index), hex_string (signature),
12601 dwp_file->name);
12602 }
12603
12604 /* Fetch the section offsets of this DWO unit. */
12605
12606 memset (&sections, 0, sizeof (sections));
12607
12608 for (i = 0; i < dwp_htab->nr_columns; ++i)
12609 {
12610 uint32_t offset = read_4_bytes (dbfd,
12611 dwp_htab->section_pool.v2.offsets
12612 + (((unit_index - 1) * dwp_htab->nr_columns
12613 + i)
12614 * sizeof (uint32_t)));
12615 uint32_t size = read_4_bytes (dbfd,
12616 dwp_htab->section_pool.v2.sizes
12617 + (((unit_index - 1) * dwp_htab->nr_columns
12618 + i)
12619 * sizeof (uint32_t)));
12620
12621 switch (dwp_htab->section_pool.v2.section_ids[i])
12622 {
12623 case DW_SECT_INFO:
12624 case DW_SECT_TYPES:
12625 sections.info_or_types_offset = offset;
12626 sections.info_or_types_size = size;
12627 break;
12628 case DW_SECT_ABBREV:
12629 sections.abbrev_offset = offset;
12630 sections.abbrev_size = size;
12631 break;
12632 case DW_SECT_LINE:
12633 sections.line_offset = offset;
12634 sections.line_size = size;
12635 break;
12636 case DW_SECT_LOC:
12637 sections.loc_offset = offset;
12638 sections.loc_size = size;
12639 break;
12640 case DW_SECT_STR_OFFSETS:
12641 sections.str_offsets_offset = offset;
12642 sections.str_offsets_size = size;
12643 break;
12644 case DW_SECT_MACINFO:
12645 sections.macinfo_offset = offset;
12646 sections.macinfo_size = size;
12647 break;
12648 case DW_SECT_MACRO:
12649 sections.macro_offset = offset;
12650 sections.macro_size = size;
12651 break;
12652 }
12653 }
12654
12655 /* It's easier for the rest of the code if we fake a struct dwo_file and
12656 have dwo_unit "live" in that. At least for now.
12657
12658 The DWP file can be made up of a random collection of CUs and TUs.
12659 However, for each CU + set of TUs that came from the same original DWO
12660 file, we can combine them back into a virtual DWO file to save space
12661 (fewer struct dwo_file objects to allocate). Remember that for really
12662 large apps there can be on the order of 8K CUs and 200K TUs, or more. */
12663
12664 std::string virtual_dwo_name =
12665 string_printf ("virtual-dwo/%ld-%ld-%ld-%ld",
12666 (long) (sections.abbrev_size ? sections.abbrev_offset : 0),
12667 (long) (sections.line_size ? sections.line_offset : 0),
12668 (long) (sections.loc_size ? sections.loc_offset : 0),
12669 (long) (sections.str_offsets_size
12670 ? sections.str_offsets_offset : 0));
12671 /* Can we use an existing virtual DWO file? */
12672 dwo_file_slot = lookup_dwo_file_slot (dwarf2_per_objfile,
12673 virtual_dwo_name.c_str (),
12674 comp_dir);
12675 /* Create one if necessary. */
12676 if (*dwo_file_slot == NULL)
12677 {
12678 if (dwarf_read_debug)
12679 {
12680 fprintf_unfiltered (gdb_stdlog, "Creating virtual DWO: %s\n",
12681 virtual_dwo_name.c_str ());
12682 }
12683 dwo_file = OBSTACK_ZALLOC (&objfile->objfile_obstack, struct dwo_file);
12684 dwo_file->dwo_name
12685 = (const char *) obstack_copy0 (&objfile->objfile_obstack,
12686 virtual_dwo_name.c_str (),
12687 virtual_dwo_name.size ());
12688 dwo_file->comp_dir = comp_dir;
12689 dwo_file->sections.abbrev =
12690 create_dwp_v2_section (dwarf2_per_objfile, &dwp_file->sections.abbrev,
12691 sections.abbrev_offset, sections.abbrev_size);
12692 dwo_file->sections.line =
12693 create_dwp_v2_section (dwarf2_per_objfile, &dwp_file->sections.line,
12694 sections.line_offset, sections.line_size);
12695 dwo_file->sections.loc =
12696 create_dwp_v2_section (dwarf2_per_objfile, &dwp_file->sections.loc,
12697 sections.loc_offset, sections.loc_size);
12698 dwo_file->sections.macinfo =
12699 create_dwp_v2_section (dwarf2_per_objfile, &dwp_file->sections.macinfo,
12700 sections.macinfo_offset, sections.macinfo_size);
12701 dwo_file->sections.macro =
12702 create_dwp_v2_section (dwarf2_per_objfile, &dwp_file->sections.macro,
12703 sections.macro_offset, sections.macro_size);
12704 dwo_file->sections.str_offsets =
12705 create_dwp_v2_section (dwarf2_per_objfile,
12706 &dwp_file->sections.str_offsets,
12707 sections.str_offsets_offset,
12708 sections.str_offsets_size);
12709 /* The "str" section is global to the entire DWP file. */
12710 dwo_file->sections.str = dwp_file->sections.str;
12711 /* The info or types section is assigned below to dwo_unit,
12712 there's no need to record it in dwo_file.
12713 Also, we can't simply record type sections in dwo_file because
12714 we record a pointer into the vector in dwo_unit. As we collect more
12715 types we'll grow the vector and eventually have to reallocate space
12716 for it, invalidating all copies of pointers into the previous
12717 contents. */
12718 *dwo_file_slot = dwo_file;
12719 }
12720 else
12721 {
12722 if (dwarf_read_debug)
12723 {
12724 fprintf_unfiltered (gdb_stdlog, "Using existing virtual DWO: %s\n",
12725 virtual_dwo_name.c_str ());
12726 }
12727 dwo_file = (struct dwo_file *) *dwo_file_slot;
12728 }
12729
12730 dwo_unit = OBSTACK_ZALLOC (&objfile->objfile_obstack, struct dwo_unit);
12731 dwo_unit->dwo_file = dwo_file;
12732 dwo_unit->signature = signature;
12733 dwo_unit->section =
12734 XOBNEW (&objfile->objfile_obstack, struct dwarf2_section_info);
12735 *dwo_unit->section = create_dwp_v2_section (dwarf2_per_objfile,
12736 is_debug_types
12737 ? &dwp_file->sections.types
12738 : &dwp_file->sections.info,
12739 sections.info_or_types_offset,
12740 sections.info_or_types_size);
12741 /* dwo_unit->{offset,length,type_offset_in_tu} are set later. */
12742
12743 return dwo_unit;
12744 }
12745
12746 /* Lookup the DWO unit with SIGNATURE in DWP_FILE.
12747 Returns NULL if the signature isn't found. */
12748
12749 static struct dwo_unit *
12750 lookup_dwo_unit_in_dwp (struct dwarf2_per_objfile *dwarf2_per_objfile,
12751 struct dwp_file *dwp_file, const char *comp_dir,
12752 ULONGEST signature, int is_debug_types)
12753 {
12754 const struct dwp_hash_table *dwp_htab =
12755 is_debug_types ? dwp_file->tus : dwp_file->cus;
12756 bfd *dbfd = dwp_file->dbfd;
12757 uint32_t mask = dwp_htab->nr_slots - 1;
12758 uint32_t hash = signature & mask;
12759 uint32_t hash2 = ((signature >> 32) & mask) | 1;
12760 unsigned int i;
12761 void **slot;
12762 struct dwo_unit find_dwo_cu;
12763
12764 memset (&find_dwo_cu, 0, sizeof (find_dwo_cu));
12765 find_dwo_cu.signature = signature;
12766 slot = htab_find_slot (is_debug_types
12767 ? dwp_file->loaded_tus
12768 : dwp_file->loaded_cus,
12769 &find_dwo_cu, INSERT);
12770
12771 if (*slot != NULL)
12772 return (struct dwo_unit *) *slot;
12773
12774 /* Use a for loop so that we don't loop forever on bad debug info. */
12775 for (i = 0; i < dwp_htab->nr_slots; ++i)
12776 {
12777 ULONGEST signature_in_table;
12778
12779 signature_in_table =
12780 read_8_bytes (dbfd, dwp_htab->hash_table + hash * sizeof (uint64_t));
12781 if (signature_in_table == signature)
12782 {
12783 uint32_t unit_index =
12784 read_4_bytes (dbfd,
12785 dwp_htab->unit_table + hash * sizeof (uint32_t));
12786
12787 if (dwp_file->version == 1)
12788 {
12789 *slot = create_dwo_unit_in_dwp_v1 (dwarf2_per_objfile,
12790 dwp_file, unit_index,
12791 comp_dir, signature,
12792 is_debug_types);
12793 }
12794 else
12795 {
12796 *slot = create_dwo_unit_in_dwp_v2 (dwarf2_per_objfile,
12797 dwp_file, unit_index,
12798 comp_dir, signature,
12799 is_debug_types);
12800 }
12801 return (struct dwo_unit *) *slot;
12802 }
12803 if (signature_in_table == 0)
12804 return NULL;
12805 hash = (hash + hash2) & mask;
12806 }
12807
12808 error (_("Dwarf Error: bad DWP hash table, lookup didn't terminate"
12809 " [in module %s]"),
12810 dwp_file->name);
12811 }
12812
12813 /* Subroutine of open_dwo_file,open_dwp_file to simplify them.
12814 Open the file specified by FILE_NAME and hand it off to BFD for
12815 preliminary analysis. Return a newly initialized bfd *, which
12816 includes a canonicalized copy of FILE_NAME.
12817 If IS_DWP is TRUE, we're opening a DWP file, otherwise a DWO file.
12818 SEARCH_CWD is true if the current directory is to be searched.
12819 It will be searched before debug-file-directory.
12820 If successful, the file is added to the bfd include table of the
12821 objfile's bfd (see gdb_bfd_record_inclusion).
12822 If unable to find/open the file, return NULL.
12823 NOTE: This function is derived from symfile_bfd_open. */
12824
12825 static gdb_bfd_ref_ptr
12826 try_open_dwop_file (struct dwarf2_per_objfile *dwarf2_per_objfile,
12827 const char *file_name, int is_dwp, int search_cwd)
12828 {
12829 int desc;
12830 /* Blech. OPF_TRY_CWD_FIRST also disables searching the path list if
12831 FILE_NAME contains a '/'. So we can't use it. Instead prepend "."
12832 to debug_file_directory. */
12833 const char *search_path;
12834 static const char dirname_separator_string[] = { DIRNAME_SEPARATOR, '\0' };
12835
12836 gdb::unique_xmalloc_ptr<char> search_path_holder;
12837 if (search_cwd)
12838 {
12839 if (*debug_file_directory != '\0')
12840 {
12841 search_path_holder.reset (concat (".", dirname_separator_string,
12842 debug_file_directory,
12843 (char *) NULL));
12844 search_path = search_path_holder.get ();
12845 }
12846 else
12847 search_path = ".";
12848 }
12849 else
12850 search_path = debug_file_directory;
12851
12852 openp_flags flags = OPF_RETURN_REALPATH;
12853 if (is_dwp)
12854 flags |= OPF_SEARCH_IN_PATH;
12855
12856 gdb::unique_xmalloc_ptr<char> absolute_name;
12857 desc = openp (search_path, flags, file_name,
12858 O_RDONLY | O_BINARY, &absolute_name);
12859 if (desc < 0)
12860 return NULL;
12861
12862 gdb_bfd_ref_ptr sym_bfd (gdb_bfd_open (absolute_name.get (),
12863 gnutarget, desc));
12864 if (sym_bfd == NULL)
12865 return NULL;
12866 bfd_set_cacheable (sym_bfd.get (), 1);
12867
12868 if (!bfd_check_format (sym_bfd.get (), bfd_object))
12869 return NULL;
12870
12871 /* Success. Record the bfd as having been included by the objfile's bfd.
12872 This is important because things like demangled_names_hash lives in the
12873 objfile's per_bfd space and may have references to things like symbol
12874 names that live in the DWO/DWP file's per_bfd space. PR 16426. */
12875 gdb_bfd_record_inclusion (dwarf2_per_objfile->objfile->obfd, sym_bfd.get ());
12876
12877 return sym_bfd;
12878 }
12879
12880 /* Try to open DWO file FILE_NAME.
12881 COMP_DIR is the DW_AT_comp_dir attribute.
12882 The result is the bfd handle of the file.
12883 If there is a problem finding or opening the file, return NULL.
12884 Upon success, the canonicalized path of the file is stored in the bfd,
12885 same as symfile_bfd_open. */
12886
12887 static gdb_bfd_ref_ptr
12888 open_dwo_file (struct dwarf2_per_objfile *dwarf2_per_objfile,
12889 const char *file_name, const char *comp_dir)
12890 {
12891 if (IS_ABSOLUTE_PATH (file_name))
12892 return try_open_dwop_file (dwarf2_per_objfile, file_name,
12893 0 /*is_dwp*/, 0 /*search_cwd*/);
12894
12895 /* Before trying the search path, try DWO_NAME in COMP_DIR. */
12896
12897 if (comp_dir != NULL)
12898 {
12899 char *path_to_try = concat (comp_dir, SLASH_STRING,
12900 file_name, (char *) NULL);
12901
12902 /* NOTE: If comp_dir is a relative path, this will also try the
12903 search path, which seems useful. */
12904 gdb_bfd_ref_ptr abfd (try_open_dwop_file (dwarf2_per_objfile,
12905 path_to_try,
12906 0 /*is_dwp*/,
12907 1 /*search_cwd*/));
12908 xfree (path_to_try);
12909 if (abfd != NULL)
12910 return abfd;
12911 }
12912
12913 /* That didn't work, try debug-file-directory, which, despite its name,
12914 is a list of paths. */
12915
12916 if (*debug_file_directory == '\0')
12917 return NULL;
12918
12919 return try_open_dwop_file (dwarf2_per_objfile, file_name,
12920 0 /*is_dwp*/, 1 /*search_cwd*/);
12921 }
12922
12923 /* This function is mapped across the sections and remembers the offset and
12924 size of each of the DWO debugging sections we are interested in. */
12925
12926 static void
12927 dwarf2_locate_dwo_sections (bfd *abfd, asection *sectp, void *dwo_sections_ptr)
12928 {
12929 struct dwo_sections *dwo_sections = (struct dwo_sections *) dwo_sections_ptr;
12930 const struct dwop_section_names *names = &dwop_section_names;
12931
12932 if (section_is_p (sectp->name, &names->abbrev_dwo))
12933 {
12934 dwo_sections->abbrev.s.section = sectp;
12935 dwo_sections->abbrev.size = bfd_get_section_size (sectp);
12936 }
12937 else if (section_is_p (sectp->name, &names->info_dwo))
12938 {
12939 dwo_sections->info.s.section = sectp;
12940 dwo_sections->info.size = bfd_get_section_size (sectp);
12941 }
12942 else if (section_is_p (sectp->name, &names->line_dwo))
12943 {
12944 dwo_sections->line.s.section = sectp;
12945 dwo_sections->line.size = bfd_get_section_size (sectp);
12946 }
12947 else if (section_is_p (sectp->name, &names->loc_dwo))
12948 {
12949 dwo_sections->loc.s.section = sectp;
12950 dwo_sections->loc.size = bfd_get_section_size (sectp);
12951 }
12952 else if (section_is_p (sectp->name, &names->macinfo_dwo))
12953 {
12954 dwo_sections->macinfo.s.section = sectp;
12955 dwo_sections->macinfo.size = bfd_get_section_size (sectp);
12956 }
12957 else if (section_is_p (sectp->name, &names->macro_dwo))
12958 {
12959 dwo_sections->macro.s.section = sectp;
12960 dwo_sections->macro.size = bfd_get_section_size (sectp);
12961 }
12962 else if (section_is_p (sectp->name, &names->str_dwo))
12963 {
12964 dwo_sections->str.s.section = sectp;
12965 dwo_sections->str.size = bfd_get_section_size (sectp);
12966 }
12967 else if (section_is_p (sectp->name, &names->str_offsets_dwo))
12968 {
12969 dwo_sections->str_offsets.s.section = sectp;
12970 dwo_sections->str_offsets.size = bfd_get_section_size (sectp);
12971 }
12972 else if (section_is_p (sectp->name, &names->types_dwo))
12973 {
12974 struct dwarf2_section_info type_section;
12975
12976 memset (&type_section, 0, sizeof (type_section));
12977 type_section.s.section = sectp;
12978 type_section.size = bfd_get_section_size (sectp);
12979 VEC_safe_push (dwarf2_section_info_def, dwo_sections->types,
12980 &type_section);
12981 }
12982 }
12983
12984 /* Initialize the use of the DWO file specified by DWO_NAME and referenced
12985 by PER_CU. This is for the non-DWP case.
12986 The result is NULL if DWO_NAME can't be found. */
12987
12988 static struct dwo_file *
12989 open_and_init_dwo_file (struct dwarf2_per_cu_data *per_cu,
12990 const char *dwo_name, const char *comp_dir)
12991 {
12992 struct dwarf2_per_objfile *dwarf2_per_objfile = per_cu->dwarf2_per_objfile;
12993 struct objfile *objfile = dwarf2_per_objfile->objfile;
12994
12995 gdb_bfd_ref_ptr dbfd (open_dwo_file (dwarf2_per_objfile, dwo_name, comp_dir));
12996 if (dbfd == NULL)
12997 {
12998 if (dwarf_read_debug)
12999 fprintf_unfiltered (gdb_stdlog, "DWO file not found: %s\n", dwo_name);
13000 return NULL;
13001 }
13002
13003 /* We use a unique pointer here, despite the obstack allocation,
13004 because a dwo_file needs some cleanup if it is abandoned. */
13005 dwo_file_up dwo_file (OBSTACK_ZALLOC (&objfile->objfile_obstack,
13006 struct dwo_file));
13007 dwo_file->dwo_name = dwo_name;
13008 dwo_file->comp_dir = comp_dir;
13009 dwo_file->dbfd = dbfd.release ();
13010
13011 bfd_map_over_sections (dwo_file->dbfd, dwarf2_locate_dwo_sections,
13012 &dwo_file->sections);
13013
13014 create_cus_hash_table (dwarf2_per_objfile, *dwo_file, dwo_file->sections.info,
13015 dwo_file->cus);
13016
13017 create_debug_types_hash_table (dwarf2_per_objfile, dwo_file.get (),
13018 dwo_file->sections.types, dwo_file->tus);
13019
13020 if (dwarf_read_debug)
13021 fprintf_unfiltered (gdb_stdlog, "DWO file found: %s\n", dwo_name);
13022
13023 return dwo_file.release ();
13024 }
13025
13026 /* This function is mapped across the sections and remembers the offset and
13027 size of each of the DWP debugging sections common to version 1 and 2 that
13028 we are interested in. */
13029
13030 static void
13031 dwarf2_locate_common_dwp_sections (bfd *abfd, asection *sectp,
13032 void *dwp_file_ptr)
13033 {
13034 struct dwp_file *dwp_file = (struct dwp_file *) dwp_file_ptr;
13035 const struct dwop_section_names *names = &dwop_section_names;
13036 unsigned int elf_section_nr = elf_section_data (sectp)->this_idx;
13037
13038 /* Record the ELF section number for later lookup: this is what the
13039 .debug_cu_index,.debug_tu_index tables use in DWP V1. */
13040 gdb_assert (elf_section_nr < dwp_file->num_sections);
13041 dwp_file->elf_sections[elf_section_nr] = sectp;
13042
13043 /* Look for specific sections that we need. */
13044 if (section_is_p (sectp->name, &names->str_dwo))
13045 {
13046 dwp_file->sections.str.s.section = sectp;
13047 dwp_file->sections.str.size = bfd_get_section_size (sectp);
13048 }
13049 else if (section_is_p (sectp->name, &names->cu_index))
13050 {
13051 dwp_file->sections.cu_index.s.section = sectp;
13052 dwp_file->sections.cu_index.size = bfd_get_section_size (sectp);
13053 }
13054 else if (section_is_p (sectp->name, &names->tu_index))
13055 {
13056 dwp_file->sections.tu_index.s.section = sectp;
13057 dwp_file->sections.tu_index.size = bfd_get_section_size (sectp);
13058 }
13059 }
13060
13061 /* This function is mapped across the sections and remembers the offset and
13062 size of each of the DWP version 2 debugging sections that we are interested
13063 in. This is split into a separate function because we don't know if we
13064 have version 1 or 2 until we parse the cu_index/tu_index sections. */
13065
13066 static void
13067 dwarf2_locate_v2_dwp_sections (bfd *abfd, asection *sectp, void *dwp_file_ptr)
13068 {
13069 struct dwp_file *dwp_file = (struct dwp_file *) dwp_file_ptr;
13070 const struct dwop_section_names *names = &dwop_section_names;
13071 unsigned int elf_section_nr = elf_section_data (sectp)->this_idx;
13072
13073 /* Record the ELF section number for later lookup: this is what the
13074 .debug_cu_index,.debug_tu_index tables use in DWP V1. */
13075 gdb_assert (elf_section_nr < dwp_file->num_sections);
13076 dwp_file->elf_sections[elf_section_nr] = sectp;
13077
13078 /* Look for specific sections that we need. */
13079 if (section_is_p (sectp->name, &names->abbrev_dwo))
13080 {
13081 dwp_file->sections.abbrev.s.section = sectp;
13082 dwp_file->sections.abbrev.size = bfd_get_section_size (sectp);
13083 }
13084 else if (section_is_p (sectp->name, &names->info_dwo))
13085 {
13086 dwp_file->sections.info.s.section = sectp;
13087 dwp_file->sections.info.size = bfd_get_section_size (sectp);
13088 }
13089 else if (section_is_p (sectp->name, &names->line_dwo))
13090 {
13091 dwp_file->sections.line.s.section = sectp;
13092 dwp_file->sections.line.size = bfd_get_section_size (sectp);
13093 }
13094 else if (section_is_p (sectp->name, &names->loc_dwo))
13095 {
13096 dwp_file->sections.loc.s.section = sectp;
13097 dwp_file->sections.loc.size = bfd_get_section_size (sectp);
13098 }
13099 else if (section_is_p (sectp->name, &names->macinfo_dwo))
13100 {
13101 dwp_file->sections.macinfo.s.section = sectp;
13102 dwp_file->sections.macinfo.size = bfd_get_section_size (sectp);
13103 }
13104 else if (section_is_p (sectp->name, &names->macro_dwo))
13105 {
13106 dwp_file->sections.macro.s.section = sectp;
13107 dwp_file->sections.macro.size = bfd_get_section_size (sectp);
13108 }
13109 else if (section_is_p (sectp->name, &names->str_offsets_dwo))
13110 {
13111 dwp_file->sections.str_offsets.s.section = sectp;
13112 dwp_file->sections.str_offsets.size = bfd_get_section_size (sectp);
13113 }
13114 else if (section_is_p (sectp->name, &names->types_dwo))
13115 {
13116 dwp_file->sections.types.s.section = sectp;
13117 dwp_file->sections.types.size = bfd_get_section_size (sectp);
13118 }
13119 }
13120
13121 /* Hash function for dwp_file loaded CUs/TUs. */
13122
13123 static hashval_t
13124 hash_dwp_loaded_cutus (const void *item)
13125 {
13126 const struct dwo_unit *dwo_unit = (const struct dwo_unit *) item;
13127
13128 /* This drops the top 32 bits of the signature, but is ok for a hash. */
13129 return dwo_unit->signature;
13130 }
13131
13132 /* Equality function for dwp_file loaded CUs/TUs. */
13133
13134 static int
13135 eq_dwp_loaded_cutus (const void *a, const void *b)
13136 {
13137 const struct dwo_unit *dua = (const struct dwo_unit *) a;
13138 const struct dwo_unit *dub = (const struct dwo_unit *) b;
13139
13140 return dua->signature == dub->signature;
13141 }
13142
13143 /* Allocate a hash table for dwp_file loaded CUs/TUs. */
13144
13145 static htab_t
13146 allocate_dwp_loaded_cutus_table (struct objfile *objfile)
13147 {
13148 return htab_create_alloc_ex (3,
13149 hash_dwp_loaded_cutus,
13150 eq_dwp_loaded_cutus,
13151 NULL,
13152 &objfile->objfile_obstack,
13153 hashtab_obstack_allocate,
13154 dummy_obstack_deallocate);
13155 }
13156
13157 /* Try to open DWP file FILE_NAME.
13158 The result is the bfd handle of the file.
13159 If there is a problem finding or opening the file, return NULL.
13160 Upon success, the canonicalized path of the file is stored in the bfd,
13161 same as symfile_bfd_open. */
13162
13163 static gdb_bfd_ref_ptr
13164 open_dwp_file (struct dwarf2_per_objfile *dwarf2_per_objfile,
13165 const char *file_name)
13166 {
13167 gdb_bfd_ref_ptr abfd (try_open_dwop_file (dwarf2_per_objfile, file_name,
13168 1 /*is_dwp*/,
13169 1 /*search_cwd*/));
13170 if (abfd != NULL)
13171 return abfd;
13172
13173 /* Work around upstream bug 15652.
13174 http://sourceware.org/bugzilla/show_bug.cgi?id=15652
13175 [Whether that's a "bug" is debatable, but it is getting in our way.]
13176 We have no real idea where the dwp file is, because gdb's realpath-ing
13177 of the executable's path may have discarded the needed info.
13178 [IWBN if the dwp file name was recorded in the executable, akin to
13179 .gnu_debuglink, but that doesn't exist yet.]
13180 Strip the directory from FILE_NAME and search again. */
13181 if (*debug_file_directory != '\0')
13182 {
13183 /* Don't implicitly search the current directory here.
13184 If the user wants to search "." to handle this case,
13185 it must be added to debug-file-directory. */
13186 return try_open_dwop_file (dwarf2_per_objfile,
13187 lbasename (file_name), 1 /*is_dwp*/,
13188 0 /*search_cwd*/);
13189 }
13190
13191 return NULL;
13192 }
13193
13194 /* Initialize the use of the DWP file for the current objfile.
13195 By convention the name of the DWP file is ${objfile}.dwp.
13196 The result is NULL if it can't be found. */
13197
13198 static struct dwp_file *
13199 open_and_init_dwp_file (struct dwarf2_per_objfile *dwarf2_per_objfile)
13200 {
13201 struct objfile *objfile = dwarf2_per_objfile->objfile;
13202 struct dwp_file *dwp_file;
13203
13204 /* Try to find first .dwp for the binary file before any symbolic links
13205 resolving. */
13206
13207 /* If the objfile is a debug file, find the name of the real binary
13208 file and get the name of dwp file from there. */
13209 std::string dwp_name;
13210 if (objfile->separate_debug_objfile_backlink != NULL)
13211 {
13212 struct objfile *backlink = objfile->separate_debug_objfile_backlink;
13213 const char *backlink_basename = lbasename (backlink->original_name);
13214
13215 dwp_name = ldirname (objfile->original_name) + SLASH_STRING + backlink_basename;
13216 }
13217 else
13218 dwp_name = objfile->original_name;
13219
13220 dwp_name += ".dwp";
13221
13222 gdb_bfd_ref_ptr dbfd (open_dwp_file (dwarf2_per_objfile, dwp_name.c_str ()));
13223 if (dbfd == NULL
13224 && strcmp (objfile->original_name, objfile_name (objfile)) != 0)
13225 {
13226 /* Try to find .dwp for the binary file after gdb_realpath resolving. */
13227 dwp_name = objfile_name (objfile);
13228 dwp_name += ".dwp";
13229 dbfd = open_dwp_file (dwarf2_per_objfile, dwp_name.c_str ());
13230 }
13231
13232 if (dbfd == NULL)
13233 {
13234 if (dwarf_read_debug)
13235 fprintf_unfiltered (gdb_stdlog, "DWP file not found: %s\n", dwp_name.c_str ());
13236 return NULL;
13237 }
13238 dwp_file = OBSTACK_ZALLOC (&objfile->objfile_obstack, struct dwp_file);
13239 dwp_file->name = bfd_get_filename (dbfd.get ());
13240 dwp_file->dbfd = dbfd.release ();
13241
13242 /* +1: section 0 is unused */
13243 dwp_file->num_sections = bfd_count_sections (dwp_file->dbfd) + 1;
13244 dwp_file->elf_sections =
13245 OBSTACK_CALLOC (&objfile->objfile_obstack,
13246 dwp_file->num_sections, asection *);
13247
13248 bfd_map_over_sections (dwp_file->dbfd, dwarf2_locate_common_dwp_sections,
13249 dwp_file);
13250
13251 dwp_file->cus = create_dwp_hash_table (dwarf2_per_objfile, dwp_file, 0);
13252
13253 dwp_file->tus = create_dwp_hash_table (dwarf2_per_objfile, dwp_file, 1);
13254
13255 /* The DWP file version is stored in the hash table. Oh well. */
13256 if (dwp_file->cus && dwp_file->tus
13257 && dwp_file->cus->version != dwp_file->tus->version)
13258 {
13259 /* Technically speaking, we should try to limp along, but this is
13260 pretty bizarre. We use pulongest here because that's the established
13261 portability solution (e.g, we cannot use %u for uint32_t). */
13262 error (_("Dwarf Error: DWP file CU version %s doesn't match"
13263 " TU version %s [in DWP file %s]"),
13264 pulongest (dwp_file->cus->version),
13265 pulongest (dwp_file->tus->version), dwp_name.c_str ());
13266 }
13267
13268 if (dwp_file->cus)
13269 dwp_file->version = dwp_file->cus->version;
13270 else if (dwp_file->tus)
13271 dwp_file->version = dwp_file->tus->version;
13272 else
13273 dwp_file->version = 2;
13274
13275 if (dwp_file->version == 2)
13276 bfd_map_over_sections (dwp_file->dbfd, dwarf2_locate_v2_dwp_sections,
13277 dwp_file);
13278
13279 dwp_file->loaded_cus = allocate_dwp_loaded_cutus_table (objfile);
13280 dwp_file->loaded_tus = allocate_dwp_loaded_cutus_table (objfile);
13281
13282 if (dwarf_read_debug)
13283 {
13284 fprintf_unfiltered (gdb_stdlog, "DWP file found: %s\n", dwp_file->name);
13285 fprintf_unfiltered (gdb_stdlog,
13286 " %s CUs, %s TUs\n",
13287 pulongest (dwp_file->cus ? dwp_file->cus->nr_units : 0),
13288 pulongest (dwp_file->tus ? dwp_file->tus->nr_units : 0));
13289 }
13290
13291 return dwp_file;
13292 }
13293
13294 /* Wrapper around open_and_init_dwp_file, only open it once. */
13295
13296 static struct dwp_file *
13297 get_dwp_file (struct dwarf2_per_objfile *dwarf2_per_objfile)
13298 {
13299 if (! dwarf2_per_objfile->dwp_checked)
13300 {
13301 dwarf2_per_objfile->dwp_file
13302 = open_and_init_dwp_file (dwarf2_per_objfile);
13303 dwarf2_per_objfile->dwp_checked = 1;
13304 }
13305 return dwarf2_per_objfile->dwp_file;
13306 }
13307
13308 /* Subroutine of lookup_dwo_comp_unit, lookup_dwo_type_unit.
13309 Look up the CU/TU with signature SIGNATURE, either in DWO file DWO_NAME
13310 or in the DWP file for the objfile, referenced by THIS_UNIT.
13311 If non-NULL, comp_dir is the DW_AT_comp_dir attribute.
13312 IS_DEBUG_TYPES is non-zero if reading a TU, otherwise read a CU.
13313
13314 This is called, for example, when wanting to read a variable with a
13315 complex location. Therefore we don't want to do file i/o for every call.
13316 Therefore we don't want to look for a DWO file on every call.
13317 Therefore we first see if we've already seen SIGNATURE in a DWP file,
13318 then we check if we've already seen DWO_NAME, and only THEN do we check
13319 for a DWO file.
13320
13321 The result is a pointer to the dwo_unit object or NULL if we didn't find it
13322 (dwo_id mismatch or couldn't find the DWO/DWP file). */
13323
13324 static struct dwo_unit *
13325 lookup_dwo_cutu (struct dwarf2_per_cu_data *this_unit,
13326 const char *dwo_name, const char *comp_dir,
13327 ULONGEST signature, int is_debug_types)
13328 {
13329 struct dwarf2_per_objfile *dwarf2_per_objfile = this_unit->dwarf2_per_objfile;
13330 struct objfile *objfile = dwarf2_per_objfile->objfile;
13331 const char *kind = is_debug_types ? "TU" : "CU";
13332 void **dwo_file_slot;
13333 struct dwo_file *dwo_file;
13334 struct dwp_file *dwp_file;
13335
13336 /* First see if there's a DWP file.
13337 If we have a DWP file but didn't find the DWO inside it, don't
13338 look for the original DWO file. It makes gdb behave differently
13339 depending on whether one is debugging in the build tree. */
13340
13341 dwp_file = get_dwp_file (dwarf2_per_objfile);
13342 if (dwp_file != NULL)
13343 {
13344 const struct dwp_hash_table *dwp_htab =
13345 is_debug_types ? dwp_file->tus : dwp_file->cus;
13346
13347 if (dwp_htab != NULL)
13348 {
13349 struct dwo_unit *dwo_cutu =
13350 lookup_dwo_unit_in_dwp (dwarf2_per_objfile, dwp_file, comp_dir,
13351 signature, is_debug_types);
13352
13353 if (dwo_cutu != NULL)
13354 {
13355 if (dwarf_read_debug)
13356 {
13357 fprintf_unfiltered (gdb_stdlog,
13358 "Virtual DWO %s %s found: @%s\n",
13359 kind, hex_string (signature),
13360 host_address_to_string (dwo_cutu));
13361 }
13362 return dwo_cutu;
13363 }
13364 }
13365 }
13366 else
13367 {
13368 /* No DWP file, look for the DWO file. */
13369
13370 dwo_file_slot = lookup_dwo_file_slot (dwarf2_per_objfile,
13371 dwo_name, comp_dir);
13372 if (*dwo_file_slot == NULL)
13373 {
13374 /* Read in the file and build a table of the CUs/TUs it contains. */
13375 *dwo_file_slot = open_and_init_dwo_file (this_unit, dwo_name, comp_dir);
13376 }
13377 /* NOTE: This will be NULL if unable to open the file. */
13378 dwo_file = (struct dwo_file *) *dwo_file_slot;
13379
13380 if (dwo_file != NULL)
13381 {
13382 struct dwo_unit *dwo_cutu = NULL;
13383
13384 if (is_debug_types && dwo_file->tus)
13385 {
13386 struct dwo_unit find_dwo_cutu;
13387
13388 memset (&find_dwo_cutu, 0, sizeof (find_dwo_cutu));
13389 find_dwo_cutu.signature = signature;
13390 dwo_cutu
13391 = (struct dwo_unit *) htab_find (dwo_file->tus, &find_dwo_cutu);
13392 }
13393 else if (!is_debug_types && dwo_file->cus)
13394 {
13395 struct dwo_unit find_dwo_cutu;
13396
13397 memset (&find_dwo_cutu, 0, sizeof (find_dwo_cutu));
13398 find_dwo_cutu.signature = signature;
13399 dwo_cutu = (struct dwo_unit *)htab_find (dwo_file->cus,
13400 &find_dwo_cutu);
13401 }
13402
13403 if (dwo_cutu != NULL)
13404 {
13405 if (dwarf_read_debug)
13406 {
13407 fprintf_unfiltered (gdb_stdlog, "DWO %s %s(%s) found: @%s\n",
13408 kind, dwo_name, hex_string (signature),
13409 host_address_to_string (dwo_cutu));
13410 }
13411 return dwo_cutu;
13412 }
13413 }
13414 }
13415
13416 /* We didn't find it. This could mean a dwo_id mismatch, or
13417 someone deleted the DWO/DWP file, or the search path isn't set up
13418 correctly to find the file. */
13419
13420 if (dwarf_read_debug)
13421 {
13422 fprintf_unfiltered (gdb_stdlog, "DWO %s %s(%s) not found\n",
13423 kind, dwo_name, hex_string (signature));
13424 }
13425
13426 /* This is a warning and not a complaint because it can be caused by
13427 pilot error (e.g., user accidentally deleting the DWO). */
13428 {
13429 /* Print the name of the DWP file if we looked there, helps the user
13430 better diagnose the problem. */
13431 std::string dwp_text;
13432
13433 if (dwp_file != NULL)
13434 dwp_text = string_printf (" [in DWP file %s]",
13435 lbasename (dwp_file->name));
13436
13437 warning (_("Could not find DWO %s %s(%s)%s referenced by %s at offset %s"
13438 " [in module %s]"),
13439 kind, dwo_name, hex_string (signature),
13440 dwp_text.c_str (),
13441 this_unit->is_debug_types ? "TU" : "CU",
13442 sect_offset_str (this_unit->sect_off), objfile_name (objfile));
13443 }
13444 return NULL;
13445 }
13446
13447 /* Lookup the DWO CU DWO_NAME/SIGNATURE referenced from THIS_CU.
13448 See lookup_dwo_cutu_unit for details. */
13449
13450 static struct dwo_unit *
13451 lookup_dwo_comp_unit (struct dwarf2_per_cu_data *this_cu,
13452 const char *dwo_name, const char *comp_dir,
13453 ULONGEST signature)
13454 {
13455 return lookup_dwo_cutu (this_cu, dwo_name, comp_dir, signature, 0);
13456 }
13457
13458 /* Lookup the DWO TU DWO_NAME/SIGNATURE referenced from THIS_TU.
13459 See lookup_dwo_cutu_unit for details. */
13460
13461 static struct dwo_unit *
13462 lookup_dwo_type_unit (struct signatured_type *this_tu,
13463 const char *dwo_name, const char *comp_dir)
13464 {
13465 return lookup_dwo_cutu (&this_tu->per_cu, dwo_name, comp_dir, this_tu->signature, 1);
13466 }
13467
13468 /* Traversal function for queue_and_load_all_dwo_tus. */
13469
13470 static int
13471 queue_and_load_dwo_tu (void **slot, void *info)
13472 {
13473 struct dwo_unit *dwo_unit = (struct dwo_unit *) *slot;
13474 struct dwarf2_per_cu_data *per_cu = (struct dwarf2_per_cu_data *) info;
13475 ULONGEST signature = dwo_unit->signature;
13476 struct signatured_type *sig_type =
13477 lookup_dwo_signatured_type (per_cu->cu, signature);
13478
13479 if (sig_type != NULL)
13480 {
13481 struct dwarf2_per_cu_data *sig_cu = &sig_type->per_cu;
13482
13483 /* We pass NULL for DEPENDENT_CU because we don't yet know if there's
13484 a real dependency of PER_CU on SIG_TYPE. That is detected later
13485 while processing PER_CU. */
13486 if (maybe_queue_comp_unit (NULL, sig_cu, per_cu->cu->language))
13487 load_full_type_unit (sig_cu);
13488 VEC_safe_push (dwarf2_per_cu_ptr, per_cu->imported_symtabs, sig_cu);
13489 }
13490
13491 return 1;
13492 }
13493
13494 /* Queue all TUs contained in the DWO of PER_CU to be read in.
13495 The DWO may have the only definition of the type, though it may not be
13496 referenced anywhere in PER_CU. Thus we have to load *all* its TUs.
13497 http://sourceware.org/bugzilla/show_bug.cgi?id=15021 */
13498
13499 static void
13500 queue_and_load_all_dwo_tus (struct dwarf2_per_cu_data *per_cu)
13501 {
13502 struct dwo_unit *dwo_unit;
13503 struct dwo_file *dwo_file;
13504
13505 gdb_assert (!per_cu->is_debug_types);
13506 gdb_assert (get_dwp_file (per_cu->dwarf2_per_objfile) == NULL);
13507 gdb_assert (per_cu->cu != NULL);
13508
13509 dwo_unit = per_cu->cu->dwo_unit;
13510 gdb_assert (dwo_unit != NULL);
13511
13512 dwo_file = dwo_unit->dwo_file;
13513 if (dwo_file->tus != NULL)
13514 htab_traverse_noresize (dwo_file->tus, queue_and_load_dwo_tu, per_cu);
13515 }
13516
13517 /* Free all resources associated with DWO_FILE.
13518 Close the DWO file and munmap the sections. */
13519
13520 static void
13521 free_dwo_file (struct dwo_file *dwo_file)
13522 {
13523 /* Note: dbfd is NULL for virtual DWO files. */
13524 gdb_bfd_unref (dwo_file->dbfd);
13525
13526 VEC_free (dwarf2_section_info_def, dwo_file->sections.types);
13527 }
13528
13529 /* Traversal function for free_dwo_files. */
13530
13531 static int
13532 free_dwo_file_from_slot (void **slot, void *info)
13533 {
13534 struct dwo_file *dwo_file = (struct dwo_file *) *slot;
13535
13536 free_dwo_file (dwo_file);
13537
13538 return 1;
13539 }
13540
13541 /* Free all resources associated with DWO_FILES. */
13542
13543 static void
13544 free_dwo_files (htab_t dwo_files, struct objfile *objfile)
13545 {
13546 htab_traverse_noresize (dwo_files, free_dwo_file_from_slot, objfile);
13547 }
13548 \f
13549 /* Read in various DIEs. */
13550
13551 /* DW_AT_abstract_origin inherits whole DIEs (not just their attributes).
13552 Inherit only the children of the DW_AT_abstract_origin DIE not being
13553 already referenced by DW_AT_abstract_origin from the children of the
13554 current DIE. */
13555
13556 static void
13557 inherit_abstract_dies (struct die_info *die, struct dwarf2_cu *cu)
13558 {
13559 struct die_info *child_die;
13560 sect_offset *offsetp;
13561 /* Parent of DIE - referenced by DW_AT_abstract_origin. */
13562 struct die_info *origin_die;
13563 /* Iterator of the ORIGIN_DIE children. */
13564 struct die_info *origin_child_die;
13565 struct attribute *attr;
13566 struct dwarf2_cu *origin_cu;
13567 struct pending **origin_previous_list_in_scope;
13568
13569 attr = dwarf2_attr (die, DW_AT_abstract_origin, cu);
13570 if (!attr)
13571 return;
13572
13573 /* Note that following die references may follow to a die in a
13574 different cu. */
13575
13576 origin_cu = cu;
13577 origin_die = follow_die_ref (die, attr, &origin_cu);
13578
13579 /* We're inheriting ORIGIN's children into the scope we'd put DIE's
13580 symbols in. */
13581 origin_previous_list_in_scope = origin_cu->list_in_scope;
13582 origin_cu->list_in_scope = cu->list_in_scope;
13583
13584 if (die->tag != origin_die->tag
13585 && !(die->tag == DW_TAG_inlined_subroutine
13586 && origin_die->tag == DW_TAG_subprogram))
13587 complaint (&symfile_complaints,
13588 _("DIE %s and its abstract origin %s have different tags"),
13589 sect_offset_str (die->sect_off),
13590 sect_offset_str (origin_die->sect_off));
13591
13592 std::vector<sect_offset> offsets;
13593
13594 for (child_die = die->child;
13595 child_die && child_die->tag;
13596 child_die = sibling_die (child_die))
13597 {
13598 struct die_info *child_origin_die;
13599 struct dwarf2_cu *child_origin_cu;
13600
13601 /* We are trying to process concrete instance entries:
13602 DW_TAG_call_site DIEs indeed have a DW_AT_abstract_origin tag, but
13603 it's not relevant to our analysis here. i.e. detecting DIEs that are
13604 present in the abstract instance but not referenced in the concrete
13605 one. */
13606 if (child_die->tag == DW_TAG_call_site
13607 || child_die->tag == DW_TAG_GNU_call_site)
13608 continue;
13609
13610 /* For each CHILD_DIE, find the corresponding child of
13611 ORIGIN_DIE. If there is more than one layer of
13612 DW_AT_abstract_origin, follow them all; there shouldn't be,
13613 but GCC versions at least through 4.4 generate this (GCC PR
13614 40573). */
13615 child_origin_die = child_die;
13616 child_origin_cu = cu;
13617 while (1)
13618 {
13619 attr = dwarf2_attr (child_origin_die, DW_AT_abstract_origin,
13620 child_origin_cu);
13621 if (attr == NULL)
13622 break;
13623 child_origin_die = follow_die_ref (child_origin_die, attr,
13624 &child_origin_cu);
13625 }
13626
13627 /* According to DWARF3 3.3.8.2 #3 new entries without their abstract
13628 counterpart may exist. */
13629 if (child_origin_die != child_die)
13630 {
13631 if (child_die->tag != child_origin_die->tag
13632 && !(child_die->tag == DW_TAG_inlined_subroutine
13633 && child_origin_die->tag == DW_TAG_subprogram))
13634 complaint (&symfile_complaints,
13635 _("Child DIE %s and its abstract origin %s have "
13636 "different tags"),
13637 sect_offset_str (child_die->sect_off),
13638 sect_offset_str (child_origin_die->sect_off));
13639 if (child_origin_die->parent != origin_die)
13640 complaint (&symfile_complaints,
13641 _("Child DIE %s and its abstract origin %s have "
13642 "different parents"),
13643 sect_offset_str (child_die->sect_off),
13644 sect_offset_str (child_origin_die->sect_off));
13645 else
13646 offsets.push_back (child_origin_die->sect_off);
13647 }
13648 }
13649 std::sort (offsets.begin (), offsets.end ());
13650 sect_offset *offsets_end = offsets.data () + offsets.size ();
13651 for (offsetp = offsets.data () + 1; offsetp < offsets_end; offsetp++)
13652 if (offsetp[-1] == *offsetp)
13653 complaint (&symfile_complaints,
13654 _("Multiple children of DIE %s refer "
13655 "to DIE %s as their abstract origin"),
13656 sect_offset_str (die->sect_off), sect_offset_str (*offsetp));
13657
13658 offsetp = offsets.data ();
13659 origin_child_die = origin_die->child;
13660 while (origin_child_die && origin_child_die->tag)
13661 {
13662 /* Is ORIGIN_CHILD_DIE referenced by any of the DIE children? */
13663 while (offsetp < offsets_end
13664 && *offsetp < origin_child_die->sect_off)
13665 offsetp++;
13666 if (offsetp >= offsets_end
13667 || *offsetp > origin_child_die->sect_off)
13668 {
13669 /* Found that ORIGIN_CHILD_DIE is really not referenced.
13670 Check whether we're already processing ORIGIN_CHILD_DIE.
13671 This can happen with mutually referenced abstract_origins.
13672 PR 16581. */
13673 if (!origin_child_die->in_process)
13674 process_die (origin_child_die, origin_cu);
13675 }
13676 origin_child_die = sibling_die (origin_child_die);
13677 }
13678 origin_cu->list_in_scope = origin_previous_list_in_scope;
13679 }
13680
13681 static void
13682 read_func_scope (struct die_info *die, struct dwarf2_cu *cu)
13683 {
13684 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
13685 struct gdbarch *gdbarch = get_objfile_arch (objfile);
13686 struct context_stack *newobj;
13687 CORE_ADDR lowpc;
13688 CORE_ADDR highpc;
13689 struct die_info *child_die;
13690 struct attribute *attr, *call_line, *call_file;
13691 const char *name;
13692 CORE_ADDR baseaddr;
13693 struct block *block;
13694 int inlined_func = (die->tag == DW_TAG_inlined_subroutine);
13695 std::vector<struct symbol *> template_args;
13696 struct template_symbol *templ_func = NULL;
13697
13698 if (inlined_func)
13699 {
13700 /* If we do not have call site information, we can't show the
13701 caller of this inlined function. That's too confusing, so
13702 only use the scope for local variables. */
13703 call_line = dwarf2_attr (die, DW_AT_call_line, cu);
13704 call_file = dwarf2_attr (die, DW_AT_call_file, cu);
13705 if (call_line == NULL || call_file == NULL)
13706 {
13707 read_lexical_block_scope (die, cu);
13708 return;
13709 }
13710 }
13711
13712 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
13713
13714 name = dwarf2_name (die, cu);
13715
13716 /* Ignore functions with missing or empty names. These are actually
13717 illegal according to the DWARF standard. */
13718 if (name == NULL)
13719 {
13720 complaint (&symfile_complaints,
13721 _("missing name for subprogram DIE at %s"),
13722 sect_offset_str (die->sect_off));
13723 return;
13724 }
13725
13726 /* Ignore functions with missing or invalid low and high pc attributes. */
13727 if (dwarf2_get_pc_bounds (die, &lowpc, &highpc, cu, NULL)
13728 <= PC_BOUNDS_INVALID)
13729 {
13730 attr = dwarf2_attr (die, DW_AT_external, cu);
13731 if (!attr || !DW_UNSND (attr))
13732 complaint (&symfile_complaints,
13733 _("cannot get low and high bounds "
13734 "for subprogram DIE at %s"),
13735 sect_offset_str (die->sect_off));
13736 return;
13737 }
13738
13739 lowpc = gdbarch_adjust_dwarf2_addr (gdbarch, lowpc + baseaddr);
13740 highpc = gdbarch_adjust_dwarf2_addr (gdbarch, highpc + baseaddr);
13741
13742 /* If we have any template arguments, then we must allocate a
13743 different sort of symbol. */
13744 for (child_die = die->child; child_die; child_die = sibling_die (child_die))
13745 {
13746 if (child_die->tag == DW_TAG_template_type_param
13747 || child_die->tag == DW_TAG_template_value_param)
13748 {
13749 templ_func = allocate_template_symbol (objfile);
13750 templ_func->subclass = SYMBOL_TEMPLATE;
13751 break;
13752 }
13753 }
13754
13755 newobj = push_context (0, lowpc);
13756 newobj->name = new_symbol (die, read_type_die (die, cu), cu,
13757 (struct symbol *) templ_func);
13758
13759 /* If there is a location expression for DW_AT_frame_base, record
13760 it. */
13761 attr = dwarf2_attr (die, DW_AT_frame_base, cu);
13762 if (attr)
13763 dwarf2_symbol_mark_computed (attr, newobj->name, cu, 1);
13764
13765 /* If there is a location for the static link, record it. */
13766 newobj->static_link = NULL;
13767 attr = dwarf2_attr (die, DW_AT_static_link, cu);
13768 if (attr)
13769 {
13770 newobj->static_link
13771 = XOBNEW (&objfile->objfile_obstack, struct dynamic_prop);
13772 attr_to_dynamic_prop (attr, die, cu, newobj->static_link);
13773 }
13774
13775 cu->list_in_scope = &local_symbols;
13776
13777 if (die->child != NULL)
13778 {
13779 child_die = die->child;
13780 while (child_die && child_die->tag)
13781 {
13782 if (child_die->tag == DW_TAG_template_type_param
13783 || child_die->tag == DW_TAG_template_value_param)
13784 {
13785 struct symbol *arg = new_symbol (child_die, NULL, cu);
13786
13787 if (arg != NULL)
13788 template_args.push_back (arg);
13789 }
13790 else
13791 process_die (child_die, cu);
13792 child_die = sibling_die (child_die);
13793 }
13794 }
13795
13796 inherit_abstract_dies (die, cu);
13797
13798 /* If we have a DW_AT_specification, we might need to import using
13799 directives from the context of the specification DIE. See the
13800 comment in determine_prefix. */
13801 if (cu->language == language_cplus
13802 && dwarf2_attr (die, DW_AT_specification, cu))
13803 {
13804 struct dwarf2_cu *spec_cu = cu;
13805 struct die_info *spec_die = die_specification (die, &spec_cu);
13806
13807 while (spec_die)
13808 {
13809 child_die = spec_die->child;
13810 while (child_die && child_die->tag)
13811 {
13812 if (child_die->tag == DW_TAG_imported_module)
13813 process_die (child_die, spec_cu);
13814 child_die = sibling_die (child_die);
13815 }
13816
13817 /* In some cases, GCC generates specification DIEs that
13818 themselves contain DW_AT_specification attributes. */
13819 spec_die = die_specification (spec_die, &spec_cu);
13820 }
13821 }
13822
13823 newobj = pop_context ();
13824 /* Make a block for the local symbols within. */
13825 block = finish_block (newobj->name, &local_symbols, newobj->old_blocks,
13826 newobj->static_link, lowpc, highpc);
13827
13828 /* For C++, set the block's scope. */
13829 if ((cu->language == language_cplus
13830 || cu->language == language_fortran
13831 || cu->language == language_d
13832 || cu->language == language_rust)
13833 && cu->processing_has_namespace_info)
13834 block_set_scope (block, determine_prefix (die, cu),
13835 &objfile->objfile_obstack);
13836
13837 /* If we have address ranges, record them. */
13838 dwarf2_record_block_ranges (die, block, baseaddr, cu);
13839
13840 gdbarch_make_symbol_special (gdbarch, newobj->name, objfile);
13841
13842 /* Attach template arguments to function. */
13843 if (!template_args.empty ())
13844 {
13845 gdb_assert (templ_func != NULL);
13846
13847 templ_func->n_template_arguments = template_args.size ();
13848 templ_func->template_arguments
13849 = XOBNEWVEC (&objfile->objfile_obstack, struct symbol *,
13850 templ_func->n_template_arguments);
13851 memcpy (templ_func->template_arguments,
13852 template_args.data (),
13853 (templ_func->n_template_arguments * sizeof (struct symbol *)));
13854 }
13855
13856 /* In C++, we can have functions nested inside functions (e.g., when
13857 a function declares a class that has methods). This means that
13858 when we finish processing a function scope, we may need to go
13859 back to building a containing block's symbol lists. */
13860 local_symbols = newobj->locals;
13861 local_using_directives = newobj->local_using_directives;
13862
13863 /* If we've finished processing a top-level function, subsequent
13864 symbols go in the file symbol list. */
13865 if (outermost_context_p ())
13866 cu->list_in_scope = &file_symbols;
13867 }
13868
13869 /* Process all the DIES contained within a lexical block scope. Start
13870 a new scope, process the dies, and then close the scope. */
13871
13872 static void
13873 read_lexical_block_scope (struct die_info *die, struct dwarf2_cu *cu)
13874 {
13875 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
13876 struct gdbarch *gdbarch = get_objfile_arch (objfile);
13877 struct context_stack *newobj;
13878 CORE_ADDR lowpc, highpc;
13879 struct die_info *child_die;
13880 CORE_ADDR baseaddr;
13881
13882 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
13883
13884 /* Ignore blocks with missing or invalid low and high pc attributes. */
13885 /* ??? Perhaps consider discontiguous blocks defined by DW_AT_ranges
13886 as multiple lexical blocks? Handling children in a sane way would
13887 be nasty. Might be easier to properly extend generic blocks to
13888 describe ranges. */
13889 switch (dwarf2_get_pc_bounds (die, &lowpc, &highpc, cu, NULL))
13890 {
13891 case PC_BOUNDS_NOT_PRESENT:
13892 /* DW_TAG_lexical_block has no attributes, process its children as if
13893 there was no wrapping by that DW_TAG_lexical_block.
13894 GCC does no longer produces such DWARF since GCC r224161. */
13895 for (child_die = die->child;
13896 child_die != NULL && child_die->tag;
13897 child_die = sibling_die (child_die))
13898 process_die (child_die, cu);
13899 return;
13900 case PC_BOUNDS_INVALID:
13901 return;
13902 }
13903 lowpc = gdbarch_adjust_dwarf2_addr (gdbarch, lowpc + baseaddr);
13904 highpc = gdbarch_adjust_dwarf2_addr (gdbarch, highpc + baseaddr);
13905
13906 push_context (0, lowpc);
13907 if (die->child != NULL)
13908 {
13909 child_die = die->child;
13910 while (child_die && child_die->tag)
13911 {
13912 process_die (child_die, cu);
13913 child_die = sibling_die (child_die);
13914 }
13915 }
13916 inherit_abstract_dies (die, cu);
13917 newobj = pop_context ();
13918
13919 if (local_symbols != NULL || local_using_directives != NULL)
13920 {
13921 struct block *block
13922 = finish_block (0, &local_symbols, newobj->old_blocks, NULL,
13923 newobj->start_addr, highpc);
13924
13925 /* Note that recording ranges after traversing children, as we
13926 do here, means that recording a parent's ranges entails
13927 walking across all its children's ranges as they appear in
13928 the address map, which is quadratic behavior.
13929
13930 It would be nicer to record the parent's ranges before
13931 traversing its children, simply overriding whatever you find
13932 there. But since we don't even decide whether to create a
13933 block until after we've traversed its children, that's hard
13934 to do. */
13935 dwarf2_record_block_ranges (die, block, baseaddr, cu);
13936 }
13937 local_symbols = newobj->locals;
13938 local_using_directives = newobj->local_using_directives;
13939 }
13940
13941 /* Read in DW_TAG_call_site and insert it to CU->call_site_htab. */
13942
13943 static void
13944 read_call_site_scope (struct die_info *die, struct dwarf2_cu *cu)
13945 {
13946 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
13947 struct gdbarch *gdbarch = get_objfile_arch (objfile);
13948 CORE_ADDR pc, baseaddr;
13949 struct attribute *attr;
13950 struct call_site *call_site, call_site_local;
13951 void **slot;
13952 int nparams;
13953 struct die_info *child_die;
13954
13955 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
13956
13957 attr = dwarf2_attr (die, DW_AT_call_return_pc, cu);
13958 if (attr == NULL)
13959 {
13960 /* This was a pre-DWARF-5 GNU extension alias
13961 for DW_AT_call_return_pc. */
13962 attr = dwarf2_attr (die, DW_AT_low_pc, cu);
13963 }
13964 if (!attr)
13965 {
13966 complaint (&symfile_complaints,
13967 _("missing DW_AT_call_return_pc for DW_TAG_call_site "
13968 "DIE %s [in module %s]"),
13969 sect_offset_str (die->sect_off), objfile_name (objfile));
13970 return;
13971 }
13972 pc = attr_value_as_address (attr) + baseaddr;
13973 pc = gdbarch_adjust_dwarf2_addr (gdbarch, pc);
13974
13975 if (cu->call_site_htab == NULL)
13976 cu->call_site_htab = htab_create_alloc_ex (16, core_addr_hash, core_addr_eq,
13977 NULL, &objfile->objfile_obstack,
13978 hashtab_obstack_allocate, NULL);
13979 call_site_local.pc = pc;
13980 slot = htab_find_slot (cu->call_site_htab, &call_site_local, INSERT);
13981 if (*slot != NULL)
13982 {
13983 complaint (&symfile_complaints,
13984 _("Duplicate PC %s for DW_TAG_call_site "
13985 "DIE %s [in module %s]"),
13986 paddress (gdbarch, pc), sect_offset_str (die->sect_off),
13987 objfile_name (objfile));
13988 return;
13989 }
13990
13991 /* Count parameters at the caller. */
13992
13993 nparams = 0;
13994 for (child_die = die->child; child_die && child_die->tag;
13995 child_die = sibling_die (child_die))
13996 {
13997 if (child_die->tag != DW_TAG_call_site_parameter
13998 && child_die->tag != DW_TAG_GNU_call_site_parameter)
13999 {
14000 complaint (&symfile_complaints,
14001 _("Tag %d is not DW_TAG_call_site_parameter in "
14002 "DW_TAG_call_site child DIE %s [in module %s]"),
14003 child_die->tag, sect_offset_str (child_die->sect_off),
14004 objfile_name (objfile));
14005 continue;
14006 }
14007
14008 nparams++;
14009 }
14010
14011 call_site
14012 = ((struct call_site *)
14013 obstack_alloc (&objfile->objfile_obstack,
14014 sizeof (*call_site)
14015 + (sizeof (*call_site->parameter) * (nparams - 1))));
14016 *slot = call_site;
14017 memset (call_site, 0, sizeof (*call_site) - sizeof (*call_site->parameter));
14018 call_site->pc = pc;
14019
14020 if (dwarf2_flag_true_p (die, DW_AT_call_tail_call, cu)
14021 || dwarf2_flag_true_p (die, DW_AT_GNU_tail_call, cu))
14022 {
14023 struct die_info *func_die;
14024
14025 /* Skip also over DW_TAG_inlined_subroutine. */
14026 for (func_die = die->parent;
14027 func_die && func_die->tag != DW_TAG_subprogram
14028 && func_die->tag != DW_TAG_subroutine_type;
14029 func_die = func_die->parent);
14030
14031 /* DW_AT_call_all_calls is a superset
14032 of DW_AT_call_all_tail_calls. */
14033 if (func_die
14034 && !dwarf2_flag_true_p (func_die, DW_AT_call_all_calls, cu)
14035 && !dwarf2_flag_true_p (func_die, DW_AT_GNU_all_call_sites, cu)
14036 && !dwarf2_flag_true_p (func_die, DW_AT_call_all_tail_calls, cu)
14037 && !dwarf2_flag_true_p (func_die, DW_AT_GNU_all_tail_call_sites, cu))
14038 {
14039 /* TYPE_TAIL_CALL_LIST is not interesting in functions where it is
14040 not complete. But keep CALL_SITE for look ups via call_site_htab,
14041 both the initial caller containing the real return address PC and
14042 the final callee containing the current PC of a chain of tail
14043 calls do not need to have the tail call list complete. But any
14044 function candidate for a virtual tail call frame searched via
14045 TYPE_TAIL_CALL_LIST must have the tail call list complete to be
14046 determined unambiguously. */
14047 }
14048 else
14049 {
14050 struct type *func_type = NULL;
14051
14052 if (func_die)
14053 func_type = get_die_type (func_die, cu);
14054 if (func_type != NULL)
14055 {
14056 gdb_assert (TYPE_CODE (func_type) == TYPE_CODE_FUNC);
14057
14058 /* Enlist this call site to the function. */
14059 call_site->tail_call_next = TYPE_TAIL_CALL_LIST (func_type);
14060 TYPE_TAIL_CALL_LIST (func_type) = call_site;
14061 }
14062 else
14063 complaint (&symfile_complaints,
14064 _("Cannot find function owning DW_TAG_call_site "
14065 "DIE %s [in module %s]"),
14066 sect_offset_str (die->sect_off), objfile_name (objfile));
14067 }
14068 }
14069
14070 attr = dwarf2_attr (die, DW_AT_call_target, cu);
14071 if (attr == NULL)
14072 attr = dwarf2_attr (die, DW_AT_GNU_call_site_target, cu);
14073 if (attr == NULL)
14074 attr = dwarf2_attr (die, DW_AT_call_origin, cu);
14075 if (attr == NULL)
14076 {
14077 /* This was a pre-DWARF-5 GNU extension alias for DW_AT_call_origin. */
14078 attr = dwarf2_attr (die, DW_AT_abstract_origin, cu);
14079 }
14080 SET_FIELD_DWARF_BLOCK (call_site->target, NULL);
14081 if (!attr || (attr_form_is_block (attr) && DW_BLOCK (attr)->size == 0))
14082 /* Keep NULL DWARF_BLOCK. */;
14083 else if (attr_form_is_block (attr))
14084 {
14085 struct dwarf2_locexpr_baton *dlbaton;
14086
14087 dlbaton = XOBNEW (&objfile->objfile_obstack, struct dwarf2_locexpr_baton);
14088 dlbaton->data = DW_BLOCK (attr)->data;
14089 dlbaton->size = DW_BLOCK (attr)->size;
14090 dlbaton->per_cu = cu->per_cu;
14091
14092 SET_FIELD_DWARF_BLOCK (call_site->target, dlbaton);
14093 }
14094 else if (attr_form_is_ref (attr))
14095 {
14096 struct dwarf2_cu *target_cu = cu;
14097 struct die_info *target_die;
14098
14099 target_die = follow_die_ref (die, attr, &target_cu);
14100 gdb_assert (target_cu->per_cu->dwarf2_per_objfile->objfile == objfile);
14101 if (die_is_declaration (target_die, target_cu))
14102 {
14103 const char *target_physname;
14104
14105 /* Prefer the mangled name; otherwise compute the demangled one. */
14106 target_physname = dw2_linkage_name (target_die, target_cu);
14107 if (target_physname == NULL)
14108 target_physname = dwarf2_physname (NULL, target_die, target_cu);
14109 if (target_physname == NULL)
14110 complaint (&symfile_complaints,
14111 _("DW_AT_call_target target DIE has invalid "
14112 "physname, for referencing DIE %s [in module %s]"),
14113 sect_offset_str (die->sect_off), objfile_name (objfile));
14114 else
14115 SET_FIELD_PHYSNAME (call_site->target, target_physname);
14116 }
14117 else
14118 {
14119 CORE_ADDR lowpc;
14120
14121 /* DW_AT_entry_pc should be preferred. */
14122 if (dwarf2_get_pc_bounds (target_die, &lowpc, NULL, target_cu, NULL)
14123 <= PC_BOUNDS_INVALID)
14124 complaint (&symfile_complaints,
14125 _("DW_AT_call_target target DIE has invalid "
14126 "low pc, for referencing DIE %s [in module %s]"),
14127 sect_offset_str (die->sect_off), objfile_name (objfile));
14128 else
14129 {
14130 lowpc = gdbarch_adjust_dwarf2_addr (gdbarch, lowpc + baseaddr);
14131 SET_FIELD_PHYSADDR (call_site->target, lowpc);
14132 }
14133 }
14134 }
14135 else
14136 complaint (&symfile_complaints,
14137 _("DW_TAG_call_site DW_AT_call_target is neither "
14138 "block nor reference, for DIE %s [in module %s]"),
14139 sect_offset_str (die->sect_off), objfile_name (objfile));
14140
14141 call_site->per_cu = cu->per_cu;
14142
14143 for (child_die = die->child;
14144 child_die && child_die->tag;
14145 child_die = sibling_die (child_die))
14146 {
14147 struct call_site_parameter *parameter;
14148 struct attribute *loc, *origin;
14149
14150 if (child_die->tag != DW_TAG_call_site_parameter
14151 && child_die->tag != DW_TAG_GNU_call_site_parameter)
14152 {
14153 /* Already printed the complaint above. */
14154 continue;
14155 }
14156
14157 gdb_assert (call_site->parameter_count < nparams);
14158 parameter = &call_site->parameter[call_site->parameter_count];
14159
14160 /* DW_AT_location specifies the register number or DW_AT_abstract_origin
14161 specifies DW_TAG_formal_parameter. Value of the data assumed for the
14162 register is contained in DW_AT_call_value. */
14163
14164 loc = dwarf2_attr (child_die, DW_AT_location, cu);
14165 origin = dwarf2_attr (child_die, DW_AT_call_parameter, cu);
14166 if (origin == NULL)
14167 {
14168 /* This was a pre-DWARF-5 GNU extension alias
14169 for DW_AT_call_parameter. */
14170 origin = dwarf2_attr (child_die, DW_AT_abstract_origin, cu);
14171 }
14172 if (loc == NULL && origin != NULL && attr_form_is_ref (origin))
14173 {
14174 parameter->kind = CALL_SITE_PARAMETER_PARAM_OFFSET;
14175
14176 sect_offset sect_off
14177 = (sect_offset) dwarf2_get_ref_die_offset (origin);
14178 if (!offset_in_cu_p (&cu->header, sect_off))
14179 {
14180 /* As DW_OP_GNU_parameter_ref uses CU-relative offset this
14181 binding can be done only inside one CU. Such referenced DIE
14182 therefore cannot be even moved to DW_TAG_partial_unit. */
14183 complaint (&symfile_complaints,
14184 _("DW_AT_call_parameter offset is not in CU for "
14185 "DW_TAG_call_site child DIE %s [in module %s]"),
14186 sect_offset_str (child_die->sect_off),
14187 objfile_name (objfile));
14188 continue;
14189 }
14190 parameter->u.param_cu_off
14191 = (cu_offset) (sect_off - cu->header.sect_off);
14192 }
14193 else if (loc == NULL || origin != NULL || !attr_form_is_block (loc))
14194 {
14195 complaint (&symfile_complaints,
14196 _("No DW_FORM_block* DW_AT_location for "
14197 "DW_TAG_call_site child DIE %s [in module %s]"),
14198 sect_offset_str (child_die->sect_off), objfile_name (objfile));
14199 continue;
14200 }
14201 else
14202 {
14203 parameter->u.dwarf_reg = dwarf_block_to_dwarf_reg
14204 (DW_BLOCK (loc)->data, &DW_BLOCK (loc)->data[DW_BLOCK (loc)->size]);
14205 if (parameter->u.dwarf_reg != -1)
14206 parameter->kind = CALL_SITE_PARAMETER_DWARF_REG;
14207 else if (dwarf_block_to_sp_offset (gdbarch, DW_BLOCK (loc)->data,
14208 &DW_BLOCK (loc)->data[DW_BLOCK (loc)->size],
14209 &parameter->u.fb_offset))
14210 parameter->kind = CALL_SITE_PARAMETER_FB_OFFSET;
14211 else
14212 {
14213 complaint (&symfile_complaints,
14214 _("Only single DW_OP_reg or DW_OP_fbreg is supported "
14215 "for DW_FORM_block* DW_AT_location is supported for "
14216 "DW_TAG_call_site child DIE %s "
14217 "[in module %s]"),
14218 sect_offset_str (child_die->sect_off),
14219 objfile_name (objfile));
14220 continue;
14221 }
14222 }
14223
14224 attr = dwarf2_attr (child_die, DW_AT_call_value, cu);
14225 if (attr == NULL)
14226 attr = dwarf2_attr (child_die, DW_AT_GNU_call_site_value, cu);
14227 if (!attr_form_is_block (attr))
14228 {
14229 complaint (&symfile_complaints,
14230 _("No DW_FORM_block* DW_AT_call_value for "
14231 "DW_TAG_call_site child DIE %s [in module %s]"),
14232 sect_offset_str (child_die->sect_off),
14233 objfile_name (objfile));
14234 continue;
14235 }
14236 parameter->value = DW_BLOCK (attr)->data;
14237 parameter->value_size = DW_BLOCK (attr)->size;
14238
14239 /* Parameters are not pre-cleared by memset above. */
14240 parameter->data_value = NULL;
14241 parameter->data_value_size = 0;
14242 call_site->parameter_count++;
14243
14244 attr = dwarf2_attr (child_die, DW_AT_call_data_value, cu);
14245 if (attr == NULL)
14246 attr = dwarf2_attr (child_die, DW_AT_GNU_call_site_data_value, cu);
14247 if (attr)
14248 {
14249 if (!attr_form_is_block (attr))
14250 complaint (&symfile_complaints,
14251 _("No DW_FORM_block* DW_AT_call_data_value for "
14252 "DW_TAG_call_site child DIE %s [in module %s]"),
14253 sect_offset_str (child_die->sect_off),
14254 objfile_name (objfile));
14255 else
14256 {
14257 parameter->data_value = DW_BLOCK (attr)->data;
14258 parameter->data_value_size = DW_BLOCK (attr)->size;
14259 }
14260 }
14261 }
14262 }
14263
14264 /* Helper function for read_variable. If DIE represents a virtual
14265 table, then return the type of the concrete object that is
14266 associated with the virtual table. Otherwise, return NULL. */
14267
14268 static struct type *
14269 rust_containing_type (struct die_info *die, struct dwarf2_cu *cu)
14270 {
14271 struct attribute *attr = dwarf2_attr (die, DW_AT_type, cu);
14272 if (attr == NULL)
14273 return NULL;
14274
14275 /* Find the type DIE. */
14276 struct die_info *type_die = NULL;
14277 struct dwarf2_cu *type_cu = cu;
14278
14279 if (attr_form_is_ref (attr))
14280 type_die = follow_die_ref (die, attr, &type_cu);
14281 if (type_die == NULL)
14282 return NULL;
14283
14284 if (dwarf2_attr (type_die, DW_AT_containing_type, type_cu) == NULL)
14285 return NULL;
14286 return die_containing_type (type_die, type_cu);
14287 }
14288
14289 /* Read a variable (DW_TAG_variable) DIE and create a new symbol. */
14290
14291 static void
14292 read_variable (struct die_info *die, struct dwarf2_cu *cu)
14293 {
14294 struct rust_vtable_symbol *storage = NULL;
14295
14296 if (cu->language == language_rust)
14297 {
14298 struct type *containing_type = rust_containing_type (die, cu);
14299
14300 if (containing_type != NULL)
14301 {
14302 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
14303
14304 storage = OBSTACK_ZALLOC (&objfile->objfile_obstack,
14305 struct rust_vtable_symbol);
14306 initialize_objfile_symbol (storage);
14307 storage->concrete_type = containing_type;
14308 storage->subclass = SYMBOL_RUST_VTABLE;
14309 }
14310 }
14311
14312 new_symbol (die, NULL, cu, storage);
14313 }
14314
14315 /* Call CALLBACK from DW_AT_ranges attribute value OFFSET
14316 reading .debug_rnglists.
14317 Callback's type should be:
14318 void (CORE_ADDR range_beginning, CORE_ADDR range_end)
14319 Return true if the attributes are present and valid, otherwise,
14320 return false. */
14321
14322 template <typename Callback>
14323 static bool
14324 dwarf2_rnglists_process (unsigned offset, struct dwarf2_cu *cu,
14325 Callback &&callback)
14326 {
14327 struct dwarf2_per_objfile *dwarf2_per_objfile
14328 = cu->per_cu->dwarf2_per_objfile;
14329 struct objfile *objfile = dwarf2_per_objfile->objfile;
14330 bfd *obfd = objfile->obfd;
14331 /* Base address selection entry. */
14332 CORE_ADDR base;
14333 int found_base;
14334 const gdb_byte *buffer;
14335 CORE_ADDR baseaddr;
14336 bool overflow = false;
14337
14338 found_base = cu->base_known;
14339 base = cu->base_address;
14340
14341 dwarf2_read_section (objfile, &dwarf2_per_objfile->rnglists);
14342 if (offset >= dwarf2_per_objfile->rnglists.size)
14343 {
14344 complaint (&symfile_complaints,
14345 _("Offset %d out of bounds for DW_AT_ranges attribute"),
14346 offset);
14347 return false;
14348 }
14349 buffer = dwarf2_per_objfile->rnglists.buffer + offset;
14350
14351 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
14352
14353 while (1)
14354 {
14355 /* Initialize it due to a false compiler warning. */
14356 CORE_ADDR range_beginning = 0, range_end = 0;
14357 const gdb_byte *buf_end = (dwarf2_per_objfile->rnglists.buffer
14358 + dwarf2_per_objfile->rnglists.size);
14359 unsigned int bytes_read;
14360
14361 if (buffer == buf_end)
14362 {
14363 overflow = true;
14364 break;
14365 }
14366 const auto rlet = static_cast<enum dwarf_range_list_entry>(*buffer++);
14367 switch (rlet)
14368 {
14369 case DW_RLE_end_of_list:
14370 break;
14371 case DW_RLE_base_address:
14372 if (buffer + cu->header.addr_size > buf_end)
14373 {
14374 overflow = true;
14375 break;
14376 }
14377 base = read_address (obfd, buffer, cu, &bytes_read);
14378 found_base = 1;
14379 buffer += bytes_read;
14380 break;
14381 case DW_RLE_start_length:
14382 if (buffer + cu->header.addr_size > buf_end)
14383 {
14384 overflow = true;
14385 break;
14386 }
14387 range_beginning = read_address (obfd, buffer, cu, &bytes_read);
14388 buffer += bytes_read;
14389 range_end = (range_beginning
14390 + read_unsigned_leb128 (obfd, buffer, &bytes_read));
14391 buffer += bytes_read;
14392 if (buffer > buf_end)
14393 {
14394 overflow = true;
14395 break;
14396 }
14397 break;
14398 case DW_RLE_offset_pair:
14399 range_beginning = read_unsigned_leb128 (obfd, buffer, &bytes_read);
14400 buffer += bytes_read;
14401 if (buffer > buf_end)
14402 {
14403 overflow = true;
14404 break;
14405 }
14406 range_end = read_unsigned_leb128 (obfd, buffer, &bytes_read);
14407 buffer += bytes_read;
14408 if (buffer > buf_end)
14409 {
14410 overflow = true;
14411 break;
14412 }
14413 break;
14414 case DW_RLE_start_end:
14415 if (buffer + 2 * cu->header.addr_size > buf_end)
14416 {
14417 overflow = true;
14418 break;
14419 }
14420 range_beginning = read_address (obfd, buffer, cu, &bytes_read);
14421 buffer += bytes_read;
14422 range_end = read_address (obfd, buffer, cu, &bytes_read);
14423 buffer += bytes_read;
14424 break;
14425 default:
14426 complaint (&symfile_complaints,
14427 _("Invalid .debug_rnglists data (no base address)"));
14428 return false;
14429 }
14430 if (rlet == DW_RLE_end_of_list || overflow)
14431 break;
14432 if (rlet == DW_RLE_base_address)
14433 continue;
14434
14435 if (!found_base)
14436 {
14437 /* We have no valid base address for the ranges
14438 data. */
14439 complaint (&symfile_complaints,
14440 _("Invalid .debug_rnglists data (no base address)"));
14441 return false;
14442 }
14443
14444 if (range_beginning > range_end)
14445 {
14446 /* Inverted range entries are invalid. */
14447 complaint (&symfile_complaints,
14448 _("Invalid .debug_rnglists data (inverted range)"));
14449 return false;
14450 }
14451
14452 /* Empty range entries have no effect. */
14453 if (range_beginning == range_end)
14454 continue;
14455
14456 range_beginning += base;
14457 range_end += base;
14458
14459 /* A not-uncommon case of bad debug info.
14460 Don't pollute the addrmap with bad data. */
14461 if (range_beginning + baseaddr == 0
14462 && !dwarf2_per_objfile->has_section_at_zero)
14463 {
14464 complaint (&symfile_complaints,
14465 _(".debug_rnglists entry has start address of zero"
14466 " [in module %s]"), objfile_name (objfile));
14467 continue;
14468 }
14469
14470 callback (range_beginning, range_end);
14471 }
14472
14473 if (overflow)
14474 {
14475 complaint (&symfile_complaints,
14476 _("Offset %d is not terminated "
14477 "for DW_AT_ranges attribute"),
14478 offset);
14479 return false;
14480 }
14481
14482 return true;
14483 }
14484
14485 /* Call CALLBACK from DW_AT_ranges attribute value OFFSET reading .debug_ranges.
14486 Callback's type should be:
14487 void (CORE_ADDR range_beginning, CORE_ADDR range_end)
14488 Return 1 if the attributes are present and valid, otherwise, return 0. */
14489
14490 template <typename Callback>
14491 static int
14492 dwarf2_ranges_process (unsigned offset, struct dwarf2_cu *cu,
14493 Callback &&callback)
14494 {
14495 struct dwarf2_per_objfile *dwarf2_per_objfile
14496 = cu->per_cu->dwarf2_per_objfile;
14497 struct objfile *objfile = dwarf2_per_objfile->objfile;
14498 struct comp_unit_head *cu_header = &cu->header;
14499 bfd *obfd = objfile->obfd;
14500 unsigned int addr_size = cu_header->addr_size;
14501 CORE_ADDR mask = ~(~(CORE_ADDR)1 << (addr_size * 8 - 1));
14502 /* Base address selection entry. */
14503 CORE_ADDR base;
14504 int found_base;
14505 unsigned int dummy;
14506 const gdb_byte *buffer;
14507 CORE_ADDR baseaddr;
14508
14509 if (cu_header->version >= 5)
14510 return dwarf2_rnglists_process (offset, cu, callback);
14511
14512 found_base = cu->base_known;
14513 base = cu->base_address;
14514
14515 dwarf2_read_section (objfile, &dwarf2_per_objfile->ranges);
14516 if (offset >= dwarf2_per_objfile->ranges.size)
14517 {
14518 complaint (&symfile_complaints,
14519 _("Offset %d out of bounds for DW_AT_ranges attribute"),
14520 offset);
14521 return 0;
14522 }
14523 buffer = dwarf2_per_objfile->ranges.buffer + offset;
14524
14525 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
14526
14527 while (1)
14528 {
14529 CORE_ADDR range_beginning, range_end;
14530
14531 range_beginning = read_address (obfd, buffer, cu, &dummy);
14532 buffer += addr_size;
14533 range_end = read_address (obfd, buffer, cu, &dummy);
14534 buffer += addr_size;
14535 offset += 2 * addr_size;
14536
14537 /* An end of list marker is a pair of zero addresses. */
14538 if (range_beginning == 0 && range_end == 0)
14539 /* Found the end of list entry. */
14540 break;
14541
14542 /* Each base address selection entry is a pair of 2 values.
14543 The first is the largest possible address, the second is
14544 the base address. Check for a base address here. */
14545 if ((range_beginning & mask) == mask)
14546 {
14547 /* If we found the largest possible address, then we already
14548 have the base address in range_end. */
14549 base = range_end;
14550 found_base = 1;
14551 continue;
14552 }
14553
14554 if (!found_base)
14555 {
14556 /* We have no valid base address for the ranges
14557 data. */
14558 complaint (&symfile_complaints,
14559 _("Invalid .debug_ranges data (no base address)"));
14560 return 0;
14561 }
14562
14563 if (range_beginning > range_end)
14564 {
14565 /* Inverted range entries are invalid. */
14566 complaint (&symfile_complaints,
14567 _("Invalid .debug_ranges data (inverted range)"));
14568 return 0;
14569 }
14570
14571 /* Empty range entries have no effect. */
14572 if (range_beginning == range_end)
14573 continue;
14574
14575 range_beginning += base;
14576 range_end += base;
14577
14578 /* A not-uncommon case of bad debug info.
14579 Don't pollute the addrmap with bad data. */
14580 if (range_beginning + baseaddr == 0
14581 && !dwarf2_per_objfile->has_section_at_zero)
14582 {
14583 complaint (&symfile_complaints,
14584 _(".debug_ranges entry has start address of zero"
14585 " [in module %s]"), objfile_name (objfile));
14586 continue;
14587 }
14588
14589 callback (range_beginning, range_end);
14590 }
14591
14592 return 1;
14593 }
14594
14595 /* Get low and high pc attributes from DW_AT_ranges attribute value OFFSET.
14596 Return 1 if the attributes are present and valid, otherwise, return 0.
14597 If RANGES_PST is not NULL we should setup `objfile->psymtabs_addrmap'. */
14598
14599 static int
14600 dwarf2_ranges_read (unsigned offset, CORE_ADDR *low_return,
14601 CORE_ADDR *high_return, struct dwarf2_cu *cu,
14602 struct partial_symtab *ranges_pst)
14603 {
14604 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
14605 struct gdbarch *gdbarch = get_objfile_arch (objfile);
14606 const CORE_ADDR baseaddr = ANOFFSET (objfile->section_offsets,
14607 SECT_OFF_TEXT (objfile));
14608 int low_set = 0;
14609 CORE_ADDR low = 0;
14610 CORE_ADDR high = 0;
14611 int retval;
14612
14613 retval = dwarf2_ranges_process (offset, cu,
14614 [&] (CORE_ADDR range_beginning, CORE_ADDR range_end)
14615 {
14616 if (ranges_pst != NULL)
14617 {
14618 CORE_ADDR lowpc;
14619 CORE_ADDR highpc;
14620
14621 lowpc = gdbarch_adjust_dwarf2_addr (gdbarch,
14622 range_beginning + baseaddr);
14623 highpc = gdbarch_adjust_dwarf2_addr (gdbarch,
14624 range_end + baseaddr);
14625 addrmap_set_empty (objfile->psymtabs_addrmap, lowpc, highpc - 1,
14626 ranges_pst);
14627 }
14628
14629 /* FIXME: This is recording everything as a low-high
14630 segment of consecutive addresses. We should have a
14631 data structure for discontiguous block ranges
14632 instead. */
14633 if (! low_set)
14634 {
14635 low = range_beginning;
14636 high = range_end;
14637 low_set = 1;
14638 }
14639 else
14640 {
14641 if (range_beginning < low)
14642 low = range_beginning;
14643 if (range_end > high)
14644 high = range_end;
14645 }
14646 });
14647 if (!retval)
14648 return 0;
14649
14650 if (! low_set)
14651 /* If the first entry is an end-of-list marker, the range
14652 describes an empty scope, i.e. no instructions. */
14653 return 0;
14654
14655 if (low_return)
14656 *low_return = low;
14657 if (high_return)
14658 *high_return = high;
14659 return 1;
14660 }
14661
14662 /* Get low and high pc attributes from a die. See enum pc_bounds_kind
14663 definition for the return value. *LOWPC and *HIGHPC are set iff
14664 neither PC_BOUNDS_NOT_PRESENT nor PC_BOUNDS_INVALID are returned. */
14665
14666 static enum pc_bounds_kind
14667 dwarf2_get_pc_bounds (struct die_info *die, CORE_ADDR *lowpc,
14668 CORE_ADDR *highpc, struct dwarf2_cu *cu,
14669 struct partial_symtab *pst)
14670 {
14671 struct dwarf2_per_objfile *dwarf2_per_objfile
14672 = cu->per_cu->dwarf2_per_objfile;
14673 struct attribute *attr;
14674 struct attribute *attr_high;
14675 CORE_ADDR low = 0;
14676 CORE_ADDR high = 0;
14677 enum pc_bounds_kind ret;
14678
14679 attr_high = dwarf2_attr (die, DW_AT_high_pc, cu);
14680 if (attr_high)
14681 {
14682 attr = dwarf2_attr (die, DW_AT_low_pc, cu);
14683 if (attr)
14684 {
14685 low = attr_value_as_address (attr);
14686 high = attr_value_as_address (attr_high);
14687 if (cu->header.version >= 4 && attr_form_is_constant (attr_high))
14688 high += low;
14689 }
14690 else
14691 /* Found high w/o low attribute. */
14692 return PC_BOUNDS_INVALID;
14693
14694 /* Found consecutive range of addresses. */
14695 ret = PC_BOUNDS_HIGH_LOW;
14696 }
14697 else
14698 {
14699 attr = dwarf2_attr (die, DW_AT_ranges, cu);
14700 if (attr != NULL)
14701 {
14702 /* DW_AT_ranges_base does not apply to DIEs from the DWO skeleton.
14703 We take advantage of the fact that DW_AT_ranges does not appear
14704 in DW_TAG_compile_unit of DWO files. */
14705 int need_ranges_base = die->tag != DW_TAG_compile_unit;
14706 unsigned int ranges_offset = (DW_UNSND (attr)
14707 + (need_ranges_base
14708 ? cu->ranges_base
14709 : 0));
14710
14711 /* Value of the DW_AT_ranges attribute is the offset in the
14712 .debug_ranges section. */
14713 if (!dwarf2_ranges_read (ranges_offset, &low, &high, cu, pst))
14714 return PC_BOUNDS_INVALID;
14715 /* Found discontinuous range of addresses. */
14716 ret = PC_BOUNDS_RANGES;
14717 }
14718 else
14719 return PC_BOUNDS_NOT_PRESENT;
14720 }
14721
14722 /* partial_die_info::read has also the strict LOW < HIGH requirement. */
14723 if (high <= low)
14724 return PC_BOUNDS_INVALID;
14725
14726 /* When using the GNU linker, .gnu.linkonce. sections are used to
14727 eliminate duplicate copies of functions and vtables and such.
14728 The linker will arbitrarily choose one and discard the others.
14729 The AT_*_pc values for such functions refer to local labels in
14730 these sections. If the section from that file was discarded, the
14731 labels are not in the output, so the relocs get a value of 0.
14732 If this is a discarded function, mark the pc bounds as invalid,
14733 so that GDB will ignore it. */
14734 if (low == 0 && !dwarf2_per_objfile->has_section_at_zero)
14735 return PC_BOUNDS_INVALID;
14736
14737 *lowpc = low;
14738 if (highpc)
14739 *highpc = high;
14740 return ret;
14741 }
14742
14743 /* Assuming that DIE represents a subprogram DIE or a lexical block, get
14744 its low and high PC addresses. Do nothing if these addresses could not
14745 be determined. Otherwise, set LOWPC to the low address if it is smaller,
14746 and HIGHPC to the high address if greater than HIGHPC. */
14747
14748 static void
14749 dwarf2_get_subprogram_pc_bounds (struct die_info *die,
14750 CORE_ADDR *lowpc, CORE_ADDR *highpc,
14751 struct dwarf2_cu *cu)
14752 {
14753 CORE_ADDR low, high;
14754 struct die_info *child = die->child;
14755
14756 if (dwarf2_get_pc_bounds (die, &low, &high, cu, NULL) >= PC_BOUNDS_RANGES)
14757 {
14758 *lowpc = std::min (*lowpc, low);
14759 *highpc = std::max (*highpc, high);
14760 }
14761
14762 /* If the language does not allow nested subprograms (either inside
14763 subprograms or lexical blocks), we're done. */
14764 if (cu->language != language_ada)
14765 return;
14766
14767 /* Check all the children of the given DIE. If it contains nested
14768 subprograms, then check their pc bounds. Likewise, we need to
14769 check lexical blocks as well, as they may also contain subprogram
14770 definitions. */
14771 while (child && child->tag)
14772 {
14773 if (child->tag == DW_TAG_subprogram
14774 || child->tag == DW_TAG_lexical_block)
14775 dwarf2_get_subprogram_pc_bounds (child, lowpc, highpc, cu);
14776 child = sibling_die (child);
14777 }
14778 }
14779
14780 /* Get the low and high pc's represented by the scope DIE, and store
14781 them in *LOWPC and *HIGHPC. If the correct values can't be
14782 determined, set *LOWPC to -1 and *HIGHPC to 0. */
14783
14784 static void
14785 get_scope_pc_bounds (struct die_info *die,
14786 CORE_ADDR *lowpc, CORE_ADDR *highpc,
14787 struct dwarf2_cu *cu)
14788 {
14789 CORE_ADDR best_low = (CORE_ADDR) -1;
14790 CORE_ADDR best_high = (CORE_ADDR) 0;
14791 CORE_ADDR current_low, current_high;
14792
14793 if (dwarf2_get_pc_bounds (die, &current_low, &current_high, cu, NULL)
14794 >= PC_BOUNDS_RANGES)
14795 {
14796 best_low = current_low;
14797 best_high = current_high;
14798 }
14799 else
14800 {
14801 struct die_info *child = die->child;
14802
14803 while (child && child->tag)
14804 {
14805 switch (child->tag) {
14806 case DW_TAG_subprogram:
14807 dwarf2_get_subprogram_pc_bounds (child, &best_low, &best_high, cu);
14808 break;
14809 case DW_TAG_namespace:
14810 case DW_TAG_module:
14811 /* FIXME: carlton/2004-01-16: Should we do this for
14812 DW_TAG_class_type/DW_TAG_structure_type, too? I think
14813 that current GCC's always emit the DIEs corresponding
14814 to definitions of methods of classes as children of a
14815 DW_TAG_compile_unit or DW_TAG_namespace (as opposed to
14816 the DIEs giving the declarations, which could be
14817 anywhere). But I don't see any reason why the
14818 standards says that they have to be there. */
14819 get_scope_pc_bounds (child, &current_low, &current_high, cu);
14820
14821 if (current_low != ((CORE_ADDR) -1))
14822 {
14823 best_low = std::min (best_low, current_low);
14824 best_high = std::max (best_high, current_high);
14825 }
14826 break;
14827 default:
14828 /* Ignore. */
14829 break;
14830 }
14831
14832 child = sibling_die (child);
14833 }
14834 }
14835
14836 *lowpc = best_low;
14837 *highpc = best_high;
14838 }
14839
14840 /* Record the address ranges for BLOCK, offset by BASEADDR, as given
14841 in DIE. */
14842
14843 static void
14844 dwarf2_record_block_ranges (struct die_info *die, struct block *block,
14845 CORE_ADDR baseaddr, struct dwarf2_cu *cu)
14846 {
14847 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
14848 struct gdbarch *gdbarch = get_objfile_arch (objfile);
14849 struct attribute *attr;
14850 struct attribute *attr_high;
14851
14852 attr_high = dwarf2_attr (die, DW_AT_high_pc, cu);
14853 if (attr_high)
14854 {
14855 attr = dwarf2_attr (die, DW_AT_low_pc, cu);
14856 if (attr)
14857 {
14858 CORE_ADDR low = attr_value_as_address (attr);
14859 CORE_ADDR high = attr_value_as_address (attr_high);
14860
14861 if (cu->header.version >= 4 && attr_form_is_constant (attr_high))
14862 high += low;
14863
14864 low = gdbarch_adjust_dwarf2_addr (gdbarch, low + baseaddr);
14865 high = gdbarch_adjust_dwarf2_addr (gdbarch, high + baseaddr);
14866 record_block_range (block, low, high - 1);
14867 }
14868 }
14869
14870 attr = dwarf2_attr (die, DW_AT_ranges, cu);
14871 if (attr)
14872 {
14873 /* DW_AT_ranges_base does not apply to DIEs from the DWO skeleton.
14874 We take advantage of the fact that DW_AT_ranges does not appear
14875 in DW_TAG_compile_unit of DWO files. */
14876 int need_ranges_base = die->tag != DW_TAG_compile_unit;
14877
14878 /* The value of the DW_AT_ranges attribute is the offset of the
14879 address range list in the .debug_ranges section. */
14880 unsigned long offset = (DW_UNSND (attr)
14881 + (need_ranges_base ? cu->ranges_base : 0));
14882 const gdb_byte *buffer;
14883
14884 /* For some target architectures, but not others, the
14885 read_address function sign-extends the addresses it returns.
14886 To recognize base address selection entries, we need a
14887 mask. */
14888 unsigned int addr_size = cu->header.addr_size;
14889 CORE_ADDR base_select_mask = ~(~(CORE_ADDR)1 << (addr_size * 8 - 1));
14890
14891 /* The base address, to which the next pair is relative. Note
14892 that this 'base' is a DWARF concept: most entries in a range
14893 list are relative, to reduce the number of relocs against the
14894 debugging information. This is separate from this function's
14895 'baseaddr' argument, which GDB uses to relocate debugging
14896 information from a shared library based on the address at
14897 which the library was loaded. */
14898 CORE_ADDR base = cu->base_address;
14899 int base_known = cu->base_known;
14900
14901 dwarf2_ranges_process (offset, cu,
14902 [&] (CORE_ADDR start, CORE_ADDR end)
14903 {
14904 start += baseaddr;
14905 end += baseaddr;
14906 start = gdbarch_adjust_dwarf2_addr (gdbarch, start);
14907 end = gdbarch_adjust_dwarf2_addr (gdbarch, end);
14908 record_block_range (block, start, end - 1);
14909 });
14910 }
14911 }
14912
14913 /* Check whether the producer field indicates either of GCC < 4.6, or the
14914 Intel C/C++ compiler, and cache the result in CU. */
14915
14916 static void
14917 check_producer (struct dwarf2_cu *cu)
14918 {
14919 int major, minor;
14920
14921 if (cu->producer == NULL)
14922 {
14923 /* For unknown compilers expect their behavior is DWARF version
14924 compliant.
14925
14926 GCC started to support .debug_types sections by -gdwarf-4 since
14927 gcc-4.5.x. As the .debug_types sections are missing DW_AT_producer
14928 for their space efficiency GDB cannot workaround gcc-4.5.x -gdwarf-4
14929 combination. gcc-4.5.x -gdwarf-4 binaries have DW_AT_accessibility
14930 interpreted incorrectly by GDB now - GCC PR debug/48229. */
14931 }
14932 else if (producer_is_gcc (cu->producer, &major, &minor))
14933 {
14934 cu->producer_is_gxx_lt_4_6 = major < 4 || (major == 4 && minor < 6);
14935 cu->producer_is_gcc_lt_4_3 = major < 4 || (major == 4 && minor < 3);
14936 }
14937 else if (producer_is_icc (cu->producer, &major, &minor))
14938 cu->producer_is_icc_lt_14 = major < 14;
14939 else
14940 {
14941 /* For other non-GCC compilers, expect their behavior is DWARF version
14942 compliant. */
14943 }
14944
14945 cu->checked_producer = 1;
14946 }
14947
14948 /* Check for GCC PR debug/45124 fix which is not present in any G++ version up
14949 to 4.5.any while it is present already in G++ 4.6.0 - the PR has been fixed
14950 during 4.6.0 experimental. */
14951
14952 static int
14953 producer_is_gxx_lt_4_6 (struct dwarf2_cu *cu)
14954 {
14955 if (!cu->checked_producer)
14956 check_producer (cu);
14957
14958 return cu->producer_is_gxx_lt_4_6;
14959 }
14960
14961 /* Return the default accessibility type if it is not overriden by
14962 DW_AT_accessibility. */
14963
14964 static enum dwarf_access_attribute
14965 dwarf2_default_access_attribute (struct die_info *die, struct dwarf2_cu *cu)
14966 {
14967 if (cu->header.version < 3 || producer_is_gxx_lt_4_6 (cu))
14968 {
14969 /* The default DWARF 2 accessibility for members is public, the default
14970 accessibility for inheritance is private. */
14971
14972 if (die->tag != DW_TAG_inheritance)
14973 return DW_ACCESS_public;
14974 else
14975 return DW_ACCESS_private;
14976 }
14977 else
14978 {
14979 /* DWARF 3+ defines the default accessibility a different way. The same
14980 rules apply now for DW_TAG_inheritance as for the members and it only
14981 depends on the container kind. */
14982
14983 if (die->parent->tag == DW_TAG_class_type)
14984 return DW_ACCESS_private;
14985 else
14986 return DW_ACCESS_public;
14987 }
14988 }
14989
14990 /* Look for DW_AT_data_member_location. Set *OFFSET to the byte
14991 offset. If the attribute was not found return 0, otherwise return
14992 1. If it was found but could not properly be handled, set *OFFSET
14993 to 0. */
14994
14995 static int
14996 handle_data_member_location (struct die_info *die, struct dwarf2_cu *cu,
14997 LONGEST *offset)
14998 {
14999 struct attribute *attr;
15000
15001 attr = dwarf2_attr (die, DW_AT_data_member_location, cu);
15002 if (attr != NULL)
15003 {
15004 *offset = 0;
15005
15006 /* Note that we do not check for a section offset first here.
15007 This is because DW_AT_data_member_location is new in DWARF 4,
15008 so if we see it, we can assume that a constant form is really
15009 a constant and not a section offset. */
15010 if (attr_form_is_constant (attr))
15011 *offset = dwarf2_get_attr_constant_value (attr, 0);
15012 else if (attr_form_is_section_offset (attr))
15013 dwarf2_complex_location_expr_complaint ();
15014 else if (attr_form_is_block (attr))
15015 *offset = decode_locdesc (DW_BLOCK (attr), cu);
15016 else
15017 dwarf2_complex_location_expr_complaint ();
15018
15019 return 1;
15020 }
15021
15022 return 0;
15023 }
15024
15025 /* Add an aggregate field to the field list. */
15026
15027 static void
15028 dwarf2_add_field (struct field_info *fip, struct die_info *die,
15029 struct dwarf2_cu *cu)
15030 {
15031 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
15032 struct gdbarch *gdbarch = get_objfile_arch (objfile);
15033 struct nextfield *new_field;
15034 struct attribute *attr;
15035 struct field *fp;
15036 const char *fieldname = "";
15037
15038 if (die->tag == DW_TAG_inheritance)
15039 {
15040 fip->baseclasses.emplace_back ();
15041 new_field = &fip->baseclasses.back ();
15042 }
15043 else
15044 {
15045 fip->fields.emplace_back ();
15046 new_field = &fip->fields.back ();
15047 }
15048
15049 fip->nfields++;
15050
15051 attr = dwarf2_attr (die, DW_AT_accessibility, cu);
15052 if (attr)
15053 new_field->accessibility = DW_UNSND (attr);
15054 else
15055 new_field->accessibility = dwarf2_default_access_attribute (die, cu);
15056 if (new_field->accessibility != DW_ACCESS_public)
15057 fip->non_public_fields = 1;
15058
15059 attr = dwarf2_attr (die, DW_AT_virtuality, cu);
15060 if (attr)
15061 new_field->virtuality = DW_UNSND (attr);
15062 else
15063 new_field->virtuality = DW_VIRTUALITY_none;
15064
15065 fp = &new_field->field;
15066
15067 if (die->tag == DW_TAG_member && ! die_is_declaration (die, cu))
15068 {
15069 LONGEST offset;
15070
15071 /* Data member other than a C++ static data member. */
15072
15073 /* Get type of field. */
15074 fp->type = die_type (die, cu);
15075
15076 SET_FIELD_BITPOS (*fp, 0);
15077
15078 /* Get bit size of field (zero if none). */
15079 attr = dwarf2_attr (die, DW_AT_bit_size, cu);
15080 if (attr)
15081 {
15082 FIELD_BITSIZE (*fp) = DW_UNSND (attr);
15083 }
15084 else
15085 {
15086 FIELD_BITSIZE (*fp) = 0;
15087 }
15088
15089 /* Get bit offset of field. */
15090 if (handle_data_member_location (die, cu, &offset))
15091 SET_FIELD_BITPOS (*fp, offset * bits_per_byte);
15092 attr = dwarf2_attr (die, DW_AT_bit_offset, cu);
15093 if (attr)
15094 {
15095 if (gdbarch_bits_big_endian (gdbarch))
15096 {
15097 /* For big endian bits, the DW_AT_bit_offset gives the
15098 additional bit offset from the MSB of the containing
15099 anonymous object to the MSB of the field. We don't
15100 have to do anything special since we don't need to
15101 know the size of the anonymous object. */
15102 SET_FIELD_BITPOS (*fp, FIELD_BITPOS (*fp) + DW_UNSND (attr));
15103 }
15104 else
15105 {
15106 /* For little endian bits, compute the bit offset to the
15107 MSB of the anonymous object, subtract off the number of
15108 bits from the MSB of the field to the MSB of the
15109 object, and then subtract off the number of bits of
15110 the field itself. The result is the bit offset of
15111 the LSB of the field. */
15112 int anonymous_size;
15113 int bit_offset = DW_UNSND (attr);
15114
15115 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
15116 if (attr)
15117 {
15118 /* The size of the anonymous object containing
15119 the bit field is explicit, so use the
15120 indicated size (in bytes). */
15121 anonymous_size = DW_UNSND (attr);
15122 }
15123 else
15124 {
15125 /* The size of the anonymous object containing
15126 the bit field must be inferred from the type
15127 attribute of the data member containing the
15128 bit field. */
15129 anonymous_size = TYPE_LENGTH (fp->type);
15130 }
15131 SET_FIELD_BITPOS (*fp,
15132 (FIELD_BITPOS (*fp)
15133 + anonymous_size * bits_per_byte
15134 - bit_offset - FIELD_BITSIZE (*fp)));
15135 }
15136 }
15137 attr = dwarf2_attr (die, DW_AT_data_bit_offset, cu);
15138 if (attr != NULL)
15139 SET_FIELD_BITPOS (*fp, (FIELD_BITPOS (*fp)
15140 + dwarf2_get_attr_constant_value (attr, 0)));
15141
15142 /* Get name of field. */
15143 fieldname = dwarf2_name (die, cu);
15144 if (fieldname == NULL)
15145 fieldname = "";
15146
15147 /* The name is already allocated along with this objfile, so we don't
15148 need to duplicate it for the type. */
15149 fp->name = fieldname;
15150
15151 /* Change accessibility for artificial fields (e.g. virtual table
15152 pointer or virtual base class pointer) to private. */
15153 if (dwarf2_attr (die, DW_AT_artificial, cu))
15154 {
15155 FIELD_ARTIFICIAL (*fp) = 1;
15156 new_field->accessibility = DW_ACCESS_private;
15157 fip->non_public_fields = 1;
15158 }
15159 }
15160 else if (die->tag == DW_TAG_member || die->tag == DW_TAG_variable)
15161 {
15162 /* C++ static member. */
15163
15164 /* NOTE: carlton/2002-11-05: It should be a DW_TAG_member that
15165 is a declaration, but all versions of G++ as of this writing
15166 (so through at least 3.2.1) incorrectly generate
15167 DW_TAG_variable tags. */
15168
15169 const char *physname;
15170
15171 /* Get name of field. */
15172 fieldname = dwarf2_name (die, cu);
15173 if (fieldname == NULL)
15174 return;
15175
15176 attr = dwarf2_attr (die, DW_AT_const_value, cu);
15177 if (attr
15178 /* Only create a symbol if this is an external value.
15179 new_symbol checks this and puts the value in the global symbol
15180 table, which we want. If it is not external, new_symbol
15181 will try to put the value in cu->list_in_scope which is wrong. */
15182 && dwarf2_flag_true_p (die, DW_AT_external, cu))
15183 {
15184 /* A static const member, not much different than an enum as far as
15185 we're concerned, except that we can support more types. */
15186 new_symbol (die, NULL, cu);
15187 }
15188
15189 /* Get physical name. */
15190 physname = dwarf2_physname (fieldname, die, cu);
15191
15192 /* The name is already allocated along with this objfile, so we don't
15193 need to duplicate it for the type. */
15194 SET_FIELD_PHYSNAME (*fp, physname ? physname : "");
15195 FIELD_TYPE (*fp) = die_type (die, cu);
15196 FIELD_NAME (*fp) = fieldname;
15197 }
15198 else if (die->tag == DW_TAG_inheritance)
15199 {
15200 LONGEST offset;
15201
15202 /* C++ base class field. */
15203 if (handle_data_member_location (die, cu, &offset))
15204 SET_FIELD_BITPOS (*fp, offset * bits_per_byte);
15205 FIELD_BITSIZE (*fp) = 0;
15206 FIELD_TYPE (*fp) = die_type (die, cu);
15207 FIELD_NAME (*fp) = type_name_no_tag (fp->type);
15208 }
15209 else if (die->tag == DW_TAG_variant_part)
15210 {
15211 /* process_structure_scope will treat this DIE as a union. */
15212 process_structure_scope (die, cu);
15213
15214 /* The variant part is relative to the start of the enclosing
15215 structure. */
15216 SET_FIELD_BITPOS (*fp, 0);
15217 fp->type = get_die_type (die, cu);
15218 fp->artificial = 1;
15219 fp->name = "<<variant>>";
15220 }
15221 else
15222 gdb_assert_not_reached ("missing case in dwarf2_add_field");
15223 }
15224
15225 /* Can the type given by DIE define another type? */
15226
15227 static bool
15228 type_can_define_types (const struct die_info *die)
15229 {
15230 switch (die->tag)
15231 {
15232 case DW_TAG_typedef:
15233 case DW_TAG_class_type:
15234 case DW_TAG_structure_type:
15235 case DW_TAG_union_type:
15236 case DW_TAG_enumeration_type:
15237 return true;
15238
15239 default:
15240 return false;
15241 }
15242 }
15243
15244 /* Add a type definition defined in the scope of the FIP's class. */
15245
15246 static void
15247 dwarf2_add_type_defn (struct field_info *fip, struct die_info *die,
15248 struct dwarf2_cu *cu)
15249 {
15250 struct decl_field fp;
15251 memset (&fp, 0, sizeof (fp));
15252
15253 gdb_assert (type_can_define_types (die));
15254
15255 /* Get name of field. NULL is okay here, meaning an anonymous type. */
15256 fp.name = dwarf2_name (die, cu);
15257 fp.type = read_type_die (die, cu);
15258
15259 /* Save accessibility. */
15260 enum dwarf_access_attribute accessibility;
15261 struct attribute *attr = dwarf2_attr (die, DW_AT_accessibility, cu);
15262 if (attr != NULL)
15263 accessibility = (enum dwarf_access_attribute) DW_UNSND (attr);
15264 else
15265 accessibility = dwarf2_default_access_attribute (die, cu);
15266 switch (accessibility)
15267 {
15268 case DW_ACCESS_public:
15269 /* The assumed value if neither private nor protected. */
15270 break;
15271 case DW_ACCESS_private:
15272 fp.is_private = 1;
15273 break;
15274 case DW_ACCESS_protected:
15275 fp.is_protected = 1;
15276 break;
15277 default:
15278 complaint (&symfile_complaints,
15279 _("Unhandled DW_AT_accessibility value (%x)"), accessibility);
15280 }
15281
15282 if (die->tag == DW_TAG_typedef)
15283 fip->typedef_field_list.push_back (fp);
15284 else
15285 fip->nested_types_list.push_back (fp);
15286 }
15287
15288 /* Create the vector of fields, and attach it to the type. */
15289
15290 static void
15291 dwarf2_attach_fields_to_type (struct field_info *fip, struct type *type,
15292 struct dwarf2_cu *cu)
15293 {
15294 int nfields = fip->nfields;
15295
15296 /* Record the field count, allocate space for the array of fields,
15297 and create blank accessibility bitfields if necessary. */
15298 TYPE_NFIELDS (type) = nfields;
15299 TYPE_FIELDS (type) = (struct field *)
15300 TYPE_ZALLOC (type, sizeof (struct field) * nfields);
15301
15302 if (fip->non_public_fields && cu->language != language_ada)
15303 {
15304 ALLOCATE_CPLUS_STRUCT_TYPE (type);
15305
15306 TYPE_FIELD_PRIVATE_BITS (type) =
15307 (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields));
15308 B_CLRALL (TYPE_FIELD_PRIVATE_BITS (type), nfields);
15309
15310 TYPE_FIELD_PROTECTED_BITS (type) =
15311 (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields));
15312 B_CLRALL (TYPE_FIELD_PROTECTED_BITS (type), nfields);
15313
15314 TYPE_FIELD_IGNORE_BITS (type) =
15315 (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields));
15316 B_CLRALL (TYPE_FIELD_IGNORE_BITS (type), nfields);
15317 }
15318
15319 /* If the type has baseclasses, allocate and clear a bit vector for
15320 TYPE_FIELD_VIRTUAL_BITS. */
15321 if (!fip->baseclasses.empty () && cu->language != language_ada)
15322 {
15323 int num_bytes = B_BYTES (fip->baseclasses.size ());
15324 unsigned char *pointer;
15325
15326 ALLOCATE_CPLUS_STRUCT_TYPE (type);
15327 pointer = (unsigned char *) TYPE_ALLOC (type, num_bytes);
15328 TYPE_FIELD_VIRTUAL_BITS (type) = pointer;
15329 B_CLRALL (TYPE_FIELD_VIRTUAL_BITS (type), fip->baseclasses.size ());
15330 TYPE_N_BASECLASSES (type) = fip->baseclasses.size ();
15331 }
15332
15333 if (TYPE_FLAG_DISCRIMINATED_UNION (type))
15334 {
15335 struct discriminant_info *di = alloc_discriminant_info (type, -1, -1);
15336
15337 for (int index = 0; index < nfields; ++index)
15338 {
15339 struct nextfield &field = fip->fields[index];
15340
15341 if (field.variant.is_discriminant)
15342 di->discriminant_index = index;
15343 else if (field.variant.default_branch)
15344 di->default_index = index;
15345 else
15346 di->discriminants[index] = field.variant.discriminant_value;
15347 }
15348 }
15349
15350 /* Copy the saved-up fields into the field vector. */
15351 for (int i = 0; i < nfields; ++i)
15352 {
15353 struct nextfield &field
15354 = ((i < fip->baseclasses.size ()) ? fip->baseclasses[i]
15355 : fip->fields[i - fip->baseclasses.size ()]);
15356
15357 TYPE_FIELD (type, i) = field.field;
15358 switch (field.accessibility)
15359 {
15360 case DW_ACCESS_private:
15361 if (cu->language != language_ada)
15362 SET_TYPE_FIELD_PRIVATE (type, i);
15363 break;
15364
15365 case DW_ACCESS_protected:
15366 if (cu->language != language_ada)
15367 SET_TYPE_FIELD_PROTECTED (type, i);
15368 break;
15369
15370 case DW_ACCESS_public:
15371 break;
15372
15373 default:
15374 /* Unknown accessibility. Complain and treat it as public. */
15375 {
15376 complaint (&symfile_complaints, _("unsupported accessibility %d"),
15377 field.accessibility);
15378 }
15379 break;
15380 }
15381 if (i < fip->baseclasses.size ())
15382 {
15383 switch (field.virtuality)
15384 {
15385 case DW_VIRTUALITY_virtual:
15386 case DW_VIRTUALITY_pure_virtual:
15387 if (cu->language == language_ada)
15388 error (_("unexpected virtuality in component of Ada type"));
15389 SET_TYPE_FIELD_VIRTUAL (type, i);
15390 break;
15391 }
15392 }
15393 }
15394 }
15395
15396 /* Return true if this member function is a constructor, false
15397 otherwise. */
15398
15399 static int
15400 dwarf2_is_constructor (struct die_info *die, struct dwarf2_cu *cu)
15401 {
15402 const char *fieldname;
15403 const char *type_name;
15404 int len;
15405
15406 if (die->parent == NULL)
15407 return 0;
15408
15409 if (die->parent->tag != DW_TAG_structure_type
15410 && die->parent->tag != DW_TAG_union_type
15411 && die->parent->tag != DW_TAG_class_type)
15412 return 0;
15413
15414 fieldname = dwarf2_name (die, cu);
15415 type_name = dwarf2_name (die->parent, cu);
15416 if (fieldname == NULL || type_name == NULL)
15417 return 0;
15418
15419 len = strlen (fieldname);
15420 return (strncmp (fieldname, type_name, len) == 0
15421 && (type_name[len] == '\0' || type_name[len] == '<'));
15422 }
15423
15424 /* Add a member function to the proper fieldlist. */
15425
15426 static void
15427 dwarf2_add_member_fn (struct field_info *fip, struct die_info *die,
15428 struct type *type, struct dwarf2_cu *cu)
15429 {
15430 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
15431 struct attribute *attr;
15432 int i;
15433 struct fnfieldlist *flp = nullptr;
15434 struct fn_field *fnp;
15435 const char *fieldname;
15436 struct type *this_type;
15437 enum dwarf_access_attribute accessibility;
15438
15439 if (cu->language == language_ada)
15440 error (_("unexpected member function in Ada type"));
15441
15442 /* Get name of member function. */
15443 fieldname = dwarf2_name (die, cu);
15444 if (fieldname == NULL)
15445 return;
15446
15447 /* Look up member function name in fieldlist. */
15448 for (i = 0; i < fip->fnfieldlists.size (); i++)
15449 {
15450 if (strcmp (fip->fnfieldlists[i].name, fieldname) == 0)
15451 {
15452 flp = &fip->fnfieldlists[i];
15453 break;
15454 }
15455 }
15456
15457 /* Create a new fnfieldlist if necessary. */
15458 if (flp == nullptr)
15459 {
15460 fip->fnfieldlists.emplace_back ();
15461 flp = &fip->fnfieldlists.back ();
15462 flp->name = fieldname;
15463 i = fip->fnfieldlists.size () - 1;
15464 }
15465
15466 /* Create a new member function field and add it to the vector of
15467 fnfieldlists. */
15468 flp->fnfields.emplace_back ();
15469 fnp = &flp->fnfields.back ();
15470
15471 /* Delay processing of the physname until later. */
15472 if (cu->language == language_cplus)
15473 add_to_method_list (type, i, flp->fnfields.size () - 1, fieldname,
15474 die, cu);
15475 else
15476 {
15477 const char *physname = dwarf2_physname (fieldname, die, cu);
15478 fnp->physname = physname ? physname : "";
15479 }
15480
15481 fnp->type = alloc_type (objfile);
15482 this_type = read_type_die (die, cu);
15483 if (this_type && TYPE_CODE (this_type) == TYPE_CODE_FUNC)
15484 {
15485 int nparams = TYPE_NFIELDS (this_type);
15486
15487 /* TYPE is the domain of this method, and THIS_TYPE is the type
15488 of the method itself (TYPE_CODE_METHOD). */
15489 smash_to_method_type (fnp->type, type,
15490 TYPE_TARGET_TYPE (this_type),
15491 TYPE_FIELDS (this_type),
15492 TYPE_NFIELDS (this_type),
15493 TYPE_VARARGS (this_type));
15494
15495 /* Handle static member functions.
15496 Dwarf2 has no clean way to discern C++ static and non-static
15497 member functions. G++ helps GDB by marking the first
15498 parameter for non-static member functions (which is the this
15499 pointer) as artificial. We obtain this information from
15500 read_subroutine_type via TYPE_FIELD_ARTIFICIAL. */
15501 if (nparams == 0 || TYPE_FIELD_ARTIFICIAL (this_type, 0) == 0)
15502 fnp->voffset = VOFFSET_STATIC;
15503 }
15504 else
15505 complaint (&symfile_complaints, _("member function type missing for '%s'"),
15506 dwarf2_full_name (fieldname, die, cu));
15507
15508 /* Get fcontext from DW_AT_containing_type if present. */
15509 if (dwarf2_attr (die, DW_AT_containing_type, cu) != NULL)
15510 fnp->fcontext = die_containing_type (die, cu);
15511
15512 /* dwarf2 doesn't have stubbed physical names, so the setting of is_const and
15513 is_volatile is irrelevant, as it is needed by gdb_mangle_name only. */
15514
15515 /* Get accessibility. */
15516 attr = dwarf2_attr (die, DW_AT_accessibility, cu);
15517 if (attr)
15518 accessibility = (enum dwarf_access_attribute) DW_UNSND (attr);
15519 else
15520 accessibility = dwarf2_default_access_attribute (die, cu);
15521 switch (accessibility)
15522 {
15523 case DW_ACCESS_private:
15524 fnp->is_private = 1;
15525 break;
15526 case DW_ACCESS_protected:
15527 fnp->is_protected = 1;
15528 break;
15529 }
15530
15531 /* Check for artificial methods. */
15532 attr = dwarf2_attr (die, DW_AT_artificial, cu);
15533 if (attr && DW_UNSND (attr) != 0)
15534 fnp->is_artificial = 1;
15535
15536 fnp->is_constructor = dwarf2_is_constructor (die, cu);
15537
15538 /* Get index in virtual function table if it is a virtual member
15539 function. For older versions of GCC, this is an offset in the
15540 appropriate virtual table, as specified by DW_AT_containing_type.
15541 For everyone else, it is an expression to be evaluated relative
15542 to the object address. */
15543
15544 attr = dwarf2_attr (die, DW_AT_vtable_elem_location, cu);
15545 if (attr)
15546 {
15547 if (attr_form_is_block (attr) && DW_BLOCK (attr)->size > 0)
15548 {
15549 if (DW_BLOCK (attr)->data[0] == DW_OP_constu)
15550 {
15551 /* Old-style GCC. */
15552 fnp->voffset = decode_locdesc (DW_BLOCK (attr), cu) + 2;
15553 }
15554 else if (DW_BLOCK (attr)->data[0] == DW_OP_deref
15555 || (DW_BLOCK (attr)->size > 1
15556 && DW_BLOCK (attr)->data[0] == DW_OP_deref_size
15557 && DW_BLOCK (attr)->data[1] == cu->header.addr_size))
15558 {
15559 fnp->voffset = decode_locdesc (DW_BLOCK (attr), cu);
15560 if ((fnp->voffset % cu->header.addr_size) != 0)
15561 dwarf2_complex_location_expr_complaint ();
15562 else
15563 fnp->voffset /= cu->header.addr_size;
15564 fnp->voffset += 2;
15565 }
15566 else
15567 dwarf2_complex_location_expr_complaint ();
15568
15569 if (!fnp->fcontext)
15570 {
15571 /* If there is no `this' field and no DW_AT_containing_type,
15572 we cannot actually find a base class context for the
15573 vtable! */
15574 if (TYPE_NFIELDS (this_type) == 0
15575 || !TYPE_FIELD_ARTIFICIAL (this_type, 0))
15576 {
15577 complaint (&symfile_complaints,
15578 _("cannot determine context for virtual member "
15579 "function \"%s\" (offset %s)"),
15580 fieldname, sect_offset_str (die->sect_off));
15581 }
15582 else
15583 {
15584 fnp->fcontext
15585 = TYPE_TARGET_TYPE (TYPE_FIELD_TYPE (this_type, 0));
15586 }
15587 }
15588 }
15589 else if (attr_form_is_section_offset (attr))
15590 {
15591 dwarf2_complex_location_expr_complaint ();
15592 }
15593 else
15594 {
15595 dwarf2_invalid_attrib_class_complaint ("DW_AT_vtable_elem_location",
15596 fieldname);
15597 }
15598 }
15599 else
15600 {
15601 attr = dwarf2_attr (die, DW_AT_virtuality, cu);
15602 if (attr && DW_UNSND (attr))
15603 {
15604 /* GCC does this, as of 2008-08-25; PR debug/37237. */
15605 complaint (&symfile_complaints,
15606 _("Member function \"%s\" (offset %s) is virtual "
15607 "but the vtable offset is not specified"),
15608 fieldname, sect_offset_str (die->sect_off));
15609 ALLOCATE_CPLUS_STRUCT_TYPE (type);
15610 TYPE_CPLUS_DYNAMIC (type) = 1;
15611 }
15612 }
15613 }
15614
15615 /* Create the vector of member function fields, and attach it to the type. */
15616
15617 static void
15618 dwarf2_attach_fn_fields_to_type (struct field_info *fip, struct type *type,
15619 struct dwarf2_cu *cu)
15620 {
15621 if (cu->language == language_ada)
15622 error (_("unexpected member functions in Ada type"));
15623
15624 ALLOCATE_CPLUS_STRUCT_TYPE (type);
15625 TYPE_FN_FIELDLISTS (type) = (struct fn_fieldlist *)
15626 TYPE_ALLOC (type,
15627 sizeof (struct fn_fieldlist) * fip->fnfieldlists.size ());
15628
15629 for (int i = 0; i < fip->fnfieldlists.size (); i++)
15630 {
15631 struct fnfieldlist &nf = fip->fnfieldlists[i];
15632 struct fn_fieldlist *fn_flp = &TYPE_FN_FIELDLIST (type, i);
15633
15634 TYPE_FN_FIELDLIST_NAME (type, i) = nf.name;
15635 TYPE_FN_FIELDLIST_LENGTH (type, i) = nf.fnfields.size ();
15636 fn_flp->fn_fields = (struct fn_field *)
15637 TYPE_ALLOC (type, sizeof (struct fn_field) * nf.fnfields.size ());
15638
15639 for (int k = 0; k < nf.fnfields.size (); ++k)
15640 fn_flp->fn_fields[k] = nf.fnfields[k];
15641 }
15642
15643 TYPE_NFN_FIELDS (type) = fip->fnfieldlists.size ();
15644 }
15645
15646 /* Returns non-zero if NAME is the name of a vtable member in CU's
15647 language, zero otherwise. */
15648 static int
15649 is_vtable_name (const char *name, struct dwarf2_cu *cu)
15650 {
15651 static const char vptr[] = "_vptr";
15652
15653 /* Look for the C++ form of the vtable. */
15654 if (startswith (name, vptr) && is_cplus_marker (name[sizeof (vptr) - 1]))
15655 return 1;
15656
15657 return 0;
15658 }
15659
15660 /* GCC outputs unnamed structures that are really pointers to member
15661 functions, with the ABI-specified layout. If TYPE describes
15662 such a structure, smash it into a member function type.
15663
15664 GCC shouldn't do this; it should just output pointer to member DIEs.
15665 This is GCC PR debug/28767. */
15666
15667 static void
15668 quirk_gcc_member_function_pointer (struct type *type, struct objfile *objfile)
15669 {
15670 struct type *pfn_type, *self_type, *new_type;
15671
15672 /* Check for a structure with no name and two children. */
15673 if (TYPE_CODE (type) != TYPE_CODE_STRUCT || TYPE_NFIELDS (type) != 2)
15674 return;
15675
15676 /* Check for __pfn and __delta members. */
15677 if (TYPE_FIELD_NAME (type, 0) == NULL
15678 || strcmp (TYPE_FIELD_NAME (type, 0), "__pfn") != 0
15679 || TYPE_FIELD_NAME (type, 1) == NULL
15680 || strcmp (TYPE_FIELD_NAME (type, 1), "__delta") != 0)
15681 return;
15682
15683 /* Find the type of the method. */
15684 pfn_type = TYPE_FIELD_TYPE (type, 0);
15685 if (pfn_type == NULL
15686 || TYPE_CODE (pfn_type) != TYPE_CODE_PTR
15687 || TYPE_CODE (TYPE_TARGET_TYPE (pfn_type)) != TYPE_CODE_FUNC)
15688 return;
15689
15690 /* Look for the "this" argument. */
15691 pfn_type = TYPE_TARGET_TYPE (pfn_type);
15692 if (TYPE_NFIELDS (pfn_type) == 0
15693 /* || TYPE_FIELD_TYPE (pfn_type, 0) == NULL */
15694 || TYPE_CODE (TYPE_FIELD_TYPE (pfn_type, 0)) != TYPE_CODE_PTR)
15695 return;
15696
15697 self_type = TYPE_TARGET_TYPE (TYPE_FIELD_TYPE (pfn_type, 0));
15698 new_type = alloc_type (objfile);
15699 smash_to_method_type (new_type, self_type, TYPE_TARGET_TYPE (pfn_type),
15700 TYPE_FIELDS (pfn_type), TYPE_NFIELDS (pfn_type),
15701 TYPE_VARARGS (pfn_type));
15702 smash_to_methodptr_type (type, new_type);
15703 }
15704
15705
15706 /* Called when we find the DIE that starts a structure or union scope
15707 (definition) to create a type for the structure or union. Fill in
15708 the type's name and general properties; the members will not be
15709 processed until process_structure_scope. A symbol table entry for
15710 the type will also not be done until process_structure_scope (assuming
15711 the type has a name).
15712
15713 NOTE: we need to call these functions regardless of whether or not the
15714 DIE has a DW_AT_name attribute, since it might be an anonymous
15715 structure or union. This gets the type entered into our set of
15716 user defined types. */
15717
15718 static struct type *
15719 read_structure_type (struct die_info *die, struct dwarf2_cu *cu)
15720 {
15721 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
15722 struct type *type;
15723 struct attribute *attr;
15724 const char *name;
15725
15726 /* If the definition of this type lives in .debug_types, read that type.
15727 Don't follow DW_AT_specification though, that will take us back up
15728 the chain and we want to go down. */
15729 attr = dwarf2_attr_no_follow (die, DW_AT_signature);
15730 if (attr)
15731 {
15732 type = get_DW_AT_signature_type (die, attr, cu);
15733
15734 /* The type's CU may not be the same as CU.
15735 Ensure TYPE is recorded with CU in die_type_hash. */
15736 return set_die_type (die, type, cu);
15737 }
15738
15739 type = alloc_type (objfile);
15740 INIT_CPLUS_SPECIFIC (type);
15741
15742 name = dwarf2_name (die, cu);
15743 if (name != NULL)
15744 {
15745 if (cu->language == language_cplus
15746 || cu->language == language_d
15747 || cu->language == language_rust)
15748 {
15749 const char *full_name = dwarf2_full_name (name, die, cu);
15750
15751 /* dwarf2_full_name might have already finished building the DIE's
15752 type. If so, there is no need to continue. */
15753 if (get_die_type (die, cu) != NULL)
15754 return get_die_type (die, cu);
15755
15756 TYPE_TAG_NAME (type) = full_name;
15757 if (die->tag == DW_TAG_structure_type
15758 || die->tag == DW_TAG_class_type)
15759 TYPE_NAME (type) = TYPE_TAG_NAME (type);
15760 }
15761 else
15762 {
15763 /* The name is already allocated along with this objfile, so
15764 we don't need to duplicate it for the type. */
15765 TYPE_TAG_NAME (type) = name;
15766 if (die->tag == DW_TAG_class_type)
15767 TYPE_NAME (type) = TYPE_TAG_NAME (type);
15768 }
15769 }
15770
15771 if (die->tag == DW_TAG_structure_type)
15772 {
15773 TYPE_CODE (type) = TYPE_CODE_STRUCT;
15774 }
15775 else if (die->tag == DW_TAG_union_type)
15776 {
15777 TYPE_CODE (type) = TYPE_CODE_UNION;
15778 }
15779 else if (die->tag == DW_TAG_variant_part)
15780 {
15781 TYPE_CODE (type) = TYPE_CODE_UNION;
15782 TYPE_FLAG_DISCRIMINATED_UNION (type) = 1;
15783 }
15784 else
15785 {
15786 TYPE_CODE (type) = TYPE_CODE_STRUCT;
15787 }
15788
15789 if (cu->language == language_cplus && die->tag == DW_TAG_class_type)
15790 TYPE_DECLARED_CLASS (type) = 1;
15791
15792 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
15793 if (attr)
15794 {
15795 if (attr_form_is_constant (attr))
15796 TYPE_LENGTH (type) = DW_UNSND (attr);
15797 else
15798 {
15799 /* For the moment, dynamic type sizes are not supported
15800 by GDB's struct type. The actual size is determined
15801 on-demand when resolving the type of a given object,
15802 so set the type's length to zero for now. Otherwise,
15803 we record an expression as the length, and that expression
15804 could lead to a very large value, which could eventually
15805 lead to us trying to allocate that much memory when creating
15806 a value of that type. */
15807 TYPE_LENGTH (type) = 0;
15808 }
15809 }
15810 else
15811 {
15812 TYPE_LENGTH (type) = 0;
15813 }
15814
15815 if (producer_is_icc_lt_14 (cu) && (TYPE_LENGTH (type) == 0))
15816 {
15817 /* ICC<14 does not output the required DW_AT_declaration on
15818 incomplete types, but gives them a size of zero. */
15819 TYPE_STUB (type) = 1;
15820 }
15821 else
15822 TYPE_STUB_SUPPORTED (type) = 1;
15823
15824 if (die_is_declaration (die, cu))
15825 TYPE_STUB (type) = 1;
15826 else if (attr == NULL && die->child == NULL
15827 && producer_is_realview (cu->producer))
15828 /* RealView does not output the required DW_AT_declaration
15829 on incomplete types. */
15830 TYPE_STUB (type) = 1;
15831
15832 /* We need to add the type field to the die immediately so we don't
15833 infinitely recurse when dealing with pointers to the structure
15834 type within the structure itself. */
15835 set_die_type (die, type, cu);
15836
15837 /* set_die_type should be already done. */
15838 set_descriptive_type (type, die, cu);
15839
15840 return type;
15841 }
15842
15843 /* A helper for process_structure_scope that handles a single member
15844 DIE. */
15845
15846 static void
15847 handle_struct_member_die (struct die_info *child_die, struct type *type,
15848 struct field_info *fi,
15849 std::vector<struct symbol *> *template_args,
15850 struct dwarf2_cu *cu)
15851 {
15852 if (child_die->tag == DW_TAG_member
15853 || child_die->tag == DW_TAG_variable
15854 || child_die->tag == DW_TAG_variant_part)
15855 {
15856 /* NOTE: carlton/2002-11-05: A C++ static data member
15857 should be a DW_TAG_member that is a declaration, but
15858 all versions of G++ as of this writing (so through at
15859 least 3.2.1) incorrectly generate DW_TAG_variable
15860 tags for them instead. */
15861 dwarf2_add_field (fi, child_die, cu);
15862 }
15863 else if (child_die->tag == DW_TAG_subprogram)
15864 {
15865 /* Rust doesn't have member functions in the C++ sense.
15866 However, it does emit ordinary functions as children
15867 of a struct DIE. */
15868 if (cu->language == language_rust)
15869 read_func_scope (child_die, cu);
15870 else
15871 {
15872 /* C++ member function. */
15873 dwarf2_add_member_fn (fi, child_die, type, cu);
15874 }
15875 }
15876 else if (child_die->tag == DW_TAG_inheritance)
15877 {
15878 /* C++ base class field. */
15879 dwarf2_add_field (fi, child_die, cu);
15880 }
15881 else if (type_can_define_types (child_die))
15882 dwarf2_add_type_defn (fi, child_die, cu);
15883 else if (child_die->tag == DW_TAG_template_type_param
15884 || child_die->tag == DW_TAG_template_value_param)
15885 {
15886 struct symbol *arg = new_symbol (child_die, NULL, cu);
15887
15888 if (arg != NULL)
15889 template_args->push_back (arg);
15890 }
15891 else if (child_die->tag == DW_TAG_variant)
15892 {
15893 /* In a variant we want to get the discriminant and also add a
15894 field for our sole member child. */
15895 struct attribute *discr = dwarf2_attr (child_die, DW_AT_discr_value, cu);
15896
15897 for (struct die_info *variant_child = child_die->child;
15898 variant_child != NULL;
15899 variant_child = sibling_die (variant_child))
15900 {
15901 if (variant_child->tag == DW_TAG_member)
15902 {
15903 handle_struct_member_die (variant_child, type, fi,
15904 template_args, cu);
15905 /* Only handle the one. */
15906 break;
15907 }
15908 }
15909
15910 /* We don't handle this but we might as well report it if we see
15911 it. */
15912 if (dwarf2_attr (child_die, DW_AT_discr_list, cu) != nullptr)
15913 complaint (&symfile_complaints,
15914 _("DW_AT_discr_list is not supported yet"
15915 " - DIE at %s [in module %s]"),
15916 sect_offset_str (child_die->sect_off),
15917 objfile_name (cu->per_cu->dwarf2_per_objfile->objfile));
15918
15919 /* The first field was just added, so we can stash the
15920 discriminant there. */
15921 gdb_assert (!fi->fields.empty ());
15922 if (discr == NULL)
15923 fi->fields.back ().variant.default_branch = true;
15924 else
15925 fi->fields.back ().variant.discriminant_value = DW_UNSND (discr);
15926 }
15927 }
15928
15929 /* Finish creating a structure or union type, including filling in
15930 its members and creating a symbol for it. */
15931
15932 static void
15933 process_structure_scope (struct die_info *die, struct dwarf2_cu *cu)
15934 {
15935 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
15936 struct die_info *child_die;
15937 struct type *type;
15938
15939 type = get_die_type (die, cu);
15940 if (type == NULL)
15941 type = read_structure_type (die, cu);
15942
15943 /* When reading a DW_TAG_variant_part, we need to notice when we
15944 read the discriminant member, so we can record it later in the
15945 discriminant_info. */
15946 bool is_variant_part = TYPE_FLAG_DISCRIMINATED_UNION (type);
15947 sect_offset discr_offset;
15948
15949 if (is_variant_part)
15950 {
15951 struct attribute *discr = dwarf2_attr (die, DW_AT_discr, cu);
15952 if (discr == NULL)
15953 {
15954 /* Maybe it's a univariant form, an extension we support.
15955 In this case arrange not to check the offset. */
15956 is_variant_part = false;
15957 }
15958 else if (attr_form_is_ref (discr))
15959 {
15960 struct dwarf2_cu *target_cu = cu;
15961 struct die_info *target_die = follow_die_ref (die, discr, &target_cu);
15962
15963 discr_offset = target_die->sect_off;
15964 }
15965 else
15966 {
15967 complaint (&symfile_complaints,
15968 _("DW_AT_discr does not have DIE reference form"
15969 " - DIE at %s [in module %s]"),
15970 sect_offset_str (die->sect_off),
15971 objfile_name (cu->per_cu->dwarf2_per_objfile->objfile));
15972 is_variant_part = false;
15973 }
15974 }
15975
15976 if (die->child != NULL && ! die_is_declaration (die, cu))
15977 {
15978 struct field_info fi;
15979 std::vector<struct symbol *> template_args;
15980
15981 child_die = die->child;
15982
15983 while (child_die && child_die->tag)
15984 {
15985 handle_struct_member_die (child_die, type, &fi, &template_args, cu);
15986
15987 if (is_variant_part && discr_offset == child_die->sect_off)
15988 fi.fields.back ().variant.is_discriminant = true;
15989
15990 child_die = sibling_die (child_die);
15991 }
15992
15993 /* Attach template arguments to type. */
15994 if (!template_args.empty ())
15995 {
15996 ALLOCATE_CPLUS_STRUCT_TYPE (type);
15997 TYPE_N_TEMPLATE_ARGUMENTS (type) = template_args.size ();
15998 TYPE_TEMPLATE_ARGUMENTS (type)
15999 = XOBNEWVEC (&objfile->objfile_obstack,
16000 struct symbol *,
16001 TYPE_N_TEMPLATE_ARGUMENTS (type));
16002 memcpy (TYPE_TEMPLATE_ARGUMENTS (type),
16003 template_args.data (),
16004 (TYPE_N_TEMPLATE_ARGUMENTS (type)
16005 * sizeof (struct symbol *)));
16006 }
16007
16008 /* Attach fields and member functions to the type. */
16009 if (fi.nfields)
16010 dwarf2_attach_fields_to_type (&fi, type, cu);
16011 if (!fi.fnfieldlists.empty ())
16012 {
16013 dwarf2_attach_fn_fields_to_type (&fi, type, cu);
16014
16015 /* Get the type which refers to the base class (possibly this
16016 class itself) which contains the vtable pointer for the current
16017 class from the DW_AT_containing_type attribute. This use of
16018 DW_AT_containing_type is a GNU extension. */
16019
16020 if (dwarf2_attr (die, DW_AT_containing_type, cu) != NULL)
16021 {
16022 struct type *t = die_containing_type (die, cu);
16023
16024 set_type_vptr_basetype (type, t);
16025 if (type == t)
16026 {
16027 int i;
16028
16029 /* Our own class provides vtbl ptr. */
16030 for (i = TYPE_NFIELDS (t) - 1;
16031 i >= TYPE_N_BASECLASSES (t);
16032 --i)
16033 {
16034 const char *fieldname = TYPE_FIELD_NAME (t, i);
16035
16036 if (is_vtable_name (fieldname, cu))
16037 {
16038 set_type_vptr_fieldno (type, i);
16039 break;
16040 }
16041 }
16042
16043 /* Complain if virtual function table field not found. */
16044 if (i < TYPE_N_BASECLASSES (t))
16045 complaint (&symfile_complaints,
16046 _("virtual function table pointer "
16047 "not found when defining class '%s'"),
16048 TYPE_TAG_NAME (type) ? TYPE_TAG_NAME (type) :
16049 "");
16050 }
16051 else
16052 {
16053 set_type_vptr_fieldno (type, TYPE_VPTR_FIELDNO (t));
16054 }
16055 }
16056 else if (cu->producer
16057 && startswith (cu->producer, "IBM(R) XL C/C++ Advanced Edition"))
16058 {
16059 /* The IBM XLC compiler does not provide direct indication
16060 of the containing type, but the vtable pointer is
16061 always named __vfp. */
16062
16063 int i;
16064
16065 for (i = TYPE_NFIELDS (type) - 1;
16066 i >= TYPE_N_BASECLASSES (type);
16067 --i)
16068 {
16069 if (strcmp (TYPE_FIELD_NAME (type, i), "__vfp") == 0)
16070 {
16071 set_type_vptr_fieldno (type, i);
16072 set_type_vptr_basetype (type, type);
16073 break;
16074 }
16075 }
16076 }
16077 }
16078
16079 /* Copy fi.typedef_field_list linked list elements content into the
16080 allocated array TYPE_TYPEDEF_FIELD_ARRAY (type). */
16081 if (!fi.typedef_field_list.empty ())
16082 {
16083 int count = fi.typedef_field_list.size ();
16084
16085 ALLOCATE_CPLUS_STRUCT_TYPE (type);
16086 TYPE_TYPEDEF_FIELD_ARRAY (type)
16087 = ((struct decl_field *)
16088 TYPE_ALLOC (type,
16089 sizeof (TYPE_TYPEDEF_FIELD (type, 0)) * count));
16090 TYPE_TYPEDEF_FIELD_COUNT (type) = count;
16091
16092 for (int i = 0; i < fi.typedef_field_list.size (); ++i)
16093 TYPE_TYPEDEF_FIELD (type, i) = fi.typedef_field_list[i];
16094 }
16095
16096 /* Copy fi.nested_types_list linked list elements content into the
16097 allocated array TYPE_NESTED_TYPES_ARRAY (type). */
16098 if (!fi.nested_types_list.empty () && cu->language != language_ada)
16099 {
16100 int count = fi.nested_types_list.size ();
16101
16102 ALLOCATE_CPLUS_STRUCT_TYPE (type);
16103 TYPE_NESTED_TYPES_ARRAY (type)
16104 = ((struct decl_field *)
16105 TYPE_ALLOC (type, sizeof (struct decl_field) * count));
16106 TYPE_NESTED_TYPES_COUNT (type) = count;
16107
16108 for (int i = 0; i < fi.nested_types_list.size (); ++i)
16109 TYPE_NESTED_TYPES_FIELD (type, i) = fi.nested_types_list[i];
16110 }
16111 }
16112
16113 quirk_gcc_member_function_pointer (type, objfile);
16114 if (cu->language == language_rust && die->tag == DW_TAG_union_type)
16115 cu->rust_unions.push_back (type);
16116
16117 /* NOTE: carlton/2004-03-16: GCC 3.4 (or at least one of its
16118 snapshots) has been known to create a die giving a declaration
16119 for a class that has, as a child, a die giving a definition for a
16120 nested class. So we have to process our children even if the
16121 current die is a declaration. Normally, of course, a declaration
16122 won't have any children at all. */
16123
16124 child_die = die->child;
16125
16126 while (child_die != NULL && child_die->tag)
16127 {
16128 if (child_die->tag == DW_TAG_member
16129 || child_die->tag == DW_TAG_variable
16130 || child_die->tag == DW_TAG_inheritance
16131 || child_die->tag == DW_TAG_template_value_param
16132 || child_die->tag == DW_TAG_template_type_param)
16133 {
16134 /* Do nothing. */
16135 }
16136 else
16137 process_die (child_die, cu);
16138
16139 child_die = sibling_die (child_die);
16140 }
16141
16142 /* Do not consider external references. According to the DWARF standard,
16143 these DIEs are identified by the fact that they have no byte_size
16144 attribute, and a declaration attribute. */
16145 if (dwarf2_attr (die, DW_AT_byte_size, cu) != NULL
16146 || !die_is_declaration (die, cu))
16147 new_symbol (die, type, cu);
16148 }
16149
16150 /* Assuming DIE is an enumeration type, and TYPE is its associated type,
16151 update TYPE using some information only available in DIE's children. */
16152
16153 static void
16154 update_enumeration_type_from_children (struct die_info *die,
16155 struct type *type,
16156 struct dwarf2_cu *cu)
16157 {
16158 struct die_info *child_die;
16159 int unsigned_enum = 1;
16160 int flag_enum = 1;
16161 ULONGEST mask = 0;
16162
16163 auto_obstack obstack;
16164
16165 for (child_die = die->child;
16166 child_die != NULL && child_die->tag;
16167 child_die = sibling_die (child_die))
16168 {
16169 struct attribute *attr;
16170 LONGEST value;
16171 const gdb_byte *bytes;
16172 struct dwarf2_locexpr_baton *baton;
16173 const char *name;
16174
16175 if (child_die->tag != DW_TAG_enumerator)
16176 continue;
16177
16178 attr = dwarf2_attr (child_die, DW_AT_const_value, cu);
16179 if (attr == NULL)
16180 continue;
16181
16182 name = dwarf2_name (child_die, cu);
16183 if (name == NULL)
16184 name = "<anonymous enumerator>";
16185
16186 dwarf2_const_value_attr (attr, type, name, &obstack, cu,
16187 &value, &bytes, &baton);
16188 if (value < 0)
16189 {
16190 unsigned_enum = 0;
16191 flag_enum = 0;
16192 }
16193 else if ((mask & value) != 0)
16194 flag_enum = 0;
16195 else
16196 mask |= value;
16197
16198 /* If we already know that the enum type is neither unsigned, nor
16199 a flag type, no need to look at the rest of the enumerates. */
16200 if (!unsigned_enum && !flag_enum)
16201 break;
16202 }
16203
16204 if (unsigned_enum)
16205 TYPE_UNSIGNED (type) = 1;
16206 if (flag_enum)
16207 TYPE_FLAG_ENUM (type) = 1;
16208 }
16209
16210 /* Given a DW_AT_enumeration_type die, set its type. We do not
16211 complete the type's fields yet, or create any symbols. */
16212
16213 static struct type *
16214 read_enumeration_type (struct die_info *die, struct dwarf2_cu *cu)
16215 {
16216 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
16217 struct type *type;
16218 struct attribute *attr;
16219 const char *name;
16220
16221 /* If the definition of this type lives in .debug_types, read that type.
16222 Don't follow DW_AT_specification though, that will take us back up
16223 the chain and we want to go down. */
16224 attr = dwarf2_attr_no_follow (die, DW_AT_signature);
16225 if (attr)
16226 {
16227 type = get_DW_AT_signature_type (die, attr, cu);
16228
16229 /* The type's CU may not be the same as CU.
16230 Ensure TYPE is recorded with CU in die_type_hash. */
16231 return set_die_type (die, type, cu);
16232 }
16233
16234 type = alloc_type (objfile);
16235
16236 TYPE_CODE (type) = TYPE_CODE_ENUM;
16237 name = dwarf2_full_name (NULL, die, cu);
16238 if (name != NULL)
16239 TYPE_TAG_NAME (type) = name;
16240
16241 attr = dwarf2_attr (die, DW_AT_type, cu);
16242 if (attr != NULL)
16243 {
16244 struct type *underlying_type = die_type (die, cu);
16245
16246 TYPE_TARGET_TYPE (type) = underlying_type;
16247 }
16248
16249 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
16250 if (attr)
16251 {
16252 TYPE_LENGTH (type) = DW_UNSND (attr);
16253 }
16254 else
16255 {
16256 TYPE_LENGTH (type) = 0;
16257 }
16258
16259 /* The enumeration DIE can be incomplete. In Ada, any type can be
16260 declared as private in the package spec, and then defined only
16261 inside the package body. Such types are known as Taft Amendment
16262 Types. When another package uses such a type, an incomplete DIE
16263 may be generated by the compiler. */
16264 if (die_is_declaration (die, cu))
16265 TYPE_STUB (type) = 1;
16266
16267 /* Finish the creation of this type by using the enum's children.
16268 We must call this even when the underlying type has been provided
16269 so that we can determine if we're looking at a "flag" enum. */
16270 update_enumeration_type_from_children (die, type, cu);
16271
16272 /* If this type has an underlying type that is not a stub, then we
16273 may use its attributes. We always use the "unsigned" attribute
16274 in this situation, because ordinarily we guess whether the type
16275 is unsigned -- but the guess can be wrong and the underlying type
16276 can tell us the reality. However, we defer to a local size
16277 attribute if one exists, because this lets the compiler override
16278 the underlying type if needed. */
16279 if (TYPE_TARGET_TYPE (type) != NULL && !TYPE_STUB (TYPE_TARGET_TYPE (type)))
16280 {
16281 TYPE_UNSIGNED (type) = TYPE_UNSIGNED (TYPE_TARGET_TYPE (type));
16282 if (TYPE_LENGTH (type) == 0)
16283 TYPE_LENGTH (type) = TYPE_LENGTH (TYPE_TARGET_TYPE (type));
16284 }
16285
16286 TYPE_DECLARED_CLASS (type) = dwarf2_flag_true_p (die, DW_AT_enum_class, cu);
16287
16288 return set_die_type (die, type, cu);
16289 }
16290
16291 /* Given a pointer to a die which begins an enumeration, process all
16292 the dies that define the members of the enumeration, and create the
16293 symbol for the enumeration type.
16294
16295 NOTE: We reverse the order of the element list. */
16296
16297 static void
16298 process_enumeration_scope (struct die_info *die, struct dwarf2_cu *cu)
16299 {
16300 struct type *this_type;
16301
16302 this_type = get_die_type (die, cu);
16303 if (this_type == NULL)
16304 this_type = read_enumeration_type (die, cu);
16305
16306 if (die->child != NULL)
16307 {
16308 struct die_info *child_die;
16309 struct symbol *sym;
16310 struct field *fields = NULL;
16311 int num_fields = 0;
16312 const char *name;
16313
16314 child_die = die->child;
16315 while (child_die && child_die->tag)
16316 {
16317 if (child_die->tag != DW_TAG_enumerator)
16318 {
16319 process_die (child_die, cu);
16320 }
16321 else
16322 {
16323 name = dwarf2_name (child_die, cu);
16324 if (name)
16325 {
16326 sym = new_symbol (child_die, this_type, cu);
16327
16328 if ((num_fields % DW_FIELD_ALLOC_CHUNK) == 0)
16329 {
16330 fields = (struct field *)
16331 xrealloc (fields,
16332 (num_fields + DW_FIELD_ALLOC_CHUNK)
16333 * sizeof (struct field));
16334 }
16335
16336 FIELD_NAME (fields[num_fields]) = SYMBOL_LINKAGE_NAME (sym);
16337 FIELD_TYPE (fields[num_fields]) = NULL;
16338 SET_FIELD_ENUMVAL (fields[num_fields], SYMBOL_VALUE (sym));
16339 FIELD_BITSIZE (fields[num_fields]) = 0;
16340
16341 num_fields++;
16342 }
16343 }
16344
16345 child_die = sibling_die (child_die);
16346 }
16347
16348 if (num_fields)
16349 {
16350 TYPE_NFIELDS (this_type) = num_fields;
16351 TYPE_FIELDS (this_type) = (struct field *)
16352 TYPE_ALLOC (this_type, sizeof (struct field) * num_fields);
16353 memcpy (TYPE_FIELDS (this_type), fields,
16354 sizeof (struct field) * num_fields);
16355 xfree (fields);
16356 }
16357 }
16358
16359 /* If we are reading an enum from a .debug_types unit, and the enum
16360 is a declaration, and the enum is not the signatured type in the
16361 unit, then we do not want to add a symbol for it. Adding a
16362 symbol would in some cases obscure the true definition of the
16363 enum, giving users an incomplete type when the definition is
16364 actually available. Note that we do not want to do this for all
16365 enums which are just declarations, because C++0x allows forward
16366 enum declarations. */
16367 if (cu->per_cu->is_debug_types
16368 && die_is_declaration (die, cu))
16369 {
16370 struct signatured_type *sig_type;
16371
16372 sig_type = (struct signatured_type *) cu->per_cu;
16373 gdb_assert (to_underlying (sig_type->type_offset_in_section) != 0);
16374 if (sig_type->type_offset_in_section != die->sect_off)
16375 return;
16376 }
16377
16378 new_symbol (die, this_type, cu);
16379 }
16380
16381 /* Extract all information from a DW_TAG_array_type DIE and put it in
16382 the DIE's type field. For now, this only handles one dimensional
16383 arrays. */
16384
16385 static struct type *
16386 read_array_type (struct die_info *die, struct dwarf2_cu *cu)
16387 {
16388 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
16389 struct die_info *child_die;
16390 struct type *type;
16391 struct type *element_type, *range_type, *index_type;
16392 struct attribute *attr;
16393 const char *name;
16394 struct dynamic_prop *byte_stride_prop = NULL;
16395 unsigned int bit_stride = 0;
16396
16397 element_type = die_type (die, cu);
16398
16399 /* The die_type call above may have already set the type for this DIE. */
16400 type = get_die_type (die, cu);
16401 if (type)
16402 return type;
16403
16404 attr = dwarf2_attr (die, DW_AT_byte_stride, cu);
16405 if (attr != NULL)
16406 {
16407 int stride_ok;
16408
16409 byte_stride_prop
16410 = (struct dynamic_prop *) alloca (sizeof (struct dynamic_prop));
16411 stride_ok = attr_to_dynamic_prop (attr, die, cu, byte_stride_prop);
16412 if (!stride_ok)
16413 {
16414 complaint (&symfile_complaints,
16415 _("unable to read array DW_AT_byte_stride "
16416 " - DIE at %s [in module %s]"),
16417 sect_offset_str (die->sect_off),
16418 objfile_name (cu->per_cu->dwarf2_per_objfile->objfile));
16419 /* Ignore this attribute. We will likely not be able to print
16420 arrays of this type correctly, but there is little we can do
16421 to help if we cannot read the attribute's value. */
16422 byte_stride_prop = NULL;
16423 }
16424 }
16425
16426 attr = dwarf2_attr (die, DW_AT_bit_stride, cu);
16427 if (attr != NULL)
16428 bit_stride = DW_UNSND (attr);
16429
16430 /* Irix 6.2 native cc creates array types without children for
16431 arrays with unspecified length. */
16432 if (die->child == NULL)
16433 {
16434 index_type = objfile_type (objfile)->builtin_int;
16435 range_type = create_static_range_type (NULL, index_type, 0, -1);
16436 type = create_array_type_with_stride (NULL, element_type, range_type,
16437 byte_stride_prop, bit_stride);
16438 return set_die_type (die, type, cu);
16439 }
16440
16441 std::vector<struct type *> range_types;
16442 child_die = die->child;
16443 while (child_die && child_die->tag)
16444 {
16445 if (child_die->tag == DW_TAG_subrange_type)
16446 {
16447 struct type *child_type = read_type_die (child_die, cu);
16448
16449 if (child_type != NULL)
16450 {
16451 /* The range type was succesfully read. Save it for the
16452 array type creation. */
16453 range_types.push_back (child_type);
16454 }
16455 }
16456 child_die = sibling_die (child_die);
16457 }
16458
16459 /* Dwarf2 dimensions are output from left to right, create the
16460 necessary array types in backwards order. */
16461
16462 type = element_type;
16463
16464 if (read_array_order (die, cu) == DW_ORD_col_major)
16465 {
16466 int i = 0;
16467
16468 while (i < range_types.size ())
16469 type = create_array_type_with_stride (NULL, type, range_types[i++],
16470 byte_stride_prop, bit_stride);
16471 }
16472 else
16473 {
16474 size_t ndim = range_types.size ();
16475 while (ndim-- > 0)
16476 type = create_array_type_with_stride (NULL, type, range_types[ndim],
16477 byte_stride_prop, bit_stride);
16478 }
16479
16480 /* Understand Dwarf2 support for vector types (like they occur on
16481 the PowerPC w/ AltiVec). Gcc just adds another attribute to the
16482 array type. This is not part of the Dwarf2/3 standard yet, but a
16483 custom vendor extension. The main difference between a regular
16484 array and the vector variant is that vectors are passed by value
16485 to functions. */
16486 attr = dwarf2_attr (die, DW_AT_GNU_vector, cu);
16487 if (attr)
16488 make_vector_type (type);
16489
16490 /* The DIE may have DW_AT_byte_size set. For example an OpenCL
16491 implementation may choose to implement triple vectors using this
16492 attribute. */
16493 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
16494 if (attr)
16495 {
16496 if (DW_UNSND (attr) >= TYPE_LENGTH (type))
16497 TYPE_LENGTH (type) = DW_UNSND (attr);
16498 else
16499 complaint (&symfile_complaints,
16500 _("DW_AT_byte_size for array type smaller "
16501 "than the total size of elements"));
16502 }
16503
16504 name = dwarf2_name (die, cu);
16505 if (name)
16506 TYPE_NAME (type) = name;
16507
16508 /* Install the type in the die. */
16509 set_die_type (die, type, cu);
16510
16511 /* set_die_type should be already done. */
16512 set_descriptive_type (type, die, cu);
16513
16514 return type;
16515 }
16516
16517 static enum dwarf_array_dim_ordering
16518 read_array_order (struct die_info *die, struct dwarf2_cu *cu)
16519 {
16520 struct attribute *attr;
16521
16522 attr = dwarf2_attr (die, DW_AT_ordering, cu);
16523
16524 if (attr)
16525 return (enum dwarf_array_dim_ordering) DW_SND (attr);
16526
16527 /* GNU F77 is a special case, as at 08/2004 array type info is the
16528 opposite order to the dwarf2 specification, but data is still
16529 laid out as per normal fortran.
16530
16531 FIXME: dsl/2004-8-20: If G77 is ever fixed, this will also need
16532 version checking. */
16533
16534 if (cu->language == language_fortran
16535 && cu->producer && strstr (cu->producer, "GNU F77"))
16536 {
16537 return DW_ORD_row_major;
16538 }
16539
16540 switch (cu->language_defn->la_array_ordering)
16541 {
16542 case array_column_major:
16543 return DW_ORD_col_major;
16544 case array_row_major:
16545 default:
16546 return DW_ORD_row_major;
16547 };
16548 }
16549
16550 /* Extract all information from a DW_TAG_set_type DIE and put it in
16551 the DIE's type field. */
16552
16553 static struct type *
16554 read_set_type (struct die_info *die, struct dwarf2_cu *cu)
16555 {
16556 struct type *domain_type, *set_type;
16557 struct attribute *attr;
16558
16559 domain_type = die_type (die, cu);
16560
16561 /* The die_type call above may have already set the type for this DIE. */
16562 set_type = get_die_type (die, cu);
16563 if (set_type)
16564 return set_type;
16565
16566 set_type = create_set_type (NULL, domain_type);
16567
16568 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
16569 if (attr)
16570 TYPE_LENGTH (set_type) = DW_UNSND (attr);
16571
16572 return set_die_type (die, set_type, cu);
16573 }
16574
16575 /* A helper for read_common_block that creates a locexpr baton.
16576 SYM is the symbol which we are marking as computed.
16577 COMMON_DIE is the DIE for the common block.
16578 COMMON_LOC is the location expression attribute for the common
16579 block itself.
16580 MEMBER_LOC is the location expression attribute for the particular
16581 member of the common block that we are processing.
16582 CU is the CU from which the above come. */
16583
16584 static void
16585 mark_common_block_symbol_computed (struct symbol *sym,
16586 struct die_info *common_die,
16587 struct attribute *common_loc,
16588 struct attribute *member_loc,
16589 struct dwarf2_cu *cu)
16590 {
16591 struct dwarf2_per_objfile *dwarf2_per_objfile
16592 = cu->per_cu->dwarf2_per_objfile;
16593 struct objfile *objfile = dwarf2_per_objfile->objfile;
16594 struct dwarf2_locexpr_baton *baton;
16595 gdb_byte *ptr;
16596 unsigned int cu_off;
16597 enum bfd_endian byte_order = gdbarch_byte_order (get_objfile_arch (objfile));
16598 LONGEST offset = 0;
16599
16600 gdb_assert (common_loc && member_loc);
16601 gdb_assert (attr_form_is_block (common_loc));
16602 gdb_assert (attr_form_is_block (member_loc)
16603 || attr_form_is_constant (member_loc));
16604
16605 baton = XOBNEW (&objfile->objfile_obstack, struct dwarf2_locexpr_baton);
16606 baton->per_cu = cu->per_cu;
16607 gdb_assert (baton->per_cu);
16608
16609 baton->size = 5 /* DW_OP_call4 */ + 1 /* DW_OP_plus */;
16610
16611 if (attr_form_is_constant (member_loc))
16612 {
16613 offset = dwarf2_get_attr_constant_value (member_loc, 0);
16614 baton->size += 1 /* DW_OP_addr */ + cu->header.addr_size;
16615 }
16616 else
16617 baton->size += DW_BLOCK (member_loc)->size;
16618
16619 ptr = (gdb_byte *) obstack_alloc (&objfile->objfile_obstack, baton->size);
16620 baton->data = ptr;
16621
16622 *ptr++ = DW_OP_call4;
16623 cu_off = common_die->sect_off - cu->per_cu->sect_off;
16624 store_unsigned_integer (ptr, 4, byte_order, cu_off);
16625 ptr += 4;
16626
16627 if (attr_form_is_constant (member_loc))
16628 {
16629 *ptr++ = DW_OP_addr;
16630 store_unsigned_integer (ptr, cu->header.addr_size, byte_order, offset);
16631 ptr += cu->header.addr_size;
16632 }
16633 else
16634 {
16635 /* We have to copy the data here, because DW_OP_call4 will only
16636 use a DW_AT_location attribute. */
16637 memcpy (ptr, DW_BLOCK (member_loc)->data, DW_BLOCK (member_loc)->size);
16638 ptr += DW_BLOCK (member_loc)->size;
16639 }
16640
16641 *ptr++ = DW_OP_plus;
16642 gdb_assert (ptr - baton->data == baton->size);
16643
16644 SYMBOL_LOCATION_BATON (sym) = baton;
16645 SYMBOL_ACLASS_INDEX (sym) = dwarf2_locexpr_index;
16646 }
16647
16648 /* Create appropriate locally-scoped variables for all the
16649 DW_TAG_common_block entries. Also create a struct common_block
16650 listing all such variables for `info common'. COMMON_BLOCK_DOMAIN
16651 is used to sepate the common blocks name namespace from regular
16652 variable names. */
16653
16654 static void
16655 read_common_block (struct die_info *die, struct dwarf2_cu *cu)
16656 {
16657 struct attribute *attr;
16658
16659 attr = dwarf2_attr (die, DW_AT_location, cu);
16660 if (attr)
16661 {
16662 /* Support the .debug_loc offsets. */
16663 if (attr_form_is_block (attr))
16664 {
16665 /* Ok. */
16666 }
16667 else if (attr_form_is_section_offset (attr))
16668 {
16669 dwarf2_complex_location_expr_complaint ();
16670 attr = NULL;
16671 }
16672 else
16673 {
16674 dwarf2_invalid_attrib_class_complaint ("DW_AT_location",
16675 "common block member");
16676 attr = NULL;
16677 }
16678 }
16679
16680 if (die->child != NULL)
16681 {
16682 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
16683 struct die_info *child_die;
16684 size_t n_entries = 0, size;
16685 struct common_block *common_block;
16686 struct symbol *sym;
16687
16688 for (child_die = die->child;
16689 child_die && child_die->tag;
16690 child_die = sibling_die (child_die))
16691 ++n_entries;
16692
16693 size = (sizeof (struct common_block)
16694 + (n_entries - 1) * sizeof (struct symbol *));
16695 common_block
16696 = (struct common_block *) obstack_alloc (&objfile->objfile_obstack,
16697 size);
16698 memset (common_block->contents, 0, n_entries * sizeof (struct symbol *));
16699 common_block->n_entries = 0;
16700
16701 for (child_die = die->child;
16702 child_die && child_die->tag;
16703 child_die = sibling_die (child_die))
16704 {
16705 /* Create the symbol in the DW_TAG_common_block block in the current
16706 symbol scope. */
16707 sym = new_symbol (child_die, NULL, cu);
16708 if (sym != NULL)
16709 {
16710 struct attribute *member_loc;
16711
16712 common_block->contents[common_block->n_entries++] = sym;
16713
16714 member_loc = dwarf2_attr (child_die, DW_AT_data_member_location,
16715 cu);
16716 if (member_loc)
16717 {
16718 /* GDB has handled this for a long time, but it is
16719 not specified by DWARF. It seems to have been
16720 emitted by gfortran at least as recently as:
16721 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23057. */
16722 complaint (&symfile_complaints,
16723 _("Variable in common block has "
16724 "DW_AT_data_member_location "
16725 "- DIE at %s [in module %s]"),
16726 sect_offset_str (child_die->sect_off),
16727 objfile_name (objfile));
16728
16729 if (attr_form_is_section_offset (member_loc))
16730 dwarf2_complex_location_expr_complaint ();
16731 else if (attr_form_is_constant (member_loc)
16732 || attr_form_is_block (member_loc))
16733 {
16734 if (attr)
16735 mark_common_block_symbol_computed (sym, die, attr,
16736 member_loc, cu);
16737 }
16738 else
16739 dwarf2_complex_location_expr_complaint ();
16740 }
16741 }
16742 }
16743
16744 sym = new_symbol (die, objfile_type (objfile)->builtin_void, cu);
16745 SYMBOL_VALUE_COMMON_BLOCK (sym) = common_block;
16746 }
16747 }
16748
16749 /* Create a type for a C++ namespace. */
16750
16751 static struct type *
16752 read_namespace_type (struct die_info *die, struct dwarf2_cu *cu)
16753 {
16754 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
16755 const char *previous_prefix, *name;
16756 int is_anonymous;
16757 struct type *type;
16758
16759 /* For extensions, reuse the type of the original namespace. */
16760 if (dwarf2_attr (die, DW_AT_extension, cu) != NULL)
16761 {
16762 struct die_info *ext_die;
16763 struct dwarf2_cu *ext_cu = cu;
16764
16765 ext_die = dwarf2_extension (die, &ext_cu);
16766 type = read_type_die (ext_die, ext_cu);
16767
16768 /* EXT_CU may not be the same as CU.
16769 Ensure TYPE is recorded with CU in die_type_hash. */
16770 return set_die_type (die, type, cu);
16771 }
16772
16773 name = namespace_name (die, &is_anonymous, cu);
16774
16775 /* Now build the name of the current namespace. */
16776
16777 previous_prefix = determine_prefix (die, cu);
16778 if (previous_prefix[0] != '\0')
16779 name = typename_concat (&objfile->objfile_obstack,
16780 previous_prefix, name, 0, cu);
16781
16782 /* Create the type. */
16783 type = init_type (objfile, TYPE_CODE_NAMESPACE, 0, name);
16784 TYPE_TAG_NAME (type) = TYPE_NAME (type);
16785
16786 return set_die_type (die, type, cu);
16787 }
16788
16789 /* Read a namespace scope. */
16790
16791 static void
16792 read_namespace (struct die_info *die, struct dwarf2_cu *cu)
16793 {
16794 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
16795 int is_anonymous;
16796
16797 /* Add a symbol associated to this if we haven't seen the namespace
16798 before. Also, add a using directive if it's an anonymous
16799 namespace. */
16800
16801 if (dwarf2_attr (die, DW_AT_extension, cu) == NULL)
16802 {
16803 struct type *type;
16804
16805 type = read_type_die (die, cu);
16806 new_symbol (die, type, cu);
16807
16808 namespace_name (die, &is_anonymous, cu);
16809 if (is_anonymous)
16810 {
16811 const char *previous_prefix = determine_prefix (die, cu);
16812
16813 std::vector<const char *> excludes;
16814 add_using_directive (using_directives (cu->language),
16815 previous_prefix, TYPE_NAME (type), NULL,
16816 NULL, excludes, 0, &objfile->objfile_obstack);
16817 }
16818 }
16819
16820 if (die->child != NULL)
16821 {
16822 struct die_info *child_die = die->child;
16823
16824 while (child_die && child_die->tag)
16825 {
16826 process_die (child_die, cu);
16827 child_die = sibling_die (child_die);
16828 }
16829 }
16830 }
16831
16832 /* Read a Fortran module as type. This DIE can be only a declaration used for
16833 imported module. Still we need that type as local Fortran "use ... only"
16834 declaration imports depend on the created type in determine_prefix. */
16835
16836 static struct type *
16837 read_module_type (struct die_info *die, struct dwarf2_cu *cu)
16838 {
16839 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
16840 const char *module_name;
16841 struct type *type;
16842
16843 module_name = dwarf2_name (die, cu);
16844 if (!module_name)
16845 complaint (&symfile_complaints,
16846 _("DW_TAG_module has no name, offset %s"),
16847 sect_offset_str (die->sect_off));
16848 type = init_type (objfile, TYPE_CODE_MODULE, 0, module_name);
16849
16850 /* determine_prefix uses TYPE_TAG_NAME. */
16851 TYPE_TAG_NAME (type) = TYPE_NAME (type);
16852
16853 return set_die_type (die, type, cu);
16854 }
16855
16856 /* Read a Fortran module. */
16857
16858 static void
16859 read_module (struct die_info *die, struct dwarf2_cu *cu)
16860 {
16861 struct die_info *child_die = die->child;
16862 struct type *type;
16863
16864 type = read_type_die (die, cu);
16865 new_symbol (die, type, cu);
16866
16867 while (child_die && child_die->tag)
16868 {
16869 process_die (child_die, cu);
16870 child_die = sibling_die (child_die);
16871 }
16872 }
16873
16874 /* Return the name of the namespace represented by DIE. Set
16875 *IS_ANONYMOUS to tell whether or not the namespace is an anonymous
16876 namespace. */
16877
16878 static const char *
16879 namespace_name (struct die_info *die, int *is_anonymous, struct dwarf2_cu *cu)
16880 {
16881 struct die_info *current_die;
16882 const char *name = NULL;
16883
16884 /* Loop through the extensions until we find a name. */
16885
16886 for (current_die = die;
16887 current_die != NULL;
16888 current_die = dwarf2_extension (die, &cu))
16889 {
16890 /* We don't use dwarf2_name here so that we can detect the absence
16891 of a name -> anonymous namespace. */
16892 name = dwarf2_string_attr (die, DW_AT_name, cu);
16893
16894 if (name != NULL)
16895 break;
16896 }
16897
16898 /* Is it an anonymous namespace? */
16899
16900 *is_anonymous = (name == NULL);
16901 if (*is_anonymous)
16902 name = CP_ANONYMOUS_NAMESPACE_STR;
16903
16904 return name;
16905 }
16906
16907 /* Extract all information from a DW_TAG_pointer_type DIE and add to
16908 the user defined type vector. */
16909
16910 static struct type *
16911 read_tag_pointer_type (struct die_info *die, struct dwarf2_cu *cu)
16912 {
16913 struct gdbarch *gdbarch
16914 = get_objfile_arch (cu->per_cu->dwarf2_per_objfile->objfile);
16915 struct comp_unit_head *cu_header = &cu->header;
16916 struct type *type;
16917 struct attribute *attr_byte_size;
16918 struct attribute *attr_address_class;
16919 int byte_size, addr_class;
16920 struct type *target_type;
16921
16922 target_type = die_type (die, cu);
16923
16924 /* The die_type call above may have already set the type for this DIE. */
16925 type = get_die_type (die, cu);
16926 if (type)
16927 return type;
16928
16929 type = lookup_pointer_type (target_type);
16930
16931 attr_byte_size = dwarf2_attr (die, DW_AT_byte_size, cu);
16932 if (attr_byte_size)
16933 byte_size = DW_UNSND (attr_byte_size);
16934 else
16935 byte_size = cu_header->addr_size;
16936
16937 attr_address_class = dwarf2_attr (die, DW_AT_address_class, cu);
16938 if (attr_address_class)
16939 addr_class = DW_UNSND (attr_address_class);
16940 else
16941 addr_class = DW_ADDR_none;
16942
16943 /* If the pointer size or address class is different than the
16944 default, create a type variant marked as such and set the
16945 length accordingly. */
16946 if (TYPE_LENGTH (type) != byte_size || addr_class != DW_ADDR_none)
16947 {
16948 if (gdbarch_address_class_type_flags_p (gdbarch))
16949 {
16950 int type_flags;
16951
16952 type_flags = gdbarch_address_class_type_flags
16953 (gdbarch, byte_size, addr_class);
16954 gdb_assert ((type_flags & ~TYPE_INSTANCE_FLAG_ADDRESS_CLASS_ALL)
16955 == 0);
16956 type = make_type_with_address_space (type, type_flags);
16957 }
16958 else if (TYPE_LENGTH (type) != byte_size)
16959 {
16960 complaint (&symfile_complaints,
16961 _("invalid pointer size %d"), byte_size);
16962 }
16963 else
16964 {
16965 /* Should we also complain about unhandled address classes? */
16966 }
16967 }
16968
16969 TYPE_LENGTH (type) = byte_size;
16970 return set_die_type (die, type, cu);
16971 }
16972
16973 /* Extract all information from a DW_TAG_ptr_to_member_type DIE and add to
16974 the user defined type vector. */
16975
16976 static struct type *
16977 read_tag_ptr_to_member_type (struct die_info *die, struct dwarf2_cu *cu)
16978 {
16979 struct type *type;
16980 struct type *to_type;
16981 struct type *domain;
16982
16983 to_type = die_type (die, cu);
16984 domain = die_containing_type (die, cu);
16985
16986 /* The calls above may have already set the type for this DIE. */
16987 type = get_die_type (die, cu);
16988 if (type)
16989 return type;
16990
16991 if (TYPE_CODE (check_typedef (to_type)) == TYPE_CODE_METHOD)
16992 type = lookup_methodptr_type (to_type);
16993 else if (TYPE_CODE (check_typedef (to_type)) == TYPE_CODE_FUNC)
16994 {
16995 struct type *new_type
16996 = alloc_type (cu->per_cu->dwarf2_per_objfile->objfile);
16997
16998 smash_to_method_type (new_type, domain, TYPE_TARGET_TYPE (to_type),
16999 TYPE_FIELDS (to_type), TYPE_NFIELDS (to_type),
17000 TYPE_VARARGS (to_type));
17001 type = lookup_methodptr_type (new_type);
17002 }
17003 else
17004 type = lookup_memberptr_type (to_type, domain);
17005
17006 return set_die_type (die, type, cu);
17007 }
17008
17009 /* Extract all information from a DW_TAG_{rvalue_,}reference_type DIE and add to
17010 the user defined type vector. */
17011
17012 static struct type *
17013 read_tag_reference_type (struct die_info *die, struct dwarf2_cu *cu,
17014 enum type_code refcode)
17015 {
17016 struct comp_unit_head *cu_header = &cu->header;
17017 struct type *type, *target_type;
17018 struct attribute *attr;
17019
17020 gdb_assert (refcode == TYPE_CODE_REF || refcode == TYPE_CODE_RVALUE_REF);
17021
17022 target_type = die_type (die, cu);
17023
17024 /* The die_type call above may have already set the type for this DIE. */
17025 type = get_die_type (die, cu);
17026 if (type)
17027 return type;
17028
17029 type = lookup_reference_type (target_type, refcode);
17030 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
17031 if (attr)
17032 {
17033 TYPE_LENGTH (type) = DW_UNSND (attr);
17034 }
17035 else
17036 {
17037 TYPE_LENGTH (type) = cu_header->addr_size;
17038 }
17039 return set_die_type (die, type, cu);
17040 }
17041
17042 /* Add the given cv-qualifiers to the element type of the array. GCC
17043 outputs DWARF type qualifiers that apply to an array, not the
17044 element type. But GDB relies on the array element type to carry
17045 the cv-qualifiers. This mimics section 6.7.3 of the C99
17046 specification. */
17047
17048 static struct type *
17049 add_array_cv_type (struct die_info *die, struct dwarf2_cu *cu,
17050 struct type *base_type, int cnst, int voltl)
17051 {
17052 struct type *el_type, *inner_array;
17053
17054 base_type = copy_type (base_type);
17055 inner_array = base_type;
17056
17057 while (TYPE_CODE (TYPE_TARGET_TYPE (inner_array)) == TYPE_CODE_ARRAY)
17058 {
17059 TYPE_TARGET_TYPE (inner_array) =
17060 copy_type (TYPE_TARGET_TYPE (inner_array));
17061 inner_array = TYPE_TARGET_TYPE (inner_array);
17062 }
17063
17064 el_type = TYPE_TARGET_TYPE (inner_array);
17065 cnst |= TYPE_CONST (el_type);
17066 voltl |= TYPE_VOLATILE (el_type);
17067 TYPE_TARGET_TYPE (inner_array) = make_cv_type (cnst, voltl, el_type, NULL);
17068
17069 return set_die_type (die, base_type, cu);
17070 }
17071
17072 static struct type *
17073 read_tag_const_type (struct die_info *die, struct dwarf2_cu *cu)
17074 {
17075 struct type *base_type, *cv_type;
17076
17077 base_type = die_type (die, cu);
17078
17079 /* The die_type call above may have already set the type for this DIE. */
17080 cv_type = get_die_type (die, cu);
17081 if (cv_type)
17082 return cv_type;
17083
17084 /* In case the const qualifier is applied to an array type, the element type
17085 is so qualified, not the array type (section 6.7.3 of C99). */
17086 if (TYPE_CODE (base_type) == TYPE_CODE_ARRAY)
17087 return add_array_cv_type (die, cu, base_type, 1, 0);
17088
17089 cv_type = make_cv_type (1, TYPE_VOLATILE (base_type), base_type, 0);
17090 return set_die_type (die, cv_type, cu);
17091 }
17092
17093 static struct type *
17094 read_tag_volatile_type (struct die_info *die, struct dwarf2_cu *cu)
17095 {
17096 struct type *base_type, *cv_type;
17097
17098 base_type = die_type (die, cu);
17099
17100 /* The die_type call above may have already set the type for this DIE. */
17101 cv_type = get_die_type (die, cu);
17102 if (cv_type)
17103 return cv_type;
17104
17105 /* In case the volatile qualifier is applied to an array type, the
17106 element type is so qualified, not the array type (section 6.7.3
17107 of C99). */
17108 if (TYPE_CODE (base_type) == TYPE_CODE_ARRAY)
17109 return add_array_cv_type (die, cu, base_type, 0, 1);
17110
17111 cv_type = make_cv_type (TYPE_CONST (base_type), 1, base_type, 0);
17112 return set_die_type (die, cv_type, cu);
17113 }
17114
17115 /* Handle DW_TAG_restrict_type. */
17116
17117 static struct type *
17118 read_tag_restrict_type (struct die_info *die, struct dwarf2_cu *cu)
17119 {
17120 struct type *base_type, *cv_type;
17121
17122 base_type = die_type (die, cu);
17123
17124 /* The die_type call above may have already set the type for this DIE. */
17125 cv_type = get_die_type (die, cu);
17126 if (cv_type)
17127 return cv_type;
17128
17129 cv_type = make_restrict_type (base_type);
17130 return set_die_type (die, cv_type, cu);
17131 }
17132
17133 /* Handle DW_TAG_atomic_type. */
17134
17135 static struct type *
17136 read_tag_atomic_type (struct die_info *die, struct dwarf2_cu *cu)
17137 {
17138 struct type *base_type, *cv_type;
17139
17140 base_type = die_type (die, cu);
17141
17142 /* The die_type call above may have already set the type for this DIE. */
17143 cv_type = get_die_type (die, cu);
17144 if (cv_type)
17145 return cv_type;
17146
17147 cv_type = make_atomic_type (base_type);
17148 return set_die_type (die, cv_type, cu);
17149 }
17150
17151 /* Extract all information from a DW_TAG_string_type DIE and add to
17152 the user defined type vector. It isn't really a user defined type,
17153 but it behaves like one, with other DIE's using an AT_user_def_type
17154 attribute to reference it. */
17155
17156 static struct type *
17157 read_tag_string_type (struct die_info *die, struct dwarf2_cu *cu)
17158 {
17159 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
17160 struct gdbarch *gdbarch = get_objfile_arch (objfile);
17161 struct type *type, *range_type, *index_type, *char_type;
17162 struct attribute *attr;
17163 unsigned int length;
17164
17165 attr = dwarf2_attr (die, DW_AT_string_length, cu);
17166 if (attr)
17167 {
17168 length = DW_UNSND (attr);
17169 }
17170 else
17171 {
17172 /* Check for the DW_AT_byte_size attribute. */
17173 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
17174 if (attr)
17175 {
17176 length = DW_UNSND (attr);
17177 }
17178 else
17179 {
17180 length = 1;
17181 }
17182 }
17183
17184 index_type = objfile_type (objfile)->builtin_int;
17185 range_type = create_static_range_type (NULL, index_type, 1, length);
17186 char_type = language_string_char_type (cu->language_defn, gdbarch);
17187 type = create_string_type (NULL, char_type, range_type);
17188
17189 return set_die_type (die, type, cu);
17190 }
17191
17192 /* Assuming that DIE corresponds to a function, returns nonzero
17193 if the function is prototyped. */
17194
17195 static int
17196 prototyped_function_p (struct die_info *die, struct dwarf2_cu *cu)
17197 {
17198 struct attribute *attr;
17199
17200 attr = dwarf2_attr (die, DW_AT_prototyped, cu);
17201 if (attr && (DW_UNSND (attr) != 0))
17202 return 1;
17203
17204 /* The DWARF standard implies that the DW_AT_prototyped attribute
17205 is only meaninful for C, but the concept also extends to other
17206 languages that allow unprototyped functions (Eg: Objective C).
17207 For all other languages, assume that functions are always
17208 prototyped. */
17209 if (cu->language != language_c
17210 && cu->language != language_objc
17211 && cu->language != language_opencl)
17212 return 1;
17213
17214 /* RealView does not emit DW_AT_prototyped. We can not distinguish
17215 prototyped and unprototyped functions; default to prototyped,
17216 since that is more common in modern code (and RealView warns
17217 about unprototyped functions). */
17218 if (producer_is_realview (cu->producer))
17219 return 1;
17220
17221 return 0;
17222 }
17223
17224 /* Handle DIES due to C code like:
17225
17226 struct foo
17227 {
17228 int (*funcp)(int a, long l);
17229 int b;
17230 };
17231
17232 ('funcp' generates a DW_TAG_subroutine_type DIE). */
17233
17234 static struct type *
17235 read_subroutine_type (struct die_info *die, struct dwarf2_cu *cu)
17236 {
17237 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
17238 struct type *type; /* Type that this function returns. */
17239 struct type *ftype; /* Function that returns above type. */
17240 struct attribute *attr;
17241
17242 type = die_type (die, cu);
17243
17244 /* The die_type call above may have already set the type for this DIE. */
17245 ftype = get_die_type (die, cu);
17246 if (ftype)
17247 return ftype;
17248
17249 ftype = lookup_function_type (type);
17250
17251 if (prototyped_function_p (die, cu))
17252 TYPE_PROTOTYPED (ftype) = 1;
17253
17254 /* Store the calling convention in the type if it's available in
17255 the subroutine die. Otherwise set the calling convention to
17256 the default value DW_CC_normal. */
17257 attr = dwarf2_attr (die, DW_AT_calling_convention, cu);
17258 if (attr)
17259 TYPE_CALLING_CONVENTION (ftype) = DW_UNSND (attr);
17260 else if (cu->producer && strstr (cu->producer, "IBM XL C for OpenCL"))
17261 TYPE_CALLING_CONVENTION (ftype) = DW_CC_GDB_IBM_OpenCL;
17262 else
17263 TYPE_CALLING_CONVENTION (ftype) = DW_CC_normal;
17264
17265 /* Record whether the function returns normally to its caller or not
17266 if the DWARF producer set that information. */
17267 attr = dwarf2_attr (die, DW_AT_noreturn, cu);
17268 if (attr && (DW_UNSND (attr) != 0))
17269 TYPE_NO_RETURN (ftype) = 1;
17270
17271 /* We need to add the subroutine type to the die immediately so
17272 we don't infinitely recurse when dealing with parameters
17273 declared as the same subroutine type. */
17274 set_die_type (die, ftype, cu);
17275
17276 if (die->child != NULL)
17277 {
17278 struct type *void_type = objfile_type (objfile)->builtin_void;
17279 struct die_info *child_die;
17280 int nparams, iparams;
17281
17282 /* Count the number of parameters.
17283 FIXME: GDB currently ignores vararg functions, but knows about
17284 vararg member functions. */
17285 nparams = 0;
17286 child_die = die->child;
17287 while (child_die && child_die->tag)
17288 {
17289 if (child_die->tag == DW_TAG_formal_parameter)
17290 nparams++;
17291 else if (child_die->tag == DW_TAG_unspecified_parameters)
17292 TYPE_VARARGS (ftype) = 1;
17293 child_die = sibling_die (child_die);
17294 }
17295
17296 /* Allocate storage for parameters and fill them in. */
17297 TYPE_NFIELDS (ftype) = nparams;
17298 TYPE_FIELDS (ftype) = (struct field *)
17299 TYPE_ZALLOC (ftype, nparams * sizeof (struct field));
17300
17301 /* TYPE_FIELD_TYPE must never be NULL. Pre-fill the array to ensure it
17302 even if we error out during the parameters reading below. */
17303 for (iparams = 0; iparams < nparams; iparams++)
17304 TYPE_FIELD_TYPE (ftype, iparams) = void_type;
17305
17306 iparams = 0;
17307 child_die = die->child;
17308 while (child_die && child_die->tag)
17309 {
17310 if (child_die->tag == DW_TAG_formal_parameter)
17311 {
17312 struct type *arg_type;
17313
17314 /* DWARF version 2 has no clean way to discern C++
17315 static and non-static member functions. G++ helps
17316 GDB by marking the first parameter for non-static
17317 member functions (which is the this pointer) as
17318 artificial. We pass this information to
17319 dwarf2_add_member_fn via TYPE_FIELD_ARTIFICIAL.
17320
17321 DWARF version 3 added DW_AT_object_pointer, which GCC
17322 4.5 does not yet generate. */
17323 attr = dwarf2_attr (child_die, DW_AT_artificial, cu);
17324 if (attr)
17325 TYPE_FIELD_ARTIFICIAL (ftype, iparams) = DW_UNSND (attr);
17326 else
17327 TYPE_FIELD_ARTIFICIAL (ftype, iparams) = 0;
17328 arg_type = die_type (child_die, cu);
17329
17330 /* RealView does not mark THIS as const, which the testsuite
17331 expects. GCC marks THIS as const in method definitions,
17332 but not in the class specifications (GCC PR 43053). */
17333 if (cu->language == language_cplus && !TYPE_CONST (arg_type)
17334 && TYPE_FIELD_ARTIFICIAL (ftype, iparams))
17335 {
17336 int is_this = 0;
17337 struct dwarf2_cu *arg_cu = cu;
17338 const char *name = dwarf2_name (child_die, cu);
17339
17340 attr = dwarf2_attr (die, DW_AT_object_pointer, cu);
17341 if (attr)
17342 {
17343 /* If the compiler emits this, use it. */
17344 if (follow_die_ref (die, attr, &arg_cu) == child_die)
17345 is_this = 1;
17346 }
17347 else if (name && strcmp (name, "this") == 0)
17348 /* Function definitions will have the argument names. */
17349 is_this = 1;
17350 else if (name == NULL && iparams == 0)
17351 /* Declarations may not have the names, so like
17352 elsewhere in GDB, assume an artificial first
17353 argument is "this". */
17354 is_this = 1;
17355
17356 if (is_this)
17357 arg_type = make_cv_type (1, TYPE_VOLATILE (arg_type),
17358 arg_type, 0);
17359 }
17360
17361 TYPE_FIELD_TYPE (ftype, iparams) = arg_type;
17362 iparams++;
17363 }
17364 child_die = sibling_die (child_die);
17365 }
17366 }
17367
17368 return ftype;
17369 }
17370
17371 static struct type *
17372 read_typedef (struct die_info *die, struct dwarf2_cu *cu)
17373 {
17374 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
17375 const char *name = NULL;
17376 struct type *this_type, *target_type;
17377
17378 name = dwarf2_full_name (NULL, die, cu);
17379 this_type = init_type (objfile, TYPE_CODE_TYPEDEF, 0, name);
17380 TYPE_TARGET_STUB (this_type) = 1;
17381 set_die_type (die, this_type, cu);
17382 target_type = die_type (die, cu);
17383 if (target_type != this_type)
17384 TYPE_TARGET_TYPE (this_type) = target_type;
17385 else
17386 {
17387 /* Self-referential typedefs are, it seems, not allowed by the DWARF
17388 spec and cause infinite loops in GDB. */
17389 complaint (&symfile_complaints,
17390 _("Self-referential DW_TAG_typedef "
17391 "- DIE at %s [in module %s]"),
17392 sect_offset_str (die->sect_off), objfile_name (objfile));
17393 TYPE_TARGET_TYPE (this_type) = NULL;
17394 }
17395 return this_type;
17396 }
17397
17398 /* Allocate a floating-point type of size BITS and name NAME. Pass NAME_HINT
17399 (which may be different from NAME) to the architecture back-end to allow
17400 it to guess the correct format if necessary. */
17401
17402 static struct type *
17403 dwarf2_init_float_type (struct objfile *objfile, int bits, const char *name,
17404 const char *name_hint)
17405 {
17406 struct gdbarch *gdbarch = get_objfile_arch (objfile);
17407 const struct floatformat **format;
17408 struct type *type;
17409
17410 format = gdbarch_floatformat_for_type (gdbarch, name_hint, bits);
17411 if (format)
17412 type = init_float_type (objfile, bits, name, format);
17413 else
17414 type = init_type (objfile, TYPE_CODE_ERROR, bits, name);
17415
17416 return type;
17417 }
17418
17419 /* Find a representation of a given base type and install
17420 it in the TYPE field of the die. */
17421
17422 static struct type *
17423 read_base_type (struct die_info *die, struct dwarf2_cu *cu)
17424 {
17425 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
17426 struct type *type;
17427 struct attribute *attr;
17428 int encoding = 0, bits = 0;
17429 const char *name;
17430
17431 attr = dwarf2_attr (die, DW_AT_encoding, cu);
17432 if (attr)
17433 {
17434 encoding = DW_UNSND (attr);
17435 }
17436 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
17437 if (attr)
17438 {
17439 bits = DW_UNSND (attr) * TARGET_CHAR_BIT;
17440 }
17441 name = dwarf2_name (die, cu);
17442 if (!name)
17443 {
17444 complaint (&symfile_complaints,
17445 _("DW_AT_name missing from DW_TAG_base_type"));
17446 }
17447
17448 switch (encoding)
17449 {
17450 case DW_ATE_address:
17451 /* Turn DW_ATE_address into a void * pointer. */
17452 type = init_type (objfile, TYPE_CODE_VOID, TARGET_CHAR_BIT, NULL);
17453 type = init_pointer_type (objfile, bits, name, type);
17454 break;
17455 case DW_ATE_boolean:
17456 type = init_boolean_type (objfile, bits, 1, name);
17457 break;
17458 case DW_ATE_complex_float:
17459 type = dwarf2_init_float_type (objfile, bits / 2, NULL, name);
17460 type = init_complex_type (objfile, name, type);
17461 break;
17462 case DW_ATE_decimal_float:
17463 type = init_decfloat_type (objfile, bits, name);
17464 break;
17465 case DW_ATE_float:
17466 type = dwarf2_init_float_type (objfile, bits, name, name);
17467 break;
17468 case DW_ATE_signed:
17469 type = init_integer_type (objfile, bits, 0, name);
17470 break;
17471 case DW_ATE_unsigned:
17472 if (cu->language == language_fortran
17473 && name
17474 && startswith (name, "character("))
17475 type = init_character_type (objfile, bits, 1, name);
17476 else
17477 type = init_integer_type (objfile, bits, 1, name);
17478 break;
17479 case DW_ATE_signed_char:
17480 if (cu->language == language_ada || cu->language == language_m2
17481 || cu->language == language_pascal
17482 || cu->language == language_fortran)
17483 type = init_character_type (objfile, bits, 0, name);
17484 else
17485 type = init_integer_type (objfile, bits, 0, name);
17486 break;
17487 case DW_ATE_unsigned_char:
17488 if (cu->language == language_ada || cu->language == language_m2
17489 || cu->language == language_pascal
17490 || cu->language == language_fortran
17491 || cu->language == language_rust)
17492 type = init_character_type (objfile, bits, 1, name);
17493 else
17494 type = init_integer_type (objfile, bits, 1, name);
17495 break;
17496 case DW_ATE_UTF:
17497 {
17498 gdbarch *arch = get_objfile_arch (objfile);
17499
17500 if (bits == 16)
17501 type = builtin_type (arch)->builtin_char16;
17502 else if (bits == 32)
17503 type = builtin_type (arch)->builtin_char32;
17504 else
17505 {
17506 complaint (&symfile_complaints,
17507 _("unsupported DW_ATE_UTF bit size: '%d'"),
17508 bits);
17509 type = init_integer_type (objfile, bits, 1, name);
17510 }
17511 return set_die_type (die, type, cu);
17512 }
17513 break;
17514
17515 default:
17516 complaint (&symfile_complaints, _("unsupported DW_AT_encoding: '%s'"),
17517 dwarf_type_encoding_name (encoding));
17518 type = init_type (objfile, TYPE_CODE_ERROR, bits, name);
17519 break;
17520 }
17521
17522 if (name && strcmp (name, "char") == 0)
17523 TYPE_NOSIGN (type) = 1;
17524
17525 return set_die_type (die, type, cu);
17526 }
17527
17528 /* Parse dwarf attribute if it's a block, reference or constant and put the
17529 resulting value of the attribute into struct bound_prop.
17530 Returns 1 if ATTR could be resolved into PROP, 0 otherwise. */
17531
17532 static int
17533 attr_to_dynamic_prop (const struct attribute *attr, struct die_info *die,
17534 struct dwarf2_cu *cu, struct dynamic_prop *prop)
17535 {
17536 struct dwarf2_property_baton *baton;
17537 struct obstack *obstack
17538 = &cu->per_cu->dwarf2_per_objfile->objfile->objfile_obstack;
17539
17540 if (attr == NULL || prop == NULL)
17541 return 0;
17542
17543 if (attr_form_is_block (attr))
17544 {
17545 baton = XOBNEW (obstack, struct dwarf2_property_baton);
17546 baton->referenced_type = NULL;
17547 baton->locexpr.per_cu = cu->per_cu;
17548 baton->locexpr.size = DW_BLOCK (attr)->size;
17549 baton->locexpr.data = DW_BLOCK (attr)->data;
17550 prop->data.baton = baton;
17551 prop->kind = PROP_LOCEXPR;
17552 gdb_assert (prop->data.baton != NULL);
17553 }
17554 else if (attr_form_is_ref (attr))
17555 {
17556 struct dwarf2_cu *target_cu = cu;
17557 struct die_info *target_die;
17558 struct attribute *target_attr;
17559
17560 target_die = follow_die_ref (die, attr, &target_cu);
17561 target_attr = dwarf2_attr (target_die, DW_AT_location, target_cu);
17562 if (target_attr == NULL)
17563 target_attr = dwarf2_attr (target_die, DW_AT_data_member_location,
17564 target_cu);
17565 if (target_attr == NULL)
17566 return 0;
17567
17568 switch (target_attr->name)
17569 {
17570 case DW_AT_location:
17571 if (attr_form_is_section_offset (target_attr))
17572 {
17573 baton = XOBNEW (obstack, struct dwarf2_property_baton);
17574 baton->referenced_type = die_type (target_die, target_cu);
17575 fill_in_loclist_baton (cu, &baton->loclist, target_attr);
17576 prop->data.baton = baton;
17577 prop->kind = PROP_LOCLIST;
17578 gdb_assert (prop->data.baton != NULL);
17579 }
17580 else if (attr_form_is_block (target_attr))
17581 {
17582 baton = XOBNEW (obstack, struct dwarf2_property_baton);
17583 baton->referenced_type = die_type (target_die, target_cu);
17584 baton->locexpr.per_cu = cu->per_cu;
17585 baton->locexpr.size = DW_BLOCK (target_attr)->size;
17586 baton->locexpr.data = DW_BLOCK (target_attr)->data;
17587 prop->data.baton = baton;
17588 prop->kind = PROP_LOCEXPR;
17589 gdb_assert (prop->data.baton != NULL);
17590 }
17591 else
17592 {
17593 dwarf2_invalid_attrib_class_complaint ("DW_AT_location",
17594 "dynamic property");
17595 return 0;
17596 }
17597 break;
17598 case DW_AT_data_member_location:
17599 {
17600 LONGEST offset;
17601
17602 if (!handle_data_member_location (target_die, target_cu,
17603 &offset))
17604 return 0;
17605
17606 baton = XOBNEW (obstack, struct dwarf2_property_baton);
17607 baton->referenced_type = read_type_die (target_die->parent,
17608 target_cu);
17609 baton->offset_info.offset = offset;
17610 baton->offset_info.type = die_type (target_die, target_cu);
17611 prop->data.baton = baton;
17612 prop->kind = PROP_ADDR_OFFSET;
17613 break;
17614 }
17615 }
17616 }
17617 else if (attr_form_is_constant (attr))
17618 {
17619 prop->data.const_val = dwarf2_get_attr_constant_value (attr, 0);
17620 prop->kind = PROP_CONST;
17621 }
17622 else
17623 {
17624 dwarf2_invalid_attrib_class_complaint (dwarf_form_name (attr->form),
17625 dwarf2_name (die, cu));
17626 return 0;
17627 }
17628
17629 return 1;
17630 }
17631
17632 /* Read the given DW_AT_subrange DIE. */
17633
17634 static struct type *
17635 read_subrange_type (struct die_info *die, struct dwarf2_cu *cu)
17636 {
17637 struct type *base_type, *orig_base_type;
17638 struct type *range_type;
17639 struct attribute *attr;
17640 struct dynamic_prop low, high;
17641 int low_default_is_valid;
17642 int high_bound_is_count = 0;
17643 const char *name;
17644 LONGEST negative_mask;
17645
17646 orig_base_type = die_type (die, cu);
17647 /* If ORIG_BASE_TYPE is a typedef, it will not be TYPE_UNSIGNED,
17648 whereas the real type might be. So, we use ORIG_BASE_TYPE when
17649 creating the range type, but we use the result of check_typedef
17650 when examining properties of the type. */
17651 base_type = check_typedef (orig_base_type);
17652
17653 /* The die_type call above may have already set the type for this DIE. */
17654 range_type = get_die_type (die, cu);
17655 if (range_type)
17656 return range_type;
17657
17658 low.kind = PROP_CONST;
17659 high.kind = PROP_CONST;
17660 high.data.const_val = 0;
17661
17662 /* Set LOW_DEFAULT_IS_VALID if current language and DWARF version allow
17663 omitting DW_AT_lower_bound. */
17664 switch (cu->language)
17665 {
17666 case language_c:
17667 case language_cplus:
17668 low.data.const_val = 0;
17669 low_default_is_valid = 1;
17670 break;
17671 case language_fortran:
17672 low.data.const_val = 1;
17673 low_default_is_valid = 1;
17674 break;
17675 case language_d:
17676 case language_objc:
17677 case language_rust:
17678 low.data.const_val = 0;
17679 low_default_is_valid = (cu->header.version >= 4);
17680 break;
17681 case language_ada:
17682 case language_m2:
17683 case language_pascal:
17684 low.data.const_val = 1;
17685 low_default_is_valid = (cu->header.version >= 4);
17686 break;
17687 default:
17688 low.data.const_val = 0;
17689 low_default_is_valid = 0;
17690 break;
17691 }
17692
17693 attr = dwarf2_attr (die, DW_AT_lower_bound, cu);
17694 if (attr)
17695 attr_to_dynamic_prop (attr, die, cu, &low);
17696 else if (!low_default_is_valid)
17697 complaint (&symfile_complaints, _("Missing DW_AT_lower_bound "
17698 "- DIE at %s [in module %s]"),
17699 sect_offset_str (die->sect_off),
17700 objfile_name (cu->per_cu->dwarf2_per_objfile->objfile));
17701
17702 attr = dwarf2_attr (die, DW_AT_upper_bound, cu);
17703 if (!attr_to_dynamic_prop (attr, die, cu, &high))
17704 {
17705 attr = dwarf2_attr (die, DW_AT_count, cu);
17706 if (attr_to_dynamic_prop (attr, die, cu, &high))
17707 {
17708 /* If bounds are constant do the final calculation here. */
17709 if (low.kind == PROP_CONST && high.kind == PROP_CONST)
17710 high.data.const_val = low.data.const_val + high.data.const_val - 1;
17711 else
17712 high_bound_is_count = 1;
17713 }
17714 }
17715
17716 /* Dwarf-2 specifications explicitly allows to create subrange types
17717 without specifying a base type.
17718 In that case, the base type must be set to the type of
17719 the lower bound, upper bound or count, in that order, if any of these
17720 three attributes references an object that has a type.
17721 If no base type is found, the Dwarf-2 specifications say that
17722 a signed integer type of size equal to the size of an address should
17723 be used.
17724 For the following C code: `extern char gdb_int [];'
17725 GCC produces an empty range DIE.
17726 FIXME: muller/2010-05-28: Possible references to object for low bound,
17727 high bound or count are not yet handled by this code. */
17728 if (TYPE_CODE (base_type) == TYPE_CODE_VOID)
17729 {
17730 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
17731 struct gdbarch *gdbarch = get_objfile_arch (objfile);
17732 int addr_size = gdbarch_addr_bit (gdbarch) /8;
17733 struct type *int_type = objfile_type (objfile)->builtin_int;
17734
17735 /* Test "int", "long int", and "long long int" objfile types,
17736 and select the first one having a size above or equal to the
17737 architecture address size. */
17738 if (int_type && TYPE_LENGTH (int_type) >= addr_size)
17739 base_type = int_type;
17740 else
17741 {
17742 int_type = objfile_type (objfile)->builtin_long;
17743 if (int_type && TYPE_LENGTH (int_type) >= addr_size)
17744 base_type = int_type;
17745 else
17746 {
17747 int_type = objfile_type (objfile)->builtin_long_long;
17748 if (int_type && TYPE_LENGTH (int_type) >= addr_size)
17749 base_type = int_type;
17750 }
17751 }
17752 }
17753
17754 /* Normally, the DWARF producers are expected to use a signed
17755 constant form (Eg. DW_FORM_sdata) to express negative bounds.
17756 But this is unfortunately not always the case, as witnessed
17757 with GCC, for instance, where the ambiguous DW_FORM_dataN form
17758 is used instead. To work around that ambiguity, we treat
17759 the bounds as signed, and thus sign-extend their values, when
17760 the base type is signed. */
17761 negative_mask =
17762 -((LONGEST) 1 << (TYPE_LENGTH (base_type) * TARGET_CHAR_BIT - 1));
17763 if (low.kind == PROP_CONST
17764 && !TYPE_UNSIGNED (base_type) && (low.data.const_val & negative_mask))
17765 low.data.const_val |= negative_mask;
17766 if (high.kind == PROP_CONST
17767 && !TYPE_UNSIGNED (base_type) && (high.data.const_val & negative_mask))
17768 high.data.const_val |= negative_mask;
17769
17770 range_type = create_range_type (NULL, orig_base_type, &low, &high);
17771
17772 if (high_bound_is_count)
17773 TYPE_RANGE_DATA (range_type)->flag_upper_bound_is_count = 1;
17774
17775 /* Ada expects an empty array on no boundary attributes. */
17776 if (attr == NULL && cu->language != language_ada)
17777 TYPE_HIGH_BOUND_KIND (range_type) = PROP_UNDEFINED;
17778
17779 name = dwarf2_name (die, cu);
17780 if (name)
17781 TYPE_NAME (range_type) = name;
17782
17783 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
17784 if (attr)
17785 TYPE_LENGTH (range_type) = DW_UNSND (attr);
17786
17787 set_die_type (die, range_type, cu);
17788
17789 /* set_die_type should be already done. */
17790 set_descriptive_type (range_type, die, cu);
17791
17792 return range_type;
17793 }
17794
17795 static struct type *
17796 read_unspecified_type (struct die_info *die, struct dwarf2_cu *cu)
17797 {
17798 struct type *type;
17799
17800 type = init_type (cu->per_cu->dwarf2_per_objfile->objfile, TYPE_CODE_VOID,0,
17801 NULL);
17802 TYPE_NAME (type) = dwarf2_name (die, cu);
17803
17804 /* In Ada, an unspecified type is typically used when the description
17805 of the type is defered to a different unit. When encountering
17806 such a type, we treat it as a stub, and try to resolve it later on,
17807 when needed. */
17808 if (cu->language == language_ada)
17809 TYPE_STUB (type) = 1;
17810
17811 return set_die_type (die, type, cu);
17812 }
17813
17814 /* Read a single die and all its descendents. Set the die's sibling
17815 field to NULL; set other fields in the die correctly, and set all
17816 of the descendents' fields correctly. Set *NEW_INFO_PTR to the
17817 location of the info_ptr after reading all of those dies. PARENT
17818 is the parent of the die in question. */
17819
17820 static struct die_info *
17821 read_die_and_children (const struct die_reader_specs *reader,
17822 const gdb_byte *info_ptr,
17823 const gdb_byte **new_info_ptr,
17824 struct die_info *parent)
17825 {
17826 struct die_info *die;
17827 const gdb_byte *cur_ptr;
17828 int has_children;
17829
17830 cur_ptr = read_full_die_1 (reader, &die, info_ptr, &has_children, 0);
17831 if (die == NULL)
17832 {
17833 *new_info_ptr = cur_ptr;
17834 return NULL;
17835 }
17836 store_in_ref_table (die, reader->cu);
17837
17838 if (has_children)
17839 die->child = read_die_and_siblings_1 (reader, cur_ptr, new_info_ptr, die);
17840 else
17841 {
17842 die->child = NULL;
17843 *new_info_ptr = cur_ptr;
17844 }
17845
17846 die->sibling = NULL;
17847 die->parent = parent;
17848 return die;
17849 }
17850
17851 /* Read a die, all of its descendents, and all of its siblings; set
17852 all of the fields of all of the dies correctly. Arguments are as
17853 in read_die_and_children. */
17854
17855 static struct die_info *
17856 read_die_and_siblings_1 (const struct die_reader_specs *reader,
17857 const gdb_byte *info_ptr,
17858 const gdb_byte **new_info_ptr,
17859 struct die_info *parent)
17860 {
17861 struct die_info *first_die, *last_sibling;
17862 const gdb_byte *cur_ptr;
17863
17864 cur_ptr = info_ptr;
17865 first_die = last_sibling = NULL;
17866
17867 while (1)
17868 {
17869 struct die_info *die
17870 = read_die_and_children (reader, cur_ptr, &cur_ptr, parent);
17871
17872 if (die == NULL)
17873 {
17874 *new_info_ptr = cur_ptr;
17875 return first_die;
17876 }
17877
17878 if (!first_die)
17879 first_die = die;
17880 else
17881 last_sibling->sibling = die;
17882
17883 last_sibling = die;
17884 }
17885 }
17886
17887 /* Read a die, all of its descendents, and all of its siblings; set
17888 all of the fields of all of the dies correctly. Arguments are as
17889 in read_die_and_children.
17890 This the main entry point for reading a DIE and all its children. */
17891
17892 static struct die_info *
17893 read_die_and_siblings (const struct die_reader_specs *reader,
17894 const gdb_byte *info_ptr,
17895 const gdb_byte **new_info_ptr,
17896 struct die_info *parent)
17897 {
17898 struct die_info *die = read_die_and_siblings_1 (reader, info_ptr,
17899 new_info_ptr, parent);
17900
17901 if (dwarf_die_debug)
17902 {
17903 fprintf_unfiltered (gdb_stdlog,
17904 "Read die from %s@0x%x of %s:\n",
17905 get_section_name (reader->die_section),
17906 (unsigned) (info_ptr - reader->die_section->buffer),
17907 bfd_get_filename (reader->abfd));
17908 dump_die (die, dwarf_die_debug);
17909 }
17910
17911 return die;
17912 }
17913
17914 /* Read a die and all its attributes, leave space for NUM_EXTRA_ATTRS
17915 attributes.
17916 The caller is responsible for filling in the extra attributes
17917 and updating (*DIEP)->num_attrs.
17918 Set DIEP to point to a newly allocated die with its information,
17919 except for its child, sibling, and parent fields.
17920 Set HAS_CHILDREN to tell whether the die has children or not. */
17921
17922 static const gdb_byte *
17923 read_full_die_1 (const struct die_reader_specs *reader,
17924 struct die_info **diep, const gdb_byte *info_ptr,
17925 int *has_children, int num_extra_attrs)
17926 {
17927 unsigned int abbrev_number, bytes_read, i;
17928 struct abbrev_info *abbrev;
17929 struct die_info *die;
17930 struct dwarf2_cu *cu = reader->cu;
17931 bfd *abfd = reader->abfd;
17932
17933 sect_offset sect_off = (sect_offset) (info_ptr - reader->buffer);
17934 abbrev_number = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
17935 info_ptr += bytes_read;
17936 if (!abbrev_number)
17937 {
17938 *diep = NULL;
17939 *has_children = 0;
17940 return info_ptr;
17941 }
17942
17943 abbrev = reader->abbrev_table->lookup_abbrev (abbrev_number);
17944 if (!abbrev)
17945 error (_("Dwarf Error: could not find abbrev number %d [in module %s]"),
17946 abbrev_number,
17947 bfd_get_filename (abfd));
17948
17949 die = dwarf_alloc_die (cu, abbrev->num_attrs + num_extra_attrs);
17950 die->sect_off = sect_off;
17951 die->tag = abbrev->tag;
17952 die->abbrev = abbrev_number;
17953
17954 /* Make the result usable.
17955 The caller needs to update num_attrs after adding the extra
17956 attributes. */
17957 die->num_attrs = abbrev->num_attrs;
17958
17959 for (i = 0; i < abbrev->num_attrs; ++i)
17960 info_ptr = read_attribute (reader, &die->attrs[i], &abbrev->attrs[i],
17961 info_ptr);
17962
17963 *diep = die;
17964 *has_children = abbrev->has_children;
17965 return info_ptr;
17966 }
17967
17968 /* Read a die and all its attributes.
17969 Set DIEP to point to a newly allocated die with its information,
17970 except for its child, sibling, and parent fields.
17971 Set HAS_CHILDREN to tell whether the die has children or not. */
17972
17973 static const gdb_byte *
17974 read_full_die (const struct die_reader_specs *reader,
17975 struct die_info **diep, const gdb_byte *info_ptr,
17976 int *has_children)
17977 {
17978 const gdb_byte *result;
17979
17980 result = read_full_die_1 (reader, diep, info_ptr, has_children, 0);
17981
17982 if (dwarf_die_debug)
17983 {
17984 fprintf_unfiltered (gdb_stdlog,
17985 "Read die from %s@0x%x of %s:\n",
17986 get_section_name (reader->die_section),
17987 (unsigned) (info_ptr - reader->die_section->buffer),
17988 bfd_get_filename (reader->abfd));
17989 dump_die (*diep, dwarf_die_debug);
17990 }
17991
17992 return result;
17993 }
17994 \f
17995 /* Abbreviation tables.
17996
17997 In DWARF version 2, the description of the debugging information is
17998 stored in a separate .debug_abbrev section. Before we read any
17999 dies from a section we read in all abbreviations and install them
18000 in a hash table. */
18001
18002 /* Allocate space for a struct abbrev_info object in ABBREV_TABLE. */
18003
18004 struct abbrev_info *
18005 abbrev_table::alloc_abbrev ()
18006 {
18007 struct abbrev_info *abbrev;
18008
18009 abbrev = XOBNEW (&abbrev_obstack, struct abbrev_info);
18010 memset (abbrev, 0, sizeof (struct abbrev_info));
18011
18012 return abbrev;
18013 }
18014
18015 /* Add an abbreviation to the table. */
18016
18017 void
18018 abbrev_table::add_abbrev (unsigned int abbrev_number,
18019 struct abbrev_info *abbrev)
18020 {
18021 unsigned int hash_number;
18022
18023 hash_number = abbrev_number % ABBREV_HASH_SIZE;
18024 abbrev->next = m_abbrevs[hash_number];
18025 m_abbrevs[hash_number] = abbrev;
18026 }
18027
18028 /* Look up an abbrev in the table.
18029 Returns NULL if the abbrev is not found. */
18030
18031 struct abbrev_info *
18032 abbrev_table::lookup_abbrev (unsigned int abbrev_number)
18033 {
18034 unsigned int hash_number;
18035 struct abbrev_info *abbrev;
18036
18037 hash_number = abbrev_number % ABBREV_HASH_SIZE;
18038 abbrev = m_abbrevs[hash_number];
18039
18040 while (abbrev)
18041 {
18042 if (abbrev->number == abbrev_number)
18043 return abbrev;
18044 abbrev = abbrev->next;
18045 }
18046 return NULL;
18047 }
18048
18049 /* Read in an abbrev table. */
18050
18051 static abbrev_table_up
18052 abbrev_table_read_table (struct dwarf2_per_objfile *dwarf2_per_objfile,
18053 struct dwarf2_section_info *section,
18054 sect_offset sect_off)
18055 {
18056 struct objfile *objfile = dwarf2_per_objfile->objfile;
18057 bfd *abfd = get_section_bfd_owner (section);
18058 const gdb_byte *abbrev_ptr;
18059 struct abbrev_info *cur_abbrev;
18060 unsigned int abbrev_number, bytes_read, abbrev_name;
18061 unsigned int abbrev_form;
18062 struct attr_abbrev *cur_attrs;
18063 unsigned int allocated_attrs;
18064
18065 abbrev_table_up abbrev_table (new struct abbrev_table (sect_off));
18066
18067 dwarf2_read_section (objfile, section);
18068 abbrev_ptr = section->buffer + to_underlying (sect_off);
18069 abbrev_number = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
18070 abbrev_ptr += bytes_read;
18071
18072 allocated_attrs = ATTR_ALLOC_CHUNK;
18073 cur_attrs = XNEWVEC (struct attr_abbrev, allocated_attrs);
18074
18075 /* Loop until we reach an abbrev number of 0. */
18076 while (abbrev_number)
18077 {
18078 cur_abbrev = abbrev_table->alloc_abbrev ();
18079
18080 /* read in abbrev header */
18081 cur_abbrev->number = abbrev_number;
18082 cur_abbrev->tag
18083 = (enum dwarf_tag) read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
18084 abbrev_ptr += bytes_read;
18085 cur_abbrev->has_children = read_1_byte (abfd, abbrev_ptr);
18086 abbrev_ptr += 1;
18087
18088 /* now read in declarations */
18089 for (;;)
18090 {
18091 LONGEST implicit_const;
18092
18093 abbrev_name = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
18094 abbrev_ptr += bytes_read;
18095 abbrev_form = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
18096 abbrev_ptr += bytes_read;
18097 if (abbrev_form == DW_FORM_implicit_const)
18098 {
18099 implicit_const = read_signed_leb128 (abfd, abbrev_ptr,
18100 &bytes_read);
18101 abbrev_ptr += bytes_read;
18102 }
18103 else
18104 {
18105 /* Initialize it due to a false compiler warning. */
18106 implicit_const = -1;
18107 }
18108
18109 if (abbrev_name == 0)
18110 break;
18111
18112 if (cur_abbrev->num_attrs == allocated_attrs)
18113 {
18114 allocated_attrs += ATTR_ALLOC_CHUNK;
18115 cur_attrs
18116 = XRESIZEVEC (struct attr_abbrev, cur_attrs, allocated_attrs);
18117 }
18118
18119 cur_attrs[cur_abbrev->num_attrs].name
18120 = (enum dwarf_attribute) abbrev_name;
18121 cur_attrs[cur_abbrev->num_attrs].form
18122 = (enum dwarf_form) abbrev_form;
18123 cur_attrs[cur_abbrev->num_attrs].implicit_const = implicit_const;
18124 ++cur_abbrev->num_attrs;
18125 }
18126
18127 cur_abbrev->attrs =
18128 XOBNEWVEC (&abbrev_table->abbrev_obstack, struct attr_abbrev,
18129 cur_abbrev->num_attrs);
18130 memcpy (cur_abbrev->attrs, cur_attrs,
18131 cur_abbrev->num_attrs * sizeof (struct attr_abbrev));
18132
18133 abbrev_table->add_abbrev (abbrev_number, cur_abbrev);
18134
18135 /* Get next abbreviation.
18136 Under Irix6 the abbreviations for a compilation unit are not
18137 always properly terminated with an abbrev number of 0.
18138 Exit loop if we encounter an abbreviation which we have
18139 already read (which means we are about to read the abbreviations
18140 for the next compile unit) or if the end of the abbreviation
18141 table is reached. */
18142 if ((unsigned int) (abbrev_ptr - section->buffer) >= section->size)
18143 break;
18144 abbrev_number = read_unsigned_leb128 (abfd, abbrev_ptr, &bytes_read);
18145 abbrev_ptr += bytes_read;
18146 if (abbrev_table->lookup_abbrev (abbrev_number) != NULL)
18147 break;
18148 }
18149
18150 xfree (cur_attrs);
18151 return abbrev_table;
18152 }
18153
18154 /* Returns nonzero if TAG represents a type that we might generate a partial
18155 symbol for. */
18156
18157 static int
18158 is_type_tag_for_partial (int tag)
18159 {
18160 switch (tag)
18161 {
18162 #if 0
18163 /* Some types that would be reasonable to generate partial symbols for,
18164 that we don't at present. */
18165 case DW_TAG_array_type:
18166 case DW_TAG_file_type:
18167 case DW_TAG_ptr_to_member_type:
18168 case DW_TAG_set_type:
18169 case DW_TAG_string_type:
18170 case DW_TAG_subroutine_type:
18171 #endif
18172 case DW_TAG_base_type:
18173 case DW_TAG_class_type:
18174 case DW_TAG_interface_type:
18175 case DW_TAG_enumeration_type:
18176 case DW_TAG_structure_type:
18177 case DW_TAG_subrange_type:
18178 case DW_TAG_typedef:
18179 case DW_TAG_union_type:
18180 return 1;
18181 default:
18182 return 0;
18183 }
18184 }
18185
18186 /* Load all DIEs that are interesting for partial symbols into memory. */
18187
18188 static struct partial_die_info *
18189 load_partial_dies (const struct die_reader_specs *reader,
18190 const gdb_byte *info_ptr, int building_psymtab)
18191 {
18192 struct dwarf2_cu *cu = reader->cu;
18193 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
18194 struct partial_die_info *parent_die, *last_die, *first_die = NULL;
18195 unsigned int bytes_read;
18196 unsigned int load_all = 0;
18197 int nesting_level = 1;
18198
18199 parent_die = NULL;
18200 last_die = NULL;
18201
18202 gdb_assert (cu->per_cu != NULL);
18203 if (cu->per_cu->load_all_dies)
18204 load_all = 1;
18205
18206 cu->partial_dies
18207 = htab_create_alloc_ex (cu->header.length / 12,
18208 partial_die_hash,
18209 partial_die_eq,
18210 NULL,
18211 &cu->comp_unit_obstack,
18212 hashtab_obstack_allocate,
18213 dummy_obstack_deallocate);
18214
18215 while (1)
18216 {
18217 abbrev_info *abbrev = peek_die_abbrev (*reader, info_ptr, &bytes_read);
18218
18219 /* A NULL abbrev means the end of a series of children. */
18220 if (abbrev == NULL)
18221 {
18222 if (--nesting_level == 0)
18223 return first_die;
18224
18225 info_ptr += bytes_read;
18226 last_die = parent_die;
18227 parent_die = parent_die->die_parent;
18228 continue;
18229 }
18230
18231 /* Check for template arguments. We never save these; if
18232 they're seen, we just mark the parent, and go on our way. */
18233 if (parent_die != NULL
18234 && cu->language == language_cplus
18235 && (abbrev->tag == DW_TAG_template_type_param
18236 || abbrev->tag == DW_TAG_template_value_param))
18237 {
18238 parent_die->has_template_arguments = 1;
18239
18240 if (!load_all)
18241 {
18242 /* We don't need a partial DIE for the template argument. */
18243 info_ptr = skip_one_die (reader, info_ptr + bytes_read, abbrev);
18244 continue;
18245 }
18246 }
18247
18248 /* We only recurse into c++ subprograms looking for template arguments.
18249 Skip their other children. */
18250 if (!load_all
18251 && cu->language == language_cplus
18252 && parent_die != NULL
18253 && parent_die->tag == DW_TAG_subprogram)
18254 {
18255 info_ptr = skip_one_die (reader, info_ptr + bytes_read, abbrev);
18256 continue;
18257 }
18258
18259 /* Check whether this DIE is interesting enough to save. Normally
18260 we would not be interested in members here, but there may be
18261 later variables referencing them via DW_AT_specification (for
18262 static members). */
18263 if (!load_all
18264 && !is_type_tag_for_partial (abbrev->tag)
18265 && abbrev->tag != DW_TAG_constant
18266 && abbrev->tag != DW_TAG_enumerator
18267 && abbrev->tag != DW_TAG_subprogram
18268 && abbrev->tag != DW_TAG_inlined_subroutine
18269 && abbrev->tag != DW_TAG_lexical_block
18270 && abbrev->tag != DW_TAG_variable
18271 && abbrev->tag != DW_TAG_namespace
18272 && abbrev->tag != DW_TAG_module
18273 && abbrev->tag != DW_TAG_member
18274 && abbrev->tag != DW_TAG_imported_unit
18275 && abbrev->tag != DW_TAG_imported_declaration)
18276 {
18277 /* Otherwise we skip to the next sibling, if any. */
18278 info_ptr = skip_one_die (reader, info_ptr + bytes_read, abbrev);
18279 continue;
18280 }
18281
18282 struct partial_die_info pdi ((sect_offset) (info_ptr - reader->buffer),
18283 abbrev);
18284
18285 info_ptr = pdi.read (reader, *abbrev, info_ptr + bytes_read);
18286
18287 /* This two-pass algorithm for processing partial symbols has a
18288 high cost in cache pressure. Thus, handle some simple cases
18289 here which cover the majority of C partial symbols. DIEs
18290 which neither have specification tags in them, nor could have
18291 specification tags elsewhere pointing at them, can simply be
18292 processed and discarded.
18293
18294 This segment is also optional; scan_partial_symbols and
18295 add_partial_symbol will handle these DIEs if we chain
18296 them in normally. When compilers which do not emit large
18297 quantities of duplicate debug information are more common,
18298 this code can probably be removed. */
18299
18300 /* Any complete simple types at the top level (pretty much all
18301 of them, for a language without namespaces), can be processed
18302 directly. */
18303 if (parent_die == NULL
18304 && pdi.has_specification == 0
18305 && pdi.is_declaration == 0
18306 && ((pdi.tag == DW_TAG_typedef && !pdi.has_children)
18307 || pdi.tag == DW_TAG_base_type
18308 || pdi.tag == DW_TAG_subrange_type))
18309 {
18310 if (building_psymtab && pdi.name != NULL)
18311 add_psymbol_to_list (pdi.name, strlen (pdi.name), 0,
18312 VAR_DOMAIN, LOC_TYPEDEF,
18313 &objfile->static_psymbols,
18314 0, cu->language, objfile);
18315 info_ptr = locate_pdi_sibling (reader, &pdi, info_ptr);
18316 continue;
18317 }
18318
18319 /* The exception for DW_TAG_typedef with has_children above is
18320 a workaround of GCC PR debug/47510. In the case of this complaint
18321 type_name_no_tag_or_error will error on such types later.
18322
18323 GDB skipped children of DW_TAG_typedef by the shortcut above and then
18324 it could not find the child DIEs referenced later, this is checked
18325 above. In correct DWARF DW_TAG_typedef should have no children. */
18326
18327 if (pdi.tag == DW_TAG_typedef && pdi.has_children)
18328 complaint (&symfile_complaints,
18329 _("DW_TAG_typedef has childen - GCC PR debug/47510 bug "
18330 "- DIE at %s [in module %s]"),
18331 sect_offset_str (pdi.sect_off), objfile_name (objfile));
18332
18333 /* If we're at the second level, and we're an enumerator, and
18334 our parent has no specification (meaning possibly lives in a
18335 namespace elsewhere), then we can add the partial symbol now
18336 instead of queueing it. */
18337 if (pdi.tag == DW_TAG_enumerator
18338 && parent_die != NULL
18339 && parent_die->die_parent == NULL
18340 && parent_die->tag == DW_TAG_enumeration_type
18341 && parent_die->has_specification == 0)
18342 {
18343 if (pdi.name == NULL)
18344 complaint (&symfile_complaints,
18345 _("malformed enumerator DIE ignored"));
18346 else if (building_psymtab)
18347 add_psymbol_to_list (pdi.name, strlen (pdi.name), 0,
18348 VAR_DOMAIN, LOC_CONST,
18349 cu->language == language_cplus
18350 ? &objfile->global_psymbols
18351 : &objfile->static_psymbols,
18352 0, cu->language, objfile);
18353
18354 info_ptr = locate_pdi_sibling (reader, &pdi, info_ptr);
18355 continue;
18356 }
18357
18358 struct partial_die_info *part_die
18359 = new (&cu->comp_unit_obstack) partial_die_info (pdi);
18360
18361 /* We'll save this DIE so link it in. */
18362 part_die->die_parent = parent_die;
18363 part_die->die_sibling = NULL;
18364 part_die->die_child = NULL;
18365
18366 if (last_die && last_die == parent_die)
18367 last_die->die_child = part_die;
18368 else if (last_die)
18369 last_die->die_sibling = part_die;
18370
18371 last_die = part_die;
18372
18373 if (first_die == NULL)
18374 first_die = part_die;
18375
18376 /* Maybe add the DIE to the hash table. Not all DIEs that we
18377 find interesting need to be in the hash table, because we
18378 also have the parent/sibling/child chains; only those that we
18379 might refer to by offset later during partial symbol reading.
18380
18381 For now this means things that might have be the target of a
18382 DW_AT_specification, DW_AT_abstract_origin, or
18383 DW_AT_extension. DW_AT_extension will refer only to
18384 namespaces; DW_AT_abstract_origin refers to functions (and
18385 many things under the function DIE, but we do not recurse
18386 into function DIEs during partial symbol reading) and
18387 possibly variables as well; DW_AT_specification refers to
18388 declarations. Declarations ought to have the DW_AT_declaration
18389 flag. It happens that GCC forgets to put it in sometimes, but
18390 only for functions, not for types.
18391
18392 Adding more things than necessary to the hash table is harmless
18393 except for the performance cost. Adding too few will result in
18394 wasted time in find_partial_die, when we reread the compilation
18395 unit with load_all_dies set. */
18396
18397 if (load_all
18398 || abbrev->tag == DW_TAG_constant
18399 || abbrev->tag == DW_TAG_subprogram
18400 || abbrev->tag == DW_TAG_variable
18401 || abbrev->tag == DW_TAG_namespace
18402 || part_die->is_declaration)
18403 {
18404 void **slot;
18405
18406 slot = htab_find_slot_with_hash (cu->partial_dies, part_die,
18407 to_underlying (part_die->sect_off),
18408 INSERT);
18409 *slot = part_die;
18410 }
18411
18412 /* For some DIEs we want to follow their children (if any). For C
18413 we have no reason to follow the children of structures; for other
18414 languages we have to, so that we can get at method physnames
18415 to infer fully qualified class names, for DW_AT_specification,
18416 and for C++ template arguments. For C++, we also look one level
18417 inside functions to find template arguments (if the name of the
18418 function does not already contain the template arguments).
18419
18420 For Ada, we need to scan the children of subprograms and lexical
18421 blocks as well because Ada allows the definition of nested
18422 entities that could be interesting for the debugger, such as
18423 nested subprograms for instance. */
18424 if (last_die->has_children
18425 && (load_all
18426 || last_die->tag == DW_TAG_namespace
18427 || last_die->tag == DW_TAG_module
18428 || last_die->tag == DW_TAG_enumeration_type
18429 || (cu->language == language_cplus
18430 && last_die->tag == DW_TAG_subprogram
18431 && (last_die->name == NULL
18432 || strchr (last_die->name, '<') == NULL))
18433 || (cu->language != language_c
18434 && (last_die->tag == DW_TAG_class_type
18435 || last_die->tag == DW_TAG_interface_type
18436 || last_die->tag == DW_TAG_structure_type
18437 || last_die->tag == DW_TAG_union_type))
18438 || (cu->language == language_ada
18439 && (last_die->tag == DW_TAG_subprogram
18440 || last_die->tag == DW_TAG_lexical_block))))
18441 {
18442 nesting_level++;
18443 parent_die = last_die;
18444 continue;
18445 }
18446
18447 /* Otherwise we skip to the next sibling, if any. */
18448 info_ptr = locate_pdi_sibling (reader, last_die, info_ptr);
18449
18450 /* Back to the top, do it again. */
18451 }
18452 }
18453
18454 partial_die_info::partial_die_info (sect_offset sect_off_,
18455 struct abbrev_info *abbrev)
18456 : partial_die_info (sect_off_, abbrev->tag, abbrev->has_children)
18457 {
18458 }
18459
18460 /* Read a minimal amount of information into the minimal die structure.
18461 INFO_PTR should point just after the initial uleb128 of a DIE. */
18462
18463 const gdb_byte *
18464 partial_die_info::read (const struct die_reader_specs *reader,
18465 const struct abbrev_info &abbrev, const gdb_byte *info_ptr)
18466 {
18467 struct dwarf2_cu *cu = reader->cu;
18468 struct dwarf2_per_objfile *dwarf2_per_objfile
18469 = cu->per_cu->dwarf2_per_objfile;
18470 unsigned int i;
18471 int has_low_pc_attr = 0;
18472 int has_high_pc_attr = 0;
18473 int high_pc_relative = 0;
18474
18475 for (i = 0; i < abbrev.num_attrs; ++i)
18476 {
18477 struct attribute attr;
18478
18479 info_ptr = read_attribute (reader, &attr, &abbrev.attrs[i], info_ptr);
18480
18481 /* Store the data if it is of an attribute we want to keep in a
18482 partial symbol table. */
18483 switch (attr.name)
18484 {
18485 case DW_AT_name:
18486 switch (tag)
18487 {
18488 case DW_TAG_compile_unit:
18489 case DW_TAG_partial_unit:
18490 case DW_TAG_type_unit:
18491 /* Compilation units have a DW_AT_name that is a filename, not
18492 a source language identifier. */
18493 case DW_TAG_enumeration_type:
18494 case DW_TAG_enumerator:
18495 /* These tags always have simple identifiers already; no need
18496 to canonicalize them. */
18497 name = DW_STRING (&attr);
18498 break;
18499 default:
18500 {
18501 struct objfile *objfile = dwarf2_per_objfile->objfile;
18502
18503 name
18504 = dwarf2_canonicalize_name (DW_STRING (&attr), cu,
18505 &objfile->per_bfd->storage_obstack);
18506 }
18507 break;
18508 }
18509 break;
18510 case DW_AT_linkage_name:
18511 case DW_AT_MIPS_linkage_name:
18512 /* Note that both forms of linkage name might appear. We
18513 assume they will be the same, and we only store the last
18514 one we see. */
18515 if (cu->language == language_ada)
18516 name = DW_STRING (&attr);
18517 linkage_name = DW_STRING (&attr);
18518 break;
18519 case DW_AT_low_pc:
18520 has_low_pc_attr = 1;
18521 lowpc = attr_value_as_address (&attr);
18522 break;
18523 case DW_AT_high_pc:
18524 has_high_pc_attr = 1;
18525 highpc = attr_value_as_address (&attr);
18526 if (cu->header.version >= 4 && attr_form_is_constant (&attr))
18527 high_pc_relative = 1;
18528 break;
18529 case DW_AT_location:
18530 /* Support the .debug_loc offsets. */
18531 if (attr_form_is_block (&attr))
18532 {
18533 d.locdesc = DW_BLOCK (&attr);
18534 }
18535 else if (attr_form_is_section_offset (&attr))
18536 {
18537 dwarf2_complex_location_expr_complaint ();
18538 }
18539 else
18540 {
18541 dwarf2_invalid_attrib_class_complaint ("DW_AT_location",
18542 "partial symbol information");
18543 }
18544 break;
18545 case DW_AT_external:
18546 is_external = DW_UNSND (&attr);
18547 break;
18548 case DW_AT_declaration:
18549 is_declaration = DW_UNSND (&attr);
18550 break;
18551 case DW_AT_type:
18552 has_type = 1;
18553 break;
18554 case DW_AT_abstract_origin:
18555 case DW_AT_specification:
18556 case DW_AT_extension:
18557 has_specification = 1;
18558 spec_offset = dwarf2_get_ref_die_offset (&attr);
18559 spec_is_dwz = (attr.form == DW_FORM_GNU_ref_alt
18560 || cu->per_cu->is_dwz);
18561 break;
18562 case DW_AT_sibling:
18563 /* Ignore absolute siblings, they might point outside of
18564 the current compile unit. */
18565 if (attr.form == DW_FORM_ref_addr)
18566 complaint (&symfile_complaints,
18567 _("ignoring absolute DW_AT_sibling"));
18568 else
18569 {
18570 const gdb_byte *buffer = reader->buffer;
18571 sect_offset off = dwarf2_get_ref_die_offset (&attr);
18572 const gdb_byte *sibling_ptr = buffer + to_underlying (off);
18573
18574 if (sibling_ptr < info_ptr)
18575 complaint (&symfile_complaints,
18576 _("DW_AT_sibling points backwards"));
18577 else if (sibling_ptr > reader->buffer_end)
18578 dwarf2_section_buffer_overflow_complaint (reader->die_section);
18579 else
18580 sibling = sibling_ptr;
18581 }
18582 break;
18583 case DW_AT_byte_size:
18584 has_byte_size = 1;
18585 break;
18586 case DW_AT_const_value:
18587 has_const_value = 1;
18588 break;
18589 case DW_AT_calling_convention:
18590 /* DWARF doesn't provide a way to identify a program's source-level
18591 entry point. DW_AT_calling_convention attributes are only meant
18592 to describe functions' calling conventions.
18593
18594 However, because it's a necessary piece of information in
18595 Fortran, and before DWARF 4 DW_CC_program was the only
18596 piece of debugging information whose definition refers to
18597 a 'main program' at all, several compilers marked Fortran
18598 main programs with DW_CC_program --- even when those
18599 functions use the standard calling conventions.
18600
18601 Although DWARF now specifies a way to provide this
18602 information, we support this practice for backward
18603 compatibility. */
18604 if (DW_UNSND (&attr) == DW_CC_program
18605 && cu->language == language_fortran)
18606 main_subprogram = 1;
18607 break;
18608 case DW_AT_inline:
18609 if (DW_UNSND (&attr) == DW_INL_inlined
18610 || DW_UNSND (&attr) == DW_INL_declared_inlined)
18611 may_be_inlined = 1;
18612 break;
18613
18614 case DW_AT_import:
18615 if (tag == DW_TAG_imported_unit)
18616 {
18617 d.sect_off = dwarf2_get_ref_die_offset (&attr);
18618 is_dwz = (attr.form == DW_FORM_GNU_ref_alt
18619 || cu->per_cu->is_dwz);
18620 }
18621 break;
18622
18623 case DW_AT_main_subprogram:
18624 main_subprogram = DW_UNSND (&attr);
18625 break;
18626
18627 default:
18628 break;
18629 }
18630 }
18631
18632 if (high_pc_relative)
18633 highpc += lowpc;
18634
18635 if (has_low_pc_attr && has_high_pc_attr)
18636 {
18637 /* When using the GNU linker, .gnu.linkonce. sections are used to
18638 eliminate duplicate copies of functions and vtables and such.
18639 The linker will arbitrarily choose one and discard the others.
18640 The AT_*_pc values for such functions refer to local labels in
18641 these sections. If the section from that file was discarded, the
18642 labels are not in the output, so the relocs get a value of 0.
18643 If this is a discarded function, mark the pc bounds as invalid,
18644 so that GDB will ignore it. */
18645 if (lowpc == 0 && !dwarf2_per_objfile->has_section_at_zero)
18646 {
18647 struct objfile *objfile = dwarf2_per_objfile->objfile;
18648 struct gdbarch *gdbarch = get_objfile_arch (objfile);
18649
18650 complaint (&symfile_complaints,
18651 _("DW_AT_low_pc %s is zero "
18652 "for DIE at %s [in module %s]"),
18653 paddress (gdbarch, lowpc),
18654 sect_offset_str (sect_off),
18655 objfile_name (objfile));
18656 }
18657 /* dwarf2_get_pc_bounds has also the strict low < high requirement. */
18658 else if (lowpc >= highpc)
18659 {
18660 struct objfile *objfile = dwarf2_per_objfile->objfile;
18661 struct gdbarch *gdbarch = get_objfile_arch (objfile);
18662
18663 complaint (&symfile_complaints,
18664 _("DW_AT_low_pc %s is not < DW_AT_high_pc %s "
18665 "for DIE at %s [in module %s]"),
18666 paddress (gdbarch, lowpc),
18667 paddress (gdbarch, highpc),
18668 sect_offset_str (sect_off),
18669 objfile_name (objfile));
18670 }
18671 else
18672 has_pc_info = 1;
18673 }
18674
18675 return info_ptr;
18676 }
18677
18678 /* Find a cached partial DIE at OFFSET in CU. */
18679
18680 struct partial_die_info *
18681 dwarf2_cu::find_partial_die (sect_offset sect_off)
18682 {
18683 struct partial_die_info *lookup_die = NULL;
18684 struct partial_die_info part_die (sect_off);
18685
18686 lookup_die = ((struct partial_die_info *)
18687 htab_find_with_hash (partial_dies, &part_die,
18688 to_underlying (sect_off)));
18689
18690 return lookup_die;
18691 }
18692
18693 /* Find a partial DIE at OFFSET, which may or may not be in CU,
18694 except in the case of .debug_types DIEs which do not reference
18695 outside their CU (they do however referencing other types via
18696 DW_FORM_ref_sig8). */
18697
18698 static struct partial_die_info *
18699 find_partial_die (sect_offset sect_off, int offset_in_dwz, struct dwarf2_cu *cu)
18700 {
18701 struct dwarf2_per_objfile *dwarf2_per_objfile
18702 = cu->per_cu->dwarf2_per_objfile;
18703 struct objfile *objfile = dwarf2_per_objfile->objfile;
18704 struct dwarf2_per_cu_data *per_cu = NULL;
18705 struct partial_die_info *pd = NULL;
18706
18707 if (offset_in_dwz == cu->per_cu->is_dwz
18708 && offset_in_cu_p (&cu->header, sect_off))
18709 {
18710 pd = cu->find_partial_die (sect_off);
18711 if (pd != NULL)
18712 return pd;
18713 /* We missed recording what we needed.
18714 Load all dies and try again. */
18715 per_cu = cu->per_cu;
18716 }
18717 else
18718 {
18719 /* TUs don't reference other CUs/TUs (except via type signatures). */
18720 if (cu->per_cu->is_debug_types)
18721 {
18722 error (_("Dwarf Error: Type Unit at offset %s contains"
18723 " external reference to offset %s [in module %s].\n"),
18724 sect_offset_str (cu->header.sect_off), sect_offset_str (sect_off),
18725 bfd_get_filename (objfile->obfd));
18726 }
18727 per_cu = dwarf2_find_containing_comp_unit (sect_off, offset_in_dwz,
18728 dwarf2_per_objfile);
18729
18730 if (per_cu->cu == NULL || per_cu->cu->partial_dies == NULL)
18731 load_partial_comp_unit (per_cu);
18732
18733 per_cu->cu->last_used = 0;
18734 pd = per_cu->cu->find_partial_die (sect_off);
18735 }
18736
18737 /* If we didn't find it, and not all dies have been loaded,
18738 load them all and try again. */
18739
18740 if (pd == NULL && per_cu->load_all_dies == 0)
18741 {
18742 per_cu->load_all_dies = 1;
18743
18744 /* This is nasty. When we reread the DIEs, somewhere up the call chain
18745 THIS_CU->cu may already be in use. So we can't just free it and
18746 replace its DIEs with the ones we read in. Instead, we leave those
18747 DIEs alone (which can still be in use, e.g. in scan_partial_symbols),
18748 and clobber THIS_CU->cu->partial_dies with the hash table for the new
18749 set. */
18750 load_partial_comp_unit (per_cu);
18751
18752 pd = per_cu->cu->find_partial_die (sect_off);
18753 }
18754
18755 if (pd == NULL)
18756 internal_error (__FILE__, __LINE__,
18757 _("could not find partial DIE %s "
18758 "in cache [from module %s]\n"),
18759 sect_offset_str (sect_off), bfd_get_filename (objfile->obfd));
18760 return pd;
18761 }
18762
18763 /* See if we can figure out if the class lives in a namespace. We do
18764 this by looking for a member function; its demangled name will
18765 contain namespace info, if there is any. */
18766
18767 static void
18768 guess_partial_die_structure_name (struct partial_die_info *struct_pdi,
18769 struct dwarf2_cu *cu)
18770 {
18771 /* NOTE: carlton/2003-10-07: Getting the info this way changes
18772 what template types look like, because the demangler
18773 frequently doesn't give the same name as the debug info. We
18774 could fix this by only using the demangled name to get the
18775 prefix (but see comment in read_structure_type). */
18776
18777 struct partial_die_info *real_pdi;
18778 struct partial_die_info *child_pdi;
18779
18780 /* If this DIE (this DIE's specification, if any) has a parent, then
18781 we should not do this. We'll prepend the parent's fully qualified
18782 name when we create the partial symbol. */
18783
18784 real_pdi = struct_pdi;
18785 while (real_pdi->has_specification)
18786 real_pdi = find_partial_die (real_pdi->spec_offset,
18787 real_pdi->spec_is_dwz, cu);
18788
18789 if (real_pdi->die_parent != NULL)
18790 return;
18791
18792 for (child_pdi = struct_pdi->die_child;
18793 child_pdi != NULL;
18794 child_pdi = child_pdi->die_sibling)
18795 {
18796 if (child_pdi->tag == DW_TAG_subprogram
18797 && child_pdi->linkage_name != NULL)
18798 {
18799 char *actual_class_name
18800 = language_class_name_from_physname (cu->language_defn,
18801 child_pdi->linkage_name);
18802 if (actual_class_name != NULL)
18803 {
18804 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
18805 struct_pdi->name
18806 = ((const char *)
18807 obstack_copy0 (&objfile->per_bfd->storage_obstack,
18808 actual_class_name,
18809 strlen (actual_class_name)));
18810 xfree (actual_class_name);
18811 }
18812 break;
18813 }
18814 }
18815 }
18816
18817 void
18818 partial_die_info::fixup (struct dwarf2_cu *cu)
18819 {
18820 /* Once we've fixed up a die, there's no point in doing so again.
18821 This also avoids a memory leak if we were to call
18822 guess_partial_die_structure_name multiple times. */
18823 if (fixup_called)
18824 return;
18825
18826 /* If we found a reference attribute and the DIE has no name, try
18827 to find a name in the referred to DIE. */
18828
18829 if (name == NULL && has_specification)
18830 {
18831 struct partial_die_info *spec_die;
18832
18833 spec_die = find_partial_die (spec_offset, spec_is_dwz, cu);
18834
18835 spec_die->fixup (cu);
18836
18837 if (spec_die->name)
18838 {
18839 name = spec_die->name;
18840
18841 /* Copy DW_AT_external attribute if it is set. */
18842 if (spec_die->is_external)
18843 is_external = spec_die->is_external;
18844 }
18845 }
18846
18847 /* Set default names for some unnamed DIEs. */
18848
18849 if (name == NULL && tag == DW_TAG_namespace)
18850 name = CP_ANONYMOUS_NAMESPACE_STR;
18851
18852 /* If there is no parent die to provide a namespace, and there are
18853 children, see if we can determine the namespace from their linkage
18854 name. */
18855 if (cu->language == language_cplus
18856 && !VEC_empty (dwarf2_section_info_def,
18857 cu->per_cu->dwarf2_per_objfile->types)
18858 && die_parent == NULL
18859 && has_children
18860 && (tag == DW_TAG_class_type
18861 || tag == DW_TAG_structure_type
18862 || tag == DW_TAG_union_type))
18863 guess_partial_die_structure_name (this, cu);
18864
18865 /* GCC might emit a nameless struct or union that has a linkage
18866 name. See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47510. */
18867 if (name == NULL
18868 && (tag == DW_TAG_class_type
18869 || tag == DW_TAG_interface_type
18870 || tag == DW_TAG_structure_type
18871 || tag == DW_TAG_union_type)
18872 && linkage_name != NULL)
18873 {
18874 char *demangled;
18875
18876 demangled = gdb_demangle (linkage_name, DMGL_TYPES);
18877 if (demangled)
18878 {
18879 const char *base;
18880
18881 /* Strip any leading namespaces/classes, keep only the base name.
18882 DW_AT_name for named DIEs does not contain the prefixes. */
18883 base = strrchr (demangled, ':');
18884 if (base && base > demangled && base[-1] == ':')
18885 base++;
18886 else
18887 base = demangled;
18888
18889 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
18890 name
18891 = ((const char *)
18892 obstack_copy0 (&objfile->per_bfd->storage_obstack,
18893 base, strlen (base)));
18894 xfree (demangled);
18895 }
18896 }
18897
18898 fixup_called = 1;
18899 }
18900
18901 /* Read an attribute value described by an attribute form. */
18902
18903 static const gdb_byte *
18904 read_attribute_value (const struct die_reader_specs *reader,
18905 struct attribute *attr, unsigned form,
18906 LONGEST implicit_const, const gdb_byte *info_ptr)
18907 {
18908 struct dwarf2_cu *cu = reader->cu;
18909 struct dwarf2_per_objfile *dwarf2_per_objfile
18910 = cu->per_cu->dwarf2_per_objfile;
18911 struct objfile *objfile = dwarf2_per_objfile->objfile;
18912 struct gdbarch *gdbarch = get_objfile_arch (objfile);
18913 bfd *abfd = reader->abfd;
18914 struct comp_unit_head *cu_header = &cu->header;
18915 unsigned int bytes_read;
18916 struct dwarf_block *blk;
18917
18918 attr->form = (enum dwarf_form) form;
18919 switch (form)
18920 {
18921 case DW_FORM_ref_addr:
18922 if (cu->header.version == 2)
18923 DW_UNSND (attr) = read_address (abfd, info_ptr, cu, &bytes_read);
18924 else
18925 DW_UNSND (attr) = read_offset (abfd, info_ptr,
18926 &cu->header, &bytes_read);
18927 info_ptr += bytes_read;
18928 break;
18929 case DW_FORM_GNU_ref_alt:
18930 DW_UNSND (attr) = read_offset (abfd, info_ptr, &cu->header, &bytes_read);
18931 info_ptr += bytes_read;
18932 break;
18933 case DW_FORM_addr:
18934 DW_ADDR (attr) = read_address (abfd, info_ptr, cu, &bytes_read);
18935 DW_ADDR (attr) = gdbarch_adjust_dwarf2_addr (gdbarch, DW_ADDR (attr));
18936 info_ptr += bytes_read;
18937 break;
18938 case DW_FORM_block2:
18939 blk = dwarf_alloc_block (cu);
18940 blk->size = read_2_bytes (abfd, info_ptr);
18941 info_ptr += 2;
18942 blk->data = read_n_bytes (abfd, info_ptr, blk->size);
18943 info_ptr += blk->size;
18944 DW_BLOCK (attr) = blk;
18945 break;
18946 case DW_FORM_block4:
18947 blk = dwarf_alloc_block (cu);
18948 blk->size = read_4_bytes (abfd, info_ptr);
18949 info_ptr += 4;
18950 blk->data = read_n_bytes (abfd, info_ptr, blk->size);
18951 info_ptr += blk->size;
18952 DW_BLOCK (attr) = blk;
18953 break;
18954 case DW_FORM_data2:
18955 DW_UNSND (attr) = read_2_bytes (abfd, info_ptr);
18956 info_ptr += 2;
18957 break;
18958 case DW_FORM_data4:
18959 DW_UNSND (attr) = read_4_bytes (abfd, info_ptr);
18960 info_ptr += 4;
18961 break;
18962 case DW_FORM_data8:
18963 DW_UNSND (attr) = read_8_bytes (abfd, info_ptr);
18964 info_ptr += 8;
18965 break;
18966 case DW_FORM_data16:
18967 blk = dwarf_alloc_block (cu);
18968 blk->size = 16;
18969 blk->data = read_n_bytes (abfd, info_ptr, 16);
18970 info_ptr += 16;
18971 DW_BLOCK (attr) = blk;
18972 break;
18973 case DW_FORM_sec_offset:
18974 DW_UNSND (attr) = read_offset (abfd, info_ptr, &cu->header, &bytes_read);
18975 info_ptr += bytes_read;
18976 break;
18977 case DW_FORM_string:
18978 DW_STRING (attr) = read_direct_string (abfd, info_ptr, &bytes_read);
18979 DW_STRING_IS_CANONICAL (attr) = 0;
18980 info_ptr += bytes_read;
18981 break;
18982 case DW_FORM_strp:
18983 if (!cu->per_cu->is_dwz)
18984 {
18985 DW_STRING (attr) = read_indirect_string (dwarf2_per_objfile,
18986 abfd, info_ptr, cu_header,
18987 &bytes_read);
18988 DW_STRING_IS_CANONICAL (attr) = 0;
18989 info_ptr += bytes_read;
18990 break;
18991 }
18992 /* FALLTHROUGH */
18993 case DW_FORM_line_strp:
18994 if (!cu->per_cu->is_dwz)
18995 {
18996 DW_STRING (attr) = read_indirect_line_string (dwarf2_per_objfile,
18997 abfd, info_ptr,
18998 cu_header, &bytes_read);
18999 DW_STRING_IS_CANONICAL (attr) = 0;
19000 info_ptr += bytes_read;
19001 break;
19002 }
19003 /* FALLTHROUGH */
19004 case DW_FORM_GNU_strp_alt:
19005 {
19006 struct dwz_file *dwz = dwarf2_get_dwz_file (dwarf2_per_objfile);
19007 LONGEST str_offset = read_offset (abfd, info_ptr, cu_header,
19008 &bytes_read);
19009
19010 DW_STRING (attr) = read_indirect_string_from_dwz (objfile,
19011 dwz, str_offset);
19012 DW_STRING_IS_CANONICAL (attr) = 0;
19013 info_ptr += bytes_read;
19014 }
19015 break;
19016 case DW_FORM_exprloc:
19017 case DW_FORM_block:
19018 blk = dwarf_alloc_block (cu);
19019 blk->size = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
19020 info_ptr += bytes_read;
19021 blk->data = read_n_bytes (abfd, info_ptr, blk->size);
19022 info_ptr += blk->size;
19023 DW_BLOCK (attr) = blk;
19024 break;
19025 case DW_FORM_block1:
19026 blk = dwarf_alloc_block (cu);
19027 blk->size = read_1_byte (abfd, info_ptr);
19028 info_ptr += 1;
19029 blk->data = read_n_bytes (abfd, info_ptr, blk->size);
19030 info_ptr += blk->size;
19031 DW_BLOCK (attr) = blk;
19032 break;
19033 case DW_FORM_data1:
19034 DW_UNSND (attr) = read_1_byte (abfd, info_ptr);
19035 info_ptr += 1;
19036 break;
19037 case DW_FORM_flag:
19038 DW_UNSND (attr) = read_1_byte (abfd, info_ptr);
19039 info_ptr += 1;
19040 break;
19041 case DW_FORM_flag_present:
19042 DW_UNSND (attr) = 1;
19043 break;
19044 case DW_FORM_sdata:
19045 DW_SND (attr) = read_signed_leb128 (abfd, info_ptr, &bytes_read);
19046 info_ptr += bytes_read;
19047 break;
19048 case DW_FORM_udata:
19049 DW_UNSND (attr) = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
19050 info_ptr += bytes_read;
19051 break;
19052 case DW_FORM_ref1:
19053 DW_UNSND (attr) = (to_underlying (cu->header.sect_off)
19054 + read_1_byte (abfd, info_ptr));
19055 info_ptr += 1;
19056 break;
19057 case DW_FORM_ref2:
19058 DW_UNSND (attr) = (to_underlying (cu->header.sect_off)
19059 + read_2_bytes (abfd, info_ptr));
19060 info_ptr += 2;
19061 break;
19062 case DW_FORM_ref4:
19063 DW_UNSND (attr) = (to_underlying (cu->header.sect_off)
19064 + read_4_bytes (abfd, info_ptr));
19065 info_ptr += 4;
19066 break;
19067 case DW_FORM_ref8:
19068 DW_UNSND (attr) = (to_underlying (cu->header.sect_off)
19069 + read_8_bytes (abfd, info_ptr));
19070 info_ptr += 8;
19071 break;
19072 case DW_FORM_ref_sig8:
19073 DW_SIGNATURE (attr) = read_8_bytes (abfd, info_ptr);
19074 info_ptr += 8;
19075 break;
19076 case DW_FORM_ref_udata:
19077 DW_UNSND (attr) = (to_underlying (cu->header.sect_off)
19078 + read_unsigned_leb128 (abfd, info_ptr, &bytes_read));
19079 info_ptr += bytes_read;
19080 break;
19081 case DW_FORM_indirect:
19082 form = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
19083 info_ptr += bytes_read;
19084 if (form == DW_FORM_implicit_const)
19085 {
19086 implicit_const = read_signed_leb128 (abfd, info_ptr, &bytes_read);
19087 info_ptr += bytes_read;
19088 }
19089 info_ptr = read_attribute_value (reader, attr, form, implicit_const,
19090 info_ptr);
19091 break;
19092 case DW_FORM_implicit_const:
19093 DW_SND (attr) = implicit_const;
19094 break;
19095 case DW_FORM_GNU_addr_index:
19096 if (reader->dwo_file == NULL)
19097 {
19098 /* For now flag a hard error.
19099 Later we can turn this into a complaint. */
19100 error (_("Dwarf Error: %s found in non-DWO CU [in module %s]"),
19101 dwarf_form_name (form),
19102 bfd_get_filename (abfd));
19103 }
19104 DW_ADDR (attr) = read_addr_index_from_leb128 (cu, info_ptr, &bytes_read);
19105 info_ptr += bytes_read;
19106 break;
19107 case DW_FORM_GNU_str_index:
19108 if (reader->dwo_file == NULL)
19109 {
19110 /* For now flag a hard error.
19111 Later we can turn this into a complaint if warranted. */
19112 error (_("Dwarf Error: %s found in non-DWO CU [in module %s]"),
19113 dwarf_form_name (form),
19114 bfd_get_filename (abfd));
19115 }
19116 {
19117 ULONGEST str_index =
19118 read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
19119
19120 DW_STRING (attr) = read_str_index (reader, str_index);
19121 DW_STRING_IS_CANONICAL (attr) = 0;
19122 info_ptr += bytes_read;
19123 }
19124 break;
19125 default:
19126 error (_("Dwarf Error: Cannot handle %s in DWARF reader [in module %s]"),
19127 dwarf_form_name (form),
19128 bfd_get_filename (abfd));
19129 }
19130
19131 /* Super hack. */
19132 if (cu->per_cu->is_dwz && attr_form_is_ref (attr))
19133 attr->form = DW_FORM_GNU_ref_alt;
19134
19135 /* We have seen instances where the compiler tried to emit a byte
19136 size attribute of -1 which ended up being encoded as an unsigned
19137 0xffffffff. Although 0xffffffff is technically a valid size value,
19138 an object of this size seems pretty unlikely so we can relatively
19139 safely treat these cases as if the size attribute was invalid and
19140 treat them as zero by default. */
19141 if (attr->name == DW_AT_byte_size
19142 && form == DW_FORM_data4
19143 && DW_UNSND (attr) >= 0xffffffff)
19144 {
19145 complaint
19146 (&symfile_complaints,
19147 _("Suspicious DW_AT_byte_size value treated as zero instead of %s"),
19148 hex_string (DW_UNSND (attr)));
19149 DW_UNSND (attr) = 0;
19150 }
19151
19152 return info_ptr;
19153 }
19154
19155 /* Read an attribute described by an abbreviated attribute. */
19156
19157 static const gdb_byte *
19158 read_attribute (const struct die_reader_specs *reader,
19159 struct attribute *attr, struct attr_abbrev *abbrev,
19160 const gdb_byte *info_ptr)
19161 {
19162 attr->name = abbrev->name;
19163 return read_attribute_value (reader, attr, abbrev->form,
19164 abbrev->implicit_const, info_ptr);
19165 }
19166
19167 /* Read dwarf information from a buffer. */
19168
19169 static unsigned int
19170 read_1_byte (bfd *abfd, const gdb_byte *buf)
19171 {
19172 return bfd_get_8 (abfd, buf);
19173 }
19174
19175 static int
19176 read_1_signed_byte (bfd *abfd, const gdb_byte *buf)
19177 {
19178 return bfd_get_signed_8 (abfd, buf);
19179 }
19180
19181 static unsigned int
19182 read_2_bytes (bfd *abfd, const gdb_byte *buf)
19183 {
19184 return bfd_get_16 (abfd, buf);
19185 }
19186
19187 static int
19188 read_2_signed_bytes (bfd *abfd, const gdb_byte *buf)
19189 {
19190 return bfd_get_signed_16 (abfd, buf);
19191 }
19192
19193 static unsigned int
19194 read_4_bytes (bfd *abfd, const gdb_byte *buf)
19195 {
19196 return bfd_get_32 (abfd, buf);
19197 }
19198
19199 static int
19200 read_4_signed_bytes (bfd *abfd, const gdb_byte *buf)
19201 {
19202 return bfd_get_signed_32 (abfd, buf);
19203 }
19204
19205 static ULONGEST
19206 read_8_bytes (bfd *abfd, const gdb_byte *buf)
19207 {
19208 return bfd_get_64 (abfd, buf);
19209 }
19210
19211 static CORE_ADDR
19212 read_address (bfd *abfd, const gdb_byte *buf, struct dwarf2_cu *cu,
19213 unsigned int *bytes_read)
19214 {
19215 struct comp_unit_head *cu_header = &cu->header;
19216 CORE_ADDR retval = 0;
19217
19218 if (cu_header->signed_addr_p)
19219 {
19220 switch (cu_header->addr_size)
19221 {
19222 case 2:
19223 retval = bfd_get_signed_16 (abfd, buf);
19224 break;
19225 case 4:
19226 retval = bfd_get_signed_32 (abfd, buf);
19227 break;
19228 case 8:
19229 retval = bfd_get_signed_64 (abfd, buf);
19230 break;
19231 default:
19232 internal_error (__FILE__, __LINE__,
19233 _("read_address: bad switch, signed [in module %s]"),
19234 bfd_get_filename (abfd));
19235 }
19236 }
19237 else
19238 {
19239 switch (cu_header->addr_size)
19240 {
19241 case 2:
19242 retval = bfd_get_16 (abfd, buf);
19243 break;
19244 case 4:
19245 retval = bfd_get_32 (abfd, buf);
19246 break;
19247 case 8:
19248 retval = bfd_get_64 (abfd, buf);
19249 break;
19250 default:
19251 internal_error (__FILE__, __LINE__,
19252 _("read_address: bad switch, "
19253 "unsigned [in module %s]"),
19254 bfd_get_filename (abfd));
19255 }
19256 }
19257
19258 *bytes_read = cu_header->addr_size;
19259 return retval;
19260 }
19261
19262 /* Read the initial length from a section. The (draft) DWARF 3
19263 specification allows the initial length to take up either 4 bytes
19264 or 12 bytes. If the first 4 bytes are 0xffffffff, then the next 8
19265 bytes describe the length and all offsets will be 8 bytes in length
19266 instead of 4.
19267
19268 An older, non-standard 64-bit format is also handled by this
19269 function. The older format in question stores the initial length
19270 as an 8-byte quantity without an escape value. Lengths greater
19271 than 2^32 aren't very common which means that the initial 4 bytes
19272 is almost always zero. Since a length value of zero doesn't make
19273 sense for the 32-bit format, this initial zero can be considered to
19274 be an escape value which indicates the presence of the older 64-bit
19275 format. As written, the code can't detect (old format) lengths
19276 greater than 4GB. If it becomes necessary to handle lengths
19277 somewhat larger than 4GB, we could allow other small values (such
19278 as the non-sensical values of 1, 2, and 3) to also be used as
19279 escape values indicating the presence of the old format.
19280
19281 The value returned via bytes_read should be used to increment the
19282 relevant pointer after calling read_initial_length().
19283
19284 [ Note: read_initial_length() and read_offset() are based on the
19285 document entitled "DWARF Debugging Information Format", revision
19286 3, draft 8, dated November 19, 2001. This document was obtained
19287 from:
19288
19289 http://reality.sgiweb.org/davea/dwarf3-draft8-011125.pdf
19290
19291 This document is only a draft and is subject to change. (So beware.)
19292
19293 Details regarding the older, non-standard 64-bit format were
19294 determined empirically by examining 64-bit ELF files produced by
19295 the SGI toolchain on an IRIX 6.5 machine.
19296
19297 - Kevin, July 16, 2002
19298 ] */
19299
19300 static LONGEST
19301 read_initial_length (bfd *abfd, const gdb_byte *buf, unsigned int *bytes_read)
19302 {
19303 LONGEST length = bfd_get_32 (abfd, buf);
19304
19305 if (length == 0xffffffff)
19306 {
19307 length = bfd_get_64 (abfd, buf + 4);
19308 *bytes_read = 12;
19309 }
19310 else if (length == 0)
19311 {
19312 /* Handle the (non-standard) 64-bit DWARF2 format used by IRIX. */
19313 length = bfd_get_64 (abfd, buf);
19314 *bytes_read = 8;
19315 }
19316 else
19317 {
19318 *bytes_read = 4;
19319 }
19320
19321 return length;
19322 }
19323
19324 /* Cover function for read_initial_length.
19325 Returns the length of the object at BUF, and stores the size of the
19326 initial length in *BYTES_READ and stores the size that offsets will be in
19327 *OFFSET_SIZE.
19328 If the initial length size is not equivalent to that specified in
19329 CU_HEADER then issue a complaint.
19330 This is useful when reading non-comp-unit headers. */
19331
19332 static LONGEST
19333 read_checked_initial_length_and_offset (bfd *abfd, const gdb_byte *buf,
19334 const struct comp_unit_head *cu_header,
19335 unsigned int *bytes_read,
19336 unsigned int *offset_size)
19337 {
19338 LONGEST length = read_initial_length (abfd, buf, bytes_read);
19339
19340 gdb_assert (cu_header->initial_length_size == 4
19341 || cu_header->initial_length_size == 8
19342 || cu_header->initial_length_size == 12);
19343
19344 if (cu_header->initial_length_size != *bytes_read)
19345 complaint (&symfile_complaints,
19346 _("intermixed 32-bit and 64-bit DWARF sections"));
19347
19348 *offset_size = (*bytes_read == 4) ? 4 : 8;
19349 return length;
19350 }
19351
19352 /* Read an offset from the data stream. The size of the offset is
19353 given by cu_header->offset_size. */
19354
19355 static LONGEST
19356 read_offset (bfd *abfd, const gdb_byte *buf,
19357 const struct comp_unit_head *cu_header,
19358 unsigned int *bytes_read)
19359 {
19360 LONGEST offset = read_offset_1 (abfd, buf, cu_header->offset_size);
19361
19362 *bytes_read = cu_header->offset_size;
19363 return offset;
19364 }
19365
19366 /* Read an offset from the data stream. */
19367
19368 static LONGEST
19369 read_offset_1 (bfd *abfd, const gdb_byte *buf, unsigned int offset_size)
19370 {
19371 LONGEST retval = 0;
19372
19373 switch (offset_size)
19374 {
19375 case 4:
19376 retval = bfd_get_32 (abfd, buf);
19377 break;
19378 case 8:
19379 retval = bfd_get_64 (abfd, buf);
19380 break;
19381 default:
19382 internal_error (__FILE__, __LINE__,
19383 _("read_offset_1: bad switch [in module %s]"),
19384 bfd_get_filename (abfd));
19385 }
19386
19387 return retval;
19388 }
19389
19390 static const gdb_byte *
19391 read_n_bytes (bfd *abfd, const gdb_byte *buf, unsigned int size)
19392 {
19393 /* If the size of a host char is 8 bits, we can return a pointer
19394 to the buffer, otherwise we have to copy the data to a buffer
19395 allocated on the temporary obstack. */
19396 gdb_assert (HOST_CHAR_BIT == 8);
19397 return buf;
19398 }
19399
19400 static const char *
19401 read_direct_string (bfd *abfd, const gdb_byte *buf,
19402 unsigned int *bytes_read_ptr)
19403 {
19404 /* If the size of a host char is 8 bits, we can return a pointer
19405 to the string, otherwise we have to copy the string to a buffer
19406 allocated on the temporary obstack. */
19407 gdb_assert (HOST_CHAR_BIT == 8);
19408 if (*buf == '\0')
19409 {
19410 *bytes_read_ptr = 1;
19411 return NULL;
19412 }
19413 *bytes_read_ptr = strlen ((const char *) buf) + 1;
19414 return (const char *) buf;
19415 }
19416
19417 /* Return pointer to string at section SECT offset STR_OFFSET with error
19418 reporting strings FORM_NAME and SECT_NAME. */
19419
19420 static const char *
19421 read_indirect_string_at_offset_from (struct objfile *objfile,
19422 bfd *abfd, LONGEST str_offset,
19423 struct dwarf2_section_info *sect,
19424 const char *form_name,
19425 const char *sect_name)
19426 {
19427 dwarf2_read_section (objfile, sect);
19428 if (sect->buffer == NULL)
19429 error (_("%s used without %s section [in module %s]"),
19430 form_name, sect_name, bfd_get_filename (abfd));
19431 if (str_offset >= sect->size)
19432 error (_("%s pointing outside of %s section [in module %s]"),
19433 form_name, sect_name, bfd_get_filename (abfd));
19434 gdb_assert (HOST_CHAR_BIT == 8);
19435 if (sect->buffer[str_offset] == '\0')
19436 return NULL;
19437 return (const char *) (sect->buffer + str_offset);
19438 }
19439
19440 /* Return pointer to string at .debug_str offset STR_OFFSET. */
19441
19442 static const char *
19443 read_indirect_string_at_offset (struct dwarf2_per_objfile *dwarf2_per_objfile,
19444 bfd *abfd, LONGEST str_offset)
19445 {
19446 return read_indirect_string_at_offset_from (dwarf2_per_objfile->objfile,
19447 abfd, str_offset,
19448 &dwarf2_per_objfile->str,
19449 "DW_FORM_strp", ".debug_str");
19450 }
19451
19452 /* Return pointer to string at .debug_line_str offset STR_OFFSET. */
19453
19454 static const char *
19455 read_indirect_line_string_at_offset (struct dwarf2_per_objfile *dwarf2_per_objfile,
19456 bfd *abfd, LONGEST str_offset)
19457 {
19458 return read_indirect_string_at_offset_from (dwarf2_per_objfile->objfile,
19459 abfd, str_offset,
19460 &dwarf2_per_objfile->line_str,
19461 "DW_FORM_line_strp",
19462 ".debug_line_str");
19463 }
19464
19465 /* Read a string at offset STR_OFFSET in the .debug_str section from
19466 the .dwz file DWZ. Throw an error if the offset is too large. If
19467 the string consists of a single NUL byte, return NULL; otherwise
19468 return a pointer to the string. */
19469
19470 static const char *
19471 read_indirect_string_from_dwz (struct objfile *objfile, struct dwz_file *dwz,
19472 LONGEST str_offset)
19473 {
19474 dwarf2_read_section (objfile, &dwz->str);
19475
19476 if (dwz->str.buffer == NULL)
19477 error (_("DW_FORM_GNU_strp_alt used without .debug_str "
19478 "section [in module %s]"),
19479 bfd_get_filename (dwz->dwz_bfd));
19480 if (str_offset >= dwz->str.size)
19481 error (_("DW_FORM_GNU_strp_alt pointing outside of "
19482 ".debug_str section [in module %s]"),
19483 bfd_get_filename (dwz->dwz_bfd));
19484 gdb_assert (HOST_CHAR_BIT == 8);
19485 if (dwz->str.buffer[str_offset] == '\0')
19486 return NULL;
19487 return (const char *) (dwz->str.buffer + str_offset);
19488 }
19489
19490 /* Return pointer to string at .debug_str offset as read from BUF.
19491 BUF is assumed to be in a compilation unit described by CU_HEADER.
19492 Return *BYTES_READ_PTR count of bytes read from BUF. */
19493
19494 static const char *
19495 read_indirect_string (struct dwarf2_per_objfile *dwarf2_per_objfile, bfd *abfd,
19496 const gdb_byte *buf,
19497 const struct comp_unit_head *cu_header,
19498 unsigned int *bytes_read_ptr)
19499 {
19500 LONGEST str_offset = read_offset (abfd, buf, cu_header, bytes_read_ptr);
19501
19502 return read_indirect_string_at_offset (dwarf2_per_objfile, abfd, str_offset);
19503 }
19504
19505 /* Return pointer to string at .debug_line_str offset as read from BUF.
19506 BUF is assumed to be in a compilation unit described by CU_HEADER.
19507 Return *BYTES_READ_PTR count of bytes read from BUF. */
19508
19509 static const char *
19510 read_indirect_line_string (struct dwarf2_per_objfile *dwarf2_per_objfile,
19511 bfd *abfd, const gdb_byte *buf,
19512 const struct comp_unit_head *cu_header,
19513 unsigned int *bytes_read_ptr)
19514 {
19515 LONGEST str_offset = read_offset (abfd, buf, cu_header, bytes_read_ptr);
19516
19517 return read_indirect_line_string_at_offset (dwarf2_per_objfile, abfd,
19518 str_offset);
19519 }
19520
19521 ULONGEST
19522 read_unsigned_leb128 (bfd *abfd, const gdb_byte *buf,
19523 unsigned int *bytes_read_ptr)
19524 {
19525 ULONGEST result;
19526 unsigned int num_read;
19527 int shift;
19528 unsigned char byte;
19529
19530 result = 0;
19531 shift = 0;
19532 num_read = 0;
19533 while (1)
19534 {
19535 byte = bfd_get_8 (abfd, buf);
19536 buf++;
19537 num_read++;
19538 result |= ((ULONGEST) (byte & 127) << shift);
19539 if ((byte & 128) == 0)
19540 {
19541 break;
19542 }
19543 shift += 7;
19544 }
19545 *bytes_read_ptr = num_read;
19546 return result;
19547 }
19548
19549 static LONGEST
19550 read_signed_leb128 (bfd *abfd, const gdb_byte *buf,
19551 unsigned int *bytes_read_ptr)
19552 {
19553 LONGEST result;
19554 int shift, num_read;
19555 unsigned char byte;
19556
19557 result = 0;
19558 shift = 0;
19559 num_read = 0;
19560 while (1)
19561 {
19562 byte = bfd_get_8 (abfd, buf);
19563 buf++;
19564 num_read++;
19565 result |= ((LONGEST) (byte & 127) << shift);
19566 shift += 7;
19567 if ((byte & 128) == 0)
19568 {
19569 break;
19570 }
19571 }
19572 if ((shift < 8 * sizeof (result)) && (byte & 0x40))
19573 result |= -(((LONGEST) 1) << shift);
19574 *bytes_read_ptr = num_read;
19575 return result;
19576 }
19577
19578 /* Given index ADDR_INDEX in .debug_addr, fetch the value.
19579 ADDR_BASE is the DW_AT_GNU_addr_base attribute or zero.
19580 ADDR_SIZE is the size of addresses from the CU header. */
19581
19582 static CORE_ADDR
19583 read_addr_index_1 (struct dwarf2_per_objfile *dwarf2_per_objfile,
19584 unsigned int addr_index, ULONGEST addr_base, int addr_size)
19585 {
19586 struct objfile *objfile = dwarf2_per_objfile->objfile;
19587 bfd *abfd = objfile->obfd;
19588 const gdb_byte *info_ptr;
19589
19590 dwarf2_read_section (objfile, &dwarf2_per_objfile->addr);
19591 if (dwarf2_per_objfile->addr.buffer == NULL)
19592 error (_("DW_FORM_addr_index used without .debug_addr section [in module %s]"),
19593 objfile_name (objfile));
19594 if (addr_base + addr_index * addr_size >= dwarf2_per_objfile->addr.size)
19595 error (_("DW_FORM_addr_index pointing outside of "
19596 ".debug_addr section [in module %s]"),
19597 objfile_name (objfile));
19598 info_ptr = (dwarf2_per_objfile->addr.buffer
19599 + addr_base + addr_index * addr_size);
19600 if (addr_size == 4)
19601 return bfd_get_32 (abfd, info_ptr);
19602 else
19603 return bfd_get_64 (abfd, info_ptr);
19604 }
19605
19606 /* Given index ADDR_INDEX in .debug_addr, fetch the value. */
19607
19608 static CORE_ADDR
19609 read_addr_index (struct dwarf2_cu *cu, unsigned int addr_index)
19610 {
19611 return read_addr_index_1 (cu->per_cu->dwarf2_per_objfile, addr_index,
19612 cu->addr_base, cu->header.addr_size);
19613 }
19614
19615 /* Given a pointer to an leb128 value, fetch the value from .debug_addr. */
19616
19617 static CORE_ADDR
19618 read_addr_index_from_leb128 (struct dwarf2_cu *cu, const gdb_byte *info_ptr,
19619 unsigned int *bytes_read)
19620 {
19621 bfd *abfd = cu->per_cu->dwarf2_per_objfile->objfile->obfd;
19622 unsigned int addr_index = read_unsigned_leb128 (abfd, info_ptr, bytes_read);
19623
19624 return read_addr_index (cu, addr_index);
19625 }
19626
19627 /* Data structure to pass results from dwarf2_read_addr_index_reader
19628 back to dwarf2_read_addr_index. */
19629
19630 struct dwarf2_read_addr_index_data
19631 {
19632 ULONGEST addr_base;
19633 int addr_size;
19634 };
19635
19636 /* die_reader_func for dwarf2_read_addr_index. */
19637
19638 static void
19639 dwarf2_read_addr_index_reader (const struct die_reader_specs *reader,
19640 const gdb_byte *info_ptr,
19641 struct die_info *comp_unit_die,
19642 int has_children,
19643 void *data)
19644 {
19645 struct dwarf2_cu *cu = reader->cu;
19646 struct dwarf2_read_addr_index_data *aidata =
19647 (struct dwarf2_read_addr_index_data *) data;
19648
19649 aidata->addr_base = cu->addr_base;
19650 aidata->addr_size = cu->header.addr_size;
19651 }
19652
19653 /* Given an index in .debug_addr, fetch the value.
19654 NOTE: This can be called during dwarf expression evaluation,
19655 long after the debug information has been read, and thus per_cu->cu
19656 may no longer exist. */
19657
19658 CORE_ADDR
19659 dwarf2_read_addr_index (struct dwarf2_per_cu_data *per_cu,
19660 unsigned int addr_index)
19661 {
19662 struct dwarf2_per_objfile *dwarf2_per_objfile = per_cu->dwarf2_per_objfile;
19663 struct objfile *objfile = dwarf2_per_objfile->objfile;
19664 struct dwarf2_cu *cu = per_cu->cu;
19665 ULONGEST addr_base;
19666 int addr_size;
19667
19668 /* We need addr_base and addr_size.
19669 If we don't have PER_CU->cu, we have to get it.
19670 Nasty, but the alternative is storing the needed info in PER_CU,
19671 which at this point doesn't seem justified: it's not clear how frequently
19672 it would get used and it would increase the size of every PER_CU.
19673 Entry points like dwarf2_per_cu_addr_size do a similar thing
19674 so we're not in uncharted territory here.
19675 Alas we need to be a bit more complicated as addr_base is contained
19676 in the DIE.
19677
19678 We don't need to read the entire CU(/TU).
19679 We just need the header and top level die.
19680
19681 IWBN to use the aging mechanism to let us lazily later discard the CU.
19682 For now we skip this optimization. */
19683
19684 if (cu != NULL)
19685 {
19686 addr_base = cu->addr_base;
19687 addr_size = cu->header.addr_size;
19688 }
19689 else
19690 {
19691 struct dwarf2_read_addr_index_data aidata;
19692
19693 /* Note: We can't use init_cutu_and_read_dies_simple here,
19694 we need addr_base. */
19695 init_cutu_and_read_dies (per_cu, NULL, 0, 0,
19696 dwarf2_read_addr_index_reader, &aidata);
19697 addr_base = aidata.addr_base;
19698 addr_size = aidata.addr_size;
19699 }
19700
19701 return read_addr_index_1 (dwarf2_per_objfile, addr_index, addr_base,
19702 addr_size);
19703 }
19704
19705 /* Given a DW_FORM_GNU_str_index, fetch the string.
19706 This is only used by the Fission support. */
19707
19708 static const char *
19709 read_str_index (const struct die_reader_specs *reader, ULONGEST str_index)
19710 {
19711 struct dwarf2_cu *cu = reader->cu;
19712 struct dwarf2_per_objfile *dwarf2_per_objfile
19713 = cu->per_cu->dwarf2_per_objfile;
19714 struct objfile *objfile = dwarf2_per_objfile->objfile;
19715 const char *objf_name = objfile_name (objfile);
19716 bfd *abfd = objfile->obfd;
19717 struct dwarf2_section_info *str_section = &reader->dwo_file->sections.str;
19718 struct dwarf2_section_info *str_offsets_section =
19719 &reader->dwo_file->sections.str_offsets;
19720 const gdb_byte *info_ptr;
19721 ULONGEST str_offset;
19722 static const char form_name[] = "DW_FORM_GNU_str_index";
19723
19724 dwarf2_read_section (objfile, str_section);
19725 dwarf2_read_section (objfile, str_offsets_section);
19726 if (str_section->buffer == NULL)
19727 error (_("%s used without .debug_str.dwo section"
19728 " in CU at offset %s [in module %s]"),
19729 form_name, sect_offset_str (cu->header.sect_off), objf_name);
19730 if (str_offsets_section->buffer == NULL)
19731 error (_("%s used without .debug_str_offsets.dwo section"
19732 " in CU at offset %s [in module %s]"),
19733 form_name, sect_offset_str (cu->header.sect_off), objf_name);
19734 if (str_index * cu->header.offset_size >= str_offsets_section->size)
19735 error (_("%s pointing outside of .debug_str_offsets.dwo"
19736 " section in CU at offset %s [in module %s]"),
19737 form_name, sect_offset_str (cu->header.sect_off), objf_name);
19738 info_ptr = (str_offsets_section->buffer
19739 + str_index * cu->header.offset_size);
19740 if (cu->header.offset_size == 4)
19741 str_offset = bfd_get_32 (abfd, info_ptr);
19742 else
19743 str_offset = bfd_get_64 (abfd, info_ptr);
19744 if (str_offset >= str_section->size)
19745 error (_("Offset from %s pointing outside of"
19746 " .debug_str.dwo section in CU at offset %s [in module %s]"),
19747 form_name, sect_offset_str (cu->header.sect_off), objf_name);
19748 return (const char *) (str_section->buffer + str_offset);
19749 }
19750
19751 /* Return the length of an LEB128 number in BUF. */
19752
19753 static int
19754 leb128_size (const gdb_byte *buf)
19755 {
19756 const gdb_byte *begin = buf;
19757 gdb_byte byte;
19758
19759 while (1)
19760 {
19761 byte = *buf++;
19762 if ((byte & 128) == 0)
19763 return buf - begin;
19764 }
19765 }
19766
19767 static void
19768 set_cu_language (unsigned int lang, struct dwarf2_cu *cu)
19769 {
19770 switch (lang)
19771 {
19772 case DW_LANG_C89:
19773 case DW_LANG_C99:
19774 case DW_LANG_C11:
19775 case DW_LANG_C:
19776 case DW_LANG_UPC:
19777 cu->language = language_c;
19778 break;
19779 case DW_LANG_Java:
19780 case DW_LANG_C_plus_plus:
19781 case DW_LANG_C_plus_plus_11:
19782 case DW_LANG_C_plus_plus_14:
19783 cu->language = language_cplus;
19784 break;
19785 case DW_LANG_D:
19786 cu->language = language_d;
19787 break;
19788 case DW_LANG_Fortran77:
19789 case DW_LANG_Fortran90:
19790 case DW_LANG_Fortran95:
19791 case DW_LANG_Fortran03:
19792 case DW_LANG_Fortran08:
19793 cu->language = language_fortran;
19794 break;
19795 case DW_LANG_Go:
19796 cu->language = language_go;
19797 break;
19798 case DW_LANG_Mips_Assembler:
19799 cu->language = language_asm;
19800 break;
19801 case DW_LANG_Ada83:
19802 case DW_LANG_Ada95:
19803 cu->language = language_ada;
19804 break;
19805 case DW_LANG_Modula2:
19806 cu->language = language_m2;
19807 break;
19808 case DW_LANG_Pascal83:
19809 cu->language = language_pascal;
19810 break;
19811 case DW_LANG_ObjC:
19812 cu->language = language_objc;
19813 break;
19814 case DW_LANG_Rust:
19815 case DW_LANG_Rust_old:
19816 cu->language = language_rust;
19817 break;
19818 case DW_LANG_Cobol74:
19819 case DW_LANG_Cobol85:
19820 default:
19821 cu->language = language_minimal;
19822 break;
19823 }
19824 cu->language_defn = language_def (cu->language);
19825 }
19826
19827 /* Return the named attribute or NULL if not there. */
19828
19829 static struct attribute *
19830 dwarf2_attr (struct die_info *die, unsigned int name, struct dwarf2_cu *cu)
19831 {
19832 for (;;)
19833 {
19834 unsigned int i;
19835 struct attribute *spec = NULL;
19836
19837 for (i = 0; i < die->num_attrs; ++i)
19838 {
19839 if (die->attrs[i].name == name)
19840 return &die->attrs[i];
19841 if (die->attrs[i].name == DW_AT_specification
19842 || die->attrs[i].name == DW_AT_abstract_origin)
19843 spec = &die->attrs[i];
19844 }
19845
19846 if (!spec)
19847 break;
19848
19849 die = follow_die_ref (die, spec, &cu);
19850 }
19851
19852 return NULL;
19853 }
19854
19855 /* Return the named attribute or NULL if not there,
19856 but do not follow DW_AT_specification, etc.
19857 This is for use in contexts where we're reading .debug_types dies.
19858 Following DW_AT_specification, DW_AT_abstract_origin will take us
19859 back up the chain, and we want to go down. */
19860
19861 static struct attribute *
19862 dwarf2_attr_no_follow (struct die_info *die, unsigned int name)
19863 {
19864 unsigned int i;
19865
19866 for (i = 0; i < die->num_attrs; ++i)
19867 if (die->attrs[i].name == name)
19868 return &die->attrs[i];
19869
19870 return NULL;
19871 }
19872
19873 /* Return the string associated with a string-typed attribute, or NULL if it
19874 is either not found or is of an incorrect type. */
19875
19876 static const char *
19877 dwarf2_string_attr (struct die_info *die, unsigned int name, struct dwarf2_cu *cu)
19878 {
19879 struct attribute *attr;
19880 const char *str = NULL;
19881
19882 attr = dwarf2_attr (die, name, cu);
19883
19884 if (attr != NULL)
19885 {
19886 if (attr->form == DW_FORM_strp || attr->form == DW_FORM_line_strp
19887 || attr->form == DW_FORM_string
19888 || attr->form == DW_FORM_GNU_str_index
19889 || attr->form == DW_FORM_GNU_strp_alt)
19890 str = DW_STRING (attr);
19891 else
19892 complaint (&symfile_complaints,
19893 _("string type expected for attribute %s for "
19894 "DIE at %s in module %s"),
19895 dwarf_attr_name (name), sect_offset_str (die->sect_off),
19896 objfile_name (cu->per_cu->dwarf2_per_objfile->objfile));
19897 }
19898
19899 return str;
19900 }
19901
19902 /* Return non-zero iff the attribute NAME is defined for the given DIE,
19903 and holds a non-zero value. This function should only be used for
19904 DW_FORM_flag or DW_FORM_flag_present attributes. */
19905
19906 static int
19907 dwarf2_flag_true_p (struct die_info *die, unsigned name, struct dwarf2_cu *cu)
19908 {
19909 struct attribute *attr = dwarf2_attr (die, name, cu);
19910
19911 return (attr && DW_UNSND (attr));
19912 }
19913
19914 static int
19915 die_is_declaration (struct die_info *die, struct dwarf2_cu *cu)
19916 {
19917 /* A DIE is a declaration if it has a DW_AT_declaration attribute
19918 which value is non-zero. However, we have to be careful with
19919 DIEs having a DW_AT_specification attribute, because dwarf2_attr()
19920 (via dwarf2_flag_true_p) follows this attribute. So we may
19921 end up accidently finding a declaration attribute that belongs
19922 to a different DIE referenced by the specification attribute,
19923 even though the given DIE does not have a declaration attribute. */
19924 return (dwarf2_flag_true_p (die, DW_AT_declaration, cu)
19925 && dwarf2_attr (die, DW_AT_specification, cu) == NULL);
19926 }
19927
19928 /* Return the die giving the specification for DIE, if there is
19929 one. *SPEC_CU is the CU containing DIE on input, and the CU
19930 containing the return value on output. If there is no
19931 specification, but there is an abstract origin, that is
19932 returned. */
19933
19934 static struct die_info *
19935 die_specification (struct die_info *die, struct dwarf2_cu **spec_cu)
19936 {
19937 struct attribute *spec_attr = dwarf2_attr (die, DW_AT_specification,
19938 *spec_cu);
19939
19940 if (spec_attr == NULL)
19941 spec_attr = dwarf2_attr (die, DW_AT_abstract_origin, *spec_cu);
19942
19943 if (spec_attr == NULL)
19944 return NULL;
19945 else
19946 return follow_die_ref (die, spec_attr, spec_cu);
19947 }
19948
19949 /* Stub for free_line_header to match void * callback types. */
19950
19951 static void
19952 free_line_header_voidp (void *arg)
19953 {
19954 struct line_header *lh = (struct line_header *) arg;
19955
19956 delete lh;
19957 }
19958
19959 void
19960 line_header::add_include_dir (const char *include_dir)
19961 {
19962 if (dwarf_line_debug >= 2)
19963 fprintf_unfiltered (gdb_stdlog, "Adding dir %zu: %s\n",
19964 include_dirs.size () + 1, include_dir);
19965
19966 include_dirs.push_back (include_dir);
19967 }
19968
19969 void
19970 line_header::add_file_name (const char *name,
19971 dir_index d_index,
19972 unsigned int mod_time,
19973 unsigned int length)
19974 {
19975 if (dwarf_line_debug >= 2)
19976 fprintf_unfiltered (gdb_stdlog, "Adding file %u: %s\n",
19977 (unsigned) file_names.size () + 1, name);
19978
19979 file_names.emplace_back (name, d_index, mod_time, length);
19980 }
19981
19982 /* A convenience function to find the proper .debug_line section for a CU. */
19983
19984 static struct dwarf2_section_info *
19985 get_debug_line_section (struct dwarf2_cu *cu)
19986 {
19987 struct dwarf2_section_info *section;
19988 struct dwarf2_per_objfile *dwarf2_per_objfile
19989 = cu->per_cu->dwarf2_per_objfile;
19990
19991 /* For TUs in DWO files, the DW_AT_stmt_list attribute lives in the
19992 DWO file. */
19993 if (cu->dwo_unit && cu->per_cu->is_debug_types)
19994 section = &cu->dwo_unit->dwo_file->sections.line;
19995 else if (cu->per_cu->is_dwz)
19996 {
19997 struct dwz_file *dwz = dwarf2_get_dwz_file (dwarf2_per_objfile);
19998
19999 section = &dwz->line;
20000 }
20001 else
20002 section = &dwarf2_per_objfile->line;
20003
20004 return section;
20005 }
20006
20007 /* Read directory or file name entry format, starting with byte of
20008 format count entries, ULEB128 pairs of entry formats, ULEB128 of
20009 entries count and the entries themselves in the described entry
20010 format. */
20011
20012 static void
20013 read_formatted_entries (struct dwarf2_per_objfile *dwarf2_per_objfile,
20014 bfd *abfd, const gdb_byte **bufp,
20015 struct line_header *lh,
20016 const struct comp_unit_head *cu_header,
20017 void (*callback) (struct line_header *lh,
20018 const char *name,
20019 dir_index d_index,
20020 unsigned int mod_time,
20021 unsigned int length))
20022 {
20023 gdb_byte format_count, formati;
20024 ULONGEST data_count, datai;
20025 const gdb_byte *buf = *bufp;
20026 const gdb_byte *format_header_data;
20027 unsigned int bytes_read;
20028
20029 format_count = read_1_byte (abfd, buf);
20030 buf += 1;
20031 format_header_data = buf;
20032 for (formati = 0; formati < format_count; formati++)
20033 {
20034 read_unsigned_leb128 (abfd, buf, &bytes_read);
20035 buf += bytes_read;
20036 read_unsigned_leb128 (abfd, buf, &bytes_read);
20037 buf += bytes_read;
20038 }
20039
20040 data_count = read_unsigned_leb128 (abfd, buf, &bytes_read);
20041 buf += bytes_read;
20042 for (datai = 0; datai < data_count; datai++)
20043 {
20044 const gdb_byte *format = format_header_data;
20045 struct file_entry fe;
20046
20047 for (formati = 0; formati < format_count; formati++)
20048 {
20049 ULONGEST content_type = read_unsigned_leb128 (abfd, format, &bytes_read);
20050 format += bytes_read;
20051
20052 ULONGEST form = read_unsigned_leb128 (abfd, format, &bytes_read);
20053 format += bytes_read;
20054
20055 gdb::optional<const char *> string;
20056 gdb::optional<unsigned int> uint;
20057
20058 switch (form)
20059 {
20060 case DW_FORM_string:
20061 string.emplace (read_direct_string (abfd, buf, &bytes_read));
20062 buf += bytes_read;
20063 break;
20064
20065 case DW_FORM_line_strp:
20066 string.emplace (read_indirect_line_string (dwarf2_per_objfile,
20067 abfd, buf,
20068 cu_header,
20069 &bytes_read));
20070 buf += bytes_read;
20071 break;
20072
20073 case DW_FORM_data1:
20074 uint.emplace (read_1_byte (abfd, buf));
20075 buf += 1;
20076 break;
20077
20078 case DW_FORM_data2:
20079 uint.emplace (read_2_bytes (abfd, buf));
20080 buf += 2;
20081 break;
20082
20083 case DW_FORM_data4:
20084 uint.emplace (read_4_bytes (abfd, buf));
20085 buf += 4;
20086 break;
20087
20088 case DW_FORM_data8:
20089 uint.emplace (read_8_bytes (abfd, buf));
20090 buf += 8;
20091 break;
20092
20093 case DW_FORM_udata:
20094 uint.emplace (read_unsigned_leb128 (abfd, buf, &bytes_read));
20095 buf += bytes_read;
20096 break;
20097
20098 case DW_FORM_block:
20099 /* It is valid only for DW_LNCT_timestamp which is ignored by
20100 current GDB. */
20101 break;
20102 }
20103
20104 switch (content_type)
20105 {
20106 case DW_LNCT_path:
20107 if (string.has_value ())
20108 fe.name = *string;
20109 break;
20110 case DW_LNCT_directory_index:
20111 if (uint.has_value ())
20112 fe.d_index = (dir_index) *uint;
20113 break;
20114 case DW_LNCT_timestamp:
20115 if (uint.has_value ())
20116 fe.mod_time = *uint;
20117 break;
20118 case DW_LNCT_size:
20119 if (uint.has_value ())
20120 fe.length = *uint;
20121 break;
20122 case DW_LNCT_MD5:
20123 break;
20124 default:
20125 complaint (&symfile_complaints,
20126 _("Unknown format content type %s"),
20127 pulongest (content_type));
20128 }
20129 }
20130
20131 callback (lh, fe.name, fe.d_index, fe.mod_time, fe.length);
20132 }
20133
20134 *bufp = buf;
20135 }
20136
20137 /* Read the statement program header starting at OFFSET in
20138 .debug_line, or .debug_line.dwo. Return a pointer
20139 to a struct line_header, allocated using xmalloc.
20140 Returns NULL if there is a problem reading the header, e.g., if it
20141 has a version we don't understand.
20142
20143 NOTE: the strings in the include directory and file name tables of
20144 the returned object point into the dwarf line section buffer,
20145 and must not be freed. */
20146
20147 static line_header_up
20148 dwarf_decode_line_header (sect_offset sect_off, struct dwarf2_cu *cu)
20149 {
20150 const gdb_byte *line_ptr;
20151 unsigned int bytes_read, offset_size;
20152 int i;
20153 const char *cur_dir, *cur_file;
20154 struct dwarf2_section_info *section;
20155 bfd *abfd;
20156 struct dwarf2_per_objfile *dwarf2_per_objfile
20157 = cu->per_cu->dwarf2_per_objfile;
20158
20159 section = get_debug_line_section (cu);
20160 dwarf2_read_section (dwarf2_per_objfile->objfile, section);
20161 if (section->buffer == NULL)
20162 {
20163 if (cu->dwo_unit && cu->per_cu->is_debug_types)
20164 complaint (&symfile_complaints, _("missing .debug_line.dwo section"));
20165 else
20166 complaint (&symfile_complaints, _("missing .debug_line section"));
20167 return 0;
20168 }
20169
20170 /* We can't do this until we know the section is non-empty.
20171 Only then do we know we have such a section. */
20172 abfd = get_section_bfd_owner (section);
20173
20174 /* Make sure that at least there's room for the total_length field.
20175 That could be 12 bytes long, but we're just going to fudge that. */
20176 if (to_underlying (sect_off) + 4 >= section->size)
20177 {
20178 dwarf2_statement_list_fits_in_line_number_section_complaint ();
20179 return 0;
20180 }
20181
20182 line_header_up lh (new line_header ());
20183
20184 lh->sect_off = sect_off;
20185 lh->offset_in_dwz = cu->per_cu->is_dwz;
20186
20187 line_ptr = section->buffer + to_underlying (sect_off);
20188
20189 /* Read in the header. */
20190 lh->total_length =
20191 read_checked_initial_length_and_offset (abfd, line_ptr, &cu->header,
20192 &bytes_read, &offset_size);
20193 line_ptr += bytes_read;
20194 if (line_ptr + lh->total_length > (section->buffer + section->size))
20195 {
20196 dwarf2_statement_list_fits_in_line_number_section_complaint ();
20197 return 0;
20198 }
20199 lh->statement_program_end = line_ptr + lh->total_length;
20200 lh->version = read_2_bytes (abfd, line_ptr);
20201 line_ptr += 2;
20202 if (lh->version > 5)
20203 {
20204 /* This is a version we don't understand. The format could have
20205 changed in ways we don't handle properly so just punt. */
20206 complaint (&symfile_complaints,
20207 _("unsupported version in .debug_line section"));
20208 return NULL;
20209 }
20210 if (lh->version >= 5)
20211 {
20212 gdb_byte segment_selector_size;
20213
20214 /* Skip address size. */
20215 read_1_byte (abfd, line_ptr);
20216 line_ptr += 1;
20217
20218 segment_selector_size = read_1_byte (abfd, line_ptr);
20219 line_ptr += 1;
20220 if (segment_selector_size != 0)
20221 {
20222 complaint (&symfile_complaints,
20223 _("unsupported segment selector size %u "
20224 "in .debug_line section"),
20225 segment_selector_size);
20226 return NULL;
20227 }
20228 }
20229 lh->header_length = read_offset_1 (abfd, line_ptr, offset_size);
20230 line_ptr += offset_size;
20231 lh->minimum_instruction_length = read_1_byte (abfd, line_ptr);
20232 line_ptr += 1;
20233 if (lh->version >= 4)
20234 {
20235 lh->maximum_ops_per_instruction = read_1_byte (abfd, line_ptr);
20236 line_ptr += 1;
20237 }
20238 else
20239 lh->maximum_ops_per_instruction = 1;
20240
20241 if (lh->maximum_ops_per_instruction == 0)
20242 {
20243 lh->maximum_ops_per_instruction = 1;
20244 complaint (&symfile_complaints,
20245 _("invalid maximum_ops_per_instruction "
20246 "in `.debug_line' section"));
20247 }
20248
20249 lh->default_is_stmt = read_1_byte (abfd, line_ptr);
20250 line_ptr += 1;
20251 lh->line_base = read_1_signed_byte (abfd, line_ptr);
20252 line_ptr += 1;
20253 lh->line_range = read_1_byte (abfd, line_ptr);
20254 line_ptr += 1;
20255 lh->opcode_base = read_1_byte (abfd, line_ptr);
20256 line_ptr += 1;
20257 lh->standard_opcode_lengths.reset (new unsigned char[lh->opcode_base]);
20258
20259 lh->standard_opcode_lengths[0] = 1; /* This should never be used anyway. */
20260 for (i = 1; i < lh->opcode_base; ++i)
20261 {
20262 lh->standard_opcode_lengths[i] = read_1_byte (abfd, line_ptr);
20263 line_ptr += 1;
20264 }
20265
20266 if (lh->version >= 5)
20267 {
20268 /* Read directory table. */
20269 read_formatted_entries (dwarf2_per_objfile, abfd, &line_ptr, lh.get (),
20270 &cu->header,
20271 [] (struct line_header *lh, const char *name,
20272 dir_index d_index, unsigned int mod_time,
20273 unsigned int length)
20274 {
20275 lh->add_include_dir (name);
20276 });
20277
20278 /* Read file name table. */
20279 read_formatted_entries (dwarf2_per_objfile, abfd, &line_ptr, lh.get (),
20280 &cu->header,
20281 [] (struct line_header *lh, const char *name,
20282 dir_index d_index, unsigned int mod_time,
20283 unsigned int length)
20284 {
20285 lh->add_file_name (name, d_index, mod_time, length);
20286 });
20287 }
20288 else
20289 {
20290 /* Read directory table. */
20291 while ((cur_dir = read_direct_string (abfd, line_ptr, &bytes_read)) != NULL)
20292 {
20293 line_ptr += bytes_read;
20294 lh->add_include_dir (cur_dir);
20295 }
20296 line_ptr += bytes_read;
20297
20298 /* Read file name table. */
20299 while ((cur_file = read_direct_string (abfd, line_ptr, &bytes_read)) != NULL)
20300 {
20301 unsigned int mod_time, length;
20302 dir_index d_index;
20303
20304 line_ptr += bytes_read;
20305 d_index = (dir_index) read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
20306 line_ptr += bytes_read;
20307 mod_time = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
20308 line_ptr += bytes_read;
20309 length = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
20310 line_ptr += bytes_read;
20311
20312 lh->add_file_name (cur_file, d_index, mod_time, length);
20313 }
20314 line_ptr += bytes_read;
20315 }
20316 lh->statement_program_start = line_ptr;
20317
20318 if (line_ptr > (section->buffer + section->size))
20319 complaint (&symfile_complaints,
20320 _("line number info header doesn't "
20321 "fit in `.debug_line' section"));
20322
20323 return lh;
20324 }
20325
20326 /* Subroutine of dwarf_decode_lines to simplify it.
20327 Return the file name of the psymtab for included file FILE_INDEX
20328 in line header LH of PST.
20329 COMP_DIR is the compilation directory (DW_AT_comp_dir) or NULL if unknown.
20330 If space for the result is malloc'd, *NAME_HOLDER will be set.
20331 Returns NULL if FILE_INDEX should be ignored, i.e., it is pst->filename. */
20332
20333 static const char *
20334 psymtab_include_file_name (const struct line_header *lh, int file_index,
20335 const struct partial_symtab *pst,
20336 const char *comp_dir,
20337 gdb::unique_xmalloc_ptr<char> *name_holder)
20338 {
20339 const file_entry &fe = lh->file_names[file_index];
20340 const char *include_name = fe.name;
20341 const char *include_name_to_compare = include_name;
20342 const char *pst_filename;
20343 int file_is_pst;
20344
20345 const char *dir_name = fe.include_dir (lh);
20346
20347 gdb::unique_xmalloc_ptr<char> hold_compare;
20348 if (!IS_ABSOLUTE_PATH (include_name)
20349 && (dir_name != NULL || comp_dir != NULL))
20350 {
20351 /* Avoid creating a duplicate psymtab for PST.
20352 We do this by comparing INCLUDE_NAME and PST_FILENAME.
20353 Before we do the comparison, however, we need to account
20354 for DIR_NAME and COMP_DIR.
20355 First prepend dir_name (if non-NULL). If we still don't
20356 have an absolute path prepend comp_dir (if non-NULL).
20357 However, the directory we record in the include-file's
20358 psymtab does not contain COMP_DIR (to match the
20359 corresponding symtab(s)).
20360
20361 Example:
20362
20363 bash$ cd /tmp
20364 bash$ gcc -g ./hello.c
20365 include_name = "hello.c"
20366 dir_name = "."
20367 DW_AT_comp_dir = comp_dir = "/tmp"
20368 DW_AT_name = "./hello.c"
20369
20370 */
20371
20372 if (dir_name != NULL)
20373 {
20374 name_holder->reset (concat (dir_name, SLASH_STRING,
20375 include_name, (char *) NULL));
20376 include_name = name_holder->get ();
20377 include_name_to_compare = include_name;
20378 }
20379 if (!IS_ABSOLUTE_PATH (include_name) && comp_dir != NULL)
20380 {
20381 hold_compare.reset (concat (comp_dir, SLASH_STRING,
20382 include_name, (char *) NULL));
20383 include_name_to_compare = hold_compare.get ();
20384 }
20385 }
20386
20387 pst_filename = pst->filename;
20388 gdb::unique_xmalloc_ptr<char> copied_name;
20389 if (!IS_ABSOLUTE_PATH (pst_filename) && pst->dirname != NULL)
20390 {
20391 copied_name.reset (concat (pst->dirname, SLASH_STRING,
20392 pst_filename, (char *) NULL));
20393 pst_filename = copied_name.get ();
20394 }
20395
20396 file_is_pst = FILENAME_CMP (include_name_to_compare, pst_filename) == 0;
20397
20398 if (file_is_pst)
20399 return NULL;
20400 return include_name;
20401 }
20402
20403 /* State machine to track the state of the line number program. */
20404
20405 class lnp_state_machine
20406 {
20407 public:
20408 /* Initialize a machine state for the start of a line number
20409 program. */
20410 lnp_state_machine (gdbarch *arch, line_header *lh, bool record_lines_p);
20411
20412 file_entry *current_file ()
20413 {
20414 /* lh->file_names is 0-based, but the file name numbers in the
20415 statement program are 1-based. */
20416 return m_line_header->file_name_at (m_file);
20417 }
20418
20419 /* Record the line in the state machine. END_SEQUENCE is true if
20420 we're processing the end of a sequence. */
20421 void record_line (bool end_sequence);
20422
20423 /* Check address and if invalid nop-out the rest of the lines in this
20424 sequence. */
20425 void check_line_address (struct dwarf2_cu *cu,
20426 const gdb_byte *line_ptr,
20427 CORE_ADDR lowpc, CORE_ADDR address);
20428
20429 void handle_set_discriminator (unsigned int discriminator)
20430 {
20431 m_discriminator = discriminator;
20432 m_line_has_non_zero_discriminator |= discriminator != 0;
20433 }
20434
20435 /* Handle DW_LNE_set_address. */
20436 void handle_set_address (CORE_ADDR baseaddr, CORE_ADDR address)
20437 {
20438 m_op_index = 0;
20439 address += baseaddr;
20440 m_address = gdbarch_adjust_dwarf2_line (m_gdbarch, address, false);
20441 }
20442
20443 /* Handle DW_LNS_advance_pc. */
20444 void handle_advance_pc (CORE_ADDR adjust);
20445
20446 /* Handle a special opcode. */
20447 void handle_special_opcode (unsigned char op_code);
20448
20449 /* Handle DW_LNS_advance_line. */
20450 void handle_advance_line (int line_delta)
20451 {
20452 advance_line (line_delta);
20453 }
20454
20455 /* Handle DW_LNS_set_file. */
20456 void handle_set_file (file_name_index file);
20457
20458 /* Handle DW_LNS_negate_stmt. */
20459 void handle_negate_stmt ()
20460 {
20461 m_is_stmt = !m_is_stmt;
20462 }
20463
20464 /* Handle DW_LNS_const_add_pc. */
20465 void handle_const_add_pc ();
20466
20467 /* Handle DW_LNS_fixed_advance_pc. */
20468 void handle_fixed_advance_pc (CORE_ADDR addr_adj)
20469 {
20470 m_address += gdbarch_adjust_dwarf2_line (m_gdbarch, addr_adj, true);
20471 m_op_index = 0;
20472 }
20473
20474 /* Handle DW_LNS_copy. */
20475 void handle_copy ()
20476 {
20477 record_line (false);
20478 m_discriminator = 0;
20479 }
20480
20481 /* Handle DW_LNE_end_sequence. */
20482 void handle_end_sequence ()
20483 {
20484 m_record_line_callback = ::record_line;
20485 }
20486
20487 private:
20488 /* Advance the line by LINE_DELTA. */
20489 void advance_line (int line_delta)
20490 {
20491 m_line += line_delta;
20492
20493 if (line_delta != 0)
20494 m_line_has_non_zero_discriminator = m_discriminator != 0;
20495 }
20496
20497 gdbarch *m_gdbarch;
20498
20499 /* True if we're recording lines.
20500 Otherwise we're building partial symtabs and are just interested in
20501 finding include files mentioned by the line number program. */
20502 bool m_record_lines_p;
20503
20504 /* The line number header. */
20505 line_header *m_line_header;
20506
20507 /* These are part of the standard DWARF line number state machine,
20508 and initialized according to the DWARF spec. */
20509
20510 unsigned char m_op_index = 0;
20511 /* The line table index (1-based) of the current file. */
20512 file_name_index m_file = (file_name_index) 1;
20513 unsigned int m_line = 1;
20514
20515 /* These are initialized in the constructor. */
20516
20517 CORE_ADDR m_address;
20518 bool m_is_stmt;
20519 unsigned int m_discriminator;
20520
20521 /* Additional bits of state we need to track. */
20522
20523 /* The last file that we called dwarf2_start_subfile for.
20524 This is only used for TLLs. */
20525 unsigned int m_last_file = 0;
20526 /* The last file a line number was recorded for. */
20527 struct subfile *m_last_subfile = NULL;
20528
20529 /* The function to call to record a line. */
20530 record_line_ftype *m_record_line_callback = NULL;
20531
20532 /* The last line number that was recorded, used to coalesce
20533 consecutive entries for the same line. This can happen, for
20534 example, when discriminators are present. PR 17276. */
20535 unsigned int m_last_line = 0;
20536 bool m_line_has_non_zero_discriminator = false;
20537 };
20538
20539 void
20540 lnp_state_machine::handle_advance_pc (CORE_ADDR adjust)
20541 {
20542 CORE_ADDR addr_adj = (((m_op_index + adjust)
20543 / m_line_header->maximum_ops_per_instruction)
20544 * m_line_header->minimum_instruction_length);
20545 m_address += gdbarch_adjust_dwarf2_line (m_gdbarch, addr_adj, true);
20546 m_op_index = ((m_op_index + adjust)
20547 % m_line_header->maximum_ops_per_instruction);
20548 }
20549
20550 void
20551 lnp_state_machine::handle_special_opcode (unsigned char op_code)
20552 {
20553 unsigned char adj_opcode = op_code - m_line_header->opcode_base;
20554 CORE_ADDR addr_adj = (((m_op_index
20555 + (adj_opcode / m_line_header->line_range))
20556 / m_line_header->maximum_ops_per_instruction)
20557 * m_line_header->minimum_instruction_length);
20558 m_address += gdbarch_adjust_dwarf2_line (m_gdbarch, addr_adj, true);
20559 m_op_index = ((m_op_index + (adj_opcode / m_line_header->line_range))
20560 % m_line_header->maximum_ops_per_instruction);
20561
20562 int line_delta = (m_line_header->line_base
20563 + (adj_opcode % m_line_header->line_range));
20564 advance_line (line_delta);
20565 record_line (false);
20566 m_discriminator = 0;
20567 }
20568
20569 void
20570 lnp_state_machine::handle_set_file (file_name_index file)
20571 {
20572 m_file = file;
20573
20574 const file_entry *fe = current_file ();
20575 if (fe == NULL)
20576 dwarf2_debug_line_missing_file_complaint ();
20577 else if (m_record_lines_p)
20578 {
20579 const char *dir = fe->include_dir (m_line_header);
20580
20581 m_last_subfile = current_subfile;
20582 m_line_has_non_zero_discriminator = m_discriminator != 0;
20583 dwarf2_start_subfile (fe->name, dir);
20584 }
20585 }
20586
20587 void
20588 lnp_state_machine::handle_const_add_pc ()
20589 {
20590 CORE_ADDR adjust
20591 = (255 - m_line_header->opcode_base) / m_line_header->line_range;
20592
20593 CORE_ADDR addr_adj
20594 = (((m_op_index + adjust)
20595 / m_line_header->maximum_ops_per_instruction)
20596 * m_line_header->minimum_instruction_length);
20597
20598 m_address += gdbarch_adjust_dwarf2_line (m_gdbarch, addr_adj, true);
20599 m_op_index = ((m_op_index + adjust)
20600 % m_line_header->maximum_ops_per_instruction);
20601 }
20602
20603 /* Ignore this record_line request. */
20604
20605 static void
20606 noop_record_line (struct subfile *subfile, int line, CORE_ADDR pc)
20607 {
20608 return;
20609 }
20610
20611 /* Return non-zero if we should add LINE to the line number table.
20612 LINE is the line to add, LAST_LINE is the last line that was added,
20613 LAST_SUBFILE is the subfile for LAST_LINE.
20614 LINE_HAS_NON_ZERO_DISCRIMINATOR is non-zero if LINE has ever
20615 had a non-zero discriminator.
20616
20617 We have to be careful in the presence of discriminators.
20618 E.g., for this line:
20619
20620 for (i = 0; i < 100000; i++);
20621
20622 clang can emit four line number entries for that one line,
20623 each with a different discriminator.
20624 See gdb.dwarf2/dw2-single-line-discriminators.exp for an example.
20625
20626 However, we want gdb to coalesce all four entries into one.
20627 Otherwise the user could stepi into the middle of the line and
20628 gdb would get confused about whether the pc really was in the
20629 middle of the line.
20630
20631 Things are further complicated by the fact that two consecutive
20632 line number entries for the same line is a heuristic used by gcc
20633 to denote the end of the prologue. So we can't just discard duplicate
20634 entries, we have to be selective about it. The heuristic we use is
20635 that we only collapse consecutive entries for the same line if at least
20636 one of those entries has a non-zero discriminator. PR 17276.
20637
20638 Note: Addresses in the line number state machine can never go backwards
20639 within one sequence, thus this coalescing is ok. */
20640
20641 static int
20642 dwarf_record_line_p (unsigned int line, unsigned int last_line,
20643 int line_has_non_zero_discriminator,
20644 struct subfile *last_subfile)
20645 {
20646 if (current_subfile != last_subfile)
20647 return 1;
20648 if (line != last_line)
20649 return 1;
20650 /* Same line for the same file that we've seen already.
20651 As a last check, for pr 17276, only record the line if the line
20652 has never had a non-zero discriminator. */
20653 if (!line_has_non_zero_discriminator)
20654 return 1;
20655 return 0;
20656 }
20657
20658 /* Use P_RECORD_LINE to record line number LINE beginning at address ADDRESS
20659 in the line table of subfile SUBFILE. */
20660
20661 static void
20662 dwarf_record_line_1 (struct gdbarch *gdbarch, struct subfile *subfile,
20663 unsigned int line, CORE_ADDR address,
20664 record_line_ftype p_record_line)
20665 {
20666 CORE_ADDR addr = gdbarch_addr_bits_remove (gdbarch, address);
20667
20668 if (dwarf_line_debug)
20669 {
20670 fprintf_unfiltered (gdb_stdlog,
20671 "Recording line %u, file %s, address %s\n",
20672 line, lbasename (subfile->name),
20673 paddress (gdbarch, address));
20674 }
20675
20676 (*p_record_line) (subfile, line, addr);
20677 }
20678
20679 /* Subroutine of dwarf_decode_lines_1 to simplify it.
20680 Mark the end of a set of line number records.
20681 The arguments are the same as for dwarf_record_line_1.
20682 If SUBFILE is NULL the request is ignored. */
20683
20684 static void
20685 dwarf_finish_line (struct gdbarch *gdbarch, struct subfile *subfile,
20686 CORE_ADDR address, record_line_ftype p_record_line)
20687 {
20688 if (subfile == NULL)
20689 return;
20690
20691 if (dwarf_line_debug)
20692 {
20693 fprintf_unfiltered (gdb_stdlog,
20694 "Finishing current line, file %s, address %s\n",
20695 lbasename (subfile->name),
20696 paddress (gdbarch, address));
20697 }
20698
20699 dwarf_record_line_1 (gdbarch, subfile, 0, address, p_record_line);
20700 }
20701
20702 void
20703 lnp_state_machine::record_line (bool end_sequence)
20704 {
20705 if (dwarf_line_debug)
20706 {
20707 fprintf_unfiltered (gdb_stdlog,
20708 "Processing actual line %u: file %u,"
20709 " address %s, is_stmt %u, discrim %u\n",
20710 m_line, to_underlying (m_file),
20711 paddress (m_gdbarch, m_address),
20712 m_is_stmt, m_discriminator);
20713 }
20714
20715 file_entry *fe = current_file ();
20716
20717 if (fe == NULL)
20718 dwarf2_debug_line_missing_file_complaint ();
20719 /* For now we ignore lines not starting on an instruction boundary.
20720 But not when processing end_sequence for compatibility with the
20721 previous version of the code. */
20722 else if (m_op_index == 0 || end_sequence)
20723 {
20724 fe->included_p = 1;
20725 if (m_record_lines_p && m_is_stmt)
20726 {
20727 if (m_last_subfile != current_subfile || end_sequence)
20728 {
20729 dwarf_finish_line (m_gdbarch, m_last_subfile,
20730 m_address, m_record_line_callback);
20731 }
20732
20733 if (!end_sequence)
20734 {
20735 if (dwarf_record_line_p (m_line, m_last_line,
20736 m_line_has_non_zero_discriminator,
20737 m_last_subfile))
20738 {
20739 dwarf_record_line_1 (m_gdbarch, current_subfile,
20740 m_line, m_address,
20741 m_record_line_callback);
20742 }
20743 m_last_subfile = current_subfile;
20744 m_last_line = m_line;
20745 }
20746 }
20747 }
20748 }
20749
20750 lnp_state_machine::lnp_state_machine (gdbarch *arch, line_header *lh,
20751 bool record_lines_p)
20752 {
20753 m_gdbarch = arch;
20754 m_record_lines_p = record_lines_p;
20755 m_line_header = lh;
20756
20757 m_record_line_callback = ::record_line;
20758
20759 /* Call `gdbarch_adjust_dwarf2_line' on the initial 0 address as if there
20760 was a line entry for it so that the backend has a chance to adjust it
20761 and also record it in case it needs it. This is currently used by MIPS
20762 code, cf. `mips_adjust_dwarf2_line'. */
20763 m_address = gdbarch_adjust_dwarf2_line (arch, 0, 0);
20764 m_is_stmt = lh->default_is_stmt;
20765 m_discriminator = 0;
20766 }
20767
20768 void
20769 lnp_state_machine::check_line_address (struct dwarf2_cu *cu,
20770 const gdb_byte *line_ptr,
20771 CORE_ADDR lowpc, CORE_ADDR address)
20772 {
20773 /* If address < lowpc then it's not a usable value, it's outside the
20774 pc range of the CU. However, we restrict the test to only address
20775 values of zero to preserve GDB's previous behaviour which is to
20776 handle the specific case of a function being GC'd by the linker. */
20777
20778 if (address == 0 && address < lowpc)
20779 {
20780 /* This line table is for a function which has been
20781 GCd by the linker. Ignore it. PR gdb/12528 */
20782
20783 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
20784 long line_offset = line_ptr - get_debug_line_section (cu)->buffer;
20785
20786 complaint (&symfile_complaints,
20787 _(".debug_line address at offset 0x%lx is 0 [in module %s]"),
20788 line_offset, objfile_name (objfile));
20789 m_record_line_callback = noop_record_line;
20790 /* Note: record_line_callback is left as noop_record_line until
20791 we see DW_LNE_end_sequence. */
20792 }
20793 }
20794
20795 /* Subroutine of dwarf_decode_lines to simplify it.
20796 Process the line number information in LH.
20797 If DECODE_FOR_PST_P is non-zero, all we do is process the line number
20798 program in order to set included_p for every referenced header. */
20799
20800 static void
20801 dwarf_decode_lines_1 (struct line_header *lh, struct dwarf2_cu *cu,
20802 const int decode_for_pst_p, CORE_ADDR lowpc)
20803 {
20804 const gdb_byte *line_ptr, *extended_end;
20805 const gdb_byte *line_end;
20806 unsigned int bytes_read, extended_len;
20807 unsigned char op_code, extended_op;
20808 CORE_ADDR baseaddr;
20809 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
20810 bfd *abfd = objfile->obfd;
20811 struct gdbarch *gdbarch = get_objfile_arch (objfile);
20812 /* True if we're recording line info (as opposed to building partial
20813 symtabs and just interested in finding include files mentioned by
20814 the line number program). */
20815 bool record_lines_p = !decode_for_pst_p;
20816
20817 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
20818
20819 line_ptr = lh->statement_program_start;
20820 line_end = lh->statement_program_end;
20821
20822 /* Read the statement sequences until there's nothing left. */
20823 while (line_ptr < line_end)
20824 {
20825 /* The DWARF line number program state machine. Reset the state
20826 machine at the start of each sequence. */
20827 lnp_state_machine state_machine (gdbarch, lh, record_lines_p);
20828 bool end_sequence = false;
20829
20830 if (record_lines_p)
20831 {
20832 /* Start a subfile for the current file of the state
20833 machine. */
20834 const file_entry *fe = state_machine.current_file ();
20835
20836 if (fe != NULL)
20837 dwarf2_start_subfile (fe->name, fe->include_dir (lh));
20838 }
20839
20840 /* Decode the table. */
20841 while (line_ptr < line_end && !end_sequence)
20842 {
20843 op_code = read_1_byte (abfd, line_ptr);
20844 line_ptr += 1;
20845
20846 if (op_code >= lh->opcode_base)
20847 {
20848 /* Special opcode. */
20849 state_machine.handle_special_opcode (op_code);
20850 }
20851 else switch (op_code)
20852 {
20853 case DW_LNS_extended_op:
20854 extended_len = read_unsigned_leb128 (abfd, line_ptr,
20855 &bytes_read);
20856 line_ptr += bytes_read;
20857 extended_end = line_ptr + extended_len;
20858 extended_op = read_1_byte (abfd, line_ptr);
20859 line_ptr += 1;
20860 switch (extended_op)
20861 {
20862 case DW_LNE_end_sequence:
20863 state_machine.handle_end_sequence ();
20864 end_sequence = true;
20865 break;
20866 case DW_LNE_set_address:
20867 {
20868 CORE_ADDR address
20869 = read_address (abfd, line_ptr, cu, &bytes_read);
20870 line_ptr += bytes_read;
20871
20872 state_machine.check_line_address (cu, line_ptr,
20873 lowpc, address);
20874 state_machine.handle_set_address (baseaddr, address);
20875 }
20876 break;
20877 case DW_LNE_define_file:
20878 {
20879 const char *cur_file;
20880 unsigned int mod_time, length;
20881 dir_index dindex;
20882
20883 cur_file = read_direct_string (abfd, line_ptr,
20884 &bytes_read);
20885 line_ptr += bytes_read;
20886 dindex = (dir_index)
20887 read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
20888 line_ptr += bytes_read;
20889 mod_time =
20890 read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
20891 line_ptr += bytes_read;
20892 length =
20893 read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
20894 line_ptr += bytes_read;
20895 lh->add_file_name (cur_file, dindex, mod_time, length);
20896 }
20897 break;
20898 case DW_LNE_set_discriminator:
20899 {
20900 /* The discriminator is not interesting to the
20901 debugger; just ignore it. We still need to
20902 check its value though:
20903 if there are consecutive entries for the same
20904 (non-prologue) line we want to coalesce them.
20905 PR 17276. */
20906 unsigned int discr
20907 = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
20908 line_ptr += bytes_read;
20909
20910 state_machine.handle_set_discriminator (discr);
20911 }
20912 break;
20913 default:
20914 complaint (&symfile_complaints,
20915 _("mangled .debug_line section"));
20916 return;
20917 }
20918 /* Make sure that we parsed the extended op correctly. If e.g.
20919 we expected a different address size than the producer used,
20920 we may have read the wrong number of bytes. */
20921 if (line_ptr != extended_end)
20922 {
20923 complaint (&symfile_complaints,
20924 _("mangled .debug_line section"));
20925 return;
20926 }
20927 break;
20928 case DW_LNS_copy:
20929 state_machine.handle_copy ();
20930 break;
20931 case DW_LNS_advance_pc:
20932 {
20933 CORE_ADDR adjust
20934 = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
20935 line_ptr += bytes_read;
20936
20937 state_machine.handle_advance_pc (adjust);
20938 }
20939 break;
20940 case DW_LNS_advance_line:
20941 {
20942 int line_delta
20943 = read_signed_leb128 (abfd, line_ptr, &bytes_read);
20944 line_ptr += bytes_read;
20945
20946 state_machine.handle_advance_line (line_delta);
20947 }
20948 break;
20949 case DW_LNS_set_file:
20950 {
20951 file_name_index file
20952 = (file_name_index) read_unsigned_leb128 (abfd, line_ptr,
20953 &bytes_read);
20954 line_ptr += bytes_read;
20955
20956 state_machine.handle_set_file (file);
20957 }
20958 break;
20959 case DW_LNS_set_column:
20960 (void) read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
20961 line_ptr += bytes_read;
20962 break;
20963 case DW_LNS_negate_stmt:
20964 state_machine.handle_negate_stmt ();
20965 break;
20966 case DW_LNS_set_basic_block:
20967 break;
20968 /* Add to the address register of the state machine the
20969 address increment value corresponding to special opcode
20970 255. I.e., this value is scaled by the minimum
20971 instruction length since special opcode 255 would have
20972 scaled the increment. */
20973 case DW_LNS_const_add_pc:
20974 state_machine.handle_const_add_pc ();
20975 break;
20976 case DW_LNS_fixed_advance_pc:
20977 {
20978 CORE_ADDR addr_adj = read_2_bytes (abfd, line_ptr);
20979 line_ptr += 2;
20980
20981 state_machine.handle_fixed_advance_pc (addr_adj);
20982 }
20983 break;
20984 default:
20985 {
20986 /* Unknown standard opcode, ignore it. */
20987 int i;
20988
20989 for (i = 0; i < lh->standard_opcode_lengths[op_code]; i++)
20990 {
20991 (void) read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
20992 line_ptr += bytes_read;
20993 }
20994 }
20995 }
20996 }
20997
20998 if (!end_sequence)
20999 dwarf2_debug_line_missing_end_sequence_complaint ();
21000
21001 /* We got a DW_LNE_end_sequence (or we ran off the end of the buffer,
21002 in which case we still finish recording the last line). */
21003 state_machine.record_line (true);
21004 }
21005 }
21006
21007 /* Decode the Line Number Program (LNP) for the given line_header
21008 structure and CU. The actual information extracted and the type
21009 of structures created from the LNP depends on the value of PST.
21010
21011 1. If PST is NULL, then this procedure uses the data from the program
21012 to create all necessary symbol tables, and their linetables.
21013
21014 2. If PST is not NULL, this procedure reads the program to determine
21015 the list of files included by the unit represented by PST, and
21016 builds all the associated partial symbol tables.
21017
21018 COMP_DIR is the compilation directory (DW_AT_comp_dir) or NULL if unknown.
21019 It is used for relative paths in the line table.
21020 NOTE: When processing partial symtabs (pst != NULL),
21021 comp_dir == pst->dirname.
21022
21023 NOTE: It is important that psymtabs have the same file name (via strcmp)
21024 as the corresponding symtab. Since COMP_DIR is not used in the name of the
21025 symtab we don't use it in the name of the psymtabs we create.
21026 E.g. expand_line_sal requires this when finding psymtabs to expand.
21027 A good testcase for this is mb-inline.exp.
21028
21029 LOWPC is the lowest address in CU (or 0 if not known).
21030
21031 Boolean DECODE_MAPPING specifies we need to fully decode .debug_line
21032 for its PC<->lines mapping information. Otherwise only the filename
21033 table is read in. */
21034
21035 static void
21036 dwarf_decode_lines (struct line_header *lh, const char *comp_dir,
21037 struct dwarf2_cu *cu, struct partial_symtab *pst,
21038 CORE_ADDR lowpc, int decode_mapping)
21039 {
21040 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
21041 const int decode_for_pst_p = (pst != NULL);
21042
21043 if (decode_mapping)
21044 dwarf_decode_lines_1 (lh, cu, decode_for_pst_p, lowpc);
21045
21046 if (decode_for_pst_p)
21047 {
21048 int file_index;
21049
21050 /* Now that we're done scanning the Line Header Program, we can
21051 create the psymtab of each included file. */
21052 for (file_index = 0; file_index < lh->file_names.size (); file_index++)
21053 if (lh->file_names[file_index].included_p == 1)
21054 {
21055 gdb::unique_xmalloc_ptr<char> name_holder;
21056 const char *include_name =
21057 psymtab_include_file_name (lh, file_index, pst, comp_dir,
21058 &name_holder);
21059 if (include_name != NULL)
21060 dwarf2_create_include_psymtab (include_name, pst, objfile);
21061 }
21062 }
21063 else
21064 {
21065 /* Make sure a symtab is created for every file, even files
21066 which contain only variables (i.e. no code with associated
21067 line numbers). */
21068 struct compunit_symtab *cust = buildsym_compunit_symtab ();
21069 int i;
21070
21071 for (i = 0; i < lh->file_names.size (); i++)
21072 {
21073 file_entry &fe = lh->file_names[i];
21074
21075 dwarf2_start_subfile (fe.name, fe.include_dir (lh));
21076
21077 if (current_subfile->symtab == NULL)
21078 {
21079 current_subfile->symtab
21080 = allocate_symtab (cust, current_subfile->name);
21081 }
21082 fe.symtab = current_subfile->symtab;
21083 }
21084 }
21085 }
21086
21087 /* Start a subfile for DWARF. FILENAME is the name of the file and
21088 DIRNAME the name of the source directory which contains FILENAME
21089 or NULL if not known.
21090 This routine tries to keep line numbers from identical absolute and
21091 relative file names in a common subfile.
21092
21093 Using the `list' example from the GDB testsuite, which resides in
21094 /srcdir and compiling it with Irix6.2 cc in /compdir using a filename
21095 of /srcdir/list0.c yields the following debugging information for list0.c:
21096
21097 DW_AT_name: /srcdir/list0.c
21098 DW_AT_comp_dir: /compdir
21099 files.files[0].name: list0.h
21100 files.files[0].dir: /srcdir
21101 files.files[1].name: list0.c
21102 files.files[1].dir: /srcdir
21103
21104 The line number information for list0.c has to end up in a single
21105 subfile, so that `break /srcdir/list0.c:1' works as expected.
21106 start_subfile will ensure that this happens provided that we pass the
21107 concatenation of files.files[1].dir and files.files[1].name as the
21108 subfile's name. */
21109
21110 static void
21111 dwarf2_start_subfile (const char *filename, const char *dirname)
21112 {
21113 char *copy = NULL;
21114
21115 /* In order not to lose the line information directory,
21116 we concatenate it to the filename when it makes sense.
21117 Note that the Dwarf3 standard says (speaking of filenames in line
21118 information): ``The directory index is ignored for file names
21119 that represent full path names''. Thus ignoring dirname in the
21120 `else' branch below isn't an issue. */
21121
21122 if (!IS_ABSOLUTE_PATH (filename) && dirname != NULL)
21123 {
21124 copy = concat (dirname, SLASH_STRING, filename, (char *)NULL);
21125 filename = copy;
21126 }
21127
21128 start_subfile (filename);
21129
21130 if (copy != NULL)
21131 xfree (copy);
21132 }
21133
21134 /* Start a symtab for DWARF.
21135 NAME, COMP_DIR, LOW_PC are passed to start_symtab. */
21136
21137 static struct compunit_symtab *
21138 dwarf2_start_symtab (struct dwarf2_cu *cu,
21139 const char *name, const char *comp_dir, CORE_ADDR low_pc)
21140 {
21141 struct compunit_symtab *cust
21142 = start_symtab (cu->per_cu->dwarf2_per_objfile->objfile, name, comp_dir,
21143 low_pc, cu->language);
21144
21145 record_debugformat ("DWARF 2");
21146 record_producer (cu->producer);
21147
21148 /* We assume that we're processing GCC output. */
21149 processing_gcc_compilation = 2;
21150
21151 cu->processing_has_namespace_info = 0;
21152
21153 return cust;
21154 }
21155
21156 static void
21157 var_decode_location (struct attribute *attr, struct symbol *sym,
21158 struct dwarf2_cu *cu)
21159 {
21160 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
21161 struct comp_unit_head *cu_header = &cu->header;
21162
21163 /* NOTE drow/2003-01-30: There used to be a comment and some special
21164 code here to turn a symbol with DW_AT_external and a
21165 SYMBOL_VALUE_ADDRESS of 0 into a LOC_UNRESOLVED symbol. This was
21166 necessary for platforms (maybe Alpha, certainly PowerPC GNU/Linux
21167 with some versions of binutils) where shared libraries could have
21168 relocations against symbols in their debug information - the
21169 minimal symbol would have the right address, but the debug info
21170 would not. It's no longer necessary, because we will explicitly
21171 apply relocations when we read in the debug information now. */
21172
21173 /* A DW_AT_location attribute with no contents indicates that a
21174 variable has been optimized away. */
21175 if (attr_form_is_block (attr) && DW_BLOCK (attr)->size == 0)
21176 {
21177 SYMBOL_ACLASS_INDEX (sym) = LOC_OPTIMIZED_OUT;
21178 return;
21179 }
21180
21181 /* Handle one degenerate form of location expression specially, to
21182 preserve GDB's previous behavior when section offsets are
21183 specified. If this is just a DW_OP_addr or DW_OP_GNU_addr_index
21184 then mark this symbol as LOC_STATIC. */
21185
21186 if (attr_form_is_block (attr)
21187 && ((DW_BLOCK (attr)->data[0] == DW_OP_addr
21188 && DW_BLOCK (attr)->size == 1 + cu_header->addr_size)
21189 || (DW_BLOCK (attr)->data[0] == DW_OP_GNU_addr_index
21190 && (DW_BLOCK (attr)->size
21191 == 1 + leb128_size (&DW_BLOCK (attr)->data[1])))))
21192 {
21193 unsigned int dummy;
21194
21195 if (DW_BLOCK (attr)->data[0] == DW_OP_addr)
21196 SYMBOL_VALUE_ADDRESS (sym) =
21197 read_address (objfile->obfd, DW_BLOCK (attr)->data + 1, cu, &dummy);
21198 else
21199 SYMBOL_VALUE_ADDRESS (sym) =
21200 read_addr_index_from_leb128 (cu, DW_BLOCK (attr)->data + 1, &dummy);
21201 SYMBOL_ACLASS_INDEX (sym) = LOC_STATIC;
21202 fixup_symbol_section (sym, objfile);
21203 SYMBOL_VALUE_ADDRESS (sym) += ANOFFSET (objfile->section_offsets,
21204 SYMBOL_SECTION (sym));
21205 return;
21206 }
21207
21208 /* NOTE drow/2002-01-30: It might be worthwhile to have a static
21209 expression evaluator, and use LOC_COMPUTED only when necessary
21210 (i.e. when the value of a register or memory location is
21211 referenced, or a thread-local block, etc.). Then again, it might
21212 not be worthwhile. I'm assuming that it isn't unless performance
21213 or memory numbers show me otherwise. */
21214
21215 dwarf2_symbol_mark_computed (attr, sym, cu, 0);
21216
21217 if (SYMBOL_COMPUTED_OPS (sym)->location_has_loclist)
21218 cu->has_loclist = 1;
21219 }
21220
21221 /* Given a pointer to a DWARF information entry, figure out if we need
21222 to make a symbol table entry for it, and if so, create a new entry
21223 and return a pointer to it.
21224 If TYPE is NULL, determine symbol type from the die, otherwise
21225 used the passed type.
21226 If SPACE is not NULL, use it to hold the new symbol. If it is
21227 NULL, allocate a new symbol on the objfile's obstack. */
21228
21229 static struct symbol *
21230 new_symbol (struct die_info *die, struct type *type, struct dwarf2_cu *cu,
21231 struct symbol *space)
21232 {
21233 struct dwarf2_per_objfile *dwarf2_per_objfile
21234 = cu->per_cu->dwarf2_per_objfile;
21235 struct objfile *objfile = dwarf2_per_objfile->objfile;
21236 struct gdbarch *gdbarch = get_objfile_arch (objfile);
21237 struct symbol *sym = NULL;
21238 const char *name;
21239 struct attribute *attr = NULL;
21240 struct attribute *attr2 = NULL;
21241 CORE_ADDR baseaddr;
21242 struct pending **list_to_add = NULL;
21243
21244 int inlined_func = (die->tag == DW_TAG_inlined_subroutine);
21245
21246 baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
21247
21248 name = dwarf2_name (die, cu);
21249 if (name)
21250 {
21251 const char *linkagename;
21252 int suppress_add = 0;
21253
21254 if (space)
21255 sym = space;
21256 else
21257 sym = allocate_symbol (objfile);
21258 OBJSTAT (objfile, n_syms++);
21259
21260 /* Cache this symbol's name and the name's demangled form (if any). */
21261 SYMBOL_SET_LANGUAGE (sym, cu->language, &objfile->objfile_obstack);
21262 linkagename = dwarf2_physname (name, die, cu);
21263 SYMBOL_SET_NAMES (sym, linkagename, strlen (linkagename), 0, objfile);
21264
21265 /* Fortran does not have mangling standard and the mangling does differ
21266 between gfortran, iFort etc. */
21267 if (cu->language == language_fortran
21268 && symbol_get_demangled_name (&(sym->ginfo)) == NULL)
21269 symbol_set_demangled_name (&(sym->ginfo),
21270 dwarf2_full_name (name, die, cu),
21271 NULL);
21272
21273 /* Default assumptions.
21274 Use the passed type or decode it from the die. */
21275 SYMBOL_DOMAIN (sym) = VAR_DOMAIN;
21276 SYMBOL_ACLASS_INDEX (sym) = LOC_OPTIMIZED_OUT;
21277 if (type != NULL)
21278 SYMBOL_TYPE (sym) = type;
21279 else
21280 SYMBOL_TYPE (sym) = die_type (die, cu);
21281 attr = dwarf2_attr (die,
21282 inlined_func ? DW_AT_call_line : DW_AT_decl_line,
21283 cu);
21284 if (attr)
21285 {
21286 SYMBOL_LINE (sym) = DW_UNSND (attr);
21287 }
21288
21289 attr = dwarf2_attr (die,
21290 inlined_func ? DW_AT_call_file : DW_AT_decl_file,
21291 cu);
21292 if (attr)
21293 {
21294 file_name_index file_index = (file_name_index) DW_UNSND (attr);
21295 struct file_entry *fe;
21296
21297 if (cu->line_header != NULL)
21298 fe = cu->line_header->file_name_at (file_index);
21299 else
21300 fe = NULL;
21301
21302 if (fe == NULL)
21303 complaint (&symfile_complaints,
21304 _("file index out of range"));
21305 else
21306 symbol_set_symtab (sym, fe->symtab);
21307 }
21308
21309 switch (die->tag)
21310 {
21311 case DW_TAG_label:
21312 attr = dwarf2_attr (die, DW_AT_low_pc, cu);
21313 if (attr)
21314 {
21315 CORE_ADDR addr;
21316
21317 addr = attr_value_as_address (attr);
21318 addr = gdbarch_adjust_dwarf2_addr (gdbarch, addr + baseaddr);
21319 SYMBOL_VALUE_ADDRESS (sym) = addr;
21320 }
21321 SYMBOL_TYPE (sym) = objfile_type (objfile)->builtin_core_addr;
21322 SYMBOL_DOMAIN (sym) = LABEL_DOMAIN;
21323 SYMBOL_ACLASS_INDEX (sym) = LOC_LABEL;
21324 add_symbol_to_list (sym, cu->list_in_scope);
21325 break;
21326 case DW_TAG_subprogram:
21327 /* SYMBOL_BLOCK_VALUE (sym) will be filled in later by
21328 finish_block. */
21329 SYMBOL_ACLASS_INDEX (sym) = LOC_BLOCK;
21330 attr2 = dwarf2_attr (die, DW_AT_external, cu);
21331 if ((attr2 && (DW_UNSND (attr2) != 0))
21332 || cu->language == language_ada)
21333 {
21334 /* Subprograms marked external are stored as a global symbol.
21335 Ada subprograms, whether marked external or not, are always
21336 stored as a global symbol, because we want to be able to
21337 access them globally. For instance, we want to be able
21338 to break on a nested subprogram without having to
21339 specify the context. */
21340 list_to_add = &global_symbols;
21341 }
21342 else
21343 {
21344 list_to_add = cu->list_in_scope;
21345 }
21346 break;
21347 case DW_TAG_inlined_subroutine:
21348 /* SYMBOL_BLOCK_VALUE (sym) will be filled in later by
21349 finish_block. */
21350 SYMBOL_ACLASS_INDEX (sym) = LOC_BLOCK;
21351 SYMBOL_INLINED (sym) = 1;
21352 list_to_add = cu->list_in_scope;
21353 break;
21354 case DW_TAG_template_value_param:
21355 suppress_add = 1;
21356 /* Fall through. */
21357 case DW_TAG_constant:
21358 case DW_TAG_variable:
21359 case DW_TAG_member:
21360 /* Compilation with minimal debug info may result in
21361 variables with missing type entries. Change the
21362 misleading `void' type to something sensible. */
21363 if (TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_VOID)
21364 SYMBOL_TYPE (sym) = objfile_type (objfile)->builtin_int;
21365
21366 attr = dwarf2_attr (die, DW_AT_const_value, cu);
21367 /* In the case of DW_TAG_member, we should only be called for
21368 static const members. */
21369 if (die->tag == DW_TAG_member)
21370 {
21371 /* dwarf2_add_field uses die_is_declaration,
21372 so we do the same. */
21373 gdb_assert (die_is_declaration (die, cu));
21374 gdb_assert (attr);
21375 }
21376 if (attr)
21377 {
21378 dwarf2_const_value (attr, sym, cu);
21379 attr2 = dwarf2_attr (die, DW_AT_external, cu);
21380 if (!suppress_add)
21381 {
21382 if (attr2 && (DW_UNSND (attr2) != 0))
21383 list_to_add = &global_symbols;
21384 else
21385 list_to_add = cu->list_in_scope;
21386 }
21387 break;
21388 }
21389 attr = dwarf2_attr (die, DW_AT_location, cu);
21390 if (attr)
21391 {
21392 var_decode_location (attr, sym, cu);
21393 attr2 = dwarf2_attr (die, DW_AT_external, cu);
21394
21395 /* Fortran explicitly imports any global symbols to the local
21396 scope by DW_TAG_common_block. */
21397 if (cu->language == language_fortran && die->parent
21398 && die->parent->tag == DW_TAG_common_block)
21399 attr2 = NULL;
21400
21401 if (SYMBOL_CLASS (sym) == LOC_STATIC
21402 && SYMBOL_VALUE_ADDRESS (sym) == 0
21403 && !dwarf2_per_objfile->has_section_at_zero)
21404 {
21405 /* When a static variable is eliminated by the linker,
21406 the corresponding debug information is not stripped
21407 out, but the variable address is set to null;
21408 do not add such variables into symbol table. */
21409 }
21410 else if (attr2 && (DW_UNSND (attr2) != 0))
21411 {
21412 /* Workaround gfortran PR debug/40040 - it uses
21413 DW_AT_location for variables in -fPIC libraries which may
21414 get overriden by other libraries/executable and get
21415 a different address. Resolve it by the minimal symbol
21416 which may come from inferior's executable using copy
21417 relocation. Make this workaround only for gfortran as for
21418 other compilers GDB cannot guess the minimal symbol
21419 Fortran mangling kind. */
21420 if (cu->language == language_fortran && die->parent
21421 && die->parent->tag == DW_TAG_module
21422 && cu->producer
21423 && startswith (cu->producer, "GNU Fortran"))
21424 SYMBOL_ACLASS_INDEX (sym) = LOC_UNRESOLVED;
21425
21426 /* A variable with DW_AT_external is never static,
21427 but it may be block-scoped. */
21428 list_to_add = (cu->list_in_scope == &file_symbols
21429 ? &global_symbols : cu->list_in_scope);
21430 }
21431 else
21432 list_to_add = cu->list_in_scope;
21433 }
21434 else
21435 {
21436 /* We do not know the address of this symbol.
21437 If it is an external symbol and we have type information
21438 for it, enter the symbol as a LOC_UNRESOLVED symbol.
21439 The address of the variable will then be determined from
21440 the minimal symbol table whenever the variable is
21441 referenced. */
21442 attr2 = dwarf2_attr (die, DW_AT_external, cu);
21443
21444 /* Fortran explicitly imports any global symbols to the local
21445 scope by DW_TAG_common_block. */
21446 if (cu->language == language_fortran && die->parent
21447 && die->parent->tag == DW_TAG_common_block)
21448 {
21449 /* SYMBOL_CLASS doesn't matter here because
21450 read_common_block is going to reset it. */
21451 if (!suppress_add)
21452 list_to_add = cu->list_in_scope;
21453 }
21454 else if (attr2 && (DW_UNSND (attr2) != 0)
21455 && dwarf2_attr (die, DW_AT_type, cu) != NULL)
21456 {
21457 /* A variable with DW_AT_external is never static, but it
21458 may be block-scoped. */
21459 list_to_add = (cu->list_in_scope == &file_symbols
21460 ? &global_symbols : cu->list_in_scope);
21461
21462 SYMBOL_ACLASS_INDEX (sym) = LOC_UNRESOLVED;
21463 }
21464 else if (!die_is_declaration (die, cu))
21465 {
21466 /* Use the default LOC_OPTIMIZED_OUT class. */
21467 gdb_assert (SYMBOL_CLASS (sym) == LOC_OPTIMIZED_OUT);
21468 if (!suppress_add)
21469 list_to_add = cu->list_in_scope;
21470 }
21471 }
21472 break;
21473 case DW_TAG_formal_parameter:
21474 /* If we are inside a function, mark this as an argument. If
21475 not, we might be looking at an argument to an inlined function
21476 when we do not have enough information to show inlined frames;
21477 pretend it's a local variable in that case so that the user can
21478 still see it. */
21479 if (context_stack_depth > 0
21480 && context_stack[context_stack_depth - 1].name != NULL)
21481 SYMBOL_IS_ARGUMENT (sym) = 1;
21482 attr = dwarf2_attr (die, DW_AT_location, cu);
21483 if (attr)
21484 {
21485 var_decode_location (attr, sym, cu);
21486 }
21487 attr = dwarf2_attr (die, DW_AT_const_value, cu);
21488 if (attr)
21489 {
21490 dwarf2_const_value (attr, sym, cu);
21491 }
21492
21493 list_to_add = cu->list_in_scope;
21494 break;
21495 case DW_TAG_unspecified_parameters:
21496 /* From varargs functions; gdb doesn't seem to have any
21497 interest in this information, so just ignore it for now.
21498 (FIXME?) */
21499 break;
21500 case DW_TAG_template_type_param:
21501 suppress_add = 1;
21502 /* Fall through. */
21503 case DW_TAG_class_type:
21504 case DW_TAG_interface_type:
21505 case DW_TAG_structure_type:
21506 case DW_TAG_union_type:
21507 case DW_TAG_set_type:
21508 case DW_TAG_enumeration_type:
21509 SYMBOL_ACLASS_INDEX (sym) = LOC_TYPEDEF;
21510 SYMBOL_DOMAIN (sym) = STRUCT_DOMAIN;
21511
21512 {
21513 /* NOTE: carlton/2003-11-10: C++ class symbols shouldn't
21514 really ever be static objects: otherwise, if you try
21515 to, say, break of a class's method and you're in a file
21516 which doesn't mention that class, it won't work unless
21517 the check for all static symbols in lookup_symbol_aux
21518 saves you. See the OtherFileClass tests in
21519 gdb.c++/namespace.exp. */
21520
21521 if (!suppress_add)
21522 {
21523 list_to_add = (cu->list_in_scope == &file_symbols
21524 && cu->language == language_cplus
21525 ? &global_symbols : cu->list_in_scope);
21526
21527 /* The semantics of C++ state that "struct foo {
21528 ... }" also defines a typedef for "foo". */
21529 if (cu->language == language_cplus
21530 || cu->language == language_ada
21531 || cu->language == language_d
21532 || cu->language == language_rust)
21533 {
21534 /* The symbol's name is already allocated along
21535 with this objfile, so we don't need to
21536 duplicate it for the type. */
21537 if (TYPE_NAME (SYMBOL_TYPE (sym)) == 0)
21538 TYPE_NAME (SYMBOL_TYPE (sym)) = SYMBOL_SEARCH_NAME (sym);
21539 }
21540 }
21541 }
21542 break;
21543 case DW_TAG_typedef:
21544 SYMBOL_ACLASS_INDEX (sym) = LOC_TYPEDEF;
21545 SYMBOL_DOMAIN (sym) = VAR_DOMAIN;
21546 list_to_add = cu->list_in_scope;
21547 break;
21548 case DW_TAG_base_type:
21549 case DW_TAG_subrange_type:
21550 SYMBOL_ACLASS_INDEX (sym) = LOC_TYPEDEF;
21551 SYMBOL_DOMAIN (sym) = VAR_DOMAIN;
21552 list_to_add = cu->list_in_scope;
21553 break;
21554 case DW_TAG_enumerator:
21555 attr = dwarf2_attr (die, DW_AT_const_value, cu);
21556 if (attr)
21557 {
21558 dwarf2_const_value (attr, sym, cu);
21559 }
21560 {
21561 /* NOTE: carlton/2003-11-10: See comment above in the
21562 DW_TAG_class_type, etc. block. */
21563
21564 list_to_add = (cu->list_in_scope == &file_symbols
21565 && cu->language == language_cplus
21566 ? &global_symbols : cu->list_in_scope);
21567 }
21568 break;
21569 case DW_TAG_imported_declaration:
21570 case DW_TAG_namespace:
21571 SYMBOL_ACLASS_INDEX (sym) = LOC_TYPEDEF;
21572 list_to_add = &global_symbols;
21573 break;
21574 case DW_TAG_module:
21575 SYMBOL_ACLASS_INDEX (sym) = LOC_TYPEDEF;
21576 SYMBOL_DOMAIN (sym) = MODULE_DOMAIN;
21577 list_to_add = &global_symbols;
21578 break;
21579 case DW_TAG_common_block:
21580 SYMBOL_ACLASS_INDEX (sym) = LOC_COMMON_BLOCK;
21581 SYMBOL_DOMAIN (sym) = COMMON_BLOCK_DOMAIN;
21582 add_symbol_to_list (sym, cu->list_in_scope);
21583 break;
21584 default:
21585 /* Not a tag we recognize. Hopefully we aren't processing
21586 trash data, but since we must specifically ignore things
21587 we don't recognize, there is nothing else we should do at
21588 this point. */
21589 complaint (&symfile_complaints, _("unsupported tag: '%s'"),
21590 dwarf_tag_name (die->tag));
21591 break;
21592 }
21593
21594 if (suppress_add)
21595 {
21596 sym->hash_next = objfile->template_symbols;
21597 objfile->template_symbols = sym;
21598 list_to_add = NULL;
21599 }
21600
21601 if (list_to_add != NULL)
21602 add_symbol_to_list (sym, list_to_add);
21603
21604 /* For the benefit of old versions of GCC, check for anonymous
21605 namespaces based on the demangled name. */
21606 if (!cu->processing_has_namespace_info
21607 && cu->language == language_cplus)
21608 cp_scan_for_anonymous_namespaces (sym, objfile);
21609 }
21610 return (sym);
21611 }
21612
21613 /* Given an attr with a DW_FORM_dataN value in host byte order,
21614 zero-extend it as appropriate for the symbol's type. The DWARF
21615 standard (v4) is not entirely clear about the meaning of using
21616 DW_FORM_dataN for a constant with a signed type, where the type is
21617 wider than the data. The conclusion of a discussion on the DWARF
21618 list was that this is unspecified. We choose to always zero-extend
21619 because that is the interpretation long in use by GCC. */
21620
21621 static gdb_byte *
21622 dwarf2_const_value_data (const struct attribute *attr, struct obstack *obstack,
21623 struct dwarf2_cu *cu, LONGEST *value, int bits)
21624 {
21625 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
21626 enum bfd_endian byte_order = bfd_big_endian (objfile->obfd) ?
21627 BFD_ENDIAN_BIG : BFD_ENDIAN_LITTLE;
21628 LONGEST l = DW_UNSND (attr);
21629
21630 if (bits < sizeof (*value) * 8)
21631 {
21632 l &= ((LONGEST) 1 << bits) - 1;
21633 *value = l;
21634 }
21635 else if (bits == sizeof (*value) * 8)
21636 *value = l;
21637 else
21638 {
21639 gdb_byte *bytes = (gdb_byte *) obstack_alloc (obstack, bits / 8);
21640 store_unsigned_integer (bytes, bits / 8, byte_order, l);
21641 return bytes;
21642 }
21643
21644 return NULL;
21645 }
21646
21647 /* Read a constant value from an attribute. Either set *VALUE, or if
21648 the value does not fit in *VALUE, set *BYTES - either already
21649 allocated on the objfile obstack, or newly allocated on OBSTACK,
21650 or, set *BATON, if we translated the constant to a location
21651 expression. */
21652
21653 static void
21654 dwarf2_const_value_attr (const struct attribute *attr, struct type *type,
21655 const char *name, struct obstack *obstack,
21656 struct dwarf2_cu *cu,
21657 LONGEST *value, const gdb_byte **bytes,
21658 struct dwarf2_locexpr_baton **baton)
21659 {
21660 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
21661 struct comp_unit_head *cu_header = &cu->header;
21662 struct dwarf_block *blk;
21663 enum bfd_endian byte_order = (bfd_big_endian (objfile->obfd) ?
21664 BFD_ENDIAN_BIG : BFD_ENDIAN_LITTLE);
21665
21666 *value = 0;
21667 *bytes = NULL;
21668 *baton = NULL;
21669
21670 switch (attr->form)
21671 {
21672 case DW_FORM_addr:
21673 case DW_FORM_GNU_addr_index:
21674 {
21675 gdb_byte *data;
21676
21677 if (TYPE_LENGTH (type) != cu_header->addr_size)
21678 dwarf2_const_value_length_mismatch_complaint (name,
21679 cu_header->addr_size,
21680 TYPE_LENGTH (type));
21681 /* Symbols of this form are reasonably rare, so we just
21682 piggyback on the existing location code rather than writing
21683 a new implementation of symbol_computed_ops. */
21684 *baton = XOBNEW (obstack, struct dwarf2_locexpr_baton);
21685 (*baton)->per_cu = cu->per_cu;
21686 gdb_assert ((*baton)->per_cu);
21687
21688 (*baton)->size = 2 + cu_header->addr_size;
21689 data = (gdb_byte *) obstack_alloc (obstack, (*baton)->size);
21690 (*baton)->data = data;
21691
21692 data[0] = DW_OP_addr;
21693 store_unsigned_integer (&data[1], cu_header->addr_size,
21694 byte_order, DW_ADDR (attr));
21695 data[cu_header->addr_size + 1] = DW_OP_stack_value;
21696 }
21697 break;
21698 case DW_FORM_string:
21699 case DW_FORM_strp:
21700 case DW_FORM_GNU_str_index:
21701 case DW_FORM_GNU_strp_alt:
21702 /* DW_STRING is already allocated on the objfile obstack, point
21703 directly to it. */
21704 *bytes = (const gdb_byte *) DW_STRING (attr);
21705 break;
21706 case DW_FORM_block1:
21707 case DW_FORM_block2:
21708 case DW_FORM_block4:
21709 case DW_FORM_block:
21710 case DW_FORM_exprloc:
21711 case DW_FORM_data16:
21712 blk = DW_BLOCK (attr);
21713 if (TYPE_LENGTH (type) != blk->size)
21714 dwarf2_const_value_length_mismatch_complaint (name, blk->size,
21715 TYPE_LENGTH (type));
21716 *bytes = blk->data;
21717 break;
21718
21719 /* The DW_AT_const_value attributes are supposed to carry the
21720 symbol's value "represented as it would be on the target
21721 architecture." By the time we get here, it's already been
21722 converted to host endianness, so we just need to sign- or
21723 zero-extend it as appropriate. */
21724 case DW_FORM_data1:
21725 *bytes = dwarf2_const_value_data (attr, obstack, cu, value, 8);
21726 break;
21727 case DW_FORM_data2:
21728 *bytes = dwarf2_const_value_data (attr, obstack, cu, value, 16);
21729 break;
21730 case DW_FORM_data4:
21731 *bytes = dwarf2_const_value_data (attr, obstack, cu, value, 32);
21732 break;
21733 case DW_FORM_data8:
21734 *bytes = dwarf2_const_value_data (attr, obstack, cu, value, 64);
21735 break;
21736
21737 case DW_FORM_sdata:
21738 case DW_FORM_implicit_const:
21739 *value = DW_SND (attr);
21740 break;
21741
21742 case DW_FORM_udata:
21743 *value = DW_UNSND (attr);
21744 break;
21745
21746 default:
21747 complaint (&symfile_complaints,
21748 _("unsupported const value attribute form: '%s'"),
21749 dwarf_form_name (attr->form));
21750 *value = 0;
21751 break;
21752 }
21753 }
21754
21755
21756 /* Copy constant value from an attribute to a symbol. */
21757
21758 static void
21759 dwarf2_const_value (const struct attribute *attr, struct symbol *sym,
21760 struct dwarf2_cu *cu)
21761 {
21762 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
21763 LONGEST value;
21764 const gdb_byte *bytes;
21765 struct dwarf2_locexpr_baton *baton;
21766
21767 dwarf2_const_value_attr (attr, SYMBOL_TYPE (sym),
21768 SYMBOL_PRINT_NAME (sym),
21769 &objfile->objfile_obstack, cu,
21770 &value, &bytes, &baton);
21771
21772 if (baton != NULL)
21773 {
21774 SYMBOL_LOCATION_BATON (sym) = baton;
21775 SYMBOL_ACLASS_INDEX (sym) = dwarf2_locexpr_index;
21776 }
21777 else if (bytes != NULL)
21778 {
21779 SYMBOL_VALUE_BYTES (sym) = bytes;
21780 SYMBOL_ACLASS_INDEX (sym) = LOC_CONST_BYTES;
21781 }
21782 else
21783 {
21784 SYMBOL_VALUE (sym) = value;
21785 SYMBOL_ACLASS_INDEX (sym) = LOC_CONST;
21786 }
21787 }
21788
21789 /* Return the type of the die in question using its DW_AT_type attribute. */
21790
21791 static struct type *
21792 die_type (struct die_info *die, struct dwarf2_cu *cu)
21793 {
21794 struct attribute *type_attr;
21795
21796 type_attr = dwarf2_attr (die, DW_AT_type, cu);
21797 if (!type_attr)
21798 {
21799 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
21800 /* A missing DW_AT_type represents a void type. */
21801 return objfile_type (objfile)->builtin_void;
21802 }
21803
21804 return lookup_die_type (die, type_attr, cu);
21805 }
21806
21807 /* True iff CU's producer generates GNAT Ada auxiliary information
21808 that allows to find parallel types through that information instead
21809 of having to do expensive parallel lookups by type name. */
21810
21811 static int
21812 need_gnat_info (struct dwarf2_cu *cu)
21813 {
21814 /* Assume that the Ada compiler was GNAT, which always produces
21815 the auxiliary information. */
21816 return (cu->language == language_ada);
21817 }
21818
21819 /* Return the auxiliary type of the die in question using its
21820 DW_AT_GNAT_descriptive_type attribute. Returns NULL if the
21821 attribute is not present. */
21822
21823 static struct type *
21824 die_descriptive_type (struct die_info *die, struct dwarf2_cu *cu)
21825 {
21826 struct attribute *type_attr;
21827
21828 type_attr = dwarf2_attr (die, DW_AT_GNAT_descriptive_type, cu);
21829 if (!type_attr)
21830 return NULL;
21831
21832 return lookup_die_type (die, type_attr, cu);
21833 }
21834
21835 /* If DIE has a descriptive_type attribute, then set the TYPE's
21836 descriptive type accordingly. */
21837
21838 static void
21839 set_descriptive_type (struct type *type, struct die_info *die,
21840 struct dwarf2_cu *cu)
21841 {
21842 struct type *descriptive_type = die_descriptive_type (die, cu);
21843
21844 if (descriptive_type)
21845 {
21846 ALLOCATE_GNAT_AUX_TYPE (type);
21847 TYPE_DESCRIPTIVE_TYPE (type) = descriptive_type;
21848 }
21849 }
21850
21851 /* Return the containing type of the die in question using its
21852 DW_AT_containing_type attribute. */
21853
21854 static struct type *
21855 die_containing_type (struct die_info *die, struct dwarf2_cu *cu)
21856 {
21857 struct attribute *type_attr;
21858 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
21859
21860 type_attr = dwarf2_attr (die, DW_AT_containing_type, cu);
21861 if (!type_attr)
21862 error (_("Dwarf Error: Problem turning containing type into gdb type "
21863 "[in module %s]"), objfile_name (objfile));
21864
21865 return lookup_die_type (die, type_attr, cu);
21866 }
21867
21868 /* Return an error marker type to use for the ill formed type in DIE/CU. */
21869
21870 static struct type *
21871 build_error_marker_type (struct dwarf2_cu *cu, struct die_info *die)
21872 {
21873 struct dwarf2_per_objfile *dwarf2_per_objfile
21874 = cu->per_cu->dwarf2_per_objfile;
21875 struct objfile *objfile = dwarf2_per_objfile->objfile;
21876 char *message, *saved;
21877
21878 message = xstrprintf (_("<unknown type in %s, CU %s, DIE %s>"),
21879 objfile_name (objfile),
21880 sect_offset_str (cu->header.sect_off),
21881 sect_offset_str (die->sect_off));
21882 saved = (char *) obstack_copy0 (&objfile->objfile_obstack,
21883 message, strlen (message));
21884 xfree (message);
21885
21886 return init_type (objfile, TYPE_CODE_ERROR, 0, saved);
21887 }
21888
21889 /* Look up the type of DIE in CU using its type attribute ATTR.
21890 ATTR must be one of: DW_AT_type, DW_AT_GNAT_descriptive_type,
21891 DW_AT_containing_type.
21892 If there is no type substitute an error marker. */
21893
21894 static struct type *
21895 lookup_die_type (struct die_info *die, const struct attribute *attr,
21896 struct dwarf2_cu *cu)
21897 {
21898 struct dwarf2_per_objfile *dwarf2_per_objfile
21899 = cu->per_cu->dwarf2_per_objfile;
21900 struct objfile *objfile = dwarf2_per_objfile->objfile;
21901 struct type *this_type;
21902
21903 gdb_assert (attr->name == DW_AT_type
21904 || attr->name == DW_AT_GNAT_descriptive_type
21905 || attr->name == DW_AT_containing_type);
21906
21907 /* First see if we have it cached. */
21908
21909 if (attr->form == DW_FORM_GNU_ref_alt)
21910 {
21911 struct dwarf2_per_cu_data *per_cu;
21912 sect_offset sect_off = dwarf2_get_ref_die_offset (attr);
21913
21914 per_cu = dwarf2_find_containing_comp_unit (sect_off, 1,
21915 dwarf2_per_objfile);
21916 this_type = get_die_type_at_offset (sect_off, per_cu);
21917 }
21918 else if (attr_form_is_ref (attr))
21919 {
21920 sect_offset sect_off = dwarf2_get_ref_die_offset (attr);
21921
21922 this_type = get_die_type_at_offset (sect_off, cu->per_cu);
21923 }
21924 else if (attr->form == DW_FORM_ref_sig8)
21925 {
21926 ULONGEST signature = DW_SIGNATURE (attr);
21927
21928 return get_signatured_type (die, signature, cu);
21929 }
21930 else
21931 {
21932 complaint (&symfile_complaints,
21933 _("Dwarf Error: Bad type attribute %s in DIE"
21934 " at %s [in module %s]"),
21935 dwarf_attr_name (attr->name), sect_offset_str (die->sect_off),
21936 objfile_name (objfile));
21937 return build_error_marker_type (cu, die);
21938 }
21939
21940 /* If not cached we need to read it in. */
21941
21942 if (this_type == NULL)
21943 {
21944 struct die_info *type_die = NULL;
21945 struct dwarf2_cu *type_cu = cu;
21946
21947 if (attr_form_is_ref (attr))
21948 type_die = follow_die_ref (die, attr, &type_cu);
21949 if (type_die == NULL)
21950 return build_error_marker_type (cu, die);
21951 /* If we find the type now, it's probably because the type came
21952 from an inter-CU reference and the type's CU got expanded before
21953 ours. */
21954 this_type = read_type_die (type_die, type_cu);
21955 }
21956
21957 /* If we still don't have a type use an error marker. */
21958
21959 if (this_type == NULL)
21960 return build_error_marker_type (cu, die);
21961
21962 return this_type;
21963 }
21964
21965 /* Return the type in DIE, CU.
21966 Returns NULL for invalid types.
21967
21968 This first does a lookup in die_type_hash,
21969 and only reads the die in if necessary.
21970
21971 NOTE: This can be called when reading in partial or full symbols. */
21972
21973 static struct type *
21974 read_type_die (struct die_info *die, struct dwarf2_cu *cu)
21975 {
21976 struct type *this_type;
21977
21978 this_type = get_die_type (die, cu);
21979 if (this_type)
21980 return this_type;
21981
21982 return read_type_die_1 (die, cu);
21983 }
21984
21985 /* Read the type in DIE, CU.
21986 Returns NULL for invalid types. */
21987
21988 static struct type *
21989 read_type_die_1 (struct die_info *die, struct dwarf2_cu *cu)
21990 {
21991 struct type *this_type = NULL;
21992
21993 switch (die->tag)
21994 {
21995 case DW_TAG_class_type:
21996 case DW_TAG_interface_type:
21997 case DW_TAG_structure_type:
21998 case DW_TAG_union_type:
21999 this_type = read_structure_type (die, cu);
22000 break;
22001 case DW_TAG_enumeration_type:
22002 this_type = read_enumeration_type (die, cu);
22003 break;
22004 case DW_TAG_subprogram:
22005 case DW_TAG_subroutine_type:
22006 case DW_TAG_inlined_subroutine:
22007 this_type = read_subroutine_type (die, cu);
22008 break;
22009 case DW_TAG_array_type:
22010 this_type = read_array_type (die, cu);
22011 break;
22012 case DW_TAG_set_type:
22013 this_type = read_set_type (die, cu);
22014 break;
22015 case DW_TAG_pointer_type:
22016 this_type = read_tag_pointer_type (die, cu);
22017 break;
22018 case DW_TAG_ptr_to_member_type:
22019 this_type = read_tag_ptr_to_member_type (die, cu);
22020 break;
22021 case DW_TAG_reference_type:
22022 this_type = read_tag_reference_type (die, cu, TYPE_CODE_REF);
22023 break;
22024 case DW_TAG_rvalue_reference_type:
22025 this_type = read_tag_reference_type (die, cu, TYPE_CODE_RVALUE_REF);
22026 break;
22027 case DW_TAG_const_type:
22028 this_type = read_tag_const_type (die, cu);
22029 break;
22030 case DW_TAG_volatile_type:
22031 this_type = read_tag_volatile_type (die, cu);
22032 break;
22033 case DW_TAG_restrict_type:
22034 this_type = read_tag_restrict_type (die, cu);
22035 break;
22036 case DW_TAG_string_type:
22037 this_type = read_tag_string_type (die, cu);
22038 break;
22039 case DW_TAG_typedef:
22040 this_type = read_typedef (die, cu);
22041 break;
22042 case DW_TAG_subrange_type:
22043 this_type = read_subrange_type (die, cu);
22044 break;
22045 case DW_TAG_base_type:
22046 this_type = read_base_type (die, cu);
22047 break;
22048 case DW_TAG_unspecified_type:
22049 this_type = read_unspecified_type (die, cu);
22050 break;
22051 case DW_TAG_namespace:
22052 this_type = read_namespace_type (die, cu);
22053 break;
22054 case DW_TAG_module:
22055 this_type = read_module_type (die, cu);
22056 break;
22057 case DW_TAG_atomic_type:
22058 this_type = read_tag_atomic_type (die, cu);
22059 break;
22060 default:
22061 complaint (&symfile_complaints,
22062 _("unexpected tag in read_type_die: '%s'"),
22063 dwarf_tag_name (die->tag));
22064 break;
22065 }
22066
22067 return this_type;
22068 }
22069
22070 /* See if we can figure out if the class lives in a namespace. We do
22071 this by looking for a member function; its demangled name will
22072 contain namespace info, if there is any.
22073 Return the computed name or NULL.
22074 Space for the result is allocated on the objfile's obstack.
22075 This is the full-die version of guess_partial_die_structure_name.
22076 In this case we know DIE has no useful parent. */
22077
22078 static char *
22079 guess_full_die_structure_name (struct die_info *die, struct dwarf2_cu *cu)
22080 {
22081 struct die_info *spec_die;
22082 struct dwarf2_cu *spec_cu;
22083 struct die_info *child;
22084 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
22085
22086 spec_cu = cu;
22087 spec_die = die_specification (die, &spec_cu);
22088 if (spec_die != NULL)
22089 {
22090 die = spec_die;
22091 cu = spec_cu;
22092 }
22093
22094 for (child = die->child;
22095 child != NULL;
22096 child = child->sibling)
22097 {
22098 if (child->tag == DW_TAG_subprogram)
22099 {
22100 const char *linkage_name = dw2_linkage_name (child, cu);
22101
22102 if (linkage_name != NULL)
22103 {
22104 char *actual_name
22105 = language_class_name_from_physname (cu->language_defn,
22106 linkage_name);
22107 char *name = NULL;
22108
22109 if (actual_name != NULL)
22110 {
22111 const char *die_name = dwarf2_name (die, cu);
22112
22113 if (die_name != NULL
22114 && strcmp (die_name, actual_name) != 0)
22115 {
22116 /* Strip off the class name from the full name.
22117 We want the prefix. */
22118 int die_name_len = strlen (die_name);
22119 int actual_name_len = strlen (actual_name);
22120
22121 /* Test for '::' as a sanity check. */
22122 if (actual_name_len > die_name_len + 2
22123 && actual_name[actual_name_len
22124 - die_name_len - 1] == ':')
22125 name = (char *) obstack_copy0 (
22126 &objfile->per_bfd->storage_obstack,
22127 actual_name, actual_name_len - die_name_len - 2);
22128 }
22129 }
22130 xfree (actual_name);
22131 return name;
22132 }
22133 }
22134 }
22135
22136 return NULL;
22137 }
22138
22139 /* GCC might emit a nameless typedef that has a linkage name. Determine the
22140 prefix part in such case. See
22141 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47510. */
22142
22143 static const char *
22144 anonymous_struct_prefix (struct die_info *die, struct dwarf2_cu *cu)
22145 {
22146 struct attribute *attr;
22147 const char *base;
22148
22149 if (die->tag != DW_TAG_class_type && die->tag != DW_TAG_interface_type
22150 && die->tag != DW_TAG_structure_type && die->tag != DW_TAG_union_type)
22151 return NULL;
22152
22153 if (dwarf2_string_attr (die, DW_AT_name, cu) != NULL)
22154 return NULL;
22155
22156 attr = dw2_linkage_name_attr (die, cu);
22157 if (attr == NULL || DW_STRING (attr) == NULL)
22158 return NULL;
22159
22160 /* dwarf2_name had to be already called. */
22161 gdb_assert (DW_STRING_IS_CANONICAL (attr));
22162
22163 /* Strip the base name, keep any leading namespaces/classes. */
22164 base = strrchr (DW_STRING (attr), ':');
22165 if (base == NULL || base == DW_STRING (attr) || base[-1] != ':')
22166 return "";
22167
22168 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
22169 return (char *) obstack_copy0 (&objfile->per_bfd->storage_obstack,
22170 DW_STRING (attr),
22171 &base[-1] - DW_STRING (attr));
22172 }
22173
22174 /* Return the name of the namespace/class that DIE is defined within,
22175 or "" if we can't tell. The caller should not xfree the result.
22176
22177 For example, if we're within the method foo() in the following
22178 code:
22179
22180 namespace N {
22181 class C {
22182 void foo () {
22183 }
22184 };
22185 }
22186
22187 then determine_prefix on foo's die will return "N::C". */
22188
22189 static const char *
22190 determine_prefix (struct die_info *die, struct dwarf2_cu *cu)
22191 {
22192 struct dwarf2_per_objfile *dwarf2_per_objfile
22193 = cu->per_cu->dwarf2_per_objfile;
22194 struct die_info *parent, *spec_die;
22195 struct dwarf2_cu *spec_cu;
22196 struct type *parent_type;
22197 const char *retval;
22198
22199 if (cu->language != language_cplus
22200 && cu->language != language_fortran && cu->language != language_d
22201 && cu->language != language_rust)
22202 return "";
22203
22204 retval = anonymous_struct_prefix (die, cu);
22205 if (retval)
22206 return retval;
22207
22208 /* We have to be careful in the presence of DW_AT_specification.
22209 For example, with GCC 3.4, given the code
22210
22211 namespace N {
22212 void foo() {
22213 // Definition of N::foo.
22214 }
22215 }
22216
22217 then we'll have a tree of DIEs like this:
22218
22219 1: DW_TAG_compile_unit
22220 2: DW_TAG_namespace // N
22221 3: DW_TAG_subprogram // declaration of N::foo
22222 4: DW_TAG_subprogram // definition of N::foo
22223 DW_AT_specification // refers to die #3
22224
22225 Thus, when processing die #4, we have to pretend that we're in
22226 the context of its DW_AT_specification, namely the contex of die
22227 #3. */
22228 spec_cu = cu;
22229 spec_die = die_specification (die, &spec_cu);
22230 if (spec_die == NULL)
22231 parent = die->parent;
22232 else
22233 {
22234 parent = spec_die->parent;
22235 cu = spec_cu;
22236 }
22237
22238 if (parent == NULL)
22239 return "";
22240 else if (parent->building_fullname)
22241 {
22242 const char *name;
22243 const char *parent_name;
22244
22245 /* It has been seen on RealView 2.2 built binaries,
22246 DW_TAG_template_type_param types actually _defined_ as
22247 children of the parent class:
22248
22249 enum E {};
22250 template class <class Enum> Class{};
22251 Class<enum E> class_e;
22252
22253 1: DW_TAG_class_type (Class)
22254 2: DW_TAG_enumeration_type (E)
22255 3: DW_TAG_enumerator (enum1:0)
22256 3: DW_TAG_enumerator (enum2:1)
22257 ...
22258 2: DW_TAG_template_type_param
22259 DW_AT_type DW_FORM_ref_udata (E)
22260
22261 Besides being broken debug info, it can put GDB into an
22262 infinite loop. Consider:
22263
22264 When we're building the full name for Class<E>, we'll start
22265 at Class, and go look over its template type parameters,
22266 finding E. We'll then try to build the full name of E, and
22267 reach here. We're now trying to build the full name of E,
22268 and look over the parent DIE for containing scope. In the
22269 broken case, if we followed the parent DIE of E, we'd again
22270 find Class, and once again go look at its template type
22271 arguments, etc., etc. Simply don't consider such parent die
22272 as source-level parent of this die (it can't be, the language
22273 doesn't allow it), and break the loop here. */
22274 name = dwarf2_name (die, cu);
22275 parent_name = dwarf2_name (parent, cu);
22276 complaint (&symfile_complaints,
22277 _("template param type '%s' defined within parent '%s'"),
22278 name ? name : "<unknown>",
22279 parent_name ? parent_name : "<unknown>");
22280 return "";
22281 }
22282 else
22283 switch (parent->tag)
22284 {
22285 case DW_TAG_namespace:
22286 parent_type = read_type_die (parent, cu);
22287 /* GCC 4.0 and 4.1 had a bug (PR c++/28460) where they generated bogus
22288 DW_TAG_namespace DIEs with a name of "::" for the global namespace.
22289 Work around this problem here. */
22290 if (cu->language == language_cplus
22291 && strcmp (TYPE_TAG_NAME (parent_type), "::") == 0)
22292 return "";
22293 /* We give a name to even anonymous namespaces. */
22294 return TYPE_TAG_NAME (parent_type);
22295 case DW_TAG_class_type:
22296 case DW_TAG_interface_type:
22297 case DW_TAG_structure_type:
22298 case DW_TAG_union_type:
22299 case DW_TAG_module:
22300 parent_type = read_type_die (parent, cu);
22301 if (TYPE_TAG_NAME (parent_type) != NULL)
22302 return TYPE_TAG_NAME (parent_type);
22303 else
22304 /* An anonymous structure is only allowed non-static data
22305 members; no typedefs, no member functions, et cetera.
22306 So it does not need a prefix. */
22307 return "";
22308 case DW_TAG_compile_unit:
22309 case DW_TAG_partial_unit:
22310 /* gcc-4.5 -gdwarf-4 can drop the enclosing namespace. Cope. */
22311 if (cu->language == language_cplus
22312 && !VEC_empty (dwarf2_section_info_def, dwarf2_per_objfile->types)
22313 && die->child != NULL
22314 && (die->tag == DW_TAG_class_type
22315 || die->tag == DW_TAG_structure_type
22316 || die->tag == DW_TAG_union_type))
22317 {
22318 char *name = guess_full_die_structure_name (die, cu);
22319 if (name != NULL)
22320 return name;
22321 }
22322 return "";
22323 case DW_TAG_enumeration_type:
22324 parent_type = read_type_die (parent, cu);
22325 if (TYPE_DECLARED_CLASS (parent_type))
22326 {
22327 if (TYPE_TAG_NAME (parent_type) != NULL)
22328 return TYPE_TAG_NAME (parent_type);
22329 return "";
22330 }
22331 /* Fall through. */
22332 default:
22333 return determine_prefix (parent, cu);
22334 }
22335 }
22336
22337 /* Return a newly-allocated string formed by concatenating PREFIX and SUFFIX
22338 with appropriate separator. If PREFIX or SUFFIX is NULL or empty, then
22339 simply copy the SUFFIX or PREFIX, respectively. If OBS is non-null, perform
22340 an obconcat, otherwise allocate storage for the result. The CU argument is
22341 used to determine the language and hence, the appropriate separator. */
22342
22343 #define MAX_SEP_LEN 7 /* strlen ("__") + strlen ("_MOD_") */
22344
22345 static char *
22346 typename_concat (struct obstack *obs, const char *prefix, const char *suffix,
22347 int physname, struct dwarf2_cu *cu)
22348 {
22349 const char *lead = "";
22350 const char *sep;
22351
22352 if (suffix == NULL || suffix[0] == '\0'
22353 || prefix == NULL || prefix[0] == '\0')
22354 sep = "";
22355 else if (cu->language == language_d)
22356 {
22357 /* For D, the 'main' function could be defined in any module, but it
22358 should never be prefixed. */
22359 if (strcmp (suffix, "D main") == 0)
22360 {
22361 prefix = "";
22362 sep = "";
22363 }
22364 else
22365 sep = ".";
22366 }
22367 else if (cu->language == language_fortran && physname)
22368 {
22369 /* This is gfortran specific mangling. Normally DW_AT_linkage_name or
22370 DW_AT_MIPS_linkage_name is preferred and used instead. */
22371
22372 lead = "__";
22373 sep = "_MOD_";
22374 }
22375 else
22376 sep = "::";
22377
22378 if (prefix == NULL)
22379 prefix = "";
22380 if (suffix == NULL)
22381 suffix = "";
22382
22383 if (obs == NULL)
22384 {
22385 char *retval
22386 = ((char *)
22387 xmalloc (strlen (prefix) + MAX_SEP_LEN + strlen (suffix) + 1));
22388
22389 strcpy (retval, lead);
22390 strcat (retval, prefix);
22391 strcat (retval, sep);
22392 strcat (retval, suffix);
22393 return retval;
22394 }
22395 else
22396 {
22397 /* We have an obstack. */
22398 return obconcat (obs, lead, prefix, sep, suffix, (char *) NULL);
22399 }
22400 }
22401
22402 /* Return sibling of die, NULL if no sibling. */
22403
22404 static struct die_info *
22405 sibling_die (struct die_info *die)
22406 {
22407 return die->sibling;
22408 }
22409
22410 /* Get name of a die, return NULL if not found. */
22411
22412 static const char *
22413 dwarf2_canonicalize_name (const char *name, struct dwarf2_cu *cu,
22414 struct obstack *obstack)
22415 {
22416 if (name && cu->language == language_cplus)
22417 {
22418 std::string canon_name = cp_canonicalize_string (name);
22419
22420 if (!canon_name.empty ())
22421 {
22422 if (canon_name != name)
22423 name = (const char *) obstack_copy0 (obstack,
22424 canon_name.c_str (),
22425 canon_name.length ());
22426 }
22427 }
22428
22429 return name;
22430 }
22431
22432 /* Get name of a die, return NULL if not found.
22433 Anonymous namespaces are converted to their magic string. */
22434
22435 static const char *
22436 dwarf2_name (struct die_info *die, struct dwarf2_cu *cu)
22437 {
22438 struct attribute *attr;
22439 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
22440
22441 attr = dwarf2_attr (die, DW_AT_name, cu);
22442 if ((!attr || !DW_STRING (attr))
22443 && die->tag != DW_TAG_namespace
22444 && die->tag != DW_TAG_class_type
22445 && die->tag != DW_TAG_interface_type
22446 && die->tag != DW_TAG_structure_type
22447 && die->tag != DW_TAG_union_type)
22448 return NULL;
22449
22450 switch (die->tag)
22451 {
22452 case DW_TAG_compile_unit:
22453 case DW_TAG_partial_unit:
22454 /* Compilation units have a DW_AT_name that is a filename, not
22455 a source language identifier. */
22456 case DW_TAG_enumeration_type:
22457 case DW_TAG_enumerator:
22458 /* These tags always have simple identifiers already; no need
22459 to canonicalize them. */
22460 return DW_STRING (attr);
22461
22462 case DW_TAG_namespace:
22463 if (attr != NULL && DW_STRING (attr) != NULL)
22464 return DW_STRING (attr);
22465 return CP_ANONYMOUS_NAMESPACE_STR;
22466
22467 case DW_TAG_class_type:
22468 case DW_TAG_interface_type:
22469 case DW_TAG_structure_type:
22470 case DW_TAG_union_type:
22471 /* Some GCC versions emit spurious DW_AT_name attributes for unnamed
22472 structures or unions. These were of the form "._%d" in GCC 4.1,
22473 or simply "<anonymous struct>" or "<anonymous union>" in GCC 4.3
22474 and GCC 4.4. We work around this problem by ignoring these. */
22475 if (attr && DW_STRING (attr)
22476 && (startswith (DW_STRING (attr), "._")
22477 || startswith (DW_STRING (attr), "<anonymous")))
22478 return NULL;
22479
22480 /* GCC might emit a nameless typedef that has a linkage name. See
22481 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47510. */
22482 if (!attr || DW_STRING (attr) == NULL)
22483 {
22484 char *demangled = NULL;
22485
22486 attr = dw2_linkage_name_attr (die, cu);
22487 if (attr == NULL || DW_STRING (attr) == NULL)
22488 return NULL;
22489
22490 /* Avoid demangling DW_STRING (attr) the second time on a second
22491 call for the same DIE. */
22492 if (!DW_STRING_IS_CANONICAL (attr))
22493 demangled = gdb_demangle (DW_STRING (attr), DMGL_TYPES);
22494
22495 if (demangled)
22496 {
22497 const char *base;
22498
22499 /* FIXME: we already did this for the partial symbol... */
22500 DW_STRING (attr)
22501 = ((const char *)
22502 obstack_copy0 (&objfile->per_bfd->storage_obstack,
22503 demangled, strlen (demangled)));
22504 DW_STRING_IS_CANONICAL (attr) = 1;
22505 xfree (demangled);
22506
22507 /* Strip any leading namespaces/classes, keep only the base name.
22508 DW_AT_name for named DIEs does not contain the prefixes. */
22509 base = strrchr (DW_STRING (attr), ':');
22510 if (base && base > DW_STRING (attr) && base[-1] == ':')
22511 return &base[1];
22512 else
22513 return DW_STRING (attr);
22514 }
22515 }
22516 break;
22517
22518 default:
22519 break;
22520 }
22521
22522 if (!DW_STRING_IS_CANONICAL (attr))
22523 {
22524 DW_STRING (attr)
22525 = dwarf2_canonicalize_name (DW_STRING (attr), cu,
22526 &objfile->per_bfd->storage_obstack);
22527 DW_STRING_IS_CANONICAL (attr) = 1;
22528 }
22529 return DW_STRING (attr);
22530 }
22531
22532 /* Return the die that this die in an extension of, or NULL if there
22533 is none. *EXT_CU is the CU containing DIE on input, and the CU
22534 containing the return value on output. */
22535
22536 static struct die_info *
22537 dwarf2_extension (struct die_info *die, struct dwarf2_cu **ext_cu)
22538 {
22539 struct attribute *attr;
22540
22541 attr = dwarf2_attr (die, DW_AT_extension, *ext_cu);
22542 if (attr == NULL)
22543 return NULL;
22544
22545 return follow_die_ref (die, attr, ext_cu);
22546 }
22547
22548 /* Convert a DIE tag into its string name. */
22549
22550 static const char *
22551 dwarf_tag_name (unsigned tag)
22552 {
22553 const char *name = get_DW_TAG_name (tag);
22554
22555 if (name == NULL)
22556 return "DW_TAG_<unknown>";
22557
22558 return name;
22559 }
22560
22561 /* Convert a DWARF attribute code into its string name. */
22562
22563 static const char *
22564 dwarf_attr_name (unsigned attr)
22565 {
22566 const char *name;
22567
22568 #ifdef MIPS /* collides with DW_AT_HP_block_index */
22569 if (attr == DW_AT_MIPS_fde)
22570 return "DW_AT_MIPS_fde";
22571 #else
22572 if (attr == DW_AT_HP_block_index)
22573 return "DW_AT_HP_block_index";
22574 #endif
22575
22576 name = get_DW_AT_name (attr);
22577
22578 if (name == NULL)
22579 return "DW_AT_<unknown>";
22580
22581 return name;
22582 }
22583
22584 /* Convert a DWARF value form code into its string name. */
22585
22586 static const char *
22587 dwarf_form_name (unsigned form)
22588 {
22589 const char *name = get_DW_FORM_name (form);
22590
22591 if (name == NULL)
22592 return "DW_FORM_<unknown>";
22593
22594 return name;
22595 }
22596
22597 static const char *
22598 dwarf_bool_name (unsigned mybool)
22599 {
22600 if (mybool)
22601 return "TRUE";
22602 else
22603 return "FALSE";
22604 }
22605
22606 /* Convert a DWARF type code into its string name. */
22607
22608 static const char *
22609 dwarf_type_encoding_name (unsigned enc)
22610 {
22611 const char *name = get_DW_ATE_name (enc);
22612
22613 if (name == NULL)
22614 return "DW_ATE_<unknown>";
22615
22616 return name;
22617 }
22618
22619 static void
22620 dump_die_shallow (struct ui_file *f, int indent, struct die_info *die)
22621 {
22622 unsigned int i;
22623
22624 print_spaces (indent, f);
22625 fprintf_unfiltered (f, "Die: %s (abbrev %d, offset %s)\n",
22626 dwarf_tag_name (die->tag), die->abbrev,
22627 sect_offset_str (die->sect_off));
22628
22629 if (die->parent != NULL)
22630 {
22631 print_spaces (indent, f);
22632 fprintf_unfiltered (f, " parent at offset: %s\n",
22633 sect_offset_str (die->parent->sect_off));
22634 }
22635
22636 print_spaces (indent, f);
22637 fprintf_unfiltered (f, " has children: %s\n",
22638 dwarf_bool_name (die->child != NULL));
22639
22640 print_spaces (indent, f);
22641 fprintf_unfiltered (f, " attributes:\n");
22642
22643 for (i = 0; i < die->num_attrs; ++i)
22644 {
22645 print_spaces (indent, f);
22646 fprintf_unfiltered (f, " %s (%s) ",
22647 dwarf_attr_name (die->attrs[i].name),
22648 dwarf_form_name (die->attrs[i].form));
22649
22650 switch (die->attrs[i].form)
22651 {
22652 case DW_FORM_addr:
22653 case DW_FORM_GNU_addr_index:
22654 fprintf_unfiltered (f, "address: ");
22655 fputs_filtered (hex_string (DW_ADDR (&die->attrs[i])), f);
22656 break;
22657 case DW_FORM_block2:
22658 case DW_FORM_block4:
22659 case DW_FORM_block:
22660 case DW_FORM_block1:
22661 fprintf_unfiltered (f, "block: size %s",
22662 pulongest (DW_BLOCK (&die->attrs[i])->size));
22663 break;
22664 case DW_FORM_exprloc:
22665 fprintf_unfiltered (f, "expression: size %s",
22666 pulongest (DW_BLOCK (&die->attrs[i])->size));
22667 break;
22668 case DW_FORM_data16:
22669 fprintf_unfiltered (f, "constant of 16 bytes");
22670 break;
22671 case DW_FORM_ref_addr:
22672 fprintf_unfiltered (f, "ref address: ");
22673 fputs_filtered (hex_string (DW_UNSND (&die->attrs[i])), f);
22674 break;
22675 case DW_FORM_GNU_ref_alt:
22676 fprintf_unfiltered (f, "alt ref address: ");
22677 fputs_filtered (hex_string (DW_UNSND (&die->attrs[i])), f);
22678 break;
22679 case DW_FORM_ref1:
22680 case DW_FORM_ref2:
22681 case DW_FORM_ref4:
22682 case DW_FORM_ref8:
22683 case DW_FORM_ref_udata:
22684 fprintf_unfiltered (f, "constant ref: 0x%lx (adjusted)",
22685 (long) (DW_UNSND (&die->attrs[i])));
22686 break;
22687 case DW_FORM_data1:
22688 case DW_FORM_data2:
22689 case DW_FORM_data4:
22690 case DW_FORM_data8:
22691 case DW_FORM_udata:
22692 case DW_FORM_sdata:
22693 fprintf_unfiltered (f, "constant: %s",
22694 pulongest (DW_UNSND (&die->attrs[i])));
22695 break;
22696 case DW_FORM_sec_offset:
22697 fprintf_unfiltered (f, "section offset: %s",
22698 pulongest (DW_UNSND (&die->attrs[i])));
22699 break;
22700 case DW_FORM_ref_sig8:
22701 fprintf_unfiltered (f, "signature: %s",
22702 hex_string (DW_SIGNATURE (&die->attrs[i])));
22703 break;
22704 case DW_FORM_string:
22705 case DW_FORM_strp:
22706 case DW_FORM_line_strp:
22707 case DW_FORM_GNU_str_index:
22708 case DW_FORM_GNU_strp_alt:
22709 fprintf_unfiltered (f, "string: \"%s\" (%s canonicalized)",
22710 DW_STRING (&die->attrs[i])
22711 ? DW_STRING (&die->attrs[i]) : "",
22712 DW_STRING_IS_CANONICAL (&die->attrs[i]) ? "is" : "not");
22713 break;
22714 case DW_FORM_flag:
22715 if (DW_UNSND (&die->attrs[i]))
22716 fprintf_unfiltered (f, "flag: TRUE");
22717 else
22718 fprintf_unfiltered (f, "flag: FALSE");
22719 break;
22720 case DW_FORM_flag_present:
22721 fprintf_unfiltered (f, "flag: TRUE");
22722 break;
22723 case DW_FORM_indirect:
22724 /* The reader will have reduced the indirect form to
22725 the "base form" so this form should not occur. */
22726 fprintf_unfiltered (f,
22727 "unexpected attribute form: DW_FORM_indirect");
22728 break;
22729 case DW_FORM_implicit_const:
22730 fprintf_unfiltered (f, "constant: %s",
22731 plongest (DW_SND (&die->attrs[i])));
22732 break;
22733 default:
22734 fprintf_unfiltered (f, "unsupported attribute form: %d.",
22735 die->attrs[i].form);
22736 break;
22737 }
22738 fprintf_unfiltered (f, "\n");
22739 }
22740 }
22741
22742 static void
22743 dump_die_for_error (struct die_info *die)
22744 {
22745 dump_die_shallow (gdb_stderr, 0, die);
22746 }
22747
22748 static void
22749 dump_die_1 (struct ui_file *f, int level, int max_level, struct die_info *die)
22750 {
22751 int indent = level * 4;
22752
22753 gdb_assert (die != NULL);
22754
22755 if (level >= max_level)
22756 return;
22757
22758 dump_die_shallow (f, indent, die);
22759
22760 if (die->child != NULL)
22761 {
22762 print_spaces (indent, f);
22763 fprintf_unfiltered (f, " Children:");
22764 if (level + 1 < max_level)
22765 {
22766 fprintf_unfiltered (f, "\n");
22767 dump_die_1 (f, level + 1, max_level, die->child);
22768 }
22769 else
22770 {
22771 fprintf_unfiltered (f,
22772 " [not printed, max nesting level reached]\n");
22773 }
22774 }
22775
22776 if (die->sibling != NULL && level > 0)
22777 {
22778 dump_die_1 (f, level, max_level, die->sibling);
22779 }
22780 }
22781
22782 /* This is called from the pdie macro in gdbinit.in.
22783 It's not static so gcc will keep a copy callable from gdb. */
22784
22785 void
22786 dump_die (struct die_info *die, int max_level)
22787 {
22788 dump_die_1 (gdb_stdlog, 0, max_level, die);
22789 }
22790
22791 static void
22792 store_in_ref_table (struct die_info *die, struct dwarf2_cu *cu)
22793 {
22794 void **slot;
22795
22796 slot = htab_find_slot_with_hash (cu->die_hash, die,
22797 to_underlying (die->sect_off),
22798 INSERT);
22799
22800 *slot = die;
22801 }
22802
22803 /* Return DIE offset of ATTR. Return 0 with complaint if ATTR is not of the
22804 required kind. */
22805
22806 static sect_offset
22807 dwarf2_get_ref_die_offset (const struct attribute *attr)
22808 {
22809 if (attr_form_is_ref (attr))
22810 return (sect_offset) DW_UNSND (attr);
22811
22812 complaint (&symfile_complaints,
22813 _("unsupported die ref attribute form: '%s'"),
22814 dwarf_form_name (attr->form));
22815 return {};
22816 }
22817
22818 /* Return the constant value held by ATTR. Return DEFAULT_VALUE if
22819 * the value held by the attribute is not constant. */
22820
22821 static LONGEST
22822 dwarf2_get_attr_constant_value (const struct attribute *attr, int default_value)
22823 {
22824 if (attr->form == DW_FORM_sdata || attr->form == DW_FORM_implicit_const)
22825 return DW_SND (attr);
22826 else if (attr->form == DW_FORM_udata
22827 || attr->form == DW_FORM_data1
22828 || attr->form == DW_FORM_data2
22829 || attr->form == DW_FORM_data4
22830 || attr->form == DW_FORM_data8)
22831 return DW_UNSND (attr);
22832 else
22833 {
22834 /* For DW_FORM_data16 see attr_form_is_constant. */
22835 complaint (&symfile_complaints,
22836 _("Attribute value is not a constant (%s)"),
22837 dwarf_form_name (attr->form));
22838 return default_value;
22839 }
22840 }
22841
22842 /* Follow reference or signature attribute ATTR of SRC_DIE.
22843 On entry *REF_CU is the CU of SRC_DIE.
22844 On exit *REF_CU is the CU of the result. */
22845
22846 static struct die_info *
22847 follow_die_ref_or_sig (struct die_info *src_die, const struct attribute *attr,
22848 struct dwarf2_cu **ref_cu)
22849 {
22850 struct die_info *die;
22851
22852 if (attr_form_is_ref (attr))
22853 die = follow_die_ref (src_die, attr, ref_cu);
22854 else if (attr->form == DW_FORM_ref_sig8)
22855 die = follow_die_sig (src_die, attr, ref_cu);
22856 else
22857 {
22858 dump_die_for_error (src_die);
22859 error (_("Dwarf Error: Expected reference attribute [in module %s]"),
22860 objfile_name ((*ref_cu)->per_cu->dwarf2_per_objfile->objfile));
22861 }
22862
22863 return die;
22864 }
22865
22866 /* Follow reference OFFSET.
22867 On entry *REF_CU is the CU of the source die referencing OFFSET.
22868 On exit *REF_CU is the CU of the result.
22869 Returns NULL if OFFSET is invalid. */
22870
22871 static struct die_info *
22872 follow_die_offset (sect_offset sect_off, int offset_in_dwz,
22873 struct dwarf2_cu **ref_cu)
22874 {
22875 struct die_info temp_die;
22876 struct dwarf2_cu *target_cu, *cu = *ref_cu;
22877 struct dwarf2_per_objfile *dwarf2_per_objfile
22878 = cu->per_cu->dwarf2_per_objfile;
22879 struct objfile *objfile = dwarf2_per_objfile->objfile;
22880
22881 gdb_assert (cu->per_cu != NULL);
22882
22883 target_cu = cu;
22884
22885 if (cu->per_cu->is_debug_types)
22886 {
22887 /* .debug_types CUs cannot reference anything outside their CU.
22888 If they need to, they have to reference a signatured type via
22889 DW_FORM_ref_sig8. */
22890 if (!offset_in_cu_p (&cu->header, sect_off))
22891 return NULL;
22892 }
22893 else if (offset_in_dwz != cu->per_cu->is_dwz
22894 || !offset_in_cu_p (&cu->header, sect_off))
22895 {
22896 struct dwarf2_per_cu_data *per_cu;
22897
22898 per_cu = dwarf2_find_containing_comp_unit (sect_off, offset_in_dwz,
22899 dwarf2_per_objfile);
22900
22901 /* If necessary, add it to the queue and load its DIEs. */
22902 if (maybe_queue_comp_unit (cu, per_cu, cu->language))
22903 load_full_comp_unit (per_cu, cu->language);
22904
22905 target_cu = per_cu->cu;
22906 }
22907 else if (cu->dies == NULL)
22908 {
22909 /* We're loading full DIEs during partial symbol reading. */
22910 gdb_assert (dwarf2_per_objfile->reading_partial_symbols);
22911 load_full_comp_unit (cu->per_cu, language_minimal);
22912 }
22913
22914 *ref_cu = target_cu;
22915 temp_die.sect_off = sect_off;
22916 return (struct die_info *) htab_find_with_hash (target_cu->die_hash,
22917 &temp_die,
22918 to_underlying (sect_off));
22919 }
22920
22921 /* Follow reference attribute ATTR of SRC_DIE.
22922 On entry *REF_CU is the CU of SRC_DIE.
22923 On exit *REF_CU is the CU of the result. */
22924
22925 static struct die_info *
22926 follow_die_ref (struct die_info *src_die, const struct attribute *attr,
22927 struct dwarf2_cu **ref_cu)
22928 {
22929 sect_offset sect_off = dwarf2_get_ref_die_offset (attr);
22930 struct dwarf2_cu *cu = *ref_cu;
22931 struct die_info *die;
22932
22933 die = follow_die_offset (sect_off,
22934 (attr->form == DW_FORM_GNU_ref_alt
22935 || cu->per_cu->is_dwz),
22936 ref_cu);
22937 if (!die)
22938 error (_("Dwarf Error: Cannot find DIE at %s referenced from DIE "
22939 "at %s [in module %s]"),
22940 sect_offset_str (sect_off), sect_offset_str (src_die->sect_off),
22941 objfile_name (cu->per_cu->dwarf2_per_objfile->objfile));
22942
22943 return die;
22944 }
22945
22946 /* Return DWARF block referenced by DW_AT_location of DIE at SECT_OFF at PER_CU.
22947 Returned value is intended for DW_OP_call*. Returned
22948 dwarf2_locexpr_baton->data has lifetime of
22949 PER_CU->DWARF2_PER_OBJFILE->OBJFILE. */
22950
22951 struct dwarf2_locexpr_baton
22952 dwarf2_fetch_die_loc_sect_off (sect_offset sect_off,
22953 struct dwarf2_per_cu_data *per_cu,
22954 CORE_ADDR (*get_frame_pc) (void *baton),
22955 void *baton)
22956 {
22957 struct dwarf2_cu *cu;
22958 struct die_info *die;
22959 struct attribute *attr;
22960 struct dwarf2_locexpr_baton retval;
22961 struct objfile *objfile = per_cu->dwarf2_per_objfile->objfile;
22962 struct dwarf2_per_objfile *dwarf2_per_objfile
22963 = get_dwarf2_per_objfile (objfile);
22964
22965 if (per_cu->cu == NULL)
22966 load_cu (per_cu);
22967 cu = per_cu->cu;
22968 if (cu == NULL)
22969 {
22970 /* We shouldn't get here for a dummy CU, but don't crash on the user.
22971 Instead just throw an error, not much else we can do. */
22972 error (_("Dwarf Error: Dummy CU at %s referenced in module %s"),
22973 sect_offset_str (sect_off), objfile_name (objfile));
22974 }
22975
22976 die = follow_die_offset (sect_off, per_cu->is_dwz, &cu);
22977 if (!die)
22978 error (_("Dwarf Error: Cannot find DIE at %s referenced in module %s"),
22979 sect_offset_str (sect_off), objfile_name (objfile));
22980
22981 attr = dwarf2_attr (die, DW_AT_location, cu);
22982 if (!attr)
22983 {
22984 /* DWARF: "If there is no such attribute, then there is no effect.".
22985 DATA is ignored if SIZE is 0. */
22986
22987 retval.data = NULL;
22988 retval.size = 0;
22989 }
22990 else if (attr_form_is_section_offset (attr))
22991 {
22992 struct dwarf2_loclist_baton loclist_baton;
22993 CORE_ADDR pc = (*get_frame_pc) (baton);
22994 size_t size;
22995
22996 fill_in_loclist_baton (cu, &loclist_baton, attr);
22997
22998 retval.data = dwarf2_find_location_expression (&loclist_baton,
22999 &size, pc);
23000 retval.size = size;
23001 }
23002 else
23003 {
23004 if (!attr_form_is_block (attr))
23005 error (_("Dwarf Error: DIE at %s referenced in module %s "
23006 "is neither DW_FORM_block* nor DW_FORM_exprloc"),
23007 sect_offset_str (sect_off), objfile_name (objfile));
23008
23009 retval.data = DW_BLOCK (attr)->data;
23010 retval.size = DW_BLOCK (attr)->size;
23011 }
23012 retval.per_cu = cu->per_cu;
23013
23014 age_cached_comp_units (dwarf2_per_objfile);
23015
23016 return retval;
23017 }
23018
23019 /* Like dwarf2_fetch_die_loc_sect_off, but take a CU
23020 offset. */
23021
23022 struct dwarf2_locexpr_baton
23023 dwarf2_fetch_die_loc_cu_off (cu_offset offset_in_cu,
23024 struct dwarf2_per_cu_data *per_cu,
23025 CORE_ADDR (*get_frame_pc) (void *baton),
23026 void *baton)
23027 {
23028 sect_offset sect_off = per_cu->sect_off + to_underlying (offset_in_cu);
23029
23030 return dwarf2_fetch_die_loc_sect_off (sect_off, per_cu, get_frame_pc, baton);
23031 }
23032
23033 /* Write a constant of a given type as target-ordered bytes into
23034 OBSTACK. */
23035
23036 static const gdb_byte *
23037 write_constant_as_bytes (struct obstack *obstack,
23038 enum bfd_endian byte_order,
23039 struct type *type,
23040 ULONGEST value,
23041 LONGEST *len)
23042 {
23043 gdb_byte *result;
23044
23045 *len = TYPE_LENGTH (type);
23046 result = (gdb_byte *) obstack_alloc (obstack, *len);
23047 store_unsigned_integer (result, *len, byte_order, value);
23048
23049 return result;
23050 }
23051
23052 /* If the DIE at OFFSET in PER_CU has a DW_AT_const_value, return a
23053 pointer to the constant bytes and set LEN to the length of the
23054 data. If memory is needed, allocate it on OBSTACK. If the DIE
23055 does not have a DW_AT_const_value, return NULL. */
23056
23057 const gdb_byte *
23058 dwarf2_fetch_constant_bytes (sect_offset sect_off,
23059 struct dwarf2_per_cu_data *per_cu,
23060 struct obstack *obstack,
23061 LONGEST *len)
23062 {
23063 struct dwarf2_cu *cu;
23064 struct die_info *die;
23065 struct attribute *attr;
23066 const gdb_byte *result = NULL;
23067 struct type *type;
23068 LONGEST value;
23069 enum bfd_endian byte_order;
23070 struct objfile *objfile = per_cu->dwarf2_per_objfile->objfile;
23071
23072 if (per_cu->cu == NULL)
23073 load_cu (per_cu);
23074 cu = per_cu->cu;
23075 if (cu == NULL)
23076 {
23077 /* We shouldn't get here for a dummy CU, but don't crash on the user.
23078 Instead just throw an error, not much else we can do. */
23079 error (_("Dwarf Error: Dummy CU at %s referenced in module %s"),
23080 sect_offset_str (sect_off), objfile_name (objfile));
23081 }
23082
23083 die = follow_die_offset (sect_off, per_cu->is_dwz, &cu);
23084 if (!die)
23085 error (_("Dwarf Error: Cannot find DIE at %s referenced in module %s"),
23086 sect_offset_str (sect_off), objfile_name (objfile));
23087
23088 attr = dwarf2_attr (die, DW_AT_const_value, cu);
23089 if (attr == NULL)
23090 return NULL;
23091
23092 byte_order = (bfd_big_endian (objfile->obfd)
23093 ? BFD_ENDIAN_BIG : BFD_ENDIAN_LITTLE);
23094
23095 switch (attr->form)
23096 {
23097 case DW_FORM_addr:
23098 case DW_FORM_GNU_addr_index:
23099 {
23100 gdb_byte *tem;
23101
23102 *len = cu->header.addr_size;
23103 tem = (gdb_byte *) obstack_alloc (obstack, *len);
23104 store_unsigned_integer (tem, *len, byte_order, DW_ADDR (attr));
23105 result = tem;
23106 }
23107 break;
23108 case DW_FORM_string:
23109 case DW_FORM_strp:
23110 case DW_FORM_GNU_str_index:
23111 case DW_FORM_GNU_strp_alt:
23112 /* DW_STRING is already allocated on the objfile obstack, point
23113 directly to it. */
23114 result = (const gdb_byte *) DW_STRING (attr);
23115 *len = strlen (DW_STRING (attr));
23116 break;
23117 case DW_FORM_block1:
23118 case DW_FORM_block2:
23119 case DW_FORM_block4:
23120 case DW_FORM_block:
23121 case DW_FORM_exprloc:
23122 case DW_FORM_data16:
23123 result = DW_BLOCK (attr)->data;
23124 *len = DW_BLOCK (attr)->size;
23125 break;
23126
23127 /* The DW_AT_const_value attributes are supposed to carry the
23128 symbol's value "represented as it would be on the target
23129 architecture." By the time we get here, it's already been
23130 converted to host endianness, so we just need to sign- or
23131 zero-extend it as appropriate. */
23132 case DW_FORM_data1:
23133 type = die_type (die, cu);
23134 result = dwarf2_const_value_data (attr, obstack, cu, &value, 8);
23135 if (result == NULL)
23136 result = write_constant_as_bytes (obstack, byte_order,
23137 type, value, len);
23138 break;
23139 case DW_FORM_data2:
23140 type = die_type (die, cu);
23141 result = dwarf2_const_value_data (attr, obstack, cu, &value, 16);
23142 if (result == NULL)
23143 result = write_constant_as_bytes (obstack, byte_order,
23144 type, value, len);
23145 break;
23146 case DW_FORM_data4:
23147 type = die_type (die, cu);
23148 result = dwarf2_const_value_data (attr, obstack, cu, &value, 32);
23149 if (result == NULL)
23150 result = write_constant_as_bytes (obstack, byte_order,
23151 type, value, len);
23152 break;
23153 case DW_FORM_data8:
23154 type = die_type (die, cu);
23155 result = dwarf2_const_value_data (attr, obstack, cu, &value, 64);
23156 if (result == NULL)
23157 result = write_constant_as_bytes (obstack, byte_order,
23158 type, value, len);
23159 break;
23160
23161 case DW_FORM_sdata:
23162 case DW_FORM_implicit_const:
23163 type = die_type (die, cu);
23164 result = write_constant_as_bytes (obstack, byte_order,
23165 type, DW_SND (attr), len);
23166 break;
23167
23168 case DW_FORM_udata:
23169 type = die_type (die, cu);
23170 result = write_constant_as_bytes (obstack, byte_order,
23171 type, DW_UNSND (attr), len);
23172 break;
23173
23174 default:
23175 complaint (&symfile_complaints,
23176 _("unsupported const value attribute form: '%s'"),
23177 dwarf_form_name (attr->form));
23178 break;
23179 }
23180
23181 return result;
23182 }
23183
23184 /* Return the type of the die at OFFSET in PER_CU. Return NULL if no
23185 valid type for this die is found. */
23186
23187 struct type *
23188 dwarf2_fetch_die_type_sect_off (sect_offset sect_off,
23189 struct dwarf2_per_cu_data *per_cu)
23190 {
23191 struct dwarf2_cu *cu;
23192 struct die_info *die;
23193
23194 if (per_cu->cu == NULL)
23195 load_cu (per_cu);
23196 cu = per_cu->cu;
23197 if (!cu)
23198 return NULL;
23199
23200 die = follow_die_offset (sect_off, per_cu->is_dwz, &cu);
23201 if (!die)
23202 return NULL;
23203
23204 return die_type (die, cu);
23205 }
23206
23207 /* Return the type of the DIE at DIE_OFFSET in the CU named by
23208 PER_CU. */
23209
23210 struct type *
23211 dwarf2_get_die_type (cu_offset die_offset,
23212 struct dwarf2_per_cu_data *per_cu)
23213 {
23214 sect_offset die_offset_sect = per_cu->sect_off + to_underlying (die_offset);
23215 return get_die_type_at_offset (die_offset_sect, per_cu);
23216 }
23217
23218 /* Follow type unit SIG_TYPE referenced by SRC_DIE.
23219 On entry *REF_CU is the CU of SRC_DIE.
23220 On exit *REF_CU is the CU of the result.
23221 Returns NULL if the referenced DIE isn't found. */
23222
23223 static struct die_info *
23224 follow_die_sig_1 (struct die_info *src_die, struct signatured_type *sig_type,
23225 struct dwarf2_cu **ref_cu)
23226 {
23227 struct die_info temp_die;
23228 struct dwarf2_cu *sig_cu;
23229 struct die_info *die;
23230
23231 /* While it might be nice to assert sig_type->type == NULL here,
23232 we can get here for DW_AT_imported_declaration where we need
23233 the DIE not the type. */
23234
23235 /* If necessary, add it to the queue and load its DIEs. */
23236
23237 if (maybe_queue_comp_unit (*ref_cu, &sig_type->per_cu, language_minimal))
23238 read_signatured_type (sig_type);
23239
23240 sig_cu = sig_type->per_cu.cu;
23241 gdb_assert (sig_cu != NULL);
23242 gdb_assert (to_underlying (sig_type->type_offset_in_section) != 0);
23243 temp_die.sect_off = sig_type->type_offset_in_section;
23244 die = (struct die_info *) htab_find_with_hash (sig_cu->die_hash, &temp_die,
23245 to_underlying (temp_die.sect_off));
23246 if (die)
23247 {
23248 struct dwarf2_per_objfile *dwarf2_per_objfile
23249 = (*ref_cu)->per_cu->dwarf2_per_objfile;
23250
23251 /* For .gdb_index version 7 keep track of included TUs.
23252 http://sourceware.org/bugzilla/show_bug.cgi?id=15021. */
23253 if (dwarf2_per_objfile->index_table != NULL
23254 && dwarf2_per_objfile->index_table->version <= 7)
23255 {
23256 VEC_safe_push (dwarf2_per_cu_ptr,
23257 (*ref_cu)->per_cu->imported_symtabs,
23258 sig_cu->per_cu);
23259 }
23260
23261 *ref_cu = sig_cu;
23262 return die;
23263 }
23264
23265 return NULL;
23266 }
23267
23268 /* Follow signatured type referenced by ATTR in SRC_DIE.
23269 On entry *REF_CU is the CU of SRC_DIE.
23270 On exit *REF_CU is the CU of the result.
23271 The result is the DIE of the type.
23272 If the referenced type cannot be found an error is thrown. */
23273
23274 static struct die_info *
23275 follow_die_sig (struct die_info *src_die, const struct attribute *attr,
23276 struct dwarf2_cu **ref_cu)
23277 {
23278 ULONGEST signature = DW_SIGNATURE (attr);
23279 struct signatured_type *sig_type;
23280 struct die_info *die;
23281
23282 gdb_assert (attr->form == DW_FORM_ref_sig8);
23283
23284 sig_type = lookup_signatured_type (*ref_cu, signature);
23285 /* sig_type will be NULL if the signatured type is missing from
23286 the debug info. */
23287 if (sig_type == NULL)
23288 {
23289 error (_("Dwarf Error: Cannot find signatured DIE %s referenced"
23290 " from DIE at %s [in module %s]"),
23291 hex_string (signature), sect_offset_str (src_die->sect_off),
23292 objfile_name ((*ref_cu)->per_cu->dwarf2_per_objfile->objfile));
23293 }
23294
23295 die = follow_die_sig_1 (src_die, sig_type, ref_cu);
23296 if (die == NULL)
23297 {
23298 dump_die_for_error (src_die);
23299 error (_("Dwarf Error: Problem reading signatured DIE %s referenced"
23300 " from DIE at %s [in module %s]"),
23301 hex_string (signature), sect_offset_str (src_die->sect_off),
23302 objfile_name ((*ref_cu)->per_cu->dwarf2_per_objfile->objfile));
23303 }
23304
23305 return die;
23306 }
23307
23308 /* Get the type specified by SIGNATURE referenced in DIE/CU,
23309 reading in and processing the type unit if necessary. */
23310
23311 static struct type *
23312 get_signatured_type (struct die_info *die, ULONGEST signature,
23313 struct dwarf2_cu *cu)
23314 {
23315 struct dwarf2_per_objfile *dwarf2_per_objfile
23316 = cu->per_cu->dwarf2_per_objfile;
23317 struct signatured_type *sig_type;
23318 struct dwarf2_cu *type_cu;
23319 struct die_info *type_die;
23320 struct type *type;
23321
23322 sig_type = lookup_signatured_type (cu, signature);
23323 /* sig_type will be NULL if the signatured type is missing from
23324 the debug info. */
23325 if (sig_type == NULL)
23326 {
23327 complaint (&symfile_complaints,
23328 _("Dwarf Error: Cannot find signatured DIE %s referenced"
23329 " from DIE at %s [in module %s]"),
23330 hex_string (signature), sect_offset_str (die->sect_off),
23331 objfile_name (dwarf2_per_objfile->objfile));
23332 return build_error_marker_type (cu, die);
23333 }
23334
23335 /* If we already know the type we're done. */
23336 if (sig_type->type != NULL)
23337 return sig_type->type;
23338
23339 type_cu = cu;
23340 type_die = follow_die_sig_1 (die, sig_type, &type_cu);
23341 if (type_die != NULL)
23342 {
23343 /* N.B. We need to call get_die_type to ensure only one type for this DIE
23344 is created. This is important, for example, because for c++ classes
23345 we need TYPE_NAME set which is only done by new_symbol. Blech. */
23346 type = read_type_die (type_die, type_cu);
23347 if (type == NULL)
23348 {
23349 complaint (&symfile_complaints,
23350 _("Dwarf Error: Cannot build signatured type %s"
23351 " referenced from DIE at %s [in module %s]"),
23352 hex_string (signature), sect_offset_str (die->sect_off),
23353 objfile_name (dwarf2_per_objfile->objfile));
23354 type = build_error_marker_type (cu, die);
23355 }
23356 }
23357 else
23358 {
23359 complaint (&symfile_complaints,
23360 _("Dwarf Error: Problem reading signatured DIE %s referenced"
23361 " from DIE at %s [in module %s]"),
23362 hex_string (signature), sect_offset_str (die->sect_off),
23363 objfile_name (dwarf2_per_objfile->objfile));
23364 type = build_error_marker_type (cu, die);
23365 }
23366 sig_type->type = type;
23367
23368 return type;
23369 }
23370
23371 /* Get the type specified by the DW_AT_signature ATTR in DIE/CU,
23372 reading in and processing the type unit if necessary. */
23373
23374 static struct type *
23375 get_DW_AT_signature_type (struct die_info *die, const struct attribute *attr,
23376 struct dwarf2_cu *cu) /* ARI: editCase function */
23377 {
23378 /* Yes, DW_AT_signature can use a non-ref_sig8 reference. */
23379 if (attr_form_is_ref (attr))
23380 {
23381 struct dwarf2_cu *type_cu = cu;
23382 struct die_info *type_die = follow_die_ref (die, attr, &type_cu);
23383
23384 return read_type_die (type_die, type_cu);
23385 }
23386 else if (attr->form == DW_FORM_ref_sig8)
23387 {
23388 return get_signatured_type (die, DW_SIGNATURE (attr), cu);
23389 }
23390 else
23391 {
23392 struct dwarf2_per_objfile *dwarf2_per_objfile
23393 = cu->per_cu->dwarf2_per_objfile;
23394
23395 complaint (&symfile_complaints,
23396 _("Dwarf Error: DW_AT_signature has bad form %s in DIE"
23397 " at %s [in module %s]"),
23398 dwarf_form_name (attr->form), sect_offset_str (die->sect_off),
23399 objfile_name (dwarf2_per_objfile->objfile));
23400 return build_error_marker_type (cu, die);
23401 }
23402 }
23403
23404 /* Load the DIEs associated with type unit PER_CU into memory. */
23405
23406 static void
23407 load_full_type_unit (struct dwarf2_per_cu_data *per_cu)
23408 {
23409 struct signatured_type *sig_type;
23410
23411 /* Caller is responsible for ensuring type_unit_groups don't get here. */
23412 gdb_assert (! IS_TYPE_UNIT_GROUP (per_cu));
23413
23414 /* We have the per_cu, but we need the signatured_type.
23415 Fortunately this is an easy translation. */
23416 gdb_assert (per_cu->is_debug_types);
23417 sig_type = (struct signatured_type *) per_cu;
23418
23419 gdb_assert (per_cu->cu == NULL);
23420
23421 read_signatured_type (sig_type);
23422
23423 gdb_assert (per_cu->cu != NULL);
23424 }
23425
23426 /* die_reader_func for read_signatured_type.
23427 This is identical to load_full_comp_unit_reader,
23428 but is kept separate for now. */
23429
23430 static void
23431 read_signatured_type_reader (const struct die_reader_specs *reader,
23432 const gdb_byte *info_ptr,
23433 struct die_info *comp_unit_die,
23434 int has_children,
23435 void *data)
23436 {
23437 struct dwarf2_cu *cu = reader->cu;
23438
23439 gdb_assert (cu->die_hash == NULL);
23440 cu->die_hash =
23441 htab_create_alloc_ex (cu->header.length / 12,
23442 die_hash,
23443 die_eq,
23444 NULL,
23445 &cu->comp_unit_obstack,
23446 hashtab_obstack_allocate,
23447 dummy_obstack_deallocate);
23448
23449 if (has_children)
23450 comp_unit_die->child = read_die_and_siblings (reader, info_ptr,
23451 &info_ptr, comp_unit_die);
23452 cu->dies = comp_unit_die;
23453 /* comp_unit_die is not stored in die_hash, no need. */
23454
23455 /* We try not to read any attributes in this function, because not
23456 all CUs needed for references have been loaded yet, and symbol
23457 table processing isn't initialized. But we have to set the CU language,
23458 or we won't be able to build types correctly.
23459 Similarly, if we do not read the producer, we can not apply
23460 producer-specific interpretation. */
23461 prepare_one_comp_unit (cu, cu->dies, language_minimal);
23462 }
23463
23464 /* Read in a signatured type and build its CU and DIEs.
23465 If the type is a stub for the real type in a DWO file,
23466 read in the real type from the DWO file as well. */
23467
23468 static void
23469 read_signatured_type (struct signatured_type *sig_type)
23470 {
23471 struct dwarf2_per_cu_data *per_cu = &sig_type->per_cu;
23472
23473 gdb_assert (per_cu->is_debug_types);
23474 gdb_assert (per_cu->cu == NULL);
23475
23476 init_cutu_and_read_dies (per_cu, NULL, 0, 1,
23477 read_signatured_type_reader, NULL);
23478 sig_type->per_cu.tu_read = 1;
23479 }
23480
23481 /* Decode simple location descriptions.
23482 Given a pointer to a dwarf block that defines a location, compute
23483 the location and return the value.
23484
23485 NOTE drow/2003-11-18: This function is called in two situations
23486 now: for the address of static or global variables (partial symbols
23487 only) and for offsets into structures which are expected to be
23488 (more or less) constant. The partial symbol case should go away,
23489 and only the constant case should remain. That will let this
23490 function complain more accurately. A few special modes are allowed
23491 without complaint for global variables (for instance, global
23492 register values and thread-local values).
23493
23494 A location description containing no operations indicates that the
23495 object is optimized out. The return value is 0 for that case.
23496 FIXME drow/2003-11-16: No callers check for this case any more; soon all
23497 callers will only want a very basic result and this can become a
23498 complaint.
23499
23500 Note that stack[0] is unused except as a default error return. */
23501
23502 static CORE_ADDR
23503 decode_locdesc (struct dwarf_block *blk, struct dwarf2_cu *cu)
23504 {
23505 struct objfile *objfile = cu->per_cu->dwarf2_per_objfile->objfile;
23506 size_t i;
23507 size_t size = blk->size;
23508 const gdb_byte *data = blk->data;
23509 CORE_ADDR stack[64];
23510 int stacki;
23511 unsigned int bytes_read, unsnd;
23512 gdb_byte op;
23513
23514 i = 0;
23515 stacki = 0;
23516 stack[stacki] = 0;
23517 stack[++stacki] = 0;
23518
23519 while (i < size)
23520 {
23521 op = data[i++];
23522 switch (op)
23523 {
23524 case DW_OP_lit0:
23525 case DW_OP_lit1:
23526 case DW_OP_lit2:
23527 case DW_OP_lit3:
23528 case DW_OP_lit4:
23529 case DW_OP_lit5:
23530 case DW_OP_lit6:
23531 case DW_OP_lit7:
23532 case DW_OP_lit8:
23533 case DW_OP_lit9:
23534 case DW_OP_lit10:
23535 case DW_OP_lit11:
23536 case DW_OP_lit12:
23537 case DW_OP_lit13:
23538 case DW_OP_lit14:
23539 case DW_OP_lit15:
23540 case DW_OP_lit16:
23541 case DW_OP_lit17:
23542 case DW_OP_lit18:
23543 case DW_OP_lit19:
23544 case DW_OP_lit20:
23545 case DW_OP_lit21:
23546 case DW_OP_lit22:
23547 case DW_OP_lit23:
23548 case DW_OP_lit24:
23549 case DW_OP_lit25:
23550 case DW_OP_lit26:
23551 case DW_OP_lit27:
23552 case DW_OP_lit28:
23553 case DW_OP_lit29:
23554 case DW_OP_lit30:
23555 case DW_OP_lit31:
23556 stack[++stacki] = op - DW_OP_lit0;
23557 break;
23558
23559 case DW_OP_reg0:
23560 case DW_OP_reg1:
23561 case DW_OP_reg2:
23562 case DW_OP_reg3:
23563 case DW_OP_reg4:
23564 case DW_OP_reg5:
23565 case DW_OP_reg6:
23566 case DW_OP_reg7:
23567 case DW_OP_reg8:
23568 case DW_OP_reg9:
23569 case DW_OP_reg10:
23570 case DW_OP_reg11:
23571 case DW_OP_reg12:
23572 case DW_OP_reg13:
23573 case DW_OP_reg14:
23574 case DW_OP_reg15:
23575 case DW_OP_reg16:
23576 case DW_OP_reg17:
23577 case DW_OP_reg18:
23578 case DW_OP_reg19:
23579 case DW_OP_reg20:
23580 case DW_OP_reg21:
23581 case DW_OP_reg22:
23582 case DW_OP_reg23:
23583 case DW_OP_reg24:
23584 case DW_OP_reg25:
23585 case DW_OP_reg26:
23586 case DW_OP_reg27:
23587 case DW_OP_reg28:
23588 case DW_OP_reg29:
23589 case DW_OP_reg30:
23590 case DW_OP_reg31:
23591 stack[++stacki] = op - DW_OP_reg0;
23592 if (i < size)
23593 dwarf2_complex_location_expr_complaint ();
23594 break;
23595
23596 case DW_OP_regx:
23597 unsnd = read_unsigned_leb128 (NULL, (data + i), &bytes_read);
23598 i += bytes_read;
23599 stack[++stacki] = unsnd;
23600 if (i < size)
23601 dwarf2_complex_location_expr_complaint ();
23602 break;
23603
23604 case DW_OP_addr:
23605 stack[++stacki] = read_address (objfile->obfd, &data[i],
23606 cu, &bytes_read);
23607 i += bytes_read;
23608 break;
23609
23610 case DW_OP_const1u:
23611 stack[++stacki] = read_1_byte (objfile->obfd, &data[i]);
23612 i += 1;
23613 break;
23614
23615 case DW_OP_const1s:
23616 stack[++stacki] = read_1_signed_byte (objfile->obfd, &data[i]);
23617 i += 1;
23618 break;
23619
23620 case DW_OP_const2u:
23621 stack[++stacki] = read_2_bytes (objfile->obfd, &data[i]);
23622 i += 2;
23623 break;
23624
23625 case DW_OP_const2s:
23626 stack[++stacki] = read_2_signed_bytes (objfile->obfd, &data[i]);
23627 i += 2;
23628 break;
23629
23630 case DW_OP_const4u:
23631 stack[++stacki] = read_4_bytes (objfile->obfd, &data[i]);
23632 i += 4;
23633 break;
23634
23635 case DW_OP_const4s:
23636 stack[++stacki] = read_4_signed_bytes (objfile->obfd, &data[i]);
23637 i += 4;
23638 break;
23639
23640 case DW_OP_const8u:
23641 stack[++stacki] = read_8_bytes (objfile->obfd, &data[i]);
23642 i += 8;
23643 break;
23644
23645 case DW_OP_constu:
23646 stack[++stacki] = read_unsigned_leb128 (NULL, (data + i),
23647 &bytes_read);
23648 i += bytes_read;
23649 break;
23650
23651 case DW_OP_consts:
23652 stack[++stacki] = read_signed_leb128 (NULL, (data + i), &bytes_read);
23653 i += bytes_read;
23654 break;
23655
23656 case DW_OP_dup:
23657 stack[stacki + 1] = stack[stacki];
23658 stacki++;
23659 break;
23660
23661 case DW_OP_plus:
23662 stack[stacki - 1] += stack[stacki];
23663 stacki--;
23664 break;
23665
23666 case DW_OP_plus_uconst:
23667 stack[stacki] += read_unsigned_leb128 (NULL, (data + i),
23668 &bytes_read);
23669 i += bytes_read;
23670 break;
23671
23672 case DW_OP_minus:
23673 stack[stacki - 1] -= stack[stacki];
23674 stacki--;
23675 break;
23676
23677 case DW_OP_deref:
23678 /* If we're not the last op, then we definitely can't encode
23679 this using GDB's address_class enum. This is valid for partial
23680 global symbols, although the variable's address will be bogus
23681 in the psymtab. */
23682 if (i < size)
23683 dwarf2_complex_location_expr_complaint ();
23684 break;
23685
23686 case DW_OP_GNU_push_tls_address:
23687 case DW_OP_form_tls_address:
23688 /* The top of the stack has the offset from the beginning
23689 of the thread control block at which the variable is located. */
23690 /* Nothing should follow this operator, so the top of stack would
23691 be returned. */
23692 /* This is valid for partial global symbols, but the variable's
23693 address will be bogus in the psymtab. Make it always at least
23694 non-zero to not look as a variable garbage collected by linker
23695 which have DW_OP_addr 0. */
23696 if (i < size)
23697 dwarf2_complex_location_expr_complaint ();
23698 stack[stacki]++;
23699 break;
23700
23701 case DW_OP_GNU_uninit:
23702 break;
23703
23704 case DW_OP_GNU_addr_index:
23705 case DW_OP_GNU_const_index:
23706 stack[++stacki] = read_addr_index_from_leb128 (cu, &data[i],
23707 &bytes_read);
23708 i += bytes_read;
23709 break;
23710
23711 default:
23712 {
23713 const char *name = get_DW_OP_name (op);
23714
23715 if (name)
23716 complaint (&symfile_complaints, _("unsupported stack op: '%s'"),
23717 name);
23718 else
23719 complaint (&symfile_complaints, _("unsupported stack op: '%02x'"),
23720 op);
23721 }
23722
23723 return (stack[stacki]);
23724 }
23725
23726 /* Enforce maximum stack depth of SIZE-1 to avoid writing
23727 outside of the allocated space. Also enforce minimum>0. */
23728 if (stacki >= ARRAY_SIZE (stack) - 1)
23729 {
23730 complaint (&symfile_complaints,
23731 _("location description stack overflow"));
23732 return 0;
23733 }
23734
23735 if (stacki <= 0)
23736 {
23737 complaint (&symfile_complaints,
23738 _("location description stack underflow"));
23739 return 0;
23740 }
23741 }
23742 return (stack[stacki]);
23743 }
23744
23745 /* memory allocation interface */
23746
23747 static struct dwarf_block *
23748 dwarf_alloc_block (struct dwarf2_cu *cu)
23749 {
23750 return XOBNEW (&cu->comp_unit_obstack, struct dwarf_block);
23751 }
23752
23753 static struct die_info *
23754 dwarf_alloc_die (struct dwarf2_cu *cu, int num_attrs)
23755 {
23756 struct die_info *die;
23757 size_t size = sizeof (struct die_info);
23758
23759 if (num_attrs > 1)
23760 size += (num_attrs - 1) * sizeof (struct attribute);
23761
23762 die = (struct die_info *) obstack_alloc (&cu->comp_unit_obstack, size);
23763 memset (die, 0, sizeof (struct die_info));
23764 return (die);
23765 }
23766
23767 \f
23768 /* Macro support. */
23769
23770 /* Return file name relative to the compilation directory of file number I in
23771 *LH's file name table. The result is allocated using xmalloc; the caller is
23772 responsible for freeing it. */
23773
23774 static char *
23775 file_file_name (int file, struct line_header *lh)
23776 {
23777 /* Is the file number a valid index into the line header's file name
23778 table? Remember that file numbers start with one, not zero. */
23779 if (1 <= file && file <= lh->file_names.size ())
23780 {
23781 const file_entry &fe = lh->file_names[file - 1];
23782
23783 if (!IS_ABSOLUTE_PATH (fe.name))
23784 {
23785 const char *dir = fe.include_dir (lh);
23786 if (dir != NULL)
23787 return concat (dir, SLASH_STRING, fe.name, (char *) NULL);
23788 }
23789 return xstrdup (fe.name);
23790 }
23791 else
23792 {
23793 /* The compiler produced a bogus file number. We can at least
23794 record the macro definitions made in the file, even if we
23795 won't be able to find the file by name. */
23796 char fake_name[80];
23797
23798 xsnprintf (fake_name, sizeof (fake_name),
23799 "<bad macro file number %d>", file);
23800
23801 complaint (&symfile_complaints,
23802 _("bad file number in macro information (%d)"),
23803 file);
23804
23805 return xstrdup (fake_name);
23806 }
23807 }
23808
23809 /* Return the full name of file number I in *LH's file name table.
23810 Use COMP_DIR as the name of the current directory of the
23811 compilation. The result is allocated using xmalloc; the caller is
23812 responsible for freeing it. */
23813 static char *
23814 file_full_name (int file, struct line_header *lh, const char *comp_dir)
23815 {
23816 /* Is the file number a valid index into the line header's file name
23817 table? Remember that file numbers start with one, not zero. */
23818 if (1 <= file && file <= lh->file_names.size ())
23819 {
23820 char *relative = file_file_name (file, lh);
23821
23822 if (IS_ABSOLUTE_PATH (relative) || comp_dir == NULL)
23823 return relative;
23824 return reconcat (relative, comp_dir, SLASH_STRING,
23825 relative, (char *) NULL);
23826 }
23827 else
23828 return file_file_name (file, lh);
23829 }
23830
23831
23832 static struct macro_source_file *
23833 macro_start_file (int file, int line,
23834 struct macro_source_file *current_file,
23835 struct line_header *lh)
23836 {
23837 /* File name relative to the compilation directory of this source file. */
23838 char *file_name = file_file_name (file, lh);
23839
23840 if (! current_file)
23841 {
23842 /* Note: We don't create a macro table for this compilation unit
23843 at all until we actually get a filename. */
23844 struct macro_table *macro_table = get_macro_table ();
23845
23846 /* If we have no current file, then this must be the start_file
23847 directive for the compilation unit's main source file. */
23848 current_file = macro_set_main (macro_table, file_name);
23849 macro_define_special (macro_table);
23850 }
23851 else
23852 current_file = macro_include (current_file, line, file_name);
23853
23854 xfree (file_name);
23855
23856 return current_file;
23857 }
23858
23859 static const char *
23860 consume_improper_spaces (const char *p, const char *body)
23861 {
23862 if (*p == ' ')
23863 {
23864 complaint (&symfile_complaints,
23865 _("macro definition contains spaces "
23866 "in formal argument list:\n`%s'"),
23867 body);
23868
23869 while (*p == ' ')
23870 p++;
23871 }
23872
23873 return p;
23874 }
23875
23876
23877 static void
23878 parse_macro_definition (struct macro_source_file *file, int line,
23879 const char *body)
23880 {
23881 const char *p;
23882
23883 /* The body string takes one of two forms. For object-like macro
23884 definitions, it should be:
23885
23886 <macro name> " " <definition>
23887
23888 For function-like macro definitions, it should be:
23889
23890 <macro name> "() " <definition>
23891 or
23892 <macro name> "(" <arg name> ( "," <arg name> ) * ") " <definition>
23893
23894 Spaces may appear only where explicitly indicated, and in the
23895 <definition>.
23896
23897 The Dwarf 2 spec says that an object-like macro's name is always
23898 followed by a space, but versions of GCC around March 2002 omit
23899 the space when the macro's definition is the empty string.
23900
23901 The Dwarf 2 spec says that there should be no spaces between the
23902 formal arguments in a function-like macro's formal argument list,
23903 but versions of GCC around March 2002 include spaces after the
23904 commas. */
23905
23906
23907 /* Find the extent of the macro name. The macro name is terminated
23908 by either a space or null character (for an object-like macro) or
23909 an opening paren (for a function-like macro). */
23910 for (p = body; *p; p++)
23911 if (*p == ' ' || *p == '(')
23912 break;
23913
23914 if (*p == ' ' || *p == '\0')
23915 {
23916 /* It's an object-like macro. */
23917 int name_len = p - body;
23918 char *name = savestring (body, name_len);
23919 const char *replacement;
23920
23921 if (*p == ' ')
23922 replacement = body + name_len + 1;
23923 else
23924 {
23925 dwarf2_macro_malformed_definition_complaint (body);
23926 replacement = body + name_len;
23927 }
23928
23929 macro_define_object (file, line, name, replacement);
23930
23931 xfree (name);
23932 }
23933 else if (*p == '(')
23934 {
23935 /* It's a function-like macro. */
23936 char *name = savestring (body, p - body);
23937 int argc = 0;
23938 int argv_size = 1;
23939 char **argv = XNEWVEC (char *, argv_size);
23940
23941 p++;
23942
23943 p = consume_improper_spaces (p, body);
23944
23945 /* Parse the formal argument list. */
23946 while (*p && *p != ')')
23947 {
23948 /* Find the extent of the current argument name. */
23949 const char *arg_start = p;
23950
23951 while (*p && *p != ',' && *p != ')' && *p != ' ')
23952 p++;
23953
23954 if (! *p || p == arg_start)
23955 dwarf2_macro_malformed_definition_complaint (body);
23956 else
23957 {
23958 /* Make sure argv has room for the new argument. */
23959 if (argc >= argv_size)
23960 {
23961 argv_size *= 2;
23962 argv = XRESIZEVEC (char *, argv, argv_size);
23963 }
23964
23965 argv[argc++] = savestring (arg_start, p - arg_start);
23966 }
23967
23968 p = consume_improper_spaces (p, body);
23969
23970 /* Consume the comma, if present. */
23971 if (*p == ',')
23972 {
23973 p++;
23974
23975 p = consume_improper_spaces (p, body);
23976 }
23977 }
23978
23979 if (*p == ')')
23980 {
23981 p++;
23982
23983 if (*p == ' ')
23984 /* Perfectly formed definition, no complaints. */
23985 macro_define_function (file, line, name,
23986 argc, (const char **) argv,
23987 p + 1);
23988 else if (*p == '\0')
23989 {
23990 /* Complain, but do define it. */
23991 dwarf2_macro_malformed_definition_complaint (body);
23992 macro_define_function (file, line, name,
23993 argc, (const char **) argv,
23994 p);
23995 }
23996 else
23997 /* Just complain. */
23998 dwarf2_macro_malformed_definition_complaint (body);
23999 }
24000 else
24001 /* Just complain. */
24002 dwarf2_macro_malformed_definition_complaint (body);
24003
24004 xfree (name);
24005 {
24006 int i;
24007
24008 for (i = 0; i < argc; i++)
24009 xfree (argv[i]);
24010 }
24011 xfree (argv);
24012 }
24013 else
24014 dwarf2_macro_malformed_definition_complaint (body);
24015 }
24016
24017 /* Skip some bytes from BYTES according to the form given in FORM.
24018 Returns the new pointer. */
24019
24020 static const gdb_byte *
24021 skip_form_bytes (bfd *abfd, const gdb_byte *bytes, const gdb_byte *buffer_end,
24022 enum dwarf_form form,
24023 unsigned int offset_size,
24024 struct dwarf2_section_info *section)
24025 {
24026 unsigned int bytes_read;
24027
24028 switch (form)
24029 {
24030 case DW_FORM_data1:
24031 case DW_FORM_flag:
24032 ++bytes;
24033 break;
24034
24035 case DW_FORM_data2:
24036 bytes += 2;
24037 break;
24038
24039 case DW_FORM_data4:
24040 bytes += 4;
24041 break;
24042
24043 case DW_FORM_data8:
24044 bytes += 8;
24045 break;
24046
24047 case DW_FORM_data16:
24048 bytes += 16;
24049 break;
24050
24051 case DW_FORM_string:
24052 read_direct_string (abfd, bytes, &bytes_read);
24053 bytes += bytes_read;
24054 break;
24055
24056 case DW_FORM_sec_offset:
24057 case DW_FORM_strp:
24058 case DW_FORM_GNU_strp_alt:
24059 bytes += offset_size;
24060 break;
24061
24062 case DW_FORM_block:
24063 bytes += read_unsigned_leb128 (abfd, bytes, &bytes_read);
24064 bytes += bytes_read;
24065 break;
24066
24067 case DW_FORM_block1:
24068 bytes += 1 + read_1_byte (abfd, bytes);
24069 break;
24070 case DW_FORM_block2:
24071 bytes += 2 + read_2_bytes (abfd, bytes);
24072 break;
24073 case DW_FORM_block4:
24074 bytes += 4 + read_4_bytes (abfd, bytes);
24075 break;
24076
24077 case DW_FORM_sdata:
24078 case DW_FORM_udata:
24079 case DW_FORM_GNU_addr_index:
24080 case DW_FORM_GNU_str_index:
24081 bytes = gdb_skip_leb128 (bytes, buffer_end);
24082 if (bytes == NULL)
24083 {
24084 dwarf2_section_buffer_overflow_complaint (section);
24085 return NULL;
24086 }
24087 break;
24088
24089 case DW_FORM_implicit_const:
24090 break;
24091
24092 default:
24093 {
24094 complaint (&symfile_complaints,
24095 _("invalid form 0x%x in `%s'"),
24096 form, get_section_name (section));
24097 return NULL;
24098 }
24099 }
24100
24101 return bytes;
24102 }
24103
24104 /* A helper for dwarf_decode_macros that handles skipping an unknown
24105 opcode. Returns an updated pointer to the macro data buffer; or,
24106 on error, issues a complaint and returns NULL. */
24107
24108 static const gdb_byte *
24109 skip_unknown_opcode (unsigned int opcode,
24110 const gdb_byte **opcode_definitions,
24111 const gdb_byte *mac_ptr, const gdb_byte *mac_end,
24112 bfd *abfd,
24113 unsigned int offset_size,
24114 struct dwarf2_section_info *section)
24115 {
24116 unsigned int bytes_read, i;
24117 unsigned long arg;
24118 const gdb_byte *defn;
24119
24120 if (opcode_definitions[opcode] == NULL)
24121 {
24122 complaint (&symfile_complaints,
24123 _("unrecognized DW_MACFINO opcode 0x%x"),
24124 opcode);
24125 return NULL;
24126 }
24127
24128 defn = opcode_definitions[opcode];
24129 arg = read_unsigned_leb128 (abfd, defn, &bytes_read);
24130 defn += bytes_read;
24131
24132 for (i = 0; i < arg; ++i)
24133 {
24134 mac_ptr = skip_form_bytes (abfd, mac_ptr, mac_end,
24135 (enum dwarf_form) defn[i], offset_size,
24136 section);
24137 if (mac_ptr == NULL)
24138 {
24139 /* skip_form_bytes already issued the complaint. */
24140 return NULL;
24141 }
24142 }
24143
24144 return mac_ptr;
24145 }
24146
24147 /* A helper function which parses the header of a macro section.
24148 If the macro section is the extended (for now called "GNU") type,
24149 then this updates *OFFSET_SIZE. Returns a pointer to just after
24150 the header, or issues a complaint and returns NULL on error. */
24151
24152 static const gdb_byte *
24153 dwarf_parse_macro_header (const gdb_byte **opcode_definitions,
24154 bfd *abfd,
24155 const gdb_byte *mac_ptr,
24156 unsigned int *offset_size,
24157 int section_is_gnu)
24158 {
24159 memset (opcode_definitions, 0, 256 * sizeof (gdb_byte *));
24160
24161 if (section_is_gnu)
24162 {
24163 unsigned int version, flags;
24164
24165 version = read_2_bytes (abfd, mac_ptr);
24166 if (version != 4 && version != 5)
24167 {
24168 complaint (&symfile_complaints,
24169 _("unrecognized version `%d' in .debug_macro section"),
24170 version);
24171 return NULL;
24172 }
24173 mac_ptr += 2;
24174
24175 flags = read_1_byte (abfd, mac_ptr);
24176 ++mac_ptr;
24177 *offset_size = (flags & 1) ? 8 : 4;
24178
24179 if ((flags & 2) != 0)
24180 /* We don't need the line table offset. */
24181 mac_ptr += *offset_size;
24182
24183 /* Vendor opcode descriptions. */
24184 if ((flags & 4) != 0)
24185 {
24186 unsigned int i, count;
24187
24188 count = read_1_byte (abfd, mac_ptr);
24189 ++mac_ptr;
24190 for (i = 0; i < count; ++i)
24191 {
24192 unsigned int opcode, bytes_read;
24193 unsigned long arg;
24194
24195 opcode = read_1_byte (abfd, mac_ptr);
24196 ++mac_ptr;
24197 opcode_definitions[opcode] = mac_ptr;
24198 arg = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
24199 mac_ptr += bytes_read;
24200 mac_ptr += arg;
24201 }
24202 }
24203 }
24204
24205 return mac_ptr;
24206 }
24207
24208 /* A helper for dwarf_decode_macros that handles the GNU extensions,
24209 including DW_MACRO_import. */
24210
24211 static void
24212 dwarf_decode_macro_bytes (struct dwarf2_per_objfile *dwarf2_per_objfile,
24213 bfd *abfd,
24214 const gdb_byte *mac_ptr, const gdb_byte *mac_end,
24215 struct macro_source_file *current_file,
24216 struct line_header *lh,
24217 struct dwarf2_section_info *section,
24218 int section_is_gnu, int section_is_dwz,
24219 unsigned int offset_size,
24220 htab_t include_hash)
24221 {
24222 struct objfile *objfile = dwarf2_per_objfile->objfile;
24223 enum dwarf_macro_record_type macinfo_type;
24224 int at_commandline;
24225 const gdb_byte *opcode_definitions[256];
24226
24227 mac_ptr = dwarf_parse_macro_header (opcode_definitions, abfd, mac_ptr,
24228 &offset_size, section_is_gnu);
24229 if (mac_ptr == NULL)
24230 {
24231 /* We already issued a complaint. */
24232 return;
24233 }
24234
24235 /* Determines if GDB is still before first DW_MACINFO_start_file. If true
24236 GDB is still reading the definitions from command line. First
24237 DW_MACINFO_start_file will need to be ignored as it was already executed
24238 to create CURRENT_FILE for the main source holding also the command line
24239 definitions. On first met DW_MACINFO_start_file this flag is reset to
24240 normally execute all the remaining DW_MACINFO_start_file macinfos. */
24241
24242 at_commandline = 1;
24243
24244 do
24245 {
24246 /* Do we at least have room for a macinfo type byte? */
24247 if (mac_ptr >= mac_end)
24248 {
24249 dwarf2_section_buffer_overflow_complaint (section);
24250 break;
24251 }
24252
24253 macinfo_type = (enum dwarf_macro_record_type) read_1_byte (abfd, mac_ptr);
24254 mac_ptr++;
24255
24256 /* Note that we rely on the fact that the corresponding GNU and
24257 DWARF constants are the same. */
24258 DIAGNOSTIC_PUSH
24259 DIAGNOSTIC_IGNORE_SWITCH_DIFFERENT_ENUM_TYPES
24260 switch (macinfo_type)
24261 {
24262 /* A zero macinfo type indicates the end of the macro
24263 information. */
24264 case 0:
24265 break;
24266
24267 case DW_MACRO_define:
24268 case DW_MACRO_undef:
24269 case DW_MACRO_define_strp:
24270 case DW_MACRO_undef_strp:
24271 case DW_MACRO_define_sup:
24272 case DW_MACRO_undef_sup:
24273 {
24274 unsigned int bytes_read;
24275 int line;
24276 const char *body;
24277 int is_define;
24278
24279 line = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
24280 mac_ptr += bytes_read;
24281
24282 if (macinfo_type == DW_MACRO_define
24283 || macinfo_type == DW_MACRO_undef)
24284 {
24285 body = read_direct_string (abfd, mac_ptr, &bytes_read);
24286 mac_ptr += bytes_read;
24287 }
24288 else
24289 {
24290 LONGEST str_offset;
24291
24292 str_offset = read_offset_1 (abfd, mac_ptr, offset_size);
24293 mac_ptr += offset_size;
24294
24295 if (macinfo_type == DW_MACRO_define_sup
24296 || macinfo_type == DW_MACRO_undef_sup
24297 || section_is_dwz)
24298 {
24299 struct dwz_file *dwz
24300 = dwarf2_get_dwz_file (dwarf2_per_objfile);
24301
24302 body = read_indirect_string_from_dwz (objfile,
24303 dwz, str_offset);
24304 }
24305 else
24306 body = read_indirect_string_at_offset (dwarf2_per_objfile,
24307 abfd, str_offset);
24308 }
24309
24310 is_define = (macinfo_type == DW_MACRO_define
24311 || macinfo_type == DW_MACRO_define_strp
24312 || macinfo_type == DW_MACRO_define_sup);
24313 if (! current_file)
24314 {
24315 /* DWARF violation as no main source is present. */
24316 complaint (&symfile_complaints,
24317 _("debug info with no main source gives macro %s "
24318 "on line %d: %s"),
24319 is_define ? _("definition") : _("undefinition"),
24320 line, body);
24321 break;
24322 }
24323 if ((line == 0 && !at_commandline)
24324 || (line != 0 && at_commandline))
24325 complaint (&symfile_complaints,
24326 _("debug info gives %s macro %s with %s line %d: %s"),
24327 at_commandline ? _("command-line") : _("in-file"),
24328 is_define ? _("definition") : _("undefinition"),
24329 line == 0 ? _("zero") : _("non-zero"), line, body);
24330
24331 if (is_define)
24332 parse_macro_definition (current_file, line, body);
24333 else
24334 {
24335 gdb_assert (macinfo_type == DW_MACRO_undef
24336 || macinfo_type == DW_MACRO_undef_strp
24337 || macinfo_type == DW_MACRO_undef_sup);
24338 macro_undef (current_file, line, body);
24339 }
24340 }
24341 break;
24342
24343 case DW_MACRO_start_file:
24344 {
24345 unsigned int bytes_read;
24346 int line, file;
24347
24348 line = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
24349 mac_ptr += bytes_read;
24350 file = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
24351 mac_ptr += bytes_read;
24352
24353 if ((line == 0 && !at_commandline)
24354 || (line != 0 && at_commandline))
24355 complaint (&symfile_complaints,
24356 _("debug info gives source %d included "
24357 "from %s at %s line %d"),
24358 file, at_commandline ? _("command-line") : _("file"),
24359 line == 0 ? _("zero") : _("non-zero"), line);
24360
24361 if (at_commandline)
24362 {
24363 /* This DW_MACRO_start_file was executed in the
24364 pass one. */
24365 at_commandline = 0;
24366 }
24367 else
24368 current_file = macro_start_file (file, line, current_file, lh);
24369 }
24370 break;
24371
24372 case DW_MACRO_end_file:
24373 if (! current_file)
24374 complaint (&symfile_complaints,
24375 _("macro debug info has an unmatched "
24376 "`close_file' directive"));
24377 else
24378 {
24379 current_file = current_file->included_by;
24380 if (! current_file)
24381 {
24382 enum dwarf_macro_record_type next_type;
24383
24384 /* GCC circa March 2002 doesn't produce the zero
24385 type byte marking the end of the compilation
24386 unit. Complain if it's not there, but exit no
24387 matter what. */
24388
24389 /* Do we at least have room for a macinfo type byte? */
24390 if (mac_ptr >= mac_end)
24391 {
24392 dwarf2_section_buffer_overflow_complaint (section);
24393 return;
24394 }
24395
24396 /* We don't increment mac_ptr here, so this is just
24397 a look-ahead. */
24398 next_type
24399 = (enum dwarf_macro_record_type) read_1_byte (abfd,
24400 mac_ptr);
24401 if (next_type != 0)
24402 complaint (&symfile_complaints,
24403 _("no terminating 0-type entry for "
24404 "macros in `.debug_macinfo' section"));
24405
24406 return;
24407 }
24408 }
24409 break;
24410
24411 case DW_MACRO_import:
24412 case DW_MACRO_import_sup:
24413 {
24414 LONGEST offset;
24415 void **slot;
24416 bfd *include_bfd = abfd;
24417 struct dwarf2_section_info *include_section = section;
24418 const gdb_byte *include_mac_end = mac_end;
24419 int is_dwz = section_is_dwz;
24420 const gdb_byte *new_mac_ptr;
24421
24422 offset = read_offset_1 (abfd, mac_ptr, offset_size);
24423 mac_ptr += offset_size;
24424
24425 if (macinfo_type == DW_MACRO_import_sup)
24426 {
24427 struct dwz_file *dwz = dwarf2_get_dwz_file (dwarf2_per_objfile);
24428
24429 dwarf2_read_section (objfile, &dwz->macro);
24430
24431 include_section = &dwz->macro;
24432 include_bfd = get_section_bfd_owner (include_section);
24433 include_mac_end = dwz->macro.buffer + dwz->macro.size;
24434 is_dwz = 1;
24435 }
24436
24437 new_mac_ptr = include_section->buffer + offset;
24438 slot = htab_find_slot (include_hash, new_mac_ptr, INSERT);
24439
24440 if (*slot != NULL)
24441 {
24442 /* This has actually happened; see
24443 http://sourceware.org/bugzilla/show_bug.cgi?id=13568. */
24444 complaint (&symfile_complaints,
24445 _("recursive DW_MACRO_import in "
24446 ".debug_macro section"));
24447 }
24448 else
24449 {
24450 *slot = (void *) new_mac_ptr;
24451
24452 dwarf_decode_macro_bytes (dwarf2_per_objfile,
24453 include_bfd, new_mac_ptr,
24454 include_mac_end, current_file, lh,
24455 section, section_is_gnu, is_dwz,
24456 offset_size, include_hash);
24457
24458 htab_remove_elt (include_hash, (void *) new_mac_ptr);
24459 }
24460 }
24461 break;
24462
24463 case DW_MACINFO_vendor_ext:
24464 if (!section_is_gnu)
24465 {
24466 unsigned int bytes_read;
24467
24468 /* This reads the constant, but since we don't recognize
24469 any vendor extensions, we ignore it. */
24470 read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
24471 mac_ptr += bytes_read;
24472 read_direct_string (abfd, mac_ptr, &bytes_read);
24473 mac_ptr += bytes_read;
24474
24475 /* We don't recognize any vendor extensions. */
24476 break;
24477 }
24478 /* FALLTHROUGH */
24479
24480 default:
24481 mac_ptr = skip_unknown_opcode (macinfo_type, opcode_definitions,
24482 mac_ptr, mac_end, abfd, offset_size,
24483 section);
24484 if (mac_ptr == NULL)
24485 return;
24486 break;
24487 }
24488 DIAGNOSTIC_POP
24489 } while (macinfo_type != 0);
24490 }
24491
24492 static void
24493 dwarf_decode_macros (struct dwarf2_cu *cu, unsigned int offset,
24494 int section_is_gnu)
24495 {
24496 struct dwarf2_per_objfile *dwarf2_per_objfile
24497 = cu->per_cu->dwarf2_per_objfile;
24498 struct objfile *objfile = dwarf2_per_objfile->objfile;
24499 struct line_header *lh = cu->line_header;
24500 bfd *abfd;
24501 const gdb_byte *mac_ptr, *mac_end;
24502 struct macro_source_file *current_file = 0;
24503 enum dwarf_macro_record_type macinfo_type;
24504 unsigned int offset_size = cu->header.offset_size;
24505 const gdb_byte *opcode_definitions[256];
24506 void **slot;
24507 struct dwarf2_section_info *section;
24508 const char *section_name;
24509
24510 if (cu->dwo_unit != NULL)
24511 {
24512 if (section_is_gnu)
24513 {
24514 section = &cu->dwo_unit->dwo_file->sections.macro;
24515 section_name = ".debug_macro.dwo";
24516 }
24517 else
24518 {
24519 section = &cu->dwo_unit->dwo_file->sections.macinfo;
24520 section_name = ".debug_macinfo.dwo";
24521 }
24522 }
24523 else
24524 {
24525 if (section_is_gnu)
24526 {
24527 section = &dwarf2_per_objfile->macro;
24528 section_name = ".debug_macro";
24529 }
24530 else
24531 {
24532 section = &dwarf2_per_objfile->macinfo;
24533 section_name = ".debug_macinfo";
24534 }
24535 }
24536
24537 dwarf2_read_section (objfile, section);
24538 if (section->buffer == NULL)
24539 {
24540 complaint (&symfile_complaints, _("missing %s section"), section_name);
24541 return;
24542 }
24543 abfd = get_section_bfd_owner (section);
24544
24545 /* First pass: Find the name of the base filename.
24546 This filename is needed in order to process all macros whose definition
24547 (or undefinition) comes from the command line. These macros are defined
24548 before the first DW_MACINFO_start_file entry, and yet still need to be
24549 associated to the base file.
24550
24551 To determine the base file name, we scan the macro definitions until we
24552 reach the first DW_MACINFO_start_file entry. We then initialize
24553 CURRENT_FILE accordingly so that any macro definition found before the
24554 first DW_MACINFO_start_file can still be associated to the base file. */
24555
24556 mac_ptr = section->buffer + offset;
24557 mac_end = section->buffer + section->size;
24558
24559 mac_ptr = dwarf_parse_macro_header (opcode_definitions, abfd, mac_ptr,
24560 &offset_size, section_is_gnu);
24561 if (mac_ptr == NULL)
24562 {
24563 /* We already issued a complaint. */
24564 return;
24565 }
24566
24567 do
24568 {
24569 /* Do we at least have room for a macinfo type byte? */
24570 if (mac_ptr >= mac_end)
24571 {
24572 /* Complaint is printed during the second pass as GDB will probably
24573 stop the first pass earlier upon finding
24574 DW_MACINFO_start_file. */
24575 break;
24576 }
24577
24578 macinfo_type = (enum dwarf_macro_record_type) read_1_byte (abfd, mac_ptr);
24579 mac_ptr++;
24580
24581 /* Note that we rely on the fact that the corresponding GNU and
24582 DWARF constants are the same. */
24583 DIAGNOSTIC_PUSH
24584 DIAGNOSTIC_IGNORE_SWITCH_DIFFERENT_ENUM_TYPES
24585 switch (macinfo_type)
24586 {
24587 /* A zero macinfo type indicates the end of the macro
24588 information. */
24589 case 0:
24590 break;
24591
24592 case DW_MACRO_define:
24593 case DW_MACRO_undef:
24594 /* Only skip the data by MAC_PTR. */
24595 {
24596 unsigned int bytes_read;
24597
24598 read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
24599 mac_ptr += bytes_read;
24600 read_direct_string (abfd, mac_ptr, &bytes_read);
24601 mac_ptr += bytes_read;
24602 }
24603 break;
24604
24605 case DW_MACRO_start_file:
24606 {
24607 unsigned int bytes_read;
24608 int line, file;
24609
24610 line = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
24611 mac_ptr += bytes_read;
24612 file = read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
24613 mac_ptr += bytes_read;
24614
24615 current_file = macro_start_file (file, line, current_file, lh);
24616 }
24617 break;
24618
24619 case DW_MACRO_end_file:
24620 /* No data to skip by MAC_PTR. */
24621 break;
24622
24623 case DW_MACRO_define_strp:
24624 case DW_MACRO_undef_strp:
24625 case DW_MACRO_define_sup:
24626 case DW_MACRO_undef_sup:
24627 {
24628 unsigned int bytes_read;
24629
24630 read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
24631 mac_ptr += bytes_read;
24632 mac_ptr += offset_size;
24633 }
24634 break;
24635
24636 case DW_MACRO_import:
24637 case DW_MACRO_import_sup:
24638 /* Note that, according to the spec, a transparent include
24639 chain cannot call DW_MACRO_start_file. So, we can just
24640 skip this opcode. */
24641 mac_ptr += offset_size;
24642 break;
24643
24644 case DW_MACINFO_vendor_ext:
24645 /* Only skip the data by MAC_PTR. */
24646 if (!section_is_gnu)
24647 {
24648 unsigned int bytes_read;
24649
24650 read_unsigned_leb128 (abfd, mac_ptr, &bytes_read);
24651 mac_ptr += bytes_read;
24652 read_direct_string (abfd, mac_ptr, &bytes_read);
24653 mac_ptr += bytes_read;
24654 }
24655 /* FALLTHROUGH */
24656
24657 default:
24658 mac_ptr = skip_unknown_opcode (macinfo_type, opcode_definitions,
24659 mac_ptr, mac_end, abfd, offset_size,
24660 section);
24661 if (mac_ptr == NULL)
24662 return;
24663 break;
24664 }
24665 DIAGNOSTIC_POP
24666 } while (macinfo_type != 0 && current_file == NULL);
24667
24668 /* Second pass: Process all entries.
24669
24670 Use the AT_COMMAND_LINE flag to determine whether we are still processing
24671 command-line macro definitions/undefinitions. This flag is unset when we
24672 reach the first DW_MACINFO_start_file entry. */
24673
24674 htab_up include_hash (htab_create_alloc (1, htab_hash_pointer,
24675 htab_eq_pointer,
24676 NULL, xcalloc, xfree));
24677 mac_ptr = section->buffer + offset;
24678 slot = htab_find_slot (include_hash.get (), mac_ptr, INSERT);
24679 *slot = (void *) mac_ptr;
24680 dwarf_decode_macro_bytes (dwarf2_per_objfile,
24681 abfd, mac_ptr, mac_end,
24682 current_file, lh, section,
24683 section_is_gnu, 0, offset_size,
24684 include_hash.get ());
24685 }
24686
24687 /* Check if the attribute's form is a DW_FORM_block*
24688 if so return true else false. */
24689
24690 static int
24691 attr_form_is_block (const struct attribute *attr)
24692 {
24693 return (attr == NULL ? 0 :
24694 attr->form == DW_FORM_block1
24695 || attr->form == DW_FORM_block2
24696 || attr->form == DW_FORM_block4
24697 || attr->form == DW_FORM_block
24698 || attr->form == DW_FORM_exprloc);
24699 }
24700
24701 /* Return non-zero if ATTR's value is a section offset --- classes
24702 lineptr, loclistptr, macptr or rangelistptr --- or zero, otherwise.
24703 You may use DW_UNSND (attr) to retrieve such offsets.
24704
24705 Section 7.5.4, "Attribute Encodings", explains that no attribute
24706 may have a value that belongs to more than one of these classes; it
24707 would be ambiguous if we did, because we use the same forms for all
24708 of them. */
24709
24710 static int
24711 attr_form_is_section_offset (const struct attribute *attr)
24712 {
24713 return (attr->form == DW_FORM_data4
24714 || attr->form == DW_FORM_data8
24715 || attr->form == DW_FORM_sec_offset);
24716 }
24717
24718 /* Return non-zero if ATTR's value falls in the 'constant' class, or
24719 zero otherwise. When this function returns true, you can apply
24720 dwarf2_get_attr_constant_value to it.
24721
24722 However, note that for some attributes you must check
24723 attr_form_is_section_offset before using this test. DW_FORM_data4
24724 and DW_FORM_data8 are members of both the constant class, and of
24725 the classes that contain offsets into other debug sections
24726 (lineptr, loclistptr, macptr or rangelistptr). The DWARF spec says
24727 that, if an attribute's can be either a constant or one of the
24728 section offset classes, DW_FORM_data4 and DW_FORM_data8 should be
24729 taken as section offsets, not constants.
24730
24731 DW_FORM_data16 is not considered as dwarf2_get_attr_constant_value
24732 cannot handle that. */
24733
24734 static int
24735 attr_form_is_constant (const struct attribute *attr)
24736 {
24737 switch (attr->form)
24738 {
24739 case DW_FORM_sdata:
24740 case DW_FORM_udata:
24741 case DW_FORM_data1:
24742 case DW_FORM_data2:
24743 case DW_FORM_data4:
24744 case DW_FORM_data8:
24745 case DW_FORM_implicit_const:
24746 return 1;
24747 default:
24748 return 0;
24749 }
24750 }
24751
24752
24753 /* DW_ADDR is always stored already as sect_offset; despite for the forms
24754 besides DW_FORM_ref_addr it is stored as cu_offset in the DWARF file. */
24755
24756 static int
24757 attr_form_is_ref (const struct attribute *attr)
24758 {
24759 switch (attr->form)
24760 {
24761 case DW_FORM_ref_addr:
24762 case DW_FORM_ref1:
24763 case DW_FORM_ref2:
24764 case DW_FORM_ref4:
24765 case DW_FORM_ref8:
24766 case DW_FORM_ref_udata:
24767 case DW_FORM_GNU_ref_alt:
24768 return 1;
24769 default:
24770 return 0;
24771 }
24772 }
24773
24774 /* Return the .debug_loc section to use for CU.
24775 For DWO files use .debug_loc.dwo. */
24776
24777 static struct dwarf2_section_info *
24778 cu_debug_loc_section (struct dwarf2_cu *cu)
24779 {
24780 struct dwarf2_per_objfile *dwarf2_per_objfile
24781 = cu->per_cu->dwarf2_per_objfile;
24782
24783 if (cu->dwo_unit)
24784 {
24785 struct dwo_sections *sections = &cu->dwo_unit->dwo_file->sections;
24786
24787 return cu->header.version >= 5 ? &sections->loclists : &sections->loc;
24788 }
24789 return (cu->header.version >= 5 ? &dwarf2_per_objfile->loclists
24790 : &dwarf2_per_objfile->loc);
24791 }
24792
24793 /* A helper function that fills in a dwarf2_loclist_baton. */
24794
24795 static void
24796 fill_in_loclist_baton (struct dwarf2_cu *cu,
24797 struct dwarf2_loclist_baton *baton,
24798 const struct attribute *attr)
24799 {
24800 struct dwarf2_per_objfile *dwarf2_per_objfile
24801 = cu->per_cu->dwarf2_per_objfile;
24802 struct dwarf2_section_info *section = cu_debug_loc_section (cu);
24803
24804 dwarf2_read_section (dwarf2_per_objfile->objfile, section);
24805
24806 baton->per_cu = cu->per_cu;
24807 gdb_assert (baton->per_cu);
24808 /* We don't know how long the location list is, but make sure we
24809 don't run off the edge of the section. */
24810 baton->size = section->size - DW_UNSND (attr);
24811 baton->data = section->buffer + DW_UNSND (attr);
24812 baton->base_address = cu->base_address;
24813 baton->from_dwo = cu->dwo_unit != NULL;
24814 }
24815
24816 static void
24817 dwarf2_symbol_mark_computed (const struct attribute *attr, struct symbol *sym,
24818 struct dwarf2_cu *cu, int is_block)
24819 {
24820 struct dwarf2_per_objfile *dwarf2_per_objfile
24821 = cu->per_cu->dwarf2_per_objfile;
24822 struct objfile *objfile = dwarf2_per_objfile->objfile;
24823 struct dwarf2_section_info *section = cu_debug_loc_section (cu);
24824
24825 if (attr_form_is_section_offset (attr)
24826 /* .debug_loc{,.dwo} may not exist at all, or the offset may be outside
24827 the section. If so, fall through to the complaint in the
24828 other branch. */
24829 && DW_UNSND (attr) < dwarf2_section_size (objfile, section))
24830 {
24831 struct dwarf2_loclist_baton *baton;
24832
24833 baton = XOBNEW (&objfile->objfile_obstack, struct dwarf2_loclist_baton);
24834
24835 fill_in_loclist_baton (cu, baton, attr);
24836
24837 if (cu->base_known == 0)
24838 complaint (&symfile_complaints,
24839 _("Location list used without "
24840 "specifying the CU base address."));
24841
24842 SYMBOL_ACLASS_INDEX (sym) = (is_block
24843 ? dwarf2_loclist_block_index
24844 : dwarf2_loclist_index);
24845 SYMBOL_LOCATION_BATON (sym) = baton;
24846 }
24847 else
24848 {
24849 struct dwarf2_locexpr_baton *baton;
24850
24851 baton = XOBNEW (&objfile->objfile_obstack, struct dwarf2_locexpr_baton);
24852 baton->per_cu = cu->per_cu;
24853 gdb_assert (baton->per_cu);
24854
24855 if (attr_form_is_block (attr))
24856 {
24857 /* Note that we're just copying the block's data pointer
24858 here, not the actual data. We're still pointing into the
24859 info_buffer for SYM's objfile; right now we never release
24860 that buffer, but when we do clean up properly this may
24861 need to change. */
24862 baton->size = DW_BLOCK (attr)->size;
24863 baton->data = DW_BLOCK (attr)->data;
24864 }
24865 else
24866 {
24867 dwarf2_invalid_attrib_class_complaint ("location description",
24868 SYMBOL_NATURAL_NAME (sym));
24869 baton->size = 0;
24870 }
24871
24872 SYMBOL_ACLASS_INDEX (sym) = (is_block
24873 ? dwarf2_locexpr_block_index
24874 : dwarf2_locexpr_index);
24875 SYMBOL_LOCATION_BATON (sym) = baton;
24876 }
24877 }
24878
24879 /* Return the OBJFILE associated with the compilation unit CU. If CU
24880 came from a separate debuginfo file, then the master objfile is
24881 returned. */
24882
24883 struct objfile *
24884 dwarf2_per_cu_objfile (struct dwarf2_per_cu_data *per_cu)
24885 {
24886 struct objfile *objfile = per_cu->dwarf2_per_objfile->objfile;
24887
24888 /* Return the master objfile, so that we can report and look up the
24889 correct file containing this variable. */
24890 if (objfile->separate_debug_objfile_backlink)
24891 objfile = objfile->separate_debug_objfile_backlink;
24892
24893 return objfile;
24894 }
24895
24896 /* Return comp_unit_head for PER_CU, either already available in PER_CU->CU
24897 (CU_HEADERP is unused in such case) or prepare a temporary copy at
24898 CU_HEADERP first. */
24899
24900 static const struct comp_unit_head *
24901 per_cu_header_read_in (struct comp_unit_head *cu_headerp,
24902 struct dwarf2_per_cu_data *per_cu)
24903 {
24904 const gdb_byte *info_ptr;
24905
24906 if (per_cu->cu)
24907 return &per_cu->cu->header;
24908
24909 info_ptr = per_cu->section->buffer + to_underlying (per_cu->sect_off);
24910
24911 memset (cu_headerp, 0, sizeof (*cu_headerp));
24912 read_comp_unit_head (cu_headerp, info_ptr, per_cu->section,
24913 rcuh_kind::COMPILE);
24914
24915 return cu_headerp;
24916 }
24917
24918 /* Return the address size given in the compilation unit header for CU. */
24919
24920 int
24921 dwarf2_per_cu_addr_size (struct dwarf2_per_cu_data *per_cu)
24922 {
24923 struct comp_unit_head cu_header_local;
24924 const struct comp_unit_head *cu_headerp;
24925
24926 cu_headerp = per_cu_header_read_in (&cu_header_local, per_cu);
24927
24928 return cu_headerp->addr_size;
24929 }
24930
24931 /* Return the offset size given in the compilation unit header for CU. */
24932
24933 int
24934 dwarf2_per_cu_offset_size (struct dwarf2_per_cu_data *per_cu)
24935 {
24936 struct comp_unit_head cu_header_local;
24937 const struct comp_unit_head *cu_headerp;
24938
24939 cu_headerp = per_cu_header_read_in (&cu_header_local, per_cu);
24940
24941 return cu_headerp->offset_size;
24942 }
24943
24944 /* See its dwarf2loc.h declaration. */
24945
24946 int
24947 dwarf2_per_cu_ref_addr_size (struct dwarf2_per_cu_data *per_cu)
24948 {
24949 struct comp_unit_head cu_header_local;
24950 const struct comp_unit_head *cu_headerp;
24951
24952 cu_headerp = per_cu_header_read_in (&cu_header_local, per_cu);
24953
24954 if (cu_headerp->version == 2)
24955 return cu_headerp->addr_size;
24956 else
24957 return cu_headerp->offset_size;
24958 }
24959
24960 /* Return the text offset of the CU. The returned offset comes from
24961 this CU's objfile. If this objfile came from a separate debuginfo
24962 file, then the offset may be different from the corresponding
24963 offset in the parent objfile. */
24964
24965 CORE_ADDR
24966 dwarf2_per_cu_text_offset (struct dwarf2_per_cu_data *per_cu)
24967 {
24968 struct objfile *objfile = per_cu->dwarf2_per_objfile->objfile;
24969
24970 return ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
24971 }
24972
24973 /* Return DWARF version number of PER_CU. */
24974
24975 short
24976 dwarf2_version (struct dwarf2_per_cu_data *per_cu)
24977 {
24978 return per_cu->dwarf_version;
24979 }
24980
24981 /* Locate the .debug_info compilation unit from CU's objfile which contains
24982 the DIE at OFFSET. Raises an error on failure. */
24983
24984 static struct dwarf2_per_cu_data *
24985 dwarf2_find_containing_comp_unit (sect_offset sect_off,
24986 unsigned int offset_in_dwz,
24987 struct dwarf2_per_objfile *dwarf2_per_objfile)
24988 {
24989 struct dwarf2_per_cu_data *this_cu;
24990 int low, high;
24991 const sect_offset *cu_off;
24992
24993 low = 0;
24994 high = dwarf2_per_objfile->n_comp_units - 1;
24995 while (high > low)
24996 {
24997 struct dwarf2_per_cu_data *mid_cu;
24998 int mid = low + (high - low) / 2;
24999
25000 mid_cu = dwarf2_per_objfile->all_comp_units[mid];
25001 cu_off = &mid_cu->sect_off;
25002 if (mid_cu->is_dwz > offset_in_dwz
25003 || (mid_cu->is_dwz == offset_in_dwz && *cu_off >= sect_off))
25004 high = mid;
25005 else
25006 low = mid + 1;
25007 }
25008 gdb_assert (low == high);
25009 this_cu = dwarf2_per_objfile->all_comp_units[low];
25010 cu_off = &this_cu->sect_off;
25011 if (this_cu->is_dwz != offset_in_dwz || *cu_off > sect_off)
25012 {
25013 if (low == 0 || this_cu->is_dwz != offset_in_dwz)
25014 error (_("Dwarf Error: could not find partial DIE containing "
25015 "offset %s [in module %s]"),
25016 sect_offset_str (sect_off),
25017 bfd_get_filename (dwarf2_per_objfile->objfile->obfd));
25018
25019 gdb_assert (dwarf2_per_objfile->all_comp_units[low-1]->sect_off
25020 <= sect_off);
25021 return dwarf2_per_objfile->all_comp_units[low-1];
25022 }
25023 else
25024 {
25025 this_cu = dwarf2_per_objfile->all_comp_units[low];
25026 if (low == dwarf2_per_objfile->n_comp_units - 1
25027 && sect_off >= this_cu->sect_off + this_cu->length)
25028 error (_("invalid dwarf2 offset %s"), sect_offset_str (sect_off));
25029 gdb_assert (sect_off < this_cu->sect_off + this_cu->length);
25030 return this_cu;
25031 }
25032 }
25033
25034 /* Initialize dwarf2_cu CU, owned by PER_CU. */
25035
25036 dwarf2_cu::dwarf2_cu (struct dwarf2_per_cu_data *per_cu_)
25037 : per_cu (per_cu_),
25038 mark (0),
25039 has_loclist (0),
25040 checked_producer (0),
25041 producer_is_gxx_lt_4_6 (0),
25042 producer_is_gcc_lt_4_3 (0),
25043 producer_is_icc_lt_14 (0),
25044 processing_has_namespace_info (0)
25045 {
25046 per_cu->cu = this;
25047 }
25048
25049 /* Destroy a dwarf2_cu. */
25050
25051 dwarf2_cu::~dwarf2_cu ()
25052 {
25053 per_cu->cu = NULL;
25054 }
25055
25056 /* Initialize basic fields of dwarf_cu CU according to DIE COMP_UNIT_DIE. */
25057
25058 static void
25059 prepare_one_comp_unit (struct dwarf2_cu *cu, struct die_info *comp_unit_die,
25060 enum language pretend_language)
25061 {
25062 struct attribute *attr;
25063
25064 /* Set the language we're debugging. */
25065 attr = dwarf2_attr (comp_unit_die, DW_AT_language, cu);
25066 if (attr)
25067 set_cu_language (DW_UNSND (attr), cu);
25068 else
25069 {
25070 cu->language = pretend_language;
25071 cu->language_defn = language_def (cu->language);
25072 }
25073
25074 cu->producer = dwarf2_string_attr (comp_unit_die, DW_AT_producer, cu);
25075 }
25076
25077 /* Increase the age counter on each cached compilation unit, and free
25078 any that are too old. */
25079
25080 static void
25081 age_cached_comp_units (struct dwarf2_per_objfile *dwarf2_per_objfile)
25082 {
25083 struct dwarf2_per_cu_data *per_cu, **last_chain;
25084
25085 dwarf2_clear_marks (dwarf2_per_objfile->read_in_chain);
25086 per_cu = dwarf2_per_objfile->read_in_chain;
25087 while (per_cu != NULL)
25088 {
25089 per_cu->cu->last_used ++;
25090 if (per_cu->cu->last_used <= dwarf_max_cache_age)
25091 dwarf2_mark (per_cu->cu);
25092 per_cu = per_cu->cu->read_in_chain;
25093 }
25094
25095 per_cu = dwarf2_per_objfile->read_in_chain;
25096 last_chain = &dwarf2_per_objfile->read_in_chain;
25097 while (per_cu != NULL)
25098 {
25099 struct dwarf2_per_cu_data *next_cu;
25100
25101 next_cu = per_cu->cu->read_in_chain;
25102
25103 if (!per_cu->cu->mark)
25104 {
25105 delete per_cu->cu;
25106 *last_chain = next_cu;
25107 }
25108 else
25109 last_chain = &per_cu->cu->read_in_chain;
25110
25111 per_cu = next_cu;
25112 }
25113 }
25114
25115 /* Remove a single compilation unit from the cache. */
25116
25117 static void
25118 free_one_cached_comp_unit (struct dwarf2_per_cu_data *target_per_cu)
25119 {
25120 struct dwarf2_per_cu_data *per_cu, **last_chain;
25121 struct dwarf2_per_objfile *dwarf2_per_objfile
25122 = target_per_cu->dwarf2_per_objfile;
25123
25124 per_cu = dwarf2_per_objfile->read_in_chain;
25125 last_chain = &dwarf2_per_objfile->read_in_chain;
25126 while (per_cu != NULL)
25127 {
25128 struct dwarf2_per_cu_data *next_cu;
25129
25130 next_cu = per_cu->cu->read_in_chain;
25131
25132 if (per_cu == target_per_cu)
25133 {
25134 delete per_cu->cu;
25135 per_cu->cu = NULL;
25136 *last_chain = next_cu;
25137 break;
25138 }
25139 else
25140 last_chain = &per_cu->cu->read_in_chain;
25141
25142 per_cu = next_cu;
25143 }
25144 }
25145
25146 /* Release all extra memory associated with OBJFILE. */
25147
25148 void
25149 dwarf2_free_objfile (struct objfile *objfile)
25150 {
25151 struct dwarf2_per_objfile *dwarf2_per_objfile
25152 = get_dwarf2_per_objfile (objfile);
25153
25154 delete dwarf2_per_objfile;
25155 }
25156
25157 /* A set of CU "per_cu" pointer, DIE offset, and GDB type pointer.
25158 We store these in a hash table separate from the DIEs, and preserve them
25159 when the DIEs are flushed out of cache.
25160
25161 The CU "per_cu" pointer is needed because offset alone is not enough to
25162 uniquely identify the type. A file may have multiple .debug_types sections,
25163 or the type may come from a DWO file. Furthermore, while it's more logical
25164 to use per_cu->section+offset, with Fission the section with the data is in
25165 the DWO file but we don't know that section at the point we need it.
25166 We have to use something in dwarf2_per_cu_data (or the pointer to it)
25167 because we can enter the lookup routine, get_die_type_at_offset, from
25168 outside this file, and thus won't necessarily have PER_CU->cu.
25169 Fortunately, PER_CU is stable for the life of the objfile. */
25170
25171 struct dwarf2_per_cu_offset_and_type
25172 {
25173 const struct dwarf2_per_cu_data *per_cu;
25174 sect_offset sect_off;
25175 struct type *type;
25176 };
25177
25178 /* Hash function for a dwarf2_per_cu_offset_and_type. */
25179
25180 static hashval_t
25181 per_cu_offset_and_type_hash (const void *item)
25182 {
25183 const struct dwarf2_per_cu_offset_and_type *ofs
25184 = (const struct dwarf2_per_cu_offset_and_type *) item;
25185
25186 return (uintptr_t) ofs->per_cu + to_underlying (ofs->sect_off);
25187 }
25188
25189 /* Equality function for a dwarf2_per_cu_offset_and_type. */
25190
25191 static int
25192 per_cu_offset_and_type_eq (const void *item_lhs, const void *item_rhs)
25193 {
25194 const struct dwarf2_per_cu_offset_and_type *ofs_lhs
25195 = (const struct dwarf2_per_cu_offset_and_type *) item_lhs;
25196 const struct dwarf2_per_cu_offset_and_type *ofs_rhs
25197 = (const struct dwarf2_per_cu_offset_and_type *) item_rhs;
25198
25199 return (ofs_lhs->per_cu == ofs_rhs->per_cu
25200 && ofs_lhs->sect_off == ofs_rhs->sect_off);
25201 }
25202
25203 /* Set the type associated with DIE to TYPE. Save it in CU's hash
25204 table if necessary. For convenience, return TYPE.
25205
25206 The DIEs reading must have careful ordering to:
25207 * Not cause infite loops trying to read in DIEs as a prerequisite for
25208 reading current DIE.
25209 * Not trying to dereference contents of still incompletely read in types
25210 while reading in other DIEs.
25211 * Enable referencing still incompletely read in types just by a pointer to
25212 the type without accessing its fields.
25213
25214 Therefore caller should follow these rules:
25215 * Try to fetch any prerequisite types we may need to build this DIE type
25216 before building the type and calling set_die_type.
25217 * After building type call set_die_type for current DIE as soon as
25218 possible before fetching more types to complete the current type.
25219 * Make the type as complete as possible before fetching more types. */
25220
25221 static struct type *
25222 set_die_type (struct die_info *die, struct type *type, struct dwarf2_cu *cu)
25223 {
25224 struct dwarf2_per_objfile *dwarf2_per_objfile
25225 = cu->per_cu->dwarf2_per_objfile;
25226 struct dwarf2_per_cu_offset_and_type **slot, ofs;
25227 struct objfile *objfile = dwarf2_per_objfile->objfile;
25228 struct attribute *attr;
25229 struct dynamic_prop prop;
25230
25231 /* For Ada types, make sure that the gnat-specific data is always
25232 initialized (if not already set). There are a few types where
25233 we should not be doing so, because the type-specific area is
25234 already used to hold some other piece of info (eg: TYPE_CODE_FLT
25235 where the type-specific area is used to store the floatformat).
25236 But this is not a problem, because the gnat-specific information
25237 is actually not needed for these types. */
25238 if (need_gnat_info (cu)
25239 && TYPE_CODE (type) != TYPE_CODE_FUNC
25240 && TYPE_CODE (type) != TYPE_CODE_FLT
25241 && TYPE_CODE (type) != TYPE_CODE_METHODPTR
25242 && TYPE_CODE (type) != TYPE_CODE_MEMBERPTR
25243 && TYPE_CODE (type) != TYPE_CODE_METHOD
25244 && !HAVE_GNAT_AUX_INFO (type))
25245 INIT_GNAT_SPECIFIC (type);
25246
25247 /* Read DW_AT_allocated and set in type. */
25248 attr = dwarf2_attr (die, DW_AT_allocated, cu);
25249 if (attr_form_is_block (attr))
25250 {
25251 if (attr_to_dynamic_prop (attr, die, cu, &prop))
25252 add_dyn_prop (DYN_PROP_ALLOCATED, prop, type);
25253 }
25254 else if (attr != NULL)
25255 {
25256 complaint (&symfile_complaints,
25257 _("DW_AT_allocated has the wrong form (%s) at DIE %s"),
25258 (attr != NULL ? dwarf_form_name (attr->form) : "n/a"),
25259 sect_offset_str (die->sect_off));
25260 }
25261
25262 /* Read DW_AT_associated and set in type. */
25263 attr = dwarf2_attr (die, DW_AT_associated, cu);
25264 if (attr_form_is_block (attr))
25265 {
25266 if (attr_to_dynamic_prop (attr, die, cu, &prop))
25267 add_dyn_prop (DYN_PROP_ASSOCIATED, prop, type);
25268 }
25269 else if (attr != NULL)
25270 {
25271 complaint (&symfile_complaints,
25272 _("DW_AT_associated has the wrong form (%s) at DIE %s"),
25273 (attr != NULL ? dwarf_form_name (attr->form) : "n/a"),
25274 sect_offset_str (die->sect_off));
25275 }
25276
25277 /* Read DW_AT_data_location and set in type. */
25278 attr = dwarf2_attr (die, DW_AT_data_location, cu);
25279 if (attr_to_dynamic_prop (attr, die, cu, &prop))
25280 add_dyn_prop (DYN_PROP_DATA_LOCATION, prop, type);
25281
25282 if (dwarf2_per_objfile->die_type_hash == NULL)
25283 {
25284 dwarf2_per_objfile->die_type_hash =
25285 htab_create_alloc_ex (127,
25286 per_cu_offset_and_type_hash,
25287 per_cu_offset_and_type_eq,
25288 NULL,
25289 &objfile->objfile_obstack,
25290 hashtab_obstack_allocate,
25291 dummy_obstack_deallocate);
25292 }
25293
25294 ofs.per_cu = cu->per_cu;
25295 ofs.sect_off = die->sect_off;
25296 ofs.type = type;
25297 slot = (struct dwarf2_per_cu_offset_and_type **)
25298 htab_find_slot (dwarf2_per_objfile->die_type_hash, &ofs, INSERT);
25299 if (*slot)
25300 complaint (&symfile_complaints,
25301 _("A problem internal to GDB: DIE %s has type already set"),
25302 sect_offset_str (die->sect_off));
25303 *slot = XOBNEW (&objfile->objfile_obstack,
25304 struct dwarf2_per_cu_offset_and_type);
25305 **slot = ofs;
25306 return type;
25307 }
25308
25309 /* Look up the type for the die at SECT_OFF in PER_CU in die_type_hash,
25310 or return NULL if the die does not have a saved type. */
25311
25312 static struct type *
25313 get_die_type_at_offset (sect_offset sect_off,
25314 struct dwarf2_per_cu_data *per_cu)
25315 {
25316 struct dwarf2_per_cu_offset_and_type *slot, ofs;
25317 struct dwarf2_per_objfile *dwarf2_per_objfile = per_cu->dwarf2_per_objfile;
25318
25319 if (dwarf2_per_objfile->die_type_hash == NULL)
25320 return NULL;
25321
25322 ofs.per_cu = per_cu;
25323 ofs.sect_off = sect_off;
25324 slot = ((struct dwarf2_per_cu_offset_and_type *)
25325 htab_find (dwarf2_per_objfile->die_type_hash, &ofs));
25326 if (slot)
25327 return slot->type;
25328 else
25329 return NULL;
25330 }
25331
25332 /* Look up the type for DIE in CU in die_type_hash,
25333 or return NULL if DIE does not have a saved type. */
25334
25335 static struct type *
25336 get_die_type (struct die_info *die, struct dwarf2_cu *cu)
25337 {
25338 return get_die_type_at_offset (die->sect_off, cu->per_cu);
25339 }
25340
25341 /* Add a dependence relationship from CU to REF_PER_CU. */
25342
25343 static void
25344 dwarf2_add_dependence (struct dwarf2_cu *cu,
25345 struct dwarf2_per_cu_data *ref_per_cu)
25346 {
25347 void **slot;
25348
25349 if (cu->dependencies == NULL)
25350 cu->dependencies
25351 = htab_create_alloc_ex (5, htab_hash_pointer, htab_eq_pointer,
25352 NULL, &cu->comp_unit_obstack,
25353 hashtab_obstack_allocate,
25354 dummy_obstack_deallocate);
25355
25356 slot = htab_find_slot (cu->dependencies, ref_per_cu, INSERT);
25357 if (*slot == NULL)
25358 *slot = ref_per_cu;
25359 }
25360
25361 /* Subroutine of dwarf2_mark to pass to htab_traverse.
25362 Set the mark field in every compilation unit in the
25363 cache that we must keep because we are keeping CU. */
25364
25365 static int
25366 dwarf2_mark_helper (void **slot, void *data)
25367 {
25368 struct dwarf2_per_cu_data *per_cu;
25369
25370 per_cu = (struct dwarf2_per_cu_data *) *slot;
25371
25372 /* cu->dependencies references may not yet have been ever read if QUIT aborts
25373 reading of the chain. As such dependencies remain valid it is not much
25374 useful to track and undo them during QUIT cleanups. */
25375 if (per_cu->cu == NULL)
25376 return 1;
25377
25378 if (per_cu->cu->mark)
25379 return 1;
25380 per_cu->cu->mark = 1;
25381
25382 if (per_cu->cu->dependencies != NULL)
25383 htab_traverse (per_cu->cu->dependencies, dwarf2_mark_helper, NULL);
25384
25385 return 1;
25386 }
25387
25388 /* Set the mark field in CU and in every other compilation unit in the
25389 cache that we must keep because we are keeping CU. */
25390
25391 static void
25392 dwarf2_mark (struct dwarf2_cu *cu)
25393 {
25394 if (cu->mark)
25395 return;
25396 cu->mark = 1;
25397 if (cu->dependencies != NULL)
25398 htab_traverse (cu->dependencies, dwarf2_mark_helper, NULL);
25399 }
25400
25401 static void
25402 dwarf2_clear_marks (struct dwarf2_per_cu_data *per_cu)
25403 {
25404 while (per_cu)
25405 {
25406 per_cu->cu->mark = 0;
25407 per_cu = per_cu->cu->read_in_chain;
25408 }
25409 }
25410
25411 /* Trivial hash function for partial_die_info: the hash value of a DIE
25412 is its offset in .debug_info for this objfile. */
25413
25414 static hashval_t
25415 partial_die_hash (const void *item)
25416 {
25417 const struct partial_die_info *part_die
25418 = (const struct partial_die_info *) item;
25419
25420 return to_underlying (part_die->sect_off);
25421 }
25422
25423 /* Trivial comparison function for partial_die_info structures: two DIEs
25424 are equal if they have the same offset. */
25425
25426 static int
25427 partial_die_eq (const void *item_lhs, const void *item_rhs)
25428 {
25429 const struct partial_die_info *part_die_lhs
25430 = (const struct partial_die_info *) item_lhs;
25431 const struct partial_die_info *part_die_rhs
25432 = (const struct partial_die_info *) item_rhs;
25433
25434 return part_die_lhs->sect_off == part_die_rhs->sect_off;
25435 }
25436
25437 static struct cmd_list_element *set_dwarf_cmdlist;
25438 static struct cmd_list_element *show_dwarf_cmdlist;
25439
25440 static void
25441 set_dwarf_cmd (const char *args, int from_tty)
25442 {
25443 help_list (set_dwarf_cmdlist, "maintenance set dwarf ", all_commands,
25444 gdb_stdout);
25445 }
25446
25447 static void
25448 show_dwarf_cmd (const char *args, int from_tty)
25449 {
25450 cmd_show_list (show_dwarf_cmdlist, from_tty, "");
25451 }
25452
25453 int dwarf_always_disassemble;
25454
25455 static void
25456 show_dwarf_always_disassemble (struct ui_file *file, int from_tty,
25457 struct cmd_list_element *c, const char *value)
25458 {
25459 fprintf_filtered (file,
25460 _("Whether to always disassemble "
25461 "DWARF expressions is %s.\n"),
25462 value);
25463 }
25464
25465 static void
25466 show_check_physname (struct ui_file *file, int from_tty,
25467 struct cmd_list_element *c, const char *value)
25468 {
25469 fprintf_filtered (file,
25470 _("Whether to check \"physname\" is %s.\n"),
25471 value);
25472 }
25473
25474 void
25475 _initialize_dwarf2_read (void)
25476 {
25477
25478 dwarf2_objfile_data_key = register_objfile_data ();
25479
25480 add_prefix_cmd ("dwarf", class_maintenance, set_dwarf_cmd, _("\
25481 Set DWARF specific variables.\n\
25482 Configure DWARF variables such as the cache size"),
25483 &set_dwarf_cmdlist, "maintenance set dwarf ",
25484 0/*allow-unknown*/, &maintenance_set_cmdlist);
25485
25486 add_prefix_cmd ("dwarf", class_maintenance, show_dwarf_cmd, _("\
25487 Show DWARF specific variables\n\
25488 Show DWARF variables such as the cache size"),
25489 &show_dwarf_cmdlist, "maintenance show dwarf ",
25490 0/*allow-unknown*/, &maintenance_show_cmdlist);
25491
25492 add_setshow_zinteger_cmd ("max-cache-age", class_obscure,
25493 &dwarf_max_cache_age, _("\
25494 Set the upper bound on the age of cached DWARF compilation units."), _("\
25495 Show the upper bound on the age of cached DWARF compilation units."), _("\
25496 A higher limit means that cached compilation units will be stored\n\
25497 in memory longer, and more total memory will be used. Zero disables\n\
25498 caching, which can slow down startup."),
25499 NULL,
25500 show_dwarf_max_cache_age,
25501 &set_dwarf_cmdlist,
25502 &show_dwarf_cmdlist);
25503
25504 add_setshow_boolean_cmd ("always-disassemble", class_obscure,
25505 &dwarf_always_disassemble, _("\
25506 Set whether `info address' always disassembles DWARF expressions."), _("\
25507 Show whether `info address' always disassembles DWARF expressions."), _("\
25508 When enabled, DWARF expressions are always printed in an assembly-like\n\
25509 syntax. When disabled, expressions will be printed in a more\n\
25510 conversational style, when possible."),
25511 NULL,
25512 show_dwarf_always_disassemble,
25513 &set_dwarf_cmdlist,
25514 &show_dwarf_cmdlist);
25515
25516 add_setshow_zuinteger_cmd ("dwarf-read", no_class, &dwarf_read_debug, _("\
25517 Set debugging of the DWARF reader."), _("\
25518 Show debugging of the DWARF reader."), _("\
25519 When enabled (non-zero), debugging messages are printed during DWARF\n\
25520 reading and symtab expansion. A value of 1 (one) provides basic\n\
25521 information. A value greater than 1 provides more verbose information."),
25522 NULL,
25523 NULL,
25524 &setdebuglist, &showdebuglist);
25525
25526 add_setshow_zuinteger_cmd ("dwarf-die", no_class, &dwarf_die_debug, _("\
25527 Set debugging of the DWARF DIE reader."), _("\
25528 Show debugging of the DWARF DIE reader."), _("\
25529 When enabled (non-zero), DIEs are dumped after they are read in.\n\
25530 The value is the maximum depth to print."),
25531 NULL,
25532 NULL,
25533 &setdebuglist, &showdebuglist);
25534
25535 add_setshow_zuinteger_cmd ("dwarf-line", no_class, &dwarf_line_debug, _("\
25536 Set debugging of the dwarf line reader."), _("\
25537 Show debugging of the dwarf line reader."), _("\
25538 When enabled (non-zero), line number entries are dumped as they are read in.\n\
25539 A value of 1 (one) provides basic information.\n\
25540 A value greater than 1 provides more verbose information."),
25541 NULL,
25542 NULL,
25543 &setdebuglist, &showdebuglist);
25544
25545 add_setshow_boolean_cmd ("check-physname", no_class, &check_physname, _("\
25546 Set cross-checking of \"physname\" code against demangler."), _("\
25547 Show cross-checking of \"physname\" code against demangler."), _("\
25548 When enabled, GDB's internal \"physname\" code is checked against\n\
25549 the demangler."),
25550 NULL, show_check_physname,
25551 &setdebuglist, &showdebuglist);
25552
25553 add_setshow_boolean_cmd ("use-deprecated-index-sections",
25554 no_class, &use_deprecated_index_sections, _("\
25555 Set whether to use deprecated gdb_index sections."), _("\
25556 Show whether to use deprecated gdb_index sections."), _("\
25557 When enabled, deprecated .gdb_index sections are used anyway.\n\
25558 Normally they are ignored either because of a missing feature or\n\
25559 performance issue.\n\
25560 Warning: This option must be enabled before gdb reads the file."),
25561 NULL,
25562 NULL,
25563 &setlist, &showlist);
25564
25565 dwarf2_locexpr_index = register_symbol_computed_impl (LOC_COMPUTED,
25566 &dwarf2_locexpr_funcs);
25567 dwarf2_loclist_index = register_symbol_computed_impl (LOC_COMPUTED,
25568 &dwarf2_loclist_funcs);
25569
25570 dwarf2_locexpr_block_index = register_symbol_block_impl (LOC_BLOCK,
25571 &dwarf2_block_frame_base_locexpr_funcs);
25572 dwarf2_loclist_block_index = register_symbol_block_impl (LOC_BLOCK,
25573 &dwarf2_block_frame_base_loclist_funcs);
25574
25575 #if GDB_SELF_TEST
25576 selftests::register_test ("dw2_expand_symtabs_matching",
25577 selftests::dw2_expand_symtabs_matching::run_test);
25578 #endif
25579 }
This page took 0.599308 seconds and 5 git commands to generate.