ld -plugin options when plugins are disabled
[deliverable/binutils-gdb.git] / gdb / dwarf2 / read.c
CommitLineData
c906108c 1/* DWARF 2 debugging format support for GDB.
917c78fc 2
b811d2c2 3 Copyright (C) 1994-2020 Free Software Foundation, Inc.
c906108c
SS
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
7ce59000 10 support.
c906108c 11
c5aa993b 12 This file is part of GDB.
c906108c 13
c5aa993b
JM
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
a9762ec7
JB
16 the Free Software Foundation; either version 3 of the License, or
17 (at your option) any later version.
c906108c 18
a9762ec7
JB
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.
c906108c 23
c5aa993b 24 You should have received a copy of the GNU General Public License
a9762ec7 25 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c 26
21b2bd31
DE
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
c906108c 31#include "defs.h"
82ca8957 32#include "dwarf2/read.h"
3054dd54 33#include "dwarf2/abbrev.h"
162dce55 34#include "dwarf2/attribute.h"
4057dfde 35#include "dwarf2/comp-unit.h"
82ca8957
TT
36#include "dwarf2/index-cache.h"
37#include "dwarf2/index-common.h"
f4382c45 38#include "dwarf2/leb.h"
8fdd972c 39#include "dwarf2/line-header.h"
9fda78b6 40#include "dwarf2/dwz.h"
c90ec28a 41#include "dwarf2/macro.h"
c2d50fd0 42#include "dwarf2/die.h"
2b2558bf 43#include "dwarf2/stringify.h"
4de283e4
TT
44#include "bfd.h"
45#include "elf-bfd.h"
46#include "symtab.h"
47#include "gdbtypes.h"
48#include "objfiles.h"
d55e5aa6 49#include "dwarf2.h"
4de283e4
TT
50#include "buildsym.h"
51#include "demangle.h"
52#include "gdb-demangle.h"
4de283e4 53#include "filenames.h" /* for DOSish file names */
4de283e4
TT
54#include "language.h"
55#include "complaints.h"
82ca8957
TT
56#include "dwarf2/expr.h"
57#include "dwarf2/loc.h"
4de283e4
TT
58#include "cp-support.h"
59#include "hashtab.h"
60#include "command.h"
d55e5aa6 61#include "gdbcmd.h"
4de283e4
TT
62#include "block.h"
63#include "addrmap.h"
64#include "typeprint.h"
65#include "psympriv.h"
4de283e4 66#include "c-lang.h"
d55e5aa6 67#include "go-lang.h"
4de283e4
TT
68#include "valprint.h"
69#include "gdbcore.h" /* for gnutarget */
70#include "gdb/gdb-index.h"
4de283e4
TT
71#include "gdb_bfd.h"
72#include "f-lang.h"
73#include "source.h"
4de283e4 74#include "build-id.h"
d55e5aa6 75#include "namespace.h"
268a13a5
TT
76#include "gdbsupport/function-view.h"
77#include "gdbsupport/gdb_optional.h"
78#include "gdbsupport/underlying.h"
268a13a5 79#include "gdbsupport/hash_enum.h"
4de283e4 80#include "filename-seen-cache.h"
b32b108a 81#include "producer.h"
4de283e4 82#include <fcntl.h>
4de283e4 83#include <algorithm>
4de283e4 84#include <unordered_map>
268a13a5 85#include "gdbsupport/selftest.h"
c9317f21 86#include "rust-lang.h"
268a13a5 87#include "gdbsupport/pathstuff.h"
edd45eb0 88#include "count-one-bits.h"
0d79cdc4 89#include "debuginfod-support.h"
437afbb8 90
73be47f5
DE
91/* When == 1, print basic high level tracing messages.
92 When > 1, be more verbose.
b4f54984
DE
93 This is in contrast to the low level DIE reading of dwarf_die_debug. */
94static unsigned int dwarf_read_debug = 0;
45cfd468 95
d97bc12b 96/* When non-zero, dump DIEs after they are read in. */
b4f54984 97static unsigned int dwarf_die_debug = 0;
d97bc12b 98
27e0867f 99/* When non-zero, dump line number entries as they are read in. */
8fdd972c 100unsigned int dwarf_line_debug = 0;
27e0867f 101
491144b5
CB
102/* When true, cross-check physname against demangler. */
103static bool check_physname = false;
900e11f9 104
491144b5
CB
105/* When true, do not reject deprecated .gdb_index sections. */
106static bool use_deprecated_index_sections = false;
481860b3 107
17ee85fc
TT
108/* This is used to store the data that is always per objfile. */
109static const objfile_key<dwarf2_per_objfile> dwarf2_objfile_data_key;
110
111/* These are used to store the dwarf2_per_bfd objects.
112
113 objfiles having the same BFD, which doesn't require relocations, are going to
114 share a dwarf2_per_bfd object, which is held in the _bfd_data_key version.
115
116 Other objfiles are not going to share a dwarf2_per_bfd with any other
117 objfiles, so they'll have their own version kept in the _objfile_data_key
118 version. */
119static const struct bfd_key<dwarf2_per_bfd> dwarf2_per_bfd_bfd_data_key;
120static const struct objfile_key<dwarf2_per_bfd> dwarf2_per_bfd_objfile_data_key;
6502dd73 121
f1e6e072
TT
122/* The "aclass" indices for various kinds of computed DWARF symbols. */
123
124static int dwarf2_locexpr_index;
125static int dwarf2_loclist_index;
126static int dwarf2_locexpr_block_index;
127static int dwarf2_loclist_block_index;
128
41144253 129/* Size of .debug_loclists section header for 32-bit DWARF format. */
130#define LOCLIST_HEADER_SIZE32 12
131
132/* Size of .debug_loclists section header for 64-bit DWARF format. */
133#define LOCLIST_HEADER_SIZE64 20
134
3f563c84
PA
135/* An index into a (C++) symbol name component in a symbol name as
136 recorded in the mapped_index's symbol table. For each C++ symbol
137 in the symbol table, we record one entry for the start of each
138 component in the symbol in a table of name components, and then
139 sort the table, in order to be able to binary search symbol names,
140 ignoring leading namespaces, both completion and regular look up.
141 For example, for symbol "A::B::C", we'll have an entry that points
142 to "A::B::C", another that points to "B::C", and another for "C".
143 Note that function symbols in GDB index have no parameter
144 information, just the function/method names. You can convert a
145 name_component to a "const char *" using the
146 'mapped_index::symbol_name_at(offset_type)' method. */
147
148struct name_component
149{
150 /* Offset in the symbol name where the component starts. Stored as
151 a (32-bit) offset instead of a pointer to save memory and improve
152 locality on 64-bit architectures. */
153 offset_type name_offset;
154
155 /* The symbol's index in the symbol and constant pool tables of a
156 mapped_index. */
157 offset_type idx;
158};
159
44ed8f3e
PA
160/* Base class containing bits shared by both .gdb_index and
161 .debug_name indexes. */
162
163struct mapped_index_base
164{
22ca247e
TT
165 mapped_index_base () = default;
166 DISABLE_COPY_AND_ASSIGN (mapped_index_base);
167
44ed8f3e
PA
168 /* The name_component table (a sorted vector). See name_component's
169 description above. */
170 std::vector<name_component> name_components;
171
172 /* How NAME_COMPONENTS is sorted. */
173 enum case_sensitivity name_components_casing;
174
175 /* Return the number of names in the symbol table. */
176 virtual size_t symbol_name_count () const = 0;
177
178 /* Get the name of the symbol at IDX in the symbol table. */
fcf23d5b
SM
179 virtual const char *symbol_name_at
180 (offset_type idx, dwarf2_per_objfile *per_objfile) const = 0;
44ed8f3e
PA
181
182 /* Return whether the name at IDX in the symbol table should be
183 ignored. */
184 virtual bool symbol_name_slot_invalid (offset_type idx) const
185 {
186 return false;
187 }
188
189 /* Build the symbol name component sorted vector, if we haven't
190 yet. */
fcf23d5b 191 void build_name_components (dwarf2_per_objfile *per_objfile);
44ed8f3e
PA
192
193 /* Returns the lower (inclusive) and upper (exclusive) bounds of the
194 possible matches for LN_NO_PARAMS in the name component
195 vector. */
196 std::pair<std::vector<name_component>::const_iterator,
197 std::vector<name_component>::const_iterator>
3b00ef10 198 find_name_components_bounds (const lookup_name_info &ln_no_params,
fcf23d5b
SM
199 enum language lang,
200 dwarf2_per_objfile *per_objfile) const;
44ed8f3e
PA
201
202 /* Prevent deleting/destroying via a base class pointer. */
203protected:
204 ~mapped_index_base() = default;
205};
206
9291a0cd
TT
207/* A description of the mapped index. The file format is described in
208 a comment by the code that writes the index. */
fc898b42 209struct mapped_index final : public mapped_index_base
9291a0cd 210{
f00a2de2
PA
211 /* A slot/bucket in the symbol table hash. */
212 struct symbol_table_slot
213 {
214 const offset_type name;
215 const offset_type vec;
216 };
217
559a7a62 218 /* Index data format version. */
3063847f 219 int version = 0;
559a7a62 220
f00a2de2
PA
221 /* The address table data. */
222 gdb::array_view<const gdb_byte> address_table;
b11b1f88 223
3876f04e 224 /* The symbol table, implemented as a hash table. */
f00a2de2 225 gdb::array_view<symbol_table_slot> symbol_table;
b11b1f88 226
9291a0cd 227 /* A pointer to the constant pool. */
3063847f 228 const char *constant_pool = nullptr;
3f563c84 229
44ed8f3e
PA
230 bool symbol_name_slot_invalid (offset_type idx) const override
231 {
232 const auto &bucket = this->symbol_table[idx];
9ab08412 233 return bucket.name == 0 && bucket.vec == 0;
44ed8f3e 234 }
5c58de74 235
3f563c84
PA
236 /* Convenience method to get at the name of the symbol at IDX in the
237 symbol table. */
fcf23d5b
SM
238 const char *symbol_name_at
239 (offset_type idx, dwarf2_per_objfile *per_objfile) const override
f00a2de2 240 { return this->constant_pool + MAYBE_SWAP (this->symbol_table[idx].name); }
5c58de74 241
44ed8f3e
PA
242 size_t symbol_name_count () const override
243 { return this->symbol_table.size (); }
9291a0cd
TT
244};
245
927aa2e7
JK
246/* A description of the mapped .debug_names.
247 Uninitialized map has CU_COUNT 0. */
fc898b42 248struct mapped_debug_names final : public mapped_index_base
927aa2e7
JK
249{
250 bfd_endian dwarf5_byte_order;
251 bool dwarf5_is_dwarf64;
252 bool augmentation_is_gdb;
253 uint8_t offset_size;
254 uint32_t cu_count = 0;
255 uint32_t tu_count, bucket_count, name_count;
256 const gdb_byte *cu_table_reordered, *tu_table_reordered;
257 const uint32_t *bucket_table_reordered, *hash_table_reordered;
258 const gdb_byte *name_table_string_offs_reordered;
259 const gdb_byte *name_table_entry_offs_reordered;
260 const gdb_byte *entry_pool;
261
262 struct index_val
263 {
264 ULONGEST dwarf_tag;
265 struct attr
266 {
267 /* Attribute name DW_IDX_*. */
268 ULONGEST dw_idx;
269
270 /* Attribute form DW_FORM_*. */
271 ULONGEST form;
272
273 /* Value if FORM is DW_FORM_implicit_const. */
274 LONGEST implicit_const;
275 };
276 std::vector<attr> attr_vec;
277 };
278
279 std::unordered_map<ULONGEST, index_val> abbrev_map;
280
fcf23d5b
SM
281 const char *namei_to_name
282 (uint32_t namei, dwarf2_per_objfile *per_objfile) const;
44ed8f3e
PA
283
284 /* Implementation of the mapped_index_base virtual interface, for
285 the name_components cache. */
286
fcf23d5b
SM
287 const char *symbol_name_at
288 (offset_type idx, dwarf2_per_objfile *per_objfile) const override
289 { return namei_to_name (idx, per_objfile); }
44ed8f3e
PA
290
291 size_t symbol_name_count () const override
292 { return this->name_count; }
927aa2e7
JK
293};
294
cd4fb1b2 295/* See dwarf2read.h. */
ed2dc618 296
cd4fb1b2 297dwarf2_per_objfile *
ed2dc618
SM
298get_dwarf2_per_objfile (struct objfile *objfile)
299{
5bfd760d 300 return dwarf2_objfile_data_key.get (objfile);
ed2dc618 301}
c906108c 302
251d32d9 303/* Default names of the debugging sections. */
c906108c 304
233a11ab
CS
305/* Note that if the debugging section has been compressed, it might
306 have a name like .zdebug_info. */
307
9cdd5dbd
DE
308static const struct dwarf2_debug_sections dwarf2_elf_names =
309{
251d32d9
TG
310 { ".debug_info", ".zdebug_info" },
311 { ".debug_abbrev", ".zdebug_abbrev" },
312 { ".debug_line", ".zdebug_line" },
313 { ".debug_loc", ".zdebug_loc" },
43988095 314 { ".debug_loclists", ".zdebug_loclists" },
251d32d9 315 { ".debug_macinfo", ".zdebug_macinfo" },
cf2c3c16 316 { ".debug_macro", ".zdebug_macro" },
251d32d9 317 { ".debug_str", ".zdebug_str" },
18a8505e 318 { ".debug_str_offsets", ".zdebug_str_offsets" },
43988095 319 { ".debug_line_str", ".zdebug_line_str" },
251d32d9 320 { ".debug_ranges", ".zdebug_ranges" },
43988095 321 { ".debug_rnglists", ".zdebug_rnglists" },
251d32d9 322 { ".debug_types", ".zdebug_types" },
3019eac3 323 { ".debug_addr", ".zdebug_addr" },
251d32d9
TG
324 { ".debug_frame", ".zdebug_frame" },
325 { ".eh_frame", NULL },
24d3216f 326 { ".gdb_index", ".zgdb_index" },
927aa2e7
JK
327 { ".debug_names", ".zdebug_names" },
328 { ".debug_aranges", ".zdebug_aranges" },
24d3216f 329 23
251d32d9 330};
c906108c 331
80626a55 332/* List of DWO/DWP sections. */
3019eac3 333
80626a55 334static const struct dwop_section_names
3019eac3
DE
335{
336 struct dwarf2_section_names abbrev_dwo;
337 struct dwarf2_section_names info_dwo;
338 struct dwarf2_section_names line_dwo;
339 struct dwarf2_section_names loc_dwo;
43988095 340 struct dwarf2_section_names loclists_dwo;
09262596
DE
341 struct dwarf2_section_names macinfo_dwo;
342 struct dwarf2_section_names macro_dwo;
3019eac3
DE
343 struct dwarf2_section_names str_dwo;
344 struct dwarf2_section_names str_offsets_dwo;
345 struct dwarf2_section_names types_dwo;
80626a55
DE
346 struct dwarf2_section_names cu_index;
347 struct dwarf2_section_names tu_index;
3019eac3 348}
80626a55 349dwop_section_names =
3019eac3
DE
350{
351 { ".debug_abbrev.dwo", ".zdebug_abbrev.dwo" },
352 { ".debug_info.dwo", ".zdebug_info.dwo" },
353 { ".debug_line.dwo", ".zdebug_line.dwo" },
354 { ".debug_loc.dwo", ".zdebug_loc.dwo" },
43988095 355 { ".debug_loclists.dwo", ".zdebug_loclists.dwo" },
09262596
DE
356 { ".debug_macinfo.dwo", ".zdebug_macinfo.dwo" },
357 { ".debug_macro.dwo", ".zdebug_macro.dwo" },
3019eac3
DE
358 { ".debug_str.dwo", ".zdebug_str.dwo" },
359 { ".debug_str_offsets.dwo", ".zdebug_str_offsets.dwo" },
360 { ".debug_types.dwo", ".zdebug_types.dwo" },
80626a55
DE
361 { ".debug_cu_index", ".zdebug_cu_index" },
362 { ".debug_tu_index", ".zdebug_tu_index" },
3019eac3
DE
363};
364
c906108c
SS
365/* local data types */
366
41144253 367/* The location list section (.debug_loclists) begins with a header,
368 which contains the following information. */
369struct loclist_header
370{
371 /* A 4-byte or 12-byte length containing the length of the
372 set of entries for this compilation unit, not including the
373 length field itself. */
374 unsigned int length;
375
376 /* A 2-byte version identifier. */
377 short version;
378
379 /* A 1-byte unsigned integer containing the size in bytes of an address on
380 the target system. */
381 unsigned char addr_size;
382
383 /* A 1-byte unsigned integer containing the size in bytes of a segment selector
384 on the target system. */
385 unsigned char segment_collector_size;
386
387 /* A 4-byte count of the number of offsets that follow the header. */
388 unsigned int offset_entry_count;
389};
390
3da10d80
KS
391/* Type used for delaying computation of method physnames.
392 See comments for compute_delayed_physnames. */
393struct delayed_method_info
394{
395 /* The type to which the method is attached, i.e., its parent class. */
396 struct type *type;
397
398 /* The index of the method in the type's function fieldlists. */
399 int fnfield_index;
400
401 /* The index of the method in the fieldlist. */
402 int index;
403
404 /* The name of the DIE. */
405 const char *name;
406
407 /* The DIE associated with this method. */
408 struct die_info *die;
409};
410
e7c27a73
DJ
411/* Internal state when decoding a particular compilation unit. */
412struct dwarf2_cu
413{
9e021579
SM
414 explicit dwarf2_cu (dwarf2_per_cu_data *per_cu,
415 dwarf2_per_objfile *per_objfile);
fcd3b13d
SM
416
417 DISABLE_COPY_AND_ASSIGN (dwarf2_cu);
418
c24bdb02
KS
419 /* TU version of handle_DW_AT_stmt_list for read_type_unit_scope.
420 Create the set of symtabs used by this TU, or if this TU is sharing
421 symtabs with another TU and the symtabs have already been created
422 then restore those symtabs in the line header.
423 We don't need the pc/line-number mapping for type units. */
424 void setup_type_unit_groups (struct die_info *die);
425
426 /* Start a symtab for DWARF. NAME, COMP_DIR, LOW_PC are passed to the
427 buildsym_compunit constructor. */
428 struct compunit_symtab *start_symtab (const char *name,
429 const char *comp_dir,
430 CORE_ADDR low_pc);
431
432 /* Reset the builder. */
433 void reset_builder () { m_builder.reset (); }
434
293e7e51
SM
435 /* Return a type that is a generic pointer type, the size of which
436 matches the address size given in the compilation unit header for
437 this CU. */
438 struct type *addr_type () const;
439
440 /* Find an integer type the same size as the address size given in
441 the compilation unit header for this CU. UNSIGNED_P controls if
442 the integer is unsigned or not. */
443 struct type *addr_sized_int_type (bool unsigned_p) const;
444
d00adf39 445 /* The header of the compilation unit. */
fcd3b13d 446 struct comp_unit_head header {};
e142c38c 447
d00adf39 448 /* Base address of this compilation unit. */
2b24b6e4 449 gdb::optional<CORE_ADDR> base_address;
d00adf39 450
e142c38c 451 /* The language we are debugging. */
fcd3b13d
SM
452 enum language language = language_unknown;
453 const struct language_defn *language_defn = nullptr;
e142c38c 454
fcd3b13d 455 const char *producer = nullptr;
b0f35d58 456
c24bdb02 457private:
804d2729
TT
458 /* The symtab builder for this CU. This is only non-NULL when full
459 symbols are being read. */
c24bdb02 460 std::unique_ptr<buildsym_compunit> m_builder;
804d2729 461
c24bdb02 462public:
e142c38c
DJ
463 /* The generic symbol table building routines have separate lists for
464 file scope symbols and all all other scopes (local scopes). So
465 we need to select the right one to pass to add_symbol_to_list().
466 We do it by keeping a pointer to the correct list in list_in_scope.
467
468 FIXME: The original dwarf code just treated the file scope as the
469 first local scope, and all other local scopes as nested local
470 scopes, and worked fine. Check to see if we really need to
471 distinguish these in buildsym.c. */
fcd3b13d 472 struct pending **list_in_scope = nullptr;
e142c38c 473
b64f50a1
JK
474 /* Hash table holding all the loaded partial DIEs
475 with partial_die->offset.SECT_OFF as hash. */
fcd3b13d 476 htab_t partial_dies = nullptr;
72bf9492
DJ
477
478 /* Storage for things with the same lifetime as this read-in compilation
479 unit, including partial DIEs. */
fcd3b13d 480 auto_obstack comp_unit_obstack;
72bf9492 481
69d751e3 482 /* Backlink to our per_cu entry. */
ae038cb0
DJ
483 struct dwarf2_per_cu_data *per_cu;
484
9e021579 485 /* The dwarf2_per_objfile that owns this. */
976ca316 486 dwarf2_per_objfile *per_objfile;
9e021579 487
ae038cb0 488 /* How many compilation units ago was this CU last referenced? */
fcd3b13d 489 int last_used = 0;
ae038cb0 490
b64f50a1
JK
491 /* A hash table of DIE cu_offset for following references with
492 die_info->offset.sect_off as hash. */
fcd3b13d 493 htab_t die_hash = nullptr;
10b3939b
DJ
494
495 /* Full DIEs if read in. */
fcd3b13d 496 struct die_info *dies = nullptr;
10b3939b
DJ
497
498 /* A set of pointers to dwarf2_per_cu_data objects for compilation
499 units referenced by this one. Only set during full symbol processing;
500 partial symbol tables do not have dependencies. */
fcd3b13d 501 htab_t dependencies = nullptr;
10b3939b 502
cb1df416 503 /* Header data from the line table, during full symbol processing. */
fcd3b13d 504 struct line_header *line_header = nullptr;
4c8aa72d 505 /* Non-NULL if LINE_HEADER is owned by this DWARF_CU. Otherwise,
5989a64e 506 it's owned by dwarf2_per_bfd::line_header_hash. If non-NULL,
4c8aa72d
PA
507 this is the DW_TAG_compile_unit die for this CU. We'll hold on
508 to the line header as long as this DIE is being processed. See
509 process_die_scope. */
fcd3b13d 510 die_info *line_header_die_owner = nullptr;
cb1df416 511
3da10d80
KS
512 /* A list of methods which need to have physnames computed
513 after all type information has been read. */
c89b44cd 514 std::vector<delayed_method_info> method_list;
3da10d80 515
96408a79 516 /* To be copied to symtab->call_site_htab. */
fcd3b13d 517 htab_t call_site_htab = nullptr;
96408a79 518
034e5797
DE
519 /* Non-NULL if this CU came from a DWO file.
520 There is an invariant here that is important to remember:
521 Except for attributes copied from the top level DIE in the "main"
522 (or "stub") file in preparation for reading the DWO file
18a8505e 523 (e.g., DW_AT_addr_base), we KISS: there is only *one* CU.
034e5797
DE
524 Either there isn't a DWO file (in which case this is NULL and the point
525 is moot), or there is and either we're not going to read it (in which
526 case this is NULL) or there is and we are reading it (in which case this
527 is non-NULL). */
fcd3b13d 528 struct dwo_unit *dwo_unit = nullptr;
3019eac3 529
18a8505e 530 /* The DW_AT_addr_base (DW_AT_GNU_addr_base) attribute if present.
1dbab08b 531 Note this value comes from the Fission stub CU/TU's DIE. */
18a8505e 532 gdb::optional<ULONGEST> addr_base;
3019eac3 533
18a8505e 534 /* The DW_AT_rnglists_base attribute if present.
1dbab08b 535 Note this value comes from the Fission stub CU/TU's DIE.
2e3cf129 536 Also note that the value is zero in the non-DWO case so this value can
ab435259
DE
537 be used without needing to know whether DWO files are in use or not.
538 N.B. This does not apply to DW_AT_ranges appearing in
539 DW_TAG_compile_unit dies. This is a bit of a wart, consider if ever
540 DW_AT_ranges appeared in the DW_TAG_compile_unit of DWO DIEs: then
18a8505e 541 DW_AT_rnglists_base *would* have to be applied, and we'd have to care
ab435259 542 whether the DW_AT_ranges attribute came from the skeleton or DWO. */
fcd3b13d 543 ULONGEST ranges_base = 0;
2e3cf129 544
41144253 545 /* The DW_AT_loclists_base attribute if present. */
546 ULONGEST loclist_base = 0;
547
c9317f21
TT
548 /* When reading debug info generated by older versions of rustc, we
549 have to rewrite some union types to be struct types with a
550 variant part. This rewriting must be done after the CU is fully
551 read in, because otherwise at the point of rewriting some struct
552 type might not have been fully processed. So, we keep a list of
553 all such types here and process them after expansion. */
554 std::vector<struct type *> rust_unions;
555
18a8505e
AT
556 /* The DW_AT_str_offsets_base attribute if present. For DWARF 4 version DWO
557 files, the value is implicitly zero. For DWARF 5 version DWO files, the
558 value is often implicit and is the size of the header of
559 .debug_str_offsets section (8 or 4, depending on the address size). */
560 gdb::optional<ULONGEST> str_offsets_base;
561
ae038cb0 562 /* Mark used when releasing cached dies. */
9068261f 563 bool mark : 1;
ae038cb0 564
8be455d7
JK
565 /* This CU references .debug_loc. See the symtab->locations_valid field.
566 This test is imperfect as there may exist optimized debug code not using
567 any location list and still facing inlining issues if handled as
568 unoptimized code. For a future better test see GCC PR other/32998. */
9068261f 569 bool has_loclist : 1;
ba919b58 570
9068261f 571 /* These cache the results for producer_is_* fields. CHECKED_PRODUCER is true
1b80a9fa
JK
572 if all the producer_is_* fields are valid. This information is cached
573 because profiling CU expansion showed excessive time spent in
574 producer_is_gxx_lt_4_6. */
9068261f
AB
575 bool checked_producer : 1;
576 bool producer_is_gxx_lt_4_6 : 1;
577 bool producer_is_gcc_lt_4_3 : 1;
eb77c9df 578 bool producer_is_icc : 1;
9068261f 579 bool producer_is_icc_lt_14 : 1;
c258c396 580 bool producer_is_codewarrior : 1;
4d4ec4e5 581
9068261f 582 /* When true, the file that we're processing is known to have
4d4ec4e5
TT
583 debugging info for C++ namespaces. GCC 3.3.x did not produce
584 this information, but later versions do. */
585
9068261f 586 bool processing_has_namespace_info : 1;
d590ff25
YQ
587
588 struct partial_die_info *find_partial_die (sect_offset sect_off);
c24bdb02
KS
589
590 /* If this CU was inherited by another CU (via specification,
591 abstract_origin, etc), this is the ancestor CU. */
592 dwarf2_cu *ancestor;
593
594 /* Get the buildsym_compunit for this CU. */
595 buildsym_compunit *get_builder ()
596 {
597 /* If this CU has a builder associated with it, use that. */
598 if (m_builder != nullptr)
599 return m_builder.get ();
600
601 /* Otherwise, search ancestors for a valid builder. */
602 if (ancestor != nullptr)
603 return ancestor->get_builder ();
604
605 return nullptr;
606 }
e7c27a73
DJ
607};
608
094b34ac
DE
609/* A struct that can be used as a hash key for tables based on DW_AT_stmt_list.
610 This includes type_unit_group and quick_file_names. */
611
612struct stmt_list_hash
613{
614 /* The DWO unit this table is from or NULL if there is none. */
615 struct dwo_unit *dwo_unit;
616
617 /* Offset in .debug_line or .debug_line.dwo. */
9c541725 618 sect_offset line_sect_off;
094b34ac
DE
619};
620
5989a64e 621/* Each element of dwarf2_per_bfd->type_unit_groups is a pointer to
8adb8487
TT
622 an object of this type. This contains elements of type unit groups
623 that can be shared across objfiles. The non-shareable parts are in
624 type_unit_group_unshareable. */
f4dc4d17
DE
625
626struct type_unit_group
627{
0186c6a7 628 /* dwarf2read.c's main "handle" on a TU symtab.
f4dc4d17
DE
629 To simplify things we create an artificial CU that "includes" all the
630 type units using this stmt_list so that the rest of the code still has
197400e8 631 a "per_cu" handle on the symtab. */
094b34ac
DE
632 struct dwarf2_per_cu_data per_cu;
633
0186c6a7
DE
634 /* The TUs that share this DW_AT_stmt_list entry.
635 This is added to while parsing type units to build partial symtabs,
636 and is deleted afterwards and not used again. */
a8b3b8e9 637 std::vector<signatured_type *> *tus;
f4dc4d17 638
094b34ac
DE
639 /* The data used to construct the hash key. */
640 struct stmt_list_hash hash;
f4dc4d17
DE
641};
642
73869dc2 643/* These sections are what may appear in a (real or virtual) DWO file. */
3019eac3
DE
644
645struct dwo_sections
646{
647 struct dwarf2_section_info abbrev;
3019eac3
DE
648 struct dwarf2_section_info line;
649 struct dwarf2_section_info loc;
43988095 650 struct dwarf2_section_info loclists;
09262596
DE
651 struct dwarf2_section_info macinfo;
652 struct dwarf2_section_info macro;
3019eac3
DE
653 struct dwarf2_section_info str;
654 struct dwarf2_section_info str_offsets;
80626a55
DE
655 /* In the case of a virtual DWO file, these two are unused. */
656 struct dwarf2_section_info info;
fd5866f6 657 std::vector<dwarf2_section_info> types;
3019eac3
DE
658};
659
c88ee1f0 660/* CUs/TUs in DWP/DWO files. */
3019eac3
DE
661
662struct dwo_unit
663{
664 /* Backlink to the containing struct dwo_file. */
665 struct dwo_file *dwo_file;
666
667 /* The "id" that distinguishes this CU/TU.
668 .debug_info calls this "dwo_id", .debug_types calls this "signature".
669 Since signatures came first, we stick with it for consistency. */
670 ULONGEST signature;
671
672 /* The section this CU/TU lives in, in the DWO file. */
8a0459fd 673 struct dwarf2_section_info *section;
3019eac3 674
9c541725
PA
675 /* Same as dwarf2_per_cu_data:{sect_off,length} but in the DWO section. */
676 sect_offset sect_off;
3019eac3
DE
677 unsigned int length;
678
679 /* For types, offset in the type's DIE of the type defined by this TU. */
680 cu_offset type_offset_in_tu;
681};
682
73869dc2
DE
683/* include/dwarf2.h defines the DWP section codes.
684 It defines a max value but it doesn't define a min value, which we
685 use for error checking, so provide one. */
686
687enum dwp_v2_section_ids
688{
689 DW_SECT_MIN = 1
690};
691
80626a55 692/* Data for one DWO file.
57d63ce2
DE
693
694 This includes virtual DWO files (a virtual DWO file is a DWO file as it
695 appears in a DWP file). DWP files don't really have DWO files per se -
696 comdat folding of types "loses" the DWO file they came from, and from
697 a high level view DWP files appear to contain a mass of random types.
698 However, to maintain consistency with the non-DWP case we pretend DWP
699 files contain virtual DWO files, and we assign each TU with one virtual
700 DWO file (generally based on the line and abbrev section offsets -
701 a heuristic that seems to work in practice). */
3019eac3
DE
702
703struct dwo_file
704{
51ac9db5
SM
705 dwo_file () = default;
706 DISABLE_COPY_AND_ASSIGN (dwo_file);
707
18a8505e 708 /* The DW_AT_GNU_dwo_name or DW_AT_dwo_name attribute.
80626a55
DE
709 For virtual DWO files the name is constructed from the section offsets
710 of abbrev,line,loc,str_offsets so that we combine virtual DWO files
711 from related CU+TUs. */
51ac9db5 712 const char *dwo_name = nullptr;
0ac5b59e
DE
713
714 /* The DW_AT_comp_dir attribute. */
51ac9db5 715 const char *comp_dir = nullptr;
3019eac3 716
80626a55
DE
717 /* The bfd, when the file is open. Otherwise this is NULL.
718 This is unused(NULL) for virtual DWO files where we use dwp_file.dbfd. */
fb1eb2f9 719 gdb_bfd_ref_ptr dbfd;
3019eac3 720
73869dc2
DE
721 /* The sections that make up this DWO file.
722 Remember that for virtual DWO files in DWP V2, these are virtual
723 sections (for lack of a better name). */
51ac9db5 724 struct dwo_sections sections {};
3019eac3 725
33c5cd75
DB
726 /* The CUs in the file.
727 Each element is a struct dwo_unit. Multiple CUs per DWO are supported as
728 an extension to handle LLVM's Link Time Optimization output (where
729 multiple source files may be compiled into a single object/dwo pair). */
b0b6a987 730 htab_up cus;
3019eac3
DE
731
732 /* Table of TUs in the file.
733 Each element is a struct dwo_unit. */
b0b6a987 734 htab_up tus;
3019eac3
DE
735};
736
80626a55
DE
737/* These sections are what may appear in a DWP file. */
738
739struct dwp_sections
740{
73869dc2 741 /* These are used by both DWP version 1 and 2. */
80626a55
DE
742 struct dwarf2_section_info str;
743 struct dwarf2_section_info cu_index;
744 struct dwarf2_section_info tu_index;
73869dc2
DE
745
746 /* These are only used by DWP version 2 files.
747 In DWP version 1 the .debug_info.dwo, .debug_types.dwo, and other
748 sections are referenced by section number, and are not recorded here.
749 In DWP version 2 there is at most one copy of all these sections, each
750 section being (effectively) comprised of the concatenation of all of the
751 individual sections that exist in the version 1 format.
752 To keep the code simple we treat each of these concatenated pieces as a
753 section itself (a virtual section?). */
754 struct dwarf2_section_info abbrev;
755 struct dwarf2_section_info info;
756 struct dwarf2_section_info line;
757 struct dwarf2_section_info loc;
758 struct dwarf2_section_info macinfo;
759 struct dwarf2_section_info macro;
760 struct dwarf2_section_info str_offsets;
761 struct dwarf2_section_info types;
80626a55
DE
762};
763
73869dc2
DE
764/* These sections are what may appear in a virtual DWO file in DWP version 1.
765 A virtual DWO file is a DWO file as it appears in a DWP file. */
80626a55 766
73869dc2 767struct virtual_v1_dwo_sections
80626a55
DE
768{
769 struct dwarf2_section_info abbrev;
770 struct dwarf2_section_info line;
771 struct dwarf2_section_info loc;
772 struct dwarf2_section_info macinfo;
773 struct dwarf2_section_info macro;
774 struct dwarf2_section_info str_offsets;
775 /* Each DWP hash table entry records one CU or one TU.
8a0459fd 776 That is recorded here, and copied to dwo_unit.section. */
80626a55
DE
777 struct dwarf2_section_info info_or_types;
778};
779
73869dc2
DE
780/* Similar to virtual_v1_dwo_sections, but for DWP version 2.
781 In version 2, the sections of the DWO files are concatenated together
782 and stored in one section of that name. Thus each ELF section contains
783 several "virtual" sections. */
784
785struct virtual_v2_dwo_sections
786{
787 bfd_size_type abbrev_offset;
788 bfd_size_type abbrev_size;
789
790 bfd_size_type line_offset;
791 bfd_size_type line_size;
792
793 bfd_size_type loc_offset;
794 bfd_size_type loc_size;
795
796 bfd_size_type macinfo_offset;
797 bfd_size_type macinfo_size;
798
799 bfd_size_type macro_offset;
800 bfd_size_type macro_size;
801
802 bfd_size_type str_offsets_offset;
803 bfd_size_type str_offsets_size;
804
805 /* Each DWP hash table entry records one CU or one TU.
806 That is recorded here, and copied to dwo_unit.section. */
807 bfd_size_type info_or_types_offset;
808 bfd_size_type info_or_types_size;
809};
810
80626a55
DE
811/* Contents of DWP hash tables. */
812
813struct dwp_hash_table
814{
73869dc2 815 uint32_t version, nr_columns;
80626a55 816 uint32_t nr_units, nr_slots;
73869dc2
DE
817 const gdb_byte *hash_table, *unit_table;
818 union
819 {
820 struct
821 {
822 const gdb_byte *indices;
823 } v1;
824 struct
825 {
826 /* This is indexed by column number and gives the id of the section
827 in that column. */
828#define MAX_NR_V2_DWO_SECTIONS \
829 (1 /* .debug_info or .debug_types */ \
830 + 1 /* .debug_abbrev */ \
831 + 1 /* .debug_line */ \
832 + 1 /* .debug_loc */ \
833 + 1 /* .debug_str_offsets */ \
834 + 1 /* .debug_macro or .debug_macinfo */)
835 int section_ids[MAX_NR_V2_DWO_SECTIONS];
836 const gdb_byte *offsets;
837 const gdb_byte *sizes;
838 } v2;
839 } section_pool;
80626a55
DE
840};
841
842/* Data for one DWP file. */
843
844struct dwp_file
845{
400174b1
TT
846 dwp_file (const char *name_, gdb_bfd_ref_ptr &&abfd)
847 : name (name_),
848 dbfd (std::move (abfd))
849 {
850 }
851
80626a55
DE
852 /* Name of the file. */
853 const char *name;
854
73869dc2 855 /* File format version. */
400174b1 856 int version = 0;
73869dc2 857
93417882 858 /* The bfd. */
400174b1 859 gdb_bfd_ref_ptr dbfd;
80626a55
DE
860
861 /* Section info for this file. */
400174b1 862 struct dwp_sections sections {};
80626a55 863
57d63ce2 864 /* Table of CUs in the file. */
400174b1 865 const struct dwp_hash_table *cus = nullptr;
80626a55
DE
866
867 /* Table of TUs in the file. */
400174b1 868 const struct dwp_hash_table *tus = nullptr;
80626a55 869
19ac8c2e 870 /* Tables of loaded CUs/TUs. Each entry is a struct dwo_unit *. */
48b490f2
TT
871 htab_up loaded_cus;
872 htab_up loaded_tus;
80626a55 873
73869dc2
DE
874 /* Table to map ELF section numbers to their sections.
875 This is only needed for the DWP V1 file format. */
400174b1
TT
876 unsigned int num_sections = 0;
877 asection **elf_sections = nullptr;
80626a55
DE
878};
879
0963b4bd
MS
880/* Struct used to pass misc. parameters to read_die_and_children, et
881 al. which are used for both .debug_info and .debug_types dies.
882 All parameters here are unchanging for the life of the call. This
dee91e82 883 struct exists to abstract away the constant parameters of die reading. */
93311388
DE
884
885struct die_reader_specs
886{
a32a8923 887 /* The bfd of die_section. */
93311388
DE
888 bfd* abfd;
889
890 /* The CU of the DIE we are parsing. */
891 struct dwarf2_cu *cu;
892
80626a55 893 /* Non-NULL if reading a DWO file (including one packaged into a DWP). */
3019eac3
DE
894 struct dwo_file *dwo_file;
895
dee91e82 896 /* The section the die comes from.
3019eac3 897 This is either .debug_info or .debug_types, or the .dwo variants. */
dee91e82
DE
898 struct dwarf2_section_info *die_section;
899
900 /* die_section->buffer. */
d521ce57 901 const gdb_byte *buffer;
f664829e
DE
902
903 /* The end of the buffer. */
904 const gdb_byte *buffer_end;
a2ce51a0 905
685af9cd
TT
906 /* The abbreviation table to use when reading the DIEs. */
907 struct abbrev_table *abbrev_table;
93311388
DE
908};
909
c0ab21c2
TT
910/* A subclass of die_reader_specs that holds storage and has complex
911 constructor and destructor behavior. */
912
913class cutu_reader : public die_reader_specs
914{
915public:
916
ab432490
SM
917 cutu_reader (dwarf2_per_cu_data *this_cu,
918 dwarf2_per_objfile *per_objfile,
c0ab21c2 919 struct abbrev_table *abbrev_table,
2e671100 920 dwarf2_cu *existing_cu,
c0ab21c2
TT
921 bool skip_partial);
922
923 explicit cutu_reader (struct dwarf2_per_cu_data *this_cu,
ab432490 924 dwarf2_per_objfile *per_objfile,
c0ab21c2
TT
925 struct dwarf2_cu *parent_cu = nullptr,
926 struct dwo_file *dwo_file = nullptr);
927
c0ab21c2
TT
928 DISABLE_COPY_AND_ASSIGN (cutu_reader);
929
930 const gdb_byte *info_ptr = nullptr;
931 struct die_info *comp_unit_die = nullptr;
c0ab21c2
TT
932 bool dummy_p = false;
933
6751ebae
TT
934 /* Release the new CU, putting it on the chain. This cannot be done
935 for dummy CUs. */
936 void keep ();
937
c0ab21c2 938private:
9e021579
SM
939 void init_tu_and_read_dwo_dies (dwarf2_per_cu_data *this_cu,
940 dwarf2_per_objfile *per_objfile,
2e671100 941 dwarf2_cu *existing_cu);
c0ab21c2
TT
942
943 struct dwarf2_per_cu_data *m_this_cu;
c0ab21c2
TT
944 std::unique_ptr<dwarf2_cu> m_new_cu;
945
946 /* The ordinary abbreviation table. */
947 abbrev_table_up m_abbrev_table_holder;
948
949 /* The DWO abbreviation table. */
950 abbrev_table_up m_dwo_abbrev_table;
951};
dee91e82 952
c906108c 953/* When we construct a partial symbol table entry we only
0963b4bd 954 need this much information. */
6f06d47b 955struct partial_die_info : public allocate_on_obstack
c906108c 956 {
6f06d47b
YQ
957 partial_die_info (sect_offset sect_off, struct abbrev_info *abbrev);
958
959 /* Disable assign but still keep copy ctor, which is needed
960 load_partial_dies. */
961 partial_die_info& operator=(const partial_die_info& rhs) = delete;
962
52356b79
YQ
963 /* Adjust the partial die before generating a symbol for it. This
964 function may set the is_external flag or change the DIE's
965 name. */
966 void fixup (struct dwarf2_cu *cu);
967
48fbe735
YQ
968 /* Read a minimal amount of information into the minimal die
969 structure. */
970 const gdb_byte *read (const struct die_reader_specs *reader,
971 const struct abbrev_info &abbrev,
972 const gdb_byte *info_ptr);
973
7d00ffec
TT
974 /* Compute the name of this partial DIE. This memoizes the
975 result, so it is safe to call multiple times. */
976 const char *name (dwarf2_cu *cu);
977
72bf9492 978 /* Offset of this DIE. */
6f06d47b 979 const sect_offset sect_off;
72bf9492
DJ
980
981 /* DWARF-2 tag for this DIE. */
6f06d47b 982 const ENUM_BITFIELD(dwarf_tag) tag : 16;
72bf9492 983
72bf9492 984 /* Assorted flags describing the data found in this DIE. */
6f06d47b
YQ
985 const unsigned int has_children : 1;
986
72bf9492
DJ
987 unsigned int is_external : 1;
988 unsigned int is_declaration : 1;
989 unsigned int has_type : 1;
990 unsigned int has_specification : 1;
991 unsigned int has_pc_info : 1;
481860b3 992 unsigned int may_be_inlined : 1;
72bf9492 993
0c1b455e
TT
994 /* This DIE has been marked DW_AT_main_subprogram. */
995 unsigned int main_subprogram : 1;
996
72bf9492
DJ
997 /* Flag set if the SCOPE field of this structure has been
998 computed. */
999 unsigned int scope_set : 1;
1000
fa4028e9
JB
1001 /* Flag set if the DIE has a byte_size attribute. */
1002 unsigned int has_byte_size : 1;
1003
ff908ebf
AW
1004 /* Flag set if the DIE has a DW_AT_const_value attribute. */
1005 unsigned int has_const_value : 1;
1006
98bfdba5
PA
1007 /* Flag set if any of the DIE's children are template arguments. */
1008 unsigned int has_template_arguments : 1;
1009
52356b79 1010 /* Flag set if fixup has been called on this die. */
abc72ce4
DE
1011 unsigned int fixup_called : 1;
1012
36586728
TT
1013 /* Flag set if DW_TAG_imported_unit uses DW_FORM_GNU_ref_alt. */
1014 unsigned int is_dwz : 1;
1015
1016 /* Flag set if spec_offset uses DW_FORM_GNU_ref_alt. */
1017 unsigned int spec_is_dwz : 1;
1018
7d00ffec
TT
1019 unsigned int canonical_name : 1;
1020
72bf9492 1021 /* The name of this DIE. Normally the value of DW_AT_name, but
94af9270 1022 sometimes a default name for unnamed DIEs. */
7d00ffec 1023 const char *raw_name = nullptr;
72bf9492 1024
abc72ce4 1025 /* The linkage name, if present. */
6f06d47b 1026 const char *linkage_name = nullptr;
abc72ce4 1027
72bf9492
DJ
1028 /* The scope to prepend to our children. This is generally
1029 allocated on the comp_unit_obstack, so will disappear
1030 when this compilation unit leaves the cache. */
6f06d47b 1031 const char *scope = nullptr;
72bf9492 1032
95554aad
TT
1033 /* Some data associated with the partial DIE. The tag determines
1034 which field is live. */
1035 union
1036 {
1037 /* The location description associated with this DIE, if any. */
1038 struct dwarf_block *locdesc;
1039 /* The offset of an import, for DW_TAG_imported_unit. */
9c541725 1040 sect_offset sect_off;
6f06d47b 1041 } d {};
72bf9492
DJ
1042
1043 /* If HAS_PC_INFO, the PC range associated with this DIE. */
6f06d47b
YQ
1044 CORE_ADDR lowpc = 0;
1045 CORE_ADDR highpc = 0;
72bf9492 1046
93311388 1047 /* Pointer into the info_buffer (or types_buffer) pointing at the target of
72bf9492 1048 DW_AT_sibling, if any. */
48fbe735
YQ
1049 /* NOTE: This member isn't strictly necessary, partial_die_info::read
1050 could return DW_AT_sibling values to its caller load_partial_dies. */
6f06d47b 1051 const gdb_byte *sibling = nullptr;
72bf9492
DJ
1052
1053 /* If HAS_SPECIFICATION, the offset of the DIE referred to by
1054 DW_AT_specification (or DW_AT_abstract_origin or
1055 DW_AT_extension). */
6f06d47b 1056 sect_offset spec_offset {};
72bf9492
DJ
1057
1058 /* Pointers to this DIE's parent, first child, and next sibling,
1059 if any. */
6f06d47b
YQ
1060 struct partial_die_info *die_parent = nullptr;
1061 struct partial_die_info *die_child = nullptr;
1062 struct partial_die_info *die_sibling = nullptr;
1063
1064 friend struct partial_die_info *
1065 dwarf2_cu::find_partial_die (sect_offset sect_off);
1066
1067 private:
1068 /* Only need to do look up in dwarf2_cu::find_partial_die. */
1069 partial_die_info (sect_offset sect_off)
1070 : partial_die_info (sect_off, DW_TAG_padding, 0)
1071 {
1072 }
1073
1074 partial_die_info (sect_offset sect_off_, enum dwarf_tag tag_,
1075 int has_children_)
1076 : sect_off (sect_off_), tag (tag_), has_children (has_children_)
1077 {
1078 is_external = 0;
1079 is_declaration = 0;
1080 has_type = 0;
1081 has_specification = 0;
1082 has_pc_info = 0;
1083 may_be_inlined = 0;
1084 main_subprogram = 0;
1085 scope_set = 0;
1086 has_byte_size = 0;
1087 has_const_value = 0;
1088 has_template_arguments = 0;
1089 fixup_called = 0;
1090 is_dwz = 0;
1091 spec_is_dwz = 0;
7d00ffec 1092 canonical_name = 0;
6f06d47b 1093 }
c906108c
SS
1094 };
1095
c906108c
SS
1096/* FIXME: We might want to set this from BFD via bfd_arch_bits_per_byte,
1097 but this would require a corresponding change in unpack_field_as_long
1098 and friends. */
1099static int bits_per_byte = 8;
1100
9c6a1327
TT
1101struct variant_part_builder;
1102
1103/* When reading a variant, we track a bit more information about the
1104 field, and store it in an object of this type. */
2ddeaf8a
TT
1105
1106struct variant_field
1107{
9c6a1327
TT
1108 int first_field = -1;
1109 int last_field = -1;
1110
1111 /* A variant can contain other variant parts. */
1112 std::vector<variant_part_builder> variant_parts;
1113
2ddeaf8a
TT
1114 /* If we see a DW_TAG_variant, then this will be set if this is the
1115 default branch. */
9c6a1327
TT
1116 bool default_branch = false;
1117 /* If we see a DW_AT_discr_value, then this will be the discriminant
1118 value. */
1119 ULONGEST discriminant_value = 0;
1120 /* If we see a DW_AT_discr_list, then this is a pointer to the list
1121 data. */
1122 struct dwarf_block *discr_list_data = nullptr;
1123};
1124
1125/* This represents a DW_TAG_variant_part. */
1126
1127struct variant_part_builder
1128{
1129 /* The offset of the discriminant field. */
1130 sect_offset discriminant_offset {};
1131
1132 /* Variants that are direct children of this variant part. */
1133 std::vector<variant_field> variants;
1134
1135 /* True if we're currently reading a variant. */
1136 bool processing_variant = false;
2ddeaf8a
TT
1137};
1138
52059ffd
TT
1139struct nextfield
1140{
be2daae6
TT
1141 int accessibility = 0;
1142 int virtuality = 0;
9c6a1327
TT
1143 /* Variant parts need to find the discriminant, which is a DIE
1144 reference. We track the section offset of each field to make
1145 this link. */
1146 sect_offset offset;
be2daae6 1147 struct field field {};
52059ffd
TT
1148};
1149
1150struct fnfieldlist
1151{
be2daae6
TT
1152 const char *name = nullptr;
1153 std::vector<struct fn_field> fnfields;
52059ffd
TT
1154};
1155
c906108c
SS
1156/* The routines that read and process dies for a C struct or C++ class
1157 pass lists of data member fields and lists of member function fields
1158 in an instance of a field_info structure, as defined below. */
1159struct field_info
c5aa993b 1160 {
0963b4bd 1161 /* List of data member and baseclasses fields. */
be2daae6
TT
1162 std::vector<struct nextfield> fields;
1163 std::vector<struct nextfield> baseclasses;
c906108c 1164
85102364 1165 /* Set if the accessibility of one of the fields is not public. */
be2daae6 1166 int non_public_fields = 0;
c906108c 1167
c5aa993b
JM
1168 /* Member function fieldlist array, contains name of possibly overloaded
1169 member function, number of overloaded member functions and a pointer
1170 to the head of the member function field chain. */
be2daae6 1171 std::vector<struct fnfieldlist> fnfieldlists;
98751a41
JK
1172
1173 /* typedefs defined inside this class. TYPEDEF_FIELD_LIST contains head of
1174 a NULL terminated list of TYPEDEF_FIELD_LIST_COUNT elements. */
be2daae6 1175 std::vector<struct decl_field> typedef_field_list;
883fd55a
KS
1176
1177 /* Nested types defined by this class and the number of elements in this
1178 list. */
be2daae6 1179 std::vector<struct decl_field> nested_types_list;
317f7127 1180
9c6a1327
TT
1181 /* If non-null, this is the variant part we are currently
1182 reading. */
1183 variant_part_builder *current_variant_part = nullptr;
1184 /* This holds all the top-level variant parts attached to the type
1185 we're reading. */
1186 std::vector<variant_part_builder> variant_parts;
1187
317f7127
TT
1188 /* Return the total number of fields (including baseclasses). */
1189 int nfields () const
1190 {
1191 return fields.size () + baseclasses.size ();
1192 }
c5aa993b 1193 };
c906108c 1194
ae038cb0
DJ
1195/* Loaded secondary compilation units are kept in memory until they
1196 have not been referenced for the processing of this many
1197 compilation units. Set this to zero to disable caching. Cache
1198 sizes of up to at least twenty will improve startup time for
1199 typical inter-CU-reference binaries, at an obvious memory cost. */
b4f54984 1200static int dwarf_max_cache_age = 5;
920d2a44 1201static void
b4f54984
DE
1202show_dwarf_max_cache_age (struct ui_file *file, int from_tty,
1203 struct cmd_list_element *c, const char *value)
920d2a44 1204{
3e43a32a 1205 fprintf_filtered (file, _("The upper bound on the age of cached "
b4f54984 1206 "DWARF compilation units is %s.\n"),
920d2a44
AC
1207 value);
1208}
4390d890 1209\f
c906108c
SS
1210/* local function prototypes */
1211
918dd910
JK
1212static void dwarf2_find_base_address (struct die_info *die,
1213 struct dwarf2_cu *cu);
1214
891813be 1215static dwarf2_psymtab *create_partial_symtab
7aa104c4
SM
1216 (dwarf2_per_cu_data *per_cu, dwarf2_per_objfile *per_objfile,
1217 const char *name);
0018ea6f 1218
f1902523
JK
1219static void build_type_psymtabs_reader (const struct die_reader_specs *reader,
1220 const gdb_byte *info_ptr,
3e225074 1221 struct die_info *type_unit_die);
f1902523 1222
976ca316 1223static void dwarf2_build_psymtabs_hard (dwarf2_per_objfile *per_objfile);
c906108c 1224
72bf9492
DJ
1225static void scan_partial_symbols (struct partial_die_info *,
1226 CORE_ADDR *, CORE_ADDR *,
5734ee8b 1227 int, struct dwarf2_cu *);
c906108c 1228
72bf9492
DJ
1229static void add_partial_symbol (struct partial_die_info *,
1230 struct dwarf2_cu *);
63d06c5c 1231
72bf9492
DJ
1232static void add_partial_namespace (struct partial_die_info *pdi,
1233 CORE_ADDR *lowpc, CORE_ADDR *highpc,
cdc07690 1234 int set_addrmap, struct dwarf2_cu *cu);
63d06c5c 1235
5d7cb8df 1236static void add_partial_module (struct partial_die_info *pdi, CORE_ADDR *lowpc,
cdc07690 1237 CORE_ADDR *highpc, int set_addrmap,
5d7cb8df
JK
1238 struct dwarf2_cu *cu);
1239
72bf9492
DJ
1240static void add_partial_enumeration (struct partial_die_info *enum_pdi,
1241 struct dwarf2_cu *cu);
91c24f0a 1242
bc30ff58
JB
1243static void add_partial_subprogram (struct partial_die_info *pdi,
1244 CORE_ADDR *lowpc, CORE_ADDR *highpc,
5734ee8b 1245 int need_pc, struct dwarf2_cu *cu);
bc30ff58 1246
d521ce57 1247static unsigned int peek_abbrev_code (bfd *, const gdb_byte *);
6caca83c 1248
dee91e82 1249static struct partial_die_info *load_partial_dies
d521ce57 1250 (const struct die_reader_specs *, const gdb_byte *, int);
72bf9492 1251
fb816e8b
TV
1252/* A pair of partial_die_info and compilation unit. */
1253struct cu_partial_die_info
1254{
1255 /* The compilation unit of the partial_die_info. */
1256 struct dwarf2_cu *cu;
1257 /* A partial_die_info. */
1258 struct partial_die_info *pdi;
122cf0f2
AB
1259
1260 cu_partial_die_info (struct dwarf2_cu *cu, struct partial_die_info *pdi)
1261 : cu (cu),
1262 pdi (pdi)
405feb71 1263 { /* Nothing. */ }
122cf0f2
AB
1264
1265private:
1266 cu_partial_die_info () = delete;
fb816e8b
TV
1267};
1268
122cf0f2
AB
1269static const struct cu_partial_die_info find_partial_die (sect_offset, int,
1270 struct dwarf2_cu *);
72bf9492 1271
d521ce57
TT
1272static const gdb_byte *read_attribute (const struct die_reader_specs *,
1273 struct attribute *, struct attr_abbrev *,
18a8505e
AT
1274 const gdb_byte *, bool *need_reprocess);
1275
1276static void read_attribute_reprocess (const struct die_reader_specs *reader,
1277 struct attribute *attr);
1278
1279static CORE_ADDR read_addr_index (struct dwarf2_cu *cu, unsigned int addr_index);
a8329558 1280
976ca316
SM
1281static sect_offset read_abbrev_offset (dwarf2_per_objfile *per_objfile,
1282 dwarf2_section_info *, sect_offset);
f4dc4d17 1283
ed2dc618 1284static const char *read_indirect_string
976ca316 1285 (dwarf2_per_objfile *per_objfile, bfd *, const gdb_byte *,
ed2dc618 1286 const struct comp_unit_head *, unsigned int *);
4bdf3d34 1287
ed2dc618 1288static const char *read_indirect_string_at_offset
976ca316 1289 (dwarf2_per_objfile *per_objfile, LONGEST str_offset);
927aa2e7 1290
d521ce57
TT
1291static CORE_ADDR read_addr_index_from_leb128 (struct dwarf2_cu *,
1292 const gdb_byte *,
3019eac3
DE
1293 unsigned int *);
1294
18a8505e
AT
1295static const char *read_dwo_str_index (const struct die_reader_specs *reader,
1296 ULONGEST str_index);
1297
1298static const char *read_stub_str_index (struct dwarf2_cu *cu,
1299 ULONGEST str_index);
3019eac3 1300
e142c38c 1301static void set_cu_language (unsigned int, struct dwarf2_cu *);
c906108c 1302
e142c38c
DJ
1303static struct attribute *dwarf2_attr (struct die_info *, unsigned int,
1304 struct dwarf2_cu *);
c906108c 1305
7d45c7c3
KB
1306static const char *dwarf2_string_attr (struct die_info *die, unsigned int name,
1307 struct dwarf2_cu *cu);
1308
a084a2a6
AT
1309static const char *dwarf2_dwo_name (struct die_info *die, struct dwarf2_cu *cu);
1310
05cf31d1
JB
1311static int dwarf2_flag_true_p (struct die_info *die, unsigned name,
1312 struct dwarf2_cu *cu);
1313
e142c38c 1314static int die_is_declaration (struct die_info *, struct dwarf2_cu *cu);
3ca72b44 1315
e142c38c 1316static struct die_info *die_specification (struct die_info *die,
f2f0e013 1317 struct dwarf2_cu **);
63d06c5c 1318
9c541725 1319static line_header_up dwarf_decode_line_header (sect_offset sect_off,
fff8551c 1320 struct dwarf2_cu *cu);
debd256d 1321
f3f5162e 1322static void dwarf_decode_lines (struct line_header *, const char *,
891813be 1323 struct dwarf2_cu *, dwarf2_psymtab *,
527f3840 1324 CORE_ADDR, int decode_mapping);
c906108c 1325
804d2729
TT
1326static void dwarf2_start_subfile (struct dwarf2_cu *, const char *,
1327 const char *);
c906108c 1328
a14ed312 1329static struct symbol *new_symbol (struct die_info *, struct type *,
5e2db402 1330 struct dwarf2_cu *, struct symbol * = NULL);
34eaf542 1331
ff39bb5e 1332static void dwarf2_const_value (const struct attribute *, struct symbol *,
e7c27a73 1333 struct dwarf2_cu *);
c906108c 1334
ff39bb5e 1335static void dwarf2_const_value_attr (const struct attribute *attr,
98bfdba5
PA
1336 struct type *type,
1337 const char *name,
1338 struct obstack *obstack,
12df843f 1339 struct dwarf2_cu *cu, LONGEST *value,
d521ce57 1340 const gdb_byte **bytes,
98bfdba5 1341 struct dwarf2_locexpr_baton **baton);
2df3850c 1342
e7c27a73 1343static struct type *die_type (struct die_info *, struct dwarf2_cu *);
c906108c 1344
b4ba55a1
JB
1345static int need_gnat_info (struct dwarf2_cu *);
1346
3e43a32a
MS
1347static struct type *die_descriptive_type (struct die_info *,
1348 struct dwarf2_cu *);
b4ba55a1
JB
1349
1350static void set_descriptive_type (struct type *, struct die_info *,
1351 struct dwarf2_cu *);
1352
e7c27a73
DJ
1353static struct type *die_containing_type (struct die_info *,
1354 struct dwarf2_cu *);
c906108c 1355
ff39bb5e 1356static struct type *lookup_die_type (struct die_info *, const struct attribute *,
673bfd45 1357 struct dwarf2_cu *);
c906108c 1358
f792889a 1359static struct type *read_type_die (struct die_info *, struct dwarf2_cu *);
c906108c 1360
673bfd45
DE
1361static struct type *read_type_die_1 (struct die_info *, struct dwarf2_cu *);
1362
0d5cff50 1363static const char *determine_prefix (struct die_info *die, struct dwarf2_cu *);
63d06c5c 1364
6e70227d 1365static char *typename_concat (struct obstack *obs, const char *prefix,
f55ee35c
JK
1366 const char *suffix, int physname,
1367 struct dwarf2_cu *cu);
63d06c5c 1368
e7c27a73 1369static void read_file_scope (struct die_info *, struct dwarf2_cu *);
c906108c 1370
348e048f
DE
1371static void read_type_unit_scope (struct die_info *, struct dwarf2_cu *);
1372
e7c27a73 1373static void read_func_scope (struct die_info *, struct dwarf2_cu *);
c906108c 1374
e7c27a73 1375static void read_lexical_block_scope (struct die_info *, struct dwarf2_cu *);
c906108c 1376
96408a79
SA
1377static void read_call_site_scope (struct die_info *die, struct dwarf2_cu *cu);
1378
71a3c369
TT
1379static void read_variable (struct die_info *die, struct dwarf2_cu *cu);
1380
ff013f42 1381static int dwarf2_ranges_read (unsigned, CORE_ADDR *, CORE_ADDR *,
891813be 1382 struct dwarf2_cu *, dwarf2_psymtab *);
ff013f42 1383
41144253 1384/* Return the .debug_loclists section to use for cu. */
1385static struct dwarf2_section_info *cu_debug_loc_section (struct dwarf2_cu *cu);
1386
3a2b436a 1387/* How dwarf2_get_pc_bounds constructed its *LOWPC and *HIGHPC return
e385593e 1388 values. Keep the items ordered with increasing constraints compliance. */
3a2b436a
JK
1389enum pc_bounds_kind
1390{
e385593e 1391 /* No attribute DW_AT_low_pc, DW_AT_high_pc or DW_AT_ranges was found. */
3a2b436a
JK
1392 PC_BOUNDS_NOT_PRESENT,
1393
e385593e
JK
1394 /* Some of the attributes DW_AT_low_pc, DW_AT_high_pc or DW_AT_ranges
1395 were present but they do not form a valid range of PC addresses. */
1396 PC_BOUNDS_INVALID,
1397
3a2b436a
JK
1398 /* Discontiguous range was found - that is DW_AT_ranges was found. */
1399 PC_BOUNDS_RANGES,
1400
1401 /* Contiguous range was found - DW_AT_low_pc and DW_AT_high_pc were found. */
1402 PC_BOUNDS_HIGH_LOW,
1403};
1404
1405static enum pc_bounds_kind dwarf2_get_pc_bounds (struct die_info *,
1406 CORE_ADDR *, CORE_ADDR *,
1407 struct dwarf2_cu *,
891813be 1408 dwarf2_psymtab *);
c906108c 1409
fae299cd
DC
1410static void get_scope_pc_bounds (struct die_info *,
1411 CORE_ADDR *, CORE_ADDR *,
1412 struct dwarf2_cu *);
1413
801e3a5b
JB
1414static void dwarf2_record_block_ranges (struct die_info *, struct block *,
1415 CORE_ADDR, struct dwarf2_cu *);
1416
a14ed312 1417static void dwarf2_add_field (struct field_info *, struct die_info *,
e7c27a73 1418 struct dwarf2_cu *);
c906108c 1419
a14ed312 1420static void dwarf2_attach_fields_to_type (struct field_info *,
e7c27a73 1421 struct type *, struct dwarf2_cu *);
c906108c 1422
a14ed312 1423static void dwarf2_add_member_fn (struct field_info *,
e26fb1d7 1424 struct die_info *, struct type *,
e7c27a73 1425 struct dwarf2_cu *);
c906108c 1426
a14ed312 1427static void dwarf2_attach_fn_fields_to_type (struct field_info *,
3e43a32a
MS
1428 struct type *,
1429 struct dwarf2_cu *);
c906108c 1430
134d01f1 1431static void process_structure_scope (struct die_info *, struct dwarf2_cu *);
c906108c 1432
e7c27a73 1433static void read_common_block (struct die_info *, struct dwarf2_cu *);
c906108c 1434
e7c27a73 1435static void read_namespace (struct die_info *die, struct dwarf2_cu *);
d9fa45fe 1436
5d7cb8df
JK
1437static void read_module (struct die_info *die, struct dwarf2_cu *cu);
1438
804d2729 1439static struct using_direct **using_directives (struct dwarf2_cu *cu);
22cee43f 1440
27aa8d6a
SW
1441static void read_import_statement (struct die_info *die, struct dwarf2_cu *);
1442
74921315
KS
1443static int read_namespace_alias (struct die_info *die, struct dwarf2_cu *cu);
1444
f55ee35c
JK
1445static struct type *read_module_type (struct die_info *die,
1446 struct dwarf2_cu *cu);
1447
38d518c9 1448static const char *namespace_name (struct die_info *die,
e142c38c 1449 int *is_anonymous, struct dwarf2_cu *);
38d518c9 1450
134d01f1 1451static void process_enumeration_scope (struct die_info *, struct dwarf2_cu *);
c906108c 1452
7d79de9a
TT
1453static CORE_ADDR decode_locdesc (struct dwarf_block *, struct dwarf2_cu *,
1454 bool * = nullptr);
c906108c 1455
6e70227d 1456static enum dwarf_array_dim_ordering read_array_order (struct die_info *,
7ca2d3a3
DL
1457 struct dwarf2_cu *);
1458
bf6af496 1459static struct die_info *read_die_and_siblings_1
d521ce57 1460 (const struct die_reader_specs *, const gdb_byte *, const gdb_byte **,
bf6af496 1461 struct die_info *);
639d11d3 1462
dee91e82 1463static struct die_info *read_die_and_siblings (const struct die_reader_specs *,
d521ce57
TT
1464 const gdb_byte *info_ptr,
1465 const gdb_byte **new_info_ptr,
639d11d3
DC
1466 struct die_info *parent);
1467
d521ce57
TT
1468static const gdb_byte *read_full_die_1 (const struct die_reader_specs *,
1469 struct die_info **, const gdb_byte *,
3e225074 1470 int);
3019eac3 1471
d521ce57 1472static const gdb_byte *read_full_die (const struct die_reader_specs *,
3e225074 1473 struct die_info **, const gdb_byte *);
93311388 1474
e7c27a73 1475static void process_die (struct die_info *, struct dwarf2_cu *);
c906108c 1476
15d034d0 1477static const char *dwarf2_canonicalize_name (const char *, struct dwarf2_cu *,
be1e3d3e 1478 struct objfile *);
71c25dea 1479
15d034d0 1480static const char *dwarf2_name (struct die_info *die, struct dwarf2_cu *);
9219021c 1481
15d034d0 1482static const char *dwarf2_full_name (const char *name,
98bfdba5
PA
1483 struct die_info *die,
1484 struct dwarf2_cu *cu);
1485
ca69b9e6
DE
1486static const char *dwarf2_physname (const char *name, struct die_info *die,
1487 struct dwarf2_cu *cu);
1488
e142c38c 1489static struct die_info *dwarf2_extension (struct die_info *die,
f2f0e013 1490 struct dwarf2_cu **);
9219021c 1491
d97bc12b
DE
1492static void dump_die_shallow (struct ui_file *, int indent, struct die_info *);
1493
1494static void dump_die_for_error (struct die_info *);
1495
1496static void dump_die_1 (struct ui_file *, int level, int max_level,
1497 struct die_info *);
c906108c 1498
d97bc12b 1499/*static*/ void dump_die (struct die_info *, int max_level);
c906108c 1500
51545339 1501static void store_in_ref_table (struct die_info *,
10b3939b 1502 struct dwarf2_cu *);
c906108c 1503
348e048f 1504static struct die_info *follow_die_ref_or_sig (struct die_info *,
ff39bb5e 1505 const struct attribute *,
348e048f
DE
1506 struct dwarf2_cu **);
1507
10b3939b 1508static struct die_info *follow_die_ref (struct die_info *,
ff39bb5e 1509 const struct attribute *,
f2f0e013 1510 struct dwarf2_cu **);
c906108c 1511
348e048f 1512static struct die_info *follow_die_sig (struct die_info *,
ff39bb5e 1513 const struct attribute *,
348e048f
DE
1514 struct dwarf2_cu **);
1515
ac9ec31b
DE
1516static struct type *get_signatured_type (struct die_info *, ULONGEST,
1517 struct dwarf2_cu *);
1518
1519static struct type *get_DW_AT_signature_type (struct die_info *,
ff39bb5e 1520 const struct attribute *,
ac9ec31b
DE
1521 struct dwarf2_cu *);
1522
ab432490
SM
1523static void load_full_type_unit (dwarf2_per_cu_data *per_cu,
1524 dwarf2_per_objfile *per_objfile);
348e048f 1525
ab432490
SM
1526static void read_signatured_type (signatured_type *sig_type,
1527 dwarf2_per_objfile *per_objfile);
348e048f 1528
63e43d3a
PMR
1529static int attr_to_dynamic_prop (const struct attribute *attr,
1530 struct die_info *die, struct dwarf2_cu *cu,
9a49df9d 1531 struct dynamic_prop *prop, struct type *type);
63e43d3a 1532
c906108c
SS
1533/* memory allocation interface */
1534
7b5a2f43 1535static struct dwarf_block *dwarf_alloc_block (struct dwarf2_cu *);
c906108c 1536
b60c80d6 1537static struct die_info *dwarf_alloc_die (struct dwarf2_cu *, int);
c906108c 1538
43f3e411 1539static void dwarf_decode_macros (struct dwarf2_cu *, unsigned int, int);
2e276125 1540
8cf6f0b1
TT
1541static void fill_in_loclist_baton (struct dwarf2_cu *cu,
1542 struct dwarf2_loclist_baton *baton,
ff39bb5e 1543 const struct attribute *attr);
8cf6f0b1 1544
ff39bb5e 1545static void dwarf2_symbol_mark_computed (const struct attribute *attr,
93e7bd98 1546 struct symbol *sym,
f1e6e072
TT
1547 struct dwarf2_cu *cu,
1548 int is_block);
4c2df51b 1549
d521ce57
TT
1550static const gdb_byte *skip_one_die (const struct die_reader_specs *reader,
1551 const gdb_byte *info_ptr,
1552 struct abbrev_info *abbrev);
4bb7a0a7 1553
72bf9492
DJ
1554static hashval_t partial_die_hash (const void *item);
1555
1556static int partial_die_eq (const void *item_lhs, const void *item_rhs);
1557
ae038cb0 1558static struct dwarf2_per_cu_data *dwarf2_find_containing_comp_unit
ed2dc618 1559 (sect_offset sect_off, unsigned int offset_in_dwz,
976ca316 1560 dwarf2_per_objfile *per_objfile);
ae038cb0 1561
9816fde3 1562static void prepare_one_comp_unit (struct dwarf2_cu *cu,
95554aad
TT
1563 struct die_info *comp_unit_die,
1564 enum language pretend_language);
93311388 1565
f792889a
DJ
1566static struct type *set_die_type (struct die_info *, struct type *,
1567 struct dwarf2_cu *);
1c379e20 1568
976ca316 1569static void create_all_comp_units (dwarf2_per_objfile *per_objfile);
ae038cb0 1570
976ca316 1571static int create_all_type_units (dwarf2_per_objfile *per_objfile);
1fd400ff 1572
ab432490
SM
1573static void load_full_comp_unit (dwarf2_per_cu_data *per_cu,
1574 dwarf2_per_objfile *per_objfile,
1575 bool skip_partial,
1576 enum language pretend_language);
10b3939b 1577
8fc0b21d 1578static void process_full_comp_unit (dwarf2_cu *cu,
47b14e86 1579 enum language pretend_language);
10b3939b 1580
8fc0b21d 1581static void process_full_type_unit (dwarf2_cu *cu,
47b14e86 1582 enum language pretend_language);
f4dc4d17 1583
10b3939b
DJ
1584static void dwarf2_add_dependence (struct dwarf2_cu *,
1585 struct dwarf2_per_cu_data *);
1586
ae038cb0
DJ
1587static void dwarf2_mark (struct dwarf2_cu *);
1588
b64f50a1 1589static struct type *get_die_type_at_offset (sect_offset,
aa66c379
SM
1590 dwarf2_per_cu_data *per_cu,
1591 dwarf2_per_objfile *per_objfile);
673bfd45 1592
f792889a 1593static struct type *get_die_type (struct die_info *die, struct dwarf2_cu *cu);
72019c9c 1594
120ce1b5
SM
1595static void queue_comp_unit (dwarf2_per_cu_data *per_cu,
1596 dwarf2_per_objfile *per_objfile,
95554aad
TT
1597 enum language pretend_language);
1598
976ca316 1599static void process_queue (dwarf2_per_objfile *per_objfile);
9291a0cd 1600
b303c6f6
AB
1601/* Class, the destructor of which frees all allocated queue entries. This
1602 will only have work to do if an error was thrown while processing the
1603 dwarf. If no error was thrown then the queue entries should have all
1604 been processed, and freed, as we went along. */
1605
1606class dwarf2_queue_guard
1607{
1608public:
39856def
TT
1609 explicit dwarf2_queue_guard (dwarf2_per_objfile *per_objfile)
1610 : m_per_objfile (per_objfile)
1611 {
1612 }
b303c6f6
AB
1613
1614 /* Free any entries remaining on the queue. There should only be
1615 entries left if we hit an error while processing the dwarf. */
1616 ~dwarf2_queue_guard ()
1617 {
39856def
TT
1618 /* Ensure that no memory is allocated by the queue. */
1619 std::queue<dwarf2_queue_item> empty;
5989a64e 1620 std::swap (m_per_objfile->per_bfd->queue, empty);
39856def 1621 }
b303c6f6 1622
39856def 1623 DISABLE_COPY_AND_ASSIGN (dwarf2_queue_guard);
b303c6f6 1624
39856def
TT
1625private:
1626 dwarf2_per_objfile *m_per_objfile;
b303c6f6
AB
1627};
1628
39856def
TT
1629dwarf2_queue_item::~dwarf2_queue_item ()
1630{
1631 /* Anything still marked queued is likely to be in an
1632 inconsistent state, so discard it. */
1633 if (per_cu->queued)
1634 {
7188ed02 1635 per_objfile->remove_cu (per_cu);
39856def
TT
1636 per_cu->queued = 0;
1637 }
1638}
1639
d721ba37
PA
1640/* The return type of find_file_and_directory. Note, the enclosed
1641 string pointers are only valid while this object is valid. */
1642
1643struct file_and_directory
1644{
1645 /* The filename. This is never NULL. */
1646 const char *name;
1647
1648 /* The compilation directory. NULL if not known. If we needed to
1649 compute a new string, this points to COMP_DIR_STORAGE, otherwise,
1650 points directly to the DW_AT_comp_dir string attribute owned by
1651 the obstack that owns the DIE. */
1652 const char *comp_dir;
1653
1654 /* If we needed to build a new string for comp_dir, this is what
1655 owns the storage. */
1656 std::string comp_dir_storage;
1657};
1658
1659static file_and_directory find_file_and_directory (struct die_info *die,
1660 struct dwarf2_cu *cu);
9291a0cd 1661
298e9637 1662static htab_up allocate_signatured_type_table ();
1fd400ff 1663
298e9637 1664static htab_up allocate_dwo_unit_table ();
3019eac3 1665
57d63ce2 1666static struct dwo_unit *lookup_dwo_unit_in_dwp
976ca316
SM
1667 (dwarf2_per_objfile *per_objfile, struct dwp_file *dwp_file,
1668 const char *comp_dir, ULONGEST signature, int is_debug_types);
a2ce51a0 1669
976ca316 1670static struct dwp_file *get_dwp_file (dwarf2_per_objfile *per_objfile);
a2ce51a0 1671
3019eac3 1672static struct dwo_unit *lookup_dwo_comp_unit
4ab09049
SM
1673 (dwarf2_cu *cu, const char *dwo_name, const char *comp_dir,
1674 ULONGEST signature);
3019eac3
DE
1675
1676static struct dwo_unit *lookup_dwo_type_unit
4ab09049 1677 (dwarf2_cu *cu, const char *dwo_name, const char *comp_dir);
3019eac3 1678
1b555f17 1679static void queue_and_load_all_dwo_tus (dwarf2_cu *cu);
89e63ee4 1680
263db9a1
TT
1681/* A unique pointer to a dwo_file. */
1682
51ac9db5 1683typedef std::unique_ptr<struct dwo_file> dwo_file_up;
263db9a1 1684
976ca316 1685static void process_cu_includes (dwarf2_per_objfile *per_objfile);
95554aad 1686
1b80a9fa 1687static void check_producer (struct dwarf2_cu *cu);
527f3840
JK
1688
1689static void free_line_header_voidp (void *arg);
4390d890
DE
1690\f
1691/* Various complaints about symbol reading that don't abort the process. */
1692
4390d890
DE
1693static void
1694dwarf2_debug_line_missing_file_complaint (void)
1695{
b98664d3 1696 complaint (_(".debug_line section has line data without a file"));
4390d890
DE
1697}
1698
1699static void
1700dwarf2_debug_line_missing_end_sequence_complaint (void)
1701{
b98664d3 1702 complaint (_(".debug_line section has line "
4390d890
DE
1703 "program sequence without an end"));
1704}
1705
1706static void
1707dwarf2_complex_location_expr_complaint (void)
1708{
b98664d3 1709 complaint (_("location expression too complex"));
4390d890
DE
1710}
1711
1712static void
1713dwarf2_const_value_length_mismatch_complaint (const char *arg1, int arg2,
1714 int arg3)
1715{
b98664d3 1716 complaint (_("const value length mismatch for '%s', got %d, expected %d"),
4390d890
DE
1717 arg1, arg2, arg3);
1718}
1719
4390d890
DE
1720static void
1721dwarf2_invalid_attrib_class_complaint (const char *arg1, const char *arg2)
1722{
b98664d3 1723 complaint (_("invalid attribute class or form for '%s' in '%s'"),
4390d890
DE
1724 arg1, arg2);
1725}
527f3840
JK
1726
1727/* Hash function for line_header_hash. */
1728
1729static hashval_t
1730line_header_hash (const struct line_header *ofs)
1731{
9c541725 1732 return to_underlying (ofs->sect_off) ^ ofs->offset_in_dwz;
527f3840
JK
1733}
1734
1735/* Hash function for htab_create_alloc_ex for line_header_hash. */
1736
1737static hashval_t
1738line_header_hash_voidp (const void *item)
1739{
9a3c8263 1740 const struct line_header *ofs = (const struct line_header *) item;
527f3840
JK
1741
1742 return line_header_hash (ofs);
1743}
1744
1745/* Equality function for line_header_hash. */
1746
1747static int
1748line_header_eq_voidp (const void *item_lhs, const void *item_rhs)
1749{
9a3c8263
SM
1750 const struct line_header *ofs_lhs = (const struct line_header *) item_lhs;
1751 const struct line_header *ofs_rhs = (const struct line_header *) item_rhs;
527f3840 1752
9c541725 1753 return (ofs_lhs->sect_off == ofs_rhs->sect_off
527f3840
JK
1754 && ofs_lhs->offset_in_dwz == ofs_rhs->offset_in_dwz);
1755}
1756
4390d890 1757\f
9291a0cd 1758
330cdd98
PA
1759/* See declaration. */
1760
5989a64e
SM
1761dwarf2_per_bfd::dwarf2_per_bfd (bfd *obfd, const dwarf2_debug_sections *names,
1762 bool can_copy_)
c3699833
SM
1763 : obfd (obfd),
1764 can_copy (can_copy_)
330cdd98
PA
1765{
1766 if (names == NULL)
1767 names = &dwarf2_elf_names;
1768
330cdd98
PA
1769 for (asection *sec = obfd->sections; sec != NULL; sec = sec->next)
1770 locate_sections (obfd, sec, *names);
1771}
1772
5989a64e 1773dwarf2_per_bfd::~dwarf2_per_bfd ()
330cdd98 1774{
b76e467d 1775 for (dwarf2_per_cu_data *per_cu : all_comp_units)
ae640021 1776 per_cu->imported_symtabs_free ();
fc8e7e75 1777
b2bdb8cf 1778 for (signatured_type *sig_type : all_type_units)
ae640021 1779 sig_type->per_cu.imported_symtabs_free ();
fc8e7e75 1780
5989a64e 1781 /* Everything else should be on this->obstack. */
330cdd98
PA
1782}
1783
7188ed02 1784/* See read.h. */
330cdd98
PA
1785
1786void
7188ed02 1787dwarf2_per_objfile::remove_all_cus ()
330cdd98 1788{
7188ed02
SM
1789 for (auto pair : m_dwarf2_cus)
1790 delete pair.second;
330cdd98 1791
7188ed02 1792 m_dwarf2_cus.clear ();
330cdd98
PA
1793}
1794
11ed8cad
TT
1795/* A helper class that calls free_cached_comp_units on
1796 destruction. */
1797
1798class free_cached_comp_units
1799{
1800public:
1801
1802 explicit free_cached_comp_units (dwarf2_per_objfile *per_objfile)
1803 : m_per_objfile (per_objfile)
1804 {
1805 }
1806
1807 ~free_cached_comp_units ()
1808 {
7188ed02 1809 m_per_objfile->remove_all_cus ();
11ed8cad
TT
1810 }
1811
1812 DISABLE_COPY_AND_ASSIGN (free_cached_comp_units);
1813
1814private:
1815
1816 dwarf2_per_objfile *m_per_objfile;
1817};
1818
af758d11
SM
1819/* See read.h. */
1820
1821bool
1822dwarf2_per_objfile::symtab_set_p (const dwarf2_per_cu_data *per_cu) const
1823{
1824 gdb_assert (per_cu->index < this->m_symtabs.size ());
1825
1826 return this->m_symtabs[per_cu->index] != nullptr;
1827}
1828
1829/* See read.h. */
1830
1831compunit_symtab *
1832dwarf2_per_objfile::get_symtab (const dwarf2_per_cu_data *per_cu) const
1833{
1834 gdb_assert (per_cu->index < this->m_symtabs.size ());
1835
1836 return this->m_symtabs[per_cu->index];
1837}
1838
1839/* See read.h. */
1840
1841void
1842dwarf2_per_objfile::set_symtab (const dwarf2_per_cu_data *per_cu,
1843 compunit_symtab *symtab)
1844{
1845 gdb_assert (per_cu->index < this->m_symtabs.size ());
1846 gdb_assert (this->m_symtabs[per_cu->index] == nullptr);
1847
1848 this->m_symtabs[per_cu->index] = symtab;
1849}
1850
c906108c 1851/* Try to locate the sections we need for DWARF 2 debugging
251d32d9
TG
1852 information and return true if we have enough to do something.
1853 NAMES points to the dwarf2 section names, or is NULL if the standard
4b610737
TT
1854 ELF names are used. CAN_COPY is true for formats where symbol
1855 interposition is possible and so symbol values must follow copy
1856 relocation rules. */
c906108c
SS
1857
1858int
251d32d9 1859dwarf2_has_info (struct objfile *objfile,
4b610737
TT
1860 const struct dwarf2_debug_sections *names,
1861 bool can_copy)
c906108c 1862{
97cbe998
SDJ
1863 if (objfile->flags & OBJF_READNEVER)
1864 return 0;
1865
976ca316 1866 dwarf2_per_objfile *per_objfile = get_dwarf2_per_objfile (objfile);
ed2dc618 1867
976ca316 1868 if (per_objfile == NULL)
5989a64e 1869 {
17ee85fc
TT
1870 dwarf2_per_bfd *per_bfd;
1871
1872 /* We can share a "dwarf2_per_bfd" with other objfiles if the BFD
1873 doesn't require relocations and if there aren't partial symbols
1874 from some other reader. */
1875 if (!objfile_has_partial_symbols (objfile)
1876 && !gdb_bfd_requires_relocations (objfile->obfd))
1877 {
1878 /* See if one has been created for this BFD yet. */
1879 per_bfd = dwarf2_per_bfd_bfd_data_key.get (objfile->obfd);
1880
1881 if (per_bfd == nullptr)
1882 {
1883 /* No, create it now. */
1884 per_bfd = new dwarf2_per_bfd (objfile->obfd, names, can_copy);
1885 dwarf2_per_bfd_bfd_data_key.set (objfile->obfd, per_bfd);
1886 }
1887 }
1888 else
1889 {
1890 /* No sharing possible, create one specifically for this objfile. */
1891 per_bfd = new dwarf2_per_bfd (objfile->obfd, names, can_copy);
1892 dwarf2_per_bfd_objfile_data_key.set (objfile, per_bfd);
1893 }
5989a64e 1894
976ca316 1895 per_objfile = dwarf2_objfile_data_key.emplace (objfile, objfile, per_bfd);
5989a64e 1896 }
5bfd760d 1897
976ca316
SM
1898 return (!per_objfile->per_bfd->info.is_virtual
1899 && per_objfile->per_bfd->info.s.section != NULL
1900 && !per_objfile->per_bfd->abbrev.is_virtual
1901 && per_objfile->per_bfd->abbrev.s.section != NULL);
73869dc2
DE
1902}
1903
251d32d9
TG
1904/* When loading sections, we look either for uncompressed section or for
1905 compressed section names. */
233a11ab
CS
1906
1907static int
251d32d9
TG
1908section_is_p (const char *section_name,
1909 const struct dwarf2_section_names *names)
233a11ab 1910{
251d32d9
TG
1911 if (names->normal != NULL
1912 && strcmp (section_name, names->normal) == 0)
1913 return 1;
1914 if (names->compressed != NULL
1915 && strcmp (section_name, names->compressed) == 0)
1916 return 1;
1917 return 0;
233a11ab
CS
1918}
1919
330cdd98 1920/* See declaration. */
c906108c 1921
330cdd98 1922void
5989a64e
SM
1923dwarf2_per_bfd::locate_sections (bfd *abfd, asection *sectp,
1924 const dwarf2_debug_sections &names)
c906108c 1925{
fd361982 1926 flagword aflag = bfd_section_flags (sectp);
251d32d9 1927
dc7650b8
JK
1928 if ((aflag & SEC_HAS_CONTENTS) == 0)
1929 {
1930 }
950b7495
KS
1931 else if (elf_section_data (sectp)->this_hdr.sh_size
1932 > bfd_get_file_size (abfd))
1933 {
1934 bfd_size_type size = elf_section_data (sectp)->this_hdr.sh_size;
1935 warning (_("Discarding section %s which has a section size (%s"
1936 ") larger than the file size [in module %s]"),
1937 bfd_section_name (sectp), phex_nz (size, sizeof (size)),
1938 bfd_get_filename (abfd));
1939 }
330cdd98 1940 else if (section_is_p (sectp->name, &names.info))
c906108c 1941 {
330cdd98 1942 this->info.s.section = sectp;
fd361982 1943 this->info.size = bfd_section_size (sectp);
c906108c 1944 }
330cdd98 1945 else if (section_is_p (sectp->name, &names.abbrev))
c906108c 1946 {
330cdd98 1947 this->abbrev.s.section = sectp;
fd361982 1948 this->abbrev.size = bfd_section_size (sectp);
c906108c 1949 }
330cdd98 1950 else if (section_is_p (sectp->name, &names.line))
c906108c 1951 {
330cdd98 1952 this->line.s.section = sectp;
fd361982 1953 this->line.size = bfd_section_size (sectp);
c906108c 1954 }
330cdd98 1955 else if (section_is_p (sectp->name, &names.loc))
c906108c 1956 {
330cdd98 1957 this->loc.s.section = sectp;
fd361982 1958 this->loc.size = bfd_section_size (sectp);
c906108c 1959 }
330cdd98 1960 else if (section_is_p (sectp->name, &names.loclists))
43988095 1961 {
330cdd98 1962 this->loclists.s.section = sectp;
fd361982 1963 this->loclists.size = bfd_section_size (sectp);
43988095 1964 }
330cdd98 1965 else if (section_is_p (sectp->name, &names.macinfo))
c906108c 1966 {
330cdd98 1967 this->macinfo.s.section = sectp;
fd361982 1968 this->macinfo.size = bfd_section_size (sectp);
c906108c 1969 }
330cdd98 1970 else if (section_is_p (sectp->name, &names.macro))
cf2c3c16 1971 {
330cdd98 1972 this->macro.s.section = sectp;
fd361982 1973 this->macro.size = bfd_section_size (sectp);
cf2c3c16 1974 }
330cdd98 1975 else if (section_is_p (sectp->name, &names.str))
c906108c 1976 {
330cdd98 1977 this->str.s.section = sectp;
fd361982 1978 this->str.size = bfd_section_size (sectp);
c906108c 1979 }
18a8505e
AT
1980 else if (section_is_p (sectp->name, &names.str_offsets))
1981 {
1982 this->str_offsets.s.section = sectp;
1983 this->str_offsets.size = bfd_section_size (sectp);
1984 }
330cdd98 1985 else if (section_is_p (sectp->name, &names.line_str))
43988095 1986 {
330cdd98 1987 this->line_str.s.section = sectp;
fd361982 1988 this->line_str.size = bfd_section_size (sectp);
43988095 1989 }
330cdd98 1990 else if (section_is_p (sectp->name, &names.addr))
3019eac3 1991 {
330cdd98 1992 this->addr.s.section = sectp;
fd361982 1993 this->addr.size = bfd_section_size (sectp);
3019eac3 1994 }
330cdd98 1995 else if (section_is_p (sectp->name, &names.frame))
b6af0555 1996 {
330cdd98 1997 this->frame.s.section = sectp;
fd361982 1998 this->frame.size = bfd_section_size (sectp);
b6af0555 1999 }
330cdd98 2000 else if (section_is_p (sectp->name, &names.eh_frame))
b6af0555 2001 {
330cdd98 2002 this->eh_frame.s.section = sectp;
fd361982 2003 this->eh_frame.size = bfd_section_size (sectp);
b6af0555 2004 }
330cdd98 2005 else if (section_is_p (sectp->name, &names.ranges))
af34e669 2006 {
330cdd98 2007 this->ranges.s.section = sectp;
fd361982 2008 this->ranges.size = bfd_section_size (sectp);
af34e669 2009 }
330cdd98 2010 else if (section_is_p (sectp->name, &names.rnglists))
43988095 2011 {
330cdd98 2012 this->rnglists.s.section = sectp;
fd361982 2013 this->rnglists.size = bfd_section_size (sectp);
43988095 2014 }
330cdd98 2015 else if (section_is_p (sectp->name, &names.types))
348e048f 2016 {
8b70b953
TT
2017 struct dwarf2_section_info type_section;
2018
2019 memset (&type_section, 0, sizeof (type_section));
049412e3 2020 type_section.s.section = sectp;
fd361982 2021 type_section.size = bfd_section_size (sectp);
8b70b953 2022
fd5866f6 2023 this->types.push_back (type_section);
348e048f 2024 }
330cdd98 2025 else if (section_is_p (sectp->name, &names.gdb_index))
9291a0cd 2026 {
330cdd98 2027 this->gdb_index.s.section = sectp;
fd361982 2028 this->gdb_index.size = bfd_section_size (sectp);
9291a0cd 2029 }
927aa2e7
JK
2030 else if (section_is_p (sectp->name, &names.debug_names))
2031 {
2032 this->debug_names.s.section = sectp;
fd361982 2033 this->debug_names.size = bfd_section_size (sectp);
927aa2e7
JK
2034 }
2035 else if (section_is_p (sectp->name, &names.debug_aranges))
2036 {
2037 this->debug_aranges.s.section = sectp;
fd361982 2038 this->debug_aranges.size = bfd_section_size (sectp);
927aa2e7 2039 }
dce234bc 2040
fd361982
AM
2041 if ((bfd_section_flags (sectp) & (SEC_LOAD | SEC_ALLOC))
2042 && bfd_section_vma (sectp) == 0)
330cdd98 2043 this->has_section_at_zero = true;
c906108c
SS
2044}
2045
dce234bc 2046/* Fill in SECTP, BUFP and SIZEP with section info, given OBJFILE and
0963b4bd 2047 SECTION_NAME. */
af34e669 2048
dce234bc 2049void
3017a003
TG
2050dwarf2_get_section_info (struct objfile *objfile,
2051 enum dwarf2_section_enum sect,
d521ce57 2052 asection **sectp, const gdb_byte **bufp,
dce234bc
PP
2053 bfd_size_type *sizep)
2054{
976ca316 2055 dwarf2_per_objfile *per_objfile = get_dwarf2_per_objfile (objfile);
dce234bc 2056 struct dwarf2_section_info *info;
a3b2a86b
TT
2057
2058 /* We may see an objfile without any DWARF, in which case we just
2059 return nothing. */
976ca316 2060 if (per_objfile == NULL)
a3b2a86b
TT
2061 {
2062 *sectp = NULL;
2063 *bufp = NULL;
2064 *sizep = 0;
2065 return;
2066 }
3017a003
TG
2067 switch (sect)
2068 {
2069 case DWARF2_DEBUG_FRAME:
976ca316 2070 info = &per_objfile->per_bfd->frame;
3017a003
TG
2071 break;
2072 case DWARF2_EH_FRAME:
976ca316 2073 info = &per_objfile->per_bfd->eh_frame;
3017a003
TG
2074 break;
2075 default:
2076 gdb_assert_not_reached ("unexpected section");
2077 }
dce234bc 2078
96b79293 2079 info->read (objfile);
dce234bc 2080
96b79293 2081 *sectp = info->get_bfd_section ();
dce234bc
PP
2082 *bufp = info->buffer;
2083 *sizep = info->size;
2084}
2085
36586728
TT
2086/* A helper function to find the sections for a .dwz file. */
2087
2088static void
2089locate_dwz_sections (bfd *abfd, asection *sectp, void *arg)
2090{
9a3c8263 2091 struct dwz_file *dwz_file = (struct dwz_file *) arg;
36586728
TT
2092
2093 /* Note that we only support the standard ELF names, because .dwz
2094 is ELF-only (at the time of writing). */
2095 if (section_is_p (sectp->name, &dwarf2_elf_names.abbrev))
2096 {
049412e3 2097 dwz_file->abbrev.s.section = sectp;
fd361982 2098 dwz_file->abbrev.size = bfd_section_size (sectp);
36586728
TT
2099 }
2100 else if (section_is_p (sectp->name, &dwarf2_elf_names.info))
2101 {
049412e3 2102 dwz_file->info.s.section = sectp;
fd361982 2103 dwz_file->info.size = bfd_section_size (sectp);
36586728
TT
2104 }
2105 else if (section_is_p (sectp->name, &dwarf2_elf_names.str))
2106 {
049412e3 2107 dwz_file->str.s.section = sectp;
fd361982 2108 dwz_file->str.size = bfd_section_size (sectp);
36586728
TT
2109 }
2110 else if (section_is_p (sectp->name, &dwarf2_elf_names.line))
2111 {
049412e3 2112 dwz_file->line.s.section = sectp;
fd361982 2113 dwz_file->line.size = bfd_section_size (sectp);
36586728
TT
2114 }
2115 else if (section_is_p (sectp->name, &dwarf2_elf_names.macro))
2116 {
049412e3 2117 dwz_file->macro.s.section = sectp;
fd361982 2118 dwz_file->macro.size = bfd_section_size (sectp);
36586728 2119 }
2ec9a5e0
TT
2120 else if (section_is_p (sectp->name, &dwarf2_elf_names.gdb_index))
2121 {
049412e3 2122 dwz_file->gdb_index.s.section = sectp;
fd361982 2123 dwz_file->gdb_index.size = bfd_section_size (sectp);
2ec9a5e0 2124 }
927aa2e7
JK
2125 else if (section_is_p (sectp->name, &dwarf2_elf_names.debug_names))
2126 {
2127 dwz_file->debug_names.s.section = sectp;
fd361982 2128 dwz_file->debug_names.size = bfd_section_size (sectp);
927aa2e7 2129 }
36586728
TT
2130}
2131
c4973306 2132/* See dwarf2read.h. */
36586728 2133
c4973306 2134struct dwz_file *
c3699833 2135dwarf2_get_dwz_file (dwarf2_per_bfd *per_bfd)
36586728 2136{
36586728 2137 const char *filename;
acd13123 2138 bfd_size_type buildid_len_arg;
dc294be5
TT
2139 size_t buildid_len;
2140 bfd_byte *buildid;
36586728 2141
c3699833
SM
2142 if (per_bfd->dwz_file != NULL)
2143 return per_bfd->dwz_file.get ();
36586728 2144
4db1a1dc 2145 bfd_set_error (bfd_error_no_error);
791afaa2 2146 gdb::unique_xmalloc_ptr<char> data
c3699833 2147 (bfd_get_alt_debug_link_info (per_bfd->obfd,
791afaa2 2148 &buildid_len_arg, &buildid));
4db1a1dc
TT
2149 if (data == NULL)
2150 {
2151 if (bfd_get_error () == bfd_error_no_error)
2152 return NULL;
2153 error (_("could not read '.gnu_debugaltlink' section: %s"),
2154 bfd_errmsg (bfd_get_error ()));
2155 }
791afaa2
TT
2156
2157 gdb::unique_xmalloc_ptr<bfd_byte> buildid_holder (buildid);
36586728 2158
acd13123
TT
2159 buildid_len = (size_t) buildid_len_arg;
2160
791afaa2 2161 filename = data.get ();
d721ba37
PA
2162
2163 std::string abs_storage;
36586728
TT
2164 if (!IS_ABSOLUTE_PATH (filename))
2165 {
14278e1f 2166 gdb::unique_xmalloc_ptr<char> abs
c3699833 2167 = gdb_realpath (bfd_get_filename (per_bfd->obfd));
36586728 2168
14278e1f 2169 abs_storage = ldirname (abs.get ()) + SLASH_STRING + filename;
d721ba37 2170 filename = abs_storage.c_str ();
36586728
TT
2171 }
2172
dc294be5
TT
2173 /* First try the file name given in the section. If that doesn't
2174 work, try to use the build-id instead. */
ad80db5b 2175 gdb_bfd_ref_ptr dwz_bfd (gdb_bfd_open (filename, gnutarget));
dc294be5 2176 if (dwz_bfd != NULL)
36586728 2177 {
192b62ce 2178 if (!build_id_verify (dwz_bfd.get (), buildid_len, buildid))
0f58c9e8 2179 dwz_bfd.reset (nullptr);
36586728
TT
2180 }
2181
dc294be5
TT
2182 if (dwz_bfd == NULL)
2183 dwz_bfd = build_id_to_debug_bfd (buildid_len, buildid);
2184
0d79cdc4
AM
2185 if (dwz_bfd == nullptr)
2186 {
2187 gdb::unique_xmalloc_ptr<char> alt_filename;
c3699833 2188 const char *origname = bfd_get_filename (per_bfd->obfd);
0d79cdc4
AM
2189
2190 scoped_fd fd (debuginfod_debuginfo_query (buildid,
2191 buildid_len,
2192 origname,
2193 &alt_filename));
2194
2195 if (fd.get () >= 0)
2196 {
2197 /* File successfully retrieved from server. */
ad80db5b 2198 dwz_bfd = gdb_bfd_open (alt_filename.get (), gnutarget);
0d79cdc4
AM
2199
2200 if (dwz_bfd == nullptr)
2201 warning (_("File \"%s\" from debuginfod cannot be opened as bfd"),
2202 alt_filename.get ());
2203 else if (!build_id_verify (dwz_bfd.get (), buildid_len, buildid))
2204 dwz_bfd.reset (nullptr);
2205 }
2206 }
2207
dc294be5
TT
2208 if (dwz_bfd == NULL)
2209 error (_("could not find '.gnu_debugaltlink' file for %s"),
c3699833 2210 bfd_get_filename (per_bfd->obfd));
dc294be5 2211
7ff8cb8c
TT
2212 std::unique_ptr<struct dwz_file> result
2213 (new struct dwz_file (std::move (dwz_bfd)));
36586728 2214
7ff8cb8c
TT
2215 bfd_map_over_sections (result->dwz_bfd.get (), locate_dwz_sections,
2216 result.get ());
36586728 2217
c3699833
SM
2218 gdb_bfd_record_inclusion (per_bfd->obfd, result->dwz_bfd.get ());
2219 per_bfd->dwz_file = std::move (result);
2220 return per_bfd->dwz_file.get ();
36586728 2221}
9291a0cd 2222\f
7b9f3c50
DE
2223/* DWARF quick_symbols_functions support. */
2224
2225/* TUs can share .debug_line entries, and there can be a lot more TUs than
2226 unique line tables, so we maintain a separate table of all .debug_line
2227 derived entries to support the sharing.
2228 All the quick functions need is the list of file names. We discard the
2229 line_header when we're done and don't need to record it here. */
2230struct quick_file_names
2231{
094b34ac
DE
2232 /* The data used to construct the hash key. */
2233 struct stmt_list_hash hash;
7b9f3c50
DE
2234
2235 /* The number of entries in file_names, real_names. */
2236 unsigned int num_file_names;
2237
2238 /* The file names from the line table, after being run through
2239 file_full_name. */
2240 const char **file_names;
2241
2242 /* The file names from the line table after being run through
2243 gdb_realpath. These are computed lazily. */
2244 const char **real_names;
2245};
2246
2247/* When using the index (and thus not using psymtabs), each CU has an
2248 object of this type. This is used to hold information needed by
2249 the various "quick" methods. */
2250struct dwarf2_per_cu_quick_data
2251{
2252 /* The file table. This can be NULL if there was no file table
2253 or it's currently not read in.
5989a64e 2254 NOTE: This points into dwarf2_per_objfile->per_bfd->quick_file_names_table. */
7b9f3c50
DE
2255 struct quick_file_names *file_names;
2256
7b9f3c50
DE
2257 /* A temporary mark bit used when iterating over all CUs in
2258 expand_symtabs_matching. */
2259 unsigned int mark : 1;
2260
2261 /* True if we've tried to read the file table and found there isn't one.
2262 There will be no point in trying to read it again next time. */
2263 unsigned int no_file_data : 1;
2264};
2265
094b34ac
DE
2266/* Utility hash function for a stmt_list_hash. */
2267
2268static hashval_t
2269hash_stmt_list_entry (const struct stmt_list_hash *stmt_list_hash)
2270{
2271 hashval_t v = 0;
2272
2273 if (stmt_list_hash->dwo_unit != NULL)
2274 v += (uintptr_t) stmt_list_hash->dwo_unit->dwo_file;
9c541725 2275 v += to_underlying (stmt_list_hash->line_sect_off);
094b34ac
DE
2276 return v;
2277}
2278
2279/* Utility equality function for a stmt_list_hash. */
2280
2281static int
2282eq_stmt_list_entry (const struct stmt_list_hash *lhs,
2283 const struct stmt_list_hash *rhs)
2284{
2285 if ((lhs->dwo_unit != NULL) != (rhs->dwo_unit != NULL))
2286 return 0;
2287 if (lhs->dwo_unit != NULL
2288 && lhs->dwo_unit->dwo_file != rhs->dwo_unit->dwo_file)
2289 return 0;
2290
9c541725 2291 return lhs->line_sect_off == rhs->line_sect_off;
094b34ac
DE
2292}
2293
7b9f3c50
DE
2294/* Hash function for a quick_file_names. */
2295
2296static hashval_t
2297hash_file_name_entry (const void *e)
2298{
9a3c8263
SM
2299 const struct quick_file_names *file_data
2300 = (const struct quick_file_names *) e;
7b9f3c50 2301
094b34ac 2302 return hash_stmt_list_entry (&file_data->hash);
7b9f3c50
DE
2303}
2304
2305/* Equality function for a quick_file_names. */
2306
2307static int
2308eq_file_name_entry (const void *a, const void *b)
2309{
9a3c8263
SM
2310 const struct quick_file_names *ea = (const struct quick_file_names *) a;
2311 const struct quick_file_names *eb = (const struct quick_file_names *) b;
7b9f3c50 2312
094b34ac 2313 return eq_stmt_list_entry (&ea->hash, &eb->hash);
7b9f3c50
DE
2314}
2315
2316/* Delete function for a quick_file_names. */
2317
2318static void
2319delete_file_name_entry (void *e)
2320{
9a3c8263 2321 struct quick_file_names *file_data = (struct quick_file_names *) e;
7b9f3c50
DE
2322 int i;
2323
2324 for (i = 0; i < file_data->num_file_names; ++i)
2325 {
2326 xfree ((void*) file_data->file_names[i]);
2327 if (file_data->real_names)
2328 xfree ((void*) file_data->real_names[i]);
2329 }
2330
45940949
TT
2331 /* The space for the struct itself lives on the obstack, so we don't
2332 free it here. */
7b9f3c50
DE
2333}
2334
2335/* Create a quick_file_names hash table. */
2336
5895093f 2337static htab_up
7b9f3c50
DE
2338create_quick_file_names_table (unsigned int nr_initial_entries)
2339{
5895093f
TT
2340 return htab_up (htab_create_alloc (nr_initial_entries,
2341 hash_file_name_entry, eq_file_name_entry,
2342 delete_file_name_entry, xcalloc, xfree));
7b9f3c50 2343}
9291a0cd 2344
ab432490
SM
2345/* Read in CU (dwarf2_cu object) for PER_CU in the context of PER_OBJFILE. This
2346 function is unrelated to symtabs, symtab would have to be created afterwards.
2347 You should call age_cached_comp_units after processing the CU. */
918dd910 2348
1b555f17 2349static dwarf2_cu *
ab432490
SM
2350load_cu (dwarf2_per_cu_data *per_cu, dwarf2_per_objfile *per_objfile,
2351 bool skip_partial)
918dd910 2352{
3019eac3 2353 if (per_cu->is_debug_types)
ab432490 2354 load_full_type_unit (per_cu, per_objfile);
918dd910 2355 else
ab432490 2356 load_full_comp_unit (per_cu, per_objfile, skip_partial, language_minimal);
918dd910 2357
7188ed02
SM
2358 dwarf2_cu *cu = per_objfile->get_cu (per_cu);
2359 if (cu == nullptr)
1b555f17 2360 return nullptr; /* Dummy CU. */
2dc860c0 2361
7188ed02 2362 dwarf2_find_base_address (cu->dies, cu);
1b555f17 2363
7188ed02 2364 return cu;
918dd910
JK
2365}
2366
97a1449a 2367/* Read in the symbols for PER_CU in the context of DWARF"_PER_OBJFILE. */
2fdf6df6 2368
9291a0cd 2369static void
97a1449a 2370dw2_do_instantiate_symtab (dwarf2_per_cu_data *per_cu,
976ca316 2371 dwarf2_per_objfile *per_objfile, bool skip_partial)
9291a0cd 2372{
f4dc4d17
DE
2373 /* Skip type_unit_groups, reading the type units they contain
2374 is handled elsewhere. */
197400e8 2375 if (per_cu->type_unit_group_p ())
f4dc4d17
DE
2376 return;
2377
b303c6f6
AB
2378 /* The destructor of dwarf2_queue_guard frees any entries left on
2379 the queue. After this point we're guaranteed to leave this function
2380 with the dwarf queue empty. */
39856def 2381 dwarf2_queue_guard q_guard (dwarf2_per_objfile);
9291a0cd 2382
976ca316 2383 if (!per_objfile->symtab_set_p (per_cu))
95554aad 2384 {
976ca316
SM
2385 queue_comp_unit (per_cu, per_objfile, language_minimal);
2386 dwarf2_cu *cu = load_cu (per_cu, per_objfile, skip_partial);
89e63ee4
DE
2387
2388 /* If we just loaded a CU from a DWO, and we're working with an index
2389 that may badly handle TUs, load all the TUs in that DWO as well.
2390 http://sourceware.org/bugzilla/show_bug.cgi?id=15021 */
2391 if (!per_cu->is_debug_types
1b555f17
SM
2392 && cu != NULL
2393 && cu->dwo_unit != NULL
976ca316
SM
2394 && per_objfile->per_bfd->index_table != NULL
2395 && per_objfile->per_bfd->index_table->version <= 7
89e63ee4 2396 /* DWP files aren't supported yet. */
976ca316 2397 && get_dwp_file (per_objfile) == NULL)
1b555f17 2398 queue_and_load_all_dwo_tus (cu);
95554aad 2399 }
9291a0cd 2400
976ca316 2401 process_queue (per_objfile);
9291a0cd
TT
2402
2403 /* Age the cache, releasing compilation units that have not
2404 been used recently. */
976ca316 2405 per_objfile->age_comp_units ();
9291a0cd
TT
2406}
2407
97a1449a
SM
2408/* Ensure that the symbols for PER_CU have been read in. DWARF2_PER_OBJFILE is
2409 the per-objfile for which this symtab is instantiated.
2410
2411 Returns the resulting symbol table. */
2fdf6df6 2412
43f3e411 2413static struct compunit_symtab *
97a1449a 2414dw2_instantiate_symtab (dwarf2_per_cu_data *per_cu,
976ca316 2415 dwarf2_per_objfile *per_objfile,
97a1449a 2416 bool skip_partial)
9291a0cd 2417{
976ca316 2418 gdb_assert (per_objfile->per_bfd->using_index);
af758d11 2419
976ca316 2420 if (!per_objfile->symtab_set_p (per_cu))
9291a0cd 2421 {
976ca316 2422 free_cached_comp_units freer (per_objfile);
c83dd867 2423 scoped_restore decrementer = increment_reading_symtab ();
976ca316
SM
2424 dw2_do_instantiate_symtab (per_cu, per_objfile, skip_partial);
2425 process_cu_includes (per_objfile);
9291a0cd 2426 }
f194fefb 2427
976ca316 2428 return per_objfile->get_symtab (per_cu);
9291a0cd
TT
2429}
2430
ff4c9fec 2431/* See declaration. */
f4dc4d17 2432
ff4c9fec 2433dwarf2_per_cu_data *
5989a64e 2434dwarf2_per_bfd::get_cutu (int index)
ff4c9fec 2435{
b76e467d 2436 if (index >= this->all_comp_units.size ())
ff4c9fec 2437 {
b76e467d 2438 index -= this->all_comp_units.size ();
b2bdb8cf 2439 gdb_assert (index < this->all_type_units.size ());
ff4c9fec
SM
2440 return &this->all_type_units[index]->per_cu;
2441 }
f4dc4d17 2442
ff4c9fec
SM
2443 return this->all_comp_units[index];
2444}
f4dc4d17 2445
ff4c9fec 2446/* See declaration. */
2fdf6df6 2447
ff4c9fec 2448dwarf2_per_cu_data *
5989a64e 2449dwarf2_per_bfd::get_cu (int index)
1fd400ff 2450{
b76e467d 2451 gdb_assert (index >= 0 && index < this->all_comp_units.size ());
f4dc4d17 2452
ff4c9fec 2453 return this->all_comp_units[index];
f4dc4d17
DE
2454}
2455
ff4c9fec 2456/* See declaration. */
f4dc4d17 2457
ff4c9fec 2458signatured_type *
5989a64e 2459dwarf2_per_bfd::get_tu (int index)
f4dc4d17 2460{
b2bdb8cf 2461 gdb_assert (index >= 0 && index < this->all_type_units.size ());
f4dc4d17 2462
ff4c9fec 2463 return this->all_type_units[index];
1fd400ff
TT
2464}
2465
d3473f0c
TT
2466/* See read.h. */
2467
2468dwarf2_per_cu_data *
5989a64e 2469dwarf2_per_bfd::allocate_per_cu ()
d3473f0c
TT
2470{
2471 dwarf2_per_cu_data *result = OBSTACK_ZALLOC (&obstack, dwarf2_per_cu_data);
1859c670 2472 result->per_bfd = this;
d3473f0c
TT
2473 result->index = m_num_psymtabs++;
2474 return result;
2475}
2476
2477/* See read.h. */
2478
2479signatured_type *
5989a64e 2480dwarf2_per_bfd::allocate_signatured_type ()
d3473f0c
TT
2481{
2482 signatured_type *result = OBSTACK_ZALLOC (&obstack, signatured_type);
1859c670 2483 result->per_cu.per_bfd = this;
d3473f0c
TT
2484 result->per_cu.index = m_num_psymtabs++;
2485 return result;
2486}
2487
168c9250 2488/* Return a new dwarf2_per_cu_data allocated on the per-bfd
45940949 2489 obstack, and constructed with the specified field values. */
4b514bc8
JK
2490
2491static dwarf2_per_cu_data *
168c9250
SM
2492create_cu_from_index_list (dwarf2_per_bfd *per_bfd,
2493 struct dwarf2_section_info *section,
2494 int is_dwz,
2495 sect_offset sect_off, ULONGEST length)
4b514bc8 2496{
168c9250 2497 dwarf2_per_cu_data *the_cu = per_bfd->allocate_per_cu ();
4b514bc8
JK
2498 the_cu->sect_off = sect_off;
2499 the_cu->length = length;
4b514bc8 2500 the_cu->section = section;
168c9250 2501 the_cu->v.quick = OBSTACK_ZALLOC (&per_bfd->obstack,
45940949 2502 struct dwarf2_per_cu_quick_data);
4b514bc8
JK
2503 the_cu->is_dwz = is_dwz;
2504 return the_cu;
2505}
2506
2ec9a5e0
TT
2507/* A helper for create_cus_from_index that handles a given list of
2508 CUs. */
2fdf6df6 2509
74a0d9f6 2510static void
168c9250 2511create_cus_from_index_list (dwarf2_per_bfd *per_bfd,
2ec9a5e0
TT
2512 const gdb_byte *cu_list, offset_type n_elements,
2513 struct dwarf2_section_info *section,
b76e467d 2514 int is_dwz)
9291a0cd 2515{
12359b5e 2516 for (offset_type i = 0; i < n_elements; i += 2)
9291a0cd 2517 {
74a0d9f6 2518 gdb_static_assert (sizeof (ULONGEST) >= 8);
9c541725
PA
2519
2520 sect_offset sect_off
2521 = (sect_offset) extract_unsigned_integer (cu_list, 8, BFD_ENDIAN_LITTLE);
2522 ULONGEST length = extract_unsigned_integer (cu_list + 8, 8, BFD_ENDIAN_LITTLE);
9291a0cd
TT
2523 cu_list += 2 * 8;
2524
b76e467d 2525 dwarf2_per_cu_data *per_cu
168c9250
SM
2526 = create_cu_from_index_list (per_bfd, section, is_dwz, sect_off,
2527 length);
2528 per_bfd->all_comp_units.push_back (per_cu);
9291a0cd 2529 }
9291a0cd
TT
2530}
2531
2ec9a5e0 2532/* Read the CU list from the mapped index, and use it to create all
168c9250 2533 the CU objects for PER_BFD. */
2ec9a5e0 2534
74a0d9f6 2535static void
168c9250 2536create_cus_from_index (dwarf2_per_bfd *per_bfd,
2ec9a5e0
TT
2537 const gdb_byte *cu_list, offset_type cu_list_elements,
2538 const gdb_byte *dwz_list, offset_type dwz_elements)
2539{
168c9250
SM
2540 gdb_assert (per_bfd->all_comp_units.empty ());
2541 per_bfd->all_comp_units.reserve ((cu_list_elements + dwz_elements) / 2);
2ec9a5e0 2542
168c9250
SM
2543 create_cus_from_index_list (per_bfd, cu_list, cu_list_elements,
2544 &per_bfd->info, 0);
2ec9a5e0
TT
2545
2546 if (dwz_elements == 0)
74a0d9f6 2547 return;
2ec9a5e0 2548
168c9250
SM
2549 dwz_file *dwz = dwarf2_get_dwz_file (per_bfd);
2550 create_cus_from_index_list (per_bfd, dwz_list, dwz_elements,
b76e467d 2551 &dwz->info, 1);
2ec9a5e0
TT
2552}
2553
1fd400ff 2554/* Create the signatured type hash table from the index. */
673bfd45 2555
74a0d9f6 2556static void
12359b5e 2557create_signatured_type_table_from_index
168c9250
SM
2558 (dwarf2_per_bfd *per_bfd, struct dwarf2_section_info *section,
2559 const gdb_byte *bytes, offset_type elements)
1fd400ff 2560{
168c9250
SM
2561 gdb_assert (per_bfd->all_type_units.empty ());
2562 per_bfd->all_type_units.reserve (elements / 3);
1fd400ff 2563
298e9637 2564 htab_up sig_types_hash = allocate_signatured_type_table ();
1fd400ff 2565
12359b5e 2566 for (offset_type i = 0; i < elements; i += 3)
1fd400ff 2567 {
52dc124a 2568 struct signatured_type *sig_type;
9c541725 2569 ULONGEST signature;
1fd400ff 2570 void **slot;
9c541725 2571 cu_offset type_offset_in_tu;
1fd400ff 2572
74a0d9f6 2573 gdb_static_assert (sizeof (ULONGEST) >= 8);
9c541725
PA
2574 sect_offset sect_off
2575 = (sect_offset) extract_unsigned_integer (bytes, 8, BFD_ENDIAN_LITTLE);
2576 type_offset_in_tu
2577 = (cu_offset) extract_unsigned_integer (bytes + 8, 8,
2578 BFD_ENDIAN_LITTLE);
1fd400ff
TT
2579 signature = extract_unsigned_integer (bytes + 16, 8, BFD_ENDIAN_LITTLE);
2580 bytes += 3 * 8;
2581
168c9250 2582 sig_type = per_bfd->allocate_signatured_type ();
52dc124a 2583 sig_type->signature = signature;
9c541725 2584 sig_type->type_offset_in_tu = type_offset_in_tu;
3019eac3 2585 sig_type->per_cu.is_debug_types = 1;
8a0459fd 2586 sig_type->per_cu.section = section;
9c541725 2587 sig_type->per_cu.sect_off = sect_off;
52dc124a 2588 sig_type->per_cu.v.quick
168c9250 2589 = OBSTACK_ZALLOC (&per_bfd->obstack,
1fd400ff
TT
2590 struct dwarf2_per_cu_quick_data);
2591
b0b6a987 2592 slot = htab_find_slot (sig_types_hash.get (), sig_type, INSERT);
52dc124a 2593 *slot = sig_type;
1fd400ff 2594
168c9250 2595 per_bfd->all_type_units.push_back (sig_type);
1fd400ff
TT
2596 }
2597
168c9250 2598 per_bfd->signatured_types = std::move (sig_types_hash);
1fd400ff
TT
2599}
2600
927aa2e7
JK
2601/* Create the signatured type hash table from .debug_names. */
2602
2603static void
2604create_signatured_type_table_from_debug_names
976ca316 2605 (dwarf2_per_objfile *per_objfile,
927aa2e7
JK
2606 const mapped_debug_names &map,
2607 struct dwarf2_section_info *section,
2608 struct dwarf2_section_info *abbrev_section)
2609{
976ca316 2610 struct objfile *objfile = per_objfile->objfile;
ed2dc618 2611
96b79293
TT
2612 section->read (objfile);
2613 abbrev_section->read (objfile);
927aa2e7 2614
976ca316
SM
2615 gdb_assert (per_objfile->per_bfd->all_type_units.empty ());
2616 per_objfile->per_bfd->all_type_units.reserve (map.tu_count);
927aa2e7 2617
298e9637 2618 htab_up sig_types_hash = allocate_signatured_type_table ();
927aa2e7
JK
2619
2620 for (uint32_t i = 0; i < map.tu_count; ++i)
2621 {
2622 struct signatured_type *sig_type;
927aa2e7 2623 void **slot;
927aa2e7
JK
2624
2625 sect_offset sect_off
2626 = (sect_offset) (extract_unsigned_integer
2627 (map.tu_table_reordered + i * map.offset_size,
2628 map.offset_size,
2629 map.dwarf5_byte_order));
2630
2631 comp_unit_head cu_header;
976ca316 2632 read_and_check_comp_unit_head (per_objfile, &cu_header, section,
ed2dc618 2633 abbrev_section,
927aa2e7
JK
2634 section->buffer + to_underlying (sect_off),
2635 rcuh_kind::TYPE);
2636
976ca316 2637 sig_type = per_objfile->per_bfd->allocate_signatured_type ();
927aa2e7
JK
2638 sig_type->signature = cu_header.signature;
2639 sig_type->type_offset_in_tu = cu_header.type_cu_offset_in_tu;
2640 sig_type->per_cu.is_debug_types = 1;
2641 sig_type->per_cu.section = section;
2642 sig_type->per_cu.sect_off = sect_off;
927aa2e7 2643 sig_type->per_cu.v.quick
976ca316 2644 = OBSTACK_ZALLOC (&per_objfile->per_bfd->obstack,
927aa2e7
JK
2645 struct dwarf2_per_cu_quick_data);
2646
b0b6a987 2647 slot = htab_find_slot (sig_types_hash.get (), sig_type, INSERT);
927aa2e7
JK
2648 *slot = sig_type;
2649
976ca316 2650 per_objfile->per_bfd->all_type_units.push_back (sig_type);
927aa2e7
JK
2651 }
2652
976ca316 2653 per_objfile->per_bfd->signatured_types = std::move (sig_types_hash);
927aa2e7
JK
2654}
2655
9291a0cd
TT
2656/* Read the address map data from the mapped index, and use it to
2657 populate the objfile's psymtabs_addrmap. */
2fdf6df6 2658
9291a0cd 2659static void
976ca316 2660create_addrmap_from_index (dwarf2_per_objfile *per_objfile,
ed2dc618 2661 struct mapped_index *index)
9291a0cd 2662{
976ca316 2663 struct objfile *objfile = per_objfile->objfile;
08feed99 2664 struct gdbarch *gdbarch = objfile->arch ();
9291a0cd 2665 const gdb_byte *iter, *end;
9291a0cd 2666 struct addrmap *mutable_map;
9291a0cd
TT
2667 CORE_ADDR baseaddr;
2668
8268c778
PA
2669 auto_obstack temp_obstack;
2670
9291a0cd
TT
2671 mutable_map = addrmap_create_mutable (&temp_obstack);
2672
f00a2de2
PA
2673 iter = index->address_table.data ();
2674 end = iter + index->address_table.size ();
9291a0cd 2675
b3b3bada 2676 baseaddr = objfile->text_section_offset ();
9291a0cd
TT
2677
2678 while (iter < end)
2679 {
2680 ULONGEST hi, lo, cu_index;
2681 lo = extract_unsigned_integer (iter, 8, BFD_ENDIAN_LITTLE);
2682 iter += 8;
2683 hi = extract_unsigned_integer (iter, 8, BFD_ENDIAN_LITTLE);
2684 iter += 8;
2685 cu_index = extract_unsigned_integer (iter, 4, BFD_ENDIAN_LITTLE);
2686 iter += 4;
f652bce2 2687
24a55014 2688 if (lo > hi)
f652bce2 2689 {
b98664d3 2690 complaint (_(".gdb_index address table has invalid range (%s - %s)"),
c0cd8254 2691 hex_string (lo), hex_string (hi));
24a55014 2692 continue;
f652bce2 2693 }
24a55014 2694
976ca316 2695 if (cu_index >= per_objfile->per_bfd->all_comp_units.size ())
f652bce2 2696 {
b98664d3 2697 complaint (_(".gdb_index address table has invalid CU number %u"),
f652bce2 2698 (unsigned) cu_index);
24a55014 2699 continue;
f652bce2 2700 }
24a55014 2701
79748972
TT
2702 lo = gdbarch_adjust_dwarf2_addr (gdbarch, lo + baseaddr) - baseaddr;
2703 hi = gdbarch_adjust_dwarf2_addr (gdbarch, hi + baseaddr) - baseaddr;
ed2dc618 2704 addrmap_set_empty (mutable_map, lo, hi - 1,
976ca316 2705 per_objfile->per_bfd->get_cu (cu_index));
9291a0cd
TT
2706 }
2707
d320c2b5 2708 objfile->partial_symtabs->psymtabs_addrmap
5923a04c 2709 = addrmap_create_fixed (mutable_map, objfile->partial_symtabs->obstack ());
9291a0cd
TT
2710}
2711
927aa2e7
JK
2712/* Read the address map data from DWARF-5 .debug_aranges, and use it to
2713 populate the objfile's psymtabs_addrmap. */
2714
2715static void
976ca316 2716create_addrmap_from_aranges (dwarf2_per_objfile *per_objfile,
927aa2e7
JK
2717 struct dwarf2_section_info *section)
2718{
976ca316 2719 struct objfile *objfile = per_objfile->objfile;
927aa2e7 2720 bfd *abfd = objfile->obfd;
08feed99 2721 struct gdbarch *gdbarch = objfile->arch ();
b3b3bada 2722 const CORE_ADDR baseaddr = objfile->text_section_offset ();
927aa2e7
JK
2723
2724 auto_obstack temp_obstack;
2725 addrmap *mutable_map = addrmap_create_mutable (&temp_obstack);
2726
2727 std::unordered_map<sect_offset,
2728 dwarf2_per_cu_data *,
2729 gdb::hash_enum<sect_offset>>
2730 debug_info_offset_to_per_cu;
976ca316 2731 for (dwarf2_per_cu_data *per_cu : per_objfile->per_bfd->all_comp_units)
927aa2e7 2732 {
927aa2e7
JK
2733 const auto insertpair
2734 = debug_info_offset_to_per_cu.emplace (per_cu->sect_off, per_cu);
2735 if (!insertpair.second)
2736 {
2737 warning (_("Section .debug_aranges in %s has duplicate "
9d8780f0
SM
2738 "debug_info_offset %s, ignoring .debug_aranges."),
2739 objfile_name (objfile), sect_offset_str (per_cu->sect_off));
927aa2e7
JK
2740 return;
2741 }
2742 }
2743
96b79293 2744 section->read (objfile);
927aa2e7
JK
2745
2746 const bfd_endian dwarf5_byte_order = gdbarch_byte_order (gdbarch);
2747
2748 const gdb_byte *addr = section->buffer;
2749
2750 while (addr < section->buffer + section->size)
2751 {
2752 const gdb_byte *const entry_addr = addr;
2753 unsigned int bytes_read;
2754
2755 const LONGEST entry_length = read_initial_length (abfd, addr,
2756 &bytes_read);
2757 addr += bytes_read;
2758
2759 const gdb_byte *const entry_end = addr + entry_length;
2760 const bool dwarf5_is_dwarf64 = bytes_read != 4;
2761 const uint8_t offset_size = dwarf5_is_dwarf64 ? 8 : 4;
2762 if (addr + entry_length > section->buffer + section->size)
2763 {
47e3f474 2764 warning (_("Section .debug_aranges in %s entry at offset %s "
927aa2e7
JK
2765 "length %s exceeds section length %s, "
2766 "ignoring .debug_aranges."),
47e3f474
TV
2767 objfile_name (objfile),
2768 plongest (entry_addr - section->buffer),
927aa2e7
JK
2769 plongest (bytes_read + entry_length),
2770 pulongest (section->size));
2771 return;
2772 }
2773
2774 /* The version number. */
2775 const uint16_t version = read_2_bytes (abfd, addr);
2776 addr += 2;
2777 if (version != 2)
2778 {
47e3f474 2779 warning (_("Section .debug_aranges in %s entry at offset %s "
927aa2e7 2780 "has unsupported version %d, ignoring .debug_aranges."),
47e3f474
TV
2781 objfile_name (objfile),
2782 plongest (entry_addr - section->buffer), version);
927aa2e7
JK
2783 return;
2784 }
2785
2786 const uint64_t debug_info_offset
2787 = extract_unsigned_integer (addr, offset_size, dwarf5_byte_order);
2788 addr += offset_size;
2789 const auto per_cu_it
2790 = debug_info_offset_to_per_cu.find (sect_offset (debug_info_offset));
2791 if (per_cu_it == debug_info_offset_to_per_cu.cend ())
2792 {
47e3f474 2793 warning (_("Section .debug_aranges in %s entry at offset %s "
927aa2e7
JK
2794 "debug_info_offset %s does not exists, "
2795 "ignoring .debug_aranges."),
47e3f474
TV
2796 objfile_name (objfile),
2797 plongest (entry_addr - section->buffer),
927aa2e7
JK
2798 pulongest (debug_info_offset));
2799 return;
2800 }
2801 dwarf2_per_cu_data *const per_cu = per_cu_it->second;
2802
2803 const uint8_t address_size = *addr++;
2804 if (address_size < 1 || address_size > 8)
2805 {
47e3f474 2806 warning (_("Section .debug_aranges in %s entry at offset %s "
927aa2e7 2807 "address_size %u is invalid, ignoring .debug_aranges."),
47e3f474
TV
2808 objfile_name (objfile),
2809 plongest (entry_addr - section->buffer), address_size);
927aa2e7
JK
2810 return;
2811 }
2812
2813 const uint8_t segment_selector_size = *addr++;
2814 if (segment_selector_size != 0)
2815 {
47e3f474 2816 warning (_("Section .debug_aranges in %s entry at offset %s "
927aa2e7
JK
2817 "segment_selector_size %u is not supported, "
2818 "ignoring .debug_aranges."),
47e3f474
TV
2819 objfile_name (objfile),
2820 plongest (entry_addr - section->buffer),
927aa2e7
JK
2821 segment_selector_size);
2822 return;
2823 }
2824
2825 /* Must pad to an alignment boundary that is twice the address
2826 size. It is undocumented by the DWARF standard but GCC does
2827 use it. */
2828 for (size_t padding = ((-(addr - section->buffer))
2829 & (2 * address_size - 1));
2830 padding > 0; padding--)
2831 if (*addr++ != 0)
2832 {
47e3f474 2833 warning (_("Section .debug_aranges in %s entry at offset %s "
927aa2e7 2834 "padding is not zero, ignoring .debug_aranges."),
47e3f474
TV
2835 objfile_name (objfile),
2836 plongest (entry_addr - section->buffer));
927aa2e7
JK
2837 return;
2838 }
2839
2840 for (;;)
2841 {
2842 if (addr + 2 * address_size > entry_end)
2843 {
47e3f474 2844 warning (_("Section .debug_aranges in %s entry at offset %s "
927aa2e7
JK
2845 "address list is not properly terminated, "
2846 "ignoring .debug_aranges."),
47e3f474
TV
2847 objfile_name (objfile),
2848 plongest (entry_addr - section->buffer));
927aa2e7
JK
2849 return;
2850 }
2851 ULONGEST start = extract_unsigned_integer (addr, address_size,
2852 dwarf5_byte_order);
2853 addr += address_size;
2854 ULONGEST length = extract_unsigned_integer (addr, address_size,
2855 dwarf5_byte_order);
2856 addr += address_size;
2857 if (start == 0 && length == 0)
2858 break;
976ca316 2859 if (start == 0 && !per_objfile->per_bfd->has_section_at_zero)
927aa2e7
JK
2860 {
2861 /* Symbol was eliminated due to a COMDAT group. */
2862 continue;
2863 }
2864 ULONGEST end = start + length;
79748972
TT
2865 start = (gdbarch_adjust_dwarf2_addr (gdbarch, start + baseaddr)
2866 - baseaddr);
2867 end = (gdbarch_adjust_dwarf2_addr (gdbarch, end + baseaddr)
2868 - baseaddr);
927aa2e7
JK
2869 addrmap_set_empty (mutable_map, start, end - 1, per_cu);
2870 }
2871 }
2872
d320c2b5 2873 objfile->partial_symtabs->psymtabs_addrmap
5923a04c 2874 = addrmap_create_fixed (mutable_map, objfile->partial_symtabs->obstack ());
927aa2e7
JK
2875}
2876
9291a0cd
TT
2877/* Find a slot in the mapped index INDEX for the object named NAME.
2878 If NAME is found, set *VEC_OUT to point to the CU vector in the
109483d9
PA
2879 constant pool and return true. If NAME cannot be found, return
2880 false. */
2fdf6df6 2881
109483d9 2882static bool
9291a0cd
TT
2883find_slot_in_mapped_hash (struct mapped_index *index, const char *name,
2884 offset_type **vec_out)
2885{
0cf03b49 2886 offset_type hash;
9291a0cd 2887 offset_type slot, step;
559a7a62 2888 int (*cmp) (const char *, const char *);
9291a0cd 2889
791afaa2 2890 gdb::unique_xmalloc_ptr<char> without_params;
0cf03b49 2891 if (current_language->la_language == language_cplus
45280282
IB
2892 || current_language->la_language == language_fortran
2893 || current_language->la_language == language_d)
0cf03b49
JK
2894 {
2895 /* NAME is already canonical. Drop any qualifiers as .gdb_index does
2896 not contain any. */
a8719064 2897
72998fb3 2898 if (strchr (name, '(') != NULL)
0cf03b49 2899 {
109483d9 2900 without_params = cp_remove_params (name);
0cf03b49 2901
72998fb3 2902 if (without_params != NULL)
791afaa2 2903 name = without_params.get ();
0cf03b49
JK
2904 }
2905 }
2906
559a7a62 2907 /* Index version 4 did not support case insensitive searches. But the
feea76c2 2908 indices for case insensitive languages are built in lowercase, therefore
559a7a62
JK
2909 simulate our NAME being searched is also lowercased. */
2910 hash = mapped_index_string_hash ((index->version == 4
2911 && case_sensitivity == case_sensitive_off
2912 ? 5 : index->version),
2913 name);
2914
f00a2de2
PA
2915 slot = hash & (index->symbol_table.size () - 1);
2916 step = ((hash * 17) & (index->symbol_table.size () - 1)) | 1;
559a7a62 2917 cmp = (case_sensitivity == case_sensitive_on ? strcmp : strcasecmp);
9291a0cd
TT
2918
2919 for (;;)
2920 {
9291a0cd 2921 const char *str;
f00a2de2
PA
2922
2923 const auto &bucket = index->symbol_table[slot];
2924 if (bucket.name == 0 && bucket.vec == 0)
109483d9 2925 return false;
9291a0cd 2926
f00a2de2 2927 str = index->constant_pool + MAYBE_SWAP (bucket.name);
559a7a62 2928 if (!cmp (name, str))
9291a0cd
TT
2929 {
2930 *vec_out = (offset_type *) (index->constant_pool
f00a2de2 2931 + MAYBE_SWAP (bucket.vec));
109483d9 2932 return true;
9291a0cd
TT
2933 }
2934
f00a2de2 2935 slot = (slot + step) & (index->symbol_table.size () - 1);
9291a0cd
TT
2936 }
2937}
2938
4485a1c1
SM
2939/* A helper function that reads the .gdb_index from BUFFER and fills
2940 in MAP. FILENAME is the name of the file containing the data;
d33bc52e 2941 it is used for error reporting. DEPRECATED_OK is true if it is
2ec9a5e0
TT
2942 ok to use deprecated sections.
2943
2944 CU_LIST, CU_LIST_ELEMENTS, TYPES_LIST, and TYPES_LIST_ELEMENTS are
2945 out parameters that are filled in with information about the CU and
2946 TU lists in the section.
2947
4485a1c1 2948 Returns true if all went well, false otherwise. */
2fdf6df6 2949
d33bc52e 2950static bool
3810f182 2951read_gdb_index_from_buffer (const char *filename,
4485a1c1
SM
2952 bool deprecated_ok,
2953 gdb::array_view<const gdb_byte> buffer,
2954 struct mapped_index *map,
2955 const gdb_byte **cu_list,
2956 offset_type *cu_list_elements,
2957 const gdb_byte **types_list,
2958 offset_type *types_list_elements)
2959{
2960 const gdb_byte *addr = &buffer[0];
82430852 2961
9291a0cd 2962 /* Version check. */
4485a1c1 2963 offset_type version = MAYBE_SWAP (*(offset_type *) addr);
987d643c 2964 /* Versions earlier than 3 emitted every copy of a psymbol. This
a6e293d1 2965 causes the index to behave very poorly for certain requests. Version 3
831adc1f 2966 contained incomplete addrmap. So, it seems better to just ignore such
481860b3 2967 indices. */
831adc1f 2968 if (version < 4)
481860b3
GB
2969 {
2970 static int warning_printed = 0;
2971 if (!warning_printed)
2972 {
2973 warning (_("Skipping obsolete .gdb_index section in %s."),
2ec9a5e0 2974 filename);
481860b3
GB
2975 warning_printed = 1;
2976 }
2977 return 0;
2978 }
2979 /* Index version 4 uses a different hash function than index version
2980 5 and later.
2981
2982 Versions earlier than 6 did not emit psymbols for inlined
2983 functions. Using these files will cause GDB not to be able to
2984 set breakpoints on inlined functions by name, so we ignore these
e615022a
DE
2985 indices unless the user has done
2986 "set use-deprecated-index-sections on". */
2ec9a5e0 2987 if (version < 6 && !deprecated_ok)
481860b3
GB
2988 {
2989 static int warning_printed = 0;
2990 if (!warning_printed)
2991 {
e615022a
DE
2992 warning (_("\
2993Skipping deprecated .gdb_index section in %s.\n\
2994Do \"set use-deprecated-index-sections on\" before the file is read\n\
2995to use the section anyway."),
2ec9a5e0 2996 filename);
481860b3
GB
2997 warning_printed = 1;
2998 }
2999 return 0;
3000 }
796a7ff8 3001 /* Version 7 indices generated by gold refer to the CU for a symbol instead
8943b874
DE
3002 of the TU (for symbols coming from TUs),
3003 http://sourceware.org/bugzilla/show_bug.cgi?id=15021.
3004 Plus gold-generated indices can have duplicate entries for global symbols,
3005 http://sourceware.org/bugzilla/show_bug.cgi?id=15646.
3006 These are just performance bugs, and we can't distinguish gdb-generated
3007 indices from gold-generated ones, so issue no warning here. */
796a7ff8 3008
481860b3 3009 /* Indexes with higher version than the one supported by GDB may be no
594e8718 3010 longer backward compatible. */
796a7ff8 3011 if (version > 8)
594e8718 3012 return 0;
9291a0cd 3013
559a7a62 3014 map->version = version;
9291a0cd 3015
4485a1c1 3016 offset_type *metadata = (offset_type *) (addr + sizeof (offset_type));
1fd400ff 3017
4485a1c1 3018 int i = 0;
2ec9a5e0
TT
3019 *cu_list = addr + MAYBE_SWAP (metadata[i]);
3020 *cu_list_elements = ((MAYBE_SWAP (metadata[i + 1]) - MAYBE_SWAP (metadata[i]))
3021 / 8);
1fd400ff
TT
3022 ++i;
3023
2ec9a5e0
TT
3024 *types_list = addr + MAYBE_SWAP (metadata[i]);
3025 *types_list_elements = ((MAYBE_SWAP (metadata[i + 1])
3026 - MAYBE_SWAP (metadata[i]))
3027 / 8);
987d643c 3028 ++i;
1fd400ff 3029
f00a2de2
PA
3030 const gdb_byte *address_table = addr + MAYBE_SWAP (metadata[i]);
3031 const gdb_byte *address_table_end = addr + MAYBE_SWAP (metadata[i + 1]);
3032 map->address_table
3033 = gdb::array_view<const gdb_byte> (address_table, address_table_end);
1fd400ff
TT
3034 ++i;
3035
f00a2de2
PA
3036 const gdb_byte *symbol_table = addr + MAYBE_SWAP (metadata[i]);
3037 const gdb_byte *symbol_table_end = addr + MAYBE_SWAP (metadata[i + 1]);
3038 map->symbol_table
3039 = gdb::array_view<mapped_index::symbol_table_slot>
3040 ((mapped_index::symbol_table_slot *) symbol_table,
3041 (mapped_index::symbol_table_slot *) symbol_table_end);
9291a0cd 3042
f00a2de2 3043 ++i;
f9d83a0b 3044 map->constant_pool = (char *) (addr + MAYBE_SWAP (metadata[i]));
1fd400ff 3045
2ec9a5e0
TT
3046 return 1;
3047}
3048
4485a1c1
SM
3049/* Callback types for dwarf2_read_gdb_index. */
3050
3051typedef gdb::function_view
5989a64e 3052 <gdb::array_view<const gdb_byte>(objfile *, dwarf2_per_bfd *)>
4485a1c1
SM
3053 get_gdb_index_contents_ftype;
3054typedef gdb::function_view
3055 <gdb::array_view<const gdb_byte>(objfile *, dwz_file *)>
3056 get_gdb_index_contents_dwz_ftype;
3057
927aa2e7 3058/* Read .gdb_index. If everything went ok, initialize the "quick"
2ec9a5e0
TT
3059 elements of all the CUs and return 1. Otherwise, return 0. */
3060
3061static int
4485a1c1 3062dwarf2_read_gdb_index
976ca316 3063 (dwarf2_per_objfile *per_objfile,
4485a1c1
SM
3064 get_gdb_index_contents_ftype get_gdb_index_contents,
3065 get_gdb_index_contents_dwz_ftype get_gdb_index_contents_dwz)
2ec9a5e0 3066{
2ec9a5e0
TT
3067 const gdb_byte *cu_list, *types_list, *dwz_list = NULL;
3068 offset_type cu_list_elements, types_list_elements, dwz_list_elements = 0;
4db1a1dc 3069 struct dwz_file *dwz;
976ca316 3070 struct objfile *objfile = per_objfile->objfile;
f8c41851 3071 dwarf2_per_bfd *per_bfd = per_objfile->per_bfd;
2ec9a5e0 3072
4485a1c1 3073 gdb::array_view<const gdb_byte> main_index_contents
f8c41851 3074 = get_gdb_index_contents (objfile, per_bfd);
4485a1c1
SM
3075
3076 if (main_index_contents.empty ())
3077 return 0;
3078
3063847f 3079 std::unique_ptr<struct mapped_index> map (new struct mapped_index);
3810f182 3080 if (!read_gdb_index_from_buffer (objfile_name (objfile),
4485a1c1
SM
3081 use_deprecated_index_sections,
3082 main_index_contents, map.get (), &cu_list,
3083 &cu_list_elements, &types_list,
3084 &types_list_elements))
2ec9a5e0
TT
3085 return 0;
3086
0fefef59 3087 /* Don't use the index if it's empty. */
3063847f 3088 if (map->symbol_table.empty ())
0fefef59
DE
3089 return 0;
3090
2ec9a5e0
TT
3091 /* If there is a .dwz file, read it so we can get its CU list as
3092 well. */
f8c41851 3093 dwz = dwarf2_get_dwz_file (per_bfd);
4db1a1dc 3094 if (dwz != NULL)
2ec9a5e0 3095 {
2ec9a5e0
TT
3096 struct mapped_index dwz_map;
3097 const gdb_byte *dwz_types_ignore;
3098 offset_type dwz_types_elements_ignore;
3099
4485a1c1
SM
3100 gdb::array_view<const gdb_byte> dwz_index_content
3101 = get_gdb_index_contents_dwz (objfile, dwz);
3102
3103 if (dwz_index_content.empty ())
3104 return 0;
3105
3810f182 3106 if (!read_gdb_index_from_buffer (bfd_get_filename (dwz->dwz_bfd.get ()),
00f93c44 3107 1, dwz_index_content, &dwz_map,
4485a1c1
SM
3108 &dwz_list, &dwz_list_elements,
3109 &dwz_types_ignore,
3110 &dwz_types_elements_ignore))
2ec9a5e0
TT
3111 {
3112 warning (_("could not read '.gdb_index' section from %s; skipping"),
00f93c44 3113 bfd_get_filename (dwz->dwz_bfd.get ()));
2ec9a5e0
TT
3114 return 0;
3115 }
3116 }
3117
f8c41851
SM
3118 create_cus_from_index (per_bfd, cu_list, cu_list_elements, dwz_list,
3119 dwz_list_elements);
1fd400ff 3120
8b70b953
TT
3121 if (types_list_elements)
3122 {
8b70b953
TT
3123 /* We can only handle a single .debug_types when we have an
3124 index. */
f8c41851 3125 if (per_bfd->types.size () != 1)
8b70b953
TT
3126 return 0;
3127
f8c41851 3128 dwarf2_section_info *section = &per_bfd->types[0];
8b70b953 3129
f8c41851 3130 create_signatured_type_table_from_index (per_bfd, section, types_list,
168c9250 3131 types_list_elements);
8b70b953 3132 }
9291a0cd 3133
976ca316 3134 create_addrmap_from_index (per_objfile, map.get ());
9291a0cd 3135
f8c41851
SM
3136 per_bfd->index_table = std::move (map);
3137 per_bfd->using_index = 1;
3138 per_bfd->quick_file_names_table =
3139 create_quick_file_names_table (per_bfd->all_comp_units.size ());
3140
3141 /* Save partial symtabs in the per_bfd object, for the benefit of subsequent
3142 objfiles using the same BFD. */
3143 gdb_assert (per_bfd->partial_symtabs == nullptr);
3144 per_bfd->partial_symtabs = objfile->partial_symtabs;
9291a0cd
TT
3145
3146 return 1;
3147}
3148
dee91e82 3149/* die_reader_func for dw2_get_file_names. */
2fdf6df6 3150
dee91e82
DE
3151static void
3152dw2_get_file_names_reader (const struct die_reader_specs *reader,
d521ce57 3153 const gdb_byte *info_ptr,
3e225074 3154 struct die_info *comp_unit_die)
9291a0cd 3155{
dee91e82 3156 struct dwarf2_cu *cu = reader->cu;
ed2dc618 3157 struct dwarf2_per_cu_data *this_cu = cu->per_cu;
976ca316 3158 dwarf2_per_objfile *per_objfile = cu->per_objfile;
094b34ac 3159 struct dwarf2_per_cu_data *lh_cu;
9291a0cd 3160 struct attribute *attr;
7b9f3c50
DE
3161 void **slot;
3162 struct quick_file_names *qfn;
9291a0cd 3163
0186c6a7
DE
3164 gdb_assert (! this_cu->is_debug_types);
3165
07261596
TT
3166 /* Our callers never want to match partial units -- instead they
3167 will match the enclosing full CU. */
3168 if (comp_unit_die->tag == DW_TAG_partial_unit)
3169 {
3170 this_cu->v.quick->no_file_data = 1;
3171 return;
3172 }
3173
0186c6a7 3174 lh_cu = this_cu;
7b9f3c50 3175 slot = NULL;
dee91e82 3176
fff8551c 3177 line_header_up lh;
9c541725 3178 sect_offset line_offset {};
fff8551c 3179
dee91e82 3180 attr = dwarf2_attr (comp_unit_die, DW_AT_stmt_list, cu);
435d3d88 3181 if (attr != nullptr)
9291a0cd 3182 {
7b9f3c50
DE
3183 struct quick_file_names find_entry;
3184
9c541725 3185 line_offset = (sect_offset) DW_UNSND (attr);
7b9f3c50
DE
3186
3187 /* We may have already read in this line header (TU line header sharing).
3188 If we have we're done. */
094b34ac 3189 find_entry.hash.dwo_unit = cu->dwo_unit;
9c541725 3190 find_entry.hash.line_sect_off = line_offset;
976ca316 3191 slot = htab_find_slot (per_objfile->per_bfd->quick_file_names_table.get (),
7b9f3c50
DE
3192 &find_entry, INSERT);
3193 if (*slot != NULL)
3194 {
9a3c8263 3195 lh_cu->v.quick->file_names = (struct quick_file_names *) *slot;
dee91e82 3196 return;
7b9f3c50
DE
3197 }
3198
3019eac3 3199 lh = dwarf_decode_line_header (line_offset, cu);
9291a0cd
TT
3200 }
3201 if (lh == NULL)
3202 {
094b34ac 3203 lh_cu->v.quick->no_file_data = 1;
dee91e82 3204 return;
9291a0cd
TT
3205 }
3206
976ca316 3207 qfn = XOBNEW (&per_objfile->per_bfd->obstack, struct quick_file_names);
094b34ac 3208 qfn->hash.dwo_unit = cu->dwo_unit;
9c541725 3209 qfn->hash.line_sect_off = line_offset;
7b9f3c50
DE
3210 gdb_assert (slot != NULL);
3211 *slot = qfn;
9291a0cd 3212
d721ba37 3213 file_and_directory fnd = find_file_and_directory (comp_unit_die, cu);
9291a0cd 3214
aa391654
TT
3215 int offset = 0;
3216 if (strcmp (fnd.name, "<unknown>") != 0)
3217 ++offset;
3218
7ba99d21 3219 qfn->num_file_names = offset + lh->file_names_size ();
8d749320 3220 qfn->file_names =
976ca316 3221 XOBNEWVEC (&per_objfile->per_bfd->obstack, const char *,
45940949 3222 qfn->num_file_names);
aa391654
TT
3223 if (offset != 0)
3224 qfn->file_names[0] = xstrdup (fnd.name);
7ba99d21 3225 for (int i = 0; i < lh->file_names_size (); ++i)
03075812
TT
3226 qfn->file_names[i + offset] = lh->file_full_name (i + 1,
3227 fnd.comp_dir).release ();
7b9f3c50 3228 qfn->real_names = NULL;
9291a0cd 3229
094b34ac 3230 lh_cu->v.quick->file_names = qfn;
dee91e82
DE
3231}
3232
3233/* A helper for the "quick" functions which attempts to read the line
3234 table for THIS_CU. */
3235
3236static struct quick_file_names *
ab432490
SM
3237dw2_get_file_names (dwarf2_per_cu_data *this_cu,
3238 dwarf2_per_objfile *per_objfile)
dee91e82 3239{
0186c6a7
DE
3240 /* This should never be called for TUs. */
3241 gdb_assert (! this_cu->is_debug_types);
3242 /* Nor type unit groups. */
197400e8 3243 gdb_assert (! this_cu->type_unit_group_p ());
f4dc4d17 3244
dee91e82
DE
3245 if (this_cu->v.quick->file_names != NULL)
3246 return this_cu->v.quick->file_names;
3247 /* If we know there is no line data, no point in looking again. */
3248 if (this_cu->v.quick->no_file_data)
3249 return NULL;
3250
ab432490 3251 cutu_reader reader (this_cu, per_objfile);
c0ab21c2 3252 if (!reader.dummy_p)
3e225074 3253 dw2_get_file_names_reader (&reader, reader.info_ptr, reader.comp_unit_die);
dee91e82
DE
3254
3255 if (this_cu->v.quick->no_file_data)
3256 return NULL;
3257 return this_cu->v.quick->file_names;
9291a0cd
TT
3258}
3259
3260/* A helper for the "quick" functions which computes and caches the
7b9f3c50 3261 real path for a given file name from the line table. */
2fdf6df6 3262
9291a0cd 3263static const char *
976ca316 3264dw2_get_real_path (dwarf2_per_objfile *per_objfile,
7b9f3c50 3265 struct quick_file_names *qfn, int index)
9291a0cd 3266{
7b9f3c50 3267 if (qfn->real_names == NULL)
976ca316 3268 qfn->real_names = OBSTACK_CALLOC (&per_objfile->per_bfd->obstack,
26f2dc30 3269 qfn->num_file_names, const char *);
9291a0cd 3270
7b9f3c50 3271 if (qfn->real_names[index] == NULL)
14278e1f 3272 qfn->real_names[index] = gdb_realpath (qfn->file_names[index]).release ();
9291a0cd 3273
7b9f3c50 3274 return qfn->real_names[index];
9291a0cd
TT
3275}
3276
3277static struct symtab *
3278dw2_find_last_source_symtab (struct objfile *objfile)
3279{
976ca316
SM
3280 dwarf2_per_objfile *per_objfile = get_dwarf2_per_objfile (objfile);
3281 dwarf2_per_cu_data *dwarf_cu = per_objfile->per_bfd->all_comp_units.back ();
3282 compunit_symtab *cust = dw2_instantiate_symtab (dwarf_cu, per_objfile, false);
ae2de4f8 3283
43f3e411
DE
3284 if (cust == NULL)
3285 return NULL;
ed2dc618 3286
43f3e411 3287 return compunit_primary_filetab (cust);
9291a0cd
TT
3288}
3289
7b9f3c50
DE
3290/* Traversal function for dw2_forget_cached_source_info. */
3291
3292static int
3293dw2_free_cached_file_names (void **slot, void *info)
9291a0cd 3294{
7b9f3c50 3295 struct quick_file_names *file_data = (struct quick_file_names *) *slot;
9291a0cd 3296
7b9f3c50 3297 if (file_data->real_names)
9291a0cd 3298 {
7b9f3c50 3299 int i;
9291a0cd 3300
7b9f3c50 3301 for (i = 0; i < file_data->num_file_names; ++i)
9291a0cd 3302 {
7b9f3c50
DE
3303 xfree ((void*) file_data->real_names[i]);
3304 file_data->real_names[i] = NULL;
9291a0cd
TT
3305 }
3306 }
7b9f3c50
DE
3307
3308 return 1;
3309}
3310
3311static void
3312dw2_forget_cached_source_info (struct objfile *objfile)
3313{
976ca316 3314 dwarf2_per_objfile *per_objfile = get_dwarf2_per_objfile (objfile);
7b9f3c50 3315
976ca316 3316 htab_traverse_noresize (per_objfile->per_bfd->quick_file_names_table.get (),
7b9f3c50 3317 dw2_free_cached_file_names, NULL);
9291a0cd
TT
3318}
3319
f8eba3c6
TT
3320/* Helper function for dw2_map_symtabs_matching_filename that expands
3321 the symtabs and calls the iterator. */
3322
3323static int
3324dw2_map_expand_apply (struct objfile *objfile,
3325 struct dwarf2_per_cu_data *per_cu,
f5b95b50 3326 const char *name, const char *real_path,
14bc53a8 3327 gdb::function_view<bool (symtab *)> callback)
f8eba3c6 3328{
43f3e411 3329 struct compunit_symtab *last_made = objfile->compunit_symtabs;
f8eba3c6
TT
3330
3331 /* Don't visit already-expanded CUs. */
af758d11
SM
3332 dwarf2_per_objfile *per_objfile = get_dwarf2_per_objfile (objfile);
3333 if (per_objfile->symtab_set_p (per_cu))
f8eba3c6
TT
3334 return 0;
3335
3336 /* This may expand more than one symtab, and we want to iterate over
3337 all of them. */
97a1449a 3338 dw2_instantiate_symtab (per_cu, per_objfile, false);
f8eba3c6 3339
14bc53a8
PA
3340 return iterate_over_some_symtabs (name, real_path, objfile->compunit_symtabs,
3341 last_made, callback);
f8eba3c6
TT
3342}
3343
3344/* Implementation of the map_symtabs_matching_filename method. */
3345
14bc53a8
PA
3346static bool
3347dw2_map_symtabs_matching_filename
3348 (struct objfile *objfile, const char *name, const char *real_path,
3349 gdb::function_view<bool (symtab *)> callback)
9291a0cd 3350{
c011a4f4 3351 const char *name_basename = lbasename (name);
976ca316 3352 dwarf2_per_objfile *per_objfile = get_dwarf2_per_objfile (objfile);
ae2de4f8 3353
848e3e78
DE
3354 /* The rule is CUs specify all the files, including those used by
3355 any TU, so there's no need to scan TUs here. */
f4dc4d17 3356
976ca316 3357 for (dwarf2_per_cu_data *per_cu : per_objfile->per_bfd->all_comp_units)
9291a0cd 3358 {
3d7bb9d9 3359 /* We only need to look at symtabs not already expanded. */
976ca316 3360 if (per_objfile->symtab_set_p (per_cu))
9291a0cd
TT
3361 continue;
3362
976ca316 3363 quick_file_names *file_data = dw2_get_file_names (per_cu, per_objfile);
7b9f3c50 3364 if (file_data == NULL)
9291a0cd
TT
3365 continue;
3366
b76e467d 3367 for (int j = 0; j < file_data->num_file_names; ++j)
9291a0cd 3368 {
7b9f3c50 3369 const char *this_name = file_data->file_names[j];
da235a7c 3370 const char *this_real_name;
9291a0cd 3371
af529f8f 3372 if (compare_filenames_for_search (this_name, name))
9291a0cd 3373 {
f5b95b50 3374 if (dw2_map_expand_apply (objfile, per_cu, name, real_path,
14bc53a8
PA
3375 callback))
3376 return true;
288e77a7 3377 continue;
4aac40c8 3378 }
9291a0cd 3379
c011a4f4
DE
3380 /* Before we invoke realpath, which can get expensive when many
3381 files are involved, do a quick comparison of the basenames. */
3382 if (! basenames_may_differ
3383 && FILENAME_CMP (lbasename (this_name), name_basename) != 0)
3384 continue;
3385
976ca316 3386 this_real_name = dw2_get_real_path (per_objfile, file_data, j);
da235a7c 3387 if (compare_filenames_for_search (this_real_name, name))
9291a0cd 3388 {
da235a7c 3389 if (dw2_map_expand_apply (objfile, per_cu, name, real_path,
14bc53a8
PA
3390 callback))
3391 return true;
288e77a7 3392 continue;
da235a7c 3393 }
9291a0cd 3394
da235a7c
JK
3395 if (real_path != NULL)
3396 {
af529f8f
JK
3397 gdb_assert (IS_ABSOLUTE_PATH (real_path));
3398 gdb_assert (IS_ABSOLUTE_PATH (name));
7b9f3c50 3399 if (this_real_name != NULL
af529f8f 3400 && FILENAME_CMP (real_path, this_real_name) == 0)
9291a0cd 3401 {
f5b95b50 3402 if (dw2_map_expand_apply (objfile, per_cu, name, real_path,
14bc53a8
PA
3403 callback))
3404 return true;
288e77a7 3405 continue;
9291a0cd
TT
3406 }
3407 }
3408 }
3409 }
3410
14bc53a8 3411 return false;
9291a0cd
TT
3412}
3413
da51c347
DE
3414/* Struct used to manage iterating over all CUs looking for a symbol. */
3415
3416struct dw2_symtab_iterator
9291a0cd 3417{
ed2dc618 3418 /* The dwarf2_per_objfile owning the CUs we are iterating on. */
976ca316 3419 dwarf2_per_objfile *per_objfile;
2b79f376
SM
3420 /* If set, only look for symbols that match that block. Valid values are
3421 GLOBAL_BLOCK and STATIC_BLOCK. */
c7f839cb 3422 gdb::optional<block_enum> block_index;
da51c347
DE
3423 /* The kind of symbol we're looking for. */
3424 domain_enum domain;
3425 /* The list of CUs from the index entry of the symbol,
3426 or NULL if not found. */
3427 offset_type *vec;
3428 /* The next element in VEC to look at. */
3429 int next;
3430 /* The number of elements in VEC, or zero if there is no match. */
3431 int length;
8943b874
DE
3432 /* Have we seen a global version of the symbol?
3433 If so we can ignore all further global instances.
3434 This is to work around gold/15646, inefficient gold-generated
3435 indices. */
3436 int global_seen;
da51c347 3437};
9291a0cd 3438
2b79f376 3439/* Initialize the index symtab iterator ITER. */
2fdf6df6 3440
9291a0cd 3441static void
da51c347 3442dw2_symtab_iter_init (struct dw2_symtab_iterator *iter,
976ca316 3443 dwarf2_per_objfile *per_objfile,
c7f839cb 3444 gdb::optional<block_enum> block_index,
da51c347
DE
3445 domain_enum domain,
3446 const char *name)
3447{
976ca316 3448 iter->per_objfile = per_objfile;
da51c347
DE
3449 iter->block_index = block_index;
3450 iter->domain = domain;
3451 iter->next = 0;
8943b874 3452 iter->global_seen = 0;
da51c347 3453
976ca316 3454 mapped_index *index = per_objfile->per_bfd->index_table.get ();
ed2dc618
SM
3455
3456 /* index is NULL if OBJF_READNOW. */
3457 if (index != NULL && find_slot_in_mapped_hash (index, name, &iter->vec))
da51c347
DE
3458 iter->length = MAYBE_SWAP (*iter->vec);
3459 else
3460 {
3461 iter->vec = NULL;
3462 iter->length = 0;
3463 }
3464}
3465
3466/* Return the next matching CU or NULL if there are no more. */
3467
3468static struct dwarf2_per_cu_data *
3469dw2_symtab_iter_next (struct dw2_symtab_iterator *iter)
3470{
976ca316 3471 dwarf2_per_objfile *per_objfile = iter->per_objfile;
ed2dc618 3472
da51c347
DE
3473 for ( ; iter->next < iter->length; ++iter->next)
3474 {
3475 offset_type cu_index_and_attrs =
3476 MAYBE_SWAP (iter->vec[iter->next + 1]);
3477 offset_type cu_index = GDB_INDEX_CU_VALUE (cu_index_and_attrs);
da51c347
DE
3478 gdb_index_symbol_kind symbol_kind =
3479 GDB_INDEX_SYMBOL_KIND_VALUE (cu_index_and_attrs);
3480 /* Only check the symbol attributes if they're present.
3481 Indices prior to version 7 don't record them,
3482 and indices >= 7 may elide them for certain symbols
3483 (gold does this). */
3484 int attrs_valid =
976ca316 3485 (per_objfile->per_bfd->index_table->version >= 7
da51c347
DE
3486 && symbol_kind != GDB_INDEX_SYMBOL_KIND_NONE);
3487
3190f0c6 3488 /* Don't crash on bad data. */
976ca316
SM
3489 if (cu_index >= (per_objfile->per_bfd->all_comp_units.size ()
3490 + per_objfile->per_bfd->all_type_units.size ()))
3190f0c6 3491 {
b98664d3 3492 complaint (_(".gdb_index entry has bad CU index"
976ca316 3493 " [in module %s]"), objfile_name (per_objfile->objfile));
3190f0c6
DE
3494 continue;
3495 }
3496
976ca316 3497 dwarf2_per_cu_data *per_cu = per_objfile->per_bfd->get_cutu (cu_index);
3190f0c6 3498
da51c347 3499 /* Skip if already read in. */
976ca316 3500 if (per_objfile->symtab_set_p (per_cu))
da51c347
DE
3501 continue;
3502
8943b874
DE
3503 /* Check static vs global. */
3504 if (attrs_valid)
3505 {
2b79f376
SM
3506 bool is_static = GDB_INDEX_SYMBOL_STATIC_VALUE (cu_index_and_attrs);
3507
3508 if (iter->block_index.has_value ())
3509 {
3510 bool want_static = *iter->block_index == STATIC_BLOCK;
3511
3512 if (is_static != want_static)
3513 continue;
3514 }
3515
8943b874 3516 /* Work around gold/15646. */
f030440d
TV
3517 if (!is_static
3518 && symbol_kind == GDB_INDEX_SYMBOL_KIND_TYPE)
3519 {
3520 if (iter->global_seen)
3521 continue;
3522
3523 iter->global_seen = 1;
3524 }
8943b874 3525 }
da51c347
DE
3526
3527 /* Only check the symbol's kind if it has one. */
3528 if (attrs_valid)
3529 {
3530 switch (iter->domain)
3531 {
3532 case VAR_DOMAIN:
3533 if (symbol_kind != GDB_INDEX_SYMBOL_KIND_VARIABLE
3534 && symbol_kind != GDB_INDEX_SYMBOL_KIND_FUNCTION
3535 /* Some types are also in VAR_DOMAIN. */
3536 && symbol_kind != GDB_INDEX_SYMBOL_KIND_TYPE)
3537 continue;
3538 break;
3539 case STRUCT_DOMAIN:
3540 if (symbol_kind != GDB_INDEX_SYMBOL_KIND_TYPE)
3541 continue;
3542 break;
3543 case LABEL_DOMAIN:
3544 if (symbol_kind != GDB_INDEX_SYMBOL_KIND_OTHER)
3545 continue;
3546 break;
59c35742
AB
3547 case MODULE_DOMAIN:
3548 if (symbol_kind != GDB_INDEX_SYMBOL_KIND_OTHER)
3549 continue;
3550 break;
da51c347
DE
3551 default:
3552 break;
3553 }
3554 }
3555
3556 ++iter->next;
3557 return per_cu;
3558 }
3559
3560 return NULL;
3561}
3562
43f3e411 3563static struct compunit_symtab *
c7f839cb 3564dw2_lookup_symbol (struct objfile *objfile, block_enum block_index,
da51c347 3565 const char *name, domain_enum domain)
9291a0cd 3566{
43f3e411 3567 struct compunit_symtab *stab_best = NULL;
976ca316 3568 dwarf2_per_objfile *per_objfile = get_dwarf2_per_objfile (objfile);
9291a0cd 3569
b5ec771e
PA
3570 lookup_name_info lookup_name (name, symbol_name_match_type::FULL);
3571
ed2dc618
SM
3572 struct dw2_symtab_iterator iter;
3573 struct dwarf2_per_cu_data *per_cu;
da51c347 3574
976ca316 3575 dw2_symtab_iter_init (&iter, per_objfile, block_index, domain, name);
9291a0cd 3576
ed2dc618
SM
3577 while ((per_cu = dw2_symtab_iter_next (&iter)) != NULL)
3578 {
3579 struct symbol *sym, *with_opaque = NULL;
97a1449a 3580 struct compunit_symtab *stab
976ca316 3581 = dw2_instantiate_symtab (per_cu, per_objfile, false);
ed2dc618 3582 const struct blockvector *bv = COMPUNIT_BLOCKVECTOR (stab);
582942f4 3583 const struct block *block = BLOCKVECTOR_BLOCK (bv, block_index);
da51c347 3584
ed2dc618
SM
3585 sym = block_find_symbol (block, name, domain,
3586 block_find_non_opaque_type_preferred,
3587 &with_opaque);
b2e2f908 3588
ed2dc618
SM
3589 /* Some caution must be observed with overloaded functions
3590 and methods, since the index will not contain any overload
3591 information (but NAME might contain it). */
da51c347 3592
ed2dc618
SM
3593 if (sym != NULL
3594 && SYMBOL_MATCHES_SEARCH_NAME (sym, lookup_name))
3595 return stab;
3596 if (with_opaque != NULL
3597 && SYMBOL_MATCHES_SEARCH_NAME (with_opaque, lookup_name))
3598 stab_best = stab;
da51c347 3599
ed2dc618 3600 /* Keep looking through other CUs. */
9291a0cd 3601 }
9291a0cd 3602
da51c347 3603 return stab_best;
9291a0cd
TT
3604}
3605
3606static void
3607dw2_print_stats (struct objfile *objfile)
3608{
976ca316
SM
3609 dwarf2_per_objfile *per_objfile = get_dwarf2_per_objfile (objfile);
3610 int total = (per_objfile->per_bfd->all_comp_units.size ()
3611 + per_objfile->per_bfd->all_type_units.size ());
ed2dc618 3612 int count = 0;
9291a0cd 3613
ed2dc618 3614 for (int i = 0; i < total; ++i)
9291a0cd 3615 {
976ca316 3616 dwarf2_per_cu_data *per_cu = per_objfile->per_bfd->get_cutu (i);
9291a0cd 3617
976ca316 3618 if (!per_objfile->symtab_set_p (per_cu))
9291a0cd
TT
3619 ++count;
3620 }
e4a48d9d 3621 printf_filtered (_(" Number of read CUs: %d\n"), total - count);
9291a0cd
TT
3622 printf_filtered (_(" Number of unread CUs: %d\n"), count);
3623}
3624
779bd270
DE
3625/* This dumps minimal information about the index.
3626 It is called via "mt print objfiles".
3627 One use is to verify .gdb_index has been loaded by the
3628 gdb.dwarf2/gdb-index.exp testcase. */
3629
9291a0cd
TT
3630static void
3631dw2_dump (struct objfile *objfile)
3632{
976ca316 3633 dwarf2_per_objfile *per_objfile = get_dwarf2_per_objfile (objfile);
ed2dc618 3634
976ca316 3635 gdb_assert (per_objfile->per_bfd->using_index);
779bd270 3636 printf_filtered (".gdb_index:");
976ca316 3637 if (per_objfile->per_bfd->index_table != NULL)
779bd270
DE
3638 {
3639 printf_filtered (" version %d\n",
976ca316 3640 per_objfile->per_bfd->index_table->version);
779bd270
DE
3641 }
3642 else
3643 printf_filtered (" faked for \"readnow\"\n");
3644 printf_filtered ("\n");
9291a0cd
TT
3645}
3646
9291a0cd
TT
3647static void
3648dw2_expand_symtabs_for_function (struct objfile *objfile,
3649 const char *func_name)
3650{
976ca316 3651 dwarf2_per_objfile *per_objfile = get_dwarf2_per_objfile (objfile);
da51c347 3652
ed2dc618
SM
3653 struct dw2_symtab_iterator iter;
3654 struct dwarf2_per_cu_data *per_cu;
da51c347 3655
976ca316 3656 dw2_symtab_iter_init (&iter, per_objfile, {}, VAR_DOMAIN, func_name);
da51c347 3657
ed2dc618 3658 while ((per_cu = dw2_symtab_iter_next (&iter)) != NULL)
976ca316 3659 dw2_instantiate_symtab (per_cu, per_objfile, false);
da51c347 3660
9291a0cd
TT
3661}
3662
3663static void
3664dw2_expand_all_symtabs (struct objfile *objfile)
3665{
976ca316
SM
3666 dwarf2_per_objfile *per_objfile = get_dwarf2_per_objfile (objfile);
3667 int total_units = (per_objfile->per_bfd->all_comp_units.size ()
3668 + per_objfile->per_bfd->all_type_units.size ());
9291a0cd 3669
ed2dc618 3670 for (int i = 0; i < total_units; ++i)
9291a0cd 3671 {
976ca316 3672 dwarf2_per_cu_data *per_cu = per_objfile->per_bfd->get_cutu (i);
9291a0cd 3673
58f0c718
TT
3674 /* We don't want to directly expand a partial CU, because if we
3675 read it with the wrong language, then assertion failures can
3676 be triggered later on. See PR symtab/23010. So, tell
3677 dw2_instantiate_symtab to skip partial CUs -- any important
3678 partial CU will be read via DW_TAG_imported_unit anyway. */
976ca316 3679 dw2_instantiate_symtab (per_cu, per_objfile, true);
9291a0cd
TT
3680 }
3681}
3682
3683static void
652a8996
JK
3684dw2_expand_symtabs_with_fullname (struct objfile *objfile,
3685 const char *fullname)
9291a0cd 3686{
976ca316 3687 dwarf2_per_objfile *per_objfile = get_dwarf2_per_objfile (objfile);
d4637a04
DE
3688
3689 /* We don't need to consider type units here.
3690 This is only called for examining code, e.g. expand_line_sal.
3691 There can be an order of magnitude (or more) more type units
3692 than comp units, and we avoid them if we can. */
3693
976ca316 3694 for (dwarf2_per_cu_data *per_cu : per_objfile->per_bfd->all_comp_units)
9291a0cd 3695 {
3d7bb9d9 3696 /* We only need to look at symtabs not already expanded. */
976ca316 3697 if (per_objfile->symtab_set_p (per_cu))
9291a0cd
TT
3698 continue;
3699
976ca316 3700 quick_file_names *file_data = dw2_get_file_names (per_cu, per_objfile);
7b9f3c50 3701 if (file_data == NULL)
9291a0cd
TT
3702 continue;
3703
b76e467d 3704 for (int j = 0; j < file_data->num_file_names; ++j)
9291a0cd 3705 {
652a8996
JK
3706 const char *this_fullname = file_data->file_names[j];
3707
3708 if (filename_cmp (this_fullname, fullname) == 0)
9291a0cd 3709 {
976ca316 3710 dw2_instantiate_symtab (per_cu, per_objfile, false);
9291a0cd
TT
3711 break;
3712 }
3713 }
3714 }
3715}
3716
9a0bacfb
TV
3717static void
3718dw2_expand_symtabs_matching_symbol
3719 (mapped_index_base &index,
3720 const lookup_name_info &lookup_name_in,
3721 gdb::function_view<expand_symtabs_symbol_matcher_ftype> symbol_matcher,
3722 enum search_domain kind,
fcf23d5b
SM
3723 gdb::function_view<bool (offset_type)> match_callback,
3724 dwarf2_per_objfile *per_objfile);
9a0bacfb
TV
3725
3726static void
3727dw2_expand_symtabs_matching_one
97a1449a
SM
3728 (dwarf2_per_cu_data *per_cu,
3729 dwarf2_per_objfile *per_objfile,
9a0bacfb
TV
3730 gdb::function_view<expand_symtabs_file_matcher_ftype> file_matcher,
3731 gdb::function_view<expand_symtabs_exp_notify_ftype> expansion_notify);
3732
9291a0cd 3733static void
199b4314
TT
3734dw2_map_matching_symbols
3735 (struct objfile *objfile,
b054970d 3736 const lookup_name_info &name, domain_enum domain,
199b4314
TT
3737 int global,
3738 gdb::function_view<symbol_found_callback_ftype> callback,
199b4314 3739 symbol_compare_ftype *ordered_compare)
9291a0cd 3740{
1aa98955 3741 /* Used for Ada. */
976ca316 3742 dwarf2_per_objfile *per_objfile = get_dwarf2_per_objfile (objfile);
1aa98955 3743
9a0bacfb
TV
3744 const block_enum block_kind = global ? GLOBAL_BLOCK : STATIC_BLOCK;
3745
976ca316 3746 if (per_objfile->per_bfd->index_table != nullptr)
1aa98955
TV
3747 {
3748 /* Ada currently doesn't support .gdb_index (see PR24713). We can get
3749 here though if the current language is Ada for a non-Ada objfile
9a0bacfb 3750 using GNU index. */
976ca316 3751 mapped_index &index = *per_objfile->per_bfd->index_table;
1aa98955 3752
9a0bacfb
TV
3753 const char *match_name = name.ada ().lookup_name ().c_str ();
3754 auto matcher = [&] (const char *symname)
3755 {
3756 if (ordered_compare == nullptr)
3757 return true;
3758 return ordered_compare (symname, match_name) == 0;
3759 };
3760
3761 dw2_expand_symtabs_matching_symbol (index, name, matcher, ALL_DOMAIN,
3762 [&] (offset_type namei)
3763 {
3764 struct dw2_symtab_iterator iter;
3765 struct dwarf2_per_cu_data *per_cu;
3766
976ca316 3767 dw2_symtab_iter_init (&iter, per_objfile, block_kind, domain,
9a0bacfb
TV
3768 match_name);
3769 while ((per_cu = dw2_symtab_iter_next (&iter)) != NULL)
976ca316 3770 dw2_expand_symtabs_matching_one (per_cu, per_objfile, nullptr,
97a1449a 3771 nullptr);
9a0bacfb 3772 return true;
976ca316 3773 }, per_objfile);
9a0bacfb
TV
3774 }
3775 else
3776 {
3777 /* We have -readnow: no .gdb_index, but no partial symtabs either. So,
3778 proceed assuming all symtabs have been read in. */
3779 }
1aa98955
TV
3780
3781 for (compunit_symtab *cust : objfile->compunits ())
3782 {
3783 const struct block *block;
3784
3785 if (cust == NULL)
3786 continue;
3787 block = BLOCKVECTOR_BLOCK (COMPUNIT_BLOCKVECTOR (cust), block_kind);
3788 if (!iterate_over_symbols_terminated (block, name,
3789 domain, callback))
3790 return;
3791 }
9291a0cd
TT
3792}
3793
e1ef7d7a
PA
3794/* Starting from a search name, return the string that finds the upper
3795 bound of all strings that start with SEARCH_NAME in a sorted name
3796 list. Returns the empty string to indicate that the upper bound is
3797 the end of the list. */
3798
3799static std::string
3800make_sort_after_prefix_name (const char *search_name)
3801{
3802 /* When looking to complete "func", we find the upper bound of all
3803 symbols that start with "func" by looking for where we'd insert
3804 the closest string that would follow "func" in lexicographical
3805 order. Usually, that's "func"-with-last-character-incremented,
3806 i.e. "fund". Mind non-ASCII characters, though. Usually those
3807 will be UTF-8 multi-byte sequences, but we can't be certain.
3808 Especially mind the 0xff character, which is a valid character in
3809 non-UTF-8 source character sets (e.g. Latin1 'ÿ'), and we can't
3810 rule out compilers allowing it in identifiers. Note that
3811 conveniently, strcmp/strcasecmp are specified to compare
3812 characters interpreted as unsigned char. So what we do is treat
3813 the whole string as a base 256 number composed of a sequence of
3814 base 256 "digits" and add 1 to it. I.e., adding 1 to 0xff wraps
3815 to 0, and carries 1 to the following more-significant position.
3816 If the very first character in SEARCH_NAME ends up incremented
3817 and carries/overflows, then the upper bound is the end of the
3818 list. The string after the empty string is also the empty
3819 string.
3820
3821 Some examples of this operation:
3822
3823 SEARCH_NAME => "+1" RESULT
3824
3825 "abc" => "abd"
3826 "ab\xff" => "ac"
3827 "\xff" "a" "\xff" => "\xff" "b"
3828 "\xff" => ""
3829 "\xff\xff" => ""
3830 "" => ""
3831
3832 Then, with these symbols for example:
3833
3834 func
3835 func1
3836 fund
3837
3838 completing "func" looks for symbols between "func" and
3839 "func"-with-last-character-incremented, i.e. "fund" (exclusive),
3840 which finds "func" and "func1", but not "fund".
3841
3842 And with:
3843
3844 funcÿ (Latin1 'ÿ' [0xff])
3845 funcÿ1
3846 fund
3847
3848 completing "funcÿ" looks for symbols between "funcÿ" and "fund"
3849 (exclusive), which finds "funcÿ" and "funcÿ1", but not "fund".
3850
3851 And with:
3852
3853 ÿÿ (Latin1 'ÿ' [0xff])
3854 ÿÿ1
3855
3856 completing "ÿ" or "ÿÿ" looks for symbols between between "ÿÿ" and
3857 the end of the list.
3858 */
3859 std::string after = search_name;
3860 while (!after.empty () && (unsigned char) after.back () == 0xff)
3861 after.pop_back ();
3862 if (!after.empty ())
3863 after.back () = (unsigned char) after.back () + 1;
3864 return after;
3865}
3866
5c58de74 3867/* See declaration. */
61d96d7e 3868
5c58de74
PA
3869std::pair<std::vector<name_component>::const_iterator,
3870 std::vector<name_component>::const_iterator>
44ed8f3e 3871mapped_index_base::find_name_components_bounds
fcf23d5b
SM
3872 (const lookup_name_info &lookup_name_without_params, language lang,
3873 dwarf2_per_objfile *per_objfile) const
3f563c84 3874{
5c58de74
PA
3875 auto *name_cmp
3876 = this->name_components_casing == case_sensitive_on ? strcmp : strcasecmp;
3f563c84 3877
3b00ef10 3878 const char *lang_name
e0802d59 3879 = lookup_name_without_params.language_lookup_name (lang);
9291a0cd 3880
3f563c84
PA
3881 /* Comparison function object for lower_bound that matches against a
3882 given symbol name. */
3883 auto lookup_compare_lower = [&] (const name_component &elem,
3884 const char *name)
3885 {
fcf23d5b 3886 const char *elem_qualified = this->symbol_name_at (elem.idx, per_objfile);
3f563c84
PA
3887 const char *elem_name = elem_qualified + elem.name_offset;
3888 return name_cmp (elem_name, name) < 0;
3889 };
3890
3891 /* Comparison function object for upper_bound that matches against a
3892 given symbol name. */
3893 auto lookup_compare_upper = [&] (const char *name,
3894 const name_component &elem)
3895 {
fcf23d5b 3896 const char *elem_qualified = this->symbol_name_at (elem.idx, per_objfile);
3f563c84
PA
3897 const char *elem_name = elem_qualified + elem.name_offset;
3898 return name_cmp (name, elem_name) < 0;
3899 };
3900
5c58de74
PA
3901 auto begin = this->name_components.begin ();
3902 auto end = this->name_components.end ();
3f563c84
PA
3903
3904 /* Find the lower bound. */
3905 auto lower = [&] ()
3906 {
3b00ef10 3907 if (lookup_name_without_params.completion_mode () && lang_name[0] == '\0')
3f563c84
PA
3908 return begin;
3909 else
3b00ef10 3910 return std::lower_bound (begin, end, lang_name, lookup_compare_lower);
3f563c84
PA
3911 } ();
3912
3913 /* Find the upper bound. */
3914 auto upper = [&] ()
3915 {
5c58de74 3916 if (lookup_name_without_params.completion_mode ())
3f563c84 3917 {
e1ef7d7a
PA
3918 /* In completion mode, we want UPPER to point past all
3919 symbols names that have the same prefix. I.e., with
3920 these symbols, and completing "func":
3921
3922 function << lower bound
3923 function1
3924 other_function << upper bound
3925
3926 We find the upper bound by looking for the insertion
3927 point of "func"-with-last-character-incremented,
3928 i.e. "fund". */
3b00ef10 3929 std::string after = make_sort_after_prefix_name (lang_name);
e1ef7d7a 3930 if (after.empty ())
3f563c84 3931 return end;
e6b2f5ef
PA
3932 return std::lower_bound (lower, end, after.c_str (),
3933 lookup_compare_lower);
3f563c84
PA
3934 }
3935 else
3b00ef10 3936 return std::upper_bound (lower, end, lang_name, lookup_compare_upper);
3f563c84
PA
3937 } ();
3938
5c58de74
PA
3939 return {lower, upper};
3940}
3941
3942/* See declaration. */
3943
3944void
fcf23d5b 3945mapped_index_base::build_name_components (dwarf2_per_objfile *per_objfile)
5c58de74
PA
3946{
3947 if (!this->name_components.empty ())
3948 return;
3949
3950 this->name_components_casing = case_sensitivity;
3951 auto *name_cmp
3952 = this->name_components_casing == case_sensitive_on ? strcmp : strcasecmp;
3953
3954 /* The code below only knows how to break apart components of C++
3955 symbol names (and other languages that use '::' as
3b00ef10 3956 namespace/module separator) and Ada symbol names. */
44ed8f3e
PA
3957 auto count = this->symbol_name_count ();
3958 for (offset_type idx = 0; idx < count; idx++)
5c58de74 3959 {
44ed8f3e 3960 if (this->symbol_name_slot_invalid (idx))
5c58de74
PA
3961 continue;
3962
fcf23d5b 3963 const char *name = this->symbol_name_at (idx, per_objfile);
5c58de74
PA
3964
3965 /* Add each name component to the name component table. */
3966 unsigned int previous_len = 0;
3b00ef10
TT
3967
3968 if (strstr (name, "::") != nullptr)
3969 {
3970 for (unsigned int current_len = cp_find_first_component (name);
3971 name[current_len] != '\0';
3972 current_len += cp_find_first_component (name + current_len))
3973 {
3974 gdb_assert (name[current_len] == ':');
3975 this->name_components.push_back ({previous_len, idx});
3976 /* Skip the '::'. */
3977 current_len += 2;
3978 previous_len = current_len;
3979 }
3980 }
3981 else
5c58de74 3982 {
3b00ef10
TT
3983 /* Handle the Ada encoded (aka mangled) form here. */
3984 for (const char *iter = strstr (name, "__");
3985 iter != nullptr;
3986 iter = strstr (iter, "__"))
3987 {
3988 this->name_components.push_back ({previous_len, idx});
3989 iter += 2;
3990 previous_len = iter - name;
3991 }
5c58de74 3992 }
3b00ef10 3993
5c58de74
PA
3994 this->name_components.push_back ({previous_len, idx});
3995 }
3996
3997 /* Sort name_components elements by name. */
3998 auto name_comp_compare = [&] (const name_component &left,
3999 const name_component &right)
4000 {
fcf23d5b
SM
4001 const char *left_qualified
4002 = this->symbol_name_at (left.idx, per_objfile);
4003 const char *right_qualified
4004 = this->symbol_name_at (right.idx, per_objfile);
5c58de74
PA
4005
4006 const char *left_name = left_qualified + left.name_offset;
4007 const char *right_name = right_qualified + right.name_offset;
4008
4009 return name_cmp (left_name, right_name) < 0;
4010 };
4011
4012 std::sort (this->name_components.begin (),
4013 this->name_components.end (),
4014 name_comp_compare);
4015}
4016
4017/* Helper for dw2_expand_symtabs_matching that works with a
44ed8f3e
PA
4018 mapped_index_base instead of the containing objfile. This is split
4019 to a separate function in order to be able to unit test the
4020 name_components matching using a mock mapped_index_base. For each
5c58de74 4021 symbol name that matches, calls MATCH_CALLBACK, passing it the
44ed8f3e 4022 symbol's index in the mapped_index_base symbol table. */
5c58de74
PA
4023
4024static void
4025dw2_expand_symtabs_matching_symbol
44ed8f3e 4026 (mapped_index_base &index,
5c58de74
PA
4027 const lookup_name_info &lookup_name_in,
4028 gdb::function_view<expand_symtabs_symbol_matcher_ftype> symbol_matcher,
4029 enum search_domain kind,
fcf23d5b
SM
4030 gdb::function_view<bool (offset_type)> match_callback,
4031 dwarf2_per_objfile *per_objfile)
5c58de74
PA
4032{
4033 lookup_name_info lookup_name_without_params
4034 = lookup_name_in.make_ignore_params ();
5c58de74
PA
4035
4036 /* Build the symbol name component sorted vector, if we haven't
4037 yet. */
fcf23d5b 4038 index.build_name_components (per_objfile);
5c58de74 4039
3f563c84
PA
4040 /* The same symbol may appear more than once in the range though.
4041 E.g., if we're looking for symbols that complete "w", and we have
4042 a symbol named "w1::w2", we'll find the two name components for
4043 that same symbol in the range. To be sure we only call the
4044 callback once per symbol, we first collect the symbol name
4045 indexes that matched in a temporary vector and ignore
4046 duplicates. */
4047 std::vector<offset_type> matches;
3f563c84 4048
3b00ef10
TT
4049 struct name_and_matcher
4050 {
4051 symbol_name_matcher_ftype *matcher;
ecc6c606 4052 const char *name;
3b00ef10
TT
4053
4054 bool operator== (const name_and_matcher &other) const
3f563c84 4055 {
ecc6c606 4056 return matcher == other.matcher && strcmp (name, other.name) == 0;
3b00ef10
TT
4057 }
4058 };
4059
4060 /* A vector holding all the different symbol name matchers, for all
4061 languages. */
4062 std::vector<name_and_matcher> matchers;
4063
4064 for (int i = 0; i < nr_languages; i++)
4065 {
4066 enum language lang_e = (enum language) i;
4067
4068 const language_defn *lang = language_def (lang_e);
4069 symbol_name_matcher_ftype *name_matcher
4070 = get_symbol_name_matcher (lang, lookup_name_without_params);
3f563c84 4071
3b00ef10
TT
4072 name_and_matcher key {
4073 name_matcher,
4074 lookup_name_without_params.language_lookup_name (lang_e)
4075 };
4076
4077 /* Don't insert the same comparison routine more than once.
4078 Note that we do this linear walk. This is not a problem in
4079 practice because the number of supported languages is
4080 low. */
4081 if (std::find (matchers.begin (), matchers.end (), key)
4082 != matchers.end ())
9291a0cd 4083 continue;
3b00ef10
TT
4084 matchers.push_back (std::move (key));
4085
4086 auto bounds
4087 = index.find_name_components_bounds (lookup_name_without_params,
fcf23d5b 4088 lang_e, per_objfile);
3b00ef10
TT
4089
4090 /* Now for each symbol name in range, check to see if we have a name
4091 match, and if so, call the MATCH_CALLBACK callback. */
4092
4093 for (; bounds.first != bounds.second; ++bounds.first)
4094 {
fcf23d5b
SM
4095 const char *qualified
4096 = index.symbol_name_at (bounds.first->idx, per_objfile);
3b00ef10
TT
4097
4098 if (!name_matcher (qualified, lookup_name_without_params, NULL)
4099 || (symbol_matcher != NULL && !symbol_matcher (qualified)))
4100 continue;
9291a0cd 4101
3b00ef10
TT
4102 matches.push_back (bounds.first->idx);
4103 }
3f563c84
PA
4104 }
4105
4106 std::sort (matches.begin (), matches.end ());
4107
4108 /* Finally call the callback, once per match. */
4109 ULONGEST prev = -1;
4110 for (offset_type idx : matches)
4111 {
4112 if (prev != idx)
4113 {
3b00ef10
TT
4114 if (!match_callback (idx))
4115 break;
3f563c84
PA
4116 prev = idx;
4117 }
4118 }
4119
4120 /* Above we use a type wider than idx's for 'prev', since 0 and
4121 (offset_type)-1 are both possible values. */
4122 static_assert (sizeof (prev) > sizeof (offset_type), "");
4123}
4124
c62446b1
PA
4125#if GDB_SELF_TEST
4126
4127namespace selftests { namespace dw2_expand_symtabs_matching {
4128
a3c5fafd
PA
4129/* A mock .gdb_index/.debug_names-like name index table, enough to
4130 exercise dw2_expand_symtabs_matching_symbol, which works with the
4131 mapped_index_base interface. Builds an index from the symbol list
4132 passed as parameter to the constructor. */
4133class mock_mapped_index : public mapped_index_base
c62446b1
PA
4134{
4135public:
a3c5fafd
PA
4136 mock_mapped_index (gdb::array_view<const char *> symbols)
4137 : m_symbol_table (symbols)
c62446b1
PA
4138 {}
4139
a3c5fafd 4140 DISABLE_COPY_AND_ASSIGN (mock_mapped_index);
c62446b1 4141
a3c5fafd 4142 /* Return the number of names in the symbol table. */
632e107b 4143 size_t symbol_name_count () const override
c62446b1 4144 {
a3c5fafd 4145 return m_symbol_table.size ();
c62446b1
PA
4146 }
4147
a3c5fafd 4148 /* Get the name of the symbol at IDX in the symbol table. */
fcf23d5b
SM
4149 const char *symbol_name_at
4150 (offset_type idx, dwarf2_per_objfile *per_objfile) const override
a3c5fafd
PA
4151 {
4152 return m_symbol_table[idx];
4153 }
c62446b1 4154
a3c5fafd
PA
4155private:
4156 gdb::array_view<const char *> m_symbol_table;
c62446b1
PA
4157};
4158
4159/* Convenience function that converts a NULL pointer to a "<null>"
4160 string, to pass to print routines. */
4161
4162static const char *
4163string_or_null (const char *str)
4164{
4165 return str != NULL ? str : "<null>";
4166}
4167
4168/* Check if a lookup_name_info built from
4169 NAME/MATCH_TYPE/COMPLETION_MODE matches the symbols in the mock
4170 index. EXPECTED_LIST is the list of expected matches, in expected
4171 matching order. If no match expected, then an empty list is
4172 specified. Returns true on success. On failure prints a warning
4173 indicating the file:line that failed, and returns false. */
4174
4175static bool
4176check_match (const char *file, int line,
4177 mock_mapped_index &mock_index,
4178 const char *name, symbol_name_match_type match_type,
4179 bool completion_mode,
fcf23d5b
SM
4180 std::initializer_list<const char *> expected_list,
4181 dwarf2_per_objfile *per_objfile)
c62446b1
PA
4182{
4183 lookup_name_info lookup_name (name, match_type, completion_mode);
4184
4185 bool matched = true;
4186
4187 auto mismatch = [&] (const char *expected_str,
4188 const char *got)
4189 {
4190 warning (_("%s:%d: match_type=%s, looking-for=\"%s\", "
4191 "expected=\"%s\", got=\"%s\"\n"),
4192 file, line,
4193 (match_type == symbol_name_match_type::FULL
4194 ? "FULL" : "WILD"),
4195 name, string_or_null (expected_str), string_or_null (got));
4196 matched = false;
4197 };
4198
4199 auto expected_it = expected_list.begin ();
4200 auto expected_end = expected_list.end ();
4201
a3c5fafd 4202 dw2_expand_symtabs_matching_symbol (mock_index, lookup_name,
c62446b1
PA
4203 NULL, ALL_DOMAIN,
4204 [&] (offset_type idx)
4205 {
fcf23d5b 4206 const char *matched_name = mock_index.symbol_name_at (idx, per_objfile);
c62446b1
PA
4207 const char *expected_str
4208 = expected_it == expected_end ? NULL : *expected_it++;
4209
4210 if (expected_str == NULL || strcmp (expected_str, matched_name) != 0)
4211 mismatch (expected_str, matched_name);
3b00ef10 4212 return true;
fcf23d5b 4213 }, per_objfile);
c62446b1
PA
4214
4215 const char *expected_str
4216 = expected_it == expected_end ? NULL : *expected_it++;
4217 if (expected_str != NULL)
4218 mismatch (expected_str, NULL);
4219
4220 return matched;
4221}
4222
4223/* The symbols added to the mock mapped_index for testing (in
4224 canonical form). */
4225static const char *test_symbols[] = {
4226 "function",
4227 "std::bar",
4228 "std::zfunction",
4229 "std::zfunction2",
4230 "w1::w2",
4231 "ns::foo<char*>",
4232 "ns::foo<int>",
4233 "ns::foo<long>",
a20714ff
PA
4234 "ns2::tmpl<int>::foo2",
4235 "(anonymous namespace)::A::B::C",
c62446b1 4236
e1ef7d7a
PA
4237 /* These are used to check that the increment-last-char in the
4238 matching algorithm for completion doesn't match "t1_fund" when
4239 completing "t1_func". */
4240 "t1_func",
4241 "t1_func1",
4242 "t1_fund",
4243 "t1_fund1",
4244
4245 /* A UTF-8 name with multi-byte sequences to make sure that
4246 cp-name-parser understands this as a single identifier ("função"
4247 is "function" in PT). */
4248 u8"u8função",
4249
4250 /* \377 (0xff) is Latin1 'ÿ'. */
4251 "yfunc\377",
4252
4253 /* \377 (0xff) is Latin1 'ÿ'. */
4254 "\377",
4255 "\377\377123",
4256
c62446b1
PA
4257 /* A name with all sorts of complications. Starts with "z" to make
4258 it easier for the completion tests below. */
4259#define Z_SYM_NAME \
4260 "z::std::tuple<(anonymous namespace)::ui*, std::bar<(anonymous namespace)::ui> >" \
4261 "::tuple<(anonymous namespace)::ui*, " \
4262 "std::default_delete<(anonymous namespace)::ui>, void>"
4263
4264 Z_SYM_NAME
4265};
4266
a3c5fafd
PA
4267/* Returns true if the mapped_index_base::find_name_component_bounds
4268 method finds EXPECTED_SYMS in INDEX when looking for SEARCH_NAME,
4269 in completion mode. */
5c58de74
PA
4270
4271static bool
a3c5fafd 4272check_find_bounds_finds (mapped_index_base &index,
5c58de74 4273 const char *search_name,
fcf23d5b
SM
4274 gdb::array_view<const char *> expected_syms,
4275 dwarf2_per_objfile *per_objfile)
5c58de74
PA
4276{
4277 lookup_name_info lookup_name (search_name,
4278 symbol_name_match_type::FULL, true);
4279
3b00ef10 4280 auto bounds = index.find_name_components_bounds (lookup_name,
fcf23d5b
SM
4281 language_cplus,
4282 per_objfile);
5c58de74
PA
4283
4284 size_t distance = std::distance (bounds.first, bounds.second);
4285 if (distance != expected_syms.size ())
4286 return false;
4287
4288 for (size_t exp_elem = 0; exp_elem < distance; exp_elem++)
4289 {
4290 auto nc_elem = bounds.first + exp_elem;
fcf23d5b 4291 const char *qualified = index.symbol_name_at (nc_elem->idx, per_objfile);
5c58de74
PA
4292 if (strcmp (qualified, expected_syms[exp_elem]) != 0)
4293 return false;
4294 }
4295
4296 return true;
4297}
4298
4299/* Test the lower-level mapped_index::find_name_component_bounds
4300 method. */
4301
c62446b1 4302static void
5c58de74
PA
4303test_mapped_index_find_name_component_bounds ()
4304{
4305 mock_mapped_index mock_index (test_symbols);
4306
fcf23d5b 4307 mock_index.build_name_components (NULL /* per_objfile */);
5c58de74
PA
4308
4309 /* Test the lower-level mapped_index::find_name_component_bounds
4310 method in completion mode. */
4311 {
4312 static const char *expected_syms[] = {
4313 "t1_func",
4314 "t1_func1",
5c58de74
PA
4315 };
4316
fcf23d5b
SM
4317 SELF_CHECK (check_find_bounds_finds
4318 (mock_index, "t1_func", expected_syms,
4319 NULL /* per_objfile */));
5c58de74
PA
4320 }
4321
4322 /* Check that the increment-last-char in the name matching algorithm
4323 for completion doesn't get confused with Ansi1 'ÿ' / 0xff. */
4324 {
4325 static const char *expected_syms1[] = {
4326 "\377",
4327 "\377\377123",
4328 };
fcf23d5b
SM
4329 SELF_CHECK (check_find_bounds_finds
4330 (mock_index, "\377", expected_syms1, NULL /* per_objfile */));
5c58de74
PA
4331
4332 static const char *expected_syms2[] = {
4333 "\377\377123",
4334 };
fcf23d5b
SM
4335 SELF_CHECK (check_find_bounds_finds
4336 (mock_index, "\377\377", expected_syms2,
4337 NULL /* per_objfile */));
5c58de74
PA
4338 }
4339}
4340
4341/* Test dw2_expand_symtabs_matching_symbol. */
4342
4343static void
4344test_dw2_expand_symtabs_matching_symbol ()
c62446b1
PA
4345{
4346 mock_mapped_index mock_index (test_symbols);
4347
4348 /* We let all tests run until the end even if some fails, for debug
4349 convenience. */
4350 bool any_mismatch = false;
4351
4352 /* Create the expected symbols list (an initializer_list). Needed
4353 because lists have commas, and we need to pass them to CHECK,
4354 which is a macro. */
4355#define EXPECT(...) { __VA_ARGS__ }
4356
4357 /* Wrapper for check_match that passes down the current
4358 __FILE__/__LINE__. */
4359#define CHECK_MATCH(NAME, MATCH_TYPE, COMPLETION_MODE, EXPECTED_LIST) \
4360 any_mismatch |= !check_match (__FILE__, __LINE__, \
4361 mock_index, \
4362 NAME, MATCH_TYPE, COMPLETION_MODE, \
fcf23d5b 4363 EXPECTED_LIST, NULL)
c62446b1
PA
4364
4365 /* Identity checks. */
4366 for (const char *sym : test_symbols)
4367 {
4368 /* Should be able to match all existing symbols. */
4369 CHECK_MATCH (sym, symbol_name_match_type::FULL, false,
4370 EXPECT (sym));
4371
4372 /* Should be able to match all existing symbols with
4373 parameters. */
4374 std::string with_params = std::string (sym) + "(int)";
4375 CHECK_MATCH (with_params.c_str (), symbol_name_match_type::FULL, false,
4376 EXPECT (sym));
4377
4378 /* Should be able to match all existing symbols with
4379 parameters and qualifiers. */
4380 with_params = std::string (sym) + " ( int ) const";
4381 CHECK_MATCH (with_params.c_str (), symbol_name_match_type::FULL, false,
4382 EXPECT (sym));
4383
4384 /* This should really find sym, but cp-name-parser.y doesn't
4385 know about lvalue/rvalue qualifiers yet. */
4386 with_params = std::string (sym) + " ( int ) &&";
4387 CHECK_MATCH (with_params.c_str (), symbol_name_match_type::FULL, false,
4388 {});
4389 }
4390
e1ef7d7a
PA
4391 /* Check that the name matching algorithm for completion doesn't get
4392 confused with Latin1 'ÿ' / 0xff. */
4393 {
4394 static const char str[] = "\377";
4395 CHECK_MATCH (str, symbol_name_match_type::FULL, true,
4396 EXPECT ("\377", "\377\377123"));
4397 }
4398
4399 /* Check that the increment-last-char in the matching algorithm for
4400 completion doesn't match "t1_fund" when completing "t1_func". */
4401 {
4402 static const char str[] = "t1_func";
4403 CHECK_MATCH (str, symbol_name_match_type::FULL, true,
4404 EXPECT ("t1_func", "t1_func1"));
4405 }
4406
c62446b1
PA
4407 /* Check that completion mode works at each prefix of the expected
4408 symbol name. */
4409 {
4410 static const char str[] = "function(int)";
4411 size_t len = strlen (str);
4412 std::string lookup;
4413
4414 for (size_t i = 1; i < len; i++)
4415 {
4416 lookup.assign (str, i);
4417 CHECK_MATCH (lookup.c_str (), symbol_name_match_type::FULL, true,
4418 EXPECT ("function"));
4419 }
4420 }
4421
4422 /* While "w" is a prefix of both components, the match function
4423 should still only be called once. */
4424 {
4425 CHECK_MATCH ("w", symbol_name_match_type::FULL, true,
4426 EXPECT ("w1::w2"));
a20714ff
PA
4427 CHECK_MATCH ("w", symbol_name_match_type::WILD, true,
4428 EXPECT ("w1::w2"));
c62446b1
PA
4429 }
4430
4431 /* Same, with a "complicated" symbol. */
4432 {
4433 static const char str[] = Z_SYM_NAME;
4434 size_t len = strlen (str);
4435 std::string lookup;
4436
4437 for (size_t i = 1; i < len; i++)
4438 {
4439 lookup.assign (str, i);
4440 CHECK_MATCH (lookup.c_str (), symbol_name_match_type::FULL, true,
4441 EXPECT (Z_SYM_NAME));
4442 }
4443 }
4444
4445 /* In FULL mode, an incomplete symbol doesn't match. */
4446 {
4447 CHECK_MATCH ("std::zfunction(int", symbol_name_match_type::FULL, false,
4448 {});
4449 }
4450
4451 /* A complete symbol with parameters matches any overload, since the
4452 index has no overload info. */
4453 {
4454 CHECK_MATCH ("std::zfunction(int)", symbol_name_match_type::FULL, true,
4455 EXPECT ("std::zfunction", "std::zfunction2"));
a20714ff
PA
4456 CHECK_MATCH ("zfunction(int)", symbol_name_match_type::WILD, true,
4457 EXPECT ("std::zfunction", "std::zfunction2"));
4458 CHECK_MATCH ("zfunc", symbol_name_match_type::WILD, true,
4459 EXPECT ("std::zfunction", "std::zfunction2"));
c62446b1
PA
4460 }
4461
4462 /* Check that whitespace is ignored appropriately. A symbol with a
4463 template argument list. */
4464 {
4465 static const char expected[] = "ns::foo<int>";
4466 CHECK_MATCH ("ns :: foo < int > ", symbol_name_match_type::FULL, false,
4467 EXPECT (expected));
a20714ff
PA
4468 CHECK_MATCH ("foo < int > ", symbol_name_match_type::WILD, false,
4469 EXPECT (expected));
c62446b1
PA
4470 }
4471
4472 /* Check that whitespace is ignored appropriately. A symbol with a
4473 template argument list that includes a pointer. */
4474 {
4475 static const char expected[] = "ns::foo<char*>";
4476 /* Try both completion and non-completion modes. */
4477 static const bool completion_mode[2] = {false, true};
4478 for (size_t i = 0; i < 2; i++)
4479 {
4480 CHECK_MATCH ("ns :: foo < char * >", symbol_name_match_type::FULL,
4481 completion_mode[i], EXPECT (expected));
a20714ff
PA
4482 CHECK_MATCH ("foo < char * >", symbol_name_match_type::WILD,
4483 completion_mode[i], EXPECT (expected));
c62446b1
PA
4484
4485 CHECK_MATCH ("ns :: foo < char * > (int)", symbol_name_match_type::FULL,
4486 completion_mode[i], EXPECT (expected));
a20714ff
PA
4487 CHECK_MATCH ("foo < char * > (int)", symbol_name_match_type::WILD,
4488 completion_mode[i], EXPECT (expected));
c62446b1
PA
4489 }
4490 }
4491
4492 {
4493 /* Check method qualifiers are ignored. */
4494 static const char expected[] = "ns::foo<char*>";
4495 CHECK_MATCH ("ns :: foo < char * > ( int ) const",
4496 symbol_name_match_type::FULL, true, EXPECT (expected));
4497 CHECK_MATCH ("ns :: foo < char * > ( int ) &&",
4498 symbol_name_match_type::FULL, true, EXPECT (expected));
a20714ff
PA
4499 CHECK_MATCH ("foo < char * > ( int ) const",
4500 symbol_name_match_type::WILD, true, EXPECT (expected));
4501 CHECK_MATCH ("foo < char * > ( int ) &&",
4502 symbol_name_match_type::WILD, true, EXPECT (expected));
c62446b1
PA
4503 }
4504
4505 /* Test lookup names that don't match anything. */
4506 {
a20714ff
PA
4507 CHECK_MATCH ("bar2", symbol_name_match_type::WILD, false,
4508 {});
4509
c62446b1
PA
4510 CHECK_MATCH ("doesntexist", symbol_name_match_type::FULL, false,
4511 {});
4512 }
4513
a20714ff
PA
4514 /* Some wild matching tests, exercising "(anonymous namespace)",
4515 which should not be confused with a parameter list. */
4516 {
4517 static const char *syms[] = {
4518 "A::B::C",
4519 "B::C",
4520 "C",
4521 "A :: B :: C ( int )",
4522 "B :: C ( int )",
4523 "C ( int )",
4524 };
4525
4526 for (const char *s : syms)
4527 {
4528 CHECK_MATCH (s, symbol_name_match_type::WILD, false,
4529 EXPECT ("(anonymous namespace)::A::B::C"));
4530 }
4531 }
4532
4533 {
4534 static const char expected[] = "ns2::tmpl<int>::foo2";
4535 CHECK_MATCH ("tmp", symbol_name_match_type::WILD, true,
4536 EXPECT (expected));
4537 CHECK_MATCH ("tmpl<", symbol_name_match_type::WILD, true,
4538 EXPECT (expected));
4539 }
4540
c62446b1
PA
4541 SELF_CHECK (!any_mismatch);
4542
4543#undef EXPECT
4544#undef CHECK_MATCH
4545}
4546
5c58de74
PA
4547static void
4548run_test ()
4549{
4550 test_mapped_index_find_name_component_bounds ();
4551 test_dw2_expand_symtabs_matching_symbol ();
4552}
4553
c62446b1
PA
4554}} // namespace selftests::dw2_expand_symtabs_matching
4555
4556#endif /* GDB_SELF_TEST */
4557
4b514bc8
JK
4558/* If FILE_MATCHER is NULL or if PER_CU has
4559 dwarf2_per_cu_quick_data::MARK set (see
4560 dw_expand_symtabs_matching_file_matcher), expand the CU and call
4561 EXPANSION_NOTIFY on it. */
4562
4563static void
4564dw2_expand_symtabs_matching_one
97a1449a
SM
4565 (dwarf2_per_cu_data *per_cu,
4566 dwarf2_per_objfile *per_objfile,
4b514bc8
JK
4567 gdb::function_view<expand_symtabs_file_matcher_ftype> file_matcher,
4568 gdb::function_view<expand_symtabs_exp_notify_ftype> expansion_notify)
4569{
4570 if (file_matcher == NULL || per_cu->v.quick->mark)
4571 {
af758d11 4572 bool symtab_was_null = !per_objfile->symtab_set_p (per_cu);
4b514bc8 4573
97a1449a
SM
4574 compunit_symtab *symtab
4575 = dw2_instantiate_symtab (per_cu, per_objfile, false);
af758d11 4576 gdb_assert (symtab != nullptr);
4b514bc8 4577
af758d11
SM
4578 if (expansion_notify != NULL && symtab_was_null)
4579 expansion_notify (symtab);
4b514bc8
JK
4580 }
4581}
4582
3f563c84
PA
4583/* Helper for dw2_expand_matching symtabs. Called on each symbol
4584 matched, to expand corresponding CUs that were marked. IDX is the
4585 index of the symbol name that matched. */
4586
4587static void
4588dw2_expand_marked_cus
976ca316 4589 (dwarf2_per_objfile *per_objfile, offset_type idx,
3f563c84
PA
4590 gdb::function_view<expand_symtabs_file_matcher_ftype> file_matcher,
4591 gdb::function_view<expand_symtabs_exp_notify_ftype> expansion_notify,
4592 search_domain kind)
4593{
3f563c84
PA
4594 offset_type *vec, vec_len, vec_idx;
4595 bool global_seen = false;
976ca316 4596 mapped_index &index = *per_objfile->per_bfd->index_table;
3f563c84 4597
61920122 4598 vec = (offset_type *) (index.constant_pool
f00a2de2 4599 + MAYBE_SWAP (index.symbol_table[idx].vec));
61920122
PA
4600 vec_len = MAYBE_SWAP (vec[0]);
4601 for (vec_idx = 0; vec_idx < vec_len; ++vec_idx)
4602 {
61920122
PA
4603 offset_type cu_index_and_attrs = MAYBE_SWAP (vec[vec_idx + 1]);
4604 /* This value is only valid for index versions >= 7. */
4605 int is_static = GDB_INDEX_SYMBOL_STATIC_VALUE (cu_index_and_attrs);
4606 gdb_index_symbol_kind symbol_kind =
4607 GDB_INDEX_SYMBOL_KIND_VALUE (cu_index_and_attrs);
4608 int cu_index = GDB_INDEX_CU_VALUE (cu_index_and_attrs);
4609 /* Only check the symbol attributes if they're present.
4610 Indices prior to version 7 don't record them,
4611 and indices >= 7 may elide them for certain symbols
4612 (gold does this). */
4613 int attrs_valid =
4614 (index.version >= 7
4615 && symbol_kind != GDB_INDEX_SYMBOL_KIND_NONE);
4616
4617 /* Work around gold/15646. */
f030440d
TV
4618 if (attrs_valid
4619 && !is_static
4620 && symbol_kind == GDB_INDEX_SYMBOL_KIND_TYPE)
9291a0cd 4621 {
f030440d 4622 if (global_seen)
61920122 4623 continue;
f030440d
TV
4624
4625 global_seen = true;
61920122 4626 }
3190f0c6 4627
61920122
PA
4628 /* Only check the symbol's kind if it has one. */
4629 if (attrs_valid)
4630 {
4631 switch (kind)
8943b874 4632 {
61920122
PA
4633 case VARIABLES_DOMAIN:
4634 if (symbol_kind != GDB_INDEX_SYMBOL_KIND_VARIABLE)
4635 continue;
4636 break;
4637 case FUNCTIONS_DOMAIN:
4638 if (symbol_kind != GDB_INDEX_SYMBOL_KIND_FUNCTION)
8943b874 4639 continue;
61920122
PA
4640 break;
4641 case TYPES_DOMAIN:
4642 if (symbol_kind != GDB_INDEX_SYMBOL_KIND_TYPE)
4643 continue;
4644 break;
59c35742
AB
4645 case MODULES_DOMAIN:
4646 if (symbol_kind != GDB_INDEX_SYMBOL_KIND_OTHER)
4647 continue;
4648 break;
61920122
PA
4649 default:
4650 break;
8943b874 4651 }
61920122 4652 }
8943b874 4653
61920122 4654 /* Don't crash on bad data. */
976ca316
SM
4655 if (cu_index >= (per_objfile->per_bfd->all_comp_units.size ()
4656 + per_objfile->per_bfd->all_type_units.size ()))
61920122 4657 {
b98664d3 4658 complaint (_(".gdb_index entry has bad CU index"
976ca316 4659 " [in module %s]"), objfile_name (per_objfile->objfile));
61920122
PA
4660 continue;
4661 }
4662
976ca316
SM
4663 dwarf2_per_cu_data *per_cu = per_objfile->per_bfd->get_cutu (cu_index);
4664 dw2_expand_symtabs_matching_one (per_cu, per_objfile, file_matcher,
4b514bc8 4665 expansion_notify);
61920122
PA
4666 }
4667}
4668
4b514bc8
JK
4669/* If FILE_MATCHER is non-NULL, set all the
4670 dwarf2_per_cu_quick_data::MARK of the current DWARF2_PER_OBJFILE
4671 that match FILE_MATCHER. */
4672
61920122 4673static void
4b514bc8 4674dw_expand_symtabs_matching_file_matcher
976ca316 4675 (dwarf2_per_objfile *per_objfile,
ed2dc618 4676 gdb::function_view<expand_symtabs_file_matcher_ftype> file_matcher)
61920122 4677{
4b514bc8 4678 if (file_matcher == NULL)
61920122
PA
4679 return;
4680
4b514bc8
JK
4681 htab_up visited_found (htab_create_alloc (10, htab_hash_pointer,
4682 htab_eq_pointer,
4683 NULL, xcalloc, xfree));
4684 htab_up visited_not_found (htab_create_alloc (10, htab_hash_pointer,
61920122
PA
4685 htab_eq_pointer,
4686 NULL, xcalloc, xfree));
61920122 4687
4b514bc8
JK
4688 /* The rule is CUs specify all the files, including those used by
4689 any TU, so there's no need to scan TUs here. */
61920122 4690
976ca316 4691 for (dwarf2_per_cu_data *per_cu : per_objfile->per_bfd->all_comp_units)
927aa2e7 4692 {
927aa2e7
JK
4693 QUIT;
4694
4695 per_cu->v.quick->mark = 0;
4696
4697 /* We only need to look at symtabs not already expanded. */
976ca316 4698 if (per_objfile->symtab_set_p (per_cu))
927aa2e7
JK
4699 continue;
4700
976ca316 4701 quick_file_names *file_data = dw2_get_file_names (per_cu, per_objfile);
927aa2e7
JK
4702 if (file_data == NULL)
4703 continue;
4704
4705 if (htab_find (visited_not_found.get (), file_data) != NULL)
4706 continue;
4707 else if (htab_find (visited_found.get (), file_data) != NULL)
4708 {
4709 per_cu->v.quick->mark = 1;
4710 continue;
4711 }
4712
b76e467d 4713 for (int j = 0; j < file_data->num_file_names; ++j)
927aa2e7
JK
4714 {
4715 const char *this_real_name;
4716
4717 if (file_matcher (file_data->file_names[j], false))
4718 {
4719 per_cu->v.quick->mark = 1;
4720 break;
4721 }
4722
4723 /* Before we invoke realpath, which can get expensive when many
4724 files are involved, do a quick comparison of the basenames. */
4725 if (!basenames_may_differ
4726 && !file_matcher (lbasename (file_data->file_names[j]),
4727 true))
4728 continue;
4729
976ca316 4730 this_real_name = dw2_get_real_path (per_objfile, file_data, j);
927aa2e7
JK
4731 if (file_matcher (this_real_name, false))
4732 {
4733 per_cu->v.quick->mark = 1;
4734 break;
4735 }
4736 }
4737
b76e467d
SM
4738 void **slot = htab_find_slot (per_cu->v.quick->mark
4739 ? visited_found.get ()
4740 : visited_not_found.get (),
4741 file_data, INSERT);
927aa2e7
JK
4742 *slot = file_data;
4743 }
4744}
4745
4746static void
4747dw2_expand_symtabs_matching
4748 (struct objfile *objfile,
4749 gdb::function_view<expand_symtabs_file_matcher_ftype> file_matcher,
c1a66c06 4750 const lookup_name_info *lookup_name,
927aa2e7
JK
4751 gdb::function_view<expand_symtabs_symbol_matcher_ftype> symbol_matcher,
4752 gdb::function_view<expand_symtabs_exp_notify_ftype> expansion_notify,
4753 enum search_domain kind)
4754{
976ca316 4755 dwarf2_per_objfile *per_objfile = get_dwarf2_per_objfile (objfile);
927aa2e7
JK
4756
4757 /* index_table is NULL if OBJF_READNOW. */
976ca316 4758 if (!per_objfile->per_bfd->index_table)
927aa2e7
JK
4759 return;
4760
976ca316 4761 dw_expand_symtabs_matching_file_matcher (per_objfile, file_matcher);
927aa2e7 4762
c1a66c06
TV
4763 if (symbol_matcher == NULL && lookup_name == NULL)
4764 {
976ca316 4765 for (dwarf2_per_cu_data *per_cu : per_objfile->per_bfd->all_comp_units)
c1a66c06
TV
4766 {
4767 QUIT;
4768
976ca316 4769 dw2_expand_symtabs_matching_one (per_cu, per_objfile,
97a1449a 4770 file_matcher, expansion_notify);
c1a66c06
TV
4771 }
4772 return;
4773 }
4774
976ca316 4775 mapped_index &index = *per_objfile->per_bfd->index_table;
927aa2e7 4776
c1a66c06 4777 dw2_expand_symtabs_matching_symbol (index, *lookup_name,
927aa2e7
JK
4778 symbol_matcher,
4779 kind, [&] (offset_type idx)
4780 {
976ca316
SM
4781 dw2_expand_marked_cus (per_objfile, idx, file_matcher, expansion_notify,
4782 kind);
3b00ef10 4783 return true;
976ca316 4784 }, per_objfile);
927aa2e7
JK
4785}
4786
4787/* A helper for dw2_find_pc_sect_compunit_symtab which finds the most specific
4788 symtab. */
4789
4790static struct compunit_symtab *
4791recursively_find_pc_sect_compunit_symtab (struct compunit_symtab *cust,
4792 CORE_ADDR pc)
4793{
4794 int i;
4795
4796 if (COMPUNIT_BLOCKVECTOR (cust) != NULL
4797 && blockvector_contains_pc (COMPUNIT_BLOCKVECTOR (cust), pc))
4798 return cust;
4799
4800 if (cust->includes == NULL)
4801 return NULL;
4802
4803 for (i = 0; cust->includes[i]; ++i)
4804 {
4805 struct compunit_symtab *s = cust->includes[i];
4806
4807 s = recursively_find_pc_sect_compunit_symtab (s, pc);
4808 if (s != NULL)
4809 return s;
4810 }
4811
4812 return NULL;
4813}
4814
4815static struct compunit_symtab *
4816dw2_find_pc_sect_compunit_symtab (struct objfile *objfile,
4817 struct bound_minimal_symbol msymbol,
4818 CORE_ADDR pc,
4819 struct obj_section *section,
4820 int warn_if_readin)
4821{
4822 struct dwarf2_per_cu_data *data;
4823 struct compunit_symtab *result;
4824
d320c2b5 4825 if (!objfile->partial_symtabs->psymtabs_addrmap)
927aa2e7
JK
4826 return NULL;
4827
b3b3bada 4828 CORE_ADDR baseaddr = objfile->text_section_offset ();
d320c2b5
TT
4829 data = (struct dwarf2_per_cu_data *) addrmap_find
4830 (objfile->partial_symtabs->psymtabs_addrmap, pc - baseaddr);
927aa2e7
JK
4831 if (!data)
4832 return NULL;
4833
af758d11
SM
4834 dwarf2_per_objfile *per_objfile = get_dwarf2_per_objfile (objfile);
4835 if (warn_if_readin && per_objfile->symtab_set_p (data))
927aa2e7 4836 warning (_("(Internal error: pc %s in read in CU, but not in symtab.)"),
08feed99 4837 paddress (objfile->arch (), pc));
927aa2e7 4838
97a1449a
SM
4839 result = recursively_find_pc_sect_compunit_symtab
4840 (dw2_instantiate_symtab (data, per_objfile, false), pc);
4841
927aa2e7
JK
4842 gdb_assert (result != NULL);
4843 return result;
4844}
4845
4846static void
4847dw2_map_symbol_filenames (struct objfile *objfile, symbol_filename_ftype *fun,
4848 void *data, int need_fullname)
4849{
976ca316 4850 dwarf2_per_objfile *per_objfile = get_dwarf2_per_objfile (objfile);
927aa2e7 4851
976ca316 4852 if (!per_objfile->per_bfd->filenames_cache)
927aa2e7 4853 {
976ca316 4854 per_objfile->per_bfd->filenames_cache.emplace ();
927aa2e7
JK
4855
4856 htab_up visited (htab_create_alloc (10,
4857 htab_hash_pointer, htab_eq_pointer,
4858 NULL, xcalloc, xfree));
4859
4860 /* The rule is CUs specify all the files, including those used
4861 by any TU, so there's no need to scan TUs here. We can
4862 ignore file names coming from already-expanded CUs. */
4863
976ca316 4864 for (dwarf2_per_cu_data *per_cu : per_objfile->per_bfd->all_comp_units)
927aa2e7 4865 {
976ca316 4866 if (per_objfile->symtab_set_p (per_cu))
927aa2e7
JK
4867 {
4868 void **slot = htab_find_slot (visited.get (),
4869 per_cu->v.quick->file_names,
4870 INSERT);
4871
4872 *slot = per_cu->v.quick->file_names;
4873 }
4874 }
4875
976ca316 4876 for (dwarf2_per_cu_data *per_cu : per_objfile->per_bfd->all_comp_units)
927aa2e7 4877 {
927aa2e7 4878 /* We only need to look at symtabs not already expanded. */
976ca316 4879 if (per_objfile->symtab_set_p (per_cu))
927aa2e7
JK
4880 continue;
4881
ab432490 4882 quick_file_names *file_data
976ca316 4883 = dw2_get_file_names (per_cu, per_objfile);
927aa2e7
JK
4884 if (file_data == NULL)
4885 continue;
4886
b76e467d 4887 void **slot = htab_find_slot (visited.get (), file_data, INSERT);
927aa2e7
JK
4888 if (*slot)
4889 {
4890 /* Already visited. */
4891 continue;
4892 }
4893 *slot = file_data;
4894
4895 for (int j = 0; j < file_data->num_file_names; ++j)
4896 {
4897 const char *filename = file_data->file_names[j];
976ca316 4898 per_objfile->per_bfd->filenames_cache->seen (filename);
927aa2e7
JK
4899 }
4900 }
4901 }
4902
976ca316 4903 per_objfile->per_bfd->filenames_cache->traverse ([&] (const char *filename)
927aa2e7
JK
4904 {
4905 gdb::unique_xmalloc_ptr<char> this_real_name;
4906
4907 if (need_fullname)
4908 this_real_name = gdb_realpath (filename);
4909 (*fun) (filename, this_real_name.get (), data);
4910 });
4911}
4912
4913static int
4914dw2_has_symbols (struct objfile *objfile)
4915{
4916 return 1;
4917}
4918
4919const struct quick_symbol_functions dwarf2_gdb_index_functions =
4920{
4921 dw2_has_symbols,
4922 dw2_find_last_source_symtab,
4923 dw2_forget_cached_source_info,
4924 dw2_map_symtabs_matching_filename,
4925 dw2_lookup_symbol,
d3214198 4926 NULL,
927aa2e7
JK
4927 dw2_print_stats,
4928 dw2_dump,
927aa2e7
JK
4929 dw2_expand_symtabs_for_function,
4930 dw2_expand_all_symtabs,
4931 dw2_expand_symtabs_with_fullname,
4932 dw2_map_matching_symbols,
4933 dw2_expand_symtabs_matching,
4934 dw2_find_pc_sect_compunit_symtab,
4935 NULL,
4936 dw2_map_symbol_filenames
4937};
4938
4939/* DWARF-5 debug_names reader. */
4940
4941/* DWARF-5 augmentation string for GDB's DW_IDX_GNU_* extension. */
4942static const gdb_byte dwarf5_augmentation[] = { 'G', 'D', 'B', 0 };
4943
4944/* A helper function that reads the .debug_names section in SECTION
4945 and fills in MAP. FILENAME is the name of the file containing the
4946 section; it is used for error reporting.
4947
4948 Returns true if all went well, false otherwise. */
4949
4950static bool
4951read_debug_names_from_section (struct objfile *objfile,
4952 const char *filename,
4953 struct dwarf2_section_info *section,
4954 mapped_debug_names &map)
4955{
96b79293 4956 if (section->empty ())
927aa2e7
JK
4957 return false;
4958
4959 /* Older elfutils strip versions could keep the section in the main
4960 executable while splitting it for the separate debug info file. */
96b79293 4961 if ((section->get_flags () & SEC_HAS_CONTENTS) == 0)
927aa2e7
JK
4962 return false;
4963
96b79293 4964 section->read (objfile);
927aa2e7 4965
08feed99 4966 map.dwarf5_byte_order = gdbarch_byte_order (objfile->arch ());
927aa2e7
JK
4967
4968 const gdb_byte *addr = section->buffer;
4969
96b79293 4970 bfd *const abfd = section->get_bfd_owner ();
927aa2e7
JK
4971
4972 unsigned int bytes_read;
4973 LONGEST length = read_initial_length (abfd, addr, &bytes_read);
4974 addr += bytes_read;
4975
4976 map.dwarf5_is_dwarf64 = bytes_read != 4;
4977 map.offset_size = map.dwarf5_is_dwarf64 ? 8 : 4;
4978 if (bytes_read + length != section->size)
4979 {
4980 /* There may be multiple per-CU indices. */
4981 warning (_("Section .debug_names in %s length %s does not match "
4982 "section length %s, ignoring .debug_names."),
4983 filename, plongest (bytes_read + length),
4984 pulongest (section->size));
4985 return false;
4986 }
4987
4988 /* The version number. */
4989 uint16_t version = read_2_bytes (abfd, addr);
4990 addr += 2;
4991 if (version != 5)
4992 {
4993 warning (_("Section .debug_names in %s has unsupported version %d, "
4994 "ignoring .debug_names."),
4995 filename, version);
4996 return false;
4997 }
4998
4999 /* Padding. */
5000 uint16_t padding = read_2_bytes (abfd, addr);
5001 addr += 2;
5002 if (padding != 0)
5003 {
5004 warning (_("Section .debug_names in %s has unsupported padding %d, "
5005 "ignoring .debug_names."),
5006 filename, padding);
5007 return false;
5008 }
5009
5010 /* comp_unit_count - The number of CUs in the CU list. */
5011 map.cu_count = read_4_bytes (abfd, addr);
5012 addr += 4;
5013
5014 /* local_type_unit_count - The number of TUs in the local TU
5015 list. */
5016 map.tu_count = read_4_bytes (abfd, addr);
5017 addr += 4;
5018
5019 /* foreign_type_unit_count - The number of TUs in the foreign TU
5020 list. */
5021 uint32_t foreign_tu_count = read_4_bytes (abfd, addr);
5022 addr += 4;
5023 if (foreign_tu_count != 0)
5024 {
5025 warning (_("Section .debug_names in %s has unsupported %lu foreign TUs, "
5026 "ignoring .debug_names."),
5027 filename, static_cast<unsigned long> (foreign_tu_count));
5028 return false;
5029 }
5030
5031 /* bucket_count - The number of hash buckets in the hash lookup
5032 table. */
5033 map.bucket_count = read_4_bytes (abfd, addr);
5034 addr += 4;
5035
5036 /* name_count - The number of unique names in the index. */
5037 map.name_count = read_4_bytes (abfd, addr);
5038 addr += 4;
5039
5040 /* abbrev_table_size - The size in bytes of the abbreviations
5041 table. */
5042 uint32_t abbrev_table_size = read_4_bytes (abfd, addr);
5043 addr += 4;
5044
5045 /* augmentation_string_size - The size in bytes of the augmentation
5046 string. This value is rounded up to a multiple of 4. */
5047 uint32_t augmentation_string_size = read_4_bytes (abfd, addr);
5048 addr += 4;
5049 map.augmentation_is_gdb = ((augmentation_string_size
5050 == sizeof (dwarf5_augmentation))
5051 && memcmp (addr, dwarf5_augmentation,
5052 sizeof (dwarf5_augmentation)) == 0);
5053 augmentation_string_size += (-augmentation_string_size) & 3;
5054 addr += augmentation_string_size;
5055
5056 /* List of CUs */
5057 map.cu_table_reordered = addr;
5058 addr += map.cu_count * map.offset_size;
5059
5060 /* List of Local TUs */
5061 map.tu_table_reordered = addr;
5062 addr += map.tu_count * map.offset_size;
5063
5064 /* Hash Lookup Table */
5065 map.bucket_table_reordered = reinterpret_cast<const uint32_t *> (addr);
5066 addr += map.bucket_count * 4;
5067 map.hash_table_reordered = reinterpret_cast<const uint32_t *> (addr);
5068 addr += map.name_count * 4;
5069
5070 /* Name Table */
5071 map.name_table_string_offs_reordered = addr;
5072 addr += map.name_count * map.offset_size;
5073 map.name_table_entry_offs_reordered = addr;
5074 addr += map.name_count * map.offset_size;
5075
5076 const gdb_byte *abbrev_table_start = addr;
5077 for (;;)
5078 {
927aa2e7
JK
5079 const ULONGEST index_num = read_unsigned_leb128 (abfd, addr, &bytes_read);
5080 addr += bytes_read;
5081 if (index_num == 0)
5082 break;
5083
5084 const auto insertpair
5085 = map.abbrev_map.emplace (index_num, mapped_debug_names::index_val ());
5086 if (!insertpair.second)
5087 {
5088 warning (_("Section .debug_names in %s has duplicate index %s, "
5089 "ignoring .debug_names."),
5090 filename, pulongest (index_num));
5091 return false;
5092 }
5093 mapped_debug_names::index_val &indexval = insertpair.first->second;
5094 indexval.dwarf_tag = read_unsigned_leb128 (abfd, addr, &bytes_read);
5095 addr += bytes_read;
5096
5097 for (;;)
5098 {
5099 mapped_debug_names::index_val::attr attr;
5100 attr.dw_idx = read_unsigned_leb128 (abfd, addr, &bytes_read);
5101 addr += bytes_read;
5102 attr.form = read_unsigned_leb128 (abfd, addr, &bytes_read);
5103 addr += bytes_read;
5104 if (attr.form == DW_FORM_implicit_const)
5105 {
5106 attr.implicit_const = read_signed_leb128 (abfd, addr,
5107 &bytes_read);
5108 addr += bytes_read;
5109 }
5110 if (attr.dw_idx == 0 && attr.form == 0)
5111 break;
5112 indexval.attr_vec.push_back (std::move (attr));
5113 }
5114 }
5115 if (addr != abbrev_table_start + abbrev_table_size)
5116 {
5117 warning (_("Section .debug_names in %s has abbreviation_table "
47e3f474
TV
5118 "of size %s vs. written as %u, ignoring .debug_names."),
5119 filename, plongest (addr - abbrev_table_start),
5120 abbrev_table_size);
927aa2e7
JK
5121 return false;
5122 }
5123 map.entry_pool = addr;
5124
5125 return true;
5126}
5127
5128/* A helper for create_cus_from_debug_names that handles the MAP's CU
5129 list. */
5130
5131static void
168c9250 5132create_cus_from_debug_names_list (dwarf2_per_bfd *per_bfd,
927aa2e7
JK
5133 const mapped_debug_names &map,
5134 dwarf2_section_info &section,
b76e467d 5135 bool is_dwz)
927aa2e7 5136{
3ee6bb11
TV
5137 if (!map.augmentation_is_gdb)
5138 {
5139 for (uint32_t i = 0; i < map.cu_count; ++i)
5140 {
5141 sect_offset sect_off
5142 = (sect_offset) (extract_unsigned_integer
5143 (map.cu_table_reordered + i * map.offset_size,
5144 map.offset_size,
5145 map.dwarf5_byte_order));
5146 /* We don't know the length of the CU, because the CU list in a
5147 .debug_names index can be incomplete, so we can't use the start of
5148 the next CU as end of this CU. We create the CUs here with length 0,
5149 and in cutu_reader::cutu_reader we'll fill in the actual length. */
5150 dwarf2_per_cu_data *per_cu
168c9250
SM
5151 = create_cu_from_index_list (per_bfd, &section, is_dwz, sect_off, 0);
5152 per_bfd->all_comp_units.push_back (per_cu);
3ee6bb11
TV
5153 }
5154 }
5155
927aa2e7
JK
5156 sect_offset sect_off_prev;
5157 for (uint32_t i = 0; i <= map.cu_count; ++i)
5158 {
5159 sect_offset sect_off_next;
5160 if (i < map.cu_count)
5161 {
5162 sect_off_next
5163 = (sect_offset) (extract_unsigned_integer
5164 (map.cu_table_reordered + i * map.offset_size,
5165 map.offset_size,
5166 map.dwarf5_byte_order));
5167 }
5168 else
5169 sect_off_next = (sect_offset) section.size;
5170 if (i >= 1)
5171 {
5172 const ULONGEST length = sect_off_next - sect_off_prev;
b76e467d 5173 dwarf2_per_cu_data *per_cu
168c9250 5174 = create_cu_from_index_list (per_bfd, &section, is_dwz,
927aa2e7 5175 sect_off_prev, length);
168c9250 5176 per_bfd->all_comp_units.push_back (per_cu);
927aa2e7
JK
5177 }
5178 sect_off_prev = sect_off_next;
5179 }
5180}
5181
5182/* Read the CU list from the mapped index, and use it to create all
ed2dc618 5183 the CU objects for this dwarf2_per_objfile. */
927aa2e7
JK
5184
5185static void
168c9250 5186create_cus_from_debug_names (dwarf2_per_bfd *per_bfd,
927aa2e7
JK
5187 const mapped_debug_names &map,
5188 const mapped_debug_names &dwz_map)
5189{
168c9250
SM
5190 gdb_assert (per_bfd->all_comp_units.empty ());
5191 per_bfd->all_comp_units.reserve (map.cu_count + dwz_map.cu_count);
927aa2e7 5192
168c9250 5193 create_cus_from_debug_names_list (per_bfd, map, per_bfd->info,
b76e467d 5194 false /* is_dwz */);
927aa2e7
JK
5195
5196 if (dwz_map.cu_count == 0)
5197 return;
5198
168c9250
SM
5199 dwz_file *dwz = dwarf2_get_dwz_file (per_bfd);
5200 create_cus_from_debug_names_list (per_bfd, dwz_map, dwz->info,
b76e467d 5201 true /* is_dwz */);
927aa2e7
JK
5202}
5203
5204/* Read .debug_names. If everything went ok, initialize the "quick"
5205 elements of all the CUs and return true. Otherwise, return false. */
5206
5207static bool
976ca316 5208dwarf2_read_debug_names (dwarf2_per_objfile *per_objfile)
927aa2e7 5209{
fcf23d5b
SM
5210 std::unique_ptr<mapped_debug_names> map (new mapped_debug_names);
5211 mapped_debug_names dwz_map;
976ca316 5212 struct objfile *objfile = per_objfile->objfile;
f8c41851 5213 dwarf2_per_bfd *per_bfd = per_objfile->per_bfd;
927aa2e7
JK
5214
5215 if (!read_debug_names_from_section (objfile, objfile_name (objfile),
976ca316 5216 &per_objfile->per_bfd->debug_names, *map))
927aa2e7
JK
5217 return false;
5218
5219 /* Don't use the index if it's empty. */
22ca247e 5220 if (map->name_count == 0)
927aa2e7
JK
5221 return false;
5222
5223 /* If there is a .dwz file, read it so we can get its CU list as
5224 well. */
f8c41851 5225 dwz_file *dwz = dwarf2_get_dwz_file (per_bfd);
927aa2e7
JK
5226 if (dwz != NULL)
5227 {
5228 if (!read_debug_names_from_section (objfile,
00f93c44 5229 bfd_get_filename (dwz->dwz_bfd.get ()),
927aa2e7
JK
5230 &dwz->debug_names, dwz_map))
5231 {
5232 warning (_("could not read '.debug_names' section from %s; skipping"),
00f93c44 5233 bfd_get_filename (dwz->dwz_bfd.get ()));
927aa2e7
JK
5234 return false;
5235 }
5236 }
5237
f8c41851 5238 create_cus_from_debug_names (per_bfd, *map, dwz_map);
927aa2e7 5239
22ca247e 5240 if (map->tu_count != 0)
927aa2e7
JK
5241 {
5242 /* We can only handle a single .debug_types when we have an
5243 index. */
f8c41851 5244 if (per_bfd->types.size () != 1)
927aa2e7
JK
5245 return false;
5246
f8c41851 5247 dwarf2_section_info *section = &per_bfd->types[0];
927aa2e7
JK
5248
5249 create_signatured_type_table_from_debug_names
f8c41851 5250 (per_objfile, *map, section, &per_bfd->abbrev);
927aa2e7
JK
5251 }
5252
f8c41851 5253 create_addrmap_from_aranges (per_objfile, &per_bfd->debug_aranges);
927aa2e7 5254
f8c41851
SM
5255 per_bfd->debug_names_table = std::move (map);
5256 per_bfd->using_index = 1;
5257 per_bfd->quick_file_names_table =
976ca316 5258 create_quick_file_names_table (per_objfile->per_bfd->all_comp_units.size ());
927aa2e7 5259
f8c41851
SM
5260 /* Save partial symtabs in the per_bfd object, for the benefit of subsequent
5261 objfiles using the same BFD. */
5262 gdb_assert (per_bfd->partial_symtabs == nullptr);
5263 per_bfd->partial_symtabs = objfile->partial_symtabs;
5264
927aa2e7
JK
5265 return true;
5266}
5267
927aa2e7
JK
5268/* Type used to manage iterating over all CUs looking for a symbol for
5269 .debug_names. */
5270
5271class dw2_debug_names_iterator
5272{
5273public:
927aa2e7 5274 dw2_debug_names_iterator (const mapped_debug_names &map,
2b79f376
SM
5275 gdb::optional<block_enum> block_index,
5276 domain_enum domain,
fcf23d5b 5277 const char *name, dwarf2_per_objfile *per_objfile)
2b79f376 5278 : m_map (map), m_block_index (block_index), m_domain (domain),
fcf23d5b
SM
5279 m_addr (find_vec_in_debug_names (map, name, per_objfile)),
5280 m_per_objfile (per_objfile)
927aa2e7
JK
5281 {}
5282
5283 dw2_debug_names_iterator (const mapped_debug_names &map,
fcf23d5b 5284 search_domain search, uint32_t namei, dwarf2_per_objfile *per_objfile)
927aa2e7
JK
5285 : m_map (map),
5286 m_search (search),
fcf23d5b
SM
5287 m_addr (find_vec_in_debug_names (map, namei, per_objfile)),
5288 m_per_objfile (per_objfile)
927aa2e7
JK
5289 {}
5290
3b00ef10
TT
5291 dw2_debug_names_iterator (const mapped_debug_names &map,
5292 block_enum block_index, domain_enum domain,
fcf23d5b 5293 uint32_t namei, dwarf2_per_objfile *per_objfile)
3b00ef10 5294 : m_map (map), m_block_index (block_index), m_domain (domain),
fcf23d5b
SM
5295 m_addr (find_vec_in_debug_names (map, namei, per_objfile)),
5296 m_per_objfile (per_objfile)
3b00ef10
TT
5297 {}
5298
927aa2e7
JK
5299 /* Return the next matching CU or NULL if there are no more. */
5300 dwarf2_per_cu_data *next ();
5301
5302private:
5303 static const gdb_byte *find_vec_in_debug_names (const mapped_debug_names &map,
976ca316
SM
5304 const char *name,
5305 dwarf2_per_objfile *per_objfile);
927aa2e7 5306 static const gdb_byte *find_vec_in_debug_names (const mapped_debug_names &map,
976ca316
SM
5307 uint32_t namei,
5308 dwarf2_per_objfile *per_objfile);
927aa2e7
JK
5309
5310 /* The internalized form of .debug_names. */
5311 const mapped_debug_names &m_map;
5312
2b79f376
SM
5313 /* If set, only look for symbols that match that block. Valid values are
5314 GLOBAL_BLOCK and STATIC_BLOCK. */
5315 const gdb::optional<block_enum> m_block_index;
927aa2e7
JK
5316
5317 /* The kind of symbol we're looking for. */
5318 const domain_enum m_domain = UNDEF_DOMAIN;
5319 const search_domain m_search = ALL_DOMAIN;
5320
5321 /* The list of CUs from the index entry of the symbol, or NULL if
5322 not found. */
5323 const gdb_byte *m_addr;
fcf23d5b
SM
5324
5325 dwarf2_per_objfile *m_per_objfile;
927aa2e7
JK
5326};
5327
5328const char *
fcf23d5b 5329mapped_debug_names::namei_to_name
976ca316 5330 (uint32_t namei, dwarf2_per_objfile *per_objfile) const
927aa2e7
JK
5331{
5332 const ULONGEST namei_string_offs
5333 = extract_unsigned_integer ((name_table_string_offs_reordered
5334 + namei * offset_size),
5335 offset_size,
5336 dwarf5_byte_order);
976ca316 5337 return read_indirect_string_at_offset (per_objfile, namei_string_offs);
927aa2e7
JK
5338}
5339
5340/* Find a slot in .debug_names for the object named NAME. If NAME is
5341 found, return pointer to its pool data. If NAME cannot be found,
5342 return NULL. */
5343
5344const gdb_byte *
5345dw2_debug_names_iterator::find_vec_in_debug_names
976ca316
SM
5346 (const mapped_debug_names &map, const char *name,
5347 dwarf2_per_objfile *per_objfile)
927aa2e7
JK
5348{
5349 int (*cmp) (const char *, const char *);
5350
54ee4252 5351 gdb::unique_xmalloc_ptr<char> without_params;
927aa2e7
JK
5352 if (current_language->la_language == language_cplus
5353 || current_language->la_language == language_fortran
5354 || current_language->la_language == language_d)
5355 {
5356 /* NAME is already canonical. Drop any qualifiers as
5357 .debug_names does not contain any. */
5358
5359 if (strchr (name, '(') != NULL)
5360 {
54ee4252 5361 without_params = cp_remove_params (name);
927aa2e7 5362 if (without_params != NULL)
54ee4252 5363 name = without_params.get ();
927aa2e7
JK
5364 }
5365 }
5366
5367 cmp = (case_sensitivity == case_sensitive_on ? strcmp : strcasecmp);
5368
5369 const uint32_t full_hash = dwarf5_djb_hash (name);
5370 uint32_t namei
5371 = extract_unsigned_integer (reinterpret_cast<const gdb_byte *>
5372 (map.bucket_table_reordered
5373 + (full_hash % map.bucket_count)), 4,
5374 map.dwarf5_byte_order);
5375 if (namei == 0)
5376 return NULL;
5377 --namei;
5378 if (namei >= map.name_count)
5379 {
b98664d3 5380 complaint (_("Wrong .debug_names with name index %u but name_count=%u "
927aa2e7
JK
5381 "[in module %s]"),
5382 namei, map.name_count,
fcf23d5b 5383 objfile_name (per_objfile->objfile));
927aa2e7
JK
5384 return NULL;
5385 }
5386
5387 for (;;)
5388 {
5389 const uint32_t namei_full_hash
5390 = extract_unsigned_integer (reinterpret_cast<const gdb_byte *>
5391 (map.hash_table_reordered + namei), 4,
5392 map.dwarf5_byte_order);
5393 if (full_hash % map.bucket_count != namei_full_hash % map.bucket_count)
5394 return NULL;
5395
5396 if (full_hash == namei_full_hash)
5397 {
fcf23d5b 5398 const char *const namei_string = map.namei_to_name (namei, per_objfile);
927aa2e7
JK
5399
5400#if 0 /* An expensive sanity check. */
5401 if (namei_full_hash != dwarf5_djb_hash (namei_string))
5402 {
b98664d3 5403 complaint (_("Wrong .debug_names hash for string at index %u "
927aa2e7
JK
5404 "[in module %s]"),
5405 namei, objfile_name (dwarf2_per_objfile->objfile));
5406 return NULL;
5407 }
5408#endif
5409
5410 if (cmp (namei_string, name) == 0)
5411 {
5412 const ULONGEST namei_entry_offs
5413 = extract_unsigned_integer ((map.name_table_entry_offs_reordered
5414 + namei * map.offset_size),
5415 map.offset_size, map.dwarf5_byte_order);
5416 return map.entry_pool + namei_entry_offs;
5417 }
5418 }
5419
5420 ++namei;
5421 if (namei >= map.name_count)
5422 return NULL;
5423 }
5424}
5425
5426const gdb_byte *
5427dw2_debug_names_iterator::find_vec_in_debug_names
fcf23d5b 5428 (const mapped_debug_names &map, uint32_t namei, dwarf2_per_objfile *per_objfile)
927aa2e7
JK
5429{
5430 if (namei >= map.name_count)
5431 {
b98664d3 5432 complaint (_("Wrong .debug_names with name index %u but name_count=%u "
927aa2e7
JK
5433 "[in module %s]"),
5434 namei, map.name_count,
fcf23d5b 5435 objfile_name (per_objfile->objfile));
927aa2e7
JK
5436 return NULL;
5437 }
5438
5439 const ULONGEST namei_entry_offs
5440 = extract_unsigned_integer ((map.name_table_entry_offs_reordered
5441 + namei * map.offset_size),
5442 map.offset_size, map.dwarf5_byte_order);
5443 return map.entry_pool + namei_entry_offs;
5444}
5445
5446/* See dw2_debug_names_iterator. */
5447
5448dwarf2_per_cu_data *
5449dw2_debug_names_iterator::next ()
5450{
5451 if (m_addr == NULL)
5452 return NULL;
5453
fcf23d5b
SM
5454 dwarf2_per_bfd *per_bfd = m_per_objfile->per_bfd;
5455 struct objfile *objfile = m_per_objfile->objfile;
ed2dc618 5456 bfd *const abfd = objfile->obfd;
927aa2e7
JK
5457
5458 again:
5459
5460 unsigned int bytes_read;
5461 const ULONGEST abbrev = read_unsigned_leb128 (abfd, m_addr, &bytes_read);
5462 m_addr += bytes_read;
5463 if (abbrev == 0)
5464 return NULL;
5465
5466 const auto indexval_it = m_map.abbrev_map.find (abbrev);
5467 if (indexval_it == m_map.abbrev_map.cend ())
5468 {
b98664d3 5469 complaint (_("Wrong .debug_names undefined abbrev code %s "
927aa2e7 5470 "[in module %s]"),
ed2dc618 5471 pulongest (abbrev), objfile_name (objfile));
927aa2e7
JK
5472 return NULL;
5473 }
5474 const mapped_debug_names::index_val &indexval = indexval_it->second;
beadd3e8
SM
5475 enum class symbol_linkage {
5476 unknown,
5477 static_,
5478 extern_,
23c13d42 5479 } symbol_linkage_ = symbol_linkage::unknown;
927aa2e7
JK
5480 dwarf2_per_cu_data *per_cu = NULL;
5481 for (const mapped_debug_names::index_val::attr &attr : indexval.attr_vec)
5482 {
5483 ULONGEST ull;
5484 switch (attr.form)
5485 {
5486 case DW_FORM_implicit_const:
5487 ull = attr.implicit_const;
5488 break;
5489 case DW_FORM_flag_present:
5490 ull = 1;
5491 break;
5492 case DW_FORM_udata:
5493 ull = read_unsigned_leb128 (abfd, m_addr, &bytes_read);
5494 m_addr += bytes_read;
5495 break;
6dc55ce9 5496 case DW_FORM_ref4:
5497 ull = read_4_bytes (abfd, m_addr);
5498 m_addr += 4;
5499 break;
5500 case DW_FORM_ref8:
5501 ull = read_8_bytes (abfd, m_addr);
5502 m_addr += 8;
5503 break;
5504 case DW_FORM_ref_sig8:
5505 ull = read_8_bytes (abfd, m_addr);
5506 m_addr += 8;
5507 break;
927aa2e7 5508 default:
b98664d3 5509 complaint (_("Unsupported .debug_names form %s [in module %s]"),
927aa2e7 5510 dwarf_form_name (attr.form),
ed2dc618 5511 objfile_name (objfile));
927aa2e7
JK
5512 return NULL;
5513 }
5514 switch (attr.dw_idx)
5515 {
5516 case DW_IDX_compile_unit:
5517 /* Don't crash on bad data. */
fcf23d5b 5518 if (ull >= m_per_objfile->per_bfd->all_comp_units.size ())
927aa2e7 5519 {
b98664d3 5520 complaint (_(".debug_names entry has bad CU index %s"
927aa2e7
JK
5521 " [in module %s]"),
5522 pulongest (ull),
fcf23d5b 5523 objfile_name (objfile));
927aa2e7
JK
5524 continue;
5525 }
fcf23d5b 5526 per_cu = per_bfd->get_cutu (ull);
927aa2e7 5527 break;
8af5c486
JK
5528 case DW_IDX_type_unit:
5529 /* Don't crash on bad data. */
fcf23d5b 5530 if (ull >= per_bfd->all_type_units.size ())
8af5c486 5531 {
b98664d3 5532 complaint (_(".debug_names entry has bad TU index %s"
8af5c486
JK
5533 " [in module %s]"),
5534 pulongest (ull),
fcf23d5b 5535 objfile_name (objfile));
8af5c486
JK
5536 continue;
5537 }
fcf23d5b 5538 per_cu = &per_bfd->get_tu (ull)->per_cu;
8af5c486 5539 break;
6dc55ce9 5540 case DW_IDX_die_offset:
5541 /* In a per-CU index (as opposed to a per-module index), index
5542 entries without CU attribute implicitly refer to the single CU. */
5543 if (per_cu == NULL)
fcf23d5b 5544 per_cu = per_bfd->get_cu (0);
6dc55ce9 5545 break;
927aa2e7
JK
5546 case DW_IDX_GNU_internal:
5547 if (!m_map.augmentation_is_gdb)
5548 break;
23c13d42 5549 symbol_linkage_ = symbol_linkage::static_;
927aa2e7
JK
5550 break;
5551 case DW_IDX_GNU_external:
5552 if (!m_map.augmentation_is_gdb)
5553 break;
23c13d42 5554 symbol_linkage_ = symbol_linkage::extern_;
927aa2e7
JK
5555 break;
5556 }
5557 }
5558
5559 /* Skip if already read in. */
fcf23d5b 5560 if (m_per_objfile->symtab_set_p (per_cu))
927aa2e7
JK
5561 goto again;
5562
5563 /* Check static vs global. */
23c13d42 5564 if (symbol_linkage_ != symbol_linkage::unknown && m_block_index.has_value ())
927aa2e7 5565 {
2b79f376 5566 const bool want_static = *m_block_index == STATIC_BLOCK;
23c13d42
SM
5567 const bool symbol_is_static =
5568 symbol_linkage_ == symbol_linkage::static_;
beadd3e8 5569 if (want_static != symbol_is_static)
2b79f376 5570 goto again;
927aa2e7
JK
5571 }
5572
5573 /* Match dw2_symtab_iter_next, symbol_kind
5574 and debug_names::psymbol_tag. */
5575 switch (m_domain)
5576 {
5577 case VAR_DOMAIN:
5578 switch (indexval.dwarf_tag)
5579 {
5580 case DW_TAG_variable:
5581 case DW_TAG_subprogram:
5582 /* Some types are also in VAR_DOMAIN. */
5583 case DW_TAG_typedef:
5584 case DW_TAG_structure_type:
5585 break;
5586 default:
5587 goto again;
5588 }
5589 break;
5590 case STRUCT_DOMAIN:
5591 switch (indexval.dwarf_tag)
5592 {
5593 case DW_TAG_typedef:
5594 case DW_TAG_structure_type:
5595 break;
5596 default:
5597 goto again;
5598 }
5599 break;
5600 case LABEL_DOMAIN:
5601 switch (indexval.dwarf_tag)
5602 {
5603 case 0:
5604 case DW_TAG_variable:
5605 break;
5606 default:
5607 goto again;
5608 }
5609 break;
59c35742
AB
5610 case MODULE_DOMAIN:
5611 switch (indexval.dwarf_tag)
5612 {
5613 case DW_TAG_module:
5614 break;
5615 default:
5616 goto again;
5617 }
5618 break;
927aa2e7
JK
5619 default:
5620 break;
5621 }
5622
5623 /* Match dw2_expand_symtabs_matching, symbol_kind and
5624 debug_names::psymbol_tag. */
5625 switch (m_search)
4b514bc8 5626 {
927aa2e7
JK
5627 case VARIABLES_DOMAIN:
5628 switch (indexval.dwarf_tag)
4b514bc8 5629 {
927aa2e7
JK
5630 case DW_TAG_variable:
5631 break;
5632 default:
5633 goto again;
4b514bc8 5634 }
927aa2e7
JK
5635 break;
5636 case FUNCTIONS_DOMAIN:
5637 switch (indexval.dwarf_tag)
4b514bc8 5638 {
927aa2e7
JK
5639 case DW_TAG_subprogram:
5640 break;
5641 default:
5642 goto again;
4b514bc8 5643 }
927aa2e7
JK
5644 break;
5645 case TYPES_DOMAIN:
5646 switch (indexval.dwarf_tag)
5647 {
5648 case DW_TAG_typedef:
5649 case DW_TAG_structure_type:
5650 break;
5651 default:
5652 goto again;
5653 }
5654 break;
59c35742
AB
5655 case MODULES_DOMAIN:
5656 switch (indexval.dwarf_tag)
5657 {
5658 case DW_TAG_module:
5659 break;
5660 default:
5661 goto again;
5662 }
927aa2e7
JK
5663 default:
5664 break;
4b514bc8 5665 }
927aa2e7
JK
5666
5667 return per_cu;
4b514bc8 5668}
61920122 5669
927aa2e7 5670static struct compunit_symtab *
c7f839cb 5671dw2_debug_names_lookup_symbol (struct objfile *objfile, block_enum block_index,
927aa2e7 5672 const char *name, domain_enum domain)
4b514bc8 5673{
976ca316 5674 dwarf2_per_objfile *per_objfile = get_dwarf2_per_objfile (objfile);
61920122 5675
976ca316 5676 const auto &mapp = per_objfile->per_bfd->debug_names_table;
927aa2e7 5677 if (!mapp)
61920122 5678 {
927aa2e7
JK
5679 /* index is NULL if OBJF_READNOW. */
5680 return NULL;
5681 }
5682 const auto &map = *mapp;
9291a0cd 5683
976ca316 5684 dw2_debug_names_iterator iter (map, block_index, domain, name, per_objfile);
9703b513 5685
927aa2e7
JK
5686 struct compunit_symtab *stab_best = NULL;
5687 struct dwarf2_per_cu_data *per_cu;
5688 while ((per_cu = iter.next ()) != NULL)
5689 {
5690 struct symbol *sym, *with_opaque = NULL;
97a1449a 5691 compunit_symtab *stab
976ca316 5692 = dw2_instantiate_symtab (per_cu, per_objfile, false);
927aa2e7 5693 const struct blockvector *bv = COMPUNIT_BLOCKVECTOR (stab);
582942f4 5694 const struct block *block = BLOCKVECTOR_BLOCK (bv, block_index);
9703b513 5695
927aa2e7
JK
5696 sym = block_find_symbol (block, name, domain,
5697 block_find_non_opaque_type_preferred,
5698 &with_opaque);
9703b513 5699
927aa2e7
JK
5700 /* Some caution must be observed with overloaded functions and
5701 methods, since the index will not contain any overload
5702 information (but NAME might contain it). */
a3ec0bb1 5703
927aa2e7 5704 if (sym != NULL
987012b8 5705 && strcmp_iw (sym->search_name (), name) == 0)
927aa2e7
JK
5706 return stab;
5707 if (with_opaque != NULL
987012b8 5708 && strcmp_iw (with_opaque->search_name (), name) == 0)
927aa2e7 5709 stab_best = stab;
9703b513 5710
927aa2e7 5711 /* Keep looking through other CUs. */
9703b513
TT
5712 }
5713
927aa2e7 5714 return stab_best;
9703b513
TT
5715}
5716
927aa2e7
JK
5717/* This dumps minimal information about .debug_names. It is called
5718 via "mt print objfiles". The gdb.dwarf2/gdb-index.exp testcase
5719 uses this to verify that .debug_names has been loaded. */
9291a0cd 5720
927aa2e7
JK
5721static void
5722dw2_debug_names_dump (struct objfile *objfile)
5723{
976ca316 5724 dwarf2_per_objfile *per_objfile = get_dwarf2_per_objfile (objfile);
ed2dc618 5725
976ca316 5726 gdb_assert (per_objfile->per_bfd->using_index);
927aa2e7 5727 printf_filtered (".debug_names:");
976ca316 5728 if (per_objfile->per_bfd->debug_names_table)
927aa2e7
JK
5729 printf_filtered (" exists\n");
5730 else
5731 printf_filtered (" faked for \"readnow\"\n");
5732 printf_filtered ("\n");
9291a0cd
TT
5733}
5734
9291a0cd 5735static void
927aa2e7
JK
5736dw2_debug_names_expand_symtabs_for_function (struct objfile *objfile,
5737 const char *func_name)
9291a0cd 5738{
976ca316 5739 dwarf2_per_objfile *per_objfile = get_dwarf2_per_objfile (objfile);
ae2de4f8 5740
976ca316
SM
5741 /* per_objfile->per_bfd->debug_names_table is NULL if OBJF_READNOW. */
5742 if (per_objfile->per_bfd->debug_names_table)
24c79950 5743 {
976ca316 5744 const mapped_debug_names &map = *per_objfile->per_bfd->debug_names_table;
24c79950 5745
fcf23d5b 5746 dw2_debug_names_iterator iter (map, {}, VAR_DOMAIN, func_name,
976ca316 5747 per_objfile);
24c79950 5748
927aa2e7
JK
5749 struct dwarf2_per_cu_data *per_cu;
5750 while ((per_cu = iter.next ()) != NULL)
976ca316 5751 dw2_instantiate_symtab (per_cu, per_objfile, false);
927aa2e7
JK
5752 }
5753}
24c79950 5754
3b00ef10
TT
5755static void
5756dw2_debug_names_map_matching_symbols
5757 (struct objfile *objfile,
5758 const lookup_name_info &name, domain_enum domain,
5759 int global,
5760 gdb::function_view<symbol_found_callback_ftype> callback,
5761 symbol_compare_ftype *ordered_compare)
5762{
976ca316 5763 dwarf2_per_objfile *per_objfile = get_dwarf2_per_objfile (objfile);
3b00ef10
TT
5764
5765 /* debug_names_table is NULL if OBJF_READNOW. */
976ca316 5766 if (!per_objfile->per_bfd->debug_names_table)
3b00ef10
TT
5767 return;
5768
976ca316 5769 mapped_debug_names &map = *per_objfile->per_bfd->debug_names_table;
3b00ef10
TT
5770 const block_enum block_kind = global ? GLOBAL_BLOCK : STATIC_BLOCK;
5771
5772 const char *match_name = name.ada ().lookup_name ().c_str ();
5773 auto matcher = [&] (const char *symname)
5774 {
5775 if (ordered_compare == nullptr)
5776 return true;
5777 return ordered_compare (symname, match_name) == 0;
5778 };
5779
5780 dw2_expand_symtabs_matching_symbol (map, name, matcher, ALL_DOMAIN,
5781 [&] (offset_type namei)
5782 {
5783 /* The name was matched, now expand corresponding CUs that were
5784 marked. */
fcf23d5b 5785 dw2_debug_names_iterator iter (map, block_kind, domain, namei,
976ca316 5786 per_objfile);
3b00ef10
TT
5787
5788 struct dwarf2_per_cu_data *per_cu;
5789 while ((per_cu = iter.next ()) != NULL)
976ca316 5790 dw2_expand_symtabs_matching_one (per_cu, per_objfile, nullptr,
97a1449a 5791 nullptr);
3b00ef10 5792 return true;
976ca316 5793 }, per_objfile);
3b00ef10
TT
5794
5795 /* It's a shame we couldn't do this inside the
5796 dw2_expand_symtabs_matching_symbol callback, but that skips CUs
5797 that have already been expanded. Instead, this loop matches what
5798 the psymtab code does. */
976ca316 5799 for (dwarf2_per_cu_data *per_cu : per_objfile->per_bfd->all_comp_units)
3b00ef10 5800 {
976ca316 5801 compunit_symtab *symtab = per_objfile->get_symtab (per_cu);
af758d11 5802 if (symtab != nullptr)
3b00ef10
TT
5803 {
5804 const struct block *block
af758d11 5805 = BLOCKVECTOR_BLOCK (COMPUNIT_BLOCKVECTOR (symtab), block_kind);
3b00ef10
TT
5806 if (!iterate_over_symbols_terminated (block, name,
5807 domain, callback))
5808 break;
5809 }
5810 }
5811}
5812
927aa2e7
JK
5813static void
5814dw2_debug_names_expand_symtabs_matching
5815 (struct objfile *objfile,
5816 gdb::function_view<expand_symtabs_file_matcher_ftype> file_matcher,
c1a66c06 5817 const lookup_name_info *lookup_name,
927aa2e7
JK
5818 gdb::function_view<expand_symtabs_symbol_matcher_ftype> symbol_matcher,
5819 gdb::function_view<expand_symtabs_exp_notify_ftype> expansion_notify,
5820 enum search_domain kind)
5821{
976ca316 5822 dwarf2_per_objfile *per_objfile = get_dwarf2_per_objfile (objfile);
9291a0cd 5823
927aa2e7 5824 /* debug_names_table is NULL if OBJF_READNOW. */
976ca316 5825 if (!per_objfile->per_bfd->debug_names_table)
927aa2e7 5826 return;
9291a0cd 5827
976ca316 5828 dw_expand_symtabs_matching_file_matcher (per_objfile, file_matcher);
24c79950 5829
c1a66c06
TV
5830 if (symbol_matcher == NULL && lookup_name == NULL)
5831 {
976ca316 5832 for (dwarf2_per_cu_data *per_cu : per_objfile->per_bfd->all_comp_units)
c1a66c06
TV
5833 {
5834 QUIT;
5835
976ca316
SM
5836 dw2_expand_symtabs_matching_one (per_cu, per_objfile, file_matcher,
5837 expansion_notify);
c1a66c06
TV
5838 }
5839 return;
5840 }
5841
976ca316 5842 mapped_debug_names &map = *per_objfile->per_bfd->debug_names_table;
bbf2f4df 5843
c1a66c06 5844 dw2_expand_symtabs_matching_symbol (map, *lookup_name,
44ed8f3e
PA
5845 symbol_matcher,
5846 kind, [&] (offset_type namei)
927aa2e7 5847 {
927aa2e7
JK
5848 /* The name was matched, now expand corresponding CUs that were
5849 marked. */
976ca316 5850 dw2_debug_names_iterator iter (map, kind, namei, per_objfile);
bbf2f4df 5851
927aa2e7
JK
5852 struct dwarf2_per_cu_data *per_cu;
5853 while ((per_cu = iter.next ()) != NULL)
976ca316
SM
5854 dw2_expand_symtabs_matching_one (per_cu, per_objfile, file_matcher,
5855 expansion_notify);
3b00ef10 5856 return true;
976ca316 5857 }, per_objfile);
9291a0cd
TT
5858}
5859
927aa2e7 5860const struct quick_symbol_functions dwarf2_debug_names_functions =
9291a0cd
TT
5861{
5862 dw2_has_symbols,
5863 dw2_find_last_source_symtab,
5864 dw2_forget_cached_source_info,
f8eba3c6 5865 dw2_map_symtabs_matching_filename,
927aa2e7 5866 dw2_debug_names_lookup_symbol,
d3214198 5867 NULL,
9291a0cd 5868 dw2_print_stats,
927aa2e7 5869 dw2_debug_names_dump,
927aa2e7 5870 dw2_debug_names_expand_symtabs_for_function,
9291a0cd 5871 dw2_expand_all_symtabs,
652a8996 5872 dw2_expand_symtabs_with_fullname,
3b00ef10 5873 dw2_debug_names_map_matching_symbols,
927aa2e7 5874 dw2_debug_names_expand_symtabs_matching,
43f3e411 5875 dw2_find_pc_sect_compunit_symtab,
71a3c369 5876 NULL,
9291a0cd
TT
5877 dw2_map_symbol_filenames
5878};
5879
4485a1c1 5880/* Get the content of the .gdb_index section of OBJ. SECTION_OWNER should point
5989a64e 5881 to either a dwarf2_per_bfd or dwz_file object. */
4485a1c1
SM
5882
5883template <typename T>
5884static gdb::array_view<const gdb_byte>
5885get_gdb_index_contents_from_section (objfile *obj, T *section_owner)
5886{
5887 dwarf2_section_info *section = &section_owner->gdb_index;
5888
96b79293 5889 if (section->empty ())
4485a1c1
SM
5890 return {};
5891
5892 /* Older elfutils strip versions could keep the section in the main
5893 executable while splitting it for the separate debug info file. */
96b79293 5894 if ((section->get_flags () & SEC_HAS_CONTENTS) == 0)
4485a1c1
SM
5895 return {};
5896
96b79293 5897 section->read (obj);
4485a1c1 5898
8bebfcda
PA
5899 /* dwarf2_section_info::size is a bfd_size_type, while
5900 gdb::array_view works with size_t. On 32-bit hosts, with
5901 --enable-64-bit-bfd, bfd_size_type is a 64-bit type, while size_t
5902 is 32-bit. So we need an explicit narrowing conversion here.
5903 This is fine, because it's impossible to allocate or mmap an
5904 array/buffer larger than what size_t can represent. */
5905 return gdb::make_array_view (section->buffer, section->size);
4485a1c1
SM
5906}
5907
87d6a7aa
SM
5908/* Lookup the index cache for the contents of the index associated to
5909 DWARF2_OBJ. */
5910
5911static gdb::array_view<const gdb_byte>
5989a64e 5912get_gdb_index_contents_from_cache (objfile *obj, dwarf2_per_bfd *dwarf2_per_bfd)
87d6a7aa
SM
5913{
5914 const bfd_build_id *build_id = build_id_bfd_get (obj->obfd);
5915 if (build_id == nullptr)
5916 return {};
5917
5918 return global_index_cache.lookup_gdb_index (build_id,
5989a64e 5919 &dwarf2_per_bfd->index_cache_res);
87d6a7aa
SM
5920}
5921
5922/* Same as the above, but for DWZ. */
5923
5924static gdb::array_view<const gdb_byte>
5925get_gdb_index_contents_from_cache_dwz (objfile *obj, dwz_file *dwz)
5926{
5927 const bfd_build_id *build_id = build_id_bfd_get (dwz->dwz_bfd.get ());
5928 if (build_id == nullptr)
5929 return {};
5930
5931 return global_index_cache.lookup_gdb_index (build_id, &dwz->index_cache_res);
5932}
5933
3c0aa29a 5934/* See symfile.h. */
9291a0cd 5935
3c0aa29a
PA
5936bool
5937dwarf2_initialize_objfile (struct objfile *objfile, dw_index_kind *index_kind)
9291a0cd 5938{
976ca316
SM
5939 dwarf2_per_objfile *per_objfile = get_dwarf2_per_objfile (objfile);
5940 dwarf2_per_bfd *per_bfd = per_objfile->per_bfd;
ed2dc618 5941
9291a0cd
TT
5942 /* If we're about to read full symbols, don't bother with the
5943 indices. In this case we also don't care if some other debug
5944 format is making psymtabs, because they are all about to be
5945 expanded anyway. */
5946 if ((objfile->flags & OBJF_READNOW))
5947 {
17ee85fc
TT
5948 /* When using READNOW, the using_index flag (set below) indicates that
5949 PER_BFD was already initialized, when we loaded some other objfile. */
5950 if (per_bfd->using_index)
5951 {
5952 *index_kind = dw_index_kind::GDB_INDEX;
976ca316 5953 per_objfile->resize_symtabs ();
17ee85fc
TT
5954 return true;
5955 }
5956
5957 per_bfd->using_index = 1;
976ca316
SM
5958 create_all_comp_units (per_objfile);
5959 create_all_type_units (per_objfile);
17ee85fc
TT
5960 per_bfd->quick_file_names_table
5961 = create_quick_file_names_table (per_bfd->all_comp_units.size ());
976ca316 5962 per_objfile->resize_symtabs ();
9291a0cd 5963
17ee85fc
TT
5964 for (int i = 0; i < (per_bfd->all_comp_units.size ()
5965 + per_bfd->all_type_units.size ()); ++i)
9291a0cd 5966 {
17ee85fc 5967 dwarf2_per_cu_data *per_cu = per_bfd->get_cutu (i);
9291a0cd 5968
17ee85fc 5969 per_cu->v.quick = OBSTACK_ZALLOC (&per_bfd->obstack,
e254ef6a 5970 struct dwarf2_per_cu_quick_data);
9291a0cd
TT
5971 }
5972
5973 /* Return 1 so that gdb sees the "quick" functions. However,
5974 these functions will be no-ops because we will have expanded
5975 all symtabs. */
3c0aa29a
PA
5976 *index_kind = dw_index_kind::GDB_INDEX;
5977 return true;
9291a0cd
TT
5978 }
5979
17ee85fc
TT
5980 /* Was a debug names index already read when we processed an objfile sharing
5981 PER_BFD? */
5982 if (per_bfd->debug_names_table != nullptr)
5983 {
5984 *index_kind = dw_index_kind::DEBUG_NAMES;
f8c41851 5985 per_objfile->objfile->partial_symtabs = per_bfd->partial_symtabs;
976ca316 5986 per_objfile->resize_symtabs ();
17ee85fc
TT
5987 return true;
5988 }
5989
5990 /* Was a GDB index already read when we processed an objfile sharing
5991 PER_BFD? */
5992 if (per_bfd->index_table != nullptr)
5993 {
5994 *index_kind = dw_index_kind::GDB_INDEX;
f8c41851 5995 per_objfile->objfile->partial_symtabs = per_bfd->partial_symtabs;
976ca316 5996 per_objfile->resize_symtabs ();
17ee85fc
TT
5997 return true;
5998 }
5999
976ca316 6000 if (dwarf2_read_debug_names (per_objfile))
3c0aa29a
PA
6001 {
6002 *index_kind = dw_index_kind::DEBUG_NAMES;
976ca316 6003 per_objfile->resize_symtabs ();
3c0aa29a
PA
6004 return true;
6005 }
927aa2e7 6006
976ca316 6007 if (dwarf2_read_gdb_index (per_objfile,
5989a64e 6008 get_gdb_index_contents_from_section<struct dwarf2_per_bfd>,
4485a1c1 6009 get_gdb_index_contents_from_section<dwz_file>))
3c0aa29a
PA
6010 {
6011 *index_kind = dw_index_kind::GDB_INDEX;
976ca316 6012 per_objfile->resize_symtabs ();
3c0aa29a
PA
6013 return true;
6014 }
9291a0cd 6015
87d6a7aa 6016 /* ... otherwise, try to find the index in the index cache. */
976ca316 6017 if (dwarf2_read_gdb_index (per_objfile,
87d6a7aa
SM
6018 get_gdb_index_contents_from_cache,
6019 get_gdb_index_contents_from_cache_dwz))
6020 {
6021 global_index_cache.hit ();
6022 *index_kind = dw_index_kind::GDB_INDEX;
976ca316 6023 per_objfile->resize_symtabs ();
87d6a7aa
SM
6024 return true;
6025 }
6026
6027 global_index_cache.miss ();
3c0aa29a 6028 return false;
9291a0cd
TT
6029}
6030
6031\f
6032
dce234bc
PP
6033/* Build a partial symbol table. */
6034
6035void
f29dff0a 6036dwarf2_build_psymtabs (struct objfile *objfile)
dce234bc 6037{
976ca316
SM
6038 dwarf2_per_objfile *per_objfile = get_dwarf2_per_objfile (objfile);
6039 dwarf2_per_bfd *per_bfd = per_objfile->per_bfd;
17ee85fc
TT
6040
6041 if (per_bfd->partial_symtabs != nullptr)
6042 {
6043 /* Partial symbols were already read, so now we can simply
6044 attach them. */
6045 objfile->partial_symtabs = per_bfd->partial_symtabs;
976ca316 6046 per_objfile->resize_symtabs ();
17ee85fc
TT
6047 return;
6048 }
c9bf0622 6049
6eee24ce 6050 init_psymbol_list (objfile, 1024);
c906108c 6051
a70b8144 6052 try
c9bf0622
TT
6053 {
6054 /* This isn't really ideal: all the data we allocate on the
6055 objfile's obstack is still uselessly kept around. However,
6056 freeing it seems unsafe. */
906768f9 6057 psymtab_discarder psymtabs (objfile);
976ca316 6058 dwarf2_build_psymtabs_hard (per_objfile);
906768f9 6059 psymtabs.keep ();
87d6a7aa 6060
976ca316 6061 per_objfile->resize_symtabs ();
af758d11 6062
87d6a7aa 6063 /* (maybe) store an index in the cache. */
976ca316 6064 global_index_cache.store (per_objfile);
c9bf0622 6065 }
230d2906 6066 catch (const gdb_exception_error &except)
492d29ea
PA
6067 {
6068 exception_print (gdb_stderr, except);
6069 }
17ee85fc
TT
6070
6071 /* Finish by setting the local reference to partial symtabs, so that
6072 we don't try to read them again if reading another objfile with the same
6073 BFD. If we can't in fact share, this won't make a difference anyway as
6074 the dwarf2_per_bfd object won't be shared. */
6075 per_bfd->partial_symtabs = objfile->partial_symtabs;
c906108c 6076}
c906108c 6077
3b80fe9b
DE
6078/* Find the base address of the compilation unit for range lists and
6079 location lists. It will normally be specified by DW_AT_low_pc.
6080 In DWARF-3 draft 4, the base address could be overridden by
6081 DW_AT_entry_pc. It's been removed, but GCC still uses this for
6082 compilation units with discontinuous ranges. */
6083
6084static void
6085dwarf2_find_base_address (struct die_info *die, struct dwarf2_cu *cu)
6086{
6087 struct attribute *attr;
6088
2b24b6e4 6089 cu->base_address.reset ();
3b80fe9b
DE
6090
6091 attr = dwarf2_attr (die, DW_AT_entry_pc, cu);
435d3d88 6092 if (attr != nullptr)
2b24b6e4 6093 cu->base_address = attr->value_as_address ();
3b80fe9b
DE
6094 else
6095 {
6096 attr = dwarf2_attr (die, DW_AT_low_pc, cu);
435d3d88 6097 if (attr != nullptr)
2b24b6e4 6098 cu->base_address = attr->value_as_address ();
3b80fe9b
DE
6099 }
6100}
6101
36586728
TT
6102/* Helper function that returns the proper abbrev section for
6103 THIS_CU. */
6104
6105static struct dwarf2_section_info *
6106get_abbrev_section_for_cu (struct dwarf2_per_cu_data *this_cu)
6107{
6108 struct dwarf2_section_info *abbrev;
c3699833 6109 dwarf2_per_bfd *per_bfd = this_cu->per_bfd;
36586728
TT
6110
6111 if (this_cu->is_dwz)
c3699833 6112 abbrev = &dwarf2_get_dwz_file (per_bfd)->abbrev;
36586728 6113 else
c3699833 6114 abbrev = &per_bfd->abbrev;
36586728
TT
6115
6116 return abbrev;
6117}
6118
f4dc4d17
DE
6119/* Fetch the abbreviation table offset from a comp or type unit header. */
6120
6121static sect_offset
976ca316 6122read_abbrev_offset (dwarf2_per_objfile *per_objfile,
ed2dc618 6123 struct dwarf2_section_info *section,
9c541725 6124 sect_offset sect_off)
f4dc4d17 6125{
96b79293 6126 bfd *abfd = section->get_bfd_owner ();
d521ce57 6127 const gdb_byte *info_ptr;
ac298888 6128 unsigned int initial_length_size, offset_size;
43988095 6129 uint16_t version;
f4dc4d17 6130
976ca316 6131 section->read (per_objfile->objfile);
9c541725 6132 info_ptr = section->buffer + to_underlying (sect_off);
ac298888 6133 read_initial_length (abfd, info_ptr, &initial_length_size);
f4dc4d17 6134 offset_size = initial_length_size == 4 ? 4 : 8;
43988095
JK
6135 info_ptr += initial_length_size;
6136
6137 version = read_2_bytes (abfd, info_ptr);
6138 info_ptr += 2;
6139 if (version >= 5)
6140 {
6141 /* Skip unit type and address size. */
6142 info_ptr += 2;
6143 }
6144
24aa364d 6145 return (sect_offset) read_offset (abfd, info_ptr, offset_size);
f4dc4d17
DE
6146}
6147
b83470bf
TT
6148/* A partial symtab that is used only for include files. */
6149struct dwarf2_include_psymtab : public partial_symtab
6150{
6151 dwarf2_include_psymtab (const char *filename, struct objfile *objfile)
6152 : partial_symtab (filename, objfile)
6153 {
6154 }
6155
6156 void read_symtab (struct objfile *objfile) override
6157 {
194d088f
TV
6158 /* It's an include file, no symbols to read for it.
6159 Everything is in the includer symtab. */
6160
6161 /* The expansion of a dwarf2_include_psymtab is just a trigger for
6162 expansion of the includer psymtab. We use the dependencies[0] field to
6163 model the includer. But if we go the regular route of calling
6164 expand_psymtab here, and having expand_psymtab call expand_dependencies
6165 to expand the includer, we'll only use expand_psymtab on the includer
6166 (making it a non-toplevel psymtab), while if we expand the includer via
6167 another path, we'll use read_symtab (making it a toplevel psymtab).
6168 So, don't pretend a dwarf2_include_psymtab is an actual toplevel
6169 psymtab, and trigger read_symtab on the includer here directly. */
6170 includer ()->read_symtab (objfile);
b83470bf
TT
6171 }
6172
6173 void expand_psymtab (struct objfile *objfile) override
6174 {
194d088f
TV
6175 /* This is not called by read_symtab, and should not be called by any
6176 expand_dependencies. */
6177 gdb_assert (false);
b83470bf
TT
6178 }
6179
5717c425 6180 bool readin_p (struct objfile *objfile) const override
b83470bf 6181 {
5717c425 6182 return includer ()->readin_p (objfile);
b83470bf
TT
6183 }
6184
5717c425 6185 compunit_symtab *get_compunit_symtab (struct objfile *objfile) const override
b83470bf
TT
6186 {
6187 return nullptr;
6188 }
6189
6190private:
194d088f
TV
6191 partial_symtab *includer () const
6192 {
6193 /* An include psymtab has exactly one dependency: the psymtab that
6194 includes it. */
6195 gdb_assert (this->number_of_dependencies == 1);
6196 return this->dependencies[0];
6197 }
b83470bf
TT
6198};
6199
aaa75496
JB
6200/* Allocate a new partial symtab for file named NAME and mark this new
6201 partial symtab as being an include of PST. */
6202
6203static void
891813be 6204dwarf2_create_include_psymtab (const char *name, dwarf2_psymtab *pst,
aaa75496
JB
6205 struct objfile *objfile)
6206{
b83470bf 6207 dwarf2_include_psymtab *subpst = new dwarf2_include_psymtab (name, objfile);
aaa75496 6208
fbd9ab74 6209 if (!IS_ABSOLUTE_PATH (subpst->filename))
45940949 6210 subpst->dirname = pst->dirname;
fbd9ab74 6211
a9342b62 6212 subpst->dependencies = objfile->partial_symtabs->allocate_dependencies (1);
aaa75496
JB
6213 subpst->dependencies[0] = pst;
6214 subpst->number_of_dependencies = 1;
aaa75496
JB
6215}
6216
6217/* Read the Line Number Program data and extract the list of files
6218 included by the source file represented by PST. Build an include
d85a05f0 6219 partial symtab for each of these included files. */
aaa75496
JB
6220
6221static void
6222dwarf2_build_include_psymtabs (struct dwarf2_cu *cu,
dee91e82 6223 struct die_info *die,
891813be 6224 dwarf2_psymtab *pst)
aaa75496 6225{
fff8551c 6226 line_header_up lh;
d85a05f0 6227 struct attribute *attr;
aaa75496 6228
d85a05f0 6229 attr = dwarf2_attr (die, DW_AT_stmt_list, cu);
435d3d88 6230 if (attr != nullptr)
9c541725 6231 lh = dwarf_decode_line_header ((sect_offset) DW_UNSND (attr), cu);
aaa75496
JB
6232 if (lh == NULL)
6233 return; /* No linetable, so no includes. */
6234
79748972
TT
6235 /* NOTE: pst->dirname is DW_AT_comp_dir (if present). Also note
6236 that we pass in the raw text_low here; that is ok because we're
6237 only decoding the line table to make include partial symtabs, and
6238 so the addresses aren't really used. */
4ae976d1 6239 dwarf_decode_lines (lh.get (), pst->dirname, cu, pst,
79748972 6240 pst->raw_text_low (), 1);
aaa75496
JB
6241}
6242
348e048f 6243static hashval_t
52dc124a 6244hash_signatured_type (const void *item)
348e048f 6245{
9a3c8263
SM
6246 const struct signatured_type *sig_type
6247 = (const struct signatured_type *) item;
9a619af0 6248
348e048f 6249 /* This drops the top 32 bits of the signature, but is ok for a hash. */
52dc124a 6250 return sig_type->signature;
348e048f
DE
6251}
6252
6253static int
52dc124a 6254eq_signatured_type (const void *item_lhs, const void *item_rhs)
348e048f 6255{
9a3c8263
SM
6256 const struct signatured_type *lhs = (const struct signatured_type *) item_lhs;
6257 const struct signatured_type *rhs = (const struct signatured_type *) item_rhs;
9a619af0 6258
348e048f
DE
6259 return lhs->signature == rhs->signature;
6260}
6261
1fd400ff
TT
6262/* Allocate a hash table for signatured types. */
6263
b0b6a987 6264static htab_up
298e9637 6265allocate_signatured_type_table ()
1fd400ff 6266{
b0b6a987
TT
6267 return htab_up (htab_create_alloc (41,
6268 hash_signatured_type,
6269 eq_signatured_type,
6270 NULL, xcalloc, xfree));
1fd400ff
TT
6271}
6272
d467dd73 6273/* A helper function to add a signatured type CU to a table. */
1fd400ff
TT
6274
6275static int
d467dd73 6276add_signatured_type_cu_to_table (void **slot, void *datum)
1fd400ff 6277{
9a3c8263 6278 struct signatured_type *sigt = (struct signatured_type *) *slot;
b2bdb8cf
SM
6279 std::vector<signatured_type *> *all_type_units
6280 = (std::vector<signatured_type *> *) datum;
1fd400ff 6281
b2bdb8cf 6282 all_type_units->push_back (sigt);
1fd400ff
TT
6283
6284 return 1;
6285}
6286
78d4d2c5 6287/* A helper for create_debug_types_hash_table. Read types from SECTION
43988095
JK
6288 and fill them into TYPES_HTAB. It will process only type units,
6289 therefore DW_UT_type. */
c88ee1f0 6290
78d4d2c5 6291static void
976ca316 6292create_debug_type_hash_table (dwarf2_per_objfile *per_objfile,
ed2dc618 6293 struct dwo_file *dwo_file,
b0b6a987 6294 dwarf2_section_info *section, htab_up &types_htab,
43988095 6295 rcuh_kind section_kind)
348e048f 6296{
976ca316 6297 struct objfile *objfile = per_objfile->objfile;
4bdcc0c1 6298 struct dwarf2_section_info *abbrev_section;
78d4d2c5
JK
6299 bfd *abfd;
6300 const gdb_byte *info_ptr, *end_ptr;
348e048f 6301
4bdcc0c1
DE
6302 abbrev_section = (dwo_file != NULL
6303 ? &dwo_file->sections.abbrev
976ca316 6304 : &per_objfile->per_bfd->abbrev);
4bdcc0c1 6305
b4f54984 6306 if (dwarf_read_debug)
43988095 6307 fprintf_unfiltered (gdb_stdlog, "Reading %s for %s:\n",
96b79293
TT
6308 section->get_name (),
6309 abbrev_section->get_file_name ());
09406207 6310
96b79293 6311 section->read (objfile);
78d4d2c5 6312 info_ptr = section->buffer;
348e048f 6313
78d4d2c5
JK
6314 if (info_ptr == NULL)
6315 return;
348e048f 6316
78d4d2c5
JK
6317 /* We can't set abfd until now because the section may be empty or
6318 not present, in which case the bfd is unknown. */
96b79293 6319 abfd = section->get_bfd_owner ();
348e048f 6320
c0ab21c2
TT
6321 /* We don't use cutu_reader here because we don't need to read
6322 any dies: the signature is in the header. */
3019eac3 6323
78d4d2c5
JK
6324 end_ptr = info_ptr + section->size;
6325 while (info_ptr < end_ptr)
6326 {
78d4d2c5
JK
6327 struct signatured_type *sig_type;
6328 struct dwo_unit *dwo_tu;
6329 void **slot;
6330 const gdb_byte *ptr = info_ptr;
6331 struct comp_unit_head header;
6332 unsigned int length;
8b70b953 6333
9c541725 6334 sect_offset sect_off = (sect_offset) (ptr - section->buffer);
348e048f 6335
a49dd8dd
JK
6336 /* Initialize it due to a false compiler warning. */
6337 header.signature = -1;
9c541725 6338 header.type_cu_offset_in_tu = (cu_offset) -1;
a49dd8dd 6339
78d4d2c5
JK
6340 /* We need to read the type's signature in order to build the hash
6341 table, but we don't need anything else just yet. */
348e048f 6342
976ca316 6343 ptr = read_and_check_comp_unit_head (per_objfile, &header, section,
43988095 6344 abbrev_section, ptr, section_kind);
348e048f 6345
4057dfde 6346 length = header.get_length ();
6caca83c 6347
78d4d2c5
JK
6348 /* Skip dummy type units. */
6349 if (ptr >= info_ptr + length
43988095
JK
6350 || peek_abbrev_code (abfd, ptr) == 0
6351 || header.unit_type != DW_UT_type)
78d4d2c5
JK
6352 {
6353 info_ptr += length;
6354 continue;
6355 }
dee91e82 6356
78d4d2c5
JK
6357 if (types_htab == NULL)
6358 {
6359 if (dwo_file)
298e9637 6360 types_htab = allocate_dwo_unit_table ();
78d4d2c5 6361 else
298e9637 6362 types_htab = allocate_signatured_type_table ();
78d4d2c5 6363 }
8b70b953 6364
78d4d2c5
JK
6365 if (dwo_file)
6366 {
6367 sig_type = NULL;
976ca316 6368 dwo_tu = OBSTACK_ZALLOC (&per_objfile->per_bfd->obstack, dwo_unit);
78d4d2c5 6369 dwo_tu->dwo_file = dwo_file;
43988095 6370 dwo_tu->signature = header.signature;
9c541725 6371 dwo_tu->type_offset_in_tu = header.type_cu_offset_in_tu;
78d4d2c5 6372 dwo_tu->section = section;
9c541725 6373 dwo_tu->sect_off = sect_off;
78d4d2c5
JK
6374 dwo_tu->length = length;
6375 }
6376 else
6377 {
6378 /* N.B.: type_offset is not usable if this type uses a DWO file.
6379 The real type_offset is in the DWO file. */
6380 dwo_tu = NULL;
976ca316 6381 sig_type = per_objfile->per_bfd->allocate_signatured_type ();
43988095 6382 sig_type->signature = header.signature;
9c541725 6383 sig_type->type_offset_in_tu = header.type_cu_offset_in_tu;
78d4d2c5
JK
6384 sig_type->per_cu.is_debug_types = 1;
6385 sig_type->per_cu.section = section;
9c541725 6386 sig_type->per_cu.sect_off = sect_off;
78d4d2c5
JK
6387 sig_type->per_cu.length = length;
6388 }
6389
b0b6a987 6390 slot = htab_find_slot (types_htab.get (),
78d4d2c5
JK
6391 dwo_file ? (void*) dwo_tu : (void *) sig_type,
6392 INSERT);
6393 gdb_assert (slot != NULL);
6394 if (*slot != NULL)
6395 {
9c541725 6396 sect_offset dup_sect_off;
0349ea22 6397
3019eac3
DE
6398 if (dwo_file)
6399 {
78d4d2c5
JK
6400 const struct dwo_unit *dup_tu
6401 = (const struct dwo_unit *) *slot;
6402
9c541725 6403 dup_sect_off = dup_tu->sect_off;
3019eac3
DE
6404 }
6405 else
6406 {
78d4d2c5
JK
6407 const struct signatured_type *dup_tu
6408 = (const struct signatured_type *) *slot;
6409
9c541725 6410 dup_sect_off = dup_tu->per_cu.sect_off;
3019eac3 6411 }
8b70b953 6412
b98664d3 6413 complaint (_("debug type entry at offset %s is duplicate to"
9d8780f0
SM
6414 " the entry at offset %s, signature %s"),
6415 sect_offset_str (sect_off), sect_offset_str (dup_sect_off),
43988095 6416 hex_string (header.signature));
78d4d2c5
JK
6417 }
6418 *slot = dwo_file ? (void *) dwo_tu : (void *) sig_type;
3019eac3 6419
78d4d2c5 6420 if (dwarf_read_debug > 1)
9d8780f0
SM
6421 fprintf_unfiltered (gdb_stdlog, " offset %s, signature %s\n",
6422 sect_offset_str (sect_off),
43988095 6423 hex_string (header.signature));
3019eac3 6424
78d4d2c5
JK
6425 info_ptr += length;
6426 }
6427}
3019eac3 6428
78d4d2c5
JK
6429/* Create the hash table of all entries in the .debug_types
6430 (or .debug_types.dwo) section(s).
6431 If reading a DWO file, then DWO_FILE is a pointer to the DWO file object,
6432 otherwise it is NULL.
b3c8eb43 6433
78d4d2c5 6434 The result is a pointer to the hash table or NULL if there are no types.
348e048f 6435
78d4d2c5 6436 Note: This function processes DWO files only, not DWP files. */
348e048f 6437
78d4d2c5 6438static void
976ca316 6439create_debug_types_hash_table (dwarf2_per_objfile *per_objfile,
ed2dc618 6440 struct dwo_file *dwo_file,
fd5866f6 6441 gdb::array_view<dwarf2_section_info> type_sections,
b0b6a987 6442 htab_up &types_htab)
78d4d2c5 6443{
fd5866f6 6444 for (dwarf2_section_info &section : type_sections)
976ca316
SM
6445 create_debug_type_hash_table (per_objfile, dwo_file, &section, types_htab,
6446 rcuh_kind::TYPE);
3019eac3
DE
6447}
6448
6449/* Create the hash table of all entries in the .debug_types section,
6450 and initialize all_type_units.
6451 The result is zero if there is an error (e.g. missing .debug_types section),
6452 otherwise non-zero. */
6453
6454static int
976ca316 6455create_all_type_units (dwarf2_per_objfile *per_objfile)
3019eac3 6456{
b0b6a987 6457 htab_up types_htab;
3019eac3 6458
976ca316
SM
6459 create_debug_type_hash_table (per_objfile, NULL, &per_objfile->per_bfd->info,
6460 types_htab, rcuh_kind::COMPILE);
6461 create_debug_types_hash_table (per_objfile, NULL, per_objfile->per_bfd->types,
6462 types_htab);
3019eac3
DE
6463 if (types_htab == NULL)
6464 {
976ca316 6465 per_objfile->per_bfd->signatured_types = NULL;
3019eac3
DE
6466 return 0;
6467 }
6468
976ca316 6469 per_objfile->per_bfd->signatured_types = std::move (types_htab);
348e048f 6470
976ca316
SM
6471 gdb_assert (per_objfile->per_bfd->all_type_units.empty ());
6472 per_objfile->per_bfd->all_type_units.reserve
6473 (htab_elements (per_objfile->per_bfd->signatured_types.get ()));
b2bdb8cf 6474
976ca316 6475 htab_traverse_noresize (per_objfile->per_bfd->signatured_types.get (),
b0b6a987 6476 add_signatured_type_cu_to_table,
976ca316 6477 &per_objfile->per_bfd->all_type_units);
1fd400ff 6478
348e048f
DE
6479 return 1;
6480}
6481
5989a64e 6482/* Add an entry for signature SIG to dwarf2_per_objfile->per_bfd->signatured_types.
6aa5f3a6
DE
6483 If SLOT is non-NULL, it is the entry to use in the hash table.
6484 Otherwise we find one. */
6485
6486static struct signatured_type *
976ca316 6487add_type_unit (dwarf2_per_objfile *per_objfile, ULONGEST sig, void **slot)
6aa5f3a6 6488{
976ca316
SM
6489 if (per_objfile->per_bfd->all_type_units.size ()
6490 == per_objfile->per_bfd->all_type_units.capacity ())
6491 ++per_objfile->per_bfd->tu_stats.nr_all_type_units_reallocs;
6aa5f3a6 6492
976ca316 6493 signatured_type *sig_type = per_objfile->per_bfd->allocate_signatured_type ();
b2bdb8cf 6494
976ca316 6495 per_objfile->resize_symtabs ();
af758d11 6496
976ca316 6497 per_objfile->per_bfd->all_type_units.push_back (sig_type);
6aa5f3a6
DE
6498 sig_type->signature = sig;
6499 sig_type->per_cu.is_debug_types = 1;
976ca316 6500 if (per_objfile->per_bfd->using_index)
6aa5f3a6
DE
6501 {
6502 sig_type->per_cu.v.quick =
976ca316 6503 OBSTACK_ZALLOC (&per_objfile->per_bfd->obstack,
6aa5f3a6
DE
6504 struct dwarf2_per_cu_quick_data);
6505 }
6506
6507 if (slot == NULL)
6508 {
976ca316 6509 slot = htab_find_slot (per_objfile->per_bfd->signatured_types.get (),
6aa5f3a6
DE
6510 sig_type, INSERT);
6511 }
6512 gdb_assert (*slot == NULL);
6513 *slot = sig_type;
6514 /* The rest of sig_type must be filled in by the caller. */
6515 return sig_type;
6516}
6517
a2ce51a0
DE
6518/* Subroutine of lookup_dwo_signatured_type and lookup_dwp_signatured_type.
6519 Fill in SIG_ENTRY with DWO_ENTRY. */
6520
6521static void
976ca316 6522fill_in_sig_entry_from_dwo_entry (dwarf2_per_objfile *per_objfile,
a2ce51a0
DE
6523 struct signatured_type *sig_entry,
6524 struct dwo_unit *dwo_entry)
6525{
976ca316 6526 dwarf2_per_bfd *per_bfd = per_objfile->per_bfd;
1859c670 6527
7ee85ab1 6528 /* Make sure we're not clobbering something we don't expect to. */
a2ce51a0 6529 gdb_assert (! sig_entry->per_cu.queued);
976ca316 6530 gdb_assert (per_objfile->get_cu (&sig_entry->per_cu) == NULL);
1859c670 6531 if (per_bfd->using_index)
6aa5f3a6
DE
6532 {
6533 gdb_assert (sig_entry->per_cu.v.quick != NULL);
976ca316 6534 gdb_assert (!per_objfile->symtab_set_p (&sig_entry->per_cu));
6aa5f3a6
DE
6535 }
6536 else
6537 gdb_assert (sig_entry->per_cu.v.psymtab == NULL);
a2ce51a0 6538 gdb_assert (sig_entry->signature == dwo_entry->signature);
9c541725 6539 gdb_assert (to_underlying (sig_entry->type_offset_in_section) == 0);
a2ce51a0 6540 gdb_assert (sig_entry->type_unit_group == NULL);
7ee85ab1
DE
6541 gdb_assert (sig_entry->dwo_unit == NULL);
6542
6543 sig_entry->per_cu.section = dwo_entry->section;
9c541725 6544 sig_entry->per_cu.sect_off = dwo_entry->sect_off;
7ee85ab1
DE
6545 sig_entry->per_cu.length = dwo_entry->length;
6546 sig_entry->per_cu.reading_dwo_directly = 1;
1859c670 6547 sig_entry->per_cu.per_bfd = per_bfd;
a2ce51a0
DE
6548 sig_entry->type_offset_in_tu = dwo_entry->type_offset_in_tu;
6549 sig_entry->dwo_unit = dwo_entry;
6550}
6551
6552/* Subroutine of lookup_signatured_type.
7ee85ab1
DE
6553 If we haven't read the TU yet, create the signatured_type data structure
6554 for a TU to be read in directly from a DWO file, bypassing the stub.
6555 This is the "Stay in DWO Optimization": When there is no DWP file and we're
6556 using .gdb_index, then when reading a CU we want to stay in the DWO file
6557 containing that CU. Otherwise we could end up reading several other DWO
6558 files (due to comdat folding) to process the transitive closure of all the
6559 mentioned TUs, and that can be slow. The current DWO file will have every
6560 type signature that it needs.
a2ce51a0
DE
6561 We only do this for .gdb_index because in the psymtab case we already have
6562 to read all the DWOs to build the type unit groups. */
6563
6564static struct signatured_type *
6565lookup_dwo_signatured_type (struct dwarf2_cu *cu, ULONGEST sig)
6566{
976ca316 6567 dwarf2_per_objfile *per_objfile = cu->per_objfile;
a2ce51a0
DE
6568 struct dwo_file *dwo_file;
6569 struct dwo_unit find_dwo_entry, *dwo_entry;
6570 struct signatured_type find_sig_entry, *sig_entry;
6aa5f3a6 6571 void **slot;
a2ce51a0 6572
976ca316 6573 gdb_assert (cu->dwo_unit && per_objfile->per_bfd->using_index);
a2ce51a0 6574
6aa5f3a6
DE
6575 /* If TU skeletons have been removed then we may not have read in any
6576 TUs yet. */
976ca316
SM
6577 if (per_objfile->per_bfd->signatured_types == NULL)
6578 per_objfile->per_bfd->signatured_types = allocate_signatured_type_table ();
a2ce51a0
DE
6579
6580 /* We only ever need to read in one copy of a signatured type.
6aa5f3a6
DE
6581 Use the global signatured_types array to do our own comdat-folding
6582 of types. If this is the first time we're reading this TU, and
6583 the TU has an entry in .gdb_index, replace the recorded data from
6584 .gdb_index with this TU. */
a2ce51a0 6585
a2ce51a0 6586 find_sig_entry.signature = sig;
976ca316 6587 slot = htab_find_slot (per_objfile->per_bfd->signatured_types.get (),
6aa5f3a6 6588 &find_sig_entry, INSERT);
9a3c8263 6589 sig_entry = (struct signatured_type *) *slot;
7ee85ab1
DE
6590
6591 /* We can get here with the TU already read, *or* in the process of being
6aa5f3a6
DE
6592 read. Don't reassign the global entry to point to this DWO if that's
6593 the case. Also note that if the TU is already being read, it may not
6594 have come from a DWO, the program may be a mix of Fission-compiled
6595 code and non-Fission-compiled code. */
6596
6597 /* Have we already tried to read this TU?
6598 Note: sig_entry can be NULL if the skeleton TU was removed (thus it
6599 needn't exist in the global table yet). */
6600 if (sig_entry != NULL && sig_entry->per_cu.tu_read)
a2ce51a0
DE
6601 return sig_entry;
6602
6aa5f3a6
DE
6603 /* Note: cu->dwo_unit is the dwo_unit that references this TU, not the
6604 dwo_unit of the TU itself. */
6605 dwo_file = cu->dwo_unit->dwo_file;
6606
a2ce51a0
DE
6607 /* Ok, this is the first time we're reading this TU. */
6608 if (dwo_file->tus == NULL)
6609 return NULL;
6610 find_dwo_entry.signature = sig;
b0b6a987
TT
6611 dwo_entry = (struct dwo_unit *) htab_find (dwo_file->tus.get (),
6612 &find_dwo_entry);
a2ce51a0
DE
6613 if (dwo_entry == NULL)
6614 return NULL;
6615
6aa5f3a6
DE
6616 /* If the global table doesn't have an entry for this TU, add one. */
6617 if (sig_entry == NULL)
976ca316 6618 sig_entry = add_type_unit (per_objfile, sig, slot);
6aa5f3a6 6619
976ca316 6620 fill_in_sig_entry_from_dwo_entry (per_objfile, sig_entry, dwo_entry);
89e63ee4 6621 sig_entry->per_cu.tu_read = 1;
a2ce51a0
DE
6622 return sig_entry;
6623}
6624
a2ce51a0
DE
6625/* Subroutine of lookup_signatured_type.
6626 Look up the type for signature SIG, and if we can't find SIG in .gdb_index
6aa5f3a6
DE
6627 then try the DWP file. If the TU stub (skeleton) has been removed then
6628 it won't be in .gdb_index. */
a2ce51a0
DE
6629
6630static struct signatured_type *
6631lookup_dwp_signatured_type (struct dwarf2_cu *cu, ULONGEST sig)
6632{
976ca316
SM
6633 dwarf2_per_objfile *per_objfile = cu->per_objfile;
6634 struct dwp_file *dwp_file = get_dwp_file (per_objfile);
a2ce51a0
DE
6635 struct dwo_unit *dwo_entry;
6636 struct signatured_type find_sig_entry, *sig_entry;
6aa5f3a6 6637 void **slot;
a2ce51a0 6638
976ca316 6639 gdb_assert (cu->dwo_unit && per_objfile->per_bfd->using_index);
a2ce51a0
DE
6640 gdb_assert (dwp_file != NULL);
6641
6aa5f3a6
DE
6642 /* If TU skeletons have been removed then we may not have read in any
6643 TUs yet. */
976ca316
SM
6644 if (per_objfile->per_bfd->signatured_types == NULL)
6645 per_objfile->per_bfd->signatured_types = allocate_signatured_type_table ();
a2ce51a0 6646
6aa5f3a6 6647 find_sig_entry.signature = sig;
976ca316 6648 slot = htab_find_slot (per_objfile->per_bfd->signatured_types.get (),
6aa5f3a6 6649 &find_sig_entry, INSERT);
9a3c8263 6650 sig_entry = (struct signatured_type *) *slot;
6aa5f3a6
DE
6651
6652 /* Have we already tried to read this TU?
6653 Note: sig_entry can be NULL if the skeleton TU was removed (thus it
6654 needn't exist in the global table yet). */
6655 if (sig_entry != NULL)
6656 return sig_entry;
6657
a2ce51a0
DE
6658 if (dwp_file->tus == NULL)
6659 return NULL;
976ca316
SM
6660 dwo_entry = lookup_dwo_unit_in_dwp (per_objfile, dwp_file, NULL, sig,
6661 1 /* is_debug_types */);
a2ce51a0
DE
6662 if (dwo_entry == NULL)
6663 return NULL;
6664
976ca316
SM
6665 sig_entry = add_type_unit (per_objfile, sig, slot);
6666 fill_in_sig_entry_from_dwo_entry (per_objfile, sig_entry, dwo_entry);
a2ce51a0 6667
a2ce51a0
DE
6668 return sig_entry;
6669}
6670
380bca97 6671/* Lookup a signature based type for DW_FORM_ref_sig8.
5a8b3f62
DE
6672 Returns NULL if signature SIG is not present in the table.
6673 It is up to the caller to complain about this. */
348e048f
DE
6674
6675static struct signatured_type *
a2ce51a0 6676lookup_signatured_type (struct dwarf2_cu *cu, ULONGEST sig)
348e048f 6677{
976ca316 6678 dwarf2_per_objfile *per_objfile = cu->per_objfile;
ed2dc618 6679
976ca316 6680 if (cu->dwo_unit && per_objfile->per_bfd->using_index)
a2ce51a0
DE
6681 {
6682 /* We're in a DWO/DWP file, and we're using .gdb_index.
6683 These cases require special processing. */
976ca316 6684 if (get_dwp_file (per_objfile) == NULL)
a2ce51a0
DE
6685 return lookup_dwo_signatured_type (cu, sig);
6686 else
6687 return lookup_dwp_signatured_type (cu, sig);
6688 }
6689 else
6690 {
6691 struct signatured_type find_entry, *entry;
348e048f 6692
976ca316 6693 if (per_objfile->per_bfd->signatured_types == NULL)
a2ce51a0
DE
6694 return NULL;
6695 find_entry.signature = sig;
9a3c8263 6696 entry = ((struct signatured_type *)
976ca316 6697 htab_find (per_objfile->per_bfd->signatured_types.get (),
b0b6a987 6698 &find_entry));
a2ce51a0
DE
6699 return entry;
6700 }
348e048f 6701}
18a8505e 6702
42e7ad6c 6703/* Low level DIE reading support. */
348e048f 6704
d85a05f0
DJ
6705/* Initialize a die_reader_specs struct from a dwarf2_cu struct. */
6706
6707static void
6708init_cu_die_reader (struct die_reader_specs *reader,
dee91e82 6709 struct dwarf2_cu *cu,
3019eac3 6710 struct dwarf2_section_info *section,
685af9cd
TT
6711 struct dwo_file *dwo_file,
6712 struct abbrev_table *abbrev_table)
d85a05f0 6713{
fceca515 6714 gdb_assert (section->readin && section->buffer != NULL);
96b79293 6715 reader->abfd = section->get_bfd_owner ();
d85a05f0 6716 reader->cu = cu;
3019eac3 6717 reader->dwo_file = dwo_file;
dee91e82
DE
6718 reader->die_section = section;
6719 reader->buffer = section->buffer;
f664829e 6720 reader->buffer_end = section->buffer + section->size;
685af9cd 6721 reader->abbrev_table = abbrev_table;
d85a05f0
DJ
6722}
6723
c0ab21c2 6724/* Subroutine of cutu_reader to simplify it.
b0c7bfa9 6725 Read in the rest of a CU/TU top level DIE from DWO_UNIT.
c0ab21c2 6726 There's just a lot of work to do, and cutu_reader is big enough
b0c7bfa9
DE
6727 already.
6728
6729 STUB_COMP_UNIT_DIE is for the stub DIE, we copy over certain attributes
6730 from it to the DIE in the DWO. If NULL we are skipping the stub.
a2ce51a0
DE
6731 STUB_COMP_DIR is similar to STUB_COMP_UNIT_DIE: When reading a TU directly
6732 from the DWO file, bypassing the stub, it contains the DW_AT_comp_dir
c54a1dd8
DE
6733 attribute of the referencing CU. At most one of STUB_COMP_UNIT_DIE and
6734 STUB_COMP_DIR may be non-NULL.
3e225074 6735 *RESULT_READER,*RESULT_INFO_PTR,*RESULT_COMP_UNIT_DIE
b0c7bfa9 6736 are filled in with the info of the DIE from the DWO file.
685af9cd
TT
6737 *RESULT_DWO_ABBREV_TABLE will be filled in with the abbrev table allocated
6738 from the dwo. Since *RESULT_READER references this abbrev table, it must be
6739 kept around for at least as long as *RESULT_READER.
6740
b0c7bfa9
DE
6741 The result is non-zero if a valid (non-dummy) DIE was found. */
6742
6743static int
4ab09049 6744read_cutu_die_from_dwo (dwarf2_cu *cu,
b0c7bfa9 6745 struct dwo_unit *dwo_unit,
b0c7bfa9 6746 struct die_info *stub_comp_unit_die,
a2ce51a0 6747 const char *stub_comp_dir,
b0c7bfa9 6748 struct die_reader_specs *result_reader,
d521ce57 6749 const gdb_byte **result_info_ptr,
b0c7bfa9 6750 struct die_info **result_comp_unit_die,
685af9cd 6751 abbrev_table_up *result_dwo_abbrev_table)
b0c7bfa9 6752{
976ca316 6753 dwarf2_per_objfile *per_objfile = cu->per_objfile;
4ab09049 6754 dwarf2_per_cu_data *per_cu = cu->per_cu;
976ca316 6755 struct objfile *objfile = per_objfile->objfile;
b0c7bfa9 6756 bfd *abfd;
d521ce57 6757 const gdb_byte *begin_info_ptr, *info_ptr;
b0c7bfa9
DE
6758 struct attribute *comp_dir, *stmt_list, *low_pc, *high_pc, *ranges;
6759 int i,num_extra_attrs;
6760 struct dwarf2_section_info *dwo_abbrev_section;
b0c7bfa9
DE
6761 struct die_info *comp_unit_die;
6762
b0aeadb3
DE
6763 /* At most one of these may be provided. */
6764 gdb_assert ((stub_comp_unit_die != NULL) + (stub_comp_dir != NULL) <= 1);
a2ce51a0 6765
b0c7bfa9
DE
6766 /* These attributes aren't processed until later:
6767 DW_AT_stmt_list, DW_AT_low_pc, DW_AT_high_pc, DW_AT_ranges.
0d60c288
DE
6768 DW_AT_comp_dir is used now, to find the DWO file, but it is also
6769 referenced later. However, these attributes are found in the stub
6770 which we won't have later. In order to not impose this complication
6771 on the rest of the code, we read them here and copy them to the
6772 DWO CU/TU die. */
b0c7bfa9
DE
6773
6774 stmt_list = NULL;
6775 low_pc = NULL;
6776 high_pc = NULL;
6777 ranges = NULL;
6778 comp_dir = NULL;
6779
6780 if (stub_comp_unit_die != NULL)
6781 {
6782 /* For TUs in DWO files, the DW_AT_stmt_list attribute lives in the
6783 DWO file. */
4ab09049 6784 if (!per_cu->is_debug_types)
b0c7bfa9
DE
6785 stmt_list = dwarf2_attr (stub_comp_unit_die, DW_AT_stmt_list, cu);
6786 low_pc = dwarf2_attr (stub_comp_unit_die, DW_AT_low_pc, cu);
6787 high_pc = dwarf2_attr (stub_comp_unit_die, DW_AT_high_pc, cu);
6788 ranges = dwarf2_attr (stub_comp_unit_die, DW_AT_ranges, cu);
6789 comp_dir = dwarf2_attr (stub_comp_unit_die, DW_AT_comp_dir, cu);
6790
a39fdb41 6791 cu->addr_base = stub_comp_unit_die->addr_base ();
b0c7bfa9 6792
18a8505e
AT
6793 /* There should be a DW_AT_rnglists_base (DW_AT_GNU_ranges_base) attribute
6794 here (if needed). We need the value before we can process
6795 DW_AT_ranges. */
a39fdb41 6796 cu->ranges_base = stub_comp_unit_die->ranges_base ();
b0c7bfa9 6797 }
a2ce51a0
DE
6798 else if (stub_comp_dir != NULL)
6799 {
6800 /* Reconstruct the comp_dir attribute to simplify the code below. */
8d749320 6801 comp_dir = XOBNEW (&cu->comp_unit_obstack, struct attribute);
a2ce51a0
DE
6802 comp_dir->name = DW_AT_comp_dir;
6803 comp_dir->form = DW_FORM_string;
6804 DW_STRING_IS_CANONICAL (comp_dir) = 0;
6805 DW_STRING (comp_dir) = stub_comp_dir;
6806 }
b0c7bfa9
DE
6807
6808 /* Set up for reading the DWO CU/TU. */
6809 cu->dwo_unit = dwo_unit;
685af9cd 6810 dwarf2_section_info *section = dwo_unit->section;
96b79293
TT
6811 section->read (objfile);
6812 abfd = section->get_bfd_owner ();
9c541725
PA
6813 begin_info_ptr = info_ptr = (section->buffer
6814 + to_underlying (dwo_unit->sect_off));
b0c7bfa9 6815 dwo_abbrev_section = &dwo_unit->dwo_file->sections.abbrev;
b0c7bfa9 6816
4ab09049 6817 if (per_cu->is_debug_types)
b0c7bfa9 6818 {
4ab09049 6819 signatured_type *sig_type = (struct signatured_type *) per_cu;
b0c7bfa9 6820
976ca316
SM
6821 info_ptr = read_and_check_comp_unit_head (per_objfile, &cu->header,
6822 section, dwo_abbrev_section,
43988095 6823 info_ptr, rcuh_kind::TYPE);
a2ce51a0 6824 /* This is not an assert because it can be caused by bad debug info. */
43988095 6825 if (sig_type->signature != cu->header.signature)
a2ce51a0
DE
6826 {
6827 error (_("Dwarf Error: signature mismatch %s vs %s while reading"
9d8780f0 6828 " TU at offset %s [in module %s]"),
a2ce51a0 6829 hex_string (sig_type->signature),
43988095 6830 hex_string (cu->header.signature),
9d8780f0 6831 sect_offset_str (dwo_unit->sect_off),
a2ce51a0
DE
6832 bfd_get_filename (abfd));
6833 }
9c541725 6834 gdb_assert (dwo_unit->sect_off == cu->header.sect_off);
b0c7bfa9
DE
6835 /* For DWOs coming from DWP files, we don't know the CU length
6836 nor the type's offset in the TU until now. */
4057dfde 6837 dwo_unit->length = cu->header.get_length ();
9c541725 6838 dwo_unit->type_offset_in_tu = cu->header.type_cu_offset_in_tu;
b0c7bfa9
DE
6839
6840 /* Establish the type offset that can be used to lookup the type.
6841 For DWO files, we don't know it until now. */
9c541725
PA
6842 sig_type->type_offset_in_section
6843 = dwo_unit->sect_off + to_underlying (dwo_unit->type_offset_in_tu);
b0c7bfa9
DE
6844 }
6845 else
6846 {
976ca316
SM
6847 info_ptr = read_and_check_comp_unit_head (per_objfile, &cu->header,
6848 section, dwo_abbrev_section,
43988095 6849 info_ptr, rcuh_kind::COMPILE);
9c541725 6850 gdb_assert (dwo_unit->sect_off == cu->header.sect_off);
b0c7bfa9
DE
6851 /* For DWOs coming from DWP files, we don't know the CU length
6852 until now. */
4057dfde 6853 dwo_unit->length = cu->header.get_length ();
b0c7bfa9
DE
6854 }
6855
685af9cd 6856 *result_dwo_abbrev_table
86de1d91
TT
6857 = abbrev_table::read (objfile, dwo_abbrev_section,
6858 cu->header.abbrev_sect_off);
685af9cd
TT
6859 init_cu_die_reader (result_reader, cu, section, dwo_unit->dwo_file,
6860 result_dwo_abbrev_table->get ());
b0c7bfa9
DE
6861
6862 /* Read in the die, but leave space to copy over the attributes
6863 from the stub. This has the benefit of simplifying the rest of
6864 the code - all the work to maintain the illusion of a single
6865 DW_TAG_{compile,type}_unit DIE is done here. */
6866 num_extra_attrs = ((stmt_list != NULL)
6867 + (low_pc != NULL)
6868 + (high_pc != NULL)
6869 + (ranges != NULL)
6870 + (comp_dir != NULL));
6871 info_ptr = read_full_die_1 (result_reader, result_comp_unit_die, info_ptr,
3e225074 6872 num_extra_attrs);
b0c7bfa9
DE
6873
6874 /* Copy over the attributes from the stub to the DIE we just read in. */
6875 comp_unit_die = *result_comp_unit_die;
6876 i = comp_unit_die->num_attrs;
6877 if (stmt_list != NULL)
6878 comp_unit_die->attrs[i++] = *stmt_list;
6879 if (low_pc != NULL)
6880 comp_unit_die->attrs[i++] = *low_pc;
6881 if (high_pc != NULL)
6882 comp_unit_die->attrs[i++] = *high_pc;
6883 if (ranges != NULL)
6884 comp_unit_die->attrs[i++] = *ranges;
6885 if (comp_dir != NULL)
6886 comp_unit_die->attrs[i++] = *comp_dir;
6887 comp_unit_die->num_attrs += num_extra_attrs;
6888
b4f54984 6889 if (dwarf_die_debug)
bf6af496
DE
6890 {
6891 fprintf_unfiltered (gdb_stdlog,
6892 "Read die from %s@0x%x of %s:\n",
96b79293 6893 section->get_name (),
bf6af496
DE
6894 (unsigned) (begin_info_ptr - section->buffer),
6895 bfd_get_filename (abfd));
b4f54984 6896 dump_die (comp_unit_die, dwarf_die_debug);
bf6af496
DE
6897 }
6898
b0c7bfa9
DE
6899 /* Skip dummy compilation units. */
6900 if (info_ptr >= begin_info_ptr + dwo_unit->length
6901 || peek_abbrev_code (abfd, info_ptr) == 0)
6902 return 0;
6903
6904 *result_info_ptr = info_ptr;
6905 return 1;
6906}
6907
a084a2a6
AT
6908/* Return the signature of the compile unit, if found. In DWARF 4 and before,
6909 the signature is in the DW_AT_GNU_dwo_id attribute. In DWARF 5 and later, the
6910 signature is part of the header. */
6911static gdb::optional<ULONGEST>
6912lookup_dwo_id (struct dwarf2_cu *cu, struct die_info* comp_unit_die)
6913{
6914 if (cu->header.version >= 5)
6915 return cu->header.signature;
6916 struct attribute *attr;
6917 attr = dwarf2_attr (comp_unit_die, DW_AT_GNU_dwo_id, cu);
6918 if (attr == nullptr)
6919 return gdb::optional<ULONGEST> ();
6920 return DW_UNSND (attr);
6921}
6922
c0ab21c2 6923/* Subroutine of cutu_reader to simplify it.
b0c7bfa9 6924 Look up the DWO unit specified by COMP_UNIT_DIE of THIS_CU.
6a506a2d 6925 Returns NULL if the specified DWO unit cannot be found. */
b0c7bfa9
DE
6926
6927static struct dwo_unit *
4ab09049 6928lookup_dwo_unit (dwarf2_cu *cu, die_info *comp_unit_die, const char *dwo_name)
b0c7bfa9 6929{
4ab09049 6930 dwarf2_per_cu_data *per_cu = cu->per_cu;
b0c7bfa9 6931 struct dwo_unit *dwo_unit;
c0ab21c2 6932 const char *comp_dir;
b0c7bfa9 6933
a2ce51a0
DE
6934 gdb_assert (cu != NULL);
6935
b0c7bfa9 6936 /* Yeah, we look dwo_name up again, but it simplifies the code. */
a084a2a6 6937 dwo_name = dwarf2_dwo_name (comp_unit_die, cu);
7d45c7c3 6938 comp_dir = dwarf2_string_attr (comp_unit_die, DW_AT_comp_dir, cu);
b0c7bfa9 6939
4ab09049
SM
6940 if (per_cu->is_debug_types)
6941 dwo_unit = lookup_dwo_type_unit (cu, dwo_name, comp_dir);
b0c7bfa9
DE
6942 else
6943 {
a084a2a6 6944 gdb::optional<ULONGEST> signature = lookup_dwo_id (cu, comp_unit_die);
4ab09049 6945
a084a2a6 6946 if (!signature.has_value ())
b0c7bfa9
DE
6947 error (_("Dwarf Error: missing dwo_id for dwo_name %s"
6948 " [in module %s]"),
4ab09049
SM
6949 dwo_name, bfd_get_filename (per_cu->per_bfd->obfd));
6950
6951 dwo_unit = lookup_dwo_comp_unit (cu, dwo_name, comp_dir, *signature);
b0c7bfa9
DE
6952 }
6953
b0c7bfa9
DE
6954 return dwo_unit;
6955}
6956
c0ab21c2 6957/* Subroutine of cutu_reader to simplify it.
6aa5f3a6 6958 See it for a description of the parameters.
fcd3b13d 6959 Read a TU directly from a DWO file, bypassing the stub. */
a2ce51a0 6960
c0ab21c2 6961void
9e021579
SM
6962cutu_reader::init_tu_and_read_dwo_dies (dwarf2_per_cu_data *this_cu,
6963 dwarf2_per_objfile *per_objfile,
2e671100 6964 dwarf2_cu *existing_cu)
a2ce51a0 6965{
a2ce51a0 6966 struct signatured_type *sig_type;
a2ce51a0
DE
6967
6968 /* Verify we can do the following downcast, and that we have the
6969 data we need. */
6970 gdb_assert (this_cu->is_debug_types && this_cu->reading_dwo_directly);
6971 sig_type = (struct signatured_type *) this_cu;
6972 gdb_assert (sig_type->dwo_unit != NULL);
6973
2e671100
SM
6974 dwarf2_cu *cu;
6975
6976 if (existing_cu != nullptr)
6aa5f3a6 6977 {
2e671100
SM
6978 cu = existing_cu;
6979 gdb_assert (cu->dwo_unit == sig_type->dwo_unit);
6aa5f3a6 6980 /* There's no need to do the rereading_dwo_cu handling that
c0ab21c2 6981 cutu_reader does since we don't read the stub. */
6aa5f3a6
DE
6982 }
6983 else
6984 {
7188ed02
SM
6985 /* If an existing_cu is provided, a dwarf2_cu must not exist for this_cu
6986 in per_objfile yet. */
6987 gdb_assert (per_objfile->get_cu (this_cu) == nullptr);
9e021579 6988 m_new_cu.reset (new dwarf2_cu (this_cu, per_objfile));
2e671100 6989 cu = m_new_cu.get ();
6aa5f3a6
DE
6990 }
6991
6992 /* A future optimization, if needed, would be to use an existing
6993 abbrev table. When reading DWOs with skeletonless TUs, all the TUs
6994 could share abbrev tables. */
a2ce51a0 6995
2e671100 6996 if (read_cutu_die_from_dwo (cu, sig_type->dwo_unit,
a2ce51a0
DE
6997 NULL /* stub_comp_unit_die */,
6998 sig_type->dwo_unit->dwo_file->comp_dir,
4ebe4877 6999 this, &info_ptr,
3e225074 7000 &comp_unit_die,
c0ab21c2 7001 &m_dwo_abbrev_table) == 0)
a2ce51a0
DE
7002 {
7003 /* Dummy die. */
c0ab21c2 7004 dummy_p = true;
a2ce51a0 7005 }
a2ce51a0
DE
7006}
7007
fd820528 7008/* Initialize a CU (or TU) and read its DIEs.
3019eac3 7009 If the CU defers to a DWO file, read the DWO file as well.
dee91e82 7010
f4dc4d17
DE
7011 ABBREV_TABLE, if non-NULL, is the abbreviation table to use.
7012 Otherwise the table specified in the comp unit header is read in and used.
7013 This is an optimization for when we already have the abbrev table.
7014
2e671100
SM
7015 If EXISTING_CU is non-NULL, then use it. Otherwise, a new CU is
7016 allocated. */
aaa75496 7017
ab432490 7018cutu_reader::cutu_reader (dwarf2_per_cu_data *this_cu,
976ca316 7019 dwarf2_per_objfile *per_objfile,
c0ab21c2 7020 struct abbrev_table *abbrev_table,
2e671100 7021 dwarf2_cu *existing_cu,
c0ab21c2
TT
7022 bool skip_partial)
7023 : die_reader_specs {},
6751ebae 7024 m_this_cu (this_cu)
c906108c 7025{
976ca316 7026 struct objfile *objfile = per_objfile->objfile;
8a0459fd 7027 struct dwarf2_section_info *section = this_cu->section;
96b79293 7028 bfd *abfd = section->get_bfd_owner ();
c0ab21c2 7029 const gdb_byte *begin_info_ptr;
dee91e82 7030 struct signatured_type *sig_type = NULL;
4bdcc0c1 7031 struct dwarf2_section_info *abbrev_section;
42e7ad6c
DE
7032 /* Non-zero if CU currently points to a DWO file and we need to
7033 reread it. When this happens we need to reread the skeleton die
a2ce51a0 7034 before we can reread the DWO file (this only applies to CUs, not TUs). */
42e7ad6c 7035 int rereading_dwo_cu = 0;
c906108c 7036
b4f54984 7037 if (dwarf_die_debug)
9d8780f0 7038 fprintf_unfiltered (gdb_stdlog, "Reading %s unit at offset %s\n",
09406207 7039 this_cu->is_debug_types ? "type" : "comp",
9d8780f0 7040 sect_offset_str (this_cu->sect_off));
09406207 7041
a2ce51a0
DE
7042 /* If we're reading a TU directly from a DWO file, including a virtual DWO
7043 file (instead of going through the stub), short-circuit all of this. */
7044 if (this_cu->reading_dwo_directly)
7045 {
7046 /* Narrow down the scope of possibilities to have to understand. */
7047 gdb_assert (this_cu->is_debug_types);
7048 gdb_assert (abbrev_table == NULL);
976ca316 7049 init_tu_and_read_dwo_dies (this_cu, per_objfile, existing_cu);
a2ce51a0
DE
7050 return;
7051 }
7052
dee91e82 7053 /* This is cheap if the section is already read in. */
96b79293 7054 section->read (objfile);
dee91e82 7055
9c541725 7056 begin_info_ptr = info_ptr = section->buffer + to_underlying (this_cu->sect_off);
36586728
TT
7057
7058 abbrev_section = get_abbrev_section_for_cu (this_cu);
dee91e82 7059
2e671100
SM
7060 dwarf2_cu *cu;
7061
7062 if (existing_cu != nullptr)
dee91e82 7063 {
2e671100 7064 cu = existing_cu;
42e7ad6c
DE
7065 /* If this CU is from a DWO file we need to start over, we need to
7066 refetch the attributes from the skeleton CU.
7067 This could be optimized by retrieving those attributes from when we
7068 were here the first time: the previous comp_unit_die was stored in
7069 comp_unit_obstack. But there's no data yet that we need this
7070 optimization. */
7071 if (cu->dwo_unit != NULL)
7072 rereading_dwo_cu = 1;
dee91e82
DE
7073 }
7074 else
7075 {
7188ed02
SM
7076 /* If an existing_cu is provided, a dwarf2_cu must not exist for this_cu
7077 in per_objfile yet. */
976ca316
SM
7078 gdb_assert (per_objfile->get_cu (this_cu) == nullptr);
7079 m_new_cu.reset (new dwarf2_cu (this_cu, per_objfile));
c0ab21c2 7080 cu = m_new_cu.get ();
42e7ad6c 7081 }
dee91e82 7082
b0c7bfa9 7083 /* Get the header. */
9c541725 7084 if (to_underlying (cu->header.first_die_cu_offset) != 0 && !rereading_dwo_cu)
42e7ad6c
DE
7085 {
7086 /* We already have the header, there's no need to read it in again. */
9c541725 7087 info_ptr += to_underlying (cu->header.first_die_cu_offset);
42e7ad6c
DE
7088 }
7089 else
7090 {
3019eac3 7091 if (this_cu->is_debug_types)
dee91e82 7092 {
976ca316
SM
7093 info_ptr = read_and_check_comp_unit_head (per_objfile, &cu->header,
7094 section, abbrev_section,
7095 info_ptr, rcuh_kind::TYPE);
dee91e82 7096
42e7ad6c
DE
7097 /* Since per_cu is the first member of struct signatured_type,
7098 we can go from a pointer to one to a pointer to the other. */
7099 sig_type = (struct signatured_type *) this_cu;
43988095 7100 gdb_assert (sig_type->signature == cu->header.signature);
9c541725
PA
7101 gdb_assert (sig_type->type_offset_in_tu
7102 == cu->header.type_cu_offset_in_tu);
7103 gdb_assert (this_cu->sect_off == cu->header.sect_off);
dee91e82 7104
42e7ad6c
DE
7105 /* LENGTH has not been set yet for type units if we're
7106 using .gdb_index. */
4057dfde 7107 this_cu->length = cu->header.get_length ();
3019eac3
DE
7108
7109 /* Establish the type offset that can be used to lookup the type. */
9c541725
PA
7110 sig_type->type_offset_in_section =
7111 this_cu->sect_off + to_underlying (sig_type->type_offset_in_tu);
43988095
JK
7112
7113 this_cu->dwarf_version = cu->header.version;
dee91e82
DE
7114 }
7115 else
7116 {
976ca316
SM
7117 info_ptr = read_and_check_comp_unit_head (per_objfile, &cu->header,
7118 section, abbrev_section,
43988095
JK
7119 info_ptr,
7120 rcuh_kind::COMPILE);
dee91e82 7121
9c541725 7122 gdb_assert (this_cu->sect_off == cu->header.sect_off);
3ee6bb11
TV
7123 if (this_cu->length == 0)
7124 this_cu->length = cu->header.get_length ();
7125 else
7126 gdb_assert (this_cu->length == cu->header.get_length ());
43988095 7127 this_cu->dwarf_version = cu->header.version;
dee91e82
DE
7128 }
7129 }
10b3939b 7130
6caca83c 7131 /* Skip dummy compilation units. */
dee91e82 7132 if (info_ptr >= begin_info_ptr + this_cu->length
6caca83c 7133 || peek_abbrev_code (abfd, info_ptr) == 0)
c0ab21c2
TT
7134 {
7135 dummy_p = true;
7136 return;
7137 }
6caca83c 7138
433df2d4
DE
7139 /* If we don't have them yet, read the abbrevs for this compilation unit.
7140 And if we need to read them now, make sure they're freed when we're
c0ab21c2 7141 done. */
f4dc4d17 7142 if (abbrev_table != NULL)
685af9cd
TT
7143 gdb_assert (cu->header.abbrev_sect_off == abbrev_table->sect_off);
7144 else
f4dc4d17 7145 {
c0ab21c2 7146 m_abbrev_table_holder
86de1d91
TT
7147 = abbrev_table::read (objfile, abbrev_section,
7148 cu->header.abbrev_sect_off);
c0ab21c2 7149 abbrev_table = m_abbrev_table_holder.get ();
42e7ad6c 7150 }
af703f96 7151
dee91e82 7152 /* Read the top level CU/TU die. */
c0ab21c2 7153 init_cu_die_reader (this, cu, section, NULL, abbrev_table);
3e225074 7154 info_ptr = read_full_die (this, &comp_unit_die, info_ptr);
93311388 7155
58f0c718 7156 if (skip_partial && comp_unit_die->tag == DW_TAG_partial_unit)
c0ab21c2
TT
7157 {
7158 dummy_p = true;
7159 return;
7160 }
58f0c718 7161
b0c7bfa9 7162 /* If we are in a DWO stub, process it and then read in the "real" CU/TU
685af9cd
TT
7163 from the DWO file. read_cutu_die_from_dwo will allocate the abbreviation
7164 table from the DWO file and pass the ownership over to us. It will be
7165 referenced from READER, so we must make sure to free it after we're done
7166 with READER.
7167
b0c7bfa9
DE
7168 Note that if USE_EXISTING_OK != 0, and THIS_CU->cu already contains a
7169 DWO CU, that this test will fail (the attribute will not be present). */
a084a2a6 7170 const char *dwo_name = dwarf2_dwo_name (comp_unit_die, cu);
a084a2a6 7171 if (dwo_name != nullptr)
3019eac3 7172 {
3019eac3 7173 struct dwo_unit *dwo_unit;
b0c7bfa9 7174 struct die_info *dwo_comp_unit_die;
3019eac3 7175
3e225074 7176 if (comp_unit_die->has_children)
6a506a2d 7177 {
b98664d3 7178 complaint (_("compilation unit with DW_AT_GNU_dwo_name"
9d8780f0
SM
7179 " has children (offset %s) [in module %s]"),
7180 sect_offset_str (this_cu->sect_off),
7181 bfd_get_filename (abfd));
6a506a2d 7182 }
4ab09049 7183 dwo_unit = lookup_dwo_unit (cu, comp_unit_die, dwo_name);
6a506a2d 7184 if (dwo_unit != NULL)
3019eac3 7185 {
4ab09049 7186 if (read_cutu_die_from_dwo (cu, dwo_unit,
a2ce51a0 7187 comp_unit_die, NULL,
c0ab21c2 7188 this, &info_ptr,
3e225074 7189 &dwo_comp_unit_die,
c0ab21c2 7190 &m_dwo_abbrev_table) == 0)
6a506a2d
DE
7191 {
7192 /* Dummy die. */
c0ab21c2 7193 dummy_p = true;
6a506a2d
DE
7194 return;
7195 }
7196 comp_unit_die = dwo_comp_unit_die;
7197 }
7198 else
7199 {
7200 /* Yikes, we couldn't find the rest of the DIE, we only have
7201 the stub. A complaint has already been logged. There's
7202 not much more we can do except pass on the stub DIE to
7203 die_reader_func. We don't want to throw an error on bad
7204 debug info. */
3019eac3
DE
7205 }
7206 }
c0ab21c2 7207}
3019eac3 7208
6751ebae
TT
7209void
7210cutu_reader::keep ()
c0ab21c2 7211{
b0c7bfa9 7212 /* Done, clean up. */
6751ebae
TT
7213 gdb_assert (!dummy_p);
7214 if (m_new_cu != NULL)
348e048f 7215 {
7188ed02
SM
7216 /* Save this dwarf2_cu in the per_objfile. The per_objfile owns it
7217 now. */
7218 dwarf2_per_objfile *per_objfile = m_new_cu->per_objfile;
7219 per_objfile->set_cu (m_this_cu, m_new_cu.release ());
348e048f 7220 }
dee91e82
DE
7221}
7222
18a8505e
AT
7223/* Read CU/TU THIS_CU but do not follow DW_AT_GNU_dwo_name (DW_AT_dwo_name)
7224 if present. DWO_FILE, if non-NULL, is the DWO file to read (the caller is
7225 assumed to have already done the lookup to find the DWO file).
dee91e82
DE
7226
7227 The caller is required to fill in THIS_CU->section, THIS_CU->offset, and
3019eac3 7228 THIS_CU->is_debug_types, but nothing else.
dee91e82
DE
7229
7230 We fill in THIS_CU->length.
7231
dee91e82 7232 THIS_CU->cu is always freed when done.
3019eac3 7233 This is done in order to not leave THIS_CU->cu in a state where we have
18a8505e
AT
7234 to care whether it refers to the "main" CU or the DWO CU.
7235
7236 When parent_cu is passed, it is used to provide a default value for
7237 str_offsets_base and addr_base from the parent. */
dee91e82 7238
ab432490 7239cutu_reader::cutu_reader (dwarf2_per_cu_data *this_cu,
976ca316 7240 dwarf2_per_objfile *per_objfile,
c0ab21c2
TT
7241 struct dwarf2_cu *parent_cu,
7242 struct dwo_file *dwo_file)
7243 : die_reader_specs {},
7244 m_this_cu (this_cu)
dee91e82 7245{
976ca316 7246 struct objfile *objfile = per_objfile->objfile;
8a0459fd 7247 struct dwarf2_section_info *section = this_cu->section;
96b79293 7248 bfd *abfd = section->get_bfd_owner ();
33e80786 7249 struct dwarf2_section_info *abbrev_section;
d521ce57 7250 const gdb_byte *begin_info_ptr, *info_ptr;
dee91e82 7251
b4f54984 7252 if (dwarf_die_debug)
9d8780f0 7253 fprintf_unfiltered (gdb_stdlog, "Reading %s unit at offset %s\n",
09406207 7254 this_cu->is_debug_types ? "type" : "comp",
9d8780f0 7255 sect_offset_str (this_cu->sect_off));
09406207 7256
976ca316 7257 gdb_assert (per_objfile->get_cu (this_cu) == nullptr);
dee91e82 7258
33e80786
DE
7259 abbrev_section = (dwo_file != NULL
7260 ? &dwo_file->sections.abbrev
7261 : get_abbrev_section_for_cu (this_cu));
7262
dee91e82 7263 /* This is cheap if the section is already read in. */
96b79293 7264 section->read (objfile);
dee91e82 7265
976ca316 7266 m_new_cu.reset (new dwarf2_cu (this_cu, per_objfile));
dee91e82 7267
9c541725 7268 begin_info_ptr = info_ptr = section->buffer + to_underlying (this_cu->sect_off);
976ca316
SM
7269 info_ptr = read_and_check_comp_unit_head (per_objfile, &m_new_cu->header,
7270 section, abbrev_section, info_ptr,
43988095
JK
7271 (this_cu->is_debug_types
7272 ? rcuh_kind::TYPE
7273 : rcuh_kind::COMPILE));
dee91e82 7274
18a8505e
AT
7275 if (parent_cu != nullptr)
7276 {
c0ab21c2
TT
7277 m_new_cu->str_offsets_base = parent_cu->str_offsets_base;
7278 m_new_cu->addr_base = parent_cu->addr_base;
18a8505e 7279 }
4057dfde 7280 this_cu->length = m_new_cu->header.get_length ();
dee91e82
DE
7281
7282 /* Skip dummy compilation units. */
7283 if (info_ptr >= begin_info_ptr + this_cu->length
7284 || peek_abbrev_code (abfd, info_ptr) == 0)
c0ab21c2
TT
7285 {
7286 dummy_p = true;
7287 return;
7288 }
72bf9492 7289
c0ab21c2 7290 m_abbrev_table_holder
86de1d91
TT
7291 = abbrev_table::read (objfile, abbrev_section,
7292 m_new_cu->header.abbrev_sect_off);
dee91e82 7293
c0ab21c2
TT
7294 init_cu_die_reader (this, m_new_cu.get (), section, dwo_file,
7295 m_abbrev_table_holder.get ());
3e225074 7296 info_ptr = read_full_die (this, &comp_unit_die, info_ptr);
dee91e82
DE
7297}
7298
0018ea6f
DE
7299\f
7300/* Type Unit Groups.
dee91e82 7301
0018ea6f
DE
7302 Type Unit Groups are a way to collapse the set of all TUs (type units) into
7303 a more manageable set. The grouping is done by DW_AT_stmt_list entry
7304 so that all types coming from the same compilation (.o file) are grouped
7305 together. A future step could be to put the types in the same symtab as
7306 the CU the types ultimately came from. */
ff013f42 7307
f4dc4d17
DE
7308static hashval_t
7309hash_type_unit_group (const void *item)
7310{
9a3c8263
SM
7311 const struct type_unit_group *tu_group
7312 = (const struct type_unit_group *) item;
f4dc4d17 7313
094b34ac 7314 return hash_stmt_list_entry (&tu_group->hash);
f4dc4d17 7315}
348e048f
DE
7316
7317static int
f4dc4d17 7318eq_type_unit_group (const void *item_lhs, const void *item_rhs)
348e048f 7319{
9a3c8263
SM
7320 const struct type_unit_group *lhs = (const struct type_unit_group *) item_lhs;
7321 const struct type_unit_group *rhs = (const struct type_unit_group *) item_rhs;
348e048f 7322
094b34ac 7323 return eq_stmt_list_entry (&lhs->hash, &rhs->hash);
f4dc4d17 7324}
348e048f 7325
f4dc4d17
DE
7326/* Allocate a hash table for type unit groups. */
7327
eaa5fa8b 7328static htab_up
298e9637 7329allocate_type_unit_groups_table ()
f4dc4d17 7330{
eaa5fa8b
TT
7331 return htab_up (htab_create_alloc (3,
7332 hash_type_unit_group,
7333 eq_type_unit_group,
7334 NULL, xcalloc, xfree));
f4dc4d17 7335}
dee91e82 7336
f4dc4d17
DE
7337/* Type units that don't have DW_AT_stmt_list are grouped into their own
7338 partial symtabs. We combine several TUs per psymtab to not let the size
7339 of any one psymtab grow too big. */
7340#define NO_STMT_LIST_TYPE_UNIT_PSYMTAB (1 << 31)
7341#define NO_STMT_LIST_TYPE_UNIT_PSYMTAB_SIZE 10
dee91e82 7342
094b34ac 7343/* Helper routine for get_type_unit_group.
f4dc4d17
DE
7344 Create the type_unit_group object used to hold one or more TUs. */
7345
7346static struct type_unit_group *
094b34ac 7347create_type_unit_group (struct dwarf2_cu *cu, sect_offset line_offset_struct)
f4dc4d17 7348{
976ca316
SM
7349 dwarf2_per_objfile *per_objfile = cu->per_objfile;
7350 dwarf2_per_bfd *per_bfd = per_objfile->per_bfd;
094b34ac 7351 struct dwarf2_per_cu_data *per_cu;
f4dc4d17 7352 struct type_unit_group *tu_group;
f4dc4d17 7353
976ca316 7354 tu_group = OBSTACK_ZALLOC (&per_objfile->per_bfd->obstack, type_unit_group);
094b34ac 7355 per_cu = &tu_group->per_cu;
1859c670 7356 per_cu->per_bfd = per_bfd;
f4dc4d17 7357
1859c670 7358 if (per_bfd->using_index)
094b34ac 7359 {
1859c670 7360 per_cu->v.quick = OBSTACK_ZALLOC (&per_bfd->obstack,
094b34ac 7361 struct dwarf2_per_cu_quick_data);
094b34ac
DE
7362 }
7363 else
7364 {
9c541725 7365 unsigned int line_offset = to_underlying (line_offset_struct);
891813be 7366 dwarf2_psymtab *pst;
528e1572 7367 std::string name;
094b34ac
DE
7368
7369 /* Give the symtab a useful name for debug purposes. */
7370 if ((line_offset & NO_STMT_LIST_TYPE_UNIT_PSYMTAB) != 0)
528e1572
SM
7371 name = string_printf ("<type_units_%d>",
7372 (line_offset & ~NO_STMT_LIST_TYPE_UNIT_PSYMTAB));
094b34ac 7373 else
528e1572 7374 name = string_printf ("<type_units_at_0x%x>", line_offset);
094b34ac 7375
976ca316 7376 pst = create_partial_symtab (per_cu, per_objfile, name.c_str ());
6d94535f 7377 pst->anonymous = true;
094b34ac 7378 }
f4dc4d17 7379
094b34ac 7380 tu_group->hash.dwo_unit = cu->dwo_unit;
9c541725 7381 tu_group->hash.line_sect_off = line_offset_struct;
f4dc4d17
DE
7382
7383 return tu_group;
7384}
7385
094b34ac
DE
7386/* Look up the type_unit_group for type unit CU, and create it if necessary.
7387 STMT_LIST is a DW_AT_stmt_list attribute. */
f4dc4d17
DE
7388
7389static struct type_unit_group *
ff39bb5e 7390get_type_unit_group (struct dwarf2_cu *cu, const struct attribute *stmt_list)
f4dc4d17 7391{
976ca316
SM
7392 dwarf2_per_objfile *per_objfile = cu->per_objfile;
7393 struct tu_stats *tu_stats = &per_objfile->per_bfd->tu_stats;
f4dc4d17
DE
7394 struct type_unit_group *tu_group;
7395 void **slot;
7396 unsigned int line_offset;
7397 struct type_unit_group type_unit_group_for_lookup;
7398
976ca316
SM
7399 if (per_objfile->per_bfd->type_unit_groups == NULL)
7400 per_objfile->per_bfd->type_unit_groups = allocate_type_unit_groups_table ();
f4dc4d17
DE
7401
7402 /* Do we need to create a new group, or can we use an existing one? */
7403
7404 if (stmt_list)
7405 {
7406 line_offset = DW_UNSND (stmt_list);
7407 ++tu_stats->nr_symtab_sharers;
7408 }
7409 else
7410 {
7411 /* Ugh, no stmt_list. Rare, but we have to handle it.
7412 We can do various things here like create one group per TU or
7413 spread them over multiple groups to split up the expansion work.
7414 To avoid worst case scenarios (too many groups or too large groups)
7415 we, umm, group them in bunches. */
7416 line_offset = (NO_STMT_LIST_TYPE_UNIT_PSYMTAB
7417 | (tu_stats->nr_stmt_less_type_units
7418 / NO_STMT_LIST_TYPE_UNIT_PSYMTAB_SIZE));
7419 ++tu_stats->nr_stmt_less_type_units;
7420 }
7421
094b34ac 7422 type_unit_group_for_lookup.hash.dwo_unit = cu->dwo_unit;
9c541725 7423 type_unit_group_for_lookup.hash.line_sect_off = (sect_offset) line_offset;
976ca316 7424 slot = htab_find_slot (per_objfile->per_bfd->type_unit_groups.get (),
f4dc4d17
DE
7425 &type_unit_group_for_lookup, INSERT);
7426 if (*slot != NULL)
7427 {
9a3c8263 7428 tu_group = (struct type_unit_group *) *slot;
f4dc4d17
DE
7429 gdb_assert (tu_group != NULL);
7430 }
7431 else
7432 {
9c541725 7433 sect_offset line_offset_struct = (sect_offset) line_offset;
094b34ac 7434 tu_group = create_type_unit_group (cu, line_offset_struct);
f4dc4d17
DE
7435 *slot = tu_group;
7436 ++tu_stats->nr_symtabs;
7437 }
7438
7439 return tu_group;
7440}
0018ea6f
DE
7441\f
7442/* Partial symbol tables. */
7443
7444/* Create a psymtab named NAME and assign it to PER_CU.
7445
7446 The caller must fill in the following details:
7447 dirname, textlow, texthigh. */
7448
891813be 7449static dwarf2_psymtab *
7aa104c4
SM
7450create_partial_symtab (dwarf2_per_cu_data *per_cu,
7451 dwarf2_per_objfile *per_objfile,
7452 const char *name)
0018ea6f 7453{
7aa104c4 7454 struct objfile *objfile = per_objfile->objfile;
891813be 7455 dwarf2_psymtab *pst;
0018ea6f 7456
9f4e76a4 7457 pst = new dwarf2_psymtab (name, objfile, per_cu);
0018ea6f 7458
6d94535f 7459 pst->psymtabs_addrmap_supported = true;
0018ea6f
DE
7460
7461 /* This is the glue that links PST into GDB's symbol API. */
0018ea6f
DE
7462 per_cu->v.psymtab = pst;
7463
7464 return pst;
7465}
7466
c0ab21c2 7467/* DIE reader function for process_psymtab_comp_unit. */
0018ea6f
DE
7468
7469static void
7470process_psymtab_comp_unit_reader (const struct die_reader_specs *reader,
d521ce57 7471 const gdb_byte *info_ptr,
0018ea6f 7472 struct die_info *comp_unit_die,
c0ab21c2 7473 enum language pretend_language)
0018ea6f
DE
7474{
7475 struct dwarf2_cu *cu = reader->cu;
7aa104c4
SM
7476 dwarf2_per_objfile *per_objfile = cu->per_objfile;
7477 struct objfile *objfile = per_objfile->objfile;
08feed99 7478 struct gdbarch *gdbarch = objfile->arch ();
0018ea6f 7479 struct dwarf2_per_cu_data *per_cu = cu->per_cu;
0018ea6f
DE
7480 CORE_ADDR baseaddr;
7481 CORE_ADDR best_lowpc = 0, best_highpc = 0;
891813be 7482 dwarf2_psymtab *pst;
3a2b436a 7483 enum pc_bounds_kind cu_bounds_kind;
0018ea6f 7484 const char *filename;
0018ea6f 7485
0018ea6f
DE
7486 gdb_assert (! per_cu->is_debug_types);
7487
c0ab21c2 7488 prepare_one_comp_unit (cu, comp_unit_die, pretend_language);
0018ea6f 7489
0018ea6f 7490 /* Allocate a new partial symbol table structure. */
2e927613
TV
7491 gdb::unique_xmalloc_ptr<char> debug_filename;
7492 static const char artificial[] = "<artificial>";
7d45c7c3
KB
7493 filename = dwarf2_string_attr (comp_unit_die, DW_AT_name, cu);
7494 if (filename == NULL)
0018ea6f 7495 filename = "";
2e927613
TV
7496 else if (strcmp (filename, artificial) == 0)
7497 {
7498 debug_filename.reset (concat (artificial, "@",
85f0dd3c
TV
7499 sect_offset_str (per_cu->sect_off),
7500 (char *) NULL));
2e927613
TV
7501 filename = debug_filename.get ();
7502 }
0018ea6f 7503
7aa104c4 7504 pst = create_partial_symtab (per_cu, per_objfile, filename);
0018ea6f
DE
7505
7506 /* This must be done before calling dwarf2_build_include_psymtabs. */
7d45c7c3 7507 pst->dirname = dwarf2_string_attr (comp_unit_die, DW_AT_comp_dir, cu);
0018ea6f 7508
b3b3bada 7509 baseaddr = objfile->text_section_offset ();
0018ea6f
DE
7510
7511 dwarf2_find_base_address (comp_unit_die, cu);
7512
7513 /* Possibly set the default values of LOWPC and HIGHPC from
7514 `DW_AT_ranges'. */
3a2b436a
JK
7515 cu_bounds_kind = dwarf2_get_pc_bounds (comp_unit_die, &best_lowpc,
7516 &best_highpc, cu, pst);
7517 if (cu_bounds_kind == PC_BOUNDS_HIGH_LOW && best_lowpc < best_highpc)
79748972
TT
7518 {
7519 CORE_ADDR low
7520 = (gdbarch_adjust_dwarf2_addr (gdbarch, best_lowpc + baseaddr)
7521 - baseaddr);
7522 CORE_ADDR high
7523 = (gdbarch_adjust_dwarf2_addr (gdbarch, best_highpc + baseaddr)
7524 - baseaddr - 1);
7525 /* Store the contiguous range if it is not empty; it can be
7526 empty for CUs with no code. */
d320c2b5
TT
7527 addrmap_set_empty (objfile->partial_symtabs->psymtabs_addrmap,
7528 low, high, pst);
79748972 7529 }
0018ea6f
DE
7530
7531 /* Check if comp unit has_children.
7532 If so, read the rest of the partial symbols from this comp unit.
7533 If not, there's no more debug_info for this comp unit. */
3e225074 7534 if (comp_unit_die->has_children)
0018ea6f
DE
7535 {
7536 struct partial_die_info *first_die;
7537 CORE_ADDR lowpc, highpc;
7538
7539 lowpc = ((CORE_ADDR) -1);
7540 highpc = ((CORE_ADDR) 0);
7541
7542 first_die = load_partial_dies (reader, info_ptr, 1);
7543
7544 scan_partial_symbols (first_die, &lowpc, &highpc,
e385593e 7545 cu_bounds_kind <= PC_BOUNDS_INVALID, cu);
0018ea6f
DE
7546
7547 /* If we didn't find a lowpc, set it to highpc to avoid
7548 complaints from `maint check'. */
7549 if (lowpc == ((CORE_ADDR) -1))
7550 lowpc = highpc;
7551
7552 /* If the compilation unit didn't have an explicit address range,
7553 then use the information extracted from its child dies. */
e385593e 7554 if (cu_bounds_kind <= PC_BOUNDS_INVALID)
0018ea6f
DE
7555 {
7556 best_lowpc = lowpc;
7557 best_highpc = highpc;
7558 }
7559 }
4ae976d1 7560 pst->set_text_low (gdbarch_adjust_dwarf2_addr (gdbarch,
79748972
TT
7561 best_lowpc + baseaddr)
7562 - baseaddr);
4ae976d1 7563 pst->set_text_high (gdbarch_adjust_dwarf2_addr (gdbarch,
79748972
TT
7564 best_highpc + baseaddr)
7565 - baseaddr);
0018ea6f 7566
8763cede 7567 end_psymtab_common (objfile, pst);
0018ea6f 7568
ae640021 7569 if (!cu->per_cu->imported_symtabs_empty ())
0018ea6f
DE
7570 {
7571 int i;
ae640021 7572 int len = cu->per_cu->imported_symtabs_size ();
0018ea6f
DE
7573
7574 /* Fill in 'dependencies' here; we fill in 'users' in a
7575 post-pass. */
7576 pst->number_of_dependencies = len;
a9342b62
TT
7577 pst->dependencies
7578 = objfile->partial_symtabs->allocate_dependencies (len);
ae640021
AB
7579 for (i = 0; i < len; ++i)
7580 {
7581 pst->dependencies[i]
7582 = cu->per_cu->imported_symtabs->at (i)->v.psymtab;
7583 }
0018ea6f 7584
ae640021 7585 cu->per_cu->imported_symtabs_free ();
0018ea6f
DE
7586 }
7587
7588 /* Get the list of files included in the current compilation unit,
7589 and build a psymtab for each of them. */
7590 dwarf2_build_include_psymtabs (cu, comp_unit_die, pst);
7591
b4f54984 7592 if (dwarf_read_debug)
b926417a
TT
7593 fprintf_unfiltered (gdb_stdlog,
7594 "Psymtab for %s unit @%s: %s - %s"
7595 ", %d global, %d static syms\n",
7596 per_cu->is_debug_types ? "type" : "comp",
7597 sect_offset_str (per_cu->sect_off),
7598 paddress (gdbarch, pst->text_low (objfile)),
7599 paddress (gdbarch, pst->text_high (objfile)),
7600 pst->n_global_syms, pst->n_static_syms);
0018ea6f
DE
7601}
7602
7603/* Subroutine of dwarf2_build_psymtabs_hard to simplify it.
7604 Process compilation unit THIS_CU for a psymtab. */
7605
7606static void
ab432490
SM
7607process_psymtab_comp_unit (dwarf2_per_cu_data *this_cu,
7608 dwarf2_per_objfile *per_objfile,
135f5437 7609 bool want_partial_unit,
b93601f3 7610 enum language pretend_language)
0018ea6f
DE
7611{
7612 /* If this compilation unit was already read in, free the
7613 cached copy in order to read it in again. This is
7614 necessary because we skipped some symbols when we first
7615 read in the compilation unit (see load_partial_dies).
7616 This problem could be avoided, but the benefit is unclear. */
7188ed02 7617 per_objfile->remove_cu (this_cu);
0018ea6f 7618
2e671100 7619 cutu_reader reader (this_cu, per_objfile, nullptr, nullptr, false);
c0ab21c2 7620
58990295
TV
7621 switch (reader.comp_unit_die->tag)
7622 {
7623 case DW_TAG_compile_unit:
7624 this_cu->unit_type = DW_UT_compile;
7625 break;
7626 case DW_TAG_partial_unit:
7627 this_cu->unit_type = DW_UT_partial;
7628 break;
7629 default:
7630 abort ();
7631 }
7632
c0ab21c2 7633 if (reader.dummy_p)
f1902523 7634 {
c0ab21c2 7635 /* Nothing. */
f1902523 7636 }
c0ab21c2 7637 else if (this_cu->is_debug_types)
3e225074
TT
7638 build_type_psymtabs_reader (&reader, reader.info_ptr,
7639 reader.comp_unit_die);
135f5437
TT
7640 else if (want_partial_unit
7641 || reader.comp_unit_die->tag != DW_TAG_partial_unit)
c0ab21c2
TT
7642 process_psymtab_comp_unit_reader (&reader, reader.info_ptr,
7643 reader.comp_unit_die,
c0ab21c2 7644 pretend_language);
0018ea6f 7645
7188ed02 7646 this_cu->lang = reader.cu->language;
58990295 7647
0018ea6f 7648 /* Age out any secondary CUs. */
7188ed02 7649 per_objfile->age_comp_units ();
0018ea6f 7650}
f4dc4d17
DE
7651
7652/* Reader function for build_type_psymtabs. */
7653
7654static void
7655build_type_psymtabs_reader (const struct die_reader_specs *reader,
d521ce57 7656 const gdb_byte *info_ptr,
3e225074 7657 struct die_info *type_unit_die)
f4dc4d17 7658{
976ca316
SM
7659 dwarf2_per_objfile *per_objfile = reader->cu->per_objfile;
7660 struct objfile *objfile = per_objfile->objfile;
f4dc4d17
DE
7661 struct dwarf2_cu *cu = reader->cu;
7662 struct dwarf2_per_cu_data *per_cu = cu->per_cu;
0186c6a7 7663 struct signatured_type *sig_type;
f4dc4d17
DE
7664 struct type_unit_group *tu_group;
7665 struct attribute *attr;
7666 struct partial_die_info *first_die;
7667 CORE_ADDR lowpc, highpc;
891813be 7668 dwarf2_psymtab *pst;
f4dc4d17 7669
0186c6a7
DE
7670 gdb_assert (per_cu->is_debug_types);
7671 sig_type = (struct signatured_type *) per_cu;
f4dc4d17 7672
3e225074 7673 if (! type_unit_die->has_children)
f4dc4d17
DE
7674 return;
7675
052c8bb8 7676 attr = type_unit_die->attr (DW_AT_stmt_list);
094b34ac 7677 tu_group = get_type_unit_group (cu, attr);
f4dc4d17 7678
df07e2c7 7679 if (tu_group->tus == nullptr)
a8b3b8e9 7680 tu_group->tus = new std::vector<signatured_type *>;
df07e2c7 7681 tu_group->tus->push_back (sig_type);
f4dc4d17
DE
7682
7683 prepare_one_comp_unit (cu, type_unit_die, language_minimal);
976ca316 7684 pst = create_partial_symtab (per_cu, per_objfile, "");
6d94535f 7685 pst->anonymous = true;
f4dc4d17
DE
7686
7687 first_die = load_partial_dies (reader, info_ptr, 1);
7688
7689 lowpc = (CORE_ADDR) -1;
7690 highpc = (CORE_ADDR) 0;
7691 scan_partial_symbols (first_die, &lowpc, &highpc, 0, cu);
7692
8763cede 7693 end_psymtab_common (objfile, pst);
f4dc4d17
DE
7694}
7695
73051182
DE
7696/* Struct used to sort TUs by their abbreviation table offset. */
7697
7698struct tu_abbrev_offset
7699{
b2bdb8cf
SM
7700 tu_abbrev_offset (signatured_type *sig_type_, sect_offset abbrev_offset_)
7701 : sig_type (sig_type_), abbrev_offset (abbrev_offset_)
7702 {}
7703
7704 signatured_type *sig_type;
73051182
DE
7705 sect_offset abbrev_offset;
7706};
7707
484cf504 7708/* Helper routine for build_type_psymtabs_1, passed to std::sort. */
73051182 7709
484cf504
TT
7710static bool
7711sort_tu_by_abbrev_offset (const struct tu_abbrev_offset &a,
7712 const struct tu_abbrev_offset &b)
73051182 7713{
484cf504 7714 return a.abbrev_offset < b.abbrev_offset;
73051182
DE
7715}
7716
7717/* Efficiently read all the type units.
7718 This does the bulk of the work for build_type_psymtabs.
7719
7720 The efficiency is because we sort TUs by the abbrev table they use and
7721 only read each abbrev table once. In one program there are 200K TUs
7722 sharing 8K abbrev tables.
7723
7724 The main purpose of this function is to support building the
5989a64e 7725 dwarf2_per_objfile->per_bfd->type_unit_groups table.
73051182
DE
7726 TUs typically share the DW_AT_stmt_list of the CU they came from, so we
7727 can collapse the search space by grouping them by stmt_list.
7728 The savings can be significant, in the same program from above the 200K TUs
7729 share 8K stmt_list tables.
7730
7731 FUNC is expected to call get_type_unit_group, which will create the
7732 struct type_unit_group if necessary and add it to
5989a64e 7733 dwarf2_per_objfile->per_bfd->type_unit_groups. */
73051182
DE
7734
7735static void
976ca316 7736build_type_psymtabs_1 (dwarf2_per_objfile *per_objfile)
73051182 7737{
976ca316 7738 struct tu_stats *tu_stats = &per_objfile->per_bfd->tu_stats;
685af9cd 7739 abbrev_table_up abbrev_table;
73051182 7740 sect_offset abbrev_offset;
73051182
DE
7741
7742 /* It's up to the caller to not call us multiple times. */
976ca316 7743 gdb_assert (per_objfile->per_bfd->type_unit_groups == NULL);
73051182 7744
976ca316 7745 if (per_objfile->per_bfd->all_type_units.empty ())
73051182
DE
7746 return;
7747
7748 /* TUs typically share abbrev tables, and there can be way more TUs than
7749 abbrev tables. Sort by abbrev table to reduce the number of times we
7750 read each abbrev table in.
7751 Alternatives are to punt or to maintain a cache of abbrev tables.
7752 This is simpler and efficient enough for now.
7753
7754 Later we group TUs by their DW_AT_stmt_list value (as this defines the
7755 symtab to use). Typically TUs with the same abbrev offset have the same
7756 stmt_list value too so in practice this should work well.
7757
7758 The basic algorithm here is:
7759
7760 sort TUs by abbrev table
7761 for each TU with same abbrev table:
7762 read abbrev table if first user
7763 read TU top level DIE
7764 [IWBN if DWO skeletons had DW_AT_stmt_list]
7765 call FUNC */
7766
b4f54984 7767 if (dwarf_read_debug)
73051182
DE
7768 fprintf_unfiltered (gdb_stdlog, "Building type unit groups ...\n");
7769
7770 /* Sort in a separate table to maintain the order of all_type_units
7771 for .gdb_index: TU indices directly index all_type_units. */
b2bdb8cf 7772 std::vector<tu_abbrev_offset> sorted_by_abbrev;
976ca316 7773 sorted_by_abbrev.reserve (per_objfile->per_bfd->all_type_units.size ());
b2bdb8cf 7774
976ca316 7775 for (signatured_type *sig_type : per_objfile->per_bfd->all_type_units)
b2bdb8cf 7776 sorted_by_abbrev.emplace_back
976ca316 7777 (sig_type, read_abbrev_offset (per_objfile, sig_type->per_cu.section,
b2bdb8cf 7778 sig_type->per_cu.sect_off));
73051182 7779
484cf504
TT
7780 std::sort (sorted_by_abbrev.begin (), sorted_by_abbrev.end (),
7781 sort_tu_by_abbrev_offset);
73051182 7782
9c541725 7783 abbrev_offset = (sect_offset) ~(unsigned) 0;
73051182 7784
b2bdb8cf 7785 for (const tu_abbrev_offset &tu : sorted_by_abbrev)
73051182 7786 {
73051182
DE
7787 /* Switch to the next abbrev table if necessary. */
7788 if (abbrev_table == NULL
b2bdb8cf 7789 || tu.abbrev_offset != abbrev_offset)
73051182 7790 {
b2bdb8cf 7791 abbrev_offset = tu.abbrev_offset;
73051182 7792 abbrev_table =
976ca316
SM
7793 abbrev_table::read (per_objfile->objfile,
7794 &per_objfile->per_bfd->abbrev, abbrev_offset);
73051182
DE
7795 ++tu_stats->nr_uniq_abbrev_tables;
7796 }
7797
976ca316 7798 cutu_reader reader (&tu.sig_type->per_cu, per_objfile,
2e671100 7799 abbrev_table.get (), nullptr, false);
c0ab21c2
TT
7800 if (!reader.dummy_p)
7801 build_type_psymtabs_reader (&reader, reader.info_ptr,
3e225074 7802 reader.comp_unit_die);
73051182 7803 }
6aa5f3a6 7804}
73051182 7805
6aa5f3a6
DE
7806/* Print collected type unit statistics. */
7807
7808static void
976ca316 7809print_tu_stats (dwarf2_per_objfile *per_objfile)
6aa5f3a6 7810{
976ca316 7811 struct tu_stats *tu_stats = &per_objfile->per_bfd->tu_stats;
6aa5f3a6
DE
7812
7813 fprintf_unfiltered (gdb_stdlog, "Type unit statistics:\n");
b2bdb8cf 7814 fprintf_unfiltered (gdb_stdlog, " %zu TUs\n",
976ca316 7815 per_objfile->per_bfd->all_type_units.size ());
6aa5f3a6
DE
7816 fprintf_unfiltered (gdb_stdlog, " %d uniq abbrev tables\n",
7817 tu_stats->nr_uniq_abbrev_tables);
7818 fprintf_unfiltered (gdb_stdlog, " %d symtabs from stmt_list entries\n",
7819 tu_stats->nr_symtabs);
7820 fprintf_unfiltered (gdb_stdlog, " %d symtab sharers\n",
7821 tu_stats->nr_symtab_sharers);
7822 fprintf_unfiltered (gdb_stdlog, " %d type units without a stmt_list\n",
7823 tu_stats->nr_stmt_less_type_units);
7824 fprintf_unfiltered (gdb_stdlog, " %d all_type_units reallocs\n",
7825 tu_stats->nr_all_type_units_reallocs);
73051182
DE
7826}
7827
f4dc4d17
DE
7828/* Traversal function for build_type_psymtabs. */
7829
7830static int
7831build_type_psymtab_dependencies (void **slot, void *info)
7832{
976ca316
SM
7833 dwarf2_per_objfile *per_objfile = (dwarf2_per_objfile *) info;
7834 struct objfile *objfile = per_objfile->objfile;
f4dc4d17 7835 struct type_unit_group *tu_group = (struct type_unit_group *) *slot;
094b34ac 7836 struct dwarf2_per_cu_data *per_cu = &tu_group->per_cu;
891813be 7837 dwarf2_psymtab *pst = per_cu->v.psymtab;
df07e2c7 7838 int len = (tu_group->tus == nullptr) ? 0 : tu_group->tus->size ();
f4dc4d17
DE
7839 int i;
7840
7841 gdb_assert (len > 0);
197400e8 7842 gdb_assert (per_cu->type_unit_group_p ());
f4dc4d17
DE
7843
7844 pst->number_of_dependencies = len;
a9342b62 7845 pst->dependencies = objfile->partial_symtabs->allocate_dependencies (len);
df07e2c7 7846 for (i = 0; i < len; ++i)
f4dc4d17 7847 {
df07e2c7 7848 struct signatured_type *iter = tu_group->tus->at (i);
0186c6a7
DE
7849 gdb_assert (iter->per_cu.is_debug_types);
7850 pst->dependencies[i] = iter->per_cu.v.psymtab;
796a7ff8 7851 iter->type_unit_group = tu_group;
f4dc4d17
DE
7852 }
7853
df07e2c7
AB
7854 delete tu_group->tus;
7855 tu_group->tus = nullptr;
348e048f
DE
7856
7857 return 1;
7858}
7859
7860/* Subroutine of dwarf2_build_psymtabs_hard to simplify it.
7861 Build partial symbol tables for the .debug_types comp-units. */
7862
7863static void
976ca316 7864build_type_psymtabs (dwarf2_per_objfile *per_objfile)
348e048f 7865{
976ca316 7866 if (! create_all_type_units (per_objfile))
348e048f
DE
7867 return;
7868
976ca316 7869 build_type_psymtabs_1 (per_objfile);
6aa5f3a6 7870}
f4dc4d17 7871
6aa5f3a6
DE
7872/* Traversal function for process_skeletonless_type_unit.
7873 Read a TU in a DWO file and build partial symbols for it. */
7874
7875static int
7876process_skeletonless_type_unit (void **slot, void *info)
7877{
7878 struct dwo_unit *dwo_unit = (struct dwo_unit *) *slot;
976ca316 7879 dwarf2_per_objfile *per_objfile = (dwarf2_per_objfile *) info;
6aa5f3a6
DE
7880 struct signatured_type find_entry, *entry;
7881
7882 /* If this TU doesn't exist in the global table, add it and read it in. */
7883
976ca316
SM
7884 if (per_objfile->per_bfd->signatured_types == NULL)
7885 per_objfile->per_bfd->signatured_types = allocate_signatured_type_table ();
6aa5f3a6
DE
7886
7887 find_entry.signature = dwo_unit->signature;
976ca316 7888 slot = htab_find_slot (per_objfile->per_bfd->signatured_types.get (),
b0b6a987 7889 &find_entry, INSERT);
6aa5f3a6
DE
7890 /* If we've already seen this type there's nothing to do. What's happening
7891 is we're doing our own version of comdat-folding here. */
7892 if (*slot != NULL)
7893 return 1;
7894
7895 /* This does the job that create_all_type_units would have done for
7896 this TU. */
976ca316
SM
7897 entry = add_type_unit (per_objfile, dwo_unit->signature, slot);
7898 fill_in_sig_entry_from_dwo_entry (per_objfile, entry, dwo_unit);
6aa5f3a6
DE
7899 *slot = entry;
7900
7901 /* This does the job that build_type_psymtabs_1 would have done. */
976ca316 7902 cutu_reader reader (&entry->per_cu, per_objfile, nullptr, nullptr, false);
c0ab21c2
TT
7903 if (!reader.dummy_p)
7904 build_type_psymtabs_reader (&reader, reader.info_ptr,
3e225074 7905 reader.comp_unit_die);
6aa5f3a6
DE
7906
7907 return 1;
7908}
7909
7910/* Traversal function for process_skeletonless_type_units. */
7911
7912static int
7913process_dwo_file_for_skeletonless_type_units (void **slot, void *info)
7914{
7915 struct dwo_file *dwo_file = (struct dwo_file *) *slot;
7916
7917 if (dwo_file->tus != NULL)
b0b6a987
TT
7918 htab_traverse_noresize (dwo_file->tus.get (),
7919 process_skeletonless_type_unit, info);
6aa5f3a6
DE
7920
7921 return 1;
7922}
7923
7924/* Scan all TUs of DWO files, verifying we've processed them.
7925 This is needed in case a TU was emitted without its skeleton.
7926 Note: This can't be done until we know what all the DWO files are. */
7927
7928static void
976ca316 7929process_skeletonless_type_units (dwarf2_per_objfile *per_objfile)
6aa5f3a6
DE
7930{
7931 /* Skeletonless TUs in DWP files without .gdb_index is not supported yet. */
976ca316
SM
7932 if (get_dwp_file (per_objfile) == NULL
7933 && per_objfile->per_bfd->dwo_files != NULL)
6aa5f3a6 7934 {
976ca316 7935 htab_traverse_noresize (per_objfile->per_bfd->dwo_files.get (),
6aa5f3a6 7936 process_dwo_file_for_skeletonless_type_units,
976ca316 7937 per_objfile);
6aa5f3a6 7938 }
348e048f
DE
7939}
7940
ed2dc618 7941/* Compute the 'user' field for each psymtab in DWARF2_PER_OBJFILE. */
95554aad
TT
7942
7943static void
976ca316 7944set_partial_user (dwarf2_per_objfile *per_objfile)
95554aad 7945{
976ca316 7946 for (dwarf2_per_cu_data *per_cu : per_objfile->per_bfd->all_comp_units)
95554aad 7947 {
891813be 7948 dwarf2_psymtab *pst = per_cu->v.psymtab;
95554aad 7949
36586728
TT
7950 if (pst == NULL)
7951 continue;
7952
b76e467d 7953 for (int j = 0; j < pst->number_of_dependencies; ++j)
95554aad
TT
7954 {
7955 /* Set the 'user' field only if it is not already set. */
7956 if (pst->dependencies[j]->user == NULL)
7957 pst->dependencies[j]->user = pst;
7958 }
7959 }
7960}
7961
93311388
DE
7962/* Build the partial symbol table by doing a quick pass through the
7963 .debug_info and .debug_abbrev sections. */
72bf9492 7964
93311388 7965static void
976ca316 7966dwarf2_build_psymtabs_hard (dwarf2_per_objfile *per_objfile)
93311388 7967{
976ca316 7968 struct objfile *objfile = per_objfile->objfile;
93311388 7969
b4f54984 7970 if (dwarf_read_debug)
45cfd468
DE
7971 {
7972 fprintf_unfiltered (gdb_stdlog, "Building psymtabs of objfile %s ...\n",
4262abfb 7973 objfile_name (objfile));
45cfd468
DE
7974 }
7975
76935768 7976 scoped_restore restore_reading_psyms
976ca316 7977 = make_scoped_restore (&per_objfile->per_bfd->reading_partial_symbols,
76935768 7978 true);
98bfdba5 7979
976ca316 7980 per_objfile->per_bfd->info.read (objfile);
91c24f0a 7981
93311388
DE
7982 /* Any cached compilation units will be linked by the per-objfile
7983 read_in_chain. Make sure to free them when we're done. */
976ca316 7984 free_cached_comp_units freer (per_objfile);
72bf9492 7985
976ca316 7986 build_type_psymtabs (per_objfile);
348e048f 7987
976ca316 7988 create_all_comp_units (per_objfile);
c906108c 7989
60606b2c
TT
7990 /* Create a temporary address map on a temporary obstack. We later
7991 copy this to the final obstack. */
8268c778 7992 auto_obstack temp_obstack;
791afaa2
TT
7993
7994 scoped_restore save_psymtabs_addrmap
d320c2b5 7995 = make_scoped_restore (&objfile->partial_symtabs->psymtabs_addrmap,
791afaa2 7996 addrmap_create_mutable (&temp_obstack));
72bf9492 7997
976ca316 7998 for (dwarf2_per_cu_data *per_cu : per_objfile->per_bfd->all_comp_units)
3d5afab3
TV
7999 {
8000 if (per_cu->v.psymtab != NULL)
8001 /* In case a forward DW_TAG_imported_unit has read the CU already. */
8002 continue;
976ca316 8003 process_psymtab_comp_unit (per_cu, per_objfile, false,
ab432490 8004 language_minimal);
3d5afab3 8005 }
ff013f42 8006
6aa5f3a6 8007 /* This has to wait until we read the CUs, we need the list of DWOs. */
976ca316 8008 process_skeletonless_type_units (per_objfile);
6aa5f3a6
DE
8009
8010 /* Now that all TUs have been processed we can fill in the dependencies. */
976ca316 8011 if (per_objfile->per_bfd->type_unit_groups != NULL)
6aa5f3a6 8012 {
976ca316
SM
8013 htab_traverse_noresize (per_objfile->per_bfd->type_unit_groups.get (),
8014 build_type_psymtab_dependencies, per_objfile);
6aa5f3a6
DE
8015 }
8016
b4f54984 8017 if (dwarf_read_debug)
976ca316 8018 print_tu_stats (per_objfile);
6aa5f3a6 8019
976ca316 8020 set_partial_user (per_objfile);
95554aad 8021
d320c2b5
TT
8022 objfile->partial_symtabs->psymtabs_addrmap
8023 = addrmap_create_fixed (objfile->partial_symtabs->psymtabs_addrmap,
5923a04c 8024 objfile->partial_symtabs->obstack ());
791afaa2
TT
8025 /* At this point we want to keep the address map. */
8026 save_psymtabs_addrmap.release ();
ff013f42 8027
b4f54984 8028 if (dwarf_read_debug)
45cfd468 8029 fprintf_unfiltered (gdb_stdlog, "Done building psymtabs of %s\n",
4262abfb 8030 objfile_name (objfile));
ae038cb0
DJ
8031}
8032
dee91e82
DE
8033/* Load the partial DIEs for a secondary CU into memory.
8034 This is also used when rereading a primary CU with load_all_dies. */
c5b7e1cb 8035
dee91e82 8036static void
ab432490 8037load_partial_comp_unit (dwarf2_per_cu_data *this_cu,
2e671100
SM
8038 dwarf2_per_objfile *per_objfile,
8039 dwarf2_cu *existing_cu)
dee91e82 8040{
2e671100 8041 cutu_reader reader (this_cu, per_objfile, nullptr, existing_cu, false);
c0ab21c2
TT
8042
8043 if (!reader.dummy_p)
8044 {
8045 prepare_one_comp_unit (reader.cu, reader.comp_unit_die,
8046 language_minimal);
8047
8048 /* Check if comp unit has_children.
8049 If so, read the rest of the partial symbols from this comp unit.
8050 If not, there's no more debug_info for this comp unit. */
3e225074 8051 if (reader.comp_unit_die->has_children)
c0ab21c2 8052 load_partial_dies (&reader, reader.info_ptr, 0);
6751ebae
TT
8053
8054 reader.keep ();
c0ab21c2 8055 }
ae038cb0
DJ
8056}
8057
ae038cb0 8058static void
976ca316 8059read_comp_units_from_section (dwarf2_per_objfile *per_objfile,
36586728 8060 struct dwarf2_section_info *section,
f1902523 8061 struct dwarf2_section_info *abbrev_section,
b76e467d 8062 unsigned int is_dwz)
ae038cb0 8063{
d521ce57 8064 const gdb_byte *info_ptr;
976ca316 8065 struct objfile *objfile = per_objfile->objfile;
be391dca 8066
b4f54984 8067 if (dwarf_read_debug)
bf6af496 8068 fprintf_unfiltered (gdb_stdlog, "Reading %s for %s\n",
96b79293
TT
8069 section->get_name (),
8070 section->get_file_name ());
bf6af496 8071
96b79293 8072 section->read (objfile);
ae038cb0 8073
36586728 8074 info_ptr = section->buffer;
6e70227d 8075
36586728 8076 while (info_ptr < section->buffer + section->size)
ae038cb0 8077 {
ae038cb0 8078 struct dwarf2_per_cu_data *this_cu;
ae038cb0 8079
9c541725 8080 sect_offset sect_off = (sect_offset) (info_ptr - section->buffer);
ae038cb0 8081
f1902523 8082 comp_unit_head cu_header;
976ca316 8083 read_and_check_comp_unit_head (per_objfile, &cu_header, section,
ed2dc618
SM
8084 abbrev_section, info_ptr,
8085 rcuh_kind::COMPILE);
ae038cb0
DJ
8086
8087 /* Save the compilation unit for later lookup. */
f1902523 8088 if (cu_header.unit_type != DW_UT_type)
976ca316 8089 this_cu = per_objfile->per_bfd->allocate_per_cu ();
f1902523
JK
8090 else
8091 {
976ca316 8092 auto sig_type = per_objfile->per_bfd->allocate_signatured_type ();
f1902523
JK
8093 sig_type->signature = cu_header.signature;
8094 sig_type->type_offset_in_tu = cu_header.type_cu_offset_in_tu;
8095 this_cu = &sig_type->per_cu;
8096 }
8097 this_cu->is_debug_types = (cu_header.unit_type == DW_UT_type);
9c541725 8098 this_cu->sect_off = sect_off;
f1902523 8099 this_cu->length = cu_header.length + cu_header.initial_length_size;
36586728 8100 this_cu->is_dwz = is_dwz;
8a0459fd 8101 this_cu->section = section;
ae038cb0 8102
976ca316 8103 per_objfile->per_bfd->all_comp_units.push_back (this_cu);
ae038cb0
DJ
8104
8105 info_ptr = info_ptr + this_cu->length;
8106 }
36586728
TT
8107}
8108
8109/* Create a list of all compilation units in OBJFILE.
8110 This is only done for -readnow and building partial symtabs. */
8111
8112static void
976ca316 8113create_all_comp_units (dwarf2_per_objfile *per_objfile)
36586728 8114{
976ca316
SM
8115 gdb_assert (per_objfile->per_bfd->all_comp_units.empty ());
8116 read_comp_units_from_section (per_objfile, &per_objfile->per_bfd->info,
8117 &per_objfile->per_bfd->abbrev, 0);
36586728 8118
976ca316 8119 dwz_file *dwz = dwarf2_get_dwz_file (per_objfile->per_bfd);
4db1a1dc 8120 if (dwz != NULL)
976ca316 8121 read_comp_units_from_section (per_objfile, &dwz->info, &dwz->abbrev, 1);
c906108c
SS
8122}
8123
5734ee8b 8124/* Process all loaded DIEs for compilation unit CU, starting at
cdc07690 8125 FIRST_DIE. The caller should pass SET_ADDRMAP == 1 if the compilation
5734ee8b 8126 unit DIE did not have PC info (DW_AT_low_pc and DW_AT_high_pc, or
cdc07690
YQ
8127 DW_AT_ranges). See the comments of add_partial_subprogram on how
8128 SET_ADDRMAP is used and how *LOWPC and *HIGHPC are updated. */
c906108c 8129
72bf9492
DJ
8130static void
8131scan_partial_symbols (struct partial_die_info *first_die, CORE_ADDR *lowpc,
cdc07690
YQ
8132 CORE_ADDR *highpc, int set_addrmap,
8133 struct dwarf2_cu *cu)
c906108c 8134{
72bf9492 8135 struct partial_die_info *pdi;
c906108c 8136
91c24f0a
DC
8137 /* Now, march along the PDI's, descending into ones which have
8138 interesting children but skipping the children of the other ones,
8139 until we reach the end of the compilation unit. */
c906108c 8140
72bf9492 8141 pdi = first_die;
91c24f0a 8142
72bf9492
DJ
8143 while (pdi != NULL)
8144 {
52356b79 8145 pdi->fixup (cu);
c906108c 8146
f55ee35c 8147 /* Anonymous namespaces or modules have no name but have interesting
91c24f0a
DC
8148 children, so we need to look at them. Ditto for anonymous
8149 enums. */
933c6fe4 8150
7d00ffec 8151 if (pdi->raw_name != NULL || pdi->tag == DW_TAG_namespace
95554aad 8152 || pdi->tag == DW_TAG_module || pdi->tag == DW_TAG_enumeration_type
b1dc1806
XR
8153 || pdi->tag == DW_TAG_imported_unit
8154 || pdi->tag == DW_TAG_inlined_subroutine)
c906108c 8155 {
72bf9492 8156 switch (pdi->tag)
c906108c
SS
8157 {
8158 case DW_TAG_subprogram:
b1dc1806 8159 case DW_TAG_inlined_subroutine:
cdc07690 8160 add_partial_subprogram (pdi, lowpc, highpc, set_addrmap, cu);
f9b5d5ea
TV
8161 if (cu->language == language_cplus)
8162 scan_partial_symbols (pdi->die_child, lowpc, highpc,
8163 set_addrmap, cu);
c906108c 8164 break;
72929c62 8165 case DW_TAG_constant:
c906108c
SS
8166 case DW_TAG_variable:
8167 case DW_TAG_typedef:
91c24f0a 8168 case DW_TAG_union_type:
317d2668
TV
8169 if (!pdi->is_declaration
8170 || (pdi->tag == DW_TAG_variable && pdi->is_external))
63d06c5c 8171 {
72bf9492 8172 add_partial_symbol (pdi, cu);
63d06c5c
DC
8173 }
8174 break;
c906108c 8175 case DW_TAG_class_type:
680b30c7 8176 case DW_TAG_interface_type:
c906108c 8177 case DW_TAG_structure_type:
72bf9492 8178 if (!pdi->is_declaration)
c906108c 8179 {
72bf9492 8180 add_partial_symbol (pdi, cu);
c906108c 8181 }
b7fee5a3
KS
8182 if ((cu->language == language_rust
8183 || cu->language == language_cplus) && pdi->has_children)
e98c9e7c
TT
8184 scan_partial_symbols (pdi->die_child, lowpc, highpc,
8185 set_addrmap, cu);
c906108c 8186 break;
91c24f0a 8187 case DW_TAG_enumeration_type:
72bf9492
DJ
8188 if (!pdi->is_declaration)
8189 add_partial_enumeration (pdi, cu);
c906108c
SS
8190 break;
8191 case DW_TAG_base_type:
a02abb62 8192 case DW_TAG_subrange_type:
c906108c 8193 /* File scope base type definitions are added to the partial
c5aa993b 8194 symbol table. */
72bf9492 8195 add_partial_symbol (pdi, cu);
c906108c 8196 break;
d9fa45fe 8197 case DW_TAG_namespace:
cdc07690 8198 add_partial_namespace (pdi, lowpc, highpc, set_addrmap, cu);
91c24f0a 8199 break;
5d7cb8df 8200 case DW_TAG_module:
59c35742
AB
8201 if (!pdi->is_declaration)
8202 add_partial_module (pdi, lowpc, highpc, set_addrmap, cu);
5d7cb8df 8203 break;
95554aad
TT
8204 case DW_TAG_imported_unit:
8205 {
8206 struct dwarf2_per_cu_data *per_cu;
8207
f4dc4d17
DE
8208 /* For now we don't handle imported units in type units. */
8209 if (cu->per_cu->is_debug_types)
8210 {
8211 error (_("Dwarf Error: DW_TAG_imported_unit is not"
8212 " supported in type units [in module %s]"),
5e22e966 8213 objfile_name (cu->per_objfile->objfile));
f4dc4d17
DE
8214 }
8215
e3b94546 8216 per_cu = dwarf2_find_containing_comp_unit
5e22e966 8217 (pdi->d.sect_off, pdi->is_dwz, cu->per_objfile);
95554aad
TT
8218
8219 /* Go read the partial unit, if needed. */
8220 if (per_cu->v.psymtab == NULL)
ab432490
SM
8221 process_psymtab_comp_unit (per_cu, cu->per_objfile, true,
8222 cu->language);
95554aad 8223
ae640021 8224 cu->per_cu->imported_symtabs_push (per_cu);
95554aad
TT
8225 }
8226 break;
74921315
KS
8227 case DW_TAG_imported_declaration:
8228 add_partial_symbol (pdi, cu);
8229 break;
c906108c
SS
8230 default:
8231 break;
8232 }
8233 }
8234
72bf9492
DJ
8235 /* If the die has a sibling, skip to the sibling. */
8236
8237 pdi = pdi->die_sibling;
8238 }
8239}
8240
8241/* Functions used to compute the fully scoped name of a partial DIE.
91c24f0a 8242
72bf9492 8243 Normally, this is simple. For C++, the parent DIE's fully scoped
9c37b5ae 8244 name is concatenated with "::" and the partial DIE's name.
72bf9492
DJ
8245 Enumerators are an exception; they use the scope of their parent
8246 enumeration type, i.e. the name of the enumeration type is not
8247 prepended to the enumerator.
91c24f0a 8248
72bf9492
DJ
8249 There are two complexities. One is DW_AT_specification; in this
8250 case "parent" means the parent of the target of the specification,
8251 instead of the direct parent of the DIE. The other is compilers
8252 which do not emit DW_TAG_namespace; in this case we try to guess
8253 the fully qualified name of structure types from their members'
8254 linkage names. This must be done using the DIE's children rather
8255 than the children of any DW_AT_specification target. We only need
8256 to do this for structures at the top level, i.e. if the target of
8257 any DW_AT_specification (if any; otherwise the DIE itself) does not
8258 have a parent. */
8259
8260/* Compute the scope prefix associated with PDI's parent, in
8261 compilation unit CU. The result will be allocated on CU's
8262 comp_unit_obstack, or a copy of the already allocated PDI->NAME
8263 field. NULL is returned if no prefix is necessary. */
15d034d0 8264static const char *
72bf9492
DJ
8265partial_die_parent_scope (struct partial_die_info *pdi,
8266 struct dwarf2_cu *cu)
8267{
15d034d0 8268 const char *grandparent_scope;
72bf9492 8269 struct partial_die_info *parent, *real_pdi;
91c24f0a 8270
72bf9492
DJ
8271 /* We need to look at our parent DIE; if we have a DW_AT_specification,
8272 then this means the parent of the specification DIE. */
8273
8274 real_pdi = pdi;
72bf9492 8275 while (real_pdi->has_specification)
fb816e8b 8276 {
122cf0f2
AB
8277 auto res = find_partial_die (real_pdi->spec_offset,
8278 real_pdi->spec_is_dwz, cu);
fb816e8b
TV
8279 real_pdi = res.pdi;
8280 cu = res.cu;
8281 }
72bf9492
DJ
8282
8283 parent = real_pdi->die_parent;
8284 if (parent == NULL)
8285 return NULL;
8286
8287 if (parent->scope_set)
8288 return parent->scope;
8289
52356b79 8290 parent->fixup (cu);
72bf9492 8291
10b3939b 8292 grandparent_scope = partial_die_parent_scope (parent, cu);
72bf9492 8293
acebe513
UW
8294 /* GCC 4.0 and 4.1 had a bug (PR c++/28460) where they generated bogus
8295 DW_TAG_namespace DIEs with a name of "::" for the global namespace.
8296 Work around this problem here. */
8297 if (cu->language == language_cplus
6e70227d 8298 && parent->tag == DW_TAG_namespace
7d00ffec 8299 && strcmp (parent->name (cu), "::") == 0
acebe513
UW
8300 && grandparent_scope == NULL)
8301 {
8302 parent->scope = NULL;
8303 parent->scope_set = 1;
8304 return NULL;
8305 }
8306
0a4b0913 8307 /* Nested subroutines in Fortran get a prefix. */
9c6c53f7
SA
8308 if (pdi->tag == DW_TAG_enumerator)
8309 /* Enumerators should not get the name of the enumeration as a prefix. */
8310 parent->scope = grandparent_scope;
8311 else if (parent->tag == DW_TAG_namespace
f55ee35c 8312 || parent->tag == DW_TAG_module
72bf9492
DJ
8313 || parent->tag == DW_TAG_structure_type
8314 || parent->tag == DW_TAG_class_type
680b30c7 8315 || parent->tag == DW_TAG_interface_type
ceeb3d5a 8316 || parent->tag == DW_TAG_union_type
0a4b0913
AB
8317 || parent->tag == DW_TAG_enumeration_type
8318 || (cu->language == language_fortran
8319 && parent->tag == DW_TAG_subprogram
8320 && pdi->tag == DW_TAG_subprogram))
72bf9492
DJ
8321 {
8322 if (grandparent_scope == NULL)
7d00ffec 8323 parent->scope = parent->name (cu);
72bf9492 8324 else
3e43a32a
MS
8325 parent->scope = typename_concat (&cu->comp_unit_obstack,
8326 grandparent_scope,
7d00ffec 8327 parent->name (cu), 0, cu);
72bf9492 8328 }
72bf9492
DJ
8329 else
8330 {
8331 /* FIXME drow/2004-04-01: What should we be doing with
8332 function-local names? For partial symbols, we should probably be
8333 ignoring them. */
fa9c3fa0
TT
8334 complaint (_("unhandled containing DIE tag %s for DIE at %s"),
8335 dwarf_tag_name (parent->tag),
8336 sect_offset_str (pdi->sect_off));
72bf9492 8337 parent->scope = grandparent_scope;
c906108c
SS
8338 }
8339
72bf9492
DJ
8340 parent->scope_set = 1;
8341 return parent->scope;
8342}
8343
8344/* Return the fully scoped name associated with PDI, from compilation unit
8345 CU. The result will be allocated with malloc. */
4568ecf9 8346
43816ebc 8347static gdb::unique_xmalloc_ptr<char>
72bf9492
DJ
8348partial_die_full_name (struct partial_die_info *pdi,
8349 struct dwarf2_cu *cu)
8350{
15d034d0 8351 const char *parent_scope;
72bf9492 8352
98bfdba5
PA
8353 /* If this is a template instantiation, we can not work out the
8354 template arguments from partial DIEs. So, unfortunately, we have
8355 to go through the full DIEs. At least any work we do building
8356 types here will be reused if full symbols are loaded later. */
8357 if (pdi->has_template_arguments)
8358 {
52356b79 8359 pdi->fixup (cu);
98bfdba5 8360
7d00ffec 8361 if (pdi->name (cu) != NULL && strchr (pdi->name (cu), '<') == NULL)
98bfdba5
PA
8362 {
8363 struct die_info *die;
8364 struct attribute attr;
8365 struct dwarf2_cu *ref_cu = cu;
8366
b64f50a1 8367 /* DW_FORM_ref_addr is using section offset. */
b4069958 8368 attr.name = (enum dwarf_attribute) 0;
98bfdba5 8369 attr.form = DW_FORM_ref_addr;
9c541725 8370 attr.u.unsnd = to_underlying (pdi->sect_off);
98bfdba5
PA
8371 die = follow_die_ref (NULL, &attr, &ref_cu);
8372
43816ebc 8373 return make_unique_xstrdup (dwarf2_full_name (NULL, die, ref_cu));
98bfdba5
PA
8374 }
8375 }
8376
72bf9492
DJ
8377 parent_scope = partial_die_parent_scope (pdi, cu);
8378 if (parent_scope == NULL)
8379 return NULL;
8380 else
43816ebc 8381 return gdb::unique_xmalloc_ptr<char> (typename_concat (NULL, parent_scope,
7d00ffec
TT
8382 pdi->name (cu),
8383 0, cu));
c906108c
SS
8384}
8385
8386static void
72bf9492 8387add_partial_symbol (struct partial_die_info *pdi, struct dwarf2_cu *cu)
c906108c 8388{
976ca316
SM
8389 dwarf2_per_objfile *per_objfile = cu->per_objfile;
8390 struct objfile *objfile = per_objfile->objfile;
08feed99 8391 struct gdbarch *gdbarch = objfile->arch ();
c906108c 8392 CORE_ADDR addr = 0;
15d034d0 8393 const char *actual_name = NULL;
e142c38c
DJ
8394 CORE_ADDR baseaddr;
8395
b3b3bada 8396 baseaddr = objfile->text_section_offset ();
c906108c 8397
43816ebc
TT
8398 gdb::unique_xmalloc_ptr<char> built_actual_name
8399 = partial_die_full_name (pdi, cu);
15d034d0 8400 if (built_actual_name != NULL)
43816ebc 8401 actual_name = built_actual_name.get ();
63d06c5c 8402
72bf9492 8403 if (actual_name == NULL)
7d00ffec 8404 actual_name = pdi->name (cu);
72bf9492 8405
76e288d1
TT
8406 partial_symbol psymbol;
8407 memset (&psymbol, 0, sizeof (psymbol));
8408 psymbol.ginfo.set_language (cu->language, &objfile->objfile_obstack);
8409 psymbol.ginfo.section = -1;
8410
8411 /* The code below indicates that the psymbol should be installed by
8412 setting this. */
8413 gdb::optional<psymbol_placement> where;
8414
c906108c
SS
8415 switch (pdi->tag)
8416 {
b1dc1806 8417 case DW_TAG_inlined_subroutine:
c906108c 8418 case DW_TAG_subprogram:
79748972
TT
8419 addr = (gdbarch_adjust_dwarf2_addr (gdbarch, pdi->lowpc + baseaddr)
8420 - baseaddr);
0a4b0913
AB
8421 if (pdi->is_external
8422 || cu->language == language_ada
8423 || (cu->language == language_fortran
8424 && pdi->die_parent != NULL
8425 && pdi->die_parent->tag == DW_TAG_subprogram))
8426 {
8427 /* Normally, only "external" DIEs are part of the global scope.
8428 But in Ada and Fortran, we want to be able to access nested
8429 procedures globally. So all Ada and Fortran subprograms are
8430 stored in the global scope. */
76e288d1 8431 where = psymbol_placement::GLOBAL;
c906108c
SS
8432 }
8433 else
76e288d1
TT
8434 where = psymbol_placement::STATIC;
8435
8436 psymbol.domain = VAR_DOMAIN;
8437 psymbol.aclass = LOC_BLOCK;
8438 psymbol.ginfo.section = SECT_OFF_TEXT (objfile);
8439 psymbol.ginfo.value.address = addr;
0c1b455e
TT
8440
8441 if (pdi->main_subprogram && actual_name != NULL)
8442 set_objfile_main_name (objfile, actual_name, cu->language);
c906108c 8443 break;
72929c62 8444 case DW_TAG_constant:
76e288d1
TT
8445 psymbol.domain = VAR_DOMAIN;
8446 psymbol.aclass = LOC_STATIC;
8447 where = (pdi->is_external
8448 ? psymbol_placement::GLOBAL
8449 : psymbol_placement::STATIC);
72929c62 8450 break;
c906108c 8451 case DW_TAG_variable:
95554aad
TT
8452 if (pdi->d.locdesc)
8453 addr = decode_locdesc (pdi->d.locdesc, cu);
caac4577 8454
95554aad 8455 if (pdi->d.locdesc
caac4577 8456 && addr == 0
976ca316 8457 && !per_objfile->per_bfd->has_section_at_zero)
caac4577
JG
8458 {
8459 /* A global or static variable may also have been stripped
8460 out by the linker if unused, in which case its address
8461 will be nullified; do not add such variables into partial
8462 symbol table then. */
8463 }
8464 else if (pdi->is_external)
c906108c
SS
8465 {
8466 /* Global Variable.
8467 Don't enter into the minimal symbol tables as there is
8468 a minimal symbol table entry from the ELF symbols already.
8469 Enter into partial symbol table if it has a location
8470 descriptor or a type.
8471 If the location descriptor is missing, new_symbol will create
8472 a LOC_UNRESOLVED symbol, the address of the variable will then
8473 be determined from the minimal symbol table whenever the variable
8474 is referenced.
8475 The address for the partial symbol table entry is not
8476 used by GDB, but it comes in handy for debugging partial symbol
8477 table building. */
8478
95554aad 8479 if (pdi->d.locdesc || pdi->has_type)
76e288d1
TT
8480 {
8481 psymbol.domain = VAR_DOMAIN;
8482 psymbol.aclass = LOC_STATIC;
8483 psymbol.ginfo.section = SECT_OFF_TEXT (objfile);
8484 psymbol.ginfo.value.address = addr;
8485 where = psymbol_placement::GLOBAL;
8486 }
c906108c
SS
8487 }
8488 else
8489 {
ff908ebf
AW
8490 int has_loc = pdi->d.locdesc != NULL;
8491
8492 /* Static Variable. Skip symbols whose value we cannot know (those
8493 without location descriptors or constant values). */
8494 if (!has_loc && !pdi->has_const_value)
43816ebc 8495 return;
ff908ebf 8496
76e288d1
TT
8497 psymbol.domain = VAR_DOMAIN;
8498 psymbol.aclass = LOC_STATIC;
8499 psymbol.ginfo.section = SECT_OFF_TEXT (objfile);
8500 if (has_loc)
8501 psymbol.ginfo.value.address = addr;
8502 where = psymbol_placement::STATIC;
c906108c
SS
8503 }
8504 break;
8505 case DW_TAG_typedef:
8506 case DW_TAG_base_type:
a02abb62 8507 case DW_TAG_subrange_type:
76e288d1
TT
8508 psymbol.domain = VAR_DOMAIN;
8509 psymbol.aclass = LOC_TYPEDEF;
8510 where = psymbol_placement::STATIC;
c906108c 8511 break;
74921315 8512 case DW_TAG_imported_declaration:
72bf9492 8513 case DW_TAG_namespace:
76e288d1
TT
8514 psymbol.domain = VAR_DOMAIN;
8515 psymbol.aclass = LOC_TYPEDEF;
8516 where = psymbol_placement::GLOBAL;
72bf9492 8517 break;
530e8392 8518 case DW_TAG_module:
a5fd13a9
BH
8519 /* With Fortran 77 there might be a "BLOCK DATA" module
8520 available without any name. If so, we skip the module as it
8521 doesn't bring any value. */
8522 if (actual_name != nullptr)
76e288d1
TT
8523 {
8524 psymbol.domain = MODULE_DOMAIN;
8525 psymbol.aclass = LOC_TYPEDEF;
8526 where = psymbol_placement::GLOBAL;
8527 }
530e8392 8528 break;
c906108c 8529 case DW_TAG_class_type:
680b30c7 8530 case DW_TAG_interface_type:
c906108c
SS
8531 case DW_TAG_structure_type:
8532 case DW_TAG_union_type:
8533 case DW_TAG_enumeration_type:
fa4028e9
JB
8534 /* Skip external references. The DWARF standard says in the section
8535 about "Structure, Union, and Class Type Entries": "An incomplete
8536 structure, union or class type is represented by a structure,
8537 union or class entry that does not have a byte size attribute
8538 and that has a DW_AT_declaration attribute." */
8539 if (!pdi->has_byte_size && pdi->is_declaration)
43816ebc 8540 return;
fa4028e9 8541
63d06c5c
DC
8542 /* NOTE: carlton/2003-10-07: See comment in new_symbol about
8543 static vs. global. */
76e288d1
TT
8544 psymbol.domain = STRUCT_DOMAIN;
8545 psymbol.aclass = LOC_TYPEDEF;
8546 where = (cu->language == language_cplus
8547 ? psymbol_placement::GLOBAL
8548 : psymbol_placement::STATIC);
c906108c
SS
8549 break;
8550 case DW_TAG_enumerator:
76e288d1
TT
8551 psymbol.domain = VAR_DOMAIN;
8552 psymbol.aclass = LOC_CONST;
8553 where = (cu->language == language_cplus
8554 ? psymbol_placement::GLOBAL
8555 : psymbol_placement::STATIC);
c906108c
SS
8556 break;
8557 default:
8558 break;
8559 }
76e288d1
TT
8560
8561 if (where.has_value ())
8562 {
f049a313
TT
8563 if (built_actual_name != nullptr)
8564 actual_name = objfile->intern (actual_name);
bcfe6157
TT
8565 if (pdi->linkage_name == nullptr || cu->language == language_ada)
8566 psymbol.ginfo.set_linkage_name (actual_name);
8567 else
8568 {
8569 psymbol.ginfo.set_demangled_name (actual_name,
8570 &objfile->objfile_obstack);
8571 psymbol.ginfo.set_linkage_name (pdi->linkage_name);
8572 }
76e288d1
TT
8573 add_psymbol_to_list (psymbol, *where, objfile);
8574 }
c906108c
SS
8575}
8576
5c4e30ca
DC
8577/* Read a partial die corresponding to a namespace; also, add a symbol
8578 corresponding to that namespace to the symbol table. NAMESPACE is
8579 the name of the enclosing namespace. */
91c24f0a 8580
72bf9492
DJ
8581static void
8582add_partial_namespace (struct partial_die_info *pdi,
91c24f0a 8583 CORE_ADDR *lowpc, CORE_ADDR *highpc,
cdc07690 8584 int set_addrmap, struct dwarf2_cu *cu)
91c24f0a 8585{
72bf9492 8586 /* Add a symbol for the namespace. */
e7c27a73 8587
72bf9492 8588 add_partial_symbol (pdi, cu);
5c4e30ca
DC
8589
8590 /* Now scan partial symbols in that namespace. */
8591
91c24f0a 8592 if (pdi->has_children)
cdc07690 8593 scan_partial_symbols (pdi->die_child, lowpc, highpc, set_addrmap, cu);
91c24f0a
DC
8594}
8595
5d7cb8df
JK
8596/* Read a partial die corresponding to a Fortran module. */
8597
8598static void
8599add_partial_module (struct partial_die_info *pdi, CORE_ADDR *lowpc,
cdc07690 8600 CORE_ADDR *highpc, int set_addrmap, struct dwarf2_cu *cu)
5d7cb8df 8601{
530e8392
KB
8602 /* Add a symbol for the namespace. */
8603
8604 add_partial_symbol (pdi, cu);
8605
f55ee35c 8606 /* Now scan partial symbols in that module. */
5d7cb8df
JK
8607
8608 if (pdi->has_children)
cdc07690 8609 scan_partial_symbols (pdi->die_child, lowpc, highpc, set_addrmap, cu);
5d7cb8df
JK
8610}
8611
b1dc1806
XR
8612/* Read a partial die corresponding to a subprogram or an inlined
8613 subprogram and create a partial symbol for that subprogram.
8614 When the CU language allows it, this routine also defines a partial
8615 symbol for each nested subprogram that this subprogram contains.
8616 If SET_ADDRMAP is true, record the covered ranges in the addrmap.
8617 Set *LOWPC and *HIGHPC to the lowest and highest PC values found in PDI.
6e70227d 8618
cdc07690
YQ
8619 PDI may also be a lexical block, in which case we simply search
8620 recursively for subprograms defined inside that lexical block.
bc30ff58
JB
8621 Again, this is only performed when the CU language allows this
8622 type of definitions. */
8623
8624static void
8625add_partial_subprogram (struct partial_die_info *pdi,
8626 CORE_ADDR *lowpc, CORE_ADDR *highpc,
cdc07690 8627 int set_addrmap, struct dwarf2_cu *cu)
bc30ff58 8628{
b1dc1806 8629 if (pdi->tag == DW_TAG_subprogram || pdi->tag == DW_TAG_inlined_subroutine)
bc30ff58
JB
8630 {
8631 if (pdi->has_pc_info)
8632 {
8633 if (pdi->lowpc < *lowpc)
8634 *lowpc = pdi->lowpc;
8635 if (pdi->highpc > *highpc)
8636 *highpc = pdi->highpc;
cdc07690 8637 if (set_addrmap)
5734ee8b 8638 {
5e22e966 8639 struct objfile *objfile = cu->per_objfile->objfile;
08feed99 8640 struct gdbarch *gdbarch = objfile->arch ();
3e29f34a 8641 CORE_ADDR baseaddr;
b926417a
TT
8642 CORE_ADDR this_highpc;
8643 CORE_ADDR this_lowpc;
5734ee8b 8644
b3b3bada 8645 baseaddr = objfile->text_section_offset ();
b926417a
TT
8646 this_lowpc
8647 = (gdbarch_adjust_dwarf2_addr (gdbarch,
8648 pdi->lowpc + baseaddr)
8649 - baseaddr);
8650 this_highpc
8651 = (gdbarch_adjust_dwarf2_addr (gdbarch,
8652 pdi->highpc + baseaddr)
8653 - baseaddr);
d320c2b5 8654 addrmap_set_empty (objfile->partial_symtabs->psymtabs_addrmap,
b926417a 8655 this_lowpc, this_highpc - 1,
9291a0cd 8656 cu->per_cu->v.psymtab);
5734ee8b 8657 }
481860b3
GB
8658 }
8659
8660 if (pdi->has_pc_info || (!pdi->is_external && pdi->may_be_inlined))
8661 {
bc30ff58 8662 if (!pdi->is_declaration)
e8d05480
JB
8663 /* Ignore subprogram DIEs that do not have a name, they are
8664 illegal. Do not emit a complaint at this point, we will
8665 do so when we convert this psymtab into a symtab. */
7d00ffec 8666 if (pdi->name (cu))
e8d05480 8667 add_partial_symbol (pdi, cu);
bc30ff58
JB
8668 }
8669 }
6e70227d 8670
bc30ff58
JB
8671 if (! pdi->has_children)
8672 return;
8673
0a4b0913 8674 if (cu->language == language_ada || cu->language == language_fortran)
bc30ff58
JB
8675 {
8676 pdi = pdi->die_child;
8677 while (pdi != NULL)
8678 {
52356b79 8679 pdi->fixup (cu);
bc30ff58 8680 if (pdi->tag == DW_TAG_subprogram
b1dc1806 8681 || pdi->tag == DW_TAG_inlined_subroutine
bc30ff58 8682 || pdi->tag == DW_TAG_lexical_block)
cdc07690 8683 add_partial_subprogram (pdi, lowpc, highpc, set_addrmap, cu);
bc30ff58
JB
8684 pdi = pdi->die_sibling;
8685 }
8686 }
8687}
8688
91c24f0a
DC
8689/* Read a partial die corresponding to an enumeration type. */
8690
72bf9492
DJ
8691static void
8692add_partial_enumeration (struct partial_die_info *enum_pdi,
8693 struct dwarf2_cu *cu)
91c24f0a 8694{
72bf9492 8695 struct partial_die_info *pdi;
91c24f0a 8696
7d00ffec 8697 if (enum_pdi->name (cu) != NULL)
72bf9492
DJ
8698 add_partial_symbol (enum_pdi, cu);
8699
8700 pdi = enum_pdi->die_child;
8701 while (pdi)
91c24f0a 8702 {
7d00ffec 8703 if (pdi->tag != DW_TAG_enumerator || pdi->raw_name == NULL)
b98664d3 8704 complaint (_("malformed enumerator DIE ignored"));
91c24f0a 8705 else
72bf9492
DJ
8706 add_partial_symbol (pdi, cu);
8707 pdi = pdi->die_sibling;
91c24f0a 8708 }
91c24f0a
DC
8709}
8710
6caca83c
CC
8711/* Return the initial uleb128 in the die at INFO_PTR. */
8712
8713static unsigned int
d521ce57 8714peek_abbrev_code (bfd *abfd, const gdb_byte *info_ptr)
6caca83c
CC
8715{
8716 unsigned int bytes_read;
8717
8718 return read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
8719}
8720
685af9cd
TT
8721/* Read the initial uleb128 in the die at INFO_PTR in compilation unit
8722 READER::CU. Use READER::ABBREV_TABLE to lookup any abbreviation.
8723
4bb7a0a7
DJ
8724 Return the corresponding abbrev, or NULL if the number is zero (indicating
8725 an empty DIE). In either case *BYTES_READ will be set to the length of
8726 the initial number. */
8727
8728static struct abbrev_info *
685af9cd
TT
8729peek_die_abbrev (const die_reader_specs &reader,
8730 const gdb_byte *info_ptr, unsigned int *bytes_read)
4bb7a0a7 8731{
685af9cd 8732 dwarf2_cu *cu = reader.cu;
5e22e966 8733 bfd *abfd = cu->per_objfile->objfile->obfd;
685af9cd
TT
8734 unsigned int abbrev_number
8735 = read_unsigned_leb128 (abfd, info_ptr, bytes_read);
4bb7a0a7
DJ
8736
8737 if (abbrev_number == 0)
8738 return NULL;
8739
685af9cd 8740 abbrev_info *abbrev = reader.abbrev_table->lookup_abbrev (abbrev_number);
4bb7a0a7
DJ
8741 if (!abbrev)
8742 {
422b9917 8743 error (_("Dwarf Error: Could not find abbrev number %d in %s"
9d8780f0 8744 " at offset %s [in module %s]"),
422b9917 8745 abbrev_number, cu->per_cu->is_debug_types ? "TU" : "CU",
9d8780f0 8746 sect_offset_str (cu->header.sect_off), bfd_get_filename (abfd));
4bb7a0a7
DJ
8747 }
8748
8749 return abbrev;
8750}
8751
93311388
DE
8752/* Scan the debug information for CU starting at INFO_PTR in buffer BUFFER.
8753 Returns a pointer to the end of a series of DIEs, terminated by an empty
4bb7a0a7
DJ
8754 DIE. Any children of the skipped DIEs will also be skipped. */
8755
d521ce57
TT
8756static const gdb_byte *
8757skip_children (const struct die_reader_specs *reader, const gdb_byte *info_ptr)
4bb7a0a7 8758{
4bb7a0a7
DJ
8759 while (1)
8760 {
685af9cd
TT
8761 unsigned int bytes_read;
8762 abbrev_info *abbrev = peek_die_abbrev (*reader, info_ptr, &bytes_read);
8763
4bb7a0a7
DJ
8764 if (abbrev == NULL)
8765 return info_ptr + bytes_read;
8766 else
dee91e82 8767 info_ptr = skip_one_die (reader, info_ptr + bytes_read, abbrev);
4bb7a0a7
DJ
8768 }
8769}
8770
93311388
DE
8771/* Scan the debug information for CU starting at INFO_PTR in buffer BUFFER.
8772 INFO_PTR should point just after the initial uleb128 of a DIE, and the
4bb7a0a7
DJ
8773 abbrev corresponding to that skipped uleb128 should be passed in
8774 ABBREV. Returns a pointer to this DIE's sibling, skipping any
8775 children. */
8776
d521ce57
TT
8777static const gdb_byte *
8778skip_one_die (const struct die_reader_specs *reader, const gdb_byte *info_ptr,
dee91e82 8779 struct abbrev_info *abbrev)
4bb7a0a7
DJ
8780{
8781 unsigned int bytes_read;
8782 struct attribute attr;
dee91e82
DE
8783 bfd *abfd = reader->abfd;
8784 struct dwarf2_cu *cu = reader->cu;
d521ce57 8785 const gdb_byte *buffer = reader->buffer;
f664829e 8786 const gdb_byte *buffer_end = reader->buffer_end;
4bb7a0a7
DJ
8787 unsigned int form, i;
8788
8789 for (i = 0; i < abbrev->num_attrs; i++)
8790 {
8791 /* The only abbrev we care about is DW_AT_sibling. */
8792 if (abbrev->attrs[i].name == DW_AT_sibling)
8793 {
18a8505e
AT
8794 bool ignored;
8795 read_attribute (reader, &attr, &abbrev->attrs[i], info_ptr,
8796 &ignored);
4bb7a0a7 8797 if (attr.form == DW_FORM_ref_addr)
b98664d3 8798 complaint (_("ignoring absolute DW_AT_sibling"));
4bb7a0a7 8799 else
b9502d3f 8800 {
0826b30a 8801 sect_offset off = attr.get_ref_die_offset ();
9c541725 8802 const gdb_byte *sibling_ptr = buffer + to_underlying (off);
b9502d3f
WN
8803
8804 if (sibling_ptr < info_ptr)
b98664d3 8805 complaint (_("DW_AT_sibling points backwards"));
22869d73 8806 else if (sibling_ptr > reader->buffer_end)
a0194fa8 8807 reader->die_section->overflow_complaint ();
b9502d3f
WN
8808 else
8809 return sibling_ptr;
8810 }
4bb7a0a7
DJ
8811 }
8812
8813 /* If it isn't DW_AT_sibling, skip this attribute. */
8814 form = abbrev->attrs[i].form;
8815 skip_attribute:
8816 switch (form)
8817 {
4bb7a0a7 8818 case DW_FORM_ref_addr:
ae411497
TT
8819 /* In DWARF 2, DW_FORM_ref_addr is address sized; in DWARF 3
8820 and later it is offset sized. */
8821 if (cu->header.version == 2)
8822 info_ptr += cu->header.addr_size;
8823 else
8824 info_ptr += cu->header.offset_size;
8825 break;
36586728
TT
8826 case DW_FORM_GNU_ref_alt:
8827 info_ptr += cu->header.offset_size;
8828 break;
ae411497 8829 case DW_FORM_addr:
4bb7a0a7
DJ
8830 info_ptr += cu->header.addr_size;
8831 break;
8832 case DW_FORM_data1:
8833 case DW_FORM_ref1:
8834 case DW_FORM_flag:
8fe0f950 8835 case DW_FORM_strx1:
4bb7a0a7
DJ
8836 info_ptr += 1;
8837 break;
2dc7f7b3 8838 case DW_FORM_flag_present:
43988095 8839 case DW_FORM_implicit_const:
2dc7f7b3 8840 break;
4bb7a0a7
DJ
8841 case DW_FORM_data2:
8842 case DW_FORM_ref2:
8fe0f950 8843 case DW_FORM_strx2:
4bb7a0a7
DJ
8844 info_ptr += 2;
8845 break;
8fe0f950
AT
8846 case DW_FORM_strx3:
8847 info_ptr += 3;
8848 break;
4bb7a0a7
DJ
8849 case DW_FORM_data4:
8850 case DW_FORM_ref4:
8fe0f950 8851 case DW_FORM_strx4:
4bb7a0a7
DJ
8852 info_ptr += 4;
8853 break;
8854 case DW_FORM_data8:
8855 case DW_FORM_ref8:
55f1336d 8856 case DW_FORM_ref_sig8:
4bb7a0a7
DJ
8857 info_ptr += 8;
8858 break;
0224619f
JK
8859 case DW_FORM_data16:
8860 info_ptr += 16;
8861 break;
4bb7a0a7 8862 case DW_FORM_string:
9b1c24c8 8863 read_direct_string (abfd, info_ptr, &bytes_read);
4bb7a0a7
DJ
8864 info_ptr += bytes_read;
8865 break;
2dc7f7b3 8866 case DW_FORM_sec_offset:
4bb7a0a7 8867 case DW_FORM_strp:
36586728 8868 case DW_FORM_GNU_strp_alt:
4bb7a0a7
DJ
8869 info_ptr += cu->header.offset_size;
8870 break;
2dc7f7b3 8871 case DW_FORM_exprloc:
4bb7a0a7
DJ
8872 case DW_FORM_block:
8873 info_ptr += read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
8874 info_ptr += bytes_read;
8875 break;
8876 case DW_FORM_block1:
8877 info_ptr += 1 + read_1_byte (abfd, info_ptr);
8878 break;
8879 case DW_FORM_block2:
8880 info_ptr += 2 + read_2_bytes (abfd, info_ptr);
8881 break;
8882 case DW_FORM_block4:
8883 info_ptr += 4 + read_4_bytes (abfd, info_ptr);
8884 break;
336d760d 8885 case DW_FORM_addrx:
cf532bd1 8886 case DW_FORM_strx:
4bb7a0a7
DJ
8887 case DW_FORM_sdata:
8888 case DW_FORM_udata:
8889 case DW_FORM_ref_udata:
3019eac3
DE
8890 case DW_FORM_GNU_addr_index:
8891 case DW_FORM_GNU_str_index:
18a8505e 8892 case DW_FORM_rnglistx:
41144253 8893 case DW_FORM_loclistx:
d521ce57 8894 info_ptr = safe_skip_leb128 (info_ptr, buffer_end);
4bb7a0a7
DJ
8895 break;
8896 case DW_FORM_indirect:
8897 form = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
8898 info_ptr += bytes_read;
8899 /* We need to continue parsing from here, so just go back to
8900 the top. */
8901 goto skip_attribute;
8902
8903 default:
3e43a32a
MS
8904 error (_("Dwarf Error: Cannot handle %s "
8905 "in DWARF reader [in module %s]"),
4bb7a0a7
DJ
8906 dwarf_form_name (form),
8907 bfd_get_filename (abfd));
8908 }
8909 }
8910
8911 if (abbrev->has_children)
dee91e82 8912 return skip_children (reader, info_ptr);
4bb7a0a7
DJ
8913 else
8914 return info_ptr;
8915}
8916
93311388 8917/* Locate ORIG_PDI's sibling.
dee91e82 8918 INFO_PTR should point to the start of the next DIE after ORIG_PDI. */
91c24f0a 8919
d521ce57 8920static const gdb_byte *
dee91e82
DE
8921locate_pdi_sibling (const struct die_reader_specs *reader,
8922 struct partial_die_info *orig_pdi,
d521ce57 8923 const gdb_byte *info_ptr)
91c24f0a
DC
8924{
8925 /* Do we know the sibling already? */
72bf9492 8926
91c24f0a
DC
8927 if (orig_pdi->sibling)
8928 return orig_pdi->sibling;
8929
8930 /* Are there any children to deal with? */
8931
8932 if (!orig_pdi->has_children)
8933 return info_ptr;
8934
4bb7a0a7 8935 /* Skip the children the long way. */
91c24f0a 8936
dee91e82 8937 return skip_children (reader, info_ptr);
91c24f0a
DC
8938}
8939
257e7a09 8940/* Expand this partial symbol table into a full symbol table. SELF is
442e4d9c 8941 not NULL. */
c906108c 8942
891813be
TT
8943void
8944dwarf2_psymtab::read_symtab (struct objfile *objfile)
c906108c 8945{
976ca316 8946 dwarf2_per_objfile *per_objfile = get_dwarf2_per_objfile (objfile);
ed2dc618 8947
976ca316 8948 gdb_assert (!per_objfile->symtab_set_p (per_cu_data));
af758d11 8949
077cbab2
TT
8950 /* If this psymtab is constructed from a debug-only objfile, the
8951 has_section_at_zero flag will not necessarily be correct. We
8952 can get the correct value for this flag by looking at the data
8953 associated with the (presumably stripped) associated objfile. */
8954 if (objfile->separate_debug_objfile_backlink)
c906108c 8955 {
976ca316 8956 dwarf2_per_objfile *per_objfile_backlink
077cbab2 8957 = get_dwarf2_per_objfile (objfile->separate_debug_objfile_backlink);
c906108c 8958
976ca316
SM
8959 per_objfile->per_bfd->has_section_at_zero
8960 = per_objfile_backlink->per_bfd->has_section_at_zero;
077cbab2 8961 }
98bfdba5 8962
8566b89b 8963 expand_psymtab (objfile);
95554aad 8964
976ca316 8965 process_cu_includes (per_objfile);
c906108c 8966}
9cdd5dbd
DE
8967\f
8968/* Reading in full CUs. */
c906108c 8969
10b3939b
DJ
8970/* Add PER_CU to the queue. */
8971
8972static void
120ce1b5
SM
8973queue_comp_unit (dwarf2_per_cu_data *per_cu,
8974 dwarf2_per_objfile *per_objfile,
95554aad 8975 enum language pretend_language)
10b3939b 8976{
10b3939b 8977 per_cu->queued = 1;
120ce1b5 8978 per_cu->per_bfd->queue.emplace (per_cu, per_objfile, pretend_language);
10b3939b
DJ
8979}
8980
89e63ee4
DE
8981/* If PER_CU is not yet queued, add it to the queue.
8982 If DEPENDENT_CU is non-NULL, it has a reference to PER_CU so add a
8983 dependency.
0907af0c 8984 The result is non-zero if PER_CU was queued, otherwise the result is zero
69d751e3
DE
8985 meaning either PER_CU is already queued or it is already loaded.
8986
8987 N.B. There is an invariant here that if a CU is queued then it is loaded.
8988 The caller is required to load PER_CU if we return non-zero. */
0907af0c
DE
8989
8990static int
89e63ee4 8991maybe_queue_comp_unit (struct dwarf2_cu *dependent_cu,
120ce1b5
SM
8992 dwarf2_per_cu_data *per_cu,
8993 dwarf2_per_objfile *per_objfile,
0907af0c
DE
8994 enum language pretend_language)
8995{
8996 /* We may arrive here during partial symbol reading, if we need full
8997 DIEs to process an unusual case (e.g. template arguments). Do
8998 not queue PER_CU, just tell our caller to load its DIEs. */
1859c670 8999 if (per_cu->per_bfd->reading_partial_symbols)
0907af0c 9000 {
7188ed02
SM
9001 dwarf2_cu *cu = per_objfile->get_cu (per_cu);
9002
9003 if (cu == NULL || cu->dies == NULL)
0907af0c
DE
9004 return 1;
9005 return 0;
9006 }
9007
9008 /* Mark the dependence relation so that we don't flush PER_CU
9009 too early. */
89e63ee4
DE
9010 if (dependent_cu != NULL)
9011 dwarf2_add_dependence (dependent_cu, per_cu);
0907af0c
DE
9012
9013 /* If it's already on the queue, we have nothing to do. */
9014 if (per_cu->queued)
9015 return 0;
9016
9017 /* If the compilation unit is already loaded, just mark it as
9018 used. */
7188ed02
SM
9019 dwarf2_cu *cu = per_objfile->get_cu (per_cu);
9020 if (cu != nullptr)
0907af0c 9021 {
7188ed02 9022 cu->last_used = 0;
0907af0c
DE
9023 return 0;
9024 }
9025
9026 /* Add it to the queue. */
120ce1b5 9027 queue_comp_unit (per_cu, per_objfile, pretend_language);
0907af0c
DE
9028
9029 return 1;
9030}
9031
10b3939b
DJ
9032/* Process the queue. */
9033
9034static void
976ca316 9035process_queue (dwarf2_per_objfile *per_objfile)
10b3939b 9036{
b4f54984 9037 if (dwarf_read_debug)
45cfd468
DE
9038 {
9039 fprintf_unfiltered (gdb_stdlog,
9040 "Expanding one or more symtabs of objfile %s ...\n",
976ca316 9041 objfile_name (per_objfile->objfile));
45cfd468
DE
9042 }
9043
03dd20cc
DJ
9044 /* The queue starts out with one item, but following a DIE reference
9045 may load a new CU, adding it to the end of the queue. */
976ca316 9046 while (!per_objfile->per_bfd->queue.empty ())
10b3939b 9047 {
976ca316 9048 dwarf2_queue_item &item = per_objfile->per_bfd->queue.front ();
7188ed02 9049 dwarf2_per_cu_data *per_cu = item.per_cu;
39856def 9050
976ca316 9051 if (!per_objfile->symtab_set_p (per_cu))
f4dc4d17 9052 {
976ca316 9053 dwarf2_cu *cu = per_objfile->get_cu (per_cu);
f4dc4d17 9054
7188ed02
SM
9055 /* Skip dummy CUs. */
9056 if (cu != nullptr)
73be47f5 9057 {
7188ed02
SM
9058 unsigned int debug_print_threshold;
9059 char buf[100];
9060
9061 if (per_cu->is_debug_types)
9062 {
9063 struct signatured_type *sig_type =
9064 (struct signatured_type *) per_cu;
9065
9066 sprintf (buf, "TU %s at offset %s",
9067 hex_string (sig_type->signature),
9068 sect_offset_str (per_cu->sect_off));
9069 /* There can be 100s of TUs.
9070 Only print them in verbose mode. */
9071 debug_print_threshold = 2;
9072 }
9073 else
9074 {
9075 sprintf (buf, "CU at offset %s",
9076 sect_offset_str (per_cu->sect_off));
9077 debug_print_threshold = 1;
9078 }
247f5c4f 9079
7188ed02
SM
9080 if (dwarf_read_debug >= debug_print_threshold)
9081 fprintf_unfiltered (gdb_stdlog, "Expanding symtab of %s\n", buf);
f4dc4d17 9082
7188ed02
SM
9083 if (per_cu->is_debug_types)
9084 process_full_type_unit (cu, item.pretend_language);
9085 else
9086 process_full_comp_unit (cu, item.pretend_language);
f4dc4d17 9087
7188ed02
SM
9088 if (dwarf_read_debug >= debug_print_threshold)
9089 fprintf_unfiltered (gdb_stdlog, "Done expanding %s\n", buf);
9090 }
f4dc4d17 9091 }
10b3939b 9092
7188ed02 9093 per_cu->queued = 0;
976ca316 9094 per_objfile->per_bfd->queue.pop ();
10b3939b
DJ
9095 }
9096
b4f54984 9097 if (dwarf_read_debug)
45cfd468
DE
9098 {
9099 fprintf_unfiltered (gdb_stdlog, "Done expanding symtabs of %s.\n",
976ca316 9100 objfile_name (per_objfile->objfile));
45cfd468 9101 }
10b3939b
DJ
9102}
9103
10b3939b
DJ
9104/* Read in full symbols for PST, and anything it depends on. */
9105
8566b89b
TT
9106void
9107dwarf2_psymtab::expand_psymtab (struct objfile *objfile)
c906108c 9108{
af758d11 9109 gdb_assert (!readin_p (objfile));
95554aad 9110
17ee85fc
TT
9111 dwarf2_per_objfile *per_objfile = get_dwarf2_per_objfile (objfile);
9112 free_cached_comp_units freer (per_objfile);
48993951 9113 expand_dependencies (objfile);
aaa75496 9114
97a1449a 9115 dw2_do_instantiate_symtab (per_cu_data, per_objfile, false);
5717c425 9116 gdb_assert (get_compunit_symtab (objfile) != nullptr);
10b3939b
DJ
9117}
9118
af758d11
SM
9119/* See psympriv.h. */
9120
9121bool
9122dwarf2_psymtab::readin_p (struct objfile *objfile) const
9123{
9124 dwarf2_per_objfile *per_objfile = get_dwarf2_per_objfile (objfile);
9125 return per_objfile->symtab_set_p (per_cu_data);
9126}
9127
9128/* See psympriv.h. */
9129
9130compunit_symtab *
9131dwarf2_psymtab::get_compunit_symtab (struct objfile *objfile) const
9132{
9133 dwarf2_per_objfile *per_objfile = get_dwarf2_per_objfile (objfile);
9134 return per_objfile->get_symtab (per_cu_data);
9135}
9136
dee91e82
DE
9137/* Trivial hash function for die_info: the hash value of a DIE
9138 is its offset in .debug_info for this objfile. */
10b3939b 9139
dee91e82
DE
9140static hashval_t
9141die_hash (const void *item)
10b3939b 9142{
9a3c8263 9143 const struct die_info *die = (const struct die_info *) item;
6502dd73 9144
9c541725 9145 return to_underlying (die->sect_off);
dee91e82 9146}
63d06c5c 9147
dee91e82
DE
9148/* Trivial comparison function for die_info structures: two DIEs
9149 are equal if they have the same offset. */
98bfdba5 9150
dee91e82
DE
9151static int
9152die_eq (const void *item_lhs, const void *item_rhs)
9153{
9a3c8263
SM
9154 const struct die_info *die_lhs = (const struct die_info *) item_lhs;
9155 const struct die_info *die_rhs = (const struct die_info *) item_rhs;
c906108c 9156
9c541725 9157 return die_lhs->sect_off == die_rhs->sect_off;
dee91e82 9158}
c906108c 9159
c0ab21c2 9160/* Load the DIEs associated with PER_CU into memory. */
c906108c 9161
dee91e82 9162static void
ab432490
SM
9163load_full_comp_unit (dwarf2_per_cu_data *this_cu,
9164 dwarf2_per_objfile *per_objfile,
c0ab21c2
TT
9165 bool skip_partial,
9166 enum language pretend_language)
dee91e82 9167{
c0ab21c2
TT
9168 gdb_assert (! this_cu->is_debug_types);
9169
7188ed02
SM
9170 dwarf2_cu *existing_cu = per_objfile->get_cu (this_cu);
9171 cutu_reader reader (this_cu, per_objfile, NULL, existing_cu, skip_partial);
c0ab21c2
TT
9172 if (reader.dummy_p)
9173 return;
9174
9175 struct dwarf2_cu *cu = reader.cu;
9176 const gdb_byte *info_ptr = reader.info_ptr;
6caca83c 9177
dee91e82
DE
9178 gdb_assert (cu->die_hash == NULL);
9179 cu->die_hash =
9180 htab_create_alloc_ex (cu->header.length / 12,
9181 die_hash,
9182 die_eq,
9183 NULL,
9184 &cu->comp_unit_obstack,
9185 hashtab_obstack_allocate,
9186 dummy_obstack_deallocate);
e142c38c 9187
3e225074 9188 if (reader.comp_unit_die->has_children)
c0ab21c2
TT
9189 reader.comp_unit_die->child
9190 = read_die_and_siblings (&reader, reader.info_ptr,
9191 &info_ptr, reader.comp_unit_die);
9192 cu->dies = reader.comp_unit_die;
dee91e82 9193 /* comp_unit_die is not stored in die_hash, no need. */
10b3939b
DJ
9194
9195 /* We try not to read any attributes in this function, because not
9cdd5dbd 9196 all CUs needed for references have been loaded yet, and symbol
10b3939b 9197 table processing isn't initialized. But we have to set the CU language,
dee91e82
DE
9198 or we won't be able to build types correctly.
9199 Similarly, if we do not read the producer, we can not apply
9200 producer-specific interpretation. */
c0ab21c2 9201 prepare_one_comp_unit (cu, cu->dies, pretend_language);
6751ebae
TT
9202
9203 reader.keep ();
10b3939b
DJ
9204}
9205
3da10d80
KS
9206/* Add a DIE to the delayed physname list. */
9207
9208static void
9209add_to_method_list (struct type *type, int fnfield_index, int index,
9210 const char *name, struct die_info *die,
9211 struct dwarf2_cu *cu)
9212{
9213 struct delayed_method_info mi;
9214 mi.type = type;
9215 mi.fnfield_index = fnfield_index;
9216 mi.index = index;
9217 mi.name = name;
9218 mi.die = die;
c89b44cd 9219 cu->method_list.push_back (mi);
3da10d80
KS
9220}
9221
3693fdb3
PA
9222/* Check whether [PHYSNAME, PHYSNAME+LEN) ends with a modifier like
9223 "const" / "volatile". If so, decrements LEN by the length of the
9224 modifier and return true. Otherwise return false. */
9225
9226template<size_t N>
9227static bool
9228check_modifier (const char *physname, size_t &len, const char (&mod)[N])
9229{
9230 size_t mod_len = sizeof (mod) - 1;
9231 if (len > mod_len && startswith (physname + (len - mod_len), mod))
9232 {
9233 len -= mod_len;
9234 return true;
9235 }
9236 return false;
9237}
9238
3da10d80
KS
9239/* Compute the physnames of any methods on the CU's method list.
9240
9241 The computation of method physnames is delayed in order to avoid the
9242 (bad) condition that one of the method's formal parameters is of an as yet
9243 incomplete type. */
9244
9245static void
9246compute_delayed_physnames (struct dwarf2_cu *cu)
9247{
3693fdb3 9248 /* Only C++ delays computing physnames. */
c89b44cd 9249 if (cu->method_list.empty ())
3693fdb3
PA
9250 return;
9251 gdb_assert (cu->language == language_cplus);
9252
52941706 9253 for (const delayed_method_info &mi : cu->method_list)
3da10d80 9254 {
1d06ead6 9255 const char *physname;
3da10d80 9256 struct fn_fieldlist *fn_flp
c89b44cd
TT
9257 = &TYPE_FN_FIELDLIST (mi.type, mi.fnfield_index);
9258 physname = dwarf2_physname (mi.name, mi.die, cu);
9259 TYPE_FN_FIELD_PHYSNAME (fn_flp->fn_fields, mi.index)
005e54bb 9260 = physname ? physname : "";
3693fdb3
PA
9261
9262 /* Since there's no tag to indicate whether a method is a
9263 const/volatile overload, extract that information out of the
9264 demangled name. */
9265 if (physname != NULL)
9266 {
9267 size_t len = strlen (physname);
9268
9269 while (1)
9270 {
9271 if (physname[len] == ')') /* shortcut */
9272 break;
9273 else if (check_modifier (physname, len, " const"))
c89b44cd 9274 TYPE_FN_FIELD_CONST (fn_flp->fn_fields, mi.index) = 1;
3693fdb3 9275 else if (check_modifier (physname, len, " volatile"))
c89b44cd 9276 TYPE_FN_FIELD_VOLATILE (fn_flp->fn_fields, mi.index) = 1;
3693fdb3
PA
9277 else
9278 break;
9279 }
9280 }
3da10d80 9281 }
c89b44cd
TT
9282
9283 /* The list is no longer needed. */
9284 cu->method_list.clear ();
3da10d80
KS
9285}
9286
a766d390
DE
9287/* Go objects should be embedded in a DW_TAG_module DIE,
9288 and it's not clear if/how imported objects will appear.
9289 To keep Go support simple until that's worked out,
9290 go back through what we've read and create something usable.
9291 We could do this while processing each DIE, and feels kinda cleaner,
9292 but that way is more invasive.
9293 This is to, for example, allow the user to type "p var" or "b main"
9294 without having to specify the package name, and allow lookups
9295 of module.object to work in contexts that use the expression
9296 parser. */
9297
9298static void
9299fixup_go_packaging (struct dwarf2_cu *cu)
9300{
421d1616 9301 gdb::unique_xmalloc_ptr<char> package_name;
a766d390
DE
9302 struct pending *list;
9303 int i;
9304
c24bdb02 9305 for (list = *cu->get_builder ()->get_global_symbols ();
804d2729
TT
9306 list != NULL;
9307 list = list->next)
a766d390
DE
9308 {
9309 for (i = 0; i < list->nsyms; ++i)
9310 {
9311 struct symbol *sym = list->symbol[i];
9312
c1b5c1eb 9313 if (sym->language () == language_go
a766d390
DE
9314 && SYMBOL_CLASS (sym) == LOC_BLOCK)
9315 {
421d1616
TT
9316 gdb::unique_xmalloc_ptr<char> this_package_name
9317 (go_symbol_package_name (sym));
a766d390
DE
9318
9319 if (this_package_name == NULL)
9320 continue;
9321 if (package_name == NULL)
421d1616 9322 package_name = std::move (this_package_name);
a766d390
DE
9323 else
9324 {
5e22e966 9325 struct objfile *objfile = cu->per_objfile->objfile;
421d1616 9326 if (strcmp (package_name.get (), this_package_name.get ()) != 0)
b98664d3 9327 complaint (_("Symtab %s has objects from two different Go packages: %s and %s"),
08be3fe3
DE
9328 (symbol_symtab (sym) != NULL
9329 ? symtab_to_filename_for_display
9330 (symbol_symtab (sym))
e3b94546 9331 : objfile_name (objfile)),
421d1616 9332 this_package_name.get (), package_name.get ());
a766d390
DE
9333 }
9334 }
9335 }
9336 }
9337
9338 if (package_name != NULL)
9339 {
5e22e966 9340 struct objfile *objfile = cu->per_objfile->objfile;
be1e3d3e 9341 const char *saved_package_name = objfile->intern (package_name.get ());
19f392bc
UW
9342 struct type *type = init_type (objfile, TYPE_CODE_MODULE, 0,
9343 saved_package_name);
a766d390
DE
9344 struct symbol *sym;
9345
8c14c3a3 9346 sym = new (&objfile->objfile_obstack) symbol;
d3ecddab 9347 sym->set_language (language_go, &objfile->objfile_obstack);
4d4eaa30 9348 sym->compute_and_set_names (saved_package_name, false, objfile->per_bfd);
a766d390
DE
9349 /* This is not VAR_DOMAIN because we want a way to ensure a lookup of,
9350 e.g., "main" finds the "main" module and not C's main(). */
9351 SYMBOL_DOMAIN (sym) = STRUCT_DOMAIN;
f1e6e072 9352 SYMBOL_ACLASS_INDEX (sym) = LOC_TYPEDEF;
a766d390
DE
9353 SYMBOL_TYPE (sym) = type;
9354
c24bdb02 9355 add_symbol_to_list (sym, cu->get_builder ()->get_global_symbols ());
a766d390
DE
9356 }
9357}
9358
c9317f21
TT
9359/* Allocate a fully-qualified name consisting of the two parts on the
9360 obstack. */
9361
9362static const char *
9363rust_fully_qualify (struct obstack *obstack, const char *p1, const char *p2)
9364{
9365 return obconcat (obstack, p1, "::", p2, (char *) NULL);
9366}
9367
9c6a1327
TT
9368/* A helper that allocates a variant part to attach to a Rust enum
9369 type. OBSTACK is where the results should be allocated. TYPE is
9370 the type we're processing. DISCRIMINANT_INDEX is the index of the
9371 discriminant. It must be the index of one of the fields of TYPE.
9372 DEFAULT_INDEX is the index of the default field; or -1 if there is
9373 no default. RANGES is indexed by "effective" field number (the
9374 field index, but omitting the discriminant and default fields) and
9375 must hold the discriminant values used by the variants. Note that
9376 RANGES must have a lifetime at least as long as OBSTACK -- either
9377 already allocated on it, or static. */
c9317f21 9378
9c6a1327
TT
9379static void
9380alloc_rust_variant (struct obstack *obstack, struct type *type,
9381 int discriminant_index, int default_index,
9382 gdb::array_view<discriminant_range> ranges)
9383{
9384 /* When DISCRIMINANT_INDEX == -1, we have a univariant enum. Those
9385 must be handled by the caller. */
9386 gdb_assert (discriminant_index >= 0
1f704f76 9387 && discriminant_index < type->num_fields ());
c9317f21 9388 gdb_assert (default_index == -1
1f704f76 9389 || (default_index >= 0 && default_index < type->num_fields ()));
c9317f21 9390
9c6a1327 9391 /* We have one variant for each non-discriminant field. */
1f704f76 9392 int n_variants = type->num_fields () - 1;
c9317f21 9393
9c6a1327
TT
9394 variant *variants = new (obstack) variant[n_variants];
9395 int var_idx = 0;
9396 int range_idx = 0;
1f704f76 9397 for (int i = 0; i < type->num_fields (); ++i)
9c6a1327
TT
9398 {
9399 if (i == discriminant_index)
9400 continue;
c9317f21 9401
9c6a1327
TT
9402 variants[var_idx].first_field = i;
9403 variants[var_idx].last_field = i + 1;
9404
9405 /* The default field does not need a range, but other fields do.
9406 We skipped the discriminant above. */
9407 if (i != default_index)
9408 {
9409 variants[var_idx].discriminants = ranges.slice (range_idx, 1);
9410 ++range_idx;
9411 }
c9317f21 9412
9c6a1327
TT
9413 ++var_idx;
9414 }
9415
9416 gdb_assert (range_idx == ranges.size ());
9417 gdb_assert (var_idx == n_variants);
9418
9419 variant_part *part = new (obstack) variant_part;
9420 part->discriminant_index = discriminant_index;
9421 part->is_unsigned = TYPE_UNSIGNED (TYPE_FIELD_TYPE (type,
9422 discriminant_index));
9423 part->variants = gdb::array_view<variant> (variants, n_variants);
9424
9425 void *storage = obstack_alloc (obstack, sizeof (gdb::array_view<variant_part>));
9426 gdb::array_view<variant_part> *prop_value
9427 = new (storage) gdb::array_view<variant_part> (part, 1);
c9317f21 9428
9c6a1327
TT
9429 struct dynamic_prop prop;
9430 prop.kind = PROP_VARIANT_PARTS;
9431 prop.data.variant_parts = prop_value;
9432
5c54719c 9433 type->add_dyn_prop (DYN_PROP_VARIANT_PARTS, prop);
c9317f21
TT
9434}
9435
9436/* Some versions of rustc emitted enums in an unusual way.
9437
9438 Ordinary enums were emitted as unions. The first element of each
9439 structure in the union was named "RUST$ENUM$DISR". This element
9440 held the discriminant.
9441
9442 These versions of Rust also implemented the "non-zero"
9443 optimization. When the enum had two values, and one is empty and
9444 the other holds a pointer that cannot be zero, the pointer is used
9445 as the discriminant, with a zero value meaning the empty variant.
9446 Here, the union's first member is of the form
9447 RUST$ENCODED$ENUM$<fieldno>$<fieldno>$...$<variantname>
9448 where the fieldnos are the indices of the fields that should be
9449 traversed in order to find the field (which may be several fields deep)
9450 and the variantname is the name of the variant of the case when the
9451 field is zero.
9452
9453 This function recognizes whether TYPE is of one of these forms,
9454 and, if so, smashes it to be a variant type. */
9455
9456static void
9457quirk_rust_enum (struct type *type, struct objfile *objfile)
9458{
78134374 9459 gdb_assert (type->code () == TYPE_CODE_UNION);
c9317f21
TT
9460
9461 /* We don't need to deal with empty enums. */
1f704f76 9462 if (type->num_fields () == 0)
c9317f21
TT
9463 return;
9464
9465#define RUST_ENUM_PREFIX "RUST$ENCODED$ENUM$"
1f704f76 9466 if (type->num_fields () == 1
c9317f21
TT
9467 && startswith (TYPE_FIELD_NAME (type, 0), RUST_ENUM_PREFIX))
9468 {
9469 const char *name = TYPE_FIELD_NAME (type, 0) + strlen (RUST_ENUM_PREFIX);
9470
9471 /* Decode the field name to find the offset of the
9472 discriminant. */
9473 ULONGEST bit_offset = 0;
9474 struct type *field_type = TYPE_FIELD_TYPE (type, 0);
9475 while (name[0] >= '0' && name[0] <= '9')
9476 {
9477 char *tail;
9478 unsigned long index = strtoul (name, &tail, 10);
9479 name = tail;
9480 if (*name != '$'
1f704f76 9481 || index >= field_type->num_fields ()
c9317f21
TT
9482 || (TYPE_FIELD_LOC_KIND (field_type, index)
9483 != FIELD_LOC_KIND_BITPOS))
9484 {
b98664d3 9485 complaint (_("Could not parse Rust enum encoding string \"%s\""
c9317f21
TT
9486 "[in module %s]"),
9487 TYPE_FIELD_NAME (type, 0),
9488 objfile_name (objfile));
9489 return;
9490 }
9491 ++name;
9492
9493 bit_offset += TYPE_FIELD_BITPOS (field_type, index);
9494 field_type = TYPE_FIELD_TYPE (field_type, index);
9495 }
9496
9c6a1327
TT
9497 /* Smash this type to be a structure type. We have to do this
9498 because the type has already been recorded. */
67607e24 9499 type->set_code (TYPE_CODE_STRUCT);
5e33d5f4 9500 type->set_num_fields (3);
9c6a1327 9501 /* Save the field we care about. */
ceacbf6e 9502 struct field saved_field = type->field (0);
3cabb6b0
SM
9503 type->set_fields
9504 ((struct field *) TYPE_ZALLOC (type, 3 * sizeof (struct field)));
c9317f21 9505
9c6a1327
TT
9506 /* Put the discriminant at index 0. */
9507 TYPE_FIELD_TYPE (type, 0) = field_type;
9508 TYPE_FIELD_ARTIFICIAL (type, 0) = 1;
9509 TYPE_FIELD_NAME (type, 0) = "<<discriminant>>";
ceacbf6e 9510 SET_FIELD_BITPOS (type->field (0), bit_offset);
c9317f21
TT
9511
9512 /* The order of fields doesn't really matter, so put the real
9513 field at index 1 and the data-less field at index 2. */
ceacbf6e 9514 type->field (1) = saved_field;
9c6a1327 9515 TYPE_FIELD_NAME (type, 1)
7d93a1e0 9516 = rust_last_path_segment (TYPE_FIELD_TYPE (type, 1)->name ());
d0e39ea2 9517 TYPE_FIELD_TYPE (type, 1)->set_name
7d93a1e0 9518 (rust_fully_qualify (&objfile->objfile_obstack, type->name (),
d0e39ea2 9519 TYPE_FIELD_NAME (type, 1)));
c9317f21
TT
9520
9521 const char *dataless_name
7d93a1e0 9522 = rust_fully_qualify (&objfile->objfile_obstack, type->name (),
c9317f21
TT
9523 name);
9524 struct type *dataless_type = init_type (objfile, TYPE_CODE_VOID, 0,
9525 dataless_name);
9c6a1327 9526 TYPE_FIELD_TYPE (type, 2) = dataless_type;
c9317f21
TT
9527 /* NAME points into the original discriminant name, which
9528 already has the correct lifetime. */
9c6a1327 9529 TYPE_FIELD_NAME (type, 2) = name;
ceacbf6e 9530 SET_FIELD_BITPOS (type->field (2), 0);
c9317f21 9531
9c6a1327
TT
9532 /* Indicate that this is a variant type. */
9533 static discriminant_range ranges[1] = { { 0, 0 } };
9534 alloc_rust_variant (&objfile->objfile_obstack, type, 0, 1, ranges);
c9317f21 9535 }
77c2dba3
TT
9536 /* A union with a single anonymous field is probably an old-style
9537 univariant enum. */
1f704f76 9538 else if (type->num_fields () == 1 && streq (TYPE_FIELD_NAME (type, 0), ""))
c9317f21 9539 {
c9317f21
TT
9540 /* Smash this type to be a structure type. We have to do this
9541 because the type has already been recorded. */
67607e24 9542 type->set_code (TYPE_CODE_STRUCT);
c9317f21 9543
9c6a1327 9544 struct type *field_type = TYPE_FIELD_TYPE (type, 0);
c9317f21 9545 const char *variant_name
7d93a1e0 9546 = rust_last_path_segment (field_type->name ());
9c6a1327 9547 TYPE_FIELD_NAME (type, 0) = variant_name;
d0e39ea2
SM
9548 field_type->set_name
9549 (rust_fully_qualify (&objfile->objfile_obstack,
7d93a1e0 9550 type->name (), variant_name));
c9317f21
TT
9551 }
9552 else
9553 {
9554 struct type *disr_type = nullptr;
1f704f76 9555 for (int i = 0; i < type->num_fields (); ++i)
c9317f21
TT
9556 {
9557 disr_type = TYPE_FIELD_TYPE (type, i);
9558
78134374 9559 if (disr_type->code () != TYPE_CODE_STRUCT)
a037790e
TT
9560 {
9561 /* All fields of a true enum will be structs. */
9562 return;
9563 }
1f704f76 9564 else if (disr_type->num_fields () == 0)
c9317f21
TT
9565 {
9566 /* Could be data-less variant, so keep going. */
a037790e 9567 disr_type = nullptr;
c9317f21
TT
9568 }
9569 else if (strcmp (TYPE_FIELD_NAME (disr_type, 0),
9570 "RUST$ENUM$DISR") != 0)
9571 {
9572 /* Not a Rust enum. */
9573 return;
9574 }
9575 else
9576 {
9577 /* Found one. */
9578 break;
9579 }
9580 }
9581
9582 /* If we got here without a discriminant, then it's probably
9583 just a union. */
9584 if (disr_type == nullptr)
9585 return;
9586
9587 /* Smash this type to be a structure type. We have to do this
9588 because the type has already been recorded. */
67607e24 9589 type->set_code (TYPE_CODE_STRUCT);
c9317f21 9590
9c6a1327 9591 /* Make space for the discriminant field. */
ceacbf6e 9592 struct field *disr_field = &disr_type->field (0);
9c6a1327 9593 field *new_fields
1f704f76 9594 = (struct field *) TYPE_ZALLOC (type, ((type->num_fields () + 1)
9c6a1327 9595 * sizeof (struct field)));
80fc5e77 9596 memcpy (new_fields + 1, type->fields (),
1f704f76 9597 type->num_fields () * sizeof (struct field));
3cabb6b0 9598 type->set_fields (new_fields);
1f704f76 9599 type->set_num_fields (type->num_fields () + 1);
c9317f21
TT
9600
9601 /* Install the discriminant at index 0 in the union. */
ceacbf6e 9602 type->field (0) = *disr_field;
9c6a1327
TT
9603 TYPE_FIELD_ARTIFICIAL (type, 0) = 1;
9604 TYPE_FIELD_NAME (type, 0) = "<<discriminant>>";
c9317f21
TT
9605
9606 /* We need a way to find the correct discriminant given a
9607 variant name. For convenience we build a map here. */
9608 struct type *enum_type = FIELD_TYPE (*disr_field);
9609 std::unordered_map<std::string, ULONGEST> discriminant_map;
1f704f76 9610 for (int i = 0; i < enum_type->num_fields (); ++i)
c9317f21
TT
9611 {
9612 if (TYPE_FIELD_LOC_KIND (enum_type, i) == FIELD_LOC_KIND_ENUMVAL)
9613 {
9614 const char *name
9615 = rust_last_path_segment (TYPE_FIELD_NAME (enum_type, i));
9616 discriminant_map[name] = TYPE_FIELD_ENUMVAL (enum_type, i);
9617 }
9618 }
9619
1f704f76 9620 int n_fields = type->num_fields ();
9c6a1327
TT
9621 /* We don't need a range entry for the discriminant, but we do
9622 need one for every other field, as there is no default
9623 variant. */
9624 discriminant_range *ranges = XOBNEWVEC (&objfile->objfile_obstack,
9625 discriminant_range,
9626 n_fields - 1);
c9317f21
TT
9627 /* Skip the discriminant here. */
9628 for (int i = 1; i < n_fields; ++i)
9629 {
9630 /* Find the final word in the name of this variant's type.
9631 That name can be used to look up the correct
9632 discriminant. */
9633 const char *variant_name
7d93a1e0 9634 = rust_last_path_segment (TYPE_FIELD_TYPE (type, i)->name ());
c9317f21
TT
9635
9636 auto iter = discriminant_map.find (variant_name);
9637 if (iter != discriminant_map.end ())
9c6a1327
TT
9638 {
9639 ranges[i].low = iter->second;
9640 ranges[i].high = iter->second;
9641 }
c9317f21 9642
bedda9ac 9643 /* Remove the discriminant field, if it exists. */
9c6a1327 9644 struct type *sub_type = TYPE_FIELD_TYPE (type, i);
1f704f76 9645 if (sub_type->num_fields () > 0)
bedda9ac 9646 {
5e33d5f4 9647 sub_type->set_num_fields (sub_type->num_fields () - 1);
3cabb6b0 9648 sub_type->set_fields (sub_type->fields () + 1);
bedda9ac 9649 }
9c6a1327 9650 TYPE_FIELD_NAME (type, i) = variant_name;
d0e39ea2
SM
9651 sub_type->set_name
9652 (rust_fully_qualify (&objfile->objfile_obstack,
7d93a1e0 9653 type->name (), variant_name));
c9317f21 9654 }
9c6a1327
TT
9655
9656 /* Indicate that this is a variant type. */
9657 alloc_rust_variant (&objfile->objfile_obstack, type, 0, 1,
9658 gdb::array_view<discriminant_range> (ranges,
9659 n_fields - 1));
c9317f21
TT
9660 }
9661}
9662
9663/* Rewrite some Rust unions to be structures with variants parts. */
9664
9665static void
9666rust_union_quirks (struct dwarf2_cu *cu)
9667{
9668 gdb_assert (cu->language == language_rust);
52941706 9669 for (type *type_ : cu->rust_unions)
5e22e966 9670 quirk_rust_enum (type_, cu->per_objfile->objfile);
2d79090e
TT
9671 /* We don't need this any more. */
9672 cu->rust_unions.clear ();
c9317f21
TT
9673}
9674
8adb8487
TT
9675/* See read.h. */
9676
9677type_unit_group_unshareable *
9678dwarf2_per_objfile::get_type_unit_group_unshareable (type_unit_group *tu_group)
9679{
9680 auto iter = this->m_type_units.find (tu_group);
9681 if (iter != this->m_type_units.end ())
9682 return iter->second.get ();
9683
9684 type_unit_group_unshareable_up uniq (new type_unit_group_unshareable);
9685 type_unit_group_unshareable *result = uniq.get ();
9686 this->m_type_units[tu_group] = std::move (uniq);
9687 return result;
9688}
9689
e286671b
TT
9690struct type *
9691dwarf2_per_objfile::get_type_for_signatured_type
9692 (signatured_type *sig_type) const
9693{
9694 auto iter = this->m_type_map.find (sig_type);
9695 if (iter == this->m_type_map.end ())
9696 return nullptr;
9697
9698 return iter->second;
9699}
9700
9701void dwarf2_per_objfile::set_type_for_signatured_type
9702 (signatured_type *sig_type, struct type *type)
9703{
9704 gdb_assert (this->m_type_map.find (sig_type) == this->m_type_map.end ());
9705
9706 this->m_type_map[sig_type] = type;
9707}
9708
95554aad
TT
9709/* A helper function for computing the list of all symbol tables
9710 included by PER_CU. */
9711
9712static void
4c39bc03 9713recursively_compute_inclusions (std::vector<compunit_symtab *> *result,
ec94af83 9714 htab_t all_children, htab_t all_type_symtabs,
43182c09
SM
9715 dwarf2_per_cu_data *per_cu,
9716 dwarf2_per_objfile *per_objfile,
43f3e411 9717 struct compunit_symtab *immediate_parent)
95554aad 9718{
af758d11 9719 void **slot = htab_find_slot (all_children, per_cu, INSERT);
95554aad
TT
9720 if (*slot != NULL)
9721 {
9722 /* This inclusion and its children have been processed. */
9723 return;
9724 }
9725
9726 *slot = per_cu;
af758d11 9727
95554aad 9728 /* Only add a CU if it has a symbol table. */
43182c09 9729 compunit_symtab *cust = per_objfile->get_symtab (per_cu);
43f3e411 9730 if (cust != NULL)
ec94af83
DE
9731 {
9732 /* If this is a type unit only add its symbol table if we haven't
9733 seen it yet (type unit per_cu's can share symtabs). */
9734 if (per_cu->is_debug_types)
9735 {
43f3e411 9736 slot = htab_find_slot (all_type_symtabs, cust, INSERT);
ec94af83
DE
9737 if (*slot == NULL)
9738 {
43f3e411 9739 *slot = cust;
4c39bc03 9740 result->push_back (cust);
43f3e411
DE
9741 if (cust->user == NULL)
9742 cust->user = immediate_parent;
ec94af83
DE
9743 }
9744 }
9745 else
f9125b6c 9746 {
4c39bc03 9747 result->push_back (cust);
43f3e411
DE
9748 if (cust->user == NULL)
9749 cust->user = immediate_parent;
f9125b6c 9750 }
ec94af83 9751 }
95554aad 9752
ae640021
AB
9753 if (!per_cu->imported_symtabs_empty ())
9754 for (dwarf2_per_cu_data *ptr : *per_cu->imported_symtabs)
9755 {
9756 recursively_compute_inclusions (result, all_children,
43182c09
SM
9757 all_type_symtabs, ptr, per_objfile,
9758 cust);
ae640021 9759 }
95554aad
TT
9760}
9761
43f3e411 9762/* Compute the compunit_symtab 'includes' fields for the compunit_symtab of
95554aad
TT
9763 PER_CU. */
9764
9765static void
43182c09
SM
9766compute_compunit_symtab_includes (dwarf2_per_cu_data *per_cu,
9767 dwarf2_per_objfile *per_objfile)
95554aad 9768{
f4dc4d17
DE
9769 gdb_assert (! per_cu->is_debug_types);
9770
ae640021 9771 if (!per_cu->imported_symtabs_empty ())
95554aad 9772 {
ae640021 9773 int len;
4c39bc03 9774 std::vector<compunit_symtab *> result_symtabs;
ec94af83 9775 htab_t all_children, all_type_symtabs;
43182c09 9776 compunit_symtab *cust = per_objfile->get_symtab (per_cu);
95554aad
TT
9777
9778 /* If we don't have a symtab, we can just skip this case. */
43f3e411 9779 if (cust == NULL)
95554aad
TT
9780 return;
9781
9782 all_children = htab_create_alloc (1, htab_hash_pointer, htab_eq_pointer,
9783 NULL, xcalloc, xfree);
ec94af83
DE
9784 all_type_symtabs = htab_create_alloc (1, htab_hash_pointer, htab_eq_pointer,
9785 NULL, xcalloc, xfree);
95554aad 9786
ae640021 9787 for (dwarf2_per_cu_data *ptr : *per_cu->imported_symtabs)
ec94af83
DE
9788 {
9789 recursively_compute_inclusions (&result_symtabs, all_children,
43182c09
SM
9790 all_type_symtabs, ptr, per_objfile,
9791 cust);
ec94af83 9792 }
95554aad 9793
ec94af83 9794 /* Now we have a transitive closure of all the included symtabs. */
4c39bc03 9795 len = result_symtabs.size ();
43f3e411 9796 cust->includes
f6e649dd 9797 = XOBNEWVEC (&per_objfile->objfile->objfile_obstack,
8d749320 9798 struct compunit_symtab *, len + 1);
4c39bc03
TT
9799 memcpy (cust->includes, result_symtabs.data (),
9800 len * sizeof (compunit_symtab *));
43f3e411 9801 cust->includes[len] = NULL;
95554aad 9802
95554aad 9803 htab_delete (all_children);
ec94af83 9804 htab_delete (all_type_symtabs);
95554aad
TT
9805 }
9806}
9807
9808/* Compute the 'includes' field for the symtabs of all the CUs we just
9809 read. */
9810
9811static void
976ca316 9812process_cu_includes (dwarf2_per_objfile *per_objfile)
95554aad 9813{
976ca316 9814 for (dwarf2_per_cu_data *iter : per_objfile->per_bfd->just_read_cus)
f4dc4d17
DE
9815 {
9816 if (! iter->is_debug_types)
976ca316 9817 compute_compunit_symtab_includes (iter, per_objfile);
f4dc4d17 9818 }
95554aad 9819
976ca316 9820 per_objfile->per_bfd->just_read_cus.clear ();
95554aad
TT
9821}
9822
8fc0b21d 9823/* Generate full symbol information for CU, whose DIEs have
10b3939b
DJ
9824 already been loaded into memory. */
9825
9826static void
8fc0b21d 9827process_full_comp_unit (dwarf2_cu *cu, enum language pretend_language)
10b3939b 9828{
976ca316
SM
9829 dwarf2_per_objfile *per_objfile = cu->per_objfile;
9830 struct objfile *objfile = per_objfile->objfile;
08feed99 9831 struct gdbarch *gdbarch = objfile->arch ();
10b3939b 9832 CORE_ADDR lowpc, highpc;
43f3e411 9833 struct compunit_symtab *cust;
10b3939b 9834 CORE_ADDR baseaddr;
4359dff1 9835 struct block *static_block;
3e29f34a 9836 CORE_ADDR addr;
10b3939b 9837
b3b3bada 9838 baseaddr = objfile->text_section_offset ();
10b3939b 9839
c89b44cd
TT
9840 /* Clear the list here in case something was left over. */
9841 cu->method_list.clear ();
10b3939b 9842
95554aad
TT
9843 cu->language = pretend_language;
9844 cu->language_defn = language_def (cu->language);
9845
c906108c 9846 /* Do line number decoding in read_file_scope () */
10b3939b 9847 process_die (cu->dies, cu);
c906108c 9848
a766d390
DE
9849 /* For now fudge the Go package. */
9850 if (cu->language == language_go)
9851 fixup_go_packaging (cu);
9852
5f48f8f3 9853 /* Now that we have processed all the DIEs in the CU, all the types
3da10d80
KS
9854 should be complete, and it should now be safe to compute all of the
9855 physnames. */
9856 compute_delayed_physnames (cu);
3da10d80 9857
c9317f21
TT
9858 if (cu->language == language_rust)
9859 rust_union_quirks (cu);
9860
fae299cd
DC
9861 /* Some compilers don't define a DW_AT_high_pc attribute for the
9862 compilation unit. If the DW_AT_high_pc is missing, synthesize
9863 it, by scanning the DIE's below the compilation unit. */
10b3939b 9864 get_scope_pc_bounds (cu->dies, &lowpc, &highpc, cu);
c906108c 9865
3e29f34a 9866 addr = gdbarch_adjust_dwarf2_addr (gdbarch, highpc + baseaddr);
c24bdb02 9867 static_block = cu->get_builder ()->end_symtab_get_static_block (addr, 0, 1);
4359dff1
JK
9868
9869 /* If the comp unit has DW_AT_ranges, it may have discontiguous ranges.
9870 Also, DW_AT_ranges may record ranges not belonging to any child DIEs
9871 (such as virtual method tables). Record the ranges in STATIC_BLOCK's
9872 addrmap to help ensure it has an accurate map of pc values belonging to
9873 this comp unit. */
9874 dwarf2_record_block_ranges (cu->dies, static_block, baseaddr, cu);
9875
c24bdb02 9876 cust = cu->get_builder ()->end_symtab_from_static_block (static_block,
804d2729
TT
9877 SECT_OFF_TEXT (objfile),
9878 0);
c906108c 9879
43f3e411 9880 if (cust != NULL)
c906108c 9881 {
df15bd07 9882 int gcc_4_minor = producer_is_gcc_ge_4 (cu->producer);
4632c0d0 9883
8be455d7
JK
9884 /* Set symtab language to language from DW_AT_language. If the
9885 compilation is from a C file generated by language preprocessors, do
9886 not set the language if it was already deduced by start_subfile. */
43f3e411 9887 if (!(cu->language == language_c
40e3ad0e 9888 && COMPUNIT_FILETABS (cust)->language != language_unknown))
43f3e411 9889 COMPUNIT_FILETABS (cust)->language = cu->language;
8be455d7
JK
9890
9891 /* GCC-4.0 has started to support -fvar-tracking. GCC-3.x still can
9892 produce DW_AT_location with location lists but it can be possibly
ab260dad
JK
9893 invalid without -fvar-tracking. Still up to GCC-4.4.x incl. 4.4.0
9894 there were bugs in prologue debug info, fixed later in GCC-4.5
9895 by "unwind info for epilogues" patch (which is not directly related).
8be455d7
JK
9896
9897 For -gdwarf-4 type units LOCATIONS_VALID indication is fortunately not
9898 needed, it would be wrong due to missing DW_AT_producer there.
9899
9900 Still one can confuse GDB by using non-standard GCC compilation
9901 options - this waits on GCC PR other/32998 (-frecord-gcc-switches).
5f48f8f3 9902 */
ab260dad 9903 if (cu->has_loclist && gcc_4_minor >= 5)
43f3e411 9904 cust->locations_valid = 1;
e0d00bc7
JK
9905
9906 if (gcc_4_minor >= 5)
43f3e411 9907 cust->epilogue_unwind_valid = 1;
96408a79 9908
43f3e411 9909 cust->call_site_htab = cu->call_site_htab;
c906108c 9910 }
9291a0cd 9911
976ca316 9912 per_objfile->set_symtab (cu->per_cu, cust);
c906108c 9913
95554aad 9914 /* Push it for inclusion processing later. */
976ca316 9915 per_objfile->per_bfd->just_read_cus.push_back (cu->per_cu);
804d2729
TT
9916
9917 /* Not needed any more. */
c24bdb02 9918 cu->reset_builder ();
f4dc4d17 9919}
45cfd468 9920
8fc0b21d 9921/* Generate full symbol information for type unit CU, whose DIEs have
f4dc4d17
DE
9922 already been loaded into memory. */
9923
9924static void
8fc0b21d 9925process_full_type_unit (dwarf2_cu *cu,
f4dc4d17
DE
9926 enum language pretend_language)
9927{
976ca316
SM
9928 dwarf2_per_objfile *per_objfile = cu->per_objfile;
9929 struct objfile *objfile = per_objfile->objfile;
43f3e411 9930 struct compunit_symtab *cust;
0186c6a7
DE
9931 struct signatured_type *sig_type;
9932
8fc0b21d
SM
9933 gdb_assert (cu->per_cu->is_debug_types);
9934 sig_type = (struct signatured_type *) cu->per_cu;
f4dc4d17 9935
c89b44cd
TT
9936 /* Clear the list here in case something was left over. */
9937 cu->method_list.clear ();
f4dc4d17 9938
f4dc4d17
DE
9939 cu->language = pretend_language;
9940 cu->language_defn = language_def (cu->language);
9941
9942 /* The symbol tables are set up in read_type_unit_scope. */
9943 process_die (cu->dies, cu);
9944
9945 /* For now fudge the Go package. */
9946 if (cu->language == language_go)
9947 fixup_go_packaging (cu);
9948
5f48f8f3 9949 /* Now that we have processed all the DIEs in the CU, all the types
f4dc4d17
DE
9950 should be complete, and it should now be safe to compute all of the
9951 physnames. */
9952 compute_delayed_physnames (cu);
f4dc4d17 9953
c9317f21
TT
9954 if (cu->language == language_rust)
9955 rust_union_quirks (cu);
9956
f4dc4d17
DE
9957 /* TUs share symbol tables.
9958 If this is the first TU to use this symtab, complete the construction
094b34ac
DE
9959 of it with end_expandable_symtab. Otherwise, complete the addition of
9960 this TU's symbols to the existing symtab. */
8adb8487 9961 type_unit_group_unshareable *tug_unshare =
976ca316 9962 per_objfile->get_type_unit_group_unshareable (sig_type->type_unit_group);
8adb8487 9963 if (tug_unshare->compunit_symtab == NULL)
45cfd468 9964 {
c24bdb02
KS
9965 buildsym_compunit *builder = cu->get_builder ();
9966 cust = builder->end_expandable_symtab (0, SECT_OFF_TEXT (objfile));
8adb8487 9967 tug_unshare->compunit_symtab = cust;
f4dc4d17 9968
43f3e411 9969 if (cust != NULL)
f4dc4d17
DE
9970 {
9971 /* Set symtab language to language from DW_AT_language. If the
9972 compilation is from a C file generated by language preprocessors,
9973 do not set the language if it was already deduced by
9974 start_subfile. */
43f3e411
DE
9975 if (!(cu->language == language_c
9976 && COMPUNIT_FILETABS (cust)->language != language_c))
9977 COMPUNIT_FILETABS (cust)->language = cu->language;
f4dc4d17
DE
9978 }
9979 }
9980 else
9981 {
c24bdb02 9982 cu->get_builder ()->augment_type_symtab ();
8adb8487 9983 cust = tug_unshare->compunit_symtab;
f4dc4d17
DE
9984 }
9985
976ca316 9986 per_objfile->set_symtab (cu->per_cu, cust);
804d2729
TT
9987
9988 /* Not needed any more. */
c24bdb02 9989 cu->reset_builder ();
c906108c
SS
9990}
9991
95554aad
TT
9992/* Process an imported unit DIE. */
9993
9994static void
9995process_imported_unit_die (struct die_info *die, struct dwarf2_cu *cu)
9996{
9997 struct attribute *attr;
9998
f4dc4d17
DE
9999 /* For now we don't handle imported units in type units. */
10000 if (cu->per_cu->is_debug_types)
10001 {
10002 error (_("Dwarf Error: DW_TAG_imported_unit is not"
10003 " supported in type units [in module %s]"),
5e22e966 10004 objfile_name (cu->per_objfile->objfile));
f4dc4d17
DE
10005 }
10006
95554aad
TT
10007 attr = dwarf2_attr (die, DW_AT_import, cu);
10008 if (attr != NULL)
10009 {
0826b30a 10010 sect_offset sect_off = attr->get_ref_die_offset ();
9c541725 10011 bool is_dwz = (attr->form == DW_FORM_GNU_ref_alt || cu->per_cu->is_dwz);
ab432490 10012 dwarf2_per_objfile *per_objfile = cu->per_objfile;
9c541725 10013 dwarf2_per_cu_data *per_cu
ab432490 10014 = dwarf2_find_containing_comp_unit (sect_off, is_dwz, per_objfile);
95554aad 10015
58990295
TV
10016 /* We're importing a C++ compilation unit with tag DW_TAG_compile_unit
10017 into another compilation unit, at root level. Regard this as a hint,
10018 and ignore it. */
10019 if (die->parent && die->parent->parent == NULL
10020 && per_cu->unit_type == DW_UT_compile
10021 && per_cu->lang == language_cplus)
10022 return;
10023
69d751e3 10024 /* If necessary, add it to the queue and load its DIEs. */
120ce1b5 10025 if (maybe_queue_comp_unit (cu, per_cu, per_objfile, cu->language))
ab432490 10026 load_full_comp_unit (per_cu, per_objfile, false, cu->language);
95554aad 10027
ae640021 10028 cu->per_cu->imported_symtabs_push (per_cu);
95554aad
TT
10029 }
10030}
10031
4c8aa72d
PA
10032/* RAII object that represents a process_die scope: i.e.,
10033 starts/finishes processing a DIE. */
10034class process_die_scope
adde2bff 10035{
4c8aa72d
PA
10036public:
10037 process_die_scope (die_info *die, dwarf2_cu *cu)
10038 : m_die (die), m_cu (cu)
10039 {
10040 /* We should only be processing DIEs not already in process. */
10041 gdb_assert (!m_die->in_process);
10042 m_die->in_process = true;
10043 }
8c3cb9fa 10044
4c8aa72d
PA
10045 ~process_die_scope ()
10046 {
10047 m_die->in_process = false;
10048
10049 /* If we're done processing the DIE for the CU that owns the line
10050 header, we don't need the line header anymore. */
10051 if (m_cu->line_header_die_owner == m_die)
10052 {
10053 delete m_cu->line_header;
10054 m_cu->line_header = NULL;
10055 m_cu->line_header_die_owner = NULL;
10056 }
10057 }
10058
10059private:
10060 die_info *m_die;
10061 dwarf2_cu *m_cu;
10062};
adde2bff 10063
c906108c
SS
10064/* Process a die and its children. */
10065
10066static void
e7c27a73 10067process_die (struct die_info *die, struct dwarf2_cu *cu)
c906108c 10068{
4c8aa72d 10069 process_die_scope scope (die, cu);
adde2bff 10070
c906108c
SS
10071 switch (die->tag)
10072 {
10073 case DW_TAG_padding:
10074 break;
10075 case DW_TAG_compile_unit:
95554aad 10076 case DW_TAG_partial_unit:
e7c27a73 10077 read_file_scope (die, cu);
c906108c 10078 break;
348e048f
DE
10079 case DW_TAG_type_unit:
10080 read_type_unit_scope (die, cu);
10081 break;
c906108c 10082 case DW_TAG_subprogram:
0a4b0913
AB
10083 /* Nested subprograms in Fortran get a prefix. */
10084 if (cu->language == language_fortran
10085 && die->parent != NULL
10086 && die->parent->tag == DW_TAG_subprogram)
10087 cu->processing_has_namespace_info = true;
10088 /* Fall through. */
c906108c 10089 case DW_TAG_inlined_subroutine:
edb3359d 10090 read_func_scope (die, cu);
c906108c
SS
10091 break;
10092 case DW_TAG_lexical_block:
14898363
L
10093 case DW_TAG_try_block:
10094 case DW_TAG_catch_block:
e7c27a73 10095 read_lexical_block_scope (die, cu);
c906108c 10096 break;
216f72a1 10097 case DW_TAG_call_site:
96408a79
SA
10098 case DW_TAG_GNU_call_site:
10099 read_call_site_scope (die, cu);
10100 break;
c906108c 10101 case DW_TAG_class_type:
680b30c7 10102 case DW_TAG_interface_type:
c906108c
SS
10103 case DW_TAG_structure_type:
10104 case DW_TAG_union_type:
134d01f1 10105 process_structure_scope (die, cu);
c906108c
SS
10106 break;
10107 case DW_TAG_enumeration_type:
134d01f1 10108 process_enumeration_scope (die, cu);
c906108c 10109 break;
134d01f1 10110
f792889a
DJ
10111 /* These dies have a type, but processing them does not create
10112 a symbol or recurse to process the children. Therefore we can
10113 read them on-demand through read_type_die. */
c906108c 10114 case DW_TAG_subroutine_type:
72019c9c 10115 case DW_TAG_set_type:
c906108c 10116 case DW_TAG_array_type:
c906108c 10117 case DW_TAG_pointer_type:
c906108c 10118 case DW_TAG_ptr_to_member_type:
c906108c 10119 case DW_TAG_reference_type:
4297a3f0 10120 case DW_TAG_rvalue_reference_type:
c906108c 10121 case DW_TAG_string_type:
c906108c 10122 break;
134d01f1 10123
c906108c 10124 case DW_TAG_base_type:
a02abb62 10125 case DW_TAG_subrange_type:
cb249c71 10126 case DW_TAG_typedef:
134d01f1
DJ
10127 /* Add a typedef symbol for the type definition, if it has a
10128 DW_AT_name. */
f792889a 10129 new_symbol (die, read_type_die (die, cu), cu);
a02abb62 10130 break;
c906108c 10131 case DW_TAG_common_block:
e7c27a73 10132 read_common_block (die, cu);
c906108c
SS
10133 break;
10134 case DW_TAG_common_inclusion:
10135 break;
d9fa45fe 10136 case DW_TAG_namespace:
9068261f 10137 cu->processing_has_namespace_info = true;
e7c27a73 10138 read_namespace (die, cu);
d9fa45fe 10139 break;
5d7cb8df 10140 case DW_TAG_module:
9068261f 10141 cu->processing_has_namespace_info = true;
5d7cb8df
JK
10142 read_module (die, cu);
10143 break;
d9fa45fe 10144 case DW_TAG_imported_declaration:
9068261f 10145 cu->processing_has_namespace_info = true;
74921315
KS
10146 if (read_namespace_alias (die, cu))
10147 break;
86a73007
TT
10148 /* The declaration is not a global namespace alias. */
10149 /* Fall through. */
d9fa45fe 10150 case DW_TAG_imported_module:
9068261f 10151 cu->processing_has_namespace_info = true;
27aa8d6a
SW
10152 if (die->child != NULL && (die->tag == DW_TAG_imported_declaration
10153 || cu->language != language_fortran))
b98664d3 10154 complaint (_("Tag '%s' has unexpected children"),
27aa8d6a
SW
10155 dwarf_tag_name (die->tag));
10156 read_import_statement (die, cu);
d9fa45fe 10157 break;
95554aad
TT
10158
10159 case DW_TAG_imported_unit:
10160 process_imported_unit_die (die, cu);
10161 break;
10162
71a3c369
TT
10163 case DW_TAG_variable:
10164 read_variable (die, cu);
10165 break;
10166
c906108c 10167 default:
e7c27a73 10168 new_symbol (die, NULL, cu);
c906108c
SS
10169 break;
10170 }
10171}
ca69b9e6
DE
10172\f
10173/* DWARF name computation. */
c906108c 10174
94af9270
KS
10175/* A helper function for dwarf2_compute_name which determines whether DIE
10176 needs to have the name of the scope prepended to the name listed in the
10177 die. */
10178
10179static int
10180die_needs_namespace (struct die_info *die, struct dwarf2_cu *cu)
10181{
1c809c68
TT
10182 struct attribute *attr;
10183
94af9270
KS
10184 switch (die->tag)
10185 {
10186 case DW_TAG_namespace:
10187 case DW_TAG_typedef:
10188 case DW_TAG_class_type:
10189 case DW_TAG_interface_type:
10190 case DW_TAG_structure_type:
10191 case DW_TAG_union_type:
10192 case DW_TAG_enumeration_type:
10193 case DW_TAG_enumerator:
10194 case DW_TAG_subprogram:
08a76f8a 10195 case DW_TAG_inlined_subroutine:
94af9270 10196 case DW_TAG_member:
74921315 10197 case DW_TAG_imported_declaration:
94af9270
KS
10198 return 1;
10199
10200 case DW_TAG_variable:
c2b0a229 10201 case DW_TAG_constant:
94af9270
KS
10202 /* We only need to prefix "globally" visible variables. These include
10203 any variable marked with DW_AT_external or any variable that
10204 lives in a namespace. [Variables in anonymous namespaces
10205 require prefixing, but they are not DW_AT_external.] */
10206
10207 if (dwarf2_attr (die, DW_AT_specification, cu))
10208 {
10209 struct dwarf2_cu *spec_cu = cu;
9a619af0 10210
94af9270
KS
10211 return die_needs_namespace (die_specification (die, &spec_cu),
10212 spec_cu);
10213 }
10214
1c809c68 10215 attr = dwarf2_attr (die, DW_AT_external, cu);
f55ee35c
JK
10216 if (attr == NULL && die->parent->tag != DW_TAG_namespace
10217 && die->parent->tag != DW_TAG_module)
1c809c68
TT
10218 return 0;
10219 /* A variable in a lexical block of some kind does not need a
10220 namespace, even though in C++ such variables may be external
10221 and have a mangled name. */
10222 if (die->parent->tag == DW_TAG_lexical_block
10223 || die->parent->tag == DW_TAG_try_block
1054b214
TT
10224 || die->parent->tag == DW_TAG_catch_block
10225 || die->parent->tag == DW_TAG_subprogram)
1c809c68
TT
10226 return 0;
10227 return 1;
94af9270
KS
10228
10229 default:
10230 return 0;
10231 }
10232}
10233
73b9be8b
KS
10234/* Return the DIE's linkage name attribute, either DW_AT_linkage_name
10235 or DW_AT_MIPS_linkage_name. Returns NULL if the attribute is not
10236 defined for the given DIE. */
10237
10238static struct attribute *
10239dw2_linkage_name_attr (struct die_info *die, struct dwarf2_cu *cu)
10240{
10241 struct attribute *attr;
10242
10243 attr = dwarf2_attr (die, DW_AT_linkage_name, cu);
10244 if (attr == NULL)
10245 attr = dwarf2_attr (die, DW_AT_MIPS_linkage_name, cu);
10246
10247 return attr;
10248}
10249
10250/* Return the DIE's linkage name as a string, either DW_AT_linkage_name
10251 or DW_AT_MIPS_linkage_name. Returns NULL if the attribute is not
10252 defined for the given DIE. */
10253
10254static const char *
10255dw2_linkage_name (struct die_info *die, struct dwarf2_cu *cu)
10256{
10257 const char *linkage_name;
10258
10259 linkage_name = dwarf2_string_attr (die, DW_AT_linkage_name, cu);
10260 if (linkage_name == NULL)
10261 linkage_name = dwarf2_string_attr (die, DW_AT_MIPS_linkage_name, cu);
10262
787de330
TT
10263 /* rustc emits invalid values for DW_AT_linkage_name. Ignore these.
10264 See https://github.com/rust-lang/rust/issues/32925. */
10265 if (cu->language == language_rust && linkage_name != NULL
10266 && strchr (linkage_name, '{') != NULL)
10267 linkage_name = NULL;
10268
73b9be8b
KS
10269 return linkage_name;
10270}
10271
94af9270 10272/* Compute the fully qualified name of DIE in CU. If PHYSNAME is nonzero,
a766d390 10273 compute the physname for the object, which include a method's:
9c37b5ae 10274 - formal parameters (C++),
a766d390 10275 - receiver type (Go),
a766d390
DE
10276
10277 The term "physname" is a bit confusing.
10278 For C++, for example, it is the demangled name.
10279 For Go, for example, it's the mangled name.
94af9270 10280
af6b7be1
JB
10281 For Ada, return the DIE's linkage name rather than the fully qualified
10282 name. PHYSNAME is ignored..
10283
5989a64e 10284 The result is allocated on the objfile->per_bfd's obstack and
45940949 10285 canonicalized. */
94af9270
KS
10286
10287static const char *
15d034d0
TT
10288dwarf2_compute_name (const char *name,
10289 struct die_info *die, struct dwarf2_cu *cu,
94af9270
KS
10290 int physname)
10291{
5e22e966 10292 struct objfile *objfile = cu->per_objfile->objfile;
bb5ed363 10293
94af9270
KS
10294 if (name == NULL)
10295 name = dwarf2_name (die, cu);
10296
2ee7123e
DE
10297 /* For Fortran GDB prefers DW_AT_*linkage_name for the physname if present
10298 but otherwise compute it by typename_concat inside GDB.
10299 FIXME: Actually this is not really true, or at least not always true.
4d4eaa30 10300 It's all very confusing. compute_and_set_names doesn't try to demangle
5e2db402 10301 Fortran names because there is no mangling standard. So new_symbol
2ee7123e
DE
10302 will set the demangled name to the result of dwarf2_full_name, and it is
10303 the demangled name that GDB uses if it exists. */
f55ee35c
JK
10304 if (cu->language == language_ada
10305 || (cu->language == language_fortran && physname))
10306 {
10307 /* For Ada unit, we prefer the linkage name over the name, as
10308 the former contains the exported name, which the user expects
10309 to be able to reference. Ideally, we want the user to be able
10310 to reference this entity using either natural or linkage name,
10311 but we haven't started looking at this enhancement yet. */
73b9be8b 10312 const char *linkage_name = dw2_linkage_name (die, cu);
f55ee35c 10313
2ee7123e
DE
10314 if (linkage_name != NULL)
10315 return linkage_name;
f55ee35c
JK
10316 }
10317
94af9270
KS
10318 /* These are the only languages we know how to qualify names in. */
10319 if (name != NULL
9c37b5ae 10320 && (cu->language == language_cplus
c44af4eb
TT
10321 || cu->language == language_fortran || cu->language == language_d
10322 || cu->language == language_rust))
94af9270
KS
10323 {
10324 if (die_needs_namespace (die, cu))
10325 {
0d5cff50 10326 const char *prefix;
34a68019 10327 const char *canonical_name = NULL;
94af9270 10328
d7e74731
PA
10329 string_file buf;
10330
94af9270 10331 prefix = determine_prefix (die, cu);
94af9270
KS
10332 if (*prefix != '\0')
10333 {
43816ebc
TT
10334 gdb::unique_xmalloc_ptr<char> prefixed_name
10335 (typename_concat (NULL, prefix, name, physname, cu));
9a619af0 10336
43816ebc 10337 buf.puts (prefixed_name.get ());
94af9270
KS
10338 }
10339 else
d7e74731 10340 buf.puts (name);
94af9270 10341
98bfdba5
PA
10342 /* Template parameters may be specified in the DIE's DW_AT_name, or
10343 as children with DW_TAG_template_type_param or
10344 DW_TAG_value_type_param. If the latter, add them to the name
10345 here. If the name already has template parameters, then
10346 skip this step; some versions of GCC emit both, and
10347 it is more efficient to use the pre-computed name.
10348
10349 Something to keep in mind about this process: it is very
10350 unlikely, or in some cases downright impossible, to produce
10351 something that will match the mangled name of a function.
10352 If the definition of the function has the same debug info,
10353 we should be able to match up with it anyway. But fallbacks
10354 using the minimal symbol, for instance to find a method
10355 implemented in a stripped copy of libstdc++, will not work.
10356 If we do not have debug info for the definition, we will have to
10357 match them up some other way.
10358
10359 When we do name matching there is a related problem with function
10360 templates; two instantiated function templates are allowed to
10361 differ only by their return types, which we do not add here. */
10362
10363 if (cu->language == language_cplus && strchr (name, '<') == NULL)
10364 {
10365 struct attribute *attr;
10366 struct die_info *child;
10367 int first = 1;
10368
10369 die->building_fullname = 1;
10370
10371 for (child = die->child; child != NULL; child = child->sibling)
10372 {
10373 struct type *type;
12df843f 10374 LONGEST value;
d521ce57 10375 const gdb_byte *bytes;
98bfdba5
PA
10376 struct dwarf2_locexpr_baton *baton;
10377 struct value *v;
10378
10379 if (child->tag != DW_TAG_template_type_param
10380 && child->tag != DW_TAG_template_value_param)
10381 continue;
10382
10383 if (first)
10384 {
d7e74731 10385 buf.puts ("<");
98bfdba5
PA
10386 first = 0;
10387 }
10388 else
d7e74731 10389 buf.puts (", ");
98bfdba5
PA
10390
10391 attr = dwarf2_attr (child, DW_AT_type, cu);
10392 if (attr == NULL)
10393 {
b98664d3 10394 complaint (_("template parameter missing DW_AT_type"));
d7e74731 10395 buf.puts ("UNKNOWN_TYPE");
98bfdba5
PA
10396 continue;
10397 }
10398 type = die_type (child, cu);
10399
10400 if (child->tag == DW_TAG_template_type_param)
10401 {
c1ec8cea
TT
10402 c_print_type (type, "", &buf, -1, 0, cu->language,
10403 &type_print_raw_options);
98bfdba5
PA
10404 continue;
10405 }
10406
10407 attr = dwarf2_attr (child, DW_AT_const_value, cu);
10408 if (attr == NULL)
10409 {
b98664d3 10410 complaint (_("template parameter missing "
3e43a32a 10411 "DW_AT_const_value"));
d7e74731 10412 buf.puts ("UNKNOWN_VALUE");
98bfdba5
PA
10413 continue;
10414 }
10415
10416 dwarf2_const_value_attr (attr, type, name,
10417 &cu->comp_unit_obstack, cu,
10418 &value, &bytes, &baton);
10419
10420 if (TYPE_NOSIGN (type))
10421 /* GDB prints characters as NUMBER 'CHAR'. If that's
10422 changed, this can use value_print instead. */
d7e74731 10423 c_printchar (value, type, &buf);
98bfdba5
PA
10424 else
10425 {
10426 struct value_print_options opts;
10427
10428 if (baton != NULL)
10429 v = dwarf2_evaluate_loc_desc (type, NULL,
10430 baton->data,
10431 baton->size,
9f47c707
SM
10432 baton->per_cu,
10433 baton->per_objfile);
98bfdba5
PA
10434 else if (bytes != NULL)
10435 {
10436 v = allocate_value (type);
10437 memcpy (value_contents_writeable (v), bytes,
10438 TYPE_LENGTH (type));
10439 }
10440 else
10441 v = value_from_longest (type, value);
10442
3e43a32a
MS
10443 /* Specify decimal so that we do not depend on
10444 the radix. */
98bfdba5
PA
10445 get_formatted_print_options (&opts, 'd');
10446 opts.raw = 1;
d7e74731 10447 value_print (v, &buf, &opts);
98bfdba5 10448 release_value (v);
98bfdba5
PA
10449 }
10450 }
10451
10452 die->building_fullname = 0;
10453
10454 if (!first)
10455 {
10456 /* Close the argument list, with a space if necessary
10457 (nested templates). */
d7e74731
PA
10458 if (!buf.empty () && buf.string ().back () == '>')
10459 buf.puts (" >");
98bfdba5 10460 else
d7e74731 10461 buf.puts (">");
98bfdba5
PA
10462 }
10463 }
10464
9c37b5ae 10465 /* For C++ methods, append formal parameter type
94af9270 10466 information, if PHYSNAME. */
6e70227d 10467
94af9270 10468 if (physname && die->tag == DW_TAG_subprogram
9c37b5ae 10469 && cu->language == language_cplus)
94af9270
KS
10470 {
10471 struct type *type = read_type_die (die, cu);
10472
d7e74731 10473 c_type_print_args (type, &buf, 1, cu->language,
79d43c61 10474 &type_print_raw_options);
94af9270 10475
9c37b5ae 10476 if (cu->language == language_cplus)
94af9270 10477 {
60430eff
DJ
10478 /* Assume that an artificial first parameter is
10479 "this", but do not crash if it is not. RealView
10480 marks unnamed (and thus unused) parameters as
10481 artificial; there is no way to differentiate
10482 the two cases. */
1f704f76 10483 if (type->num_fields () > 0
94af9270 10484 && TYPE_FIELD_ARTIFICIAL (type, 0)
78134374 10485 && TYPE_FIELD_TYPE (type, 0)->code () == TYPE_CODE_PTR
3e43a32a
MS
10486 && TYPE_CONST (TYPE_TARGET_TYPE (TYPE_FIELD_TYPE (type,
10487 0))))
d7e74731 10488 buf.puts (" const");
94af9270
KS
10489 }
10490 }
10491
d7e74731 10492 const std::string &intermediate_name = buf.string ();
94af9270
KS
10493
10494 if (cu->language == language_cplus)
34a68019 10495 canonical_name
322a8516 10496 = dwarf2_canonicalize_name (intermediate_name.c_str (), cu,
be1e3d3e 10497 objfile);
34a68019
TT
10498
10499 /* If we only computed INTERMEDIATE_NAME, or if
10500 INTERMEDIATE_NAME is already canonical, then we need to
be1e3d3e 10501 intern it. */
322a8516 10502 if (canonical_name == NULL || canonical_name == intermediate_name.c_str ())
be1e3d3e 10503 name = objfile->intern (intermediate_name);
34a68019
TT
10504 else
10505 name = canonical_name;
94af9270
KS
10506 }
10507 }
10508
10509 return name;
10510}
10511
0114d602
DJ
10512/* Return the fully qualified name of DIE, based on its DW_AT_name.
10513 If scope qualifiers are appropriate they will be added. The result
34a68019 10514 will be allocated on the storage_obstack, or NULL if the DIE does
94af9270
KS
10515 not have a name. NAME may either be from a previous call to
10516 dwarf2_name or NULL.
10517
9c37b5ae 10518 The output string will be canonicalized (if C++). */
0114d602
DJ
10519
10520static const char *
15d034d0 10521dwarf2_full_name (const char *name, struct die_info *die, struct dwarf2_cu *cu)
0114d602 10522{
94af9270
KS
10523 return dwarf2_compute_name (name, die, cu, 0);
10524}
0114d602 10525
94af9270
KS
10526/* Construct a physname for the given DIE in CU. NAME may either be
10527 from a previous call to dwarf2_name or NULL. The result will be
10528 allocated on the objfile_objstack or NULL if the DIE does not have a
10529 name.
0114d602 10530
9c37b5ae 10531 The output string will be canonicalized (if C++). */
0114d602 10532
94af9270 10533static const char *
15d034d0 10534dwarf2_physname (const char *name, struct die_info *die, struct dwarf2_cu *cu)
94af9270 10535{
5e22e966 10536 struct objfile *objfile = cu->per_objfile->objfile;
900e11f9 10537 const char *retval, *mangled = NULL, *canon = NULL;
900e11f9
JK
10538 int need_copy = 1;
10539
10540 /* In this case dwarf2_compute_name is just a shortcut not building anything
10541 on its own. */
10542 if (!die_needs_namespace (die, cu))
10543 return dwarf2_compute_name (name, die, cu, 1);
10544
906bb4c5
TT
10545 if (cu->language != language_rust)
10546 mangled = dw2_linkage_name (die, cu);
900e11f9
JK
10547
10548 /* DW_AT_linkage_name is missing in some cases - depend on what GDB
10549 has computed. */
791afaa2 10550 gdb::unique_xmalloc_ptr<char> demangled;
7d45c7c3 10551 if (mangled != NULL)
900e11f9 10552 {
900e11f9 10553
59cc4834
JB
10554 if (language_def (cu->language)->la_store_sym_names_in_linkage_form_p)
10555 {
10556 /* Do nothing (do not demangle the symbol name). */
10557 }
10558 else if (cu->language == language_go)
a766d390 10559 {
5e2db402
TT
10560 /* This is a lie, but we already lie to the caller new_symbol.
10561 new_symbol assumes we return the mangled name.
a766d390 10562 This just undoes that lie until things are cleaned up. */
a766d390
DE
10563 }
10564 else
10565 {
0eb876f5
JB
10566 /* Use DMGL_RET_DROP for C++ template functions to suppress
10567 their return type. It is easier for GDB users to search
10568 for such functions as `name(params)' than `long name(params)'.
10569 In such case the minimal symbol names do not match the full
10570 symbol names but for template functions there is never a need
10571 to look up their definition from their declaration so
10572 the only disadvantage remains the minimal symbol variant
10573 `long name(params)' does not have the proper inferior type. */
791afaa2
TT
10574 demangled.reset (gdb_demangle (mangled,
10575 (DMGL_PARAMS | DMGL_ANSI
10576 | DMGL_RET_DROP)));
a766d390 10577 }
900e11f9 10578 if (demangled)
791afaa2 10579 canon = demangled.get ();
900e11f9
JK
10580 else
10581 {
10582 canon = mangled;
10583 need_copy = 0;
10584 }
10585 }
10586
10587 if (canon == NULL || check_physname)
10588 {
10589 const char *physname = dwarf2_compute_name (name, die, cu, 1);
10590
10591 if (canon != NULL && strcmp (physname, canon) != 0)
10592 {
10593 /* It may not mean a bug in GDB. The compiler could also
10594 compute DW_AT_linkage_name incorrectly. But in such case
10595 GDB would need to be bug-to-bug compatible. */
10596
b98664d3 10597 complaint (_("Computed physname <%s> does not match demangled <%s> "
9d8780f0
SM
10598 "(from linkage <%s>) - DIE at %s [in module %s]"),
10599 physname, canon, mangled, sect_offset_str (die->sect_off),
4262abfb 10600 objfile_name (objfile));
900e11f9
JK
10601
10602 /* Prefer DW_AT_linkage_name (in the CANON form) - when it
10603 is available here - over computed PHYSNAME. It is safer
10604 against both buggy GDB and buggy compilers. */
10605
10606 retval = canon;
10607 }
10608 else
10609 {
10610 retval = physname;
10611 need_copy = 0;
10612 }
10613 }
10614 else
10615 retval = canon;
10616
10617 if (need_copy)
be1e3d3e 10618 retval = objfile->intern (retval);
900e11f9 10619
900e11f9 10620 return retval;
0114d602
DJ
10621}
10622
74921315
KS
10623/* Inspect DIE in CU for a namespace alias. If one exists, record
10624 a new symbol for it.
10625
10626 Returns 1 if a namespace alias was recorded, 0 otherwise. */
10627
10628static int
10629read_namespace_alias (struct die_info *die, struct dwarf2_cu *cu)
10630{
10631 struct attribute *attr;
10632
10633 /* If the die does not have a name, this is not a namespace
10634 alias. */
10635 attr = dwarf2_attr (die, DW_AT_name, cu);
10636 if (attr != NULL)
10637 {
10638 int num;
10639 struct die_info *d = die;
10640 struct dwarf2_cu *imported_cu = cu;
10641
10642 /* If the compiler has nested DW_AT_imported_declaration DIEs,
10643 keep inspecting DIEs until we hit the underlying import. */
10644#define MAX_NESTED_IMPORTED_DECLARATIONS 100
10645 for (num = 0; num < MAX_NESTED_IMPORTED_DECLARATIONS; ++num)
10646 {
10647 attr = dwarf2_attr (d, DW_AT_import, cu);
10648 if (attr == NULL)
10649 break;
10650
10651 d = follow_die_ref (d, attr, &imported_cu);
10652 if (d->tag != DW_TAG_imported_declaration)
10653 break;
10654 }
10655
10656 if (num == MAX_NESTED_IMPORTED_DECLARATIONS)
10657 {
b98664d3 10658 complaint (_("DIE at %s has too many recursively imported "
9d8780f0 10659 "declarations"), sect_offset_str (d->sect_off));
74921315
KS
10660 return 0;
10661 }
10662
10663 if (attr != NULL)
10664 {
10665 struct type *type;
0826b30a 10666 sect_offset sect_off = attr->get_ref_die_offset ();
74921315 10667
aa66c379 10668 type = get_die_type_at_offset (sect_off, cu->per_cu, cu->per_objfile);
78134374 10669 if (type != NULL && type->code () == TYPE_CODE_NAMESPACE)
74921315
KS
10670 {
10671 /* This declaration is a global namespace alias. Add
10672 a symbol for it whose type is the aliased namespace. */
10673 new_symbol (die, type, cu);
10674 return 1;
10675 }
10676 }
10677 }
10678
10679 return 0;
10680}
10681
22cee43f 10682/* Return the using directives repository (global or local?) to use in the
804d2729 10683 current context for CU.
22cee43f
PMR
10684
10685 For Ada, imported declarations can materialize renamings, which *may* be
10686 global. However it is impossible (for now?) in DWARF to distinguish
10687 "external" imported declarations and "static" ones. As all imported
10688 declarations seem to be static in all other languages, make them all CU-wide
10689 global only in Ada. */
10690
10691static struct using_direct **
804d2729 10692using_directives (struct dwarf2_cu *cu)
22cee43f 10693{
c24bdb02
KS
10694 if (cu->language == language_ada
10695 && cu->get_builder ()->outermost_context_p ())
10696 return cu->get_builder ()->get_global_using_directives ();
22cee43f 10697 else
c24bdb02 10698 return cu->get_builder ()->get_local_using_directives ();
22cee43f
PMR
10699}
10700
27aa8d6a
SW
10701/* Read the import statement specified by the given die and record it. */
10702
10703static void
10704read_import_statement (struct die_info *die, struct dwarf2_cu *cu)
10705{
5e22e966 10706 struct objfile *objfile = cu->per_objfile->objfile;
27aa8d6a 10707 struct attribute *import_attr;
32019081 10708 struct die_info *imported_die, *child_die;
de4affc9 10709 struct dwarf2_cu *imported_cu;
27aa8d6a 10710 const char *imported_name;
794684b6 10711 const char *imported_name_prefix;
13387711
SW
10712 const char *canonical_name;
10713 const char *import_alias;
10714 const char *imported_declaration = NULL;
794684b6 10715 const char *import_prefix;
eb1e02fd 10716 std::vector<const char *> excludes;
13387711 10717
27aa8d6a
SW
10718 import_attr = dwarf2_attr (die, DW_AT_import, cu);
10719 if (import_attr == NULL)
10720 {
b98664d3 10721 complaint (_("Tag '%s' has no DW_AT_import"),
27aa8d6a
SW
10722 dwarf_tag_name (die->tag));
10723 return;
10724 }
10725
de4affc9
CC
10726 imported_cu = cu;
10727 imported_die = follow_die_ref_or_sig (die, import_attr, &imported_cu);
10728 imported_name = dwarf2_name (imported_die, imported_cu);
27aa8d6a
SW
10729 if (imported_name == NULL)
10730 {
10731 /* GCC bug: https://bugzilla.redhat.com/show_bug.cgi?id=506524
10732
10733 The import in the following code:
10734 namespace A
10735 {
10736 typedef int B;
10737 }
10738
10739 int main ()
10740 {
10741 using A::B;
10742 B b;
10743 return b;
10744 }
10745
10746 ...
10747 <2><51>: Abbrev Number: 3 (DW_TAG_imported_declaration)
10748 <52> DW_AT_decl_file : 1
10749 <53> DW_AT_decl_line : 6
10750 <54> DW_AT_import : <0x75>
10751 <2><58>: Abbrev Number: 4 (DW_TAG_typedef)
10752 <59> DW_AT_name : B
10753 <5b> DW_AT_decl_file : 1
10754 <5c> DW_AT_decl_line : 2
10755 <5d> DW_AT_type : <0x6e>
10756 ...
10757 <1><75>: Abbrev Number: 7 (DW_TAG_base_type)
10758 <76> DW_AT_byte_size : 4
10759 <77> DW_AT_encoding : 5 (signed)
10760
10761 imports the wrong die ( 0x75 instead of 0x58 ).
10762 This case will be ignored until the gcc bug is fixed. */
10763 return;
10764 }
10765
82856980
SW
10766 /* Figure out the local name after import. */
10767 import_alias = dwarf2_name (die, cu);
27aa8d6a 10768
794684b6
SW
10769 /* Figure out where the statement is being imported to. */
10770 import_prefix = determine_prefix (die, cu);
10771
10772 /* Figure out what the scope of the imported die is and prepend it
10773 to the name of the imported die. */
de4affc9 10774 imported_name_prefix = determine_prefix (imported_die, imported_cu);
794684b6 10775
f55ee35c
JK
10776 if (imported_die->tag != DW_TAG_namespace
10777 && imported_die->tag != DW_TAG_module)
794684b6 10778 {
13387711
SW
10779 imported_declaration = imported_name;
10780 canonical_name = imported_name_prefix;
794684b6 10781 }
13387711 10782 else if (strlen (imported_name_prefix) > 0)
12aaed36 10783 canonical_name = obconcat (&objfile->objfile_obstack,
45280282
IB
10784 imported_name_prefix,
10785 (cu->language == language_d ? "." : "::"),
10786 imported_name, (char *) NULL);
13387711
SW
10787 else
10788 canonical_name = imported_name;
794684b6 10789
32019081
JK
10790 if (die->tag == DW_TAG_imported_module && cu->language == language_fortran)
10791 for (child_die = die->child; child_die && child_die->tag;
436c571c 10792 child_die = child_die->sibling)
32019081
JK
10793 {
10794 /* DWARF-4: A Fortran use statement with a “rename list” may be
10795 represented by an imported module entry with an import attribute
10796 referring to the module and owned entries corresponding to those
10797 entities that are renamed as part of being imported. */
10798
10799 if (child_die->tag != DW_TAG_imported_declaration)
10800 {
b98664d3 10801 complaint (_("child DW_TAG_imported_declaration expected "
9d8780f0
SM
10802 "- DIE at %s [in module %s]"),
10803 sect_offset_str (child_die->sect_off),
10804 objfile_name (objfile));
32019081
JK
10805 continue;
10806 }
10807
10808 import_attr = dwarf2_attr (child_die, DW_AT_import, cu);
10809 if (import_attr == NULL)
10810 {
b98664d3 10811 complaint (_("Tag '%s' has no DW_AT_import"),
32019081
JK
10812 dwarf_tag_name (child_die->tag));
10813 continue;
10814 }
10815
10816 imported_cu = cu;
10817 imported_die = follow_die_ref_or_sig (child_die, import_attr,
10818 &imported_cu);
10819 imported_name = dwarf2_name (imported_die, imported_cu);
10820 if (imported_name == NULL)
10821 {
b98664d3 10822 complaint (_("child DW_TAG_imported_declaration has unknown "
9d8780f0
SM
10823 "imported name - DIE at %s [in module %s]"),
10824 sect_offset_str (child_die->sect_off),
10825 objfile_name (objfile));
32019081
JK
10826 continue;
10827 }
10828
eb1e02fd 10829 excludes.push_back (imported_name);
32019081
JK
10830
10831 process_die (child_die, cu);
10832 }
10833
804d2729 10834 add_using_directive (using_directives (cu),
22cee43f
PMR
10835 import_prefix,
10836 canonical_name,
10837 import_alias,
10838 imported_declaration,
10839 excludes,
10840 0,
10841 &objfile->objfile_obstack);
27aa8d6a
SW
10842}
10843
5230b05a
WT
10844/* ICC<14 does not output the required DW_AT_declaration on incomplete
10845 types, but gives them a size of zero. Starting with version 14,
10846 ICC is compatible with GCC. */
10847
9068261f 10848static bool
5230b05a
WT
10849producer_is_icc_lt_14 (struct dwarf2_cu *cu)
10850{
10851 if (!cu->checked_producer)
10852 check_producer (cu);
10853
10854 return cu->producer_is_icc_lt_14;
10855}
10856
eb77c9df
AB
10857/* ICC generates a DW_AT_type for C void functions. This was observed on
10858 ICC 14.0.5.212, and appears to be against the DWARF spec (V5 3.3.2)
10859 which says that void functions should not have a DW_AT_type. */
10860
10861static bool
10862producer_is_icc (struct dwarf2_cu *cu)
10863{
10864 if (!cu->checked_producer)
10865 check_producer (cu);
10866
10867 return cu->producer_is_icc;
10868}
10869
1b80a9fa
JK
10870/* Check for possibly missing DW_AT_comp_dir with relative .debug_line
10871 directory paths. GCC SVN r127613 (new option -fdebug-prefix-map) fixed
10872 this, it was first present in GCC release 4.3.0. */
10873
9068261f 10874static bool
1b80a9fa
JK
10875producer_is_gcc_lt_4_3 (struct dwarf2_cu *cu)
10876{
10877 if (!cu->checked_producer)
10878 check_producer (cu);
10879
10880 return cu->producer_is_gcc_lt_4_3;
10881}
10882
d721ba37
PA
10883static file_and_directory
10884find_file_and_directory (struct die_info *die, struct dwarf2_cu *cu)
9291a0cd 10885{
d721ba37
PA
10886 file_and_directory res;
10887
9291a0cd
TT
10888 /* Find the filename. Do not use dwarf2_name here, since the filename
10889 is not a source language identifier. */
d721ba37
PA
10890 res.name = dwarf2_string_attr (die, DW_AT_name, cu);
10891 res.comp_dir = dwarf2_string_attr (die, DW_AT_comp_dir, cu);
9291a0cd 10892
d721ba37
PA
10893 if (res.comp_dir == NULL
10894 && producer_is_gcc_lt_4_3 (cu) && res.name != NULL
10895 && IS_ABSOLUTE_PATH (res.name))
9291a0cd 10896 {
d721ba37
PA
10897 res.comp_dir_storage = ldirname (res.name);
10898 if (!res.comp_dir_storage.empty ())
10899 res.comp_dir = res.comp_dir_storage.c_str ();
9291a0cd 10900 }
d721ba37 10901 if (res.comp_dir != NULL)
9291a0cd
TT
10902 {
10903 /* Irix 6.2 native cc prepends <machine>.: to the compilation
10904 directory, get rid of it. */
d721ba37 10905 const char *cp = strchr (res.comp_dir, ':');
9291a0cd 10906
d721ba37
PA
10907 if (cp && cp != res.comp_dir && cp[-1] == '.' && cp[1] == '/')
10908 res.comp_dir = cp + 1;
9291a0cd
TT
10909 }
10910
d721ba37
PA
10911 if (res.name == NULL)
10912 res.name = "<unknown>";
10913
10914 return res;
9291a0cd
TT
10915}
10916
f4dc4d17
DE
10917/* Handle DW_AT_stmt_list for a compilation unit.
10918 DIE is the DW_TAG_compile_unit die for CU.
c3b7b696
YQ
10919 COMP_DIR is the compilation directory. LOWPC is passed to
10920 dwarf_decode_lines. See dwarf_decode_lines comments about it. */
2ab95328
TT
10921
10922static void
10923handle_DW_AT_stmt_list (struct die_info *die, struct dwarf2_cu *cu,
c3b7b696 10924 const char *comp_dir, CORE_ADDR lowpc) /* ARI: editCase function */
2ab95328 10925{
976ca316 10926 dwarf2_per_objfile *per_objfile = cu->per_objfile;
2ab95328 10927 struct attribute *attr;
527f3840
JK
10928 struct line_header line_header_local;
10929 hashval_t line_header_local_hash;
527f3840
JK
10930 void **slot;
10931 int decode_mapping;
2ab95328 10932
f4dc4d17
DE
10933 gdb_assert (! cu->per_cu->is_debug_types);
10934
2ab95328 10935 attr = dwarf2_attr (die, DW_AT_stmt_list, cu);
527f3840
JK
10936 if (attr == NULL)
10937 return;
10938
9c541725 10939 sect_offset line_offset = (sect_offset) DW_UNSND (attr);
527f3840
JK
10940
10941 /* The line header hash table is only created if needed (it exists to
10942 prevent redundant reading of the line table for partial_units).
10943 If we're given a partial_unit, we'll need it. If we're given a
10944 compile_unit, then use the line header hash table if it's already
10945 created, but don't create one just yet. */
10946
976ca316 10947 if (per_objfile->line_header_hash == NULL
527f3840 10948 && die->tag == DW_TAG_partial_unit)
2ab95328 10949 {
976ca316 10950 per_objfile->line_header_hash
d15acc42
TT
10951 .reset (htab_create_alloc (127, line_header_hash_voidp,
10952 line_header_eq_voidp,
10953 free_line_header_voidp,
10954 xcalloc, xfree));
527f3840 10955 }
2ab95328 10956
9c541725 10957 line_header_local.sect_off = line_offset;
527f3840
JK
10958 line_header_local.offset_in_dwz = cu->per_cu->is_dwz;
10959 line_header_local_hash = line_header_hash (&line_header_local);
976ca316 10960 if (per_objfile->line_header_hash != NULL)
527f3840 10961 {
976ca316 10962 slot = htab_find_slot_with_hash (per_objfile->line_header_hash.get (),
527f3840
JK
10963 &line_header_local,
10964 line_header_local_hash, NO_INSERT);
10965
10966 /* For DW_TAG_compile_unit we need info like symtab::linetable which
10967 is not present in *SLOT (since if there is something in *SLOT then
10968 it will be for a partial_unit). */
10969 if (die->tag == DW_TAG_partial_unit && slot != NULL)
dee91e82 10970 {
527f3840 10971 gdb_assert (*slot != NULL);
9a3c8263 10972 cu->line_header = (struct line_header *) *slot;
527f3840 10973 return;
dee91e82 10974 }
2ab95328 10975 }
527f3840
JK
10976
10977 /* dwarf_decode_line_header does not yet provide sufficient information.
10978 We always have to call also dwarf_decode_lines for it. */
fff8551c
PA
10979 line_header_up lh = dwarf_decode_line_header (line_offset, cu);
10980 if (lh == NULL)
527f3840 10981 return;
4c8aa72d
PA
10982
10983 cu->line_header = lh.release ();
10984 cu->line_header_die_owner = die;
527f3840 10985
976ca316 10986 if (per_objfile->line_header_hash == NULL)
527f3840
JK
10987 slot = NULL;
10988 else
10989 {
976ca316 10990 slot = htab_find_slot_with_hash (per_objfile->line_header_hash.get (),
527f3840
JK
10991 &line_header_local,
10992 line_header_local_hash, INSERT);
10993 gdb_assert (slot != NULL);
10994 }
10995 if (slot != NULL && *slot == NULL)
10996 {
10997 /* This newly decoded line number information unit will be owned
10998 by line_header_hash hash table. */
10999 *slot = cu->line_header;
4c8aa72d 11000 cu->line_header_die_owner = NULL;
527f3840
JK
11001 }
11002 else
11003 {
11004 /* We cannot free any current entry in (*slot) as that struct line_header
11005 may be already used by multiple CUs. Create only temporary decoded
11006 line_header for this CU - it may happen at most once for each line
11007 number information unit. And if we're not using line_header_hash
11008 then this is what we want as well. */
11009 gdb_assert (die->tag != DW_TAG_partial_unit);
527f3840
JK
11010 }
11011 decode_mapping = (die->tag != DW_TAG_partial_unit);
11012 dwarf_decode_lines (cu->line_header, comp_dir, cu, NULL, lowpc,
11013 decode_mapping);
fff8551c 11014
2ab95328
TT
11015}
11016
95554aad 11017/* Process DW_TAG_compile_unit or DW_TAG_partial_unit. */
ae2de4f8 11018
c906108c 11019static void
e7c27a73 11020read_file_scope (struct die_info *die, struct dwarf2_cu *cu)
c906108c 11021{
976ca316
SM
11022 dwarf2_per_objfile *per_objfile = cu->per_objfile;
11023 struct objfile *objfile = per_objfile->objfile;
08feed99 11024 struct gdbarch *gdbarch = objfile->arch ();
2acceee2 11025 CORE_ADDR lowpc = ((CORE_ADDR) -1);
c906108c
SS
11026 CORE_ADDR highpc = ((CORE_ADDR) 0);
11027 struct attribute *attr;
c906108c 11028 struct die_info *child_die;
e142c38c 11029 CORE_ADDR baseaddr;
6e70227d 11030
380618d6 11031 prepare_one_comp_unit (cu, die, cu->language);
b3b3bada 11032 baseaddr = objfile->text_section_offset ();
c906108c 11033
fae299cd 11034 get_scope_pc_bounds (die, &lowpc, &highpc, cu);
c906108c
SS
11035
11036 /* If we didn't find a lowpc, set it to highpc to avoid complaints
11037 from finish_block. */
2acceee2 11038 if (lowpc == ((CORE_ADDR) -1))
c906108c 11039 lowpc = highpc;
3e29f34a 11040 lowpc = gdbarch_adjust_dwarf2_addr (gdbarch, lowpc + baseaddr);
c906108c 11041
d721ba37 11042 file_and_directory fnd = find_file_and_directory (die, cu);
e1024ff1 11043
f4b8a18d
KW
11044 /* The XLCL doesn't generate DW_LANG_OpenCL because this attribute is not
11045 standardised yet. As a workaround for the language detection we fall
11046 back to the DW_AT_producer string. */
11047 if (cu->producer && strstr (cu->producer, "IBM XL C for OpenCL") != NULL)
11048 cu->language = language_opencl;
11049
3019eac3
DE
11050 /* Similar hack for Go. */
11051 if (cu->producer && strstr (cu->producer, "GNU Go ") != NULL)
11052 set_cu_language (DW_LANG_Go, cu);
11053
c24bdb02 11054 cu->start_symtab (fnd.name, fnd.comp_dir, lowpc);
3019eac3
DE
11055
11056 /* Decode line number information if present. We do this before
11057 processing child DIEs, so that the line header table is available
11058 for DW_AT_decl_file. */
d721ba37 11059 handle_DW_AT_stmt_list (die, cu, fnd.comp_dir, lowpc);
3019eac3
DE
11060
11061 /* Process all dies in compilation unit. */
11062 if (die->child != NULL)
11063 {
11064 child_die = die->child;
11065 while (child_die && child_die->tag)
11066 {
11067 process_die (child_die, cu);
436c571c 11068 child_die = child_die->sibling;
3019eac3
DE
11069 }
11070 }
11071
11072 /* Decode macro information, if present. Dwarf 2 macro information
11073 refers to information in the line number info statement program
11074 header, so we can only read it if we've read the header
11075 successfully. */
0af92d60
JK
11076 attr = dwarf2_attr (die, DW_AT_macros, cu);
11077 if (attr == NULL)
11078 attr = dwarf2_attr (die, DW_AT_GNU_macros, cu);
3019eac3
DE
11079 if (attr && cu->line_header)
11080 {
11081 if (dwarf2_attr (die, DW_AT_macro_info, cu))
b98664d3 11082 complaint (_("CU refers to both DW_AT_macros and DW_AT_macro_info"));
3019eac3 11083
43f3e411 11084 dwarf_decode_macros (cu, DW_UNSND (attr), 1);
3019eac3
DE
11085 }
11086 else
11087 {
11088 attr = dwarf2_attr (die, DW_AT_macro_info, cu);
11089 if (attr && cu->line_header)
11090 {
11091 unsigned int macro_offset = DW_UNSND (attr);
11092
43f3e411 11093 dwarf_decode_macros (cu, macro_offset, 0);
3019eac3
DE
11094 }
11095 }
3019eac3
DE
11096}
11097
c24bdb02
KS
11098void
11099dwarf2_cu::setup_type_unit_groups (struct die_info *die)
3019eac3 11100{
f4dc4d17
DE
11101 struct type_unit_group *tu_group;
11102 int first_time;
3019eac3 11103 struct attribute *attr;
9c541725 11104 unsigned int i;
0186c6a7 11105 struct signatured_type *sig_type;
3019eac3 11106
f4dc4d17 11107 gdb_assert (per_cu->is_debug_types);
0186c6a7 11108 sig_type = (struct signatured_type *) per_cu;
3019eac3 11109
c24bdb02 11110 attr = dwarf2_attr (die, DW_AT_stmt_list, this);
3019eac3 11111
f4dc4d17 11112 /* If we're using .gdb_index (includes -readnow) then
74e04d1c 11113 per_cu->type_unit_group may not have been set up yet. */
0186c6a7 11114 if (sig_type->type_unit_group == NULL)
c24bdb02 11115 sig_type->type_unit_group = get_type_unit_group (this, attr);
0186c6a7 11116 tu_group = sig_type->type_unit_group;
f4dc4d17
DE
11117
11118 /* If we've already processed this stmt_list there's no real need to
11119 do it again, we could fake it and just recreate the part we need
11120 (file name,index -> symtab mapping). If data shows this optimization
11121 is useful we can do it then. */
8adb8487
TT
11122 type_unit_group_unshareable *tug_unshare
11123 = per_objfile->get_type_unit_group_unshareable (tu_group);
11124 first_time = tug_unshare->compunit_symtab == NULL;
f4dc4d17
DE
11125
11126 /* We have to handle the case of both a missing DW_AT_stmt_list or bad
11127 debug info. */
fff8551c 11128 line_header_up lh;
f4dc4d17 11129 if (attr != NULL)
3019eac3 11130 {
9c541725 11131 sect_offset line_offset = (sect_offset) DW_UNSND (attr);
c24bdb02 11132 lh = dwarf_decode_line_header (line_offset, this);
f4dc4d17
DE
11133 }
11134 if (lh == NULL)
11135 {
11136 if (first_time)
c24bdb02 11137 start_symtab ("", NULL, 0);
f4dc4d17
DE
11138 else
11139 {
8adb8487 11140 gdb_assert (tug_unshare->symtabs == NULL);
c24bdb02 11141 gdb_assert (m_builder == nullptr);
8adb8487 11142 struct compunit_symtab *cust = tug_unshare->compunit_symtab;
c24bdb02
KS
11143 m_builder.reset (new struct buildsym_compunit
11144 (COMPUNIT_OBJFILE (cust), "",
11145 COMPUNIT_DIRNAME (cust),
11146 compunit_language (cust),
11147 0, cust));
770479f2 11148 list_in_scope = get_builder ()->get_file_symbols ();
f4dc4d17 11149 }
f4dc4d17 11150 return;
3019eac3
DE
11151 }
11152
c24bdb02
KS
11153 line_header = lh.release ();
11154 line_header_die_owner = die;
3019eac3 11155
f4dc4d17
DE
11156 if (first_time)
11157 {
c24bdb02 11158 struct compunit_symtab *cust = start_symtab ("", NULL, 0);
3019eac3 11159
1fd60fc0
DE
11160 /* Note: We don't assign tu_group->compunit_symtab yet because we're
11161 still initializing it, and our caller (a few levels up)
11162 process_full_type_unit still needs to know if this is the first
11163 time. */
11164
8adb8487 11165 tug_unshare->symtabs
4ac93832
TT
11166 = XOBNEWVEC (&COMPUNIT_OBJFILE (cust)->objfile_obstack,
11167 struct symtab *, line_header->file_names_size ());
3019eac3 11168
7ba99d21
AT
11169 auto &file_names = line_header->file_names ();
11170 for (i = 0; i < file_names.size (); ++i)
f4dc4d17 11171 {
7ba99d21 11172 file_entry &fe = file_names[i];
c24bdb02
KS
11173 dwarf2_start_subfile (this, fe.name,
11174 fe.include_dir (line_header));
11175 buildsym_compunit *b = get_builder ();
11176 if (b->get_current_subfile ()->symtab == NULL)
f4dc4d17 11177 {
4c8aa72d
PA
11178 /* NOTE: start_subfile will recognize when it's been
11179 passed a file it has already seen. So we can't
11180 assume there's a simple mapping from
11181 cu->line_header->file_names to subfiles, plus
11182 cu->line_header->file_names may contain dups. */
c24bdb02
KS
11183 b->get_current_subfile ()->symtab
11184 = allocate_symtab (cust, b->get_current_subfile ()->name);
f4dc4d17
DE
11185 }
11186
c24bdb02 11187 fe.symtab = b->get_current_subfile ()->symtab;
8adb8487 11188 tug_unshare->symtabs[i] = fe.symtab;
f4dc4d17
DE
11189 }
11190 }
11191 else
3019eac3 11192 {
c24bdb02 11193 gdb_assert (m_builder == nullptr);
8adb8487 11194 struct compunit_symtab *cust = tug_unshare->compunit_symtab;
c24bdb02
KS
11195 m_builder.reset (new struct buildsym_compunit
11196 (COMPUNIT_OBJFILE (cust), "",
11197 COMPUNIT_DIRNAME (cust),
11198 compunit_language (cust),
11199 0, cust));
770479f2 11200 list_in_scope = get_builder ()->get_file_symbols ();
f4dc4d17 11201
7ba99d21
AT
11202 auto &file_names = line_header->file_names ();
11203 for (i = 0; i < file_names.size (); ++i)
f4dc4d17 11204 {
7ba99d21 11205 file_entry &fe = file_names[i];
8adb8487 11206 fe.symtab = tug_unshare->symtabs[i];
f4dc4d17 11207 }
3019eac3
DE
11208 }
11209
f4dc4d17
DE
11210 /* The main symtab is allocated last. Type units don't have DW_AT_name
11211 so they don't have a "real" (so to speak) symtab anyway.
11212 There is later code that will assign the main symtab to all symbols
11213 that don't have one. We need to handle the case of a symbol with a
11214 missing symtab (DW_AT_decl_file) anyway. */
11215}
3019eac3 11216
f4dc4d17
DE
11217/* Process DW_TAG_type_unit.
11218 For TUs we want to skip the first top level sibling if it's not the
11219 actual type being defined by this TU. In this case the first top
11220 level sibling is there to provide context only. */
3019eac3 11221
f4dc4d17
DE
11222static void
11223read_type_unit_scope (struct die_info *die, struct dwarf2_cu *cu)
11224{
11225 struct die_info *child_die;
3019eac3 11226
f4dc4d17
DE
11227 prepare_one_comp_unit (cu, die, language_minimal);
11228
11229 /* Initialize (or reinitialize) the machinery for building symtabs.
11230 We do this before processing child DIEs, so that the line header table
11231 is available for DW_AT_decl_file. */
c24bdb02 11232 cu->setup_type_unit_groups (die);
f4dc4d17
DE
11233
11234 if (die->child != NULL)
11235 {
11236 child_die = die->child;
11237 while (child_die && child_die->tag)
11238 {
11239 process_die (child_die, cu);
436c571c 11240 child_die = child_die->sibling;
f4dc4d17
DE
11241 }
11242 }
3019eac3
DE
11243}
11244\f
80626a55
DE
11245/* DWO/DWP files.
11246
11247 http://gcc.gnu.org/wiki/DebugFission
11248 http://gcc.gnu.org/wiki/DebugFissionDWP
11249
11250 To simplify handling of both DWO files ("object" files with the DWARF info)
11251 and DWP files (a file with the DWOs packaged up into one file), we treat
11252 DWP files as having a collection of virtual DWO files. */
3019eac3
DE
11253
11254static hashval_t
11255hash_dwo_file (const void *item)
11256{
9a3c8263 11257 const struct dwo_file *dwo_file = (const struct dwo_file *) item;
a2ce51a0 11258 hashval_t hash;
3019eac3 11259
a2ce51a0
DE
11260 hash = htab_hash_string (dwo_file->dwo_name);
11261 if (dwo_file->comp_dir != NULL)
11262 hash += htab_hash_string (dwo_file->comp_dir);
11263 return hash;
3019eac3
DE
11264}
11265
11266static int
11267eq_dwo_file (const void *item_lhs, const void *item_rhs)
11268{
9a3c8263
SM
11269 const struct dwo_file *lhs = (const struct dwo_file *) item_lhs;
11270 const struct dwo_file *rhs = (const struct dwo_file *) item_rhs;
3019eac3 11271
a2ce51a0
DE
11272 if (strcmp (lhs->dwo_name, rhs->dwo_name) != 0)
11273 return 0;
11274 if (lhs->comp_dir == NULL || rhs->comp_dir == NULL)
11275 return lhs->comp_dir == rhs->comp_dir;
11276 return strcmp (lhs->comp_dir, rhs->comp_dir) == 0;
3019eac3
DE
11277}
11278
11279/* Allocate a hash table for DWO files. */
11280
51ac9db5 11281static htab_up
298e9637 11282allocate_dwo_file_hash_table ()
3019eac3 11283{
51ac9db5
SM
11284 auto delete_dwo_file = [] (void *item)
11285 {
11286 struct dwo_file *dwo_file = (struct dwo_file *) item;
11287
11288 delete dwo_file;
11289 };
11290
bc68fb19
TT
11291 return htab_up (htab_create_alloc (41,
11292 hash_dwo_file,
11293 eq_dwo_file,
11294 delete_dwo_file,
11295 xcalloc, xfree));
3019eac3
DE
11296}
11297
80626a55
DE
11298/* Lookup DWO file DWO_NAME. */
11299
11300static void **
976ca316 11301lookup_dwo_file_slot (dwarf2_per_objfile *per_objfile,
ed2dc618
SM
11302 const char *dwo_name,
11303 const char *comp_dir)
80626a55
DE
11304{
11305 struct dwo_file find_entry;
11306 void **slot;
11307
976ca316
SM
11308 if (per_objfile->per_bfd->dwo_files == NULL)
11309 per_objfile->per_bfd->dwo_files = allocate_dwo_file_hash_table ();
80626a55 11310
0ac5b59e
DE
11311 find_entry.dwo_name = dwo_name;
11312 find_entry.comp_dir = comp_dir;
976ca316 11313 slot = htab_find_slot (per_objfile->per_bfd->dwo_files.get (), &find_entry,
51ac9db5 11314 INSERT);
80626a55
DE
11315
11316 return slot;
11317}
11318
3019eac3
DE
11319static hashval_t
11320hash_dwo_unit (const void *item)
11321{
9a3c8263 11322 const struct dwo_unit *dwo_unit = (const struct dwo_unit *) item;
3019eac3
DE
11323
11324 /* This drops the top 32 bits of the id, but is ok for a hash. */
11325 return dwo_unit->signature;
11326}
11327
11328static int
11329eq_dwo_unit (const void *item_lhs, const void *item_rhs)
11330{
9a3c8263
SM
11331 const struct dwo_unit *lhs = (const struct dwo_unit *) item_lhs;
11332 const struct dwo_unit *rhs = (const struct dwo_unit *) item_rhs;
3019eac3
DE
11333
11334 /* The signature is assumed to be unique within the DWO file.
11335 So while object file CU dwo_id's always have the value zero,
11336 that's OK, assuming each object file DWO file has only one CU,
11337 and that's the rule for now. */
11338 return lhs->signature == rhs->signature;
11339}
11340
11341/* Allocate a hash table for DWO CUs,TUs.
11342 There is one of these tables for each of CUs,TUs for each DWO file. */
11343
b0b6a987 11344static htab_up
298e9637 11345allocate_dwo_unit_table ()
3019eac3
DE
11346{
11347 /* Start out with a pretty small number.
11348 Generally DWO files contain only one CU and maybe some TUs. */
b0b6a987
TT
11349 return htab_up (htab_create_alloc (3,
11350 hash_dwo_unit,
11351 eq_dwo_unit,
11352 NULL, xcalloc, xfree));
3019eac3
DE
11353}
11354
19c3d4c9 11355/* die_reader_func for create_dwo_cu. */
3019eac3
DE
11356
11357static void
19c3d4c9
DE
11358create_dwo_cu_reader (const struct die_reader_specs *reader,
11359 const gdb_byte *info_ptr,
11360 struct die_info *comp_unit_die,
c0ab21c2
TT
11361 struct dwo_file *dwo_file,
11362 struct dwo_unit *dwo_unit)
3019eac3
DE
11363{
11364 struct dwarf2_cu *cu = reader->cu;
9c541725 11365 sect_offset sect_off = cu->per_cu->sect_off;
8a0459fd 11366 struct dwarf2_section_info *section = cu->per_cu->section;
3019eac3 11367
a084a2a6
AT
11368 gdb::optional<ULONGEST> signature = lookup_dwo_id (cu, comp_unit_die);
11369 if (!signature.has_value ())
3019eac3 11370 {
b98664d3 11371 complaint (_("Dwarf Error: debug entry at offset %s is missing"
19c3d4c9 11372 " its dwo_id [in module %s]"),
9d8780f0 11373 sect_offset_str (sect_off), dwo_file->dwo_name);
3019eac3
DE
11374 return;
11375 }
11376
3019eac3 11377 dwo_unit->dwo_file = dwo_file;
a084a2a6 11378 dwo_unit->signature = *signature;
8a0459fd 11379 dwo_unit->section = section;
9c541725 11380 dwo_unit->sect_off = sect_off;
3019eac3
DE
11381 dwo_unit->length = cu->per_cu->length;
11382
b4f54984 11383 if (dwarf_read_debug)
9d8780f0
SM
11384 fprintf_unfiltered (gdb_stdlog, " offset %s, dwo_id %s\n",
11385 sect_offset_str (sect_off),
9c541725 11386 hex_string (dwo_unit->signature));
3019eac3
DE
11387}
11388
33c5cd75 11389/* Create the dwo_units for the CUs in a DWO_FILE.
19c3d4c9 11390 Note: This function processes DWO files only, not DWP files. */
3019eac3 11391
33c5cd75 11392static void
976ca316 11393create_cus_hash_table (dwarf2_per_objfile *per_objfile,
18a8505e 11394 dwarf2_cu *cu, struct dwo_file &dwo_file,
b0b6a987 11395 dwarf2_section_info &section, htab_up &cus_htab)
3019eac3 11396{
976ca316
SM
11397 struct objfile *objfile = per_objfile->objfile;
11398 dwarf2_per_bfd *per_bfd = per_objfile->per_bfd;
d521ce57 11399 const gdb_byte *info_ptr, *end_ptr;
3019eac3 11400
96b79293 11401 section.read (objfile);
33c5cd75 11402 info_ptr = section.buffer;
3019eac3
DE
11403
11404 if (info_ptr == NULL)
33c5cd75 11405 return;
3019eac3 11406
b4f54984 11407 if (dwarf_read_debug)
19c3d4c9
DE
11408 {
11409 fprintf_unfiltered (gdb_stdlog, "Reading %s for %s:\n",
96b79293
TT
11410 section.get_name (),
11411 section.get_file_name ());
19c3d4c9 11412 }
3019eac3 11413
33c5cd75 11414 end_ptr = info_ptr + section.size;
3019eac3
DE
11415 while (info_ptr < end_ptr)
11416 {
11417 struct dwarf2_per_cu_data per_cu;
c0ab21c2 11418 struct dwo_unit read_unit {};
33c5cd75
DB
11419 struct dwo_unit *dwo_unit;
11420 void **slot;
11421 sect_offset sect_off = (sect_offset) (info_ptr - section.buffer);
3019eac3
DE
11422
11423 memset (&per_cu, 0, sizeof (per_cu));
1859c670 11424 per_cu.per_bfd = per_bfd;
3019eac3 11425 per_cu.is_debug_types = 0;
33c5cd75
DB
11426 per_cu.sect_off = sect_offset (info_ptr - section.buffer);
11427 per_cu.section = &section;
11428
976ca316 11429 cutu_reader reader (&per_cu, per_objfile, cu, &dwo_file);
c0ab21c2
TT
11430 if (!reader.dummy_p)
11431 create_dwo_cu_reader (&reader, reader.info_ptr, reader.comp_unit_die,
3e225074 11432 &dwo_file, &read_unit);
33c5cd75
DB
11433 info_ptr += per_cu.length;
11434
11435 // If the unit could not be parsed, skip it.
c0ab21c2 11436 if (read_unit.dwo_file == NULL)
33c5cd75 11437 continue;
3019eac3 11438
33c5cd75 11439 if (cus_htab == NULL)
298e9637 11440 cus_htab = allocate_dwo_unit_table ();
19c3d4c9 11441
1859c670 11442 dwo_unit = OBSTACK_ZALLOC (&per_bfd->obstack,
45940949 11443 struct dwo_unit);
c0ab21c2 11444 *dwo_unit = read_unit;
b0b6a987 11445 slot = htab_find_slot (cus_htab.get (), dwo_unit, INSERT);
33c5cd75
DB
11446 gdb_assert (slot != NULL);
11447 if (*slot != NULL)
19c3d4c9 11448 {
33c5cd75
DB
11449 const struct dwo_unit *dup_cu = (const struct dwo_unit *)*slot;
11450 sect_offset dup_sect_off = dup_cu->sect_off;
19c3d4c9 11451
b98664d3 11452 complaint (_("debug cu entry at offset %s is duplicate to"
9d8780f0
SM
11453 " the entry at offset %s, signature %s"),
11454 sect_offset_str (sect_off), sect_offset_str (dup_sect_off),
33c5cd75 11455 hex_string (dwo_unit->signature));
19c3d4c9 11456 }
33c5cd75 11457 *slot = (void *)dwo_unit;
3019eac3 11458 }
3019eac3
DE
11459}
11460
80626a55
DE
11461/* DWP file .debug_{cu,tu}_index section format:
11462 [ref: http://gcc.gnu.org/wiki/DebugFissionDWP]
11463
d2415c6c
DE
11464 DWP Version 1:
11465
80626a55
DE
11466 Both index sections have the same format, and serve to map a 64-bit
11467 signature to a set of section numbers. Each section begins with a header,
11468 followed by a hash table of 64-bit signatures, a parallel table of 32-bit
11469 indexes, and a pool of 32-bit section numbers. The index sections will be
11470 aligned at 8-byte boundaries in the file.
11471
d2415c6c
DE
11472 The index section header consists of:
11473
11474 V, 32 bit version number
11475 -, 32 bits unused
11476 N, 32 bit number of compilation units or type units in the index
11477 M, 32 bit number of slots in the hash table
80626a55 11478
d2415c6c 11479 Numbers are recorded using the byte order of the application binary.
80626a55 11480
d2415c6c
DE
11481 The hash table begins at offset 16 in the section, and consists of an array
11482 of M 64-bit slots. Each slot contains a 64-bit signature (using the byte
11483 order of the application binary). Unused slots in the hash table are 0.
11484 (We rely on the extreme unlikeliness of a signature being exactly 0.)
80626a55 11485
d2415c6c
DE
11486 The parallel table begins immediately after the hash table
11487 (at offset 16 + 8 * M from the beginning of the section), and consists of an
11488 array of 32-bit indexes (using the byte order of the application binary),
11489 corresponding 1-1 with slots in the hash table. Each entry in the parallel
11490 table contains a 32-bit index into the pool of section numbers. For unused
11491 hash table slots, the corresponding entry in the parallel table will be 0.
80626a55 11492
73869dc2
DE
11493 The pool of section numbers begins immediately following the hash table
11494 (at offset 16 + 12 * M from the beginning of the section). The pool of
11495 section numbers consists of an array of 32-bit words (using the byte order
11496 of the application binary). Each item in the array is indexed starting
11497 from 0. The hash table entry provides the index of the first section
11498 number in the set. Additional section numbers in the set follow, and the
11499 set is terminated by a 0 entry (section number 0 is not used in ELF).
11500
11501 In each set of section numbers, the .debug_info.dwo or .debug_types.dwo
11502 section must be the first entry in the set, and the .debug_abbrev.dwo must
11503 be the second entry. Other members of the set may follow in any order.
11504
11505 ---
11506
11507 DWP Version 2:
11508
11509 DWP Version 2 combines all the .debug_info, etc. sections into one,
11510 and the entries in the index tables are now offsets into these sections.
11511 CU offsets begin at 0. TU offsets begin at the size of the .debug_info
11512 section.
11513
11514 Index Section Contents:
11515 Header
11516 Hash Table of Signatures dwp_hash_table.hash_table
11517 Parallel Table of Indices dwp_hash_table.unit_table
11518 Table of Section Offsets dwp_hash_table.v2.{section_ids,offsets}
11519 Table of Section Sizes dwp_hash_table.v2.sizes
11520
11521 The index section header consists of:
11522
11523 V, 32 bit version number
11524 L, 32 bit number of columns in the table of section offsets
11525 N, 32 bit number of compilation units or type units in the index
11526 M, 32 bit number of slots in the hash table
11527
11528 Numbers are recorded using the byte order of the application binary.
11529
11530 The hash table has the same format as version 1.
11531 The parallel table of indices has the same format as version 1,
11532 except that the entries are origin-1 indices into the table of sections
11533 offsets and the table of section sizes.
11534
11535 The table of offsets begins immediately following the parallel table
11536 (at offset 16 + 12 * M from the beginning of the section). The table is
11537 a two-dimensional array of 32-bit words (using the byte order of the
11538 application binary), with L columns and N+1 rows, in row-major order.
11539 Each row in the array is indexed starting from 0. The first row provides
11540 a key to the remaining rows: each column in this row provides an identifier
11541 for a debug section, and the offsets in the same column of subsequent rows
11542 refer to that section. The section identifiers are:
11543
11544 DW_SECT_INFO 1 .debug_info.dwo
11545 DW_SECT_TYPES 2 .debug_types.dwo
11546 DW_SECT_ABBREV 3 .debug_abbrev.dwo
11547 DW_SECT_LINE 4 .debug_line.dwo
11548 DW_SECT_LOC 5 .debug_loc.dwo
11549 DW_SECT_STR_OFFSETS 6 .debug_str_offsets.dwo
11550 DW_SECT_MACINFO 7 .debug_macinfo.dwo
11551 DW_SECT_MACRO 8 .debug_macro.dwo
11552
11553 The offsets provided by the CU and TU index sections are the base offsets
11554 for the contributions made by each CU or TU to the corresponding section
11555 in the package file. Each CU and TU header contains an abbrev_offset
11556 field, used to find the abbreviations table for that CU or TU within the
11557 contribution to the .debug_abbrev.dwo section for that CU or TU, and should
11558 be interpreted as relative to the base offset given in the index section.
11559 Likewise, offsets into .debug_line.dwo from DW_AT_stmt_list attributes
11560 should be interpreted as relative to the base offset for .debug_line.dwo,
11561 and offsets into other debug sections obtained from DWARF attributes should
11562 also be interpreted as relative to the corresponding base offset.
11563
11564 The table of sizes begins immediately following the table of offsets.
11565 Like the table of offsets, it is a two-dimensional array of 32-bit words,
11566 with L columns and N rows, in row-major order. Each row in the array is
11567 indexed starting from 1 (row 0 is shared by the two tables).
11568
11569 ---
11570
11571 Hash table lookup is handled the same in version 1 and 2:
11572
11573 We assume that N and M will not exceed 2^32 - 1.
11574 The size of the hash table, M, must be 2^k such that 2^k > 3*N/2.
11575
d2415c6c
DE
11576 Given a 64-bit compilation unit signature or a type signature S, an entry
11577 in the hash table is located as follows:
80626a55 11578
d2415c6c
DE
11579 1) Calculate a primary hash H = S & MASK(k), where MASK(k) is a mask with
11580 the low-order k bits all set to 1.
80626a55 11581
d2415c6c 11582 2) Calculate a secondary hash H' = (((S >> 32) & MASK(k)) | 1).
80626a55 11583
d2415c6c
DE
11584 3) If the hash table entry at index H matches the signature, use that
11585 entry. If the hash table entry at index H is unused (all zeroes),
11586 terminate the search: the signature is not present in the table.
80626a55 11587
d2415c6c 11588 4) Let H = (H + H') modulo M. Repeat at Step 3.
80626a55 11589
d2415c6c 11590 Because M > N and H' and M are relatively prime, the search is guaranteed
73869dc2 11591 to stop at an unused slot or find the match. */
80626a55
DE
11592
11593/* Create a hash table to map DWO IDs to their CU/TU entry in
11594 .debug_{info,types}.dwo in DWP_FILE.
11595 Returns NULL if there isn't one.
11596 Note: This function processes DWP files only, not DWO files. */
11597
11598static struct dwp_hash_table *
976ca316 11599create_dwp_hash_table (dwarf2_per_objfile *per_objfile,
ed2dc618 11600 struct dwp_file *dwp_file, int is_debug_types)
80626a55 11601{
976ca316 11602 struct objfile *objfile = per_objfile->objfile;
400174b1 11603 bfd *dbfd = dwp_file->dbfd.get ();
948f8e3d 11604 const gdb_byte *index_ptr, *index_end;
80626a55 11605 struct dwarf2_section_info *index;
73869dc2 11606 uint32_t version, nr_columns, nr_units, nr_slots;
80626a55
DE
11607 struct dwp_hash_table *htab;
11608
11609 if (is_debug_types)
11610 index = &dwp_file->sections.tu_index;
11611 else
11612 index = &dwp_file->sections.cu_index;
11613
96b79293 11614 if (index->empty ())
80626a55 11615 return NULL;
96b79293 11616 index->read (objfile);
80626a55
DE
11617
11618 index_ptr = index->buffer;
11619 index_end = index_ptr + index->size;
11620
11621 version = read_4_bytes (dbfd, index_ptr);
73869dc2
DE
11622 index_ptr += 4;
11623 if (version == 2)
11624 nr_columns = read_4_bytes (dbfd, index_ptr);
11625 else
11626 nr_columns = 0;
11627 index_ptr += 4;
80626a55
DE
11628 nr_units = read_4_bytes (dbfd, index_ptr);
11629 index_ptr += 4;
11630 nr_slots = read_4_bytes (dbfd, index_ptr);
11631 index_ptr += 4;
11632
73869dc2 11633 if (version != 1 && version != 2)
80626a55 11634 {
21aa081e 11635 error (_("Dwarf Error: unsupported DWP file version (%s)"
80626a55 11636 " [in module %s]"),
21aa081e 11637 pulongest (version), dwp_file->name);
80626a55
DE
11638 }
11639 if (nr_slots != (nr_slots & -nr_slots))
11640 {
21aa081e 11641 error (_("Dwarf Error: number of slots in DWP hash table (%s)"
80626a55 11642 " is not power of 2 [in module %s]"),
21aa081e 11643 pulongest (nr_slots), dwp_file->name);
80626a55
DE
11644 }
11645
976ca316 11646 htab = OBSTACK_ZALLOC (&per_objfile->per_bfd->obstack, struct dwp_hash_table);
73869dc2
DE
11647 htab->version = version;
11648 htab->nr_columns = nr_columns;
80626a55
DE
11649 htab->nr_units = nr_units;
11650 htab->nr_slots = nr_slots;
11651 htab->hash_table = index_ptr;
11652 htab->unit_table = htab->hash_table + sizeof (uint64_t) * nr_slots;
73869dc2
DE
11653
11654 /* Exit early if the table is empty. */
11655 if (nr_slots == 0 || nr_units == 0
11656 || (version == 2 && nr_columns == 0))
11657 {
11658 /* All must be zero. */
11659 if (nr_slots != 0 || nr_units != 0
11660 || (version == 2 && nr_columns != 0))
11661 {
b98664d3 11662 complaint (_("Empty DWP but nr_slots,nr_units,nr_columns not"
73869dc2
DE
11663 " all zero [in modules %s]"),
11664 dwp_file->name);
11665 }
11666 return htab;
11667 }
11668
11669 if (version == 1)
11670 {
11671 htab->section_pool.v1.indices =
11672 htab->unit_table + sizeof (uint32_t) * nr_slots;
11673 /* It's harder to decide whether the section is too small in v1.
11674 V1 is deprecated anyway so we punt. */
11675 }
11676 else
11677 {
11678 const gdb_byte *ids_ptr = htab->unit_table + sizeof (uint32_t) * nr_slots;
11679 int *ids = htab->section_pool.v2.section_ids;
04fd5eed 11680 size_t sizeof_ids = sizeof (htab->section_pool.v2.section_ids);
73869dc2
DE
11681 /* Reverse map for error checking. */
11682 int ids_seen[DW_SECT_MAX + 1];
11683 int i;
11684
11685 if (nr_columns < 2)
11686 {
11687 error (_("Dwarf Error: bad DWP hash table, too few columns"
11688 " in section table [in module %s]"),
11689 dwp_file->name);
11690 }
11691 if (nr_columns > MAX_NR_V2_DWO_SECTIONS)
11692 {
11693 error (_("Dwarf Error: bad DWP hash table, too many columns"
11694 " in section table [in module %s]"),
11695 dwp_file->name);
11696 }
04fd5eed
GB
11697 memset (ids, 255, sizeof_ids);
11698 memset (ids_seen, 255, sizeof (ids_seen));
73869dc2
DE
11699 for (i = 0; i < nr_columns; ++i)
11700 {
11701 int id = read_4_bytes (dbfd, ids_ptr + i * sizeof (uint32_t));
11702
11703 if (id < DW_SECT_MIN || id > DW_SECT_MAX)
11704 {
11705 error (_("Dwarf Error: bad DWP hash table, bad section id %d"
11706 " in section table [in module %s]"),
11707 id, dwp_file->name);
11708 }
11709 if (ids_seen[id] != -1)
11710 {
11711 error (_("Dwarf Error: bad DWP hash table, duplicate section"
11712 " id %d in section table [in module %s]"),
11713 id, dwp_file->name);
11714 }
11715 ids_seen[id] = i;
11716 ids[i] = id;
11717 }
11718 /* Must have exactly one info or types section. */
11719 if (((ids_seen[DW_SECT_INFO] != -1)
11720 + (ids_seen[DW_SECT_TYPES] != -1))
11721 != 1)
11722 {
11723 error (_("Dwarf Error: bad DWP hash table, missing/duplicate"
11724 " DWO info/types section [in module %s]"),
11725 dwp_file->name);
11726 }
11727 /* Must have an abbrev section. */
11728 if (ids_seen[DW_SECT_ABBREV] == -1)
11729 {
11730 error (_("Dwarf Error: bad DWP hash table, missing DWO abbrev"
11731 " section [in module %s]"),
11732 dwp_file->name);
11733 }
11734 htab->section_pool.v2.offsets = ids_ptr + sizeof (uint32_t) * nr_columns;
11735 htab->section_pool.v2.sizes =
11736 htab->section_pool.v2.offsets + (sizeof (uint32_t)
11737 * nr_units * nr_columns);
11738 if ((htab->section_pool.v2.sizes + (sizeof (uint32_t)
11739 * nr_units * nr_columns))
11740 > index_end)
11741 {
11742 error (_("Dwarf Error: DWP index section is corrupt (too small)"
11743 " [in module %s]"),
11744 dwp_file->name);
11745 }
11746 }
80626a55
DE
11747
11748 return htab;
11749}
11750
11751/* Update SECTIONS with the data from SECTP.
11752
11753 This function is like the other "locate" section routines that are
11754 passed to bfd_map_over_sections, but in this context the sections to
73869dc2 11755 read comes from the DWP V1 hash table, not the full ELF section table.
80626a55
DE
11756
11757 The result is non-zero for success, or zero if an error was found. */
11758
11759static int
73869dc2
DE
11760locate_v1_virtual_dwo_sections (asection *sectp,
11761 struct virtual_v1_dwo_sections *sections)
80626a55
DE
11762{
11763 const struct dwop_section_names *names = &dwop_section_names;
11764
11765 if (section_is_p (sectp->name, &names->abbrev_dwo))
11766 {
11767 /* There can be only one. */
049412e3 11768 if (sections->abbrev.s.section != NULL)
80626a55 11769 return 0;
049412e3 11770 sections->abbrev.s.section = sectp;
fd361982 11771 sections->abbrev.size = bfd_section_size (sectp);
80626a55
DE
11772 }
11773 else if (section_is_p (sectp->name, &names->info_dwo)
11774 || section_is_p (sectp->name, &names->types_dwo))
11775 {
11776 /* There can be only one. */
049412e3 11777 if (sections->info_or_types.s.section != NULL)
80626a55 11778 return 0;
049412e3 11779 sections->info_or_types.s.section = sectp;
fd361982 11780 sections->info_or_types.size = bfd_section_size (sectp);
80626a55
DE
11781 }
11782 else if (section_is_p (sectp->name, &names->line_dwo))
11783 {
11784 /* There can be only one. */
049412e3 11785 if (sections->line.s.section != NULL)
80626a55 11786 return 0;
049412e3 11787 sections->line.s.section = sectp;
fd361982 11788 sections->line.size = bfd_section_size (sectp);
80626a55
DE
11789 }
11790 else if (section_is_p (sectp->name, &names->loc_dwo))
11791 {
11792 /* There can be only one. */
049412e3 11793 if (sections->loc.s.section != NULL)
80626a55 11794 return 0;
049412e3 11795 sections->loc.s.section = sectp;
fd361982 11796 sections->loc.size = bfd_section_size (sectp);
80626a55
DE
11797 }
11798 else if (section_is_p (sectp->name, &names->macinfo_dwo))
11799 {
11800 /* There can be only one. */
049412e3 11801 if (sections->macinfo.s.section != NULL)
80626a55 11802 return 0;
049412e3 11803 sections->macinfo.s.section = sectp;
fd361982 11804 sections->macinfo.size = bfd_section_size (sectp);
80626a55
DE
11805 }
11806 else if (section_is_p (sectp->name, &names->macro_dwo))
11807 {
11808 /* There can be only one. */
049412e3 11809 if (sections->macro.s.section != NULL)
80626a55 11810 return 0;
049412e3 11811 sections->macro.s.section = sectp;
fd361982 11812 sections->macro.size = bfd_section_size (sectp);
80626a55
DE
11813 }
11814 else if (section_is_p (sectp->name, &names->str_offsets_dwo))
11815 {
11816 /* There can be only one. */
049412e3 11817 if (sections->str_offsets.s.section != NULL)
80626a55 11818 return 0;
049412e3 11819 sections->str_offsets.s.section = sectp;
fd361982 11820 sections->str_offsets.size = bfd_section_size (sectp);
80626a55
DE
11821 }
11822 else
11823 {
11824 /* No other kind of section is valid. */
11825 return 0;
11826 }
11827
11828 return 1;
11829}
11830
73869dc2
DE
11831/* Create a dwo_unit object for the DWO unit with signature SIGNATURE.
11832 UNIT_INDEX is the index of the DWO unit in the DWP hash table.
11833 COMP_DIR is the DW_AT_comp_dir attribute of the referencing CU.
11834 This is for DWP version 1 files. */
80626a55
DE
11835
11836static struct dwo_unit *
976ca316 11837create_dwo_unit_in_dwp_v1 (dwarf2_per_objfile *per_objfile,
ed2dc618 11838 struct dwp_file *dwp_file,
73869dc2
DE
11839 uint32_t unit_index,
11840 const char *comp_dir,
11841 ULONGEST signature, int is_debug_types)
80626a55 11842{
73869dc2
DE
11843 const struct dwp_hash_table *dwp_htab =
11844 is_debug_types ? dwp_file->tus : dwp_file->cus;
400174b1 11845 bfd *dbfd = dwp_file->dbfd.get ();
80626a55
DE
11846 const char *kind = is_debug_types ? "TU" : "CU";
11847 struct dwo_file *dwo_file;
11848 struct dwo_unit *dwo_unit;
73869dc2 11849 struct virtual_v1_dwo_sections sections;
80626a55 11850 void **dwo_file_slot;
80626a55
DE
11851 int i;
11852
73869dc2
DE
11853 gdb_assert (dwp_file->version == 1);
11854
b4f54984 11855 if (dwarf_read_debug)
80626a55 11856 {
73869dc2 11857 fprintf_unfiltered (gdb_stdlog, "Reading %s %s/%s in DWP V1 file: %s\n",
80626a55 11858 kind,
73869dc2 11859 pulongest (unit_index), hex_string (signature),
80626a55
DE
11860 dwp_file->name);
11861 }
11862
19ac8c2e 11863 /* Fetch the sections of this DWO unit.
80626a55
DE
11864 Put a limit on the number of sections we look for so that bad data
11865 doesn't cause us to loop forever. */
11866
73869dc2 11867#define MAX_NR_V1_DWO_SECTIONS \
80626a55
DE
11868 (1 /* .debug_info or .debug_types */ \
11869 + 1 /* .debug_abbrev */ \
11870 + 1 /* .debug_line */ \
11871 + 1 /* .debug_loc */ \
11872 + 1 /* .debug_str_offsets */ \
19ac8c2e 11873 + 1 /* .debug_macro or .debug_macinfo */ \
80626a55
DE
11874 + 1 /* trailing zero */)
11875
11876 memset (&sections, 0, sizeof (sections));
80626a55 11877
73869dc2 11878 for (i = 0; i < MAX_NR_V1_DWO_SECTIONS; ++i)
80626a55
DE
11879 {
11880 asection *sectp;
11881 uint32_t section_nr =
11882 read_4_bytes (dbfd,
73869dc2
DE
11883 dwp_htab->section_pool.v1.indices
11884 + (unit_index + i) * sizeof (uint32_t));
80626a55
DE
11885
11886 if (section_nr == 0)
11887 break;
11888 if (section_nr >= dwp_file->num_sections)
11889 {
11890 error (_("Dwarf Error: bad DWP hash table, section number too large"
11891 " [in module %s]"),
11892 dwp_file->name);
11893 }
11894
11895 sectp = dwp_file->elf_sections[section_nr];
73869dc2 11896 if (! locate_v1_virtual_dwo_sections (sectp, &sections))
80626a55
DE
11897 {
11898 error (_("Dwarf Error: bad DWP hash table, invalid section found"
11899 " [in module %s]"),
11900 dwp_file->name);
11901 }
11902 }
11903
11904 if (i < 2
96b79293
TT
11905 || sections.info_or_types.empty ()
11906 || sections.abbrev.empty ())
80626a55
DE
11907 {
11908 error (_("Dwarf Error: bad DWP hash table, missing DWO sections"
11909 " [in module %s]"),
11910 dwp_file->name);
11911 }
73869dc2 11912 if (i == MAX_NR_V1_DWO_SECTIONS)
80626a55
DE
11913 {
11914 error (_("Dwarf Error: bad DWP hash table, too many DWO sections"
11915 " [in module %s]"),
11916 dwp_file->name);
11917 }
11918
11919 /* It's easier for the rest of the code if we fake a struct dwo_file and
11920 have dwo_unit "live" in that. At least for now.
11921
11922 The DWP file can be made up of a random collection of CUs and TUs.
c766f7ec 11923 However, for each CU + set of TUs that came from the same original DWO
57d63ce2
DE
11924 file, we can combine them back into a virtual DWO file to save space
11925 (fewer struct dwo_file objects to allocate). Remember that for really
80626a55
DE
11926 large apps there can be on the order of 8K CUs and 200K TUs, or more. */
11927
791afaa2
TT
11928 std::string virtual_dwo_name =
11929 string_printf ("virtual-dwo/%d-%d-%d-%d",
96b79293
TT
11930 sections.abbrev.get_id (),
11931 sections.line.get_id (),
11932 sections.loc.get_id (),
11933 sections.str_offsets.get_id ());
80626a55 11934 /* Can we use an existing virtual DWO file? */
976ca316 11935 dwo_file_slot = lookup_dwo_file_slot (per_objfile, virtual_dwo_name.c_str (),
ed2dc618 11936 comp_dir);
80626a55
DE
11937 /* Create one if necessary. */
11938 if (*dwo_file_slot == NULL)
11939 {
b4f54984 11940 if (dwarf_read_debug)
80626a55
DE
11941 {
11942 fprintf_unfiltered (gdb_stdlog, "Creating virtual DWO: %s\n",
791afaa2 11943 virtual_dwo_name.c_str ());
80626a55 11944 }
51ac9db5 11945 dwo_file = new struct dwo_file;
976ca316 11946 dwo_file->dwo_name = per_objfile->objfile->intern (virtual_dwo_name);
0ac5b59e 11947 dwo_file->comp_dir = comp_dir;
80626a55
DE
11948 dwo_file->sections.abbrev = sections.abbrev;
11949 dwo_file->sections.line = sections.line;
11950 dwo_file->sections.loc = sections.loc;
11951 dwo_file->sections.macinfo = sections.macinfo;
11952 dwo_file->sections.macro = sections.macro;
11953 dwo_file->sections.str_offsets = sections.str_offsets;
11954 /* The "str" section is global to the entire DWP file. */
11955 dwo_file->sections.str = dwp_file->sections.str;
57d63ce2 11956 /* The info or types section is assigned below to dwo_unit,
80626a55
DE
11957 there's no need to record it in dwo_file.
11958 Also, we can't simply record type sections in dwo_file because
11959 we record a pointer into the vector in dwo_unit. As we collect more
11960 types we'll grow the vector and eventually have to reallocate space
57d63ce2
DE
11961 for it, invalidating all copies of pointers into the previous
11962 contents. */
80626a55
DE
11963 *dwo_file_slot = dwo_file;
11964 }
11965 else
11966 {
b4f54984 11967 if (dwarf_read_debug)
80626a55
DE
11968 {
11969 fprintf_unfiltered (gdb_stdlog, "Using existing virtual DWO: %s\n",
791afaa2 11970 virtual_dwo_name.c_str ());
80626a55 11971 }
9a3c8263 11972 dwo_file = (struct dwo_file *) *dwo_file_slot;
80626a55 11973 }
80626a55 11974
976ca316 11975 dwo_unit = OBSTACK_ZALLOC (&per_objfile->per_bfd->obstack, struct dwo_unit);
80626a55
DE
11976 dwo_unit->dwo_file = dwo_file;
11977 dwo_unit->signature = signature;
8d749320 11978 dwo_unit->section =
976ca316 11979 XOBNEW (&per_objfile->per_bfd->obstack, struct dwarf2_section_info);
8a0459fd 11980 *dwo_unit->section = sections.info_or_types;
57d63ce2 11981 /* dwo_unit->{offset,length,type_offset_in_tu} are set later. */
80626a55
DE
11982
11983 return dwo_unit;
11984}
11985
73869dc2
DE
11986/* Subroutine of create_dwo_unit_in_dwp_v2 to simplify it.
11987 Given a pointer to the containing section SECTION, and OFFSET,SIZE of the
11988 piece within that section used by a TU/CU, return a virtual section
11989 of just that piece. */
11990
11991static struct dwarf2_section_info
976ca316 11992create_dwp_v2_section (dwarf2_per_objfile *per_objfile,
ed2dc618 11993 struct dwarf2_section_info *section,
73869dc2
DE
11994 bfd_size_type offset, bfd_size_type size)
11995{
11996 struct dwarf2_section_info result;
11997 asection *sectp;
11998
11999 gdb_assert (section != NULL);
12000 gdb_assert (!section->is_virtual);
12001
12002 memset (&result, 0, sizeof (result));
12003 result.s.containing_section = section;
dc4ccb6f 12004 result.is_virtual = true;
73869dc2
DE
12005
12006 if (size == 0)
12007 return result;
12008
96b79293 12009 sectp = section->get_bfd_section ();
73869dc2
DE
12010
12011 /* Flag an error if the piece denoted by OFFSET,SIZE is outside the
12012 bounds of the real section. This is a pretty-rare event, so just
12013 flag an error (easier) instead of a warning and trying to cope. */
12014 if (sectp == NULL
fd361982 12015 || offset + size > bfd_section_size (sectp))
73869dc2 12016 {
73869dc2
DE
12017 error (_("Dwarf Error: Bad DWP V2 section info, doesn't fit"
12018 " in section %s [in module %s]"),
fd361982 12019 sectp ? bfd_section_name (sectp) : "<unknown>",
976ca316 12020 objfile_name (per_objfile->objfile));
73869dc2
DE
12021 }
12022
12023 result.virtual_offset = offset;
12024 result.size = size;
12025 return result;
12026}
12027
12028/* Create a dwo_unit object for the DWO unit with signature SIGNATURE.
12029 UNIT_INDEX is the index of the DWO unit in the DWP hash table.
12030 COMP_DIR is the DW_AT_comp_dir attribute of the referencing CU.
12031 This is for DWP version 2 files. */
12032
12033static struct dwo_unit *
976ca316 12034create_dwo_unit_in_dwp_v2 (dwarf2_per_objfile *per_objfile,
ed2dc618 12035 struct dwp_file *dwp_file,
73869dc2
DE
12036 uint32_t unit_index,
12037 const char *comp_dir,
12038 ULONGEST signature, int is_debug_types)
12039{
73869dc2
DE
12040 const struct dwp_hash_table *dwp_htab =
12041 is_debug_types ? dwp_file->tus : dwp_file->cus;
400174b1 12042 bfd *dbfd = dwp_file->dbfd.get ();
73869dc2
DE
12043 const char *kind = is_debug_types ? "TU" : "CU";
12044 struct dwo_file *dwo_file;
12045 struct dwo_unit *dwo_unit;
12046 struct virtual_v2_dwo_sections sections;
12047 void **dwo_file_slot;
73869dc2
DE
12048 int i;
12049
12050 gdb_assert (dwp_file->version == 2);
12051
b4f54984 12052 if (dwarf_read_debug)
73869dc2
DE
12053 {
12054 fprintf_unfiltered (gdb_stdlog, "Reading %s %s/%s in DWP V2 file: %s\n",
12055 kind,
12056 pulongest (unit_index), hex_string (signature),
12057 dwp_file->name);
12058 }
12059
12060 /* Fetch the section offsets of this DWO unit. */
12061
12062 memset (&sections, 0, sizeof (sections));
73869dc2
DE
12063
12064 for (i = 0; i < dwp_htab->nr_columns; ++i)
12065 {
12066 uint32_t offset = read_4_bytes (dbfd,
12067 dwp_htab->section_pool.v2.offsets
12068 + (((unit_index - 1) * dwp_htab->nr_columns
12069 + i)
12070 * sizeof (uint32_t)));
12071 uint32_t size = read_4_bytes (dbfd,
12072 dwp_htab->section_pool.v2.sizes
12073 + (((unit_index - 1) * dwp_htab->nr_columns
12074 + i)
12075 * sizeof (uint32_t)));
12076
12077 switch (dwp_htab->section_pool.v2.section_ids[i])
12078 {
12079 case DW_SECT_INFO:
12080 case DW_SECT_TYPES:
12081 sections.info_or_types_offset = offset;
12082 sections.info_or_types_size = size;
12083 break;
12084 case DW_SECT_ABBREV:
12085 sections.abbrev_offset = offset;
12086 sections.abbrev_size = size;
12087 break;
12088 case DW_SECT_LINE:
12089 sections.line_offset = offset;
12090 sections.line_size = size;
12091 break;
12092 case DW_SECT_LOC:
12093 sections.loc_offset = offset;
12094 sections.loc_size = size;
12095 break;
12096 case DW_SECT_STR_OFFSETS:
12097 sections.str_offsets_offset = offset;
12098 sections.str_offsets_size = size;
12099 break;
12100 case DW_SECT_MACINFO:
12101 sections.macinfo_offset = offset;
12102 sections.macinfo_size = size;
12103 break;
12104 case DW_SECT_MACRO:
12105 sections.macro_offset = offset;
12106 sections.macro_size = size;
12107 break;
12108 }
12109 }
12110
12111 /* It's easier for the rest of the code if we fake a struct dwo_file and
12112 have dwo_unit "live" in that. At least for now.
12113
12114 The DWP file can be made up of a random collection of CUs and TUs.
12115 However, for each CU + set of TUs that came from the same original DWO
12116 file, we can combine them back into a virtual DWO file to save space
12117 (fewer struct dwo_file objects to allocate). Remember that for really
12118 large apps there can be on the order of 8K CUs and 200K TUs, or more. */
12119
791afaa2
TT
12120 std::string virtual_dwo_name =
12121 string_printf ("virtual-dwo/%ld-%ld-%ld-%ld",
12122 (long) (sections.abbrev_size ? sections.abbrev_offset : 0),
12123 (long) (sections.line_size ? sections.line_offset : 0),
12124 (long) (sections.loc_size ? sections.loc_offset : 0),
12125 (long) (sections.str_offsets_size
12126 ? sections.str_offsets_offset : 0));
73869dc2 12127 /* Can we use an existing virtual DWO file? */
976ca316 12128 dwo_file_slot = lookup_dwo_file_slot (per_objfile, virtual_dwo_name.c_str (),
ed2dc618 12129 comp_dir);
73869dc2
DE
12130 /* Create one if necessary. */
12131 if (*dwo_file_slot == NULL)
12132 {
b4f54984 12133 if (dwarf_read_debug)
73869dc2
DE
12134 {
12135 fprintf_unfiltered (gdb_stdlog, "Creating virtual DWO: %s\n",
791afaa2 12136 virtual_dwo_name.c_str ());
73869dc2 12137 }
51ac9db5 12138 dwo_file = new struct dwo_file;
976ca316 12139 dwo_file->dwo_name = per_objfile->objfile->intern (virtual_dwo_name);
73869dc2
DE
12140 dwo_file->comp_dir = comp_dir;
12141 dwo_file->sections.abbrev =
976ca316 12142 create_dwp_v2_section (per_objfile, &dwp_file->sections.abbrev,
73869dc2
DE
12143 sections.abbrev_offset, sections.abbrev_size);
12144 dwo_file->sections.line =
976ca316 12145 create_dwp_v2_section (per_objfile, &dwp_file->sections.line,
73869dc2
DE
12146 sections.line_offset, sections.line_size);
12147 dwo_file->sections.loc =
976ca316 12148 create_dwp_v2_section (per_objfile, &dwp_file->sections.loc,
73869dc2
DE
12149 sections.loc_offset, sections.loc_size);
12150 dwo_file->sections.macinfo =
976ca316 12151 create_dwp_v2_section (per_objfile, &dwp_file->sections.macinfo,
73869dc2
DE
12152 sections.macinfo_offset, sections.macinfo_size);
12153 dwo_file->sections.macro =
976ca316 12154 create_dwp_v2_section (per_objfile, &dwp_file->sections.macro,
73869dc2
DE
12155 sections.macro_offset, sections.macro_size);
12156 dwo_file->sections.str_offsets =
976ca316 12157 create_dwp_v2_section (per_objfile,
ed2dc618 12158 &dwp_file->sections.str_offsets,
73869dc2
DE
12159 sections.str_offsets_offset,
12160 sections.str_offsets_size);
12161 /* The "str" section is global to the entire DWP file. */
12162 dwo_file->sections.str = dwp_file->sections.str;
12163 /* The info or types section is assigned below to dwo_unit,
12164 there's no need to record it in dwo_file.
12165 Also, we can't simply record type sections in dwo_file because
12166 we record a pointer into the vector in dwo_unit. As we collect more
12167 types we'll grow the vector and eventually have to reallocate space
12168 for it, invalidating all copies of pointers into the previous
12169 contents. */
12170 *dwo_file_slot = dwo_file;
12171 }
12172 else
12173 {
b4f54984 12174 if (dwarf_read_debug)
73869dc2
DE
12175 {
12176 fprintf_unfiltered (gdb_stdlog, "Using existing virtual DWO: %s\n",
791afaa2 12177 virtual_dwo_name.c_str ());
73869dc2 12178 }
9a3c8263 12179 dwo_file = (struct dwo_file *) *dwo_file_slot;
73869dc2 12180 }
73869dc2 12181
976ca316 12182 dwo_unit = OBSTACK_ZALLOC (&per_objfile->per_bfd->obstack, struct dwo_unit);
73869dc2
DE
12183 dwo_unit->dwo_file = dwo_file;
12184 dwo_unit->signature = signature;
8d749320 12185 dwo_unit->section =
976ca316
SM
12186 XOBNEW (&per_objfile->per_bfd->obstack, struct dwarf2_section_info);
12187 *dwo_unit->section = create_dwp_v2_section (per_objfile,
ed2dc618 12188 is_debug_types
73869dc2
DE
12189 ? &dwp_file->sections.types
12190 : &dwp_file->sections.info,
12191 sections.info_or_types_offset,
12192 sections.info_or_types_size);
12193 /* dwo_unit->{offset,length,type_offset_in_tu} are set later. */
12194
12195 return dwo_unit;
12196}
12197
57d63ce2
DE
12198/* Lookup the DWO unit with SIGNATURE in DWP_FILE.
12199 Returns NULL if the signature isn't found. */
80626a55
DE
12200
12201static struct dwo_unit *
976ca316 12202lookup_dwo_unit_in_dwp (dwarf2_per_objfile *per_objfile,
ed2dc618 12203 struct dwp_file *dwp_file, const char *comp_dir,
57d63ce2 12204 ULONGEST signature, int is_debug_types)
80626a55 12205{
57d63ce2
DE
12206 const struct dwp_hash_table *dwp_htab =
12207 is_debug_types ? dwp_file->tus : dwp_file->cus;
400174b1 12208 bfd *dbfd = dwp_file->dbfd.get ();
57d63ce2 12209 uint32_t mask = dwp_htab->nr_slots - 1;
80626a55
DE
12210 uint32_t hash = signature & mask;
12211 uint32_t hash2 = ((signature >> 32) & mask) | 1;
12212 unsigned int i;
12213 void **slot;
870f88f7 12214 struct dwo_unit find_dwo_cu;
80626a55
DE
12215
12216 memset (&find_dwo_cu, 0, sizeof (find_dwo_cu));
12217 find_dwo_cu.signature = signature;
19ac8c2e 12218 slot = htab_find_slot (is_debug_types
48b490f2
TT
12219 ? dwp_file->loaded_tus.get ()
12220 : dwp_file->loaded_cus.get (),
19ac8c2e 12221 &find_dwo_cu, INSERT);
80626a55
DE
12222
12223 if (*slot != NULL)
9a3c8263 12224 return (struct dwo_unit *) *slot;
80626a55
DE
12225
12226 /* Use a for loop so that we don't loop forever on bad debug info. */
57d63ce2 12227 for (i = 0; i < dwp_htab->nr_slots; ++i)
80626a55
DE
12228 {
12229 ULONGEST signature_in_table;
12230
12231 signature_in_table =
57d63ce2 12232 read_8_bytes (dbfd, dwp_htab->hash_table + hash * sizeof (uint64_t));
80626a55
DE
12233 if (signature_in_table == signature)
12234 {
57d63ce2
DE
12235 uint32_t unit_index =
12236 read_4_bytes (dbfd,
12237 dwp_htab->unit_table + hash * sizeof (uint32_t));
80626a55 12238
73869dc2
DE
12239 if (dwp_file->version == 1)
12240 {
976ca316
SM
12241 *slot = create_dwo_unit_in_dwp_v1 (per_objfile, dwp_file,
12242 unit_index, comp_dir,
12243 signature, is_debug_types);
73869dc2
DE
12244 }
12245 else
12246 {
976ca316
SM
12247 *slot = create_dwo_unit_in_dwp_v2 (per_objfile, dwp_file,
12248 unit_index, comp_dir,
12249 signature, is_debug_types);
73869dc2 12250 }
9a3c8263 12251 return (struct dwo_unit *) *slot;
80626a55
DE
12252 }
12253 if (signature_in_table == 0)
12254 return NULL;
12255 hash = (hash + hash2) & mask;
12256 }
12257
12258 error (_("Dwarf Error: bad DWP hash table, lookup didn't terminate"
12259 " [in module %s]"),
12260 dwp_file->name);
12261}
12262
ab5088bf 12263/* Subroutine of open_dwo_file,open_dwp_file to simplify them.
3019eac3
DE
12264 Open the file specified by FILE_NAME and hand it off to BFD for
12265 preliminary analysis. Return a newly initialized bfd *, which
12266 includes a canonicalized copy of FILE_NAME.
80626a55 12267 If IS_DWP is TRUE, we're opening a DWP file, otherwise a DWO file.
6ac97d4c
DE
12268 SEARCH_CWD is true if the current directory is to be searched.
12269 It will be searched before debug-file-directory.
13aaf454
DE
12270 If successful, the file is added to the bfd include table of the
12271 objfile's bfd (see gdb_bfd_record_inclusion).
6ac97d4c 12272 If unable to find/open the file, return NULL.
3019eac3
DE
12273 NOTE: This function is derived from symfile_bfd_open. */
12274
192b62ce 12275static gdb_bfd_ref_ptr
976ca316 12276try_open_dwop_file (dwarf2_per_objfile *per_objfile,
ed2dc618 12277 const char *file_name, int is_dwp, int search_cwd)
3019eac3 12278{
24b9144d 12279 int desc;
9c02c129
DE
12280 /* Blech. OPF_TRY_CWD_FIRST also disables searching the path list if
12281 FILE_NAME contains a '/'. So we can't use it. Instead prepend "."
12282 to debug_file_directory. */
e0cc99a6 12283 const char *search_path;
9c02c129
DE
12284 static const char dirname_separator_string[] = { DIRNAME_SEPARATOR, '\0' };
12285
e0cc99a6 12286 gdb::unique_xmalloc_ptr<char> search_path_holder;
6ac97d4c
DE
12287 if (search_cwd)
12288 {
12289 if (*debug_file_directory != '\0')
e0cc99a6
TT
12290 {
12291 search_path_holder.reset (concat (".", dirname_separator_string,
12292 debug_file_directory,
12293 (char *) NULL));
12294 search_path = search_path_holder.get ();
12295 }
6ac97d4c 12296 else
e0cc99a6 12297 search_path = ".";
6ac97d4c 12298 }
9c02c129 12299 else
e0cc99a6 12300 search_path = debug_file_directory;
3019eac3 12301
24b9144d 12302 openp_flags flags = OPF_RETURN_REALPATH;
80626a55
DE
12303 if (is_dwp)
12304 flags |= OPF_SEARCH_IN_PATH;
e0cc99a6
TT
12305
12306 gdb::unique_xmalloc_ptr<char> absolute_name;
9c02c129 12307 desc = openp (search_path, flags, file_name,
3019eac3
DE
12308 O_RDONLY | O_BINARY, &absolute_name);
12309 if (desc < 0)
12310 return NULL;
12311
e0cc99a6
TT
12312 gdb_bfd_ref_ptr sym_bfd (gdb_bfd_open (absolute_name.get (),
12313 gnutarget, desc));
9c02c129
DE
12314 if (sym_bfd == NULL)
12315 return NULL;
192b62ce 12316 bfd_set_cacheable (sym_bfd.get (), 1);
3019eac3 12317
192b62ce
TT
12318 if (!bfd_check_format (sym_bfd.get (), bfd_object))
12319 return NULL;
3019eac3 12320
13aaf454
DE
12321 /* Success. Record the bfd as having been included by the objfile's bfd.
12322 This is important because things like demangled_names_hash lives in the
12323 objfile's per_bfd space and may have references to things like symbol
12324 names that live in the DWO/DWP file's per_bfd space. PR 16426. */
976ca316 12325 gdb_bfd_record_inclusion (per_objfile->objfile->obfd, sym_bfd.get ());
13aaf454 12326
3019eac3
DE
12327 return sym_bfd;
12328}
12329
ab5088bf 12330/* Try to open DWO file FILE_NAME.
3019eac3
DE
12331 COMP_DIR is the DW_AT_comp_dir attribute.
12332 The result is the bfd handle of the file.
12333 If there is a problem finding or opening the file, return NULL.
12334 Upon success, the canonicalized path of the file is stored in the bfd,
12335 same as symfile_bfd_open. */
12336
192b62ce 12337static gdb_bfd_ref_ptr
976ca316 12338open_dwo_file (dwarf2_per_objfile *per_objfile,
ed2dc618 12339 const char *file_name, const char *comp_dir)
3019eac3 12340{
80626a55 12341 if (IS_ABSOLUTE_PATH (file_name))
976ca316 12342 return try_open_dwop_file (per_objfile, file_name,
ed2dc618 12343 0 /*is_dwp*/, 0 /*search_cwd*/);
3019eac3
DE
12344
12345 /* Before trying the search path, try DWO_NAME in COMP_DIR. */
12346
12347 if (comp_dir != NULL)
12348 {
43816ebc
TT
12349 gdb::unique_xmalloc_ptr<char> path_to_try
12350 (concat (comp_dir, SLASH_STRING, file_name, (char *) NULL));
3019eac3
DE
12351
12352 /* NOTE: If comp_dir is a relative path, this will also try the
12353 search path, which seems useful. */
976ca316 12354 gdb_bfd_ref_ptr abfd (try_open_dwop_file (per_objfile, path_to_try.get (),
ed2dc618 12355 0 /*is_dwp*/,
192b62ce 12356 1 /*search_cwd*/));
3019eac3
DE
12357 if (abfd != NULL)
12358 return abfd;
12359 }
12360
12361 /* That didn't work, try debug-file-directory, which, despite its name,
12362 is a list of paths. */
12363
12364 if (*debug_file_directory == '\0')
12365 return NULL;
12366
976ca316 12367 return try_open_dwop_file (per_objfile, file_name,
ed2dc618 12368 0 /*is_dwp*/, 1 /*search_cwd*/);
3019eac3
DE
12369}
12370
80626a55
DE
12371/* This function is mapped across the sections and remembers the offset and
12372 size of each of the DWO debugging sections we are interested in. */
12373
12374static void
12375dwarf2_locate_dwo_sections (bfd *abfd, asection *sectp, void *dwo_sections_ptr)
12376{
9a3c8263 12377 struct dwo_sections *dwo_sections = (struct dwo_sections *) dwo_sections_ptr;
80626a55
DE
12378 const struct dwop_section_names *names = &dwop_section_names;
12379
12380 if (section_is_p (sectp->name, &names->abbrev_dwo))
12381 {
049412e3 12382 dwo_sections->abbrev.s.section = sectp;
fd361982 12383 dwo_sections->abbrev.size = bfd_section_size (sectp);
80626a55
DE
12384 }
12385 else if (section_is_p (sectp->name, &names->info_dwo))
12386 {
049412e3 12387 dwo_sections->info.s.section = sectp;
fd361982 12388 dwo_sections->info.size = bfd_section_size (sectp);
80626a55
DE
12389 }
12390 else if (section_is_p (sectp->name, &names->line_dwo))
12391 {
049412e3 12392 dwo_sections->line.s.section = sectp;
fd361982 12393 dwo_sections->line.size = bfd_section_size (sectp);
80626a55
DE
12394 }
12395 else if (section_is_p (sectp->name, &names->loc_dwo))
12396 {
049412e3 12397 dwo_sections->loc.s.section = sectp;
fd361982 12398 dwo_sections->loc.size = bfd_section_size (sectp);
80626a55 12399 }
41144253 12400 else if (section_is_p (sectp->name, &names->loclists_dwo))
12401 {
12402 dwo_sections->loclists.s.section = sectp;
12403 dwo_sections->loclists.size = bfd_section_size (sectp);
12404 }
80626a55
DE
12405 else if (section_is_p (sectp->name, &names->macinfo_dwo))
12406 {
049412e3 12407 dwo_sections->macinfo.s.section = sectp;
fd361982 12408 dwo_sections->macinfo.size = bfd_section_size (sectp);
80626a55
DE
12409 }
12410 else if (section_is_p (sectp->name, &names->macro_dwo))
12411 {
049412e3 12412 dwo_sections->macro.s.section = sectp;
fd361982 12413 dwo_sections->macro.size = bfd_section_size (sectp);
80626a55
DE
12414 }
12415 else if (section_is_p (sectp->name, &names->str_dwo))
12416 {
049412e3 12417 dwo_sections->str.s.section = sectp;
fd361982 12418 dwo_sections->str.size = bfd_section_size (sectp);
80626a55
DE
12419 }
12420 else if (section_is_p (sectp->name, &names->str_offsets_dwo))
12421 {
049412e3 12422 dwo_sections->str_offsets.s.section = sectp;
fd361982 12423 dwo_sections->str_offsets.size = bfd_section_size (sectp);
80626a55
DE
12424 }
12425 else if (section_is_p (sectp->name, &names->types_dwo))
12426 {
12427 struct dwarf2_section_info type_section;
12428
12429 memset (&type_section, 0, sizeof (type_section));
049412e3 12430 type_section.s.section = sectp;
fd361982 12431 type_section.size = bfd_section_size (sectp);
fd5866f6 12432 dwo_sections->types.push_back (type_section);
80626a55
DE
12433 }
12434}
12435
ab5088bf 12436/* Initialize the use of the DWO file specified by DWO_NAME and referenced
19c3d4c9 12437 by PER_CU. This is for the non-DWP case.
80626a55 12438 The result is NULL if DWO_NAME can't be found. */
3019eac3
DE
12439
12440static struct dwo_file *
4ab09049
SM
12441open_and_init_dwo_file (dwarf2_cu *cu, const char *dwo_name,
12442 const char *comp_dir)
3019eac3 12443{
976ca316 12444 dwarf2_per_objfile *per_objfile = cu->per_objfile;
3019eac3 12445
976ca316 12446 gdb_bfd_ref_ptr dbfd = open_dwo_file (per_objfile, dwo_name, comp_dir);
80626a55
DE
12447 if (dbfd == NULL)
12448 {
b4f54984 12449 if (dwarf_read_debug)
80626a55
DE
12450 fprintf_unfiltered (gdb_stdlog, "DWO file not found: %s\n", dwo_name);
12451 return NULL;
12452 }
263db9a1 12453
51ac9db5 12454 dwo_file_up dwo_file (new struct dwo_file);
0ac5b59e
DE
12455 dwo_file->dwo_name = dwo_name;
12456 dwo_file->comp_dir = comp_dir;
fb1eb2f9 12457 dwo_file->dbfd = std::move (dbfd);
3019eac3 12458
fb1eb2f9 12459 bfd_map_over_sections (dwo_file->dbfd.get (), dwarf2_locate_dwo_sections,
192b62ce 12460 &dwo_file->sections);
3019eac3 12461
976ca316
SM
12462 create_cus_hash_table (per_objfile, cu, *dwo_file, dwo_file->sections.info,
12463 dwo_file->cus);
3019eac3 12464
976ca316 12465 create_debug_types_hash_table (per_objfile, dwo_file.get (),
ed2dc618 12466 dwo_file->sections.types, dwo_file->tus);
3019eac3 12467
b4f54984 12468 if (dwarf_read_debug)
80626a55
DE
12469 fprintf_unfiltered (gdb_stdlog, "DWO file found: %s\n", dwo_name);
12470
263db9a1 12471 return dwo_file.release ();
3019eac3
DE
12472}
12473
80626a55 12474/* This function is mapped across the sections and remembers the offset and
73869dc2
DE
12475 size of each of the DWP debugging sections common to version 1 and 2 that
12476 we are interested in. */
3019eac3 12477
80626a55 12478static void
73869dc2
DE
12479dwarf2_locate_common_dwp_sections (bfd *abfd, asection *sectp,
12480 void *dwp_file_ptr)
3019eac3 12481{
9a3c8263 12482 struct dwp_file *dwp_file = (struct dwp_file *) dwp_file_ptr;
80626a55
DE
12483 const struct dwop_section_names *names = &dwop_section_names;
12484 unsigned int elf_section_nr = elf_section_data (sectp)->this_idx;
3019eac3 12485
80626a55 12486 /* Record the ELF section number for later lookup: this is what the
73869dc2 12487 .debug_cu_index,.debug_tu_index tables use in DWP V1. */
80626a55
DE
12488 gdb_assert (elf_section_nr < dwp_file->num_sections);
12489 dwp_file->elf_sections[elf_section_nr] = sectp;
3019eac3 12490
80626a55
DE
12491 /* Look for specific sections that we need. */
12492 if (section_is_p (sectp->name, &names->str_dwo))
12493 {
049412e3 12494 dwp_file->sections.str.s.section = sectp;
fd361982 12495 dwp_file->sections.str.size = bfd_section_size (sectp);
80626a55
DE
12496 }
12497 else if (section_is_p (sectp->name, &names->cu_index))
12498 {
049412e3 12499 dwp_file->sections.cu_index.s.section = sectp;
fd361982 12500 dwp_file->sections.cu_index.size = bfd_section_size (sectp);
80626a55
DE
12501 }
12502 else if (section_is_p (sectp->name, &names->tu_index))
12503 {
049412e3 12504 dwp_file->sections.tu_index.s.section = sectp;
fd361982 12505 dwp_file->sections.tu_index.size = bfd_section_size (sectp);
80626a55
DE
12506 }
12507}
3019eac3 12508
73869dc2
DE
12509/* This function is mapped across the sections and remembers the offset and
12510 size of each of the DWP version 2 debugging sections that we are interested
12511 in. This is split into a separate function because we don't know if we
12512 have version 1 or 2 until we parse the cu_index/tu_index sections. */
12513
12514static void
12515dwarf2_locate_v2_dwp_sections (bfd *abfd, asection *sectp, void *dwp_file_ptr)
12516{
9a3c8263 12517 struct dwp_file *dwp_file = (struct dwp_file *) dwp_file_ptr;
73869dc2
DE
12518 const struct dwop_section_names *names = &dwop_section_names;
12519 unsigned int elf_section_nr = elf_section_data (sectp)->this_idx;
12520
12521 /* Record the ELF section number for later lookup: this is what the
12522 .debug_cu_index,.debug_tu_index tables use in DWP V1. */
12523 gdb_assert (elf_section_nr < dwp_file->num_sections);
12524 dwp_file->elf_sections[elf_section_nr] = sectp;
12525
12526 /* Look for specific sections that we need. */
12527 if (section_is_p (sectp->name, &names->abbrev_dwo))
12528 {
049412e3 12529 dwp_file->sections.abbrev.s.section = sectp;
fd361982 12530 dwp_file->sections.abbrev.size = bfd_section_size (sectp);
73869dc2
DE
12531 }
12532 else if (section_is_p (sectp->name, &names->info_dwo))
12533 {
049412e3 12534 dwp_file->sections.info.s.section = sectp;
fd361982 12535 dwp_file->sections.info.size = bfd_section_size (sectp);
73869dc2
DE
12536 }
12537 else if (section_is_p (sectp->name, &names->line_dwo))
12538 {
049412e3 12539 dwp_file->sections.line.s.section = sectp;
fd361982 12540 dwp_file->sections.line.size = bfd_section_size (sectp);
73869dc2
DE
12541 }
12542 else if (section_is_p (sectp->name, &names->loc_dwo))
12543 {
049412e3 12544 dwp_file->sections.loc.s.section = sectp;
fd361982 12545 dwp_file->sections.loc.size = bfd_section_size (sectp);
73869dc2
DE
12546 }
12547 else if (section_is_p (sectp->name, &names->macinfo_dwo))
12548 {
049412e3 12549 dwp_file->sections.macinfo.s.section = sectp;
fd361982 12550 dwp_file->sections.macinfo.size = bfd_section_size (sectp);
73869dc2
DE
12551 }
12552 else if (section_is_p (sectp->name, &names->macro_dwo))
12553 {
049412e3 12554 dwp_file->sections.macro.s.section = sectp;
fd361982 12555 dwp_file->sections.macro.size = bfd_section_size (sectp);
73869dc2
DE
12556 }
12557 else if (section_is_p (sectp->name, &names->str_offsets_dwo))
12558 {
049412e3 12559 dwp_file->sections.str_offsets.s.section = sectp;
fd361982 12560 dwp_file->sections.str_offsets.size = bfd_section_size (sectp);
73869dc2
DE
12561 }
12562 else if (section_is_p (sectp->name, &names->types_dwo))
12563 {
049412e3 12564 dwp_file->sections.types.s.section = sectp;
fd361982 12565 dwp_file->sections.types.size = bfd_section_size (sectp);
73869dc2
DE
12566 }
12567}
12568
80626a55 12569/* Hash function for dwp_file loaded CUs/TUs. */
3019eac3 12570
80626a55
DE
12571static hashval_t
12572hash_dwp_loaded_cutus (const void *item)
12573{
9a3c8263 12574 const struct dwo_unit *dwo_unit = (const struct dwo_unit *) item;
3019eac3 12575
80626a55
DE
12576 /* This drops the top 32 bits of the signature, but is ok for a hash. */
12577 return dwo_unit->signature;
3019eac3
DE
12578}
12579
80626a55 12580/* Equality function for dwp_file loaded CUs/TUs. */
3019eac3 12581
80626a55
DE
12582static int
12583eq_dwp_loaded_cutus (const void *a, const void *b)
3019eac3 12584{
9a3c8263
SM
12585 const struct dwo_unit *dua = (const struct dwo_unit *) a;
12586 const struct dwo_unit *dub = (const struct dwo_unit *) b;
3019eac3 12587
80626a55
DE
12588 return dua->signature == dub->signature;
12589}
3019eac3 12590
80626a55 12591/* Allocate a hash table for dwp_file loaded CUs/TUs. */
3019eac3 12592
48b490f2 12593static htab_up
298e9637 12594allocate_dwp_loaded_cutus_table ()
80626a55 12595{
48b490f2
TT
12596 return htab_up (htab_create_alloc (3,
12597 hash_dwp_loaded_cutus,
12598 eq_dwp_loaded_cutus,
12599 NULL, xcalloc, xfree));
80626a55 12600}
3019eac3 12601
ab5088bf
DE
12602/* Try to open DWP file FILE_NAME.
12603 The result is the bfd handle of the file.
12604 If there is a problem finding or opening the file, return NULL.
12605 Upon success, the canonicalized path of the file is stored in the bfd,
12606 same as symfile_bfd_open. */
12607
192b62ce 12608static gdb_bfd_ref_ptr
976ca316 12609open_dwp_file (dwarf2_per_objfile *per_objfile, const char *file_name)
ab5088bf 12610{
976ca316 12611 gdb_bfd_ref_ptr abfd (try_open_dwop_file (per_objfile, file_name,
ed2dc618 12612 1 /*is_dwp*/,
192b62ce 12613 1 /*search_cwd*/));
6ac97d4c
DE
12614 if (abfd != NULL)
12615 return abfd;
12616
12617 /* Work around upstream bug 15652.
12618 http://sourceware.org/bugzilla/show_bug.cgi?id=15652
12619 [Whether that's a "bug" is debatable, but it is getting in our way.]
12620 We have no real idea where the dwp file is, because gdb's realpath-ing
12621 of the executable's path may have discarded the needed info.
12622 [IWBN if the dwp file name was recorded in the executable, akin to
12623 .gnu_debuglink, but that doesn't exist yet.]
12624 Strip the directory from FILE_NAME and search again. */
12625 if (*debug_file_directory != '\0')
12626 {
12627 /* Don't implicitly search the current directory here.
12628 If the user wants to search "." to handle this case,
12629 it must be added to debug-file-directory. */
976ca316
SM
12630 return try_open_dwop_file (per_objfile, lbasename (file_name),
12631 1 /*is_dwp*/,
6ac97d4c
DE
12632 0 /*search_cwd*/);
12633 }
12634
12635 return NULL;
ab5088bf
DE
12636}
12637
80626a55
DE
12638/* Initialize the use of the DWP file for the current objfile.
12639 By convention the name of the DWP file is ${objfile}.dwp.
12640 The result is NULL if it can't be found. */
a766d390 12641
400174b1 12642static std::unique_ptr<struct dwp_file>
976ca316 12643open_and_init_dwp_file (dwarf2_per_objfile *per_objfile)
80626a55 12644{
976ca316 12645 struct objfile *objfile = per_objfile->objfile;
80626a55 12646
82bf32bc
JK
12647 /* Try to find first .dwp for the binary file before any symbolic links
12648 resolving. */
6c447423
DE
12649
12650 /* If the objfile is a debug file, find the name of the real binary
12651 file and get the name of dwp file from there. */
d721ba37 12652 std::string dwp_name;
6c447423
DE
12653 if (objfile->separate_debug_objfile_backlink != NULL)
12654 {
12655 struct objfile *backlink = objfile->separate_debug_objfile_backlink;
12656 const char *backlink_basename = lbasename (backlink->original_name);
6c447423 12657
d721ba37 12658 dwp_name = ldirname (objfile->original_name) + SLASH_STRING + backlink_basename;
6c447423
DE
12659 }
12660 else
d721ba37
PA
12661 dwp_name = objfile->original_name;
12662
12663 dwp_name += ".dwp";
80626a55 12664
976ca316 12665 gdb_bfd_ref_ptr dbfd (open_dwp_file (per_objfile, dwp_name.c_str ()));
82bf32bc
JK
12666 if (dbfd == NULL
12667 && strcmp (objfile->original_name, objfile_name (objfile)) != 0)
12668 {
12669 /* Try to find .dwp for the binary file after gdb_realpath resolving. */
d721ba37
PA
12670 dwp_name = objfile_name (objfile);
12671 dwp_name += ".dwp";
976ca316 12672 dbfd = open_dwp_file (per_objfile, dwp_name.c_str ());
82bf32bc
JK
12673 }
12674
80626a55
DE
12675 if (dbfd == NULL)
12676 {
b4f54984 12677 if (dwarf_read_debug)
d721ba37 12678 fprintf_unfiltered (gdb_stdlog, "DWP file not found: %s\n", dwp_name.c_str ());
400174b1 12679 return std::unique_ptr<dwp_file> ();
3019eac3 12680 }
400174b1
TT
12681
12682 const char *name = bfd_get_filename (dbfd.get ());
12683 std::unique_ptr<struct dwp_file> dwp_file
12684 (new struct dwp_file (name, std::move (dbfd)));
c906108c 12685
0a0f4c01 12686 dwp_file->num_sections = elf_numsections (dwp_file->dbfd);
80626a55 12687 dwp_file->elf_sections =
976ca316 12688 OBSTACK_CALLOC (&per_objfile->per_bfd->obstack,
80626a55
DE
12689 dwp_file->num_sections, asection *);
12690
400174b1
TT
12691 bfd_map_over_sections (dwp_file->dbfd.get (),
12692 dwarf2_locate_common_dwp_sections,
12693 dwp_file.get ());
80626a55 12694
976ca316 12695 dwp_file->cus = create_dwp_hash_table (per_objfile, dwp_file.get (), 0);
80626a55 12696
976ca316 12697 dwp_file->tus = create_dwp_hash_table (per_objfile, dwp_file.get (), 1);
80626a55 12698
73869dc2 12699 /* The DWP file version is stored in the hash table. Oh well. */
08302ed2
DE
12700 if (dwp_file->cus && dwp_file->tus
12701 && dwp_file->cus->version != dwp_file->tus->version)
73869dc2
DE
12702 {
12703 /* Technically speaking, we should try to limp along, but this is
fbcbc3fd 12704 pretty bizarre. We use pulongest here because that's the established
4d65956b 12705 portability solution (e.g, we cannot use %u for uint32_t). */
fbcbc3fd
DE
12706 error (_("Dwarf Error: DWP file CU version %s doesn't match"
12707 " TU version %s [in DWP file %s]"),
12708 pulongest (dwp_file->cus->version),
d721ba37 12709 pulongest (dwp_file->tus->version), dwp_name.c_str ());
73869dc2 12710 }
08302ed2
DE
12711
12712 if (dwp_file->cus)
12713 dwp_file->version = dwp_file->cus->version;
12714 else if (dwp_file->tus)
12715 dwp_file->version = dwp_file->tus->version;
12716 else
12717 dwp_file->version = 2;
73869dc2
DE
12718
12719 if (dwp_file->version == 2)
400174b1
TT
12720 bfd_map_over_sections (dwp_file->dbfd.get (),
12721 dwarf2_locate_v2_dwp_sections,
12722 dwp_file.get ());
73869dc2 12723
298e9637
SM
12724 dwp_file->loaded_cus = allocate_dwp_loaded_cutus_table ();
12725 dwp_file->loaded_tus = allocate_dwp_loaded_cutus_table ();
80626a55 12726
b4f54984 12727 if (dwarf_read_debug)
80626a55
DE
12728 {
12729 fprintf_unfiltered (gdb_stdlog, "DWP file found: %s\n", dwp_file->name);
12730 fprintf_unfiltered (gdb_stdlog,
21aa081e
PA
12731 " %s CUs, %s TUs\n",
12732 pulongest (dwp_file->cus ? dwp_file->cus->nr_units : 0),
12733 pulongest (dwp_file->tus ? dwp_file->tus->nr_units : 0));
80626a55
DE
12734 }
12735
12736 return dwp_file;
3019eac3 12737}
c906108c 12738
ab5088bf
DE
12739/* Wrapper around open_and_init_dwp_file, only open it once. */
12740
12741static struct dwp_file *
976ca316 12742get_dwp_file (dwarf2_per_objfile *per_objfile)
ab5088bf 12743{
976ca316 12744 if (!per_objfile->per_bfd->dwp_checked)
ab5088bf 12745 {
976ca316
SM
12746 per_objfile->per_bfd->dwp_file = open_and_init_dwp_file (per_objfile);
12747 per_objfile->per_bfd->dwp_checked = 1;
ab5088bf 12748 }
976ca316 12749 return per_objfile->per_bfd->dwp_file.get ();
ab5088bf
DE
12750}
12751
80626a55
DE
12752/* Subroutine of lookup_dwo_comp_unit, lookup_dwo_type_unit.
12753 Look up the CU/TU with signature SIGNATURE, either in DWO file DWO_NAME
12754 or in the DWP file for the objfile, referenced by THIS_UNIT.
3019eac3 12755 If non-NULL, comp_dir is the DW_AT_comp_dir attribute.
80626a55
DE
12756 IS_DEBUG_TYPES is non-zero if reading a TU, otherwise read a CU.
12757
12758 This is called, for example, when wanting to read a variable with a
12759 complex location. Therefore we don't want to do file i/o for every call.
12760 Therefore we don't want to look for a DWO file on every call.
12761 Therefore we first see if we've already seen SIGNATURE in a DWP file,
12762 then we check if we've already seen DWO_NAME, and only THEN do we check
12763 for a DWO file.
12764
1c658ad5 12765 The result is a pointer to the dwo_unit object or NULL if we didn't find it
80626a55 12766 (dwo_id mismatch or couldn't find the DWO/DWP file). */
debd256d 12767
3019eac3 12768static struct dwo_unit *
4ab09049 12769lookup_dwo_cutu (dwarf2_cu *cu, const char *dwo_name, const char *comp_dir,
80626a55 12770 ULONGEST signature, int is_debug_types)
3019eac3 12771{
976ca316
SM
12772 dwarf2_per_objfile *per_objfile = cu->per_objfile;
12773 struct objfile *objfile = per_objfile->objfile;
80626a55
DE
12774 const char *kind = is_debug_types ? "TU" : "CU";
12775 void **dwo_file_slot;
3019eac3 12776 struct dwo_file *dwo_file;
80626a55 12777 struct dwp_file *dwp_file;
cb1df416 12778
6a506a2d
DE
12779 /* First see if there's a DWP file.
12780 If we have a DWP file but didn't find the DWO inside it, don't
12781 look for the original DWO file. It makes gdb behave differently
12782 depending on whether one is debugging in the build tree. */
cf2c3c16 12783
976ca316 12784 dwp_file = get_dwp_file (per_objfile);
80626a55 12785 if (dwp_file != NULL)
cf2c3c16 12786 {
80626a55
DE
12787 const struct dwp_hash_table *dwp_htab =
12788 is_debug_types ? dwp_file->tus : dwp_file->cus;
12789
12790 if (dwp_htab != NULL)
12791 {
12792 struct dwo_unit *dwo_cutu =
976ca316
SM
12793 lookup_dwo_unit_in_dwp (per_objfile, dwp_file, comp_dir, signature,
12794 is_debug_types);
80626a55
DE
12795
12796 if (dwo_cutu != NULL)
12797 {
b4f54984 12798 if (dwarf_read_debug)
80626a55
DE
12799 {
12800 fprintf_unfiltered (gdb_stdlog,
12801 "Virtual DWO %s %s found: @%s\n",
12802 kind, hex_string (signature),
12803 host_address_to_string (dwo_cutu));
12804 }
12805 return dwo_cutu;
12806 }
12807 }
12808 }
6a506a2d 12809 else
80626a55 12810 {
6a506a2d 12811 /* No DWP file, look for the DWO file. */
80626a55 12812
976ca316 12813 dwo_file_slot = lookup_dwo_file_slot (per_objfile, dwo_name, comp_dir);
6a506a2d 12814 if (*dwo_file_slot == NULL)
80626a55 12815 {
6a506a2d 12816 /* Read in the file and build a table of the CUs/TUs it contains. */
4ab09049 12817 *dwo_file_slot = open_and_init_dwo_file (cu, dwo_name, comp_dir);
19c3d4c9 12818 }
6a506a2d 12819 /* NOTE: This will be NULL if unable to open the file. */
9a3c8263 12820 dwo_file = (struct dwo_file *) *dwo_file_slot;
3019eac3 12821
6a506a2d 12822 if (dwo_file != NULL)
19c3d4c9 12823 {
6a506a2d
DE
12824 struct dwo_unit *dwo_cutu = NULL;
12825
12826 if (is_debug_types && dwo_file->tus)
12827 {
12828 struct dwo_unit find_dwo_cutu;
12829
12830 memset (&find_dwo_cutu, 0, sizeof (find_dwo_cutu));
12831 find_dwo_cutu.signature = signature;
9a3c8263 12832 dwo_cutu
b0b6a987
TT
12833 = (struct dwo_unit *) htab_find (dwo_file->tus.get (),
12834 &find_dwo_cutu);
6a506a2d 12835 }
33c5cd75 12836 else if (!is_debug_types && dwo_file->cus)
80626a55 12837 {
33c5cd75
DB
12838 struct dwo_unit find_dwo_cutu;
12839
12840 memset (&find_dwo_cutu, 0, sizeof (find_dwo_cutu));
12841 find_dwo_cutu.signature = signature;
b0b6a987 12842 dwo_cutu = (struct dwo_unit *)htab_find (dwo_file->cus.get (),
33c5cd75 12843 &find_dwo_cutu);
6a506a2d
DE
12844 }
12845
12846 if (dwo_cutu != NULL)
12847 {
b4f54984 12848 if (dwarf_read_debug)
6a506a2d
DE
12849 {
12850 fprintf_unfiltered (gdb_stdlog, "DWO %s %s(%s) found: @%s\n",
12851 kind, dwo_name, hex_string (signature),
12852 host_address_to_string (dwo_cutu));
12853 }
12854 return dwo_cutu;
80626a55
DE
12855 }
12856 }
2e276125 12857 }
9cdd5dbd 12858
80626a55
DE
12859 /* We didn't find it. This could mean a dwo_id mismatch, or
12860 someone deleted the DWO/DWP file, or the search path isn't set up
12861 correctly to find the file. */
12862
b4f54984 12863 if (dwarf_read_debug)
80626a55
DE
12864 {
12865 fprintf_unfiltered (gdb_stdlog, "DWO %s %s(%s) not found\n",
12866 kind, dwo_name, hex_string (signature));
12867 }
3019eac3 12868
6656a72d
DE
12869 /* This is a warning and not a complaint because it can be caused by
12870 pilot error (e.g., user accidentally deleting the DWO). */
43942612
DE
12871 {
12872 /* Print the name of the DWP file if we looked there, helps the user
12873 better diagnose the problem. */
791afaa2 12874 std::string dwp_text;
43942612
DE
12875
12876 if (dwp_file != NULL)
791afaa2
TT
12877 dwp_text = string_printf (" [in DWP file %s]",
12878 lbasename (dwp_file->name));
43942612 12879
9d8780f0 12880 warning (_("Could not find DWO %s %s(%s)%s referenced by %s at offset %s"
43942612 12881 " [in module %s]"),
4ab09049
SM
12882 kind, dwo_name, hex_string (signature), dwp_text.c_str (), kind,
12883 sect_offset_str (cu->per_cu->sect_off), objfile_name (objfile));
43942612 12884 }
3019eac3 12885 return NULL;
5fb290d7
DJ
12886}
12887
80626a55
DE
12888/* Lookup the DWO CU DWO_NAME/SIGNATURE referenced from THIS_CU.
12889 See lookup_dwo_cutu_unit for details. */
12890
12891static struct dwo_unit *
4ab09049 12892lookup_dwo_comp_unit (dwarf2_cu *cu, const char *dwo_name, const char *comp_dir,
80626a55
DE
12893 ULONGEST signature)
12894{
4ab09049
SM
12895 gdb_assert (!cu->per_cu->is_debug_types);
12896
12897 return lookup_dwo_cutu (cu, dwo_name, comp_dir, signature, 0);
80626a55
DE
12898}
12899
12900/* Lookup the DWO TU DWO_NAME/SIGNATURE referenced from THIS_TU.
12901 See lookup_dwo_cutu_unit for details. */
12902
12903static struct dwo_unit *
4ab09049 12904lookup_dwo_type_unit (dwarf2_cu *cu, const char *dwo_name, const char *comp_dir)
80626a55 12905{
4ab09049
SM
12906 gdb_assert (cu->per_cu->is_debug_types);
12907
12908 signatured_type *sig_type = (signatured_type *) cu->per_cu;
12909
12910 return lookup_dwo_cutu (cu, dwo_name, comp_dir, sig_type->signature, 1);
80626a55
DE
12911}
12912
89e63ee4
DE
12913/* Traversal function for queue_and_load_all_dwo_tus. */
12914
12915static int
12916queue_and_load_dwo_tu (void **slot, void *info)
12917{
12918 struct dwo_unit *dwo_unit = (struct dwo_unit *) *slot;
d460f660 12919 dwarf2_cu *cu = (dwarf2_cu *) info;
89e63ee4 12920 ULONGEST signature = dwo_unit->signature;
d460f660 12921 signatured_type *sig_type = lookup_dwo_signatured_type (cu, signature);
89e63ee4
DE
12922
12923 if (sig_type != NULL)
12924 {
12925 struct dwarf2_per_cu_data *sig_cu = &sig_type->per_cu;
12926
12927 /* We pass NULL for DEPENDENT_CU because we don't yet know if there's
12928 a real dependency of PER_CU on SIG_TYPE. That is detected later
12929 while processing PER_CU. */
120ce1b5 12930 if (maybe_queue_comp_unit (NULL, sig_cu, cu->per_objfile, cu->language))
d460f660
SM
12931 load_full_type_unit (sig_cu, cu->per_objfile);
12932 cu->per_cu->imported_symtabs_push (sig_cu);
89e63ee4
DE
12933 }
12934
12935 return 1;
12936}
12937
1b555f17 12938/* Queue all TUs contained in the DWO of CU to be read in.
89e63ee4
DE
12939 The DWO may have the only definition of the type, though it may not be
12940 referenced anywhere in PER_CU. Thus we have to load *all* its TUs.
12941 http://sourceware.org/bugzilla/show_bug.cgi?id=15021 */
12942
12943static void
1b555f17 12944queue_and_load_all_dwo_tus (dwarf2_cu *cu)
89e63ee4
DE
12945{
12946 struct dwo_unit *dwo_unit;
12947 struct dwo_file *dwo_file;
12948
1b555f17
SM
12949 gdb_assert (cu != nullptr);
12950 gdb_assert (!cu->per_cu->is_debug_types);
12951 gdb_assert (get_dwp_file (cu->per_objfile) == nullptr);
89e63ee4 12952
1b555f17 12953 dwo_unit = cu->dwo_unit;
89e63ee4
DE
12954 gdb_assert (dwo_unit != NULL);
12955
12956 dwo_file = dwo_unit->dwo_file;
12957 if (dwo_file->tus != NULL)
1b555f17 12958 htab_traverse_noresize (dwo_file->tus.get (), queue_and_load_dwo_tu, cu);
89e63ee4
DE
12959}
12960
3019eac3 12961/* Read in various DIEs. */
348e048f 12962
d389af10 12963/* DW_AT_abstract_origin inherits whole DIEs (not just their attributes).
3e43a32a
MS
12964 Inherit only the children of the DW_AT_abstract_origin DIE not being
12965 already referenced by DW_AT_abstract_origin from the children of the
12966 current DIE. */
d389af10
JK
12967
12968static void
12969inherit_abstract_dies (struct die_info *die, struct dwarf2_cu *cu)
12970{
12971 struct die_info *child_die;
791afaa2 12972 sect_offset *offsetp;
d389af10
JK
12973 /* Parent of DIE - referenced by DW_AT_abstract_origin. */
12974 struct die_info *origin_die;
12975 /* Iterator of the ORIGIN_DIE children. */
12976 struct die_info *origin_child_die;
d389af10 12977 struct attribute *attr;
cd02d79d
PA
12978 struct dwarf2_cu *origin_cu;
12979 struct pending **origin_previous_list_in_scope;
d389af10
JK
12980
12981 attr = dwarf2_attr (die, DW_AT_abstract_origin, cu);
12982 if (!attr)
12983 return;
12984
cd02d79d
PA
12985 /* Note that following die references may follow to a die in a
12986 different cu. */
12987
12988 origin_cu = cu;
12989 origin_die = follow_die_ref (die, attr, &origin_cu);
12990
12991 /* We're inheriting ORIGIN's children into the scope we'd put DIE's
12992 symbols in. */
12993 origin_previous_list_in_scope = origin_cu->list_in_scope;
12994 origin_cu->list_in_scope = cu->list_in_scope;
12995
edb3359d
DJ
12996 if (die->tag != origin_die->tag
12997 && !(die->tag == DW_TAG_inlined_subroutine
12998 && origin_die->tag == DW_TAG_subprogram))
b98664d3 12999 complaint (_("DIE %s and its abstract origin %s have different tags"),
9d8780f0
SM
13000 sect_offset_str (die->sect_off),
13001 sect_offset_str (origin_die->sect_off));
d389af10 13002
791afaa2 13003 std::vector<sect_offset> offsets;
d389af10 13004
3ea89b92
PMR
13005 for (child_die = die->child;
13006 child_die && child_die->tag;
436c571c 13007 child_die = child_die->sibling)
3ea89b92
PMR
13008 {
13009 struct die_info *child_origin_die;
13010 struct dwarf2_cu *child_origin_cu;
13011
13012 /* We are trying to process concrete instance entries:
216f72a1 13013 DW_TAG_call_site DIEs indeed have a DW_AT_abstract_origin tag, but
3ea89b92
PMR
13014 it's not relevant to our analysis here. i.e. detecting DIEs that are
13015 present in the abstract instance but not referenced in the concrete
13016 one. */
216f72a1
JK
13017 if (child_die->tag == DW_TAG_call_site
13018 || child_die->tag == DW_TAG_GNU_call_site)
3ea89b92
PMR
13019 continue;
13020
c38f313d
DJ
13021 /* For each CHILD_DIE, find the corresponding child of
13022 ORIGIN_DIE. If there is more than one layer of
13023 DW_AT_abstract_origin, follow them all; there shouldn't be,
13024 but GCC versions at least through 4.4 generate this (GCC PR
13025 40573). */
3ea89b92
PMR
13026 child_origin_die = child_die;
13027 child_origin_cu = cu;
c38f313d
DJ
13028 while (1)
13029 {
cd02d79d
PA
13030 attr = dwarf2_attr (child_origin_die, DW_AT_abstract_origin,
13031 child_origin_cu);
c38f313d
DJ
13032 if (attr == NULL)
13033 break;
cd02d79d
PA
13034 child_origin_die = follow_die_ref (child_origin_die, attr,
13035 &child_origin_cu);
c38f313d
DJ
13036 }
13037
d389af10
JK
13038 /* According to DWARF3 3.3.8.2 #3 new entries without their abstract
13039 counterpart may exist. */
c38f313d 13040 if (child_origin_die != child_die)
d389af10 13041 {
edb3359d
DJ
13042 if (child_die->tag != child_origin_die->tag
13043 && !(child_die->tag == DW_TAG_inlined_subroutine
13044 && child_origin_die->tag == DW_TAG_subprogram))
b98664d3 13045 complaint (_("Child DIE %s and its abstract origin %s have "
9c541725 13046 "different tags"),
9d8780f0
SM
13047 sect_offset_str (child_die->sect_off),
13048 sect_offset_str (child_origin_die->sect_off));
c38f313d 13049 if (child_origin_die->parent != origin_die)
b98664d3 13050 complaint (_("Child DIE %s and its abstract origin %s have "
9c541725 13051 "different parents"),
9d8780f0
SM
13052 sect_offset_str (child_die->sect_off),
13053 sect_offset_str (child_origin_die->sect_off));
c38f313d 13054 else
791afaa2 13055 offsets.push_back (child_origin_die->sect_off);
d389af10 13056 }
d389af10 13057 }
791afaa2
TT
13058 std::sort (offsets.begin (), offsets.end ());
13059 sect_offset *offsets_end = offsets.data () + offsets.size ();
13060 for (offsetp = offsets.data () + 1; offsetp < offsets_end; offsetp++)
9c541725 13061 if (offsetp[-1] == *offsetp)
b98664d3 13062 complaint (_("Multiple children of DIE %s refer "
9d8780f0
SM
13063 "to DIE %s as their abstract origin"),
13064 sect_offset_str (die->sect_off), sect_offset_str (*offsetp));
d389af10 13065
791afaa2 13066 offsetp = offsets.data ();
d389af10
JK
13067 origin_child_die = origin_die->child;
13068 while (origin_child_die && origin_child_die->tag)
13069 {
13070 /* Is ORIGIN_CHILD_DIE referenced by any of the DIE children? */
b64f50a1 13071 while (offsetp < offsets_end
9c541725 13072 && *offsetp < origin_child_die->sect_off)
d389af10 13073 offsetp++;
b64f50a1 13074 if (offsetp >= offsets_end
9c541725 13075 || *offsetp > origin_child_die->sect_off)
d389af10 13076 {
adde2bff
DE
13077 /* Found that ORIGIN_CHILD_DIE is really not referenced.
13078 Check whether we're already processing ORIGIN_CHILD_DIE.
13079 This can happen with mutually referenced abstract_origins.
13080 PR 16581. */
13081 if (!origin_child_die->in_process)
13082 process_die (origin_child_die, origin_cu);
d389af10 13083 }
436c571c 13084 origin_child_die = origin_child_die->sibling;
d389af10 13085 }
cd02d79d 13086 origin_cu->list_in_scope = origin_previous_list_in_scope;
8d9a2568
KB
13087
13088 if (cu != origin_cu)
13089 compute_delayed_physnames (origin_cu);
d389af10
JK
13090}
13091
c906108c 13092static void
e7c27a73 13093read_func_scope (struct die_info *die, struct dwarf2_cu *cu)
c906108c 13094{
5e22e966 13095 struct objfile *objfile = cu->per_objfile->objfile;
08feed99 13096 struct gdbarch *gdbarch = objfile->arch ();
fe978cb0 13097 struct context_stack *newobj;
c906108c
SS
13098 CORE_ADDR lowpc;
13099 CORE_ADDR highpc;
13100 struct die_info *child_die;
edb3359d 13101 struct attribute *attr, *call_line, *call_file;
15d034d0 13102 const char *name;
e142c38c 13103 CORE_ADDR baseaddr;
801e3a5b 13104 struct block *block;
edb3359d 13105 int inlined_func = (die->tag == DW_TAG_inlined_subroutine);
2f4732b0 13106 std::vector<struct symbol *> template_args;
34eaf542 13107 struct template_symbol *templ_func = NULL;
edb3359d
DJ
13108
13109 if (inlined_func)
13110 {
13111 /* If we do not have call site information, we can't show the
13112 caller of this inlined function. That's too confusing, so
13113 only use the scope for local variables. */
13114 call_line = dwarf2_attr (die, DW_AT_call_line, cu);
13115 call_file = dwarf2_attr (die, DW_AT_call_file, cu);
13116 if (call_line == NULL || call_file == NULL)
13117 {
13118 read_lexical_block_scope (die, cu);
13119 return;
13120 }
13121 }
c906108c 13122
b3b3bada 13123 baseaddr = objfile->text_section_offset ();
e142c38c 13124
94af9270 13125 name = dwarf2_name (die, cu);
c906108c 13126
e8d05480
JB
13127 /* Ignore functions with missing or empty names. These are actually
13128 illegal according to the DWARF standard. */
13129 if (name == NULL)
13130 {
b98664d3 13131 complaint (_("missing name for subprogram DIE at %s"),
9d8780f0 13132 sect_offset_str (die->sect_off));
e8d05480
JB
13133 return;
13134 }
13135
13136 /* Ignore functions with missing or invalid low and high pc attributes. */
3a2b436a 13137 if (dwarf2_get_pc_bounds (die, &lowpc, &highpc, cu, NULL)
e385593e 13138 <= PC_BOUNDS_INVALID)
e8d05480 13139 {
ae4d0c03
PM
13140 attr = dwarf2_attr (die, DW_AT_external, cu);
13141 if (!attr || !DW_UNSND (attr))
b98664d3 13142 complaint (_("cannot get low and high bounds "
9d8780f0
SM
13143 "for subprogram DIE at %s"),
13144 sect_offset_str (die->sect_off));
e8d05480
JB
13145 return;
13146 }
c906108c 13147
3e29f34a
MR
13148 lowpc = gdbarch_adjust_dwarf2_addr (gdbarch, lowpc + baseaddr);
13149 highpc = gdbarch_adjust_dwarf2_addr (gdbarch, highpc + baseaddr);
c906108c 13150
34eaf542
TT
13151 /* If we have any template arguments, then we must allocate a
13152 different sort of symbol. */
436c571c 13153 for (child_die = die->child; child_die; child_die = child_die->sibling)
34eaf542
TT
13154 {
13155 if (child_die->tag == DW_TAG_template_type_param
13156 || child_die->tag == DW_TAG_template_value_param)
13157 {
8c14c3a3 13158 templ_func = new (&objfile->objfile_obstack) template_symbol;
cf724bc9 13159 templ_func->subclass = SYMBOL_TEMPLATE;
34eaf542
TT
13160 break;
13161 }
13162 }
13163
c24bdb02 13164 newobj = cu->get_builder ()->push_context (0, lowpc);
5e2db402
TT
13165 newobj->name = new_symbol (die, read_type_die (die, cu), cu,
13166 (struct symbol *) templ_func);
4c2df51b 13167
81873cc8 13168 if (dwarf2_flag_true_p (die, DW_AT_main_subprogram, cu))
987012b8 13169 set_objfile_main_name (objfile, newobj->name->linkage_name (),
81873cc8
TV
13170 cu->language);
13171
4cecd739
DJ
13172 /* If there is a location expression for DW_AT_frame_base, record
13173 it. */
e142c38c 13174 attr = dwarf2_attr (die, DW_AT_frame_base, cu);
435d3d88 13175 if (attr != nullptr)
fe978cb0 13176 dwarf2_symbol_mark_computed (attr, newobj->name, cu, 1);
4c2df51b 13177
63e43d3a
PMR
13178 /* If there is a location for the static link, record it. */
13179 newobj->static_link = NULL;
13180 attr = dwarf2_attr (die, DW_AT_static_link, cu);
435d3d88 13181 if (attr != nullptr)
63e43d3a 13182 {
224c3ddb
SM
13183 newobj->static_link
13184 = XOBNEW (&objfile->objfile_obstack, struct dynamic_prop);
9a49df9d 13185 attr_to_dynamic_prop (attr, die, cu, newobj->static_link,
293e7e51 13186 cu->addr_type ());
63e43d3a
PMR
13187 }
13188
c24bdb02 13189 cu->list_in_scope = cu->get_builder ()->get_local_symbols ();
c906108c 13190
639d11d3 13191 if (die->child != NULL)
c906108c 13192 {
639d11d3 13193 child_die = die->child;
c906108c
SS
13194 while (child_die && child_die->tag)
13195 {
34eaf542
TT
13196 if (child_die->tag == DW_TAG_template_type_param
13197 || child_die->tag == DW_TAG_template_value_param)
13198 {
13199 struct symbol *arg = new_symbol (child_die, NULL, cu);
13200
f1078f66 13201 if (arg != NULL)
2f4732b0 13202 template_args.push_back (arg);
34eaf542
TT
13203 }
13204 else
13205 process_die (child_die, cu);
436c571c 13206 child_die = child_die->sibling;
c906108c
SS
13207 }
13208 }
13209
d389af10
JK
13210 inherit_abstract_dies (die, cu);
13211
4a811a97
UW
13212 /* If we have a DW_AT_specification, we might need to import using
13213 directives from the context of the specification DIE. See the
13214 comment in determine_prefix. */
13215 if (cu->language == language_cplus
13216 && dwarf2_attr (die, DW_AT_specification, cu))
13217 {
13218 struct dwarf2_cu *spec_cu = cu;
13219 struct die_info *spec_die = die_specification (die, &spec_cu);
13220
13221 while (spec_die)
13222 {
13223 child_die = spec_die->child;
13224 while (child_die && child_die->tag)
13225 {
13226 if (child_die->tag == DW_TAG_imported_module)
13227 process_die (child_die, spec_cu);
436c571c 13228 child_die = child_die->sibling;
4a811a97
UW
13229 }
13230
13231 /* In some cases, GCC generates specification DIEs that
13232 themselves contain DW_AT_specification attributes. */
13233 spec_die = die_specification (spec_die, &spec_cu);
13234 }
13235 }
13236
c24bdb02 13237 struct context_stack cstk = cu->get_builder ()->pop_context ();
c906108c 13238 /* Make a block for the local symbols within. */
c24bdb02 13239 block = cu->get_builder ()->finish_block (cstk.name, cstk.old_blocks,
804d2729 13240 cstk.static_link, lowpc, highpc);
801e3a5b 13241
df8a16a1 13242 /* For C++, set the block's scope. */
45280282
IB
13243 if ((cu->language == language_cplus
13244 || cu->language == language_fortran
c44af4eb
TT
13245 || cu->language == language_d
13246 || cu->language == language_rust)
4d4ec4e5 13247 && cu->processing_has_namespace_info)
195a3f6c
TT
13248 block_set_scope (block, determine_prefix (die, cu),
13249 &objfile->objfile_obstack);
df8a16a1 13250
801e3a5b
JB
13251 /* If we have address ranges, record them. */
13252 dwarf2_record_block_ranges (die, block, baseaddr, cu);
6e70227d 13253
a60f3166 13254 gdbarch_make_symbol_special (gdbarch, cstk.name, objfile);
3e29f34a 13255
34eaf542 13256 /* Attach template arguments to function. */
2f4732b0 13257 if (!template_args.empty ())
34eaf542
TT
13258 {
13259 gdb_assert (templ_func != NULL);
13260
2f4732b0 13261 templ_func->n_template_arguments = template_args.size ();
34eaf542 13262 templ_func->template_arguments
8d749320
SM
13263 = XOBNEWVEC (&objfile->objfile_obstack, struct symbol *,
13264 templ_func->n_template_arguments);
34eaf542 13265 memcpy (templ_func->template_arguments,
2f4732b0 13266 template_args.data (),
34eaf542 13267 (templ_func->n_template_arguments * sizeof (struct symbol *)));
3e1d3d8c
TT
13268
13269 /* Make sure that the symtab is set on the new symbols. Even
13270 though they don't appear in this symtab directly, other parts
13271 of gdb assume that symbols do, and this is reasonably
13272 true. */
8634679f 13273 for (symbol *sym : template_args)
3e1d3d8c 13274 symbol_set_symtab (sym, symbol_symtab (templ_func));
34eaf542
TT
13275 }
13276
208d8187
JB
13277 /* In C++, we can have functions nested inside functions (e.g., when
13278 a function declares a class that has methods). This means that
13279 when we finish processing a function scope, we may need to go
13280 back to building a containing block's symbol lists. */
c24bdb02
KS
13281 *cu->get_builder ()->get_local_symbols () = cstk.locals;
13282 cu->get_builder ()->set_local_using_directives (cstk.local_using_directives);
208d8187 13283
921e78cf
JB
13284 /* If we've finished processing a top-level function, subsequent
13285 symbols go in the file symbol list. */
c24bdb02
KS
13286 if (cu->get_builder ()->outermost_context_p ())
13287 cu->list_in_scope = cu->get_builder ()->get_file_symbols ();
c906108c
SS
13288}
13289
13290/* Process all the DIES contained within a lexical block scope. Start
13291 a new scope, process the dies, and then close the scope. */
13292
13293static void
e7c27a73 13294read_lexical_block_scope (struct die_info *die, struct dwarf2_cu *cu)
c906108c 13295{
5e22e966 13296 struct objfile *objfile = cu->per_objfile->objfile;
08feed99 13297 struct gdbarch *gdbarch = objfile->arch ();
c906108c
SS
13298 CORE_ADDR lowpc, highpc;
13299 struct die_info *child_die;
e142c38c
DJ
13300 CORE_ADDR baseaddr;
13301
b3b3bada 13302 baseaddr = objfile->text_section_offset ();
c906108c
SS
13303
13304 /* Ignore blocks with missing or invalid low and high pc attributes. */
af34e669
DJ
13305 /* ??? Perhaps consider discontiguous blocks defined by DW_AT_ranges
13306 as multiple lexical blocks? Handling children in a sane way would
6e70227d 13307 be nasty. Might be easier to properly extend generic blocks to
af34e669 13308 describe ranges. */
e385593e
JK
13309 switch (dwarf2_get_pc_bounds (die, &lowpc, &highpc, cu, NULL))
13310 {
13311 case PC_BOUNDS_NOT_PRESENT:
13312 /* DW_TAG_lexical_block has no attributes, process its children as if
13313 there was no wrapping by that DW_TAG_lexical_block.
13314 GCC does no longer produces such DWARF since GCC r224161. */
13315 for (child_die = die->child;
13316 child_die != NULL && child_die->tag;
436c571c 13317 child_die = child_die->sibling)
4f7bc5ed
TT
13318 {
13319 /* We might already be processing this DIE. This can happen
13320 in an unusual circumstance -- where a subroutine A
13321 appears lexically in another subroutine B, but A actually
13322 inlines B. The recursion is broken here, rather than in
13323 inherit_abstract_dies, because it seems better to simply
13324 drop concrete children here. */
13325 if (!child_die->in_process)
13326 process_die (child_die, cu);
13327 }
e385593e
JK
13328 return;
13329 case PC_BOUNDS_INVALID:
13330 return;
13331 }
3e29f34a
MR
13332 lowpc = gdbarch_adjust_dwarf2_addr (gdbarch, lowpc + baseaddr);
13333 highpc = gdbarch_adjust_dwarf2_addr (gdbarch, highpc + baseaddr);
c906108c 13334
c24bdb02 13335 cu->get_builder ()->push_context (0, lowpc);
639d11d3 13336 if (die->child != NULL)
c906108c 13337 {
639d11d3 13338 child_die = die->child;
c906108c
SS
13339 while (child_die && child_die->tag)
13340 {
e7c27a73 13341 process_die (child_die, cu);
436c571c 13342 child_die = child_die->sibling;
c906108c
SS
13343 }
13344 }
3ea89b92 13345 inherit_abstract_dies (die, cu);
c24bdb02 13346 struct context_stack cstk = cu->get_builder ()->pop_context ();
c906108c 13347
c24bdb02
KS
13348 if (*cu->get_builder ()->get_local_symbols () != NULL
13349 || (*cu->get_builder ()->get_local_using_directives ()) != NULL)
c906108c 13350 {
801e3a5b 13351 struct block *block
c24bdb02 13352 = cu->get_builder ()->finish_block (0, cstk.old_blocks, NULL,
804d2729 13353 cstk.start_addr, highpc);
801e3a5b
JB
13354
13355 /* Note that recording ranges after traversing children, as we
13356 do here, means that recording a parent's ranges entails
13357 walking across all its children's ranges as they appear in
13358 the address map, which is quadratic behavior.
13359
13360 It would be nicer to record the parent's ranges before
13361 traversing its children, simply overriding whatever you find
13362 there. But since we don't even decide whether to create a
13363 block until after we've traversed its children, that's hard
13364 to do. */
13365 dwarf2_record_block_ranges (die, block, baseaddr, cu);
c906108c 13366 }
c24bdb02
KS
13367 *cu->get_builder ()->get_local_symbols () = cstk.locals;
13368 cu->get_builder ()->set_local_using_directives (cstk.local_using_directives);
c906108c
SS
13369}
13370
216f72a1 13371/* Read in DW_TAG_call_site and insert it to CU->call_site_htab. */
96408a79
SA
13372
13373static void
13374read_call_site_scope (struct die_info *die, struct dwarf2_cu *cu)
13375{
5e22e966 13376 dwarf2_per_objfile *per_objfile = cu->per_objfile;
a50264ba 13377 struct objfile *objfile = per_objfile->objfile;
08feed99 13378 struct gdbarch *gdbarch = objfile->arch ();
96408a79
SA
13379 CORE_ADDR pc, baseaddr;
13380 struct attribute *attr;
13381 struct call_site *call_site, call_site_local;
13382 void **slot;
13383 int nparams;
13384 struct die_info *child_die;
13385
b3b3bada 13386 baseaddr = objfile->text_section_offset ();
96408a79 13387
216f72a1
JK
13388 attr = dwarf2_attr (die, DW_AT_call_return_pc, cu);
13389 if (attr == NULL)
13390 {
13391 /* This was a pre-DWARF-5 GNU extension alias
13392 for DW_AT_call_return_pc. */
13393 attr = dwarf2_attr (die, DW_AT_low_pc, cu);
13394 }
96408a79
SA
13395 if (!attr)
13396 {
b98664d3 13397 complaint (_("missing DW_AT_call_return_pc for DW_TAG_call_site "
9d8780f0
SM
13398 "DIE %s [in module %s]"),
13399 sect_offset_str (die->sect_off), objfile_name (objfile));
96408a79
SA
13400 return;
13401 }
cd6c91b4 13402 pc = attr->value_as_address () + baseaddr;
3e29f34a 13403 pc = gdbarch_adjust_dwarf2_addr (gdbarch, pc);
96408a79
SA
13404
13405 if (cu->call_site_htab == NULL)
13406 cu->call_site_htab = htab_create_alloc_ex (16, core_addr_hash, core_addr_eq,
13407 NULL, &objfile->objfile_obstack,
13408 hashtab_obstack_allocate, NULL);
13409 call_site_local.pc = pc;
13410 slot = htab_find_slot (cu->call_site_htab, &call_site_local, INSERT);
13411 if (*slot != NULL)
13412 {
b98664d3 13413 complaint (_("Duplicate PC %s for DW_TAG_call_site "
9d8780f0
SM
13414 "DIE %s [in module %s]"),
13415 paddress (gdbarch, pc), sect_offset_str (die->sect_off),
4262abfb 13416 objfile_name (objfile));
96408a79
SA
13417 return;
13418 }
13419
13420 /* Count parameters at the caller. */
13421
13422 nparams = 0;
13423 for (child_die = die->child; child_die && child_die->tag;
436c571c 13424 child_die = child_die->sibling)
96408a79 13425 {
216f72a1
JK
13426 if (child_die->tag != DW_TAG_call_site_parameter
13427 && child_die->tag != DW_TAG_GNU_call_site_parameter)
96408a79 13428 {
b98664d3 13429 complaint (_("Tag %d is not DW_TAG_call_site_parameter in "
9d8780f0
SM
13430 "DW_TAG_call_site child DIE %s [in module %s]"),
13431 child_die->tag, sect_offset_str (child_die->sect_off),
4262abfb 13432 objfile_name (objfile));
96408a79
SA
13433 continue;
13434 }
13435
13436 nparams++;
13437 }
13438
224c3ddb
SM
13439 call_site
13440 = ((struct call_site *)
13441 obstack_alloc (&objfile->objfile_obstack,
13442 sizeof (*call_site)
13443 + (sizeof (*call_site->parameter) * (nparams - 1))));
96408a79
SA
13444 *slot = call_site;
13445 memset (call_site, 0, sizeof (*call_site) - sizeof (*call_site->parameter));
13446 call_site->pc = pc;
13447
216f72a1
JK
13448 if (dwarf2_flag_true_p (die, DW_AT_call_tail_call, cu)
13449 || dwarf2_flag_true_p (die, DW_AT_GNU_tail_call, cu))
96408a79
SA
13450 {
13451 struct die_info *func_die;
13452
13453 /* Skip also over DW_TAG_inlined_subroutine. */
13454 for (func_die = die->parent;
13455 func_die && func_die->tag != DW_TAG_subprogram
13456 && func_die->tag != DW_TAG_subroutine_type;
13457 func_die = func_die->parent);
13458
216f72a1
JK
13459 /* DW_AT_call_all_calls is a superset
13460 of DW_AT_call_all_tail_calls. */
96408a79 13461 if (func_die
216f72a1 13462 && !dwarf2_flag_true_p (func_die, DW_AT_call_all_calls, cu)
96408a79 13463 && !dwarf2_flag_true_p (func_die, DW_AT_GNU_all_call_sites, cu)
216f72a1 13464 && !dwarf2_flag_true_p (func_die, DW_AT_call_all_tail_calls, cu)
96408a79
SA
13465 && !dwarf2_flag_true_p (func_die, DW_AT_GNU_all_tail_call_sites, cu))
13466 {
13467 /* TYPE_TAIL_CALL_LIST is not interesting in functions where it is
13468 not complete. But keep CALL_SITE for look ups via call_site_htab,
13469 both the initial caller containing the real return address PC and
13470 the final callee containing the current PC of a chain of tail
13471 calls do not need to have the tail call list complete. But any
13472 function candidate for a virtual tail call frame searched via
13473 TYPE_TAIL_CALL_LIST must have the tail call list complete to be
13474 determined unambiguously. */
13475 }
13476 else
13477 {
13478 struct type *func_type = NULL;
13479
13480 if (func_die)
13481 func_type = get_die_type (func_die, cu);
13482 if (func_type != NULL)
13483 {
78134374 13484 gdb_assert (func_type->code () == TYPE_CODE_FUNC);
96408a79
SA
13485
13486 /* Enlist this call site to the function. */
13487 call_site->tail_call_next = TYPE_TAIL_CALL_LIST (func_type);
13488 TYPE_TAIL_CALL_LIST (func_type) = call_site;
13489 }
13490 else
b98664d3 13491 complaint (_("Cannot find function owning DW_TAG_call_site "
9d8780f0
SM
13492 "DIE %s [in module %s]"),
13493 sect_offset_str (die->sect_off), objfile_name (objfile));
96408a79
SA
13494 }
13495 }
13496
216f72a1
JK
13497 attr = dwarf2_attr (die, DW_AT_call_target, cu);
13498 if (attr == NULL)
13499 attr = dwarf2_attr (die, DW_AT_GNU_call_site_target, cu);
13500 if (attr == NULL)
13501 attr = dwarf2_attr (die, DW_AT_call_origin, cu);
96408a79 13502 if (attr == NULL)
216f72a1
JK
13503 {
13504 /* This was a pre-DWARF-5 GNU extension alias for DW_AT_call_origin. */
13505 attr = dwarf2_attr (die, DW_AT_abstract_origin, cu);
13506 }
96408a79 13507 SET_FIELD_DWARF_BLOCK (call_site->target, NULL);
4fc6c0d5 13508 if (!attr || (attr->form_is_block () && DW_BLOCK (attr)->size == 0))
96408a79 13509 /* Keep NULL DWARF_BLOCK. */;
4fc6c0d5 13510 else if (attr->form_is_block ())
96408a79
SA
13511 {
13512 struct dwarf2_locexpr_baton *dlbaton;
13513
8d749320 13514 dlbaton = XOBNEW (&objfile->objfile_obstack, struct dwarf2_locexpr_baton);
96408a79
SA
13515 dlbaton->data = DW_BLOCK (attr)->data;
13516 dlbaton->size = DW_BLOCK (attr)->size;
a50264ba 13517 dlbaton->per_objfile = per_objfile;
96408a79
SA
13518 dlbaton->per_cu = cu->per_cu;
13519
13520 SET_FIELD_DWARF_BLOCK (call_site->target, dlbaton);
13521 }
cd6c91b4 13522 else if (attr->form_is_ref ())
96408a79 13523 {
96408a79
SA
13524 struct dwarf2_cu *target_cu = cu;
13525 struct die_info *target_die;
13526
ac9ec31b 13527 target_die = follow_die_ref (die, attr, &target_cu);
5e22e966 13528 gdb_assert (target_cu->per_objfile->objfile == objfile);
96408a79
SA
13529 if (die_is_declaration (target_die, target_cu))
13530 {
7d45c7c3 13531 const char *target_physname;
9112db09
JK
13532
13533 /* Prefer the mangled name; otherwise compute the demangled one. */
73b9be8b 13534 target_physname = dw2_linkage_name (target_die, target_cu);
7d45c7c3 13535 if (target_physname == NULL)
9112db09 13536 target_physname = dwarf2_physname (NULL, target_die, target_cu);
96408a79 13537 if (target_physname == NULL)
b98664d3 13538 complaint (_("DW_AT_call_target target DIE has invalid "
9d8780f0
SM
13539 "physname, for referencing DIE %s [in module %s]"),
13540 sect_offset_str (die->sect_off), objfile_name (objfile));
96408a79 13541 else
7d455152 13542 SET_FIELD_PHYSNAME (call_site->target, target_physname);
96408a79
SA
13543 }
13544 else
13545 {
13546 CORE_ADDR lowpc;
13547
13548 /* DW_AT_entry_pc should be preferred. */
3a2b436a 13549 if (dwarf2_get_pc_bounds (target_die, &lowpc, NULL, target_cu, NULL)
e385593e 13550 <= PC_BOUNDS_INVALID)
b98664d3 13551 complaint (_("DW_AT_call_target target DIE has invalid "
9d8780f0
SM
13552 "low pc, for referencing DIE %s [in module %s]"),
13553 sect_offset_str (die->sect_off), objfile_name (objfile));
96408a79 13554 else
3e29f34a
MR
13555 {
13556 lowpc = gdbarch_adjust_dwarf2_addr (gdbarch, lowpc + baseaddr);
13557 SET_FIELD_PHYSADDR (call_site->target, lowpc);
13558 }
96408a79
SA
13559 }
13560 }
13561 else
b98664d3 13562 complaint (_("DW_TAG_call_site DW_AT_call_target is neither "
9d8780f0
SM
13563 "block nor reference, for DIE %s [in module %s]"),
13564 sect_offset_str (die->sect_off), objfile_name (objfile));
96408a79
SA
13565
13566 call_site->per_cu = cu->per_cu;
9f47c707 13567 call_site->per_objfile = per_objfile;
96408a79
SA
13568
13569 for (child_die = die->child;
13570 child_die && child_die->tag;
436c571c 13571 child_die = child_die->sibling)
96408a79 13572 {
96408a79 13573 struct call_site_parameter *parameter;
1788b2d3 13574 struct attribute *loc, *origin;
96408a79 13575
216f72a1
JK
13576 if (child_die->tag != DW_TAG_call_site_parameter
13577 && child_die->tag != DW_TAG_GNU_call_site_parameter)
96408a79
SA
13578 {
13579 /* Already printed the complaint above. */
13580 continue;
13581 }
13582
13583 gdb_assert (call_site->parameter_count < nparams);
13584 parameter = &call_site->parameter[call_site->parameter_count];
13585
1788b2d3
JK
13586 /* DW_AT_location specifies the register number or DW_AT_abstract_origin
13587 specifies DW_TAG_formal_parameter. Value of the data assumed for the
216f72a1 13588 register is contained in DW_AT_call_value. */
96408a79 13589
24c5c679 13590 loc = dwarf2_attr (child_die, DW_AT_location, cu);
216f72a1
JK
13591 origin = dwarf2_attr (child_die, DW_AT_call_parameter, cu);
13592 if (origin == NULL)
13593 {
13594 /* This was a pre-DWARF-5 GNU extension alias
13595 for DW_AT_call_parameter. */
13596 origin = dwarf2_attr (child_die, DW_AT_abstract_origin, cu);
13597 }
cd6c91b4 13598 if (loc == NULL && origin != NULL && origin->form_is_ref ())
1788b2d3 13599 {
1788b2d3 13600 parameter->kind = CALL_SITE_PARAMETER_PARAM_OFFSET;
9c541725 13601
0826b30a 13602 sect_offset sect_off = origin->get_ref_die_offset ();
4057dfde 13603 if (!cu->header.offset_in_cu_p (sect_off))
d76b7dbc
JK
13604 {
13605 /* As DW_OP_GNU_parameter_ref uses CU-relative offset this
13606 binding can be done only inside one CU. Such referenced DIE
13607 therefore cannot be even moved to DW_TAG_partial_unit. */
b98664d3 13608 complaint (_("DW_AT_call_parameter offset is not in CU for "
9d8780f0
SM
13609 "DW_TAG_call_site child DIE %s [in module %s]"),
13610 sect_offset_str (child_die->sect_off),
9c541725 13611 objfile_name (objfile));
d76b7dbc
JK
13612 continue;
13613 }
9c541725
PA
13614 parameter->u.param_cu_off
13615 = (cu_offset) (sect_off - cu->header.sect_off);
1788b2d3 13616 }
4fc6c0d5 13617 else if (loc == NULL || origin != NULL || !loc->form_is_block ())
96408a79 13618 {
b98664d3 13619 complaint (_("No DW_FORM_block* DW_AT_location for "
9d8780f0
SM
13620 "DW_TAG_call_site child DIE %s [in module %s]"),
13621 sect_offset_str (child_die->sect_off), objfile_name (objfile));
96408a79
SA
13622 continue;
13623 }
24c5c679 13624 else
96408a79 13625 {
24c5c679
JK
13626 parameter->u.dwarf_reg = dwarf_block_to_dwarf_reg
13627 (DW_BLOCK (loc)->data, &DW_BLOCK (loc)->data[DW_BLOCK (loc)->size]);
13628 if (parameter->u.dwarf_reg != -1)
13629 parameter->kind = CALL_SITE_PARAMETER_DWARF_REG;
13630 else if (dwarf_block_to_sp_offset (gdbarch, DW_BLOCK (loc)->data,
13631 &DW_BLOCK (loc)->data[DW_BLOCK (loc)->size],
13632 &parameter->u.fb_offset))
13633 parameter->kind = CALL_SITE_PARAMETER_FB_OFFSET;
13634 else
13635 {
b98664d3 13636 complaint (_("Only single DW_OP_reg or DW_OP_fbreg is supported "
24c5c679 13637 "for DW_FORM_block* DW_AT_location is supported for "
9d8780f0 13638 "DW_TAG_call_site child DIE %s "
24c5c679 13639 "[in module %s]"),
9d8780f0 13640 sect_offset_str (child_die->sect_off),
9c541725 13641 objfile_name (objfile));
24c5c679
JK
13642 continue;
13643 }
96408a79
SA
13644 }
13645
216f72a1
JK
13646 attr = dwarf2_attr (child_die, DW_AT_call_value, cu);
13647 if (attr == NULL)
13648 attr = dwarf2_attr (child_die, DW_AT_GNU_call_site_value, cu);
4fc6c0d5 13649 if (attr == NULL || !attr->form_is_block ())
96408a79 13650 {
b98664d3 13651 complaint (_("No DW_FORM_block* DW_AT_call_value for "
9d8780f0
SM
13652 "DW_TAG_call_site child DIE %s [in module %s]"),
13653 sect_offset_str (child_die->sect_off),
9c541725 13654 objfile_name (objfile));
96408a79
SA
13655 continue;
13656 }
13657 parameter->value = DW_BLOCK (attr)->data;
13658 parameter->value_size = DW_BLOCK (attr)->size;
13659
13660 /* Parameters are not pre-cleared by memset above. */
13661 parameter->data_value = NULL;
13662 parameter->data_value_size = 0;
13663 call_site->parameter_count++;
13664
216f72a1
JK
13665 attr = dwarf2_attr (child_die, DW_AT_call_data_value, cu);
13666 if (attr == NULL)
13667 attr = dwarf2_attr (child_die, DW_AT_GNU_call_site_data_value, cu);
435d3d88 13668 if (attr != nullptr)
96408a79 13669 {
4fc6c0d5 13670 if (!attr->form_is_block ())
b98664d3 13671 complaint (_("No DW_FORM_block* DW_AT_call_data_value for "
9d8780f0
SM
13672 "DW_TAG_call_site child DIE %s [in module %s]"),
13673 sect_offset_str (child_die->sect_off),
9c541725 13674 objfile_name (objfile));
96408a79
SA
13675 else
13676 {
13677 parameter->data_value = DW_BLOCK (attr)->data;
13678 parameter->data_value_size = DW_BLOCK (attr)->size;
13679 }
13680 }
13681 }
13682}
13683
71a3c369
TT
13684/* Helper function for read_variable. If DIE represents a virtual
13685 table, then return the type of the concrete object that is
13686 associated with the virtual table. Otherwise, return NULL. */
13687
13688static struct type *
13689rust_containing_type (struct die_info *die, struct dwarf2_cu *cu)
13690{
13691 struct attribute *attr = dwarf2_attr (die, DW_AT_type, cu);
13692 if (attr == NULL)
13693 return NULL;
13694
13695 /* Find the type DIE. */
13696 struct die_info *type_die = NULL;
13697 struct dwarf2_cu *type_cu = cu;
13698
cd6c91b4 13699 if (attr->form_is_ref ())
71a3c369
TT
13700 type_die = follow_die_ref (die, attr, &type_cu);
13701 if (type_die == NULL)
13702 return NULL;
13703
13704 if (dwarf2_attr (type_die, DW_AT_containing_type, type_cu) == NULL)
13705 return NULL;
13706 return die_containing_type (type_die, type_cu);
13707}
13708
13709/* Read a variable (DW_TAG_variable) DIE and create a new symbol. */
13710
13711static void
13712read_variable (struct die_info *die, struct dwarf2_cu *cu)
13713{
13714 struct rust_vtable_symbol *storage = NULL;
13715
13716 if (cu->language == language_rust)
13717 {
13718 struct type *containing_type = rust_containing_type (die, cu);
13719
13720 if (containing_type != NULL)
13721 {
5e22e966 13722 struct objfile *objfile = cu->per_objfile->objfile;
71a3c369 13723
8c14c3a3 13724 storage = new (&objfile->objfile_obstack) rust_vtable_symbol;
71a3c369 13725 storage->concrete_type = containing_type;
cf724bc9 13726 storage->subclass = SYMBOL_RUST_VTABLE;
71a3c369
TT
13727 }
13728 }
13729
e4a62c65
TV
13730 struct symbol *res = new_symbol (die, NULL, cu, storage);
13731 struct attribute *abstract_origin
13732 = dwarf2_attr (die, DW_AT_abstract_origin, cu);
13733 struct attribute *loc = dwarf2_attr (die, DW_AT_location, cu);
13734 if (res == NULL && loc && abstract_origin)
13735 {
13736 /* We have a variable without a name, but with a location and an abstract
13737 origin. This may be a concrete instance of an abstract variable
13738 referenced from an DW_OP_GNU_variable_value, so save it to find it back
13739 later. */
13740 struct dwarf2_cu *origin_cu = cu;
13741 struct die_info *origin_die
13742 = follow_die_ref (die, abstract_origin, &origin_cu);
5e22e966
SM
13743 dwarf2_per_objfile *per_objfile = cu->per_objfile;
13744 per_objfile->per_bfd->abstract_to_concrete
13745 [origin_die->sect_off].push_back (die->sect_off);
e4a62c65 13746 }
71a3c369
TT
13747}
13748
43988095
JK
13749/* Call CALLBACK from DW_AT_ranges attribute value OFFSET
13750 reading .debug_rnglists.
13751 Callback's type should be:
13752 void (CORE_ADDR range_beginning, CORE_ADDR range_end)
13753 Return true if the attributes are present and valid, otherwise,
13754 return false. */
13755
13756template <typename Callback>
13757static bool
13758dwarf2_rnglists_process (unsigned offset, struct dwarf2_cu *cu,
13759 Callback &&callback)
13760{
976ca316
SM
13761 dwarf2_per_objfile *per_objfile = cu->per_objfile;
13762 struct objfile *objfile = per_objfile->objfile;
43988095 13763 bfd *obfd = objfile->obfd;
43988095 13764 /* Base address selection entry. */
2b24b6e4 13765 gdb::optional<CORE_ADDR> base;
43988095 13766 const gdb_byte *buffer;
43988095
JK
13767 CORE_ADDR baseaddr;
13768 bool overflow = false;
13769
43988095
JK
13770 base = cu->base_address;
13771
976ca316
SM
13772 per_objfile->per_bfd->rnglists.read (objfile);
13773 if (offset >= per_objfile->per_bfd->rnglists.size)
43988095 13774 {
b98664d3 13775 complaint (_("Offset %d out of bounds for DW_AT_ranges attribute"),
43988095
JK
13776 offset);
13777 return false;
13778 }
976ca316 13779 buffer = per_objfile->per_bfd->rnglists.buffer + offset;
43988095 13780
b3b3bada 13781 baseaddr = objfile->text_section_offset ();
43988095
JK
13782
13783 while (1)
13784 {
7814882a
JK
13785 /* Initialize it due to a false compiler warning. */
13786 CORE_ADDR range_beginning = 0, range_end = 0;
976ca316
SM
13787 const gdb_byte *buf_end = (per_objfile->per_bfd->rnglists.buffer
13788 + per_objfile->per_bfd->rnglists.size);
43988095
JK
13789 unsigned int bytes_read;
13790
13791 if (buffer == buf_end)
13792 {
13793 overflow = true;
13794 break;
13795 }
13796 const auto rlet = static_cast<enum dwarf_range_list_entry>(*buffer++);
13797 switch (rlet)
13798 {
13799 case DW_RLE_end_of_list:
13800 break;
13801 case DW_RLE_base_address:
13802 if (buffer + cu->header.addr_size > buf_end)
13803 {
13804 overflow = true;
13805 break;
13806 }
c8a7a66f 13807 base = cu->header.read_address (obfd, buffer, &bytes_read);
43988095
JK
13808 buffer += bytes_read;
13809 break;
13810 case DW_RLE_start_length:
13811 if (buffer + cu->header.addr_size > buf_end)
13812 {
13813 overflow = true;
13814 break;
13815 }
c8a7a66f
TT
13816 range_beginning = cu->header.read_address (obfd, buffer,
13817 &bytes_read);
43988095
JK
13818 buffer += bytes_read;
13819 range_end = (range_beginning
13820 + read_unsigned_leb128 (obfd, buffer, &bytes_read));
13821 buffer += bytes_read;
13822 if (buffer > buf_end)
13823 {
13824 overflow = true;
13825 break;
13826 }
13827 break;
13828 case DW_RLE_offset_pair:
13829 range_beginning = read_unsigned_leb128 (obfd, buffer, &bytes_read);
13830 buffer += bytes_read;
13831 if (buffer > buf_end)
13832 {
13833 overflow = true;
13834 break;
13835 }
13836 range_end = read_unsigned_leb128 (obfd, buffer, &bytes_read);
13837 buffer += bytes_read;
13838 if (buffer > buf_end)
13839 {
13840 overflow = true;
13841 break;
13842 }
13843 break;
13844 case DW_RLE_start_end:
13845 if (buffer + 2 * cu->header.addr_size > buf_end)
13846 {
13847 overflow = true;
13848 break;
13849 }
c8a7a66f
TT
13850 range_beginning = cu->header.read_address (obfd, buffer,
13851 &bytes_read);
43988095 13852 buffer += bytes_read;
c8a7a66f 13853 range_end = cu->header.read_address (obfd, buffer, &bytes_read);
43988095
JK
13854 buffer += bytes_read;
13855 break;
13856 default:
b98664d3 13857 complaint (_("Invalid .debug_rnglists data (no base address)"));
43988095
JK
13858 return false;
13859 }
13860 if (rlet == DW_RLE_end_of_list || overflow)
13861 break;
13862 if (rlet == DW_RLE_base_address)
13863 continue;
13864
2b24b6e4 13865 if (!base.has_value ())
43988095
JK
13866 {
13867 /* We have no valid base address for the ranges
13868 data. */
b98664d3 13869 complaint (_("Invalid .debug_rnglists data (no base address)"));
43988095
JK
13870 return false;
13871 }
13872
13873 if (range_beginning > range_end)
13874 {
13875 /* Inverted range entries are invalid. */
b98664d3 13876 complaint (_("Invalid .debug_rnglists data (inverted range)"));
43988095
JK
13877 return false;
13878 }
13879
13880 /* Empty range entries have no effect. */
13881 if (range_beginning == range_end)
13882 continue;
13883
2b24b6e4
TT
13884 range_beginning += *base;
13885 range_end += *base;
43988095
JK
13886
13887 /* A not-uncommon case of bad debug info.
13888 Don't pollute the addrmap with bad data. */
13889 if (range_beginning + baseaddr == 0
976ca316 13890 && !per_objfile->per_bfd->has_section_at_zero)
43988095 13891 {
b98664d3 13892 complaint (_(".debug_rnglists entry has start address of zero"
43988095
JK
13893 " [in module %s]"), objfile_name (objfile));
13894 continue;
13895 }
13896
13897 callback (range_beginning, range_end);
13898 }
13899
13900 if (overflow)
13901 {
b98664d3 13902 complaint (_("Offset %d is not terminated "
43988095
JK
13903 "for DW_AT_ranges attribute"),
13904 offset);
13905 return false;
13906 }
13907
13908 return true;
13909}
13910
13911/* Call CALLBACK from DW_AT_ranges attribute value OFFSET reading .debug_ranges.
13912 Callback's type should be:
13913 void (CORE_ADDR range_beginning, CORE_ADDR range_end)
5f46c5a5 13914 Return 1 if the attributes are present and valid, otherwise, return 0. */
43039443 13915
43988095 13916template <typename Callback>
43039443 13917static int
5f46c5a5 13918dwarf2_ranges_process (unsigned offset, struct dwarf2_cu *cu,
43988095 13919 Callback &&callback)
43039443 13920{
5e22e966
SM
13921 dwarf2_per_objfile *per_objfile = cu->per_objfile;
13922 struct objfile *objfile = per_objfile->objfile;
43039443
JK
13923 struct comp_unit_head *cu_header = &cu->header;
13924 bfd *obfd = objfile->obfd;
13925 unsigned int addr_size = cu_header->addr_size;
13926 CORE_ADDR mask = ~(~(CORE_ADDR)1 << (addr_size * 8 - 1));
13927 /* Base address selection entry. */
2b24b6e4 13928 gdb::optional<CORE_ADDR> base;
43039443 13929 unsigned int dummy;
d521ce57 13930 const gdb_byte *buffer;
ff013f42 13931 CORE_ADDR baseaddr;
43039443 13932
43988095
JK
13933 if (cu_header->version >= 5)
13934 return dwarf2_rnglists_process (offset, cu, callback);
13935
d00adf39 13936 base = cu->base_address;
43039443 13937
5e22e966
SM
13938 per_objfile->per_bfd->ranges.read (objfile);
13939 if (offset >= per_objfile->per_bfd->ranges.size)
43039443 13940 {
b98664d3 13941 complaint (_("Offset %d out of bounds for DW_AT_ranges attribute"),
43039443
JK
13942 offset);
13943 return 0;
13944 }
5e22e966 13945 buffer = per_objfile->per_bfd->ranges.buffer + offset;
43039443 13946
b3b3bada 13947 baseaddr = objfile->text_section_offset ();
ff013f42 13948
43039443
JK
13949 while (1)
13950 {
13951 CORE_ADDR range_beginning, range_end;
13952
c8a7a66f 13953 range_beginning = cu->header.read_address (obfd, buffer, &dummy);
43039443 13954 buffer += addr_size;
c8a7a66f 13955 range_end = cu->header.read_address (obfd, buffer, &dummy);
43039443
JK
13956 buffer += addr_size;
13957 offset += 2 * addr_size;
13958
13959 /* An end of list marker is a pair of zero addresses. */
13960 if (range_beginning == 0 && range_end == 0)
13961 /* Found the end of list entry. */
13962 break;
13963
13964 /* Each base address selection entry is a pair of 2 values.
13965 The first is the largest possible address, the second is
13966 the base address. Check for a base address here. */
13967 if ((range_beginning & mask) == mask)
13968 {
28d2bfb9
AB
13969 /* If we found the largest possible address, then we already
13970 have the base address in range_end. */
13971 base = range_end;
43039443
JK
13972 continue;
13973 }
13974
2b24b6e4 13975 if (!base.has_value ())
43039443
JK
13976 {
13977 /* We have no valid base address for the ranges
13978 data. */
b98664d3 13979 complaint (_("Invalid .debug_ranges data (no base address)"));
43039443
JK
13980 return 0;
13981 }
13982
9277c30c
UW
13983 if (range_beginning > range_end)
13984 {
13985 /* Inverted range entries are invalid. */
b98664d3 13986 complaint (_("Invalid .debug_ranges data (inverted range)"));
9277c30c
UW
13987 return 0;
13988 }
13989
13990 /* Empty range entries have no effect. */
13991 if (range_beginning == range_end)
13992 continue;
13993
2b24b6e4
TT
13994 range_beginning += *base;
13995 range_end += *base;
43039443 13996
01093045
DE
13997 /* A not-uncommon case of bad debug info.
13998 Don't pollute the addrmap with bad data. */
13999 if (range_beginning + baseaddr == 0
5e22e966 14000 && !per_objfile->per_bfd->has_section_at_zero)
01093045 14001 {
b98664d3 14002 complaint (_(".debug_ranges entry has start address of zero"
4262abfb 14003 " [in module %s]"), objfile_name (objfile));
01093045
DE
14004 continue;
14005 }
14006
5f46c5a5
JK
14007 callback (range_beginning, range_end);
14008 }
14009
14010 return 1;
14011}
14012
14013/* Get low and high pc attributes from DW_AT_ranges attribute value OFFSET.
14014 Return 1 if the attributes are present and valid, otherwise, return 0.
14015 If RANGES_PST is not NULL we should setup `objfile->psymtabs_addrmap'. */
14016
14017static int
14018dwarf2_ranges_read (unsigned offset, CORE_ADDR *low_return,
14019 CORE_ADDR *high_return, struct dwarf2_cu *cu,
891813be 14020 dwarf2_psymtab *ranges_pst)
5f46c5a5 14021{
5e22e966 14022 struct objfile *objfile = cu->per_objfile->objfile;
08feed99 14023 struct gdbarch *gdbarch = objfile->arch ();
b3b3bada 14024 const CORE_ADDR baseaddr = objfile->text_section_offset ();
5f46c5a5
JK
14025 int low_set = 0;
14026 CORE_ADDR low = 0;
14027 CORE_ADDR high = 0;
14028 int retval;
14029
14030 retval = dwarf2_ranges_process (offset, cu,
14031 [&] (CORE_ADDR range_beginning, CORE_ADDR range_end)
14032 {
9277c30c 14033 if (ranges_pst != NULL)
3e29f34a
MR
14034 {
14035 CORE_ADDR lowpc;
14036 CORE_ADDR highpc;
14037
79748972
TT
14038 lowpc = (gdbarch_adjust_dwarf2_addr (gdbarch,
14039 range_beginning + baseaddr)
14040 - baseaddr);
14041 highpc = (gdbarch_adjust_dwarf2_addr (gdbarch,
14042 range_end + baseaddr)
14043 - baseaddr);
d320c2b5
TT
14044 addrmap_set_empty (objfile->partial_symtabs->psymtabs_addrmap,
14045 lowpc, highpc - 1, ranges_pst);
3e29f34a 14046 }
ff013f42 14047
43039443
JK
14048 /* FIXME: This is recording everything as a low-high
14049 segment of consecutive addresses. We should have a
14050 data structure for discontiguous block ranges
14051 instead. */
14052 if (! low_set)
14053 {
14054 low = range_beginning;
14055 high = range_end;
14056 low_set = 1;
14057 }
14058 else
14059 {
14060 if (range_beginning < low)
14061 low = range_beginning;
14062 if (range_end > high)
14063 high = range_end;
14064 }
5f46c5a5
JK
14065 });
14066 if (!retval)
14067 return 0;
43039443
JK
14068
14069 if (! low_set)
14070 /* If the first entry is an end-of-list marker, the range
14071 describes an empty scope, i.e. no instructions. */
14072 return 0;
14073
14074 if (low_return)
14075 *low_return = low;
14076 if (high_return)
14077 *high_return = high;
14078 return 1;
14079}
14080
3a2b436a
JK
14081/* Get low and high pc attributes from a die. See enum pc_bounds_kind
14082 definition for the return value. *LOWPC and *HIGHPC are set iff
e385593e 14083 neither PC_BOUNDS_NOT_PRESENT nor PC_BOUNDS_INVALID are returned. */
380bca97 14084
3a2b436a 14085static enum pc_bounds_kind
af34e669 14086dwarf2_get_pc_bounds (struct die_info *die, CORE_ADDR *lowpc,
d85a05f0 14087 CORE_ADDR *highpc, struct dwarf2_cu *cu,
891813be 14088 dwarf2_psymtab *pst)
c906108c 14089{
976ca316 14090 dwarf2_per_objfile *per_objfile = cu->per_objfile;
c906108c 14091 struct attribute *attr;
91da1414 14092 struct attribute *attr_high;
af34e669
DJ
14093 CORE_ADDR low = 0;
14094 CORE_ADDR high = 0;
e385593e 14095 enum pc_bounds_kind ret;
c906108c 14096
91da1414
MW
14097 attr_high = dwarf2_attr (die, DW_AT_high_pc, cu);
14098 if (attr_high)
af34e669 14099 {
e142c38c 14100 attr = dwarf2_attr (die, DW_AT_low_pc, cu);
435d3d88 14101 if (attr != nullptr)
91da1414 14102 {
cd6c91b4
TT
14103 low = attr->value_as_address ();
14104 high = attr_high->value_as_address ();
14105 if (cu->header.version >= 4 && attr_high->form_is_constant ())
31aa7e4e 14106 high += low;
91da1414 14107 }
af34e669
DJ
14108 else
14109 /* Found high w/o low attribute. */
e385593e 14110 return PC_BOUNDS_INVALID;
af34e669
DJ
14111
14112 /* Found consecutive range of addresses. */
3a2b436a 14113 ret = PC_BOUNDS_HIGH_LOW;
af34e669 14114 }
c906108c 14115 else
af34e669 14116 {
e142c38c 14117 attr = dwarf2_attr (die, DW_AT_ranges, cu);
af34e669
DJ
14118 if (attr != NULL)
14119 {
18a8505e 14120 /* DW_AT_rnglists_base does not apply to DIEs from the DWO skeleton.
ab435259
DE
14121 We take advantage of the fact that DW_AT_ranges does not appear
14122 in DW_TAG_compile_unit of DWO files. */
14123 int need_ranges_base = die->tag != DW_TAG_compile_unit;
14124 unsigned int ranges_offset = (DW_UNSND (attr)
14125 + (need_ranges_base
14126 ? cu->ranges_base
14127 : 0));
2e3cf129 14128
af34e669 14129 /* Value of the DW_AT_ranges attribute is the offset in the
a604369a 14130 .debug_ranges section. */
2e3cf129 14131 if (!dwarf2_ranges_read (ranges_offset, &low, &high, cu, pst))
e385593e 14132 return PC_BOUNDS_INVALID;
43039443 14133 /* Found discontinuous range of addresses. */
3a2b436a 14134 ret = PC_BOUNDS_RANGES;
af34e669 14135 }
e385593e
JK
14136 else
14137 return PC_BOUNDS_NOT_PRESENT;
af34e669 14138 }
c906108c 14139
48fbe735 14140 /* partial_die_info::read has also the strict LOW < HIGH requirement. */
9373cf26 14141 if (high <= low)
e385593e 14142 return PC_BOUNDS_INVALID;
c906108c
SS
14143
14144 /* When using the GNU linker, .gnu.linkonce. sections are used to
14145 eliminate duplicate copies of functions and vtables and such.
14146 The linker will arbitrarily choose one and discard the others.
14147 The AT_*_pc values for such functions refer to local labels in
14148 these sections. If the section from that file was discarded, the
14149 labels are not in the output, so the relocs get a value of 0.
14150 If this is a discarded function, mark the pc bounds as invalid,
14151 so that GDB will ignore it. */
976ca316 14152 if (low == 0 && !per_objfile->per_bfd->has_section_at_zero)
e385593e 14153 return PC_BOUNDS_INVALID;
c906108c
SS
14154
14155 *lowpc = low;
96408a79
SA
14156 if (highpc)
14157 *highpc = high;
af34e669 14158 return ret;
c906108c
SS
14159}
14160
b084d499
JB
14161/* Assuming that DIE represents a subprogram DIE or a lexical block, get
14162 its low and high PC addresses. Do nothing if these addresses could not
14163 be determined. Otherwise, set LOWPC to the low address if it is smaller,
14164 and HIGHPC to the high address if greater than HIGHPC. */
14165
14166static void
14167dwarf2_get_subprogram_pc_bounds (struct die_info *die,
14168 CORE_ADDR *lowpc, CORE_ADDR *highpc,
14169 struct dwarf2_cu *cu)
14170{
14171 CORE_ADDR low, high;
14172 struct die_info *child = die->child;
14173
e385593e 14174 if (dwarf2_get_pc_bounds (die, &low, &high, cu, NULL) >= PC_BOUNDS_RANGES)
b084d499 14175 {
325fac50
PA
14176 *lowpc = std::min (*lowpc, low);
14177 *highpc = std::max (*highpc, high);
b084d499
JB
14178 }
14179
14180 /* If the language does not allow nested subprograms (either inside
14181 subprograms or lexical blocks), we're done. */
14182 if (cu->language != language_ada)
14183 return;
6e70227d 14184
b084d499
JB
14185 /* Check all the children of the given DIE. If it contains nested
14186 subprograms, then check their pc bounds. Likewise, we need to
14187 check lexical blocks as well, as they may also contain subprogram
14188 definitions. */
14189 while (child && child->tag)
14190 {
14191 if (child->tag == DW_TAG_subprogram
14192 || child->tag == DW_TAG_lexical_block)
14193 dwarf2_get_subprogram_pc_bounds (child, lowpc, highpc, cu);
436c571c 14194 child = child->sibling;
b084d499
JB
14195 }
14196}
14197
fae299cd
DC
14198/* Get the low and high pc's represented by the scope DIE, and store
14199 them in *LOWPC and *HIGHPC. If the correct values can't be
14200 determined, set *LOWPC to -1 and *HIGHPC to 0. */
14201
14202static void
14203get_scope_pc_bounds (struct die_info *die,
14204 CORE_ADDR *lowpc, CORE_ADDR *highpc,
14205 struct dwarf2_cu *cu)
14206{
14207 CORE_ADDR best_low = (CORE_ADDR) -1;
14208 CORE_ADDR best_high = (CORE_ADDR) 0;
14209 CORE_ADDR current_low, current_high;
14210
3a2b436a 14211 if (dwarf2_get_pc_bounds (die, &current_low, &current_high, cu, NULL)
e385593e 14212 >= PC_BOUNDS_RANGES)
fae299cd
DC
14213 {
14214 best_low = current_low;
14215 best_high = current_high;
14216 }
14217 else
14218 {
14219 struct die_info *child = die->child;
14220
14221 while (child && child->tag)
14222 {
14223 switch (child->tag) {
14224 case DW_TAG_subprogram:
b084d499 14225 dwarf2_get_subprogram_pc_bounds (child, &best_low, &best_high, cu);
fae299cd
DC
14226 break;
14227 case DW_TAG_namespace:
f55ee35c 14228 case DW_TAG_module:
fae299cd
DC
14229 /* FIXME: carlton/2004-01-16: Should we do this for
14230 DW_TAG_class_type/DW_TAG_structure_type, too? I think
14231 that current GCC's always emit the DIEs corresponding
14232 to definitions of methods of classes as children of a
14233 DW_TAG_compile_unit or DW_TAG_namespace (as opposed to
14234 the DIEs giving the declarations, which could be
14235 anywhere). But I don't see any reason why the
14236 standards says that they have to be there. */
14237 get_scope_pc_bounds (child, &current_low, &current_high, cu);
14238
14239 if (current_low != ((CORE_ADDR) -1))
14240 {
325fac50
PA
14241 best_low = std::min (best_low, current_low);
14242 best_high = std::max (best_high, current_high);
fae299cd
DC
14243 }
14244 break;
14245 default:
0963b4bd 14246 /* Ignore. */
fae299cd
DC
14247 break;
14248 }
14249
436c571c 14250 child = child->sibling;
fae299cd
DC
14251 }
14252 }
14253
14254 *lowpc = best_low;
14255 *highpc = best_high;
14256}
14257
801e3a5b
JB
14258/* Record the address ranges for BLOCK, offset by BASEADDR, as given
14259 in DIE. */
380bca97 14260
801e3a5b
JB
14261static void
14262dwarf2_record_block_ranges (struct die_info *die, struct block *block,
14263 CORE_ADDR baseaddr, struct dwarf2_cu *cu)
14264{
5e22e966 14265 struct objfile *objfile = cu->per_objfile->objfile;
08feed99 14266 struct gdbarch *gdbarch = objfile->arch ();
801e3a5b 14267 struct attribute *attr;
91da1414 14268 struct attribute *attr_high;
801e3a5b 14269
91da1414
MW
14270 attr_high = dwarf2_attr (die, DW_AT_high_pc, cu);
14271 if (attr_high)
801e3a5b 14272 {
801e3a5b 14273 attr = dwarf2_attr (die, DW_AT_low_pc, cu);
435d3d88 14274 if (attr != nullptr)
801e3a5b 14275 {
cd6c91b4
TT
14276 CORE_ADDR low = attr->value_as_address ();
14277 CORE_ADDR high = attr_high->value_as_address ();
31aa7e4e 14278
cd6c91b4 14279 if (cu->header.version >= 4 && attr_high->form_is_constant ())
31aa7e4e 14280 high += low;
9a619af0 14281
3e29f34a
MR
14282 low = gdbarch_adjust_dwarf2_addr (gdbarch, low + baseaddr);
14283 high = gdbarch_adjust_dwarf2_addr (gdbarch, high + baseaddr);
c24bdb02 14284 cu->get_builder ()->record_block_range (block, low, high - 1);
801e3a5b
JB
14285 }
14286 }
14287
14288 attr = dwarf2_attr (die, DW_AT_ranges, cu);
435d3d88 14289 if (attr != nullptr)
801e3a5b 14290 {
18a8505e 14291 /* DW_AT_rnglists_base does not apply to DIEs from the DWO skeleton.
ab435259
DE
14292 We take advantage of the fact that DW_AT_ranges does not appear
14293 in DW_TAG_compile_unit of DWO files. */
14294 int need_ranges_base = die->tag != DW_TAG_compile_unit;
801e3a5b
JB
14295
14296 /* The value of the DW_AT_ranges attribute is the offset of the
14297 address range list in the .debug_ranges section. */
ab435259
DE
14298 unsigned long offset = (DW_UNSND (attr)
14299 + (need_ranges_base ? cu->ranges_base : 0));
801e3a5b 14300
2d5f09ec 14301 std::vector<blockrange> blockvec;
5f46c5a5
JK
14302 dwarf2_ranges_process (offset, cu,
14303 [&] (CORE_ADDR start, CORE_ADDR end)
14304 {
58fdfd2c
JK
14305 start += baseaddr;
14306 end += baseaddr;
5f46c5a5
JK
14307 start = gdbarch_adjust_dwarf2_addr (gdbarch, start);
14308 end = gdbarch_adjust_dwarf2_addr (gdbarch, end);
c24bdb02 14309 cu->get_builder ()->record_block_range (block, start, end - 1);
2d5f09ec 14310 blockvec.emplace_back (start, end);
5f46c5a5 14311 });
2d5f09ec
KB
14312
14313 BLOCK_RANGES(block) = make_blockranges (objfile, blockvec);
801e3a5b
JB
14314 }
14315}
14316
685b1105
JK
14317/* Check whether the producer field indicates either of GCC < 4.6, or the
14318 Intel C/C++ compiler, and cache the result in CU. */
60d5a603 14319
685b1105
JK
14320static void
14321check_producer (struct dwarf2_cu *cu)
60d5a603 14322{
38360086 14323 int major, minor;
60d5a603
JK
14324
14325 if (cu->producer == NULL)
14326 {
14327 /* For unknown compilers expect their behavior is DWARF version
14328 compliant.
14329
14330 GCC started to support .debug_types sections by -gdwarf-4 since
14331 gcc-4.5.x. As the .debug_types sections are missing DW_AT_producer
14332 for their space efficiency GDB cannot workaround gcc-4.5.x -gdwarf-4
14333 combination. gcc-4.5.x -gdwarf-4 binaries have DW_AT_accessibility
14334 interpreted incorrectly by GDB now - GCC PR debug/48229. */
60d5a603 14335 }
b1ffba5a 14336 else if (producer_is_gcc (cu->producer, &major, &minor))
60d5a603 14337 {
38360086
MW
14338 cu->producer_is_gxx_lt_4_6 = major < 4 || (major == 4 && minor < 6);
14339 cu->producer_is_gcc_lt_4_3 = major < 4 || (major == 4 && minor < 3);
685b1105 14340 }
5230b05a 14341 else if (producer_is_icc (cu->producer, &major, &minor))
eb77c9df
AB
14342 {
14343 cu->producer_is_icc = true;
14344 cu->producer_is_icc_lt_14 = major < 14;
14345 }
c258c396
JD
14346 else if (startswith (cu->producer, "CodeWarrior S12/L-ISA"))
14347 cu->producer_is_codewarrior = true;
685b1105
JK
14348 else
14349 {
14350 /* For other non-GCC compilers, expect their behavior is DWARF version
14351 compliant. */
60d5a603
JK
14352 }
14353
9068261f 14354 cu->checked_producer = true;
685b1105 14355}
ba919b58 14356
685b1105
JK
14357/* Check for GCC PR debug/45124 fix which is not present in any G++ version up
14358 to 4.5.any while it is present already in G++ 4.6.0 - the PR has been fixed
14359 during 4.6.0 experimental. */
14360
9068261f 14361static bool
685b1105
JK
14362producer_is_gxx_lt_4_6 (struct dwarf2_cu *cu)
14363{
14364 if (!cu->checked_producer)
14365 check_producer (cu);
14366
14367 return cu->producer_is_gxx_lt_4_6;
60d5a603
JK
14368}
14369
c258c396
JD
14370
14371/* Codewarrior (at least as of version 5.0.40) generates dwarf line information
14372 with incorrect is_stmt attributes. */
14373
14374static bool
14375producer_is_codewarrior (struct dwarf2_cu *cu)
14376{
14377 if (!cu->checked_producer)
14378 check_producer (cu);
14379
14380 return cu->producer_is_codewarrior;
14381}
14382
405feb71 14383/* Return the default accessibility type if it is not overridden by
60d5a603
JK
14384 DW_AT_accessibility. */
14385
14386static enum dwarf_access_attribute
14387dwarf2_default_access_attribute (struct die_info *die, struct dwarf2_cu *cu)
14388{
14389 if (cu->header.version < 3 || producer_is_gxx_lt_4_6 (cu))
14390 {
14391 /* The default DWARF 2 accessibility for members is public, the default
14392 accessibility for inheritance is private. */
14393
14394 if (die->tag != DW_TAG_inheritance)
14395 return DW_ACCESS_public;
14396 else
14397 return DW_ACCESS_private;
14398 }
14399 else
14400 {
14401 /* DWARF 3+ defines the default accessibility a different way. The same
14402 rules apply now for DW_TAG_inheritance as for the members and it only
14403 depends on the container kind. */
14404
14405 if (die->parent->tag == DW_TAG_class_type)
14406 return DW_ACCESS_private;
14407 else
14408 return DW_ACCESS_public;
14409 }
14410}
14411
74ac6d43
TT
14412/* Look for DW_AT_data_member_location. Set *OFFSET to the byte
14413 offset. If the attribute was not found return 0, otherwise return
14414 1. If it was found but could not properly be handled, set *OFFSET
14415 to 0. */
14416
14417static int
14418handle_data_member_location (struct die_info *die, struct dwarf2_cu *cu,
14419 LONGEST *offset)
14420{
14421 struct attribute *attr;
14422
14423 attr = dwarf2_attr (die, DW_AT_data_member_location, cu);
14424 if (attr != NULL)
14425 {
14426 *offset = 0;
14427
14428 /* Note that we do not check for a section offset first here.
14429 This is because DW_AT_data_member_location is new in DWARF 4,
14430 so if we see it, we can assume that a constant form is really
14431 a constant and not a section offset. */
cd6c91b4 14432 if (attr->form_is_constant ())
0826b30a 14433 *offset = attr->constant_value (0);
cd6c91b4 14434 else if (attr->form_is_section_offset ())
74ac6d43 14435 dwarf2_complex_location_expr_complaint ();
4fc6c0d5 14436 else if (attr->form_is_block ())
74ac6d43
TT
14437 *offset = decode_locdesc (DW_BLOCK (attr), cu);
14438 else
14439 dwarf2_complex_location_expr_complaint ();
14440
14441 return 1;
14442 }
14443
14444 return 0;
14445}
14446
7d79de9a
TT
14447/* Look for DW_AT_data_member_location and store the results in FIELD. */
14448
14449static void
14450handle_data_member_location (struct die_info *die, struct dwarf2_cu *cu,
14451 struct field *field)
14452{
14453 struct attribute *attr;
14454
14455 attr = dwarf2_attr (die, DW_AT_data_member_location, cu);
14456 if (attr != NULL)
14457 {
14458 if (attr->form_is_constant ())
14459 {
14460 LONGEST offset = attr->constant_value (0);
14461 SET_FIELD_BITPOS (*field, offset * bits_per_byte);
14462 }
14463 else if (attr->form_is_section_offset ())
14464 dwarf2_complex_location_expr_complaint ();
14465 else if (attr->form_is_block ())
14466 {
14467 bool handled;
14468 CORE_ADDR offset = decode_locdesc (DW_BLOCK (attr), cu, &handled);
14469 if (handled)
14470 SET_FIELD_BITPOS (*field, offset * bits_per_byte);
14471 else
14472 {
5e22e966
SM
14473 dwarf2_per_objfile *per_objfile = cu->per_objfile;
14474 struct objfile *objfile = per_objfile->objfile;
7d79de9a
TT
14475 struct dwarf2_locexpr_baton *dlbaton
14476 = XOBNEW (&objfile->objfile_obstack,
14477 struct dwarf2_locexpr_baton);
14478 dlbaton->data = DW_BLOCK (attr)->data;
14479 dlbaton->size = DW_BLOCK (attr)->size;
14480 /* When using this baton, we want to compute the address
14481 of the field, not the value. This is why
14482 is_reference is set to false here. */
14483 dlbaton->is_reference = false;
5e22e966 14484 dlbaton->per_objfile = per_objfile;
7d79de9a
TT
14485 dlbaton->per_cu = cu->per_cu;
14486
14487 SET_FIELD_DWARF_BLOCK (*field, dlbaton);
14488 }
14489 }
14490 else
14491 dwarf2_complex_location_expr_complaint ();
14492 }
14493}
14494
c906108c
SS
14495/* Add an aggregate field to the field list. */
14496
14497static void
107d2387 14498dwarf2_add_field (struct field_info *fip, struct die_info *die,
e7c27a73 14499 struct dwarf2_cu *cu)
6e70227d 14500{
5e22e966 14501 struct objfile *objfile = cu->per_objfile->objfile;
08feed99 14502 struct gdbarch *gdbarch = objfile->arch ();
c906108c
SS
14503 struct nextfield *new_field;
14504 struct attribute *attr;
14505 struct field *fp;
15d034d0 14506 const char *fieldname = "";
c906108c 14507
7d0ccb61
DJ
14508 if (die->tag == DW_TAG_inheritance)
14509 {
be2daae6
TT
14510 fip->baseclasses.emplace_back ();
14511 new_field = &fip->baseclasses.back ();
7d0ccb61
DJ
14512 }
14513 else
14514 {
be2daae6
TT
14515 fip->fields.emplace_back ();
14516 new_field = &fip->fields.back ();
7d0ccb61 14517 }
be2daae6 14518
9c6a1327
TT
14519 new_field->offset = die->sect_off;
14520
e142c38c 14521 attr = dwarf2_attr (die, DW_AT_accessibility, cu);
435d3d88 14522 if (attr != nullptr)
c906108c 14523 new_field->accessibility = DW_UNSND (attr);
60d5a603
JK
14524 else
14525 new_field->accessibility = dwarf2_default_access_attribute (die, cu);
c906108c
SS
14526 if (new_field->accessibility != DW_ACCESS_public)
14527 fip->non_public_fields = 1;
60d5a603 14528
e142c38c 14529 attr = dwarf2_attr (die, DW_AT_virtuality, cu);
435d3d88 14530 if (attr != nullptr)
c906108c 14531 new_field->virtuality = DW_UNSND (attr);
60d5a603
JK
14532 else
14533 new_field->virtuality = DW_VIRTUALITY_none;
c906108c
SS
14534
14535 fp = &new_field->field;
a9a9bd0f 14536
e142c38c 14537 if (die->tag == DW_TAG_member && ! die_is_declaration (die, cu))
c906108c 14538 {
a9a9bd0f 14539 /* Data member other than a C++ static data member. */
6e70227d 14540
c906108c 14541 /* Get type of field. */
e7c27a73 14542 fp->type = die_type (die, cu);
c906108c 14543
d6a843b5 14544 SET_FIELD_BITPOS (*fp, 0);
01ad7f36 14545
c906108c 14546 /* Get bit size of field (zero if none). */
e142c38c 14547 attr = dwarf2_attr (die, DW_AT_bit_size, cu);
435d3d88 14548 if (attr != nullptr)
c906108c
SS
14549 {
14550 FIELD_BITSIZE (*fp) = DW_UNSND (attr);
14551 }
14552 else
14553 {
14554 FIELD_BITSIZE (*fp) = 0;
14555 }
14556
14557 /* Get bit offset of field. */
7d79de9a 14558 handle_data_member_location (die, cu, fp);
e142c38c 14559 attr = dwarf2_attr (die, DW_AT_bit_offset, cu);
435d3d88 14560 if (attr != nullptr)
c906108c 14561 {
d5a22e77 14562 if (gdbarch_byte_order (gdbarch) == BFD_ENDIAN_BIG)
c906108c
SS
14563 {
14564 /* For big endian bits, the DW_AT_bit_offset gives the
c5aa993b
JM
14565 additional bit offset from the MSB of the containing
14566 anonymous object to the MSB of the field. We don't
14567 have to do anything special since we don't need to
14568 know the size of the anonymous object. */
f41f5e61 14569 SET_FIELD_BITPOS (*fp, FIELD_BITPOS (*fp) + DW_UNSND (attr));
c906108c
SS
14570 }
14571 else
14572 {
14573 /* For little endian bits, compute the bit offset to the
c5aa993b
JM
14574 MSB of the anonymous object, subtract off the number of
14575 bits from the MSB of the field to the MSB of the
14576 object, and then subtract off the number of bits of
14577 the field itself. The result is the bit offset of
14578 the LSB of the field. */
c906108c
SS
14579 int anonymous_size;
14580 int bit_offset = DW_UNSND (attr);
14581
e142c38c 14582 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
435d3d88 14583 if (attr != nullptr)
c906108c
SS
14584 {
14585 /* The size of the anonymous object containing
14586 the bit field is explicit, so use the
14587 indicated size (in bytes). */
14588 anonymous_size = DW_UNSND (attr);
14589 }
14590 else
14591 {
14592 /* The size of the anonymous object containing
14593 the bit field must be inferred from the type
14594 attribute of the data member containing the
14595 bit field. */
14596 anonymous_size = TYPE_LENGTH (fp->type);
14597 }
f41f5e61
PA
14598 SET_FIELD_BITPOS (*fp,
14599 (FIELD_BITPOS (*fp)
14600 + anonymous_size * bits_per_byte
14601 - bit_offset - FIELD_BITSIZE (*fp)));
c906108c
SS
14602 }
14603 }
da5b30da
AA
14604 attr = dwarf2_attr (die, DW_AT_data_bit_offset, cu);
14605 if (attr != NULL)
14606 SET_FIELD_BITPOS (*fp, (FIELD_BITPOS (*fp)
0826b30a 14607 + attr->constant_value (0)));
c906108c
SS
14608
14609 /* Get name of field. */
39cbfefa
DJ
14610 fieldname = dwarf2_name (die, cu);
14611 if (fieldname == NULL)
14612 fieldname = "";
d8151005
DJ
14613
14614 /* The name is already allocated along with this objfile, so we don't
14615 need to duplicate it for the type. */
14616 fp->name = fieldname;
c906108c
SS
14617
14618 /* Change accessibility for artificial fields (e.g. virtual table
c5aa993b 14619 pointer or virtual base class pointer) to private. */
e142c38c 14620 if (dwarf2_attr (die, DW_AT_artificial, cu))
c906108c 14621 {
d48cc9dd 14622 FIELD_ARTIFICIAL (*fp) = 1;
c906108c
SS
14623 new_field->accessibility = DW_ACCESS_private;
14624 fip->non_public_fields = 1;
14625 }
14626 }
a9a9bd0f 14627 else if (die->tag == DW_TAG_member || die->tag == DW_TAG_variable)
c906108c 14628 {
a9a9bd0f
DC
14629 /* C++ static member. */
14630
14631 /* NOTE: carlton/2002-11-05: It should be a DW_TAG_member that
14632 is a declaration, but all versions of G++ as of this writing
14633 (so through at least 3.2.1) incorrectly generate
14634 DW_TAG_variable tags. */
6e70227d 14635
ff355380 14636 const char *physname;
c906108c 14637
a9a9bd0f 14638 /* Get name of field. */
39cbfefa
DJ
14639 fieldname = dwarf2_name (die, cu);
14640 if (fieldname == NULL)
c906108c
SS
14641 return;
14642
254e6b9e 14643 attr = dwarf2_attr (die, DW_AT_const_value, cu);
3863f96c
DE
14644 if (attr
14645 /* Only create a symbol if this is an external value.
14646 new_symbol checks this and puts the value in the global symbol
14647 table, which we want. If it is not external, new_symbol
14648 will try to put the value in cu->list_in_scope which is wrong. */
14649 && dwarf2_flag_true_p (die, DW_AT_external, cu))
254e6b9e
DE
14650 {
14651 /* A static const member, not much different than an enum as far as
14652 we're concerned, except that we can support more types. */
14653 new_symbol (die, NULL, cu);
14654 }
14655
2df3850c 14656 /* Get physical name. */
ff355380 14657 physname = dwarf2_physname (fieldname, die, cu);
c906108c 14658
d8151005
DJ
14659 /* The name is already allocated along with this objfile, so we don't
14660 need to duplicate it for the type. */
14661 SET_FIELD_PHYSNAME (*fp, physname ? physname : "");
e7c27a73 14662 FIELD_TYPE (*fp) = die_type (die, cu);
d8151005 14663 FIELD_NAME (*fp) = fieldname;
c906108c
SS
14664 }
14665 else if (die->tag == DW_TAG_inheritance)
14666 {
74ac6d43 14667 /* C++ base class field. */
7d79de9a 14668 handle_data_member_location (die, cu, fp);
c906108c 14669 FIELD_BITSIZE (*fp) = 0;
e7c27a73 14670 FIELD_TYPE (*fp) = die_type (die, cu);
7d93a1e0 14671 FIELD_NAME (*fp) = fp->type->name ();
c906108c 14672 }
2ddeaf8a
TT
14673 else
14674 gdb_assert_not_reached ("missing case in dwarf2_add_field");
c906108c
SS
14675}
14676
883fd55a
KS
14677/* Can the type given by DIE define another type? */
14678
14679static bool
14680type_can_define_types (const struct die_info *die)
14681{
14682 switch (die->tag)
14683 {
14684 case DW_TAG_typedef:
14685 case DW_TAG_class_type:
14686 case DW_TAG_structure_type:
14687 case DW_TAG_union_type:
14688 case DW_TAG_enumeration_type:
14689 return true;
14690
14691 default:
14692 return false;
14693 }
14694}
14695
14696/* Add a type definition defined in the scope of the FIP's class. */
98751a41
JK
14697
14698static void
883fd55a
KS
14699dwarf2_add_type_defn (struct field_info *fip, struct die_info *die,
14700 struct dwarf2_cu *cu)
6e70227d 14701{
be2daae6
TT
14702 struct decl_field fp;
14703 memset (&fp, 0, sizeof (fp));
98751a41 14704
883fd55a 14705 gdb_assert (type_can_define_types (die));
98751a41 14706
883fd55a 14707 /* Get name of field. NULL is okay here, meaning an anonymous type. */
be2daae6
TT
14708 fp.name = dwarf2_name (die, cu);
14709 fp.type = read_type_die (die, cu);
98751a41 14710
c191a687
KS
14711 /* Save accessibility. */
14712 enum dwarf_access_attribute accessibility;
14713 struct attribute *attr = dwarf2_attr (die, DW_AT_accessibility, cu);
14714 if (attr != NULL)
14715 accessibility = (enum dwarf_access_attribute) DW_UNSND (attr);
14716 else
14717 accessibility = dwarf2_default_access_attribute (die, cu);
14718 switch (accessibility)
14719 {
14720 case DW_ACCESS_public:
14721 /* The assumed value if neither private nor protected. */
14722 break;
14723 case DW_ACCESS_private:
be2daae6 14724 fp.is_private = 1;
c191a687
KS
14725 break;
14726 case DW_ACCESS_protected:
be2daae6 14727 fp.is_protected = 1;
c191a687
KS
14728 break;
14729 default:
b98664d3 14730 complaint (_("Unhandled DW_AT_accessibility value (%x)"), accessibility);
c191a687
KS
14731 }
14732
883fd55a 14733 if (die->tag == DW_TAG_typedef)
be2daae6 14734 fip->typedef_field_list.push_back (fp);
883fd55a 14735 else
be2daae6 14736 fip->nested_types_list.push_back (fp);
98751a41
JK
14737}
14738
9c6a1327
TT
14739/* A convenience typedef that's used when finding the discriminant
14740 field for a variant part. */
1b95cdb7
SM
14741typedef std::unordered_map<sect_offset, int, gdb::hash_enum<sect_offset>>
14742 offset_map_type;
9c6a1327
TT
14743
14744/* Compute the discriminant range for a given variant. OBSTACK is
14745 where the results will be stored. VARIANT is the variant to
14746 process. IS_UNSIGNED indicates whether the discriminant is signed
14747 or unsigned. */
14748
14749static const gdb::array_view<discriminant_range>
14750convert_variant_range (struct obstack *obstack, const variant_field &variant,
14751 bool is_unsigned)
14752{
14753 std::vector<discriminant_range> ranges;
14754
14755 if (variant.default_branch)
14756 return {};
14757
14758 if (variant.discr_list_data == nullptr)
14759 {
14760 discriminant_range r
14761 = {variant.discriminant_value, variant.discriminant_value};
14762 ranges.push_back (r);
14763 }
14764 else
14765 {
14766 gdb::array_view<const gdb_byte> data (variant.discr_list_data->data,
14767 variant.discr_list_data->size);
14768 while (!data.empty ())
14769 {
14770 if (data[0] != DW_DSC_range && data[0] != DW_DSC_label)
14771 {
14772 complaint (_("invalid discriminant marker: %d"), data[0]);
14773 break;
14774 }
14775 bool is_range = data[0] == DW_DSC_range;
14776 data = data.slice (1);
14777
14778 ULONGEST low, high;
14779 unsigned int bytes_read;
14780
14781 if (data.empty ())
14782 {
14783 complaint (_("DW_AT_discr_list missing low value"));
14784 break;
14785 }
14786 if (is_unsigned)
14787 low = read_unsigned_leb128 (nullptr, data.data (), &bytes_read);
14788 else
14789 low = (ULONGEST) read_signed_leb128 (nullptr, data.data (),
14790 &bytes_read);
14791 data = data.slice (bytes_read);
14792
14793 if (is_range)
14794 {
14795 if (data.empty ())
14796 {
14797 complaint (_("DW_AT_discr_list missing high value"));
14798 break;
14799 }
14800 if (is_unsigned)
14801 high = read_unsigned_leb128 (nullptr, data.data (),
14802 &bytes_read);
14803 else
14804 high = (LONGEST) read_signed_leb128 (nullptr, data.data (),
14805 &bytes_read);
14806 data = data.slice (bytes_read);
14807 }
14808 else
14809 high = low;
14810
14811 ranges.push_back ({ low, high });
14812 }
14813 }
14814
14815 discriminant_range *result = XOBNEWVEC (obstack, discriminant_range,
14816 ranges.size ());
14817 std::copy (ranges.begin (), ranges.end (), result);
14818 return gdb::array_view<discriminant_range> (result, ranges.size ());
14819}
14820
14821static const gdb::array_view<variant_part> create_variant_parts
14822 (struct obstack *obstack,
14823 const offset_map_type &offset_map,
14824 struct field_info *fi,
14825 const std::vector<variant_part_builder> &variant_parts);
14826
14827/* Fill in a "struct variant" for a given variant field. RESULT is
14828 the variant to fill in. OBSTACK is where any needed allocations
14829 will be done. OFFSET_MAP holds the mapping from section offsets to
14830 fields for the type. FI describes the fields of the type we're
14831 processing. FIELD is the variant field we're converting. */
14832
14833static void
14834create_one_variant (variant &result, struct obstack *obstack,
14835 const offset_map_type &offset_map,
14836 struct field_info *fi, const variant_field &field)
14837{
14838 result.discriminants = convert_variant_range (obstack, field, false);
14839 result.first_field = field.first_field + fi->baseclasses.size ();
14840 result.last_field = field.last_field + fi->baseclasses.size ();
14841 result.parts = create_variant_parts (obstack, offset_map, fi,
14842 field.variant_parts);
14843}
14844
14845/* Fill in a "struct variant_part" for a given variant part. RESULT
14846 is the variant part to fill in. OBSTACK is where any needed
14847 allocations will be done. OFFSET_MAP holds the mapping from
14848 section offsets to fields for the type. FI describes the fields of
14849 the type we're processing. BUILDER is the variant part to be
14850 converted. */
14851
14852static void
14853create_one_variant_part (variant_part &result,
14854 struct obstack *obstack,
14855 const offset_map_type &offset_map,
14856 struct field_info *fi,
14857 const variant_part_builder &builder)
14858{
14859 auto iter = offset_map.find (builder.discriminant_offset);
14860 if (iter == offset_map.end ())
14861 {
14862 result.discriminant_index = -1;
14863 /* Doesn't matter. */
14864 result.is_unsigned = false;
14865 }
14866 else
14867 {
14868 result.discriminant_index = iter->second;
14869 result.is_unsigned
14870 = TYPE_UNSIGNED (FIELD_TYPE
14871 (fi->fields[result.discriminant_index].field));
14872 }
14873
14874 size_t n = builder.variants.size ();
14875 variant *output = new (obstack) variant[n];
14876 for (size_t i = 0; i < n; ++i)
14877 create_one_variant (output[i], obstack, offset_map, fi,
14878 builder.variants[i]);
14879
14880 result.variants = gdb::array_view<variant> (output, n);
14881}
14882
14883/* Create a vector of variant parts that can be attached to a type.
14884 OBSTACK is where any needed allocations will be done. OFFSET_MAP
14885 holds the mapping from section offsets to fields for the type. FI
14886 describes the fields of the type we're processing. VARIANT_PARTS
14887 is the vector to convert. */
14888
14889static const gdb::array_view<variant_part>
14890create_variant_parts (struct obstack *obstack,
14891 const offset_map_type &offset_map,
14892 struct field_info *fi,
14893 const std::vector<variant_part_builder> &variant_parts)
14894{
14895 if (variant_parts.empty ())
14896 return {};
14897
14898 size_t n = variant_parts.size ();
14899 variant_part *result = new (obstack) variant_part[n];
14900 for (size_t i = 0; i < n; ++i)
14901 create_one_variant_part (result[i], obstack, offset_map, fi,
14902 variant_parts[i]);
14903
14904 return gdb::array_view<variant_part> (result, n);
14905}
14906
14907/* Compute the variant part vector for FIP, attaching it to TYPE when
14908 done. */
14909
14910static void
14911add_variant_property (struct field_info *fip, struct type *type,
14912 struct dwarf2_cu *cu)
14913{
14914 /* Map section offsets of fields to their field index. Note the
14915 field index here does not take the number of baseclasses into
14916 account. */
14917 offset_map_type offset_map;
14918 for (int i = 0; i < fip->fields.size (); ++i)
14919 offset_map[fip->fields[i].offset] = i;
14920
5e22e966 14921 struct objfile *objfile = cu->per_objfile->objfile;
9c6a1327
TT
14922 gdb::array_view<variant_part> parts
14923 = create_variant_parts (&objfile->objfile_obstack, offset_map, fip,
14924 fip->variant_parts);
14925
14926 struct dynamic_prop prop;
14927 prop.kind = PROP_VARIANT_PARTS;
14928 prop.data.variant_parts
14929 = ((gdb::array_view<variant_part> *)
14930 obstack_copy (&objfile->objfile_obstack, &parts, sizeof (parts)));
14931
5c54719c 14932 type->add_dyn_prop (DYN_PROP_VARIANT_PARTS, prop);
9c6a1327
TT
14933}
14934
c906108c
SS
14935/* Create the vector of fields, and attach it to the type. */
14936
14937static void
fba45db2 14938dwarf2_attach_fields_to_type (struct field_info *fip, struct type *type,
e7c27a73 14939 struct dwarf2_cu *cu)
c906108c 14940{
317f7127 14941 int nfields = fip->nfields ();
c906108c
SS
14942
14943 /* Record the field count, allocate space for the array of fields,
14944 and create blank accessibility bitfields if necessary. */
5e33d5f4 14945 type->set_num_fields (nfields);
3cabb6b0
SM
14946 type->set_fields
14947 ((struct field *) TYPE_ZALLOC (type, sizeof (struct field) * nfields));
c906108c 14948
b4ba55a1 14949 if (fip->non_public_fields && cu->language != language_ada)
c906108c
SS
14950 {
14951 ALLOCATE_CPLUS_STRUCT_TYPE (type);
14952
14953 TYPE_FIELD_PRIVATE_BITS (type) =
14954 (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields));
14955 B_CLRALL (TYPE_FIELD_PRIVATE_BITS (type), nfields);
14956
14957 TYPE_FIELD_PROTECTED_BITS (type) =
14958 (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields));
14959 B_CLRALL (TYPE_FIELD_PROTECTED_BITS (type), nfields);
14960
774b6a14
TT
14961 TYPE_FIELD_IGNORE_BITS (type) =
14962 (B_TYPE *) TYPE_ALLOC (type, B_BYTES (nfields));
14963 B_CLRALL (TYPE_FIELD_IGNORE_BITS (type), nfields);
c906108c
SS
14964 }
14965
14966 /* If the type has baseclasses, allocate and clear a bit vector for
14967 TYPE_FIELD_VIRTUAL_BITS. */
be2daae6 14968 if (!fip->baseclasses.empty () && cu->language != language_ada)
c906108c 14969 {
be2daae6 14970 int num_bytes = B_BYTES (fip->baseclasses.size ());
fe1b8b76 14971 unsigned char *pointer;
c906108c
SS
14972
14973 ALLOCATE_CPLUS_STRUCT_TYPE (type);
224c3ddb 14974 pointer = (unsigned char *) TYPE_ALLOC (type, num_bytes);
fe1b8b76 14975 TYPE_FIELD_VIRTUAL_BITS (type) = pointer;
be2daae6
TT
14976 B_CLRALL (TYPE_FIELD_VIRTUAL_BITS (type), fip->baseclasses.size ());
14977 TYPE_N_BASECLASSES (type) = fip->baseclasses.size ();
c906108c
SS
14978 }
14979
9c6a1327
TT
14980 if (!fip->variant_parts.empty ())
14981 add_variant_property (fip, type, cu);
2ddeaf8a 14982
be2daae6
TT
14983 /* Copy the saved-up fields into the field vector. */
14984 for (int i = 0; i < nfields; ++i)
c906108c 14985 {
be2daae6
TT
14986 struct nextfield &field
14987 = ((i < fip->baseclasses.size ()) ? fip->baseclasses[i]
14988 : fip->fields[i - fip->baseclasses.size ()]);
7d0ccb61 14989
ceacbf6e 14990 type->field (i) = field.field;
be2daae6 14991 switch (field.accessibility)
c906108c 14992 {
c5aa993b 14993 case DW_ACCESS_private:
b4ba55a1 14994 if (cu->language != language_ada)
be2daae6 14995 SET_TYPE_FIELD_PRIVATE (type, i);
c5aa993b 14996 break;
c906108c 14997
c5aa993b 14998 case DW_ACCESS_protected:
b4ba55a1 14999 if (cu->language != language_ada)
be2daae6 15000 SET_TYPE_FIELD_PROTECTED (type, i);
c5aa993b 15001 break;
c906108c 15002
c5aa993b
JM
15003 case DW_ACCESS_public:
15004 break;
c906108c 15005
c5aa993b
JM
15006 default:
15007 /* Unknown accessibility. Complain and treat it as public. */
15008 {
b98664d3 15009 complaint (_("unsupported accessibility %d"),
be2daae6 15010 field.accessibility);
c5aa993b
JM
15011 }
15012 break;
c906108c 15013 }
be2daae6 15014 if (i < fip->baseclasses.size ())
c906108c 15015 {
be2daae6 15016 switch (field.virtuality)
c906108c 15017 {
c5aa993b
JM
15018 case DW_VIRTUALITY_virtual:
15019 case DW_VIRTUALITY_pure_virtual:
b4ba55a1 15020 if (cu->language == language_ada)
a73c6dcd 15021 error (_("unexpected virtuality in component of Ada type"));
be2daae6 15022 SET_TYPE_FIELD_VIRTUAL (type, i);
c5aa993b 15023 break;
c906108c
SS
15024 }
15025 }
c906108c
SS
15026 }
15027}
15028
7d27a96d
TT
15029/* Return true if this member function is a constructor, false
15030 otherwise. */
15031
15032static int
15033dwarf2_is_constructor (struct die_info *die, struct dwarf2_cu *cu)
15034{
15035 const char *fieldname;
fe978cb0 15036 const char *type_name;
7d27a96d
TT
15037 int len;
15038
15039 if (die->parent == NULL)
15040 return 0;
15041
15042 if (die->parent->tag != DW_TAG_structure_type
15043 && die->parent->tag != DW_TAG_union_type
15044 && die->parent->tag != DW_TAG_class_type)
15045 return 0;
15046
15047 fieldname = dwarf2_name (die, cu);
fe978cb0
PA
15048 type_name = dwarf2_name (die->parent, cu);
15049 if (fieldname == NULL || type_name == NULL)
7d27a96d
TT
15050 return 0;
15051
15052 len = strlen (fieldname);
fe978cb0
PA
15053 return (strncmp (fieldname, type_name, len) == 0
15054 && (type_name[len] == '\0' || type_name[len] == '<'));
7d27a96d
TT
15055}
15056
e35000a7
TBA
15057/* Check if the given VALUE is a recognized enum
15058 dwarf_defaulted_attribute constant according to DWARF5 spec,
15059 Table 7.24. */
15060
15061static bool
15062is_valid_DW_AT_defaulted (ULONGEST value)
15063{
15064 switch (value)
15065 {
15066 case DW_DEFAULTED_no:
15067 case DW_DEFAULTED_in_class:
15068 case DW_DEFAULTED_out_of_class:
15069 return true;
15070 }
15071
3142e908 15072 complaint (_("unrecognized DW_AT_defaulted value (%s)"), pulongest (value));
e35000a7
TBA
15073 return false;
15074}
15075
c906108c
SS
15076/* Add a member function to the proper fieldlist. */
15077
15078static void
107d2387 15079dwarf2_add_member_fn (struct field_info *fip, struct die_info *die,
e7c27a73 15080 struct type *type, struct dwarf2_cu *cu)
c906108c 15081{
5e22e966 15082 struct objfile *objfile = cu->per_objfile->objfile;
c906108c 15083 struct attribute *attr;
c906108c 15084 int i;
be2daae6 15085 struct fnfieldlist *flp = nullptr;
c906108c 15086 struct fn_field *fnp;
15d034d0 15087 const char *fieldname;
f792889a 15088 struct type *this_type;
60d5a603 15089 enum dwarf_access_attribute accessibility;
c906108c 15090
b4ba55a1 15091 if (cu->language == language_ada)
a73c6dcd 15092 error (_("unexpected member function in Ada type"));
b4ba55a1 15093
2df3850c 15094 /* Get name of member function. */
39cbfefa
DJ
15095 fieldname = dwarf2_name (die, cu);
15096 if (fieldname == NULL)
2df3850c 15097 return;
c906108c 15098
c906108c 15099 /* Look up member function name in fieldlist. */
be2daae6 15100 for (i = 0; i < fip->fnfieldlists.size (); i++)
c906108c 15101 {
27bfe10e 15102 if (strcmp (fip->fnfieldlists[i].name, fieldname) == 0)
be2daae6
TT
15103 {
15104 flp = &fip->fnfieldlists[i];
15105 break;
15106 }
c906108c
SS
15107 }
15108
be2daae6
TT
15109 /* Create a new fnfieldlist if necessary. */
15110 if (flp == nullptr)
c906108c 15111 {
be2daae6
TT
15112 fip->fnfieldlists.emplace_back ();
15113 flp = &fip->fnfieldlists.back ();
c906108c 15114 flp->name = fieldname;
be2daae6 15115 i = fip->fnfieldlists.size () - 1;
c906108c
SS
15116 }
15117
be2daae6
TT
15118 /* Create a new member function field and add it to the vector of
15119 fnfieldlists. */
15120 flp->fnfields.emplace_back ();
15121 fnp = &flp->fnfields.back ();
3da10d80
KS
15122
15123 /* Delay processing of the physname until later. */
9c37b5ae 15124 if (cu->language == language_cplus)
be2daae6
TT
15125 add_to_method_list (type, i, flp->fnfields.size () - 1, fieldname,
15126 die, cu);
3da10d80
KS
15127 else
15128 {
1d06ead6 15129 const char *physname = dwarf2_physname (fieldname, die, cu);
3da10d80
KS
15130 fnp->physname = physname ? physname : "";
15131 }
15132
c906108c 15133 fnp->type = alloc_type (objfile);
f792889a 15134 this_type = read_type_die (die, cu);
78134374 15135 if (this_type && this_type->code () == TYPE_CODE_FUNC)
c906108c 15136 {
1f704f76 15137 int nparams = this_type->num_fields ();
c906108c 15138
f792889a 15139 /* TYPE is the domain of this method, and THIS_TYPE is the type
e26fb1d7
DC
15140 of the method itself (TYPE_CODE_METHOD). */
15141 smash_to_method_type (fnp->type, type,
f792889a 15142 TYPE_TARGET_TYPE (this_type),
80fc5e77 15143 this_type->fields (),
1f704f76 15144 this_type->num_fields (),
f792889a 15145 TYPE_VARARGS (this_type));
c906108c
SS
15146
15147 /* Handle static member functions.
c5aa993b 15148 Dwarf2 has no clean way to discern C++ static and non-static
0963b4bd
MS
15149 member functions. G++ helps GDB by marking the first
15150 parameter for non-static member functions (which is the this
15151 pointer) as artificial. We obtain this information from
15152 read_subroutine_type via TYPE_FIELD_ARTIFICIAL. */
f792889a 15153 if (nparams == 0 || TYPE_FIELD_ARTIFICIAL (this_type, 0) == 0)
c906108c
SS
15154 fnp->voffset = VOFFSET_STATIC;
15155 }
15156 else
b98664d3 15157 complaint (_("member function type missing for '%s'"),
3da10d80 15158 dwarf2_full_name (fieldname, die, cu));
c906108c
SS
15159
15160 /* Get fcontext from DW_AT_containing_type if present. */
e142c38c 15161 if (dwarf2_attr (die, DW_AT_containing_type, cu) != NULL)
e7c27a73 15162 fnp->fcontext = die_containing_type (die, cu);
c906108c 15163
3e43a32a
MS
15164 /* dwarf2 doesn't have stubbed physical names, so the setting of is_const and
15165 is_volatile is irrelevant, as it is needed by gdb_mangle_name only. */
c906108c
SS
15166
15167 /* Get accessibility. */
e142c38c 15168 attr = dwarf2_attr (die, DW_AT_accessibility, cu);
435d3d88 15169 if (attr != nullptr)
aead7601 15170 accessibility = (enum dwarf_access_attribute) DW_UNSND (attr);
60d5a603
JK
15171 else
15172 accessibility = dwarf2_default_access_attribute (die, cu);
15173 switch (accessibility)
c906108c 15174 {
60d5a603
JK
15175 case DW_ACCESS_private:
15176 fnp->is_private = 1;
15177 break;
15178 case DW_ACCESS_protected:
15179 fnp->is_protected = 1;
15180 break;
c906108c
SS
15181 }
15182
b02dede2 15183 /* Check for artificial methods. */
e142c38c 15184 attr = dwarf2_attr (die, DW_AT_artificial, cu);
b02dede2
DJ
15185 if (attr && DW_UNSND (attr) != 0)
15186 fnp->is_artificial = 1;
15187
e35000a7
TBA
15188 /* Check for defaulted methods. */
15189 attr = dwarf2_attr (die, DW_AT_defaulted, cu);
15190 if (attr != nullptr && is_valid_DW_AT_defaulted (DW_UNSND (attr)))
15191 fnp->defaulted = (enum dwarf_defaulted_attribute) DW_UNSND (attr);
15192
15193 /* Check for deleted methods. */
15194 attr = dwarf2_attr (die, DW_AT_deleted, cu);
15195 if (attr != nullptr && DW_UNSND (attr) != 0)
15196 fnp->is_deleted = 1;
15197
7d27a96d
TT
15198 fnp->is_constructor = dwarf2_is_constructor (die, cu);
15199
0d564a31 15200 /* Get index in virtual function table if it is a virtual member
aec5aa8b
TT
15201 function. For older versions of GCC, this is an offset in the
15202 appropriate virtual table, as specified by DW_AT_containing_type.
15203 For everyone else, it is an expression to be evaluated relative
0d564a31
DJ
15204 to the object address. */
15205
e142c38c 15206 attr = dwarf2_attr (die, DW_AT_vtable_elem_location, cu);
435d3d88 15207 if (attr != nullptr)
8e19ed76 15208 {
4fc6c0d5 15209 if (attr->form_is_block () && DW_BLOCK (attr)->size > 0)
8e19ed76 15210 {
aec5aa8b
TT
15211 if (DW_BLOCK (attr)->data[0] == DW_OP_constu)
15212 {
15213 /* Old-style GCC. */
15214 fnp->voffset = decode_locdesc (DW_BLOCK (attr), cu) + 2;
15215 }
15216 else if (DW_BLOCK (attr)->data[0] == DW_OP_deref
15217 || (DW_BLOCK (attr)->size > 1
15218 && DW_BLOCK (attr)->data[0] == DW_OP_deref_size
15219 && DW_BLOCK (attr)->data[1] == cu->header.addr_size))
15220 {
aec5aa8b
TT
15221 fnp->voffset = decode_locdesc (DW_BLOCK (attr), cu);
15222 if ((fnp->voffset % cu->header.addr_size) != 0)
15223 dwarf2_complex_location_expr_complaint ();
15224 else
15225 fnp->voffset /= cu->header.addr_size;
15226 fnp->voffset += 2;
15227 }
15228 else
15229 dwarf2_complex_location_expr_complaint ();
15230
15231 if (!fnp->fcontext)
7e993ebf
KS
15232 {
15233 /* If there is no `this' field and no DW_AT_containing_type,
15234 we cannot actually find a base class context for the
15235 vtable! */
1f704f76 15236 if (this_type->num_fields () == 0
7e993ebf
KS
15237 || !TYPE_FIELD_ARTIFICIAL (this_type, 0))
15238 {
b98664d3 15239 complaint (_("cannot determine context for virtual member "
9d8780f0
SM
15240 "function \"%s\" (offset %s)"),
15241 fieldname, sect_offset_str (die->sect_off));
7e993ebf
KS
15242 }
15243 else
15244 {
15245 fnp->fcontext
15246 = TYPE_TARGET_TYPE (TYPE_FIELD_TYPE (this_type, 0));
15247 }
15248 }
aec5aa8b 15249 }
cd6c91b4 15250 else if (attr->form_is_section_offset ())
8e19ed76 15251 {
4d3c2250 15252 dwarf2_complex_location_expr_complaint ();
8e19ed76
PS
15253 }
15254 else
15255 {
4d3c2250
KB
15256 dwarf2_invalid_attrib_class_complaint ("DW_AT_vtable_elem_location",
15257 fieldname);
8e19ed76 15258 }
0d564a31 15259 }
d48cc9dd
DJ
15260 else
15261 {
15262 attr = dwarf2_attr (die, DW_AT_virtuality, cu);
15263 if (attr && DW_UNSND (attr))
15264 {
15265 /* GCC does this, as of 2008-08-25; PR debug/37237. */
b98664d3 15266 complaint (_("Member function \"%s\" (offset %s) is virtual "
3e43a32a 15267 "but the vtable offset is not specified"),
9d8780f0 15268 fieldname, sect_offset_str (die->sect_off));
9655fd1a 15269 ALLOCATE_CPLUS_STRUCT_TYPE (type);
d48cc9dd
DJ
15270 TYPE_CPLUS_DYNAMIC (type) = 1;
15271 }
15272 }
c906108c
SS
15273}
15274
15275/* Create the vector of member function fields, and attach it to the type. */
15276
15277static void
fba45db2 15278dwarf2_attach_fn_fields_to_type (struct field_info *fip, struct type *type,
e7c27a73 15279 struct dwarf2_cu *cu)
c906108c 15280{
b4ba55a1 15281 if (cu->language == language_ada)
a73c6dcd 15282 error (_("unexpected member functions in Ada type"));
b4ba55a1 15283
c906108c
SS
15284 ALLOCATE_CPLUS_STRUCT_TYPE (type);
15285 TYPE_FN_FIELDLISTS (type) = (struct fn_fieldlist *)
be2daae6
TT
15286 TYPE_ALLOC (type,
15287 sizeof (struct fn_fieldlist) * fip->fnfieldlists.size ());
c906108c 15288
be2daae6 15289 for (int i = 0; i < fip->fnfieldlists.size (); i++)
c906108c 15290 {
be2daae6 15291 struct fnfieldlist &nf = fip->fnfieldlists[i];
c906108c 15292 struct fn_fieldlist *fn_flp = &TYPE_FN_FIELDLIST (type, i);
c906108c 15293
be2daae6
TT
15294 TYPE_FN_FIELDLIST_NAME (type, i) = nf.name;
15295 TYPE_FN_FIELDLIST_LENGTH (type, i) = nf.fnfields.size ();
c906108c 15296 fn_flp->fn_fields = (struct fn_field *)
be2daae6
TT
15297 TYPE_ALLOC (type, sizeof (struct fn_field) * nf.fnfields.size ());
15298
15299 for (int k = 0; k < nf.fnfields.size (); ++k)
15300 fn_flp->fn_fields[k] = nf.fnfields[k];
c906108c
SS
15301 }
15302
be2daae6 15303 TYPE_NFN_FIELDS (type) = fip->fnfieldlists.size ();
c906108c
SS
15304}
15305
1168df01
JB
15306/* Returns non-zero if NAME is the name of a vtable member in CU's
15307 language, zero otherwise. */
15308static int
15309is_vtable_name (const char *name, struct dwarf2_cu *cu)
15310{
15311 static const char vptr[] = "_vptr";
15312
9c37b5ae
TT
15313 /* Look for the C++ form of the vtable. */
15314 if (startswith (name, vptr) && is_cplus_marker (name[sizeof (vptr) - 1]))
1168df01
JB
15315 return 1;
15316
15317 return 0;
15318}
15319
c0dd20ea 15320/* GCC outputs unnamed structures that are really pointers to member
0b92b5bb
TT
15321 functions, with the ABI-specified layout. If TYPE describes
15322 such a structure, smash it into a member function type.
61049d3b
DJ
15323
15324 GCC shouldn't do this; it should just output pointer to member DIEs.
15325 This is GCC PR debug/28767. */
c0dd20ea 15326
0b92b5bb
TT
15327static void
15328quirk_gcc_member_function_pointer (struct type *type, struct objfile *objfile)
c0dd20ea 15329{
09e2d7c7 15330 struct type *pfn_type, *self_type, *new_type;
c0dd20ea
DJ
15331
15332 /* Check for a structure with no name and two children. */
1f704f76 15333 if (type->code () != TYPE_CODE_STRUCT || type->num_fields () != 2)
0b92b5bb 15334 return;
c0dd20ea
DJ
15335
15336 /* Check for __pfn and __delta members. */
0b92b5bb
TT
15337 if (TYPE_FIELD_NAME (type, 0) == NULL
15338 || strcmp (TYPE_FIELD_NAME (type, 0), "__pfn") != 0
15339 || TYPE_FIELD_NAME (type, 1) == NULL
15340 || strcmp (TYPE_FIELD_NAME (type, 1), "__delta") != 0)
15341 return;
c0dd20ea
DJ
15342
15343 /* Find the type of the method. */
0b92b5bb 15344 pfn_type = TYPE_FIELD_TYPE (type, 0);
c0dd20ea 15345 if (pfn_type == NULL
78134374
SM
15346 || pfn_type->code () != TYPE_CODE_PTR
15347 || TYPE_TARGET_TYPE (pfn_type)->code () != TYPE_CODE_FUNC)
0b92b5bb 15348 return;
c0dd20ea
DJ
15349
15350 /* Look for the "this" argument. */
15351 pfn_type = TYPE_TARGET_TYPE (pfn_type);
1f704f76 15352 if (pfn_type->num_fields () == 0
0b92b5bb 15353 /* || TYPE_FIELD_TYPE (pfn_type, 0) == NULL */
78134374 15354 || TYPE_FIELD_TYPE (pfn_type, 0)->code () != TYPE_CODE_PTR)
0b92b5bb 15355 return;
c0dd20ea 15356
09e2d7c7 15357 self_type = TYPE_TARGET_TYPE (TYPE_FIELD_TYPE (pfn_type, 0));
0b92b5bb 15358 new_type = alloc_type (objfile);
09e2d7c7 15359 smash_to_method_type (new_type, self_type, TYPE_TARGET_TYPE (pfn_type),
80fc5e77 15360 pfn_type->fields (), pfn_type->num_fields (),
c0dd20ea 15361 TYPE_VARARGS (pfn_type));
0b92b5bb 15362 smash_to_methodptr_type (type, new_type);
c0dd20ea 15363}
1168df01 15364
2b4424c3
TT
15365/* If the DIE has a DW_AT_alignment attribute, return its value, doing
15366 appropriate error checking and issuing complaints if there is a
15367 problem. */
15368
15369static ULONGEST
15370get_alignment (struct dwarf2_cu *cu, struct die_info *die)
15371{
15372 struct attribute *attr = dwarf2_attr (die, DW_AT_alignment, cu);
15373
15374 if (attr == nullptr)
15375 return 0;
15376
cd6c91b4 15377 if (!attr->form_is_constant ())
2b4424c3 15378 {
b98664d3 15379 complaint (_("DW_AT_alignment must have constant form"
2b4424c3
TT
15380 " - DIE at %s [in module %s]"),
15381 sect_offset_str (die->sect_off),
5e22e966 15382 objfile_name (cu->per_objfile->objfile));
2b4424c3
TT
15383 return 0;
15384 }
15385
15386 ULONGEST align;
15387 if (attr->form == DW_FORM_sdata)
15388 {
15389 LONGEST val = DW_SND (attr);
15390 if (val < 0)
15391 {
b98664d3 15392 complaint (_("DW_AT_alignment value must not be negative"
2b4424c3
TT
15393 " - DIE at %s [in module %s]"),
15394 sect_offset_str (die->sect_off),
5e22e966 15395 objfile_name (cu->per_objfile->objfile));
2b4424c3
TT
15396 return 0;
15397 }
15398 align = val;
15399 }
15400 else
15401 align = DW_UNSND (attr);
15402
15403 if (align == 0)
15404 {
b98664d3 15405 complaint (_("DW_AT_alignment value must not be zero"
2b4424c3
TT
15406 " - DIE at %s [in module %s]"),
15407 sect_offset_str (die->sect_off),
5e22e966 15408 objfile_name (cu->per_objfile->objfile));
2b4424c3
TT
15409 return 0;
15410 }
15411 if ((align & (align - 1)) != 0)
15412 {
b98664d3 15413 complaint (_("DW_AT_alignment value must be a power of 2"
2b4424c3
TT
15414 " - DIE at %s [in module %s]"),
15415 sect_offset_str (die->sect_off),
5e22e966 15416 objfile_name (cu->per_objfile->objfile));
2b4424c3
TT
15417 return 0;
15418 }
15419
15420 return align;
15421}
15422
15423/* If the DIE has a DW_AT_alignment attribute, use its value to set
15424 the alignment for TYPE. */
15425
15426static void
15427maybe_set_alignment (struct dwarf2_cu *cu, struct die_info *die,
15428 struct type *type)
15429{
15430 if (!set_type_align (type, get_alignment (cu, die)))
b98664d3 15431 complaint (_("DW_AT_alignment value too large"
2b4424c3
TT
15432 " - DIE at %s [in module %s]"),
15433 sect_offset_str (die->sect_off),
5e22e966 15434 objfile_name (cu->per_objfile->objfile));
2b4424c3 15435}
685b1105 15436
e35000a7
TBA
15437/* Check if the given VALUE is a valid enum dwarf_calling_convention
15438 constant for a type, according to DWARF5 spec, Table 5.5. */
15439
15440static bool
15441is_valid_DW_AT_calling_convention_for_type (ULONGEST value)
15442{
15443 switch (value)
15444 {
15445 case DW_CC_normal:
15446 case DW_CC_pass_by_reference:
15447 case DW_CC_pass_by_value:
15448 return true;
15449
15450 default:
15451 complaint (_("unrecognized DW_AT_calling_convention value "
3142e908 15452 "(%s) for a type"), pulongest (value));
e35000a7
TBA
15453 return false;
15454 }
15455}
15456
d0922fcf
TBA
15457/* Check if the given VALUE is a valid enum dwarf_calling_convention
15458 constant for a subroutine, according to DWARF5 spec, Table 3.3, and
15459 also according to GNU-specific values (see include/dwarf2.h). */
15460
15461static bool
15462is_valid_DW_AT_calling_convention_for_subroutine (ULONGEST value)
15463{
15464 switch (value)
15465 {
15466 case DW_CC_normal:
15467 case DW_CC_program:
15468 case DW_CC_nocall:
15469 return true;
15470
15471 case DW_CC_GNU_renesas_sh:
15472 case DW_CC_GNU_borland_fastcall_i386:
15473 case DW_CC_GDB_IBM_OpenCL:
15474 return true;
15475
15476 default:
15477 complaint (_("unrecognized DW_AT_calling_convention value "
3142e908 15478 "(%s) for a subroutine"), pulongest (value));
d0922fcf
TBA
15479 return false;
15480 }
15481}
15482
c906108c 15483/* Called when we find the DIE that starts a structure or union scope
c767944b
DJ
15484 (definition) to create a type for the structure or union. Fill in
15485 the type's name and general properties; the members will not be
83655187
DE
15486 processed until process_structure_scope. A symbol table entry for
15487 the type will also not be done until process_structure_scope (assuming
15488 the type has a name).
c906108c 15489
c767944b
DJ
15490 NOTE: we need to call these functions regardless of whether or not the
15491 DIE has a DW_AT_name attribute, since it might be an anonymous
c906108c 15492 structure or union. This gets the type entered into our set of
83655187 15493 user defined types. */
c906108c 15494
f792889a 15495static struct type *
134d01f1 15496read_structure_type (struct die_info *die, struct dwarf2_cu *cu)
c906108c 15497{
5e22e966 15498 struct objfile *objfile = cu->per_objfile->objfile;
c906108c
SS
15499 struct type *type;
15500 struct attribute *attr;
15d034d0 15501 const char *name;
c906108c 15502
348e048f
DE
15503 /* If the definition of this type lives in .debug_types, read that type.
15504 Don't follow DW_AT_specification though, that will take us back up
15505 the chain and we want to go down. */
052c8bb8 15506 attr = die->attr (DW_AT_signature);
435d3d88 15507 if (attr != nullptr)
348e048f 15508 {
ac9ec31b 15509 type = get_DW_AT_signature_type (die, attr, cu);
9dc481d3 15510
ac9ec31b 15511 /* The type's CU may not be the same as CU.
02142a6c 15512 Ensure TYPE is recorded with CU in die_type_hash. */
348e048f
DE
15513 return set_die_type (die, type, cu);
15514 }
15515
c0dd20ea 15516 type = alloc_type (objfile);
c906108c 15517 INIT_CPLUS_SPECIFIC (type);
93311388 15518
39cbfefa
DJ
15519 name = dwarf2_name (die, cu);
15520 if (name != NULL)
c906108c 15521 {
987504bb 15522 if (cu->language == language_cplus
c44af4eb
TT
15523 || cu->language == language_d
15524 || cu->language == language_rust)
63d06c5c 15525 {
15d034d0 15526 const char *full_name = dwarf2_full_name (name, die, cu);
3da10d80
KS
15527
15528 /* dwarf2_full_name might have already finished building the DIE's
15529 type. If so, there is no need to continue. */
15530 if (get_die_type (die, cu) != NULL)
15531 return get_die_type (die, cu);
15532
d0e39ea2 15533 type->set_name (full_name);
63d06c5c
DC
15534 }
15535 else
15536 {
d8151005
DJ
15537 /* The name is already allocated along with this objfile, so
15538 we don't need to duplicate it for the type. */
d0e39ea2 15539 type->set_name (name);
63d06c5c 15540 }
c906108c
SS
15541 }
15542
15543 if (die->tag == DW_TAG_structure_type)
15544 {
67607e24 15545 type->set_code (TYPE_CODE_STRUCT);
c906108c
SS
15546 }
15547 else if (die->tag == DW_TAG_union_type)
15548 {
67607e24 15549 type->set_code (TYPE_CODE_UNION);
c906108c
SS
15550 }
15551 else
15552 {
67607e24 15553 type->set_code (TYPE_CODE_STRUCT);
c906108c
SS
15554 }
15555
0cc2414c
TT
15556 if (cu->language == language_cplus && die->tag == DW_TAG_class_type)
15557 TYPE_DECLARED_CLASS (type) = 1;
15558
e35000a7
TBA
15559 /* Store the calling convention in the type if it's available in
15560 the die. Otherwise the calling convention remains set to
15561 the default value DW_CC_normal. */
15562 attr = dwarf2_attr (die, DW_AT_calling_convention, cu);
15563 if (attr != nullptr
15564 && is_valid_DW_AT_calling_convention_for_type (DW_UNSND (attr)))
15565 {
15566 ALLOCATE_CPLUS_STRUCT_TYPE (type);
15567 TYPE_CPLUS_CALLING_CONVENTION (type)
15568 = (enum dwarf_calling_convention) (DW_UNSND (attr));
15569 }
15570
e142c38c 15571 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
435d3d88 15572 if (attr != nullptr)
c906108c 15573 {
cd6c91b4 15574 if (attr->form_is_constant ())
155bfbd3
JB
15575 TYPE_LENGTH (type) = DW_UNSND (attr);
15576 else
15577 {
f8e89861 15578 struct dynamic_prop prop;
293e7e51 15579 if (attr_to_dynamic_prop (attr, die, cu, &prop, cu->addr_type ()))
5c54719c 15580 type->add_dyn_prop (DYN_PROP_BYTE_SIZE, prop);
155bfbd3
JB
15581 TYPE_LENGTH (type) = 0;
15582 }
c906108c
SS
15583 }
15584 else
15585 {
15586 TYPE_LENGTH (type) = 0;
15587 }
15588
2b4424c3
TT
15589 maybe_set_alignment (cu, die, type);
15590
5230b05a 15591 if (producer_is_icc_lt_14 (cu) && (TYPE_LENGTH (type) == 0))
685b1105 15592 {
5230b05a
WT
15593 /* ICC<14 does not output the required DW_AT_declaration on
15594 incomplete types, but gives them a size of zero. */
422b1cb0 15595 TYPE_STUB (type) = 1;
685b1105
JK
15596 }
15597 else
15598 TYPE_STUB_SUPPORTED (type) = 1;
15599
dc718098 15600 if (die_is_declaration (die, cu))
876cecd0 15601 TYPE_STUB (type) = 1;
a6c727b2
DJ
15602 else if (attr == NULL && die->child == NULL
15603 && producer_is_realview (cu->producer))
15604 /* RealView does not output the required DW_AT_declaration
15605 on incomplete types. */
15606 TYPE_STUB (type) = 1;
dc718098 15607
c906108c
SS
15608 /* We need to add the type field to the die immediately so we don't
15609 infinitely recurse when dealing with pointers to the structure
0963b4bd 15610 type within the structure itself. */
1c379e20 15611 set_die_type (die, type, cu);
c906108c 15612
7e314c57
JK
15613 /* set_die_type should be already done. */
15614 set_descriptive_type (type, die, cu);
15615
c767944b
DJ
15616 return type;
15617}
15618
9c6a1327
TT
15619static void handle_struct_member_die
15620 (struct die_info *child_die,
15621 struct type *type,
15622 struct field_info *fi,
15623 std::vector<struct symbol *> *template_args,
15624 struct dwarf2_cu *cu);
15625
15626/* A helper for handle_struct_member_die that handles
15627 DW_TAG_variant_part. */
15628
15629static void
15630handle_variant_part (struct die_info *die, struct type *type,
15631 struct field_info *fi,
15632 std::vector<struct symbol *> *template_args,
15633 struct dwarf2_cu *cu)
15634{
15635 variant_part_builder *new_part;
15636 if (fi->current_variant_part == nullptr)
15637 {
15638 fi->variant_parts.emplace_back ();
15639 new_part = &fi->variant_parts.back ();
15640 }
15641 else if (!fi->current_variant_part->processing_variant)
15642 {
15643 complaint (_("nested DW_TAG_variant_part seen "
15644 "- DIE at %s [in module %s]"),
15645 sect_offset_str (die->sect_off),
5e22e966 15646 objfile_name (cu->per_objfile->objfile));
9c6a1327
TT
15647 return;
15648 }
15649 else
15650 {
15651 variant_field &current = fi->current_variant_part->variants.back ();
15652 current.variant_parts.emplace_back ();
15653 new_part = &current.variant_parts.back ();
15654 }
15655
15656 /* When we recurse, we want callees to add to this new variant
15657 part. */
15658 scoped_restore save_current_variant_part
15659 = make_scoped_restore (&fi->current_variant_part, new_part);
15660
15661 struct attribute *discr = dwarf2_attr (die, DW_AT_discr, cu);
15662 if (discr == NULL)
15663 {
15664 /* It's a univariant form, an extension we support. */
15665 }
15666 else if (discr->form_is_ref ())
15667 {
15668 struct dwarf2_cu *target_cu = cu;
15669 struct die_info *target_die = follow_die_ref (die, discr, &target_cu);
15670
15671 new_part->discriminant_offset = target_die->sect_off;
15672 }
15673 else
15674 {
15675 complaint (_("DW_AT_discr does not have DIE reference form"
15676 " - DIE at %s [in module %s]"),
15677 sect_offset_str (die->sect_off),
5e22e966 15678 objfile_name (cu->per_objfile->objfile));
9c6a1327
TT
15679 }
15680
15681 for (die_info *child_die = die->child;
15682 child_die != NULL;
15683 child_die = child_die->sibling)
15684 handle_struct_member_die (child_die, type, fi, template_args, cu);
15685}
15686
15687/* A helper for handle_struct_member_die that handles
15688 DW_TAG_variant. */
15689
15690static void
15691handle_variant (struct die_info *die, struct type *type,
15692 struct field_info *fi,
15693 std::vector<struct symbol *> *template_args,
15694 struct dwarf2_cu *cu)
15695{
15696 if (fi->current_variant_part == nullptr)
15697 {
15698 complaint (_("saw DW_TAG_variant outside DW_TAG_variant_part "
15699 "- DIE at %s [in module %s]"),
15700 sect_offset_str (die->sect_off),
5e22e966 15701 objfile_name (cu->per_objfile->objfile));
9c6a1327
TT
15702 return;
15703 }
15704 if (fi->current_variant_part->processing_variant)
15705 {
15706 complaint (_("nested DW_TAG_variant seen "
15707 "- DIE at %s [in module %s]"),
15708 sect_offset_str (die->sect_off),
5e22e966 15709 objfile_name (cu->per_objfile->objfile));
9c6a1327
TT
15710 return;
15711 }
15712
15713 scoped_restore save_processing_variant
15714 = make_scoped_restore (&fi->current_variant_part->processing_variant,
15715 true);
15716
15717 fi->current_variant_part->variants.emplace_back ();
15718 variant_field &variant = fi->current_variant_part->variants.back ();
15719 variant.first_field = fi->fields.size ();
15720
15721 /* In a variant we want to get the discriminant and also add a
15722 field for our sole member child. */
15723 struct attribute *discr = dwarf2_attr (die, DW_AT_discr_value, cu);
15724 if (discr == nullptr)
15725 {
15726 discr = dwarf2_attr (die, DW_AT_discr_list, cu);
15727 if (discr == nullptr || DW_BLOCK (discr)->size == 0)
15728 variant.default_branch = true;
15729 else
15730 variant.discr_list_data = DW_BLOCK (discr);
15731 }
15732 else
15733 variant.discriminant_value = DW_UNSND (discr);
15734
15735 for (die_info *variant_child = die->child;
15736 variant_child != NULL;
15737 variant_child = variant_child->sibling)
15738 handle_struct_member_die (variant_child, type, fi, template_args, cu);
15739
15740 variant.last_field = fi->fields.size ();
15741}
15742
2ddeaf8a
TT
15743/* A helper for process_structure_scope that handles a single member
15744 DIE. */
15745
15746static void
15747handle_struct_member_die (struct die_info *child_die, struct type *type,
15748 struct field_info *fi,
15749 std::vector<struct symbol *> *template_args,
15750 struct dwarf2_cu *cu)
15751{
15752 if (child_die->tag == DW_TAG_member
9c6a1327 15753 || child_die->tag == DW_TAG_variable)
2ddeaf8a
TT
15754 {
15755 /* NOTE: carlton/2002-11-05: A C++ static data member
15756 should be a DW_TAG_member that is a declaration, but
15757 all versions of G++ as of this writing (so through at
15758 least 3.2.1) incorrectly generate DW_TAG_variable
15759 tags for them instead. */
15760 dwarf2_add_field (fi, child_die, cu);
15761 }
15762 else if (child_die->tag == DW_TAG_subprogram)
15763 {
15764 /* Rust doesn't have member functions in the C++ sense.
15765 However, it does emit ordinary functions as children
15766 of a struct DIE. */
15767 if (cu->language == language_rust)
15768 read_func_scope (child_die, cu);
15769 else
15770 {
15771 /* C++ member function. */
15772 dwarf2_add_member_fn (fi, child_die, type, cu);
15773 }
15774 }
15775 else if (child_die->tag == DW_TAG_inheritance)
15776 {
15777 /* C++ base class field. */
15778 dwarf2_add_field (fi, child_die, cu);
15779 }
15780 else if (type_can_define_types (child_die))
15781 dwarf2_add_type_defn (fi, child_die, cu);
15782 else if (child_die->tag == DW_TAG_template_type_param
15783 || child_die->tag == DW_TAG_template_value_param)
15784 {
15785 struct symbol *arg = new_symbol (child_die, NULL, cu);
15786
15787 if (arg != NULL)
15788 template_args->push_back (arg);
15789 }
9c6a1327
TT
15790 else if (child_die->tag == DW_TAG_variant_part)
15791 handle_variant_part (child_die, type, fi, template_args, cu);
2ddeaf8a 15792 else if (child_die->tag == DW_TAG_variant)
9c6a1327 15793 handle_variant (child_die, type, fi, template_args, cu);
2ddeaf8a
TT
15794}
15795
c767944b
DJ
15796/* Finish creating a structure or union type, including filling in
15797 its members and creating a symbol for it. */
15798
15799static void
15800process_structure_scope (struct die_info *die, struct dwarf2_cu *cu)
15801{
5e22e966 15802 struct objfile *objfile = cu->per_objfile->objfile;
ca040673 15803 struct die_info *child_die;
c767944b
DJ
15804 struct type *type;
15805
15806 type = get_die_type (die, cu);
15807 if (type == NULL)
15808 type = read_structure_type (die, cu);
15809
3e1d3d8c 15810 bool has_template_parameters = false;
e142c38c 15811 if (die->child != NULL && ! die_is_declaration (die, cu))
c906108c
SS
15812 {
15813 struct field_info fi;
2f4732b0 15814 std::vector<struct symbol *> template_args;
c906108c 15815
639d11d3 15816 child_die = die->child;
c906108c
SS
15817
15818 while (child_die && child_die->tag)
15819 {
2ddeaf8a 15820 handle_struct_member_die (child_die, type, &fi, &template_args, cu);
436c571c 15821 child_die = child_die->sibling;
c906108c
SS
15822 }
15823
34eaf542 15824 /* Attach template arguments to type. */
2f4732b0 15825 if (!template_args.empty ())
34eaf542 15826 {
3e1d3d8c 15827 has_template_parameters = true;
34eaf542 15828 ALLOCATE_CPLUS_STRUCT_TYPE (type);
2f4732b0 15829 TYPE_N_TEMPLATE_ARGUMENTS (type) = template_args.size ();
34eaf542 15830 TYPE_TEMPLATE_ARGUMENTS (type)
8d749320
SM
15831 = XOBNEWVEC (&objfile->objfile_obstack,
15832 struct symbol *,
15833 TYPE_N_TEMPLATE_ARGUMENTS (type));
34eaf542 15834 memcpy (TYPE_TEMPLATE_ARGUMENTS (type),
2f4732b0 15835 template_args.data (),
34eaf542
TT
15836 (TYPE_N_TEMPLATE_ARGUMENTS (type)
15837 * sizeof (struct symbol *)));
34eaf542
TT
15838 }
15839
c906108c 15840 /* Attach fields and member functions to the type. */
317f7127 15841 if (fi.nfields () > 0)
e7c27a73 15842 dwarf2_attach_fields_to_type (&fi, type, cu);
be2daae6 15843 if (!fi.fnfieldlists.empty ())
c906108c 15844 {
e7c27a73 15845 dwarf2_attach_fn_fields_to_type (&fi, type, cu);
c906108c 15846
c5aa993b 15847 /* Get the type which refers to the base class (possibly this
c906108c 15848 class itself) which contains the vtable pointer for the current
0d564a31
DJ
15849 class from the DW_AT_containing_type attribute. This use of
15850 DW_AT_containing_type is a GNU extension. */
c906108c 15851
e142c38c 15852 if (dwarf2_attr (die, DW_AT_containing_type, cu) != NULL)
c906108c 15853 {
e7c27a73 15854 struct type *t = die_containing_type (die, cu);
c906108c 15855
ae6ae975 15856 set_type_vptr_basetype (type, t);
c906108c
SS
15857 if (type == t)
15858 {
c906108c
SS
15859 int i;
15860
15861 /* Our own class provides vtbl ptr. */
1f704f76 15862 for (i = t->num_fields () - 1;
c906108c
SS
15863 i >= TYPE_N_BASECLASSES (t);
15864 --i)
15865 {
0d5cff50 15866 const char *fieldname = TYPE_FIELD_NAME (t, i);
c906108c 15867
1168df01 15868 if (is_vtable_name (fieldname, cu))
c906108c 15869 {
ae6ae975 15870 set_type_vptr_fieldno (type, i);
c906108c
SS
15871 break;
15872 }
15873 }
15874
15875 /* Complain if virtual function table field not found. */
15876 if (i < TYPE_N_BASECLASSES (t))
b98664d3 15877 complaint (_("virtual function table pointer "
3e43a32a 15878 "not found when defining class '%s'"),
7d93a1e0 15879 type->name () ? type->name () : "");
c906108c
SS
15880 }
15881 else
15882 {
ae6ae975 15883 set_type_vptr_fieldno (type, TYPE_VPTR_FIELDNO (t));
c906108c
SS
15884 }
15885 }
f6235d4c 15886 else if (cu->producer
61012eef 15887 && startswith (cu->producer, "IBM(R) XL C/C++ Advanced Edition"))
f6235d4c
EZ
15888 {
15889 /* The IBM XLC compiler does not provide direct indication
15890 of the containing type, but the vtable pointer is
15891 always named __vfp. */
15892
15893 int i;
15894
1f704f76 15895 for (i = type->num_fields () - 1;
f6235d4c
EZ
15896 i >= TYPE_N_BASECLASSES (type);
15897 --i)
15898 {
15899 if (strcmp (TYPE_FIELD_NAME (type, i), "__vfp") == 0)
15900 {
ae6ae975
DE
15901 set_type_vptr_fieldno (type, i);
15902 set_type_vptr_basetype (type, type);
f6235d4c
EZ
15903 break;
15904 }
15905 }
15906 }
c906108c 15907 }
98751a41
JK
15908
15909 /* Copy fi.typedef_field_list linked list elements content into the
15910 allocated array TYPE_TYPEDEF_FIELD_ARRAY (type). */
be2daae6 15911 if (!fi.typedef_field_list.empty ())
98751a41 15912 {
be2daae6 15913 int count = fi.typedef_field_list.size ();
98751a41 15914
a0d7a4ff 15915 ALLOCATE_CPLUS_STRUCT_TYPE (type);
98751a41 15916 TYPE_TYPEDEF_FIELD_ARRAY (type)
883fd55a 15917 = ((struct decl_field *)
be2daae6
TT
15918 TYPE_ALLOC (type,
15919 sizeof (TYPE_TYPEDEF_FIELD (type, 0)) * count));
15920 TYPE_TYPEDEF_FIELD_COUNT (type) = count;
6e70227d 15921
be2daae6
TT
15922 for (int i = 0; i < fi.typedef_field_list.size (); ++i)
15923 TYPE_TYPEDEF_FIELD (type, i) = fi.typedef_field_list[i];
98751a41 15924 }
c767944b 15925
883fd55a
KS
15926 /* Copy fi.nested_types_list linked list elements content into the
15927 allocated array TYPE_NESTED_TYPES_ARRAY (type). */
be2daae6 15928 if (!fi.nested_types_list.empty () && cu->language != language_ada)
883fd55a 15929 {
be2daae6 15930 int count = fi.nested_types_list.size ();
883fd55a
KS
15931
15932 ALLOCATE_CPLUS_STRUCT_TYPE (type);
15933 TYPE_NESTED_TYPES_ARRAY (type)
15934 = ((struct decl_field *)
be2daae6
TT
15935 TYPE_ALLOC (type, sizeof (struct decl_field) * count));
15936 TYPE_NESTED_TYPES_COUNT (type) = count;
883fd55a 15937
be2daae6
TT
15938 for (int i = 0; i < fi.nested_types_list.size (); ++i)
15939 TYPE_NESTED_TYPES_FIELD (type, i) = fi.nested_types_list[i];
883fd55a 15940 }
c906108c 15941 }
63d06c5c 15942
bb5ed363 15943 quirk_gcc_member_function_pointer (type, objfile);
c9317f21
TT
15944 if (cu->language == language_rust && die->tag == DW_TAG_union_type)
15945 cu->rust_unions.push_back (type);
0b92b5bb 15946
90aeadfc
DC
15947 /* NOTE: carlton/2004-03-16: GCC 3.4 (or at least one of its
15948 snapshots) has been known to create a die giving a declaration
15949 for a class that has, as a child, a die giving a definition for a
15950 nested class. So we have to process our children even if the
15951 current die is a declaration. Normally, of course, a declaration
15952 won't have any children at all. */
134d01f1 15953
ca040673
DE
15954 child_die = die->child;
15955
90aeadfc
DC
15956 while (child_die != NULL && child_die->tag)
15957 {
15958 if (child_die->tag == DW_TAG_member
15959 || child_die->tag == DW_TAG_variable
34eaf542
TT
15960 || child_die->tag == DW_TAG_inheritance
15961 || child_die->tag == DW_TAG_template_value_param
15962 || child_die->tag == DW_TAG_template_type_param)
134d01f1 15963 {
90aeadfc 15964 /* Do nothing. */
134d01f1 15965 }
90aeadfc
DC
15966 else
15967 process_die (child_die, cu);
134d01f1 15968
436c571c 15969 child_die = child_die->sibling;
134d01f1
DJ
15970 }
15971
fa4028e9
JB
15972 /* Do not consider external references. According to the DWARF standard,
15973 these DIEs are identified by the fact that they have no byte_size
15974 attribute, and a declaration attribute. */
15975 if (dwarf2_attr (die, DW_AT_byte_size, cu) != NULL
15cd93d0
TV
15976 || !die_is_declaration (die, cu)
15977 || dwarf2_attr (die, DW_AT_signature, cu) != NULL)
3e1d3d8c
TT
15978 {
15979 struct symbol *sym = new_symbol (die, type, cu);
15980
15981 if (has_template_parameters)
15982 {
a776957c
TT
15983 struct symtab *symtab;
15984 if (sym != nullptr)
15985 symtab = symbol_symtab (sym);
15986 else if (cu->line_header != nullptr)
15987 {
15988 /* Any related symtab will do. */
15989 symtab
7ba99d21 15990 = cu->line_header->file_names ()[0].symtab;
a776957c
TT
15991 }
15992 else
15993 {
15994 symtab = nullptr;
15995 complaint (_("could not find suitable "
15996 "symtab for template parameter"
15997 " - DIE at %s [in module %s]"),
15998 sect_offset_str (die->sect_off),
15999 objfile_name (objfile));
16000 }
16001
16002 if (symtab != nullptr)
16003 {
16004 /* Make sure that the symtab is set on the new symbols.
16005 Even though they don't appear in this symtab directly,
16006 other parts of gdb assume that symbols do, and this is
16007 reasonably true. */
16008 for (int i = 0; i < TYPE_N_TEMPLATE_ARGUMENTS (type); ++i)
16009 symbol_set_symtab (TYPE_TEMPLATE_ARGUMENT (type, i), symtab);
16010 }
3e1d3d8c
TT
16011 }
16012 }
134d01f1
DJ
16013}
16014
ed6acedd
TT
16015/* Assuming DIE is an enumeration type, and TYPE is its associated
16016 type, update TYPE using some information only available in DIE's
16017 children. In particular, the fields are computed. */
55426c9d
JB
16018
16019static void
16020update_enumeration_type_from_children (struct die_info *die,
16021 struct type *type,
16022 struct dwarf2_cu *cu)
16023{
60f7655a 16024 struct die_info *child_die;
55426c9d
JB
16025 int unsigned_enum = 1;
16026 int flag_enum = 1;
55426c9d 16027
8268c778 16028 auto_obstack obstack;
ed6acedd 16029 std::vector<struct field> fields;
55426c9d 16030
60f7655a
DE
16031 for (child_die = die->child;
16032 child_die != NULL && child_die->tag;
436c571c 16033 child_die = child_die->sibling)
55426c9d
JB
16034 {
16035 struct attribute *attr;
16036 LONGEST value;
16037 const gdb_byte *bytes;
16038 struct dwarf2_locexpr_baton *baton;
16039 const char *name;
60f7655a 16040
55426c9d
JB
16041 if (child_die->tag != DW_TAG_enumerator)
16042 continue;
16043
16044 attr = dwarf2_attr (child_die, DW_AT_const_value, cu);
16045 if (attr == NULL)
16046 continue;
16047
16048 name = dwarf2_name (child_die, cu);
16049 if (name == NULL)
16050 name = "<anonymous enumerator>";
16051
16052 dwarf2_const_value_attr (attr, type, name, &obstack, cu,
16053 &value, &bytes, &baton);
16054 if (value < 0)
16055 {
16056 unsigned_enum = 0;
16057 flag_enum = 0;
16058 }
55426c9d 16059 else
edd45eb0
SM
16060 {
16061 if (count_one_bits_ll (value) >= 2)
16062 flag_enum = 0;
edd45eb0 16063 }
55426c9d 16064
ed6acedd
TT
16065 fields.emplace_back ();
16066 struct field &field = fields.back ();
16067 FIELD_NAME (field) = dwarf2_physname (name, child_die, cu);
16068 SET_FIELD_ENUMVAL (field, value);
16069 }
16070
16071 if (!fields.empty ())
16072 {
5e33d5f4 16073 type->set_num_fields (fields.size ());
3cabb6b0
SM
16074 type->set_fields
16075 ((struct field *)
16076 TYPE_ALLOC (type, sizeof (struct field) * fields.size ()));
80fc5e77 16077 memcpy (type->fields (), fields.data (),
ed6acedd 16078 sizeof (struct field) * fields.size ());
55426c9d
JB
16079 }
16080
16081 if (unsigned_enum)
16082 TYPE_UNSIGNED (type) = 1;
16083 if (flag_enum)
16084 TYPE_FLAG_ENUM (type) = 1;
55426c9d
JB
16085}
16086
134d01f1
DJ
16087/* Given a DW_AT_enumeration_type die, set its type. We do not
16088 complete the type's fields yet, or create any symbols. */
c906108c 16089
f792889a 16090static struct type *
134d01f1 16091read_enumeration_type (struct die_info *die, struct dwarf2_cu *cu)
c906108c 16092{
5e22e966 16093 struct objfile *objfile = cu->per_objfile->objfile;
c906108c 16094 struct type *type;
c906108c 16095 struct attribute *attr;
0114d602 16096 const char *name;
134d01f1 16097
348e048f
DE
16098 /* If the definition of this type lives in .debug_types, read that type.
16099 Don't follow DW_AT_specification though, that will take us back up
16100 the chain and we want to go down. */
052c8bb8 16101 attr = die->attr (DW_AT_signature);
435d3d88 16102 if (attr != nullptr)
348e048f 16103 {
ac9ec31b 16104 type = get_DW_AT_signature_type (die, attr, cu);
9dc481d3 16105
ac9ec31b 16106 /* The type's CU may not be the same as CU.
02142a6c 16107 Ensure TYPE is recorded with CU in die_type_hash. */
348e048f
DE
16108 return set_die_type (die, type, cu);
16109 }
16110
c906108c
SS
16111 type = alloc_type (objfile);
16112
67607e24 16113 type->set_code (TYPE_CODE_ENUM);
94af9270 16114 name = dwarf2_full_name (NULL, die, cu);
39cbfefa 16115 if (name != NULL)
d0e39ea2 16116 type->set_name (name);
c906108c 16117
0626fc76
TT
16118 attr = dwarf2_attr (die, DW_AT_type, cu);
16119 if (attr != NULL)
16120 {
16121 struct type *underlying_type = die_type (die, cu);
16122
16123 TYPE_TARGET_TYPE (type) = underlying_type;
16124 }
16125
e142c38c 16126 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
435d3d88 16127 if (attr != nullptr)
c906108c
SS
16128 {
16129 TYPE_LENGTH (type) = DW_UNSND (attr);
16130 }
16131 else
16132 {
16133 TYPE_LENGTH (type) = 0;
16134 }
16135
2b4424c3
TT
16136 maybe_set_alignment (cu, die, type);
16137
137033e9
JB
16138 /* The enumeration DIE can be incomplete. In Ada, any type can be
16139 declared as private in the package spec, and then defined only
16140 inside the package body. Such types are known as Taft Amendment
16141 Types. When another package uses such a type, an incomplete DIE
16142 may be generated by the compiler. */
02eb380e 16143 if (die_is_declaration (die, cu))
876cecd0 16144 TYPE_STUB (type) = 1;
02eb380e 16145
0626fc76
TT
16146 /* If this type has an underlying type that is not a stub, then we
16147 may use its attributes. We always use the "unsigned" attribute
16148 in this situation, because ordinarily we guess whether the type
16149 is unsigned -- but the guess can be wrong and the underlying type
16150 can tell us the reality. However, we defer to a local size
16151 attribute if one exists, because this lets the compiler override
16152 the underlying type if needed. */
16153 if (TYPE_TARGET_TYPE (type) != NULL && !TYPE_STUB (TYPE_TARGET_TYPE (type)))
16154 {
9e7c9a03
HD
16155 struct type *underlying_type = TYPE_TARGET_TYPE (type);
16156 underlying_type = check_typedef (underlying_type);
16157 TYPE_UNSIGNED (type) = TYPE_UNSIGNED (underlying_type);
0626fc76 16158 if (TYPE_LENGTH (type) == 0)
9e7c9a03 16159 TYPE_LENGTH (type) = TYPE_LENGTH (underlying_type);
2b4424c3 16160 if (TYPE_RAW_ALIGN (type) == 0
9e7c9a03
HD
16161 && TYPE_RAW_ALIGN (underlying_type) != 0)
16162 set_type_align (type, TYPE_RAW_ALIGN (underlying_type));
0626fc76
TT
16163 }
16164
3d567982
TT
16165 TYPE_DECLARED_CLASS (type) = dwarf2_flag_true_p (die, DW_AT_enum_class, cu);
16166
ed6acedd
TT
16167 set_die_type (die, type, cu);
16168
16169 /* Finish the creation of this type by using the enum's children.
16170 Note that, as usual, this must come after set_die_type to avoid
16171 infinite recursion when trying to compute the names of the
16172 enumerators. */
16173 update_enumeration_type_from_children (die, type, cu);
16174
16175 return type;
134d01f1
DJ
16176}
16177
16178/* Given a pointer to a die which begins an enumeration, process all
16179 the dies that define the members of the enumeration, and create the
16180 symbol for the enumeration type.
16181
16182 NOTE: We reverse the order of the element list. */
16183
16184static void
16185process_enumeration_scope (struct die_info *die, struct dwarf2_cu *cu)
16186{
f792889a 16187 struct type *this_type;
134d01f1 16188
f792889a
DJ
16189 this_type = get_die_type (die, cu);
16190 if (this_type == NULL)
16191 this_type = read_enumeration_type (die, cu);
9dc481d3 16192
639d11d3 16193 if (die->child != NULL)
c906108c 16194 {
9dc481d3 16195 struct die_info *child_die;
15d034d0 16196 const char *name;
9dc481d3 16197
639d11d3 16198 child_die = die->child;
c906108c
SS
16199 while (child_die && child_die->tag)
16200 {
16201 if (child_die->tag != DW_TAG_enumerator)
16202 {
e7c27a73 16203 process_die (child_die, cu);
c906108c
SS
16204 }
16205 else
16206 {
39cbfefa
DJ
16207 name = dwarf2_name (child_die, cu);
16208 if (name)
ed6acedd 16209 new_symbol (child_die, this_type, cu);
c906108c
SS
16210 }
16211
436c571c 16212 child_die = child_die->sibling;
c906108c 16213 }
c906108c 16214 }
134d01f1 16215
6c83ed52
TT
16216 /* If we are reading an enum from a .debug_types unit, and the enum
16217 is a declaration, and the enum is not the signatured type in the
16218 unit, then we do not want to add a symbol for it. Adding a
16219 symbol would in some cases obscure the true definition of the
16220 enum, giving users an incomplete type when the definition is
16221 actually available. Note that we do not want to do this for all
16222 enums which are just declarations, because C++0x allows forward
16223 enum declarations. */
3019eac3 16224 if (cu->per_cu->is_debug_types
6c83ed52
TT
16225 && die_is_declaration (die, cu))
16226 {
52dc124a 16227 struct signatured_type *sig_type;
6c83ed52 16228
c0f78cd4 16229 sig_type = (struct signatured_type *) cu->per_cu;
9c541725
PA
16230 gdb_assert (to_underlying (sig_type->type_offset_in_section) != 0);
16231 if (sig_type->type_offset_in_section != die->sect_off)
6c83ed52
TT
16232 return;
16233 }
16234
f792889a 16235 new_symbol (die, this_type, cu);
c906108c
SS
16236}
16237
16238/* Extract all information from a DW_TAG_array_type DIE and put it in
16239 the DIE's type field. For now, this only handles one dimensional
16240 arrays. */
16241
f792889a 16242static struct type *
e7c27a73 16243read_array_type (struct die_info *die, struct dwarf2_cu *cu)
c906108c 16244{
5e22e966 16245 struct objfile *objfile = cu->per_objfile->objfile;
c906108c 16246 struct die_info *child_die;
7e314c57 16247 struct type *type;
c906108c 16248 struct type *element_type, *range_type, *index_type;
c906108c 16249 struct attribute *attr;
15d034d0 16250 const char *name;
a405673c 16251 struct dynamic_prop *byte_stride_prop = NULL;
dc53a7ad 16252 unsigned int bit_stride = 0;
c906108c 16253
e7c27a73 16254 element_type = die_type (die, cu);
c906108c 16255
7e314c57
JK
16256 /* The die_type call above may have already set the type for this DIE. */
16257 type = get_die_type (die, cu);
16258 if (type)
16259 return type;
16260
dc53a7ad
JB
16261 attr = dwarf2_attr (die, DW_AT_byte_stride, cu);
16262 if (attr != NULL)
a405673c
JB
16263 {
16264 int stride_ok;
293e7e51 16265 struct type *prop_type = cu->addr_sized_int_type (false);
a405673c
JB
16266
16267 byte_stride_prop
16268 = (struct dynamic_prop *) alloca (sizeof (struct dynamic_prop));
9a49df9d
AB
16269 stride_ok = attr_to_dynamic_prop (attr, die, cu, byte_stride_prop,
16270 prop_type);
a405673c
JB
16271 if (!stride_ok)
16272 {
b98664d3 16273 complaint (_("unable to read array DW_AT_byte_stride "
9d8780f0
SM
16274 " - DIE at %s [in module %s]"),
16275 sect_offset_str (die->sect_off),
5e22e966 16276 objfile_name (cu->per_objfile->objfile));
a405673c
JB
16277 /* Ignore this attribute. We will likely not be able to print
16278 arrays of this type correctly, but there is little we can do
16279 to help if we cannot read the attribute's value. */
16280 byte_stride_prop = NULL;
16281 }
16282 }
dc53a7ad
JB
16283
16284 attr = dwarf2_attr (die, DW_AT_bit_stride, cu);
16285 if (attr != NULL)
16286 bit_stride = DW_UNSND (attr);
16287
c906108c
SS
16288 /* Irix 6.2 native cc creates array types without children for
16289 arrays with unspecified length. */
639d11d3 16290 if (die->child == NULL)
c906108c 16291 {
46bf5051 16292 index_type = objfile_type (objfile)->builtin_int;
0c9c3474 16293 range_type = create_static_range_type (NULL, index_type, 0, -1);
dc53a7ad 16294 type = create_array_type_with_stride (NULL, element_type, range_type,
a405673c 16295 byte_stride_prop, bit_stride);
f792889a 16296 return set_die_type (die, type, cu);
c906108c
SS
16297 }
16298
791afaa2 16299 std::vector<struct type *> range_types;
639d11d3 16300 child_die = die->child;
c906108c
SS
16301 while (child_die && child_die->tag)
16302 {
16303 if (child_die->tag == DW_TAG_subrange_type)
16304 {
f792889a 16305 struct type *child_type = read_type_die (child_die, cu);
9a619af0 16306
f792889a 16307 if (child_type != NULL)
a02abb62 16308 {
0963b4bd
MS
16309 /* The range type was succesfully read. Save it for the
16310 array type creation. */
791afaa2 16311 range_types.push_back (child_type);
a02abb62 16312 }
c906108c 16313 }
436c571c 16314 child_die = child_die->sibling;
c906108c
SS
16315 }
16316
16317 /* Dwarf2 dimensions are output from left to right, create the
16318 necessary array types in backwards order. */
7ca2d3a3 16319
c906108c 16320 type = element_type;
7ca2d3a3
DL
16321
16322 if (read_array_order (die, cu) == DW_ORD_col_major)
16323 {
16324 int i = 0;
9a619af0 16325
791afaa2 16326 while (i < range_types.size ())
dc53a7ad 16327 type = create_array_type_with_stride (NULL, type, range_types[i++],
a405673c 16328 byte_stride_prop, bit_stride);
7ca2d3a3
DL
16329 }
16330 else
16331 {
791afaa2 16332 size_t ndim = range_types.size ();
7ca2d3a3 16333 while (ndim-- > 0)
dc53a7ad 16334 type = create_array_type_with_stride (NULL, type, range_types[ndim],
a405673c 16335 byte_stride_prop, bit_stride);
7ca2d3a3 16336 }
c906108c 16337
f5f8a009
EZ
16338 /* Understand Dwarf2 support for vector types (like they occur on
16339 the PowerPC w/ AltiVec). Gcc just adds another attribute to the
16340 array type. This is not part of the Dwarf2/3 standard yet, but a
16341 custom vendor extension. The main difference between a regular
16342 array and the vector variant is that vectors are passed by value
16343 to functions. */
e142c38c 16344 attr = dwarf2_attr (die, DW_AT_GNU_vector, cu);
435d3d88 16345 if (attr != nullptr)
ea37ba09 16346 make_vector_type (type);
f5f8a009 16347
dbc98a8b
KW
16348 /* The DIE may have DW_AT_byte_size set. For example an OpenCL
16349 implementation may choose to implement triple vectors using this
16350 attribute. */
16351 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
435d3d88 16352 if (attr != nullptr)
dbc98a8b
KW
16353 {
16354 if (DW_UNSND (attr) >= TYPE_LENGTH (type))
16355 TYPE_LENGTH (type) = DW_UNSND (attr);
16356 else
b98664d3 16357 complaint (_("DW_AT_byte_size for array type smaller "
3e43a32a 16358 "than the total size of elements"));
dbc98a8b
KW
16359 }
16360
39cbfefa
DJ
16361 name = dwarf2_name (die, cu);
16362 if (name)
d0e39ea2 16363 type->set_name (name);
6e70227d 16364
2b4424c3
TT
16365 maybe_set_alignment (cu, die, type);
16366
0963b4bd 16367 /* Install the type in the die. */
7e314c57
JK
16368 set_die_type (die, type, cu);
16369
16370 /* set_die_type should be already done. */
b4ba55a1
JB
16371 set_descriptive_type (type, die, cu);
16372
7e314c57 16373 return type;
c906108c
SS
16374}
16375
7ca2d3a3 16376static enum dwarf_array_dim_ordering
6e70227d 16377read_array_order (struct die_info *die, struct dwarf2_cu *cu)
7ca2d3a3
DL
16378{
16379 struct attribute *attr;
16380
16381 attr = dwarf2_attr (die, DW_AT_ordering, cu);
16382
435d3d88 16383 if (attr != nullptr)
aead7601 16384 return (enum dwarf_array_dim_ordering) DW_SND (attr);
7ca2d3a3 16385
0963b4bd
MS
16386 /* GNU F77 is a special case, as at 08/2004 array type info is the
16387 opposite order to the dwarf2 specification, but data is still
16388 laid out as per normal fortran.
7ca2d3a3 16389
0963b4bd
MS
16390 FIXME: dsl/2004-8-20: If G77 is ever fixed, this will also need
16391 version checking. */
7ca2d3a3 16392
905e0470
PM
16393 if (cu->language == language_fortran
16394 && cu->producer && strstr (cu->producer, "GNU F77"))
7ca2d3a3
DL
16395 {
16396 return DW_ORD_row_major;
16397 }
16398
6e70227d 16399 switch (cu->language_defn->la_array_ordering)
7ca2d3a3
DL
16400 {
16401 case array_column_major:
16402 return DW_ORD_col_major;
16403 case array_row_major:
16404 default:
16405 return DW_ORD_row_major;
16406 };
16407}
16408
72019c9c 16409/* Extract all information from a DW_TAG_set_type DIE and put it in
0963b4bd 16410 the DIE's type field. */
72019c9c 16411
f792889a 16412static struct type *
72019c9c
GM
16413read_set_type (struct die_info *die, struct dwarf2_cu *cu)
16414{
7e314c57
JK
16415 struct type *domain_type, *set_type;
16416 struct attribute *attr;
f792889a 16417
7e314c57
JK
16418 domain_type = die_type (die, cu);
16419
16420 /* The die_type call above may have already set the type for this DIE. */
16421 set_type = get_die_type (die, cu);
16422 if (set_type)
16423 return set_type;
16424
16425 set_type = create_set_type (NULL, domain_type);
16426
16427 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
435d3d88 16428 if (attr != nullptr)
d09039dd 16429 TYPE_LENGTH (set_type) = DW_UNSND (attr);
7e314c57 16430
2b4424c3
TT
16431 maybe_set_alignment (cu, die, set_type);
16432
f792889a 16433 return set_die_type (die, set_type, cu);
72019c9c 16434}
7ca2d3a3 16435
0971de02
TT
16436/* A helper for read_common_block that creates a locexpr baton.
16437 SYM is the symbol which we are marking as computed.
16438 COMMON_DIE is the DIE for the common block.
16439 COMMON_LOC is the location expression attribute for the common
16440 block itself.
16441 MEMBER_LOC is the location expression attribute for the particular
16442 member of the common block that we are processing.
16443 CU is the CU from which the above come. */
16444
16445static void
16446mark_common_block_symbol_computed (struct symbol *sym,
16447 struct die_info *common_die,
16448 struct attribute *common_loc,
16449 struct attribute *member_loc,
16450 struct dwarf2_cu *cu)
16451{
5e22e966 16452 dwarf2_per_objfile *per_objfile = cu->per_objfile;
a50264ba 16453 struct objfile *objfile = per_objfile->objfile;
0971de02
TT
16454 struct dwarf2_locexpr_baton *baton;
16455 gdb_byte *ptr;
16456 unsigned int cu_off;
08feed99 16457 enum bfd_endian byte_order = gdbarch_byte_order (objfile->arch ());
0971de02
TT
16458 LONGEST offset = 0;
16459
16460 gdb_assert (common_loc && member_loc);
4fc6c0d5
TT
16461 gdb_assert (common_loc->form_is_block ());
16462 gdb_assert (member_loc->form_is_block ()
cd6c91b4 16463 || member_loc->form_is_constant ());
0971de02 16464
8d749320 16465 baton = XOBNEW (&objfile->objfile_obstack, struct dwarf2_locexpr_baton);
a50264ba 16466 baton->per_objfile = per_objfile;
0971de02
TT
16467 baton->per_cu = cu->per_cu;
16468 gdb_assert (baton->per_cu);
16469
16470 baton->size = 5 /* DW_OP_call4 */ + 1 /* DW_OP_plus */;
16471
cd6c91b4 16472 if (member_loc->form_is_constant ())
0971de02 16473 {
0826b30a 16474 offset = member_loc->constant_value (0);
0971de02
TT
16475 baton->size += 1 /* DW_OP_addr */ + cu->header.addr_size;
16476 }
16477 else
16478 baton->size += DW_BLOCK (member_loc)->size;
16479
224c3ddb 16480 ptr = (gdb_byte *) obstack_alloc (&objfile->objfile_obstack, baton->size);
0971de02
TT
16481 baton->data = ptr;
16482
16483 *ptr++ = DW_OP_call4;
9c541725 16484 cu_off = common_die->sect_off - cu->per_cu->sect_off;
0971de02
TT
16485 store_unsigned_integer (ptr, 4, byte_order, cu_off);
16486 ptr += 4;
16487
cd6c91b4 16488 if (member_loc->form_is_constant ())
0971de02
TT
16489 {
16490 *ptr++ = DW_OP_addr;
16491 store_unsigned_integer (ptr, cu->header.addr_size, byte_order, offset);
16492 ptr += cu->header.addr_size;
16493 }
16494 else
16495 {
16496 /* We have to copy the data here, because DW_OP_call4 will only
16497 use a DW_AT_location attribute. */
16498 memcpy (ptr, DW_BLOCK (member_loc)->data, DW_BLOCK (member_loc)->size);
16499 ptr += DW_BLOCK (member_loc)->size;
16500 }
16501
16502 *ptr++ = DW_OP_plus;
16503 gdb_assert (ptr - baton->data == baton->size);
16504
0971de02 16505 SYMBOL_LOCATION_BATON (sym) = baton;
f1e6e072 16506 SYMBOL_ACLASS_INDEX (sym) = dwarf2_locexpr_index;
0971de02
TT
16507}
16508
4357ac6c
TT
16509/* Create appropriate locally-scoped variables for all the
16510 DW_TAG_common_block entries. Also create a struct common_block
16511 listing all such variables for `info common'. COMMON_BLOCK_DOMAIN
85102364 16512 is used to separate the common blocks name namespace from regular
4357ac6c 16513 variable names. */
c906108c
SS
16514
16515static void
e7c27a73 16516read_common_block (struct die_info *die, struct dwarf2_cu *cu)
c906108c 16517{
0971de02
TT
16518 struct attribute *attr;
16519
16520 attr = dwarf2_attr (die, DW_AT_location, cu);
435d3d88 16521 if (attr != nullptr)
0971de02
TT
16522 {
16523 /* Support the .debug_loc offsets. */
4fc6c0d5 16524 if (attr->form_is_block ())
0971de02
TT
16525 {
16526 /* Ok. */
16527 }
cd6c91b4 16528 else if (attr->form_is_section_offset ())
0971de02
TT
16529 {
16530 dwarf2_complex_location_expr_complaint ();
16531 attr = NULL;
16532 }
16533 else
16534 {
16535 dwarf2_invalid_attrib_class_complaint ("DW_AT_location",
16536 "common block member");
16537 attr = NULL;
16538 }
16539 }
16540
639d11d3 16541 if (die->child != NULL)
c906108c 16542 {
5e22e966 16543 struct objfile *objfile = cu->per_objfile->objfile;
4357ac6c
TT
16544 struct die_info *child_die;
16545 size_t n_entries = 0, size;
16546 struct common_block *common_block;
16547 struct symbol *sym;
74ac6d43 16548
4357ac6c
TT
16549 for (child_die = die->child;
16550 child_die && child_die->tag;
436c571c 16551 child_die = child_die->sibling)
4357ac6c
TT
16552 ++n_entries;
16553
16554 size = (sizeof (struct common_block)
16555 + (n_entries - 1) * sizeof (struct symbol *));
224c3ddb
SM
16556 common_block
16557 = (struct common_block *) obstack_alloc (&objfile->objfile_obstack,
16558 size);
4357ac6c
TT
16559 memset (common_block->contents, 0, n_entries * sizeof (struct symbol *));
16560 common_block->n_entries = 0;
16561
16562 for (child_die = die->child;
16563 child_die && child_die->tag;
436c571c 16564 child_die = child_die->sibling)
4357ac6c
TT
16565 {
16566 /* Create the symbol in the DW_TAG_common_block block in the current
16567 symbol scope. */
e7c27a73 16568 sym = new_symbol (child_die, NULL, cu);
0971de02
TT
16569 if (sym != NULL)
16570 {
16571 struct attribute *member_loc;
16572
16573 common_block->contents[common_block->n_entries++] = sym;
16574
16575 member_loc = dwarf2_attr (child_die, DW_AT_data_member_location,
16576 cu);
16577 if (member_loc)
16578 {
16579 /* GDB has handled this for a long time, but it is
16580 not specified by DWARF. It seems to have been
16581 emitted by gfortran at least as recently as:
16582 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23057. */
b98664d3 16583 complaint (_("Variable in common block has "
0971de02 16584 "DW_AT_data_member_location "
9d8780f0
SM
16585 "- DIE at %s [in module %s]"),
16586 sect_offset_str (child_die->sect_off),
518817b3 16587 objfile_name (objfile));
0971de02 16588
cd6c91b4 16589 if (member_loc->form_is_section_offset ())
0971de02 16590 dwarf2_complex_location_expr_complaint ();
cd6c91b4 16591 else if (member_loc->form_is_constant ()
4fc6c0d5 16592 || member_loc->form_is_block ())
0971de02 16593 {
435d3d88 16594 if (attr != nullptr)
0971de02
TT
16595 mark_common_block_symbol_computed (sym, die, attr,
16596 member_loc, cu);
16597 }
16598 else
16599 dwarf2_complex_location_expr_complaint ();
16600 }
16601 }
c906108c 16602 }
4357ac6c
TT
16603
16604 sym = new_symbol (die, objfile_type (objfile)->builtin_void, cu);
16605 SYMBOL_VALUE_COMMON_BLOCK (sym) = common_block;
c906108c
SS
16606 }
16607}
16608
0114d602 16609/* Create a type for a C++ namespace. */
d9fa45fe 16610
0114d602
DJ
16611static struct type *
16612read_namespace_type (struct die_info *die, struct dwarf2_cu *cu)
d9fa45fe 16613{
5e22e966 16614 struct objfile *objfile = cu->per_objfile->objfile;
0114d602 16615 const char *previous_prefix, *name;
9219021c 16616 int is_anonymous;
0114d602
DJ
16617 struct type *type;
16618
16619 /* For extensions, reuse the type of the original namespace. */
16620 if (dwarf2_attr (die, DW_AT_extension, cu) != NULL)
16621 {
16622 struct die_info *ext_die;
16623 struct dwarf2_cu *ext_cu = cu;
9a619af0 16624
0114d602
DJ
16625 ext_die = dwarf2_extension (die, &ext_cu);
16626 type = read_type_die (ext_die, ext_cu);
9dc481d3
DE
16627
16628 /* EXT_CU may not be the same as CU.
02142a6c 16629 Ensure TYPE is recorded with CU in die_type_hash. */
0114d602
DJ
16630 return set_die_type (die, type, cu);
16631 }
9219021c 16632
e142c38c 16633 name = namespace_name (die, &is_anonymous, cu);
9219021c
DC
16634
16635 /* Now build the name of the current namespace. */
16636
0114d602
DJ
16637 previous_prefix = determine_prefix (die, cu);
16638 if (previous_prefix[0] != '\0')
16639 name = typename_concat (&objfile->objfile_obstack,
f55ee35c 16640 previous_prefix, name, 0, cu);
0114d602
DJ
16641
16642 /* Create the type. */
19f392bc 16643 type = init_type (objfile, TYPE_CODE_NAMESPACE, 0, name);
0114d602 16644
60531b24 16645 return set_die_type (die, type, cu);
0114d602
DJ
16646}
16647
22cee43f 16648/* Read a namespace scope. */
0114d602
DJ
16649
16650static void
16651read_namespace (struct die_info *die, struct dwarf2_cu *cu)
16652{
5e22e966 16653 struct objfile *objfile = cu->per_objfile->objfile;
0114d602 16654 int is_anonymous;
9219021c 16655
5c4e30ca
DC
16656 /* Add a symbol associated to this if we haven't seen the namespace
16657 before. Also, add a using directive if it's an anonymous
16658 namespace. */
9219021c 16659
f2f0e013 16660 if (dwarf2_attr (die, DW_AT_extension, cu) == NULL)
5c4e30ca
DC
16661 {
16662 struct type *type;
16663
0114d602 16664 type = read_type_die (die, cu);
e7c27a73 16665 new_symbol (die, type, cu);
5c4e30ca 16666
e8e80198 16667 namespace_name (die, &is_anonymous, cu);
5c4e30ca 16668 if (is_anonymous)
0114d602
DJ
16669 {
16670 const char *previous_prefix = determine_prefix (die, cu);
9a619af0 16671
eb1e02fd 16672 std::vector<const char *> excludes;
804d2729 16673 add_using_directive (using_directives (cu),
7d93a1e0 16674 previous_prefix, type->name (), NULL,
eb1e02fd 16675 NULL, excludes, 0, &objfile->objfile_obstack);
0114d602 16676 }
5c4e30ca 16677 }
9219021c 16678
639d11d3 16679 if (die->child != NULL)
d9fa45fe 16680 {
639d11d3 16681 struct die_info *child_die = die->child;
6e70227d 16682
d9fa45fe
DC
16683 while (child_die && child_die->tag)
16684 {
e7c27a73 16685 process_die (child_die, cu);
436c571c 16686 child_die = child_die->sibling;
d9fa45fe
DC
16687 }
16688 }
38d518c9
EZ
16689}
16690
f55ee35c
JK
16691/* Read a Fortran module as type. This DIE can be only a declaration used for
16692 imported module. Still we need that type as local Fortran "use ... only"
16693 declaration imports depend on the created type in determine_prefix. */
16694
16695static struct type *
16696read_module_type (struct die_info *die, struct dwarf2_cu *cu)
16697{
5e22e966 16698 struct objfile *objfile = cu->per_objfile->objfile;
15d034d0 16699 const char *module_name;
f55ee35c
JK
16700 struct type *type;
16701
16702 module_name = dwarf2_name (die, cu);
19f392bc 16703 type = init_type (objfile, TYPE_CODE_MODULE, 0, module_name);
f55ee35c 16704
f55ee35c
JK
16705 return set_die_type (die, type, cu);
16706}
16707
5d7cb8df
JK
16708/* Read a Fortran module. */
16709
16710static void
16711read_module (struct die_info *die, struct dwarf2_cu *cu)
16712{
16713 struct die_info *child_die = die->child;
530e8392
KB
16714 struct type *type;
16715
16716 type = read_type_die (die, cu);
16717 new_symbol (die, type, cu);
5d7cb8df 16718
5d7cb8df
JK
16719 while (child_die && child_die->tag)
16720 {
16721 process_die (child_die, cu);
436c571c 16722 child_die = child_die->sibling;
5d7cb8df
JK
16723 }
16724}
16725
38d518c9
EZ
16726/* Return the name of the namespace represented by DIE. Set
16727 *IS_ANONYMOUS to tell whether or not the namespace is an anonymous
16728 namespace. */
16729
16730static const char *
e142c38c 16731namespace_name (struct die_info *die, int *is_anonymous, struct dwarf2_cu *cu)
38d518c9
EZ
16732{
16733 struct die_info *current_die;
16734 const char *name = NULL;
16735
16736 /* Loop through the extensions until we find a name. */
16737
16738 for (current_die = die;
16739 current_die != NULL;
f2f0e013 16740 current_die = dwarf2_extension (die, &cu))
38d518c9 16741 {
96553a0c
DE
16742 /* We don't use dwarf2_name here so that we can detect the absence
16743 of a name -> anonymous namespace. */
7d45c7c3 16744 name = dwarf2_string_attr (die, DW_AT_name, cu);
96553a0c 16745
38d518c9
EZ
16746 if (name != NULL)
16747 break;
16748 }
16749
16750 /* Is it an anonymous namespace? */
16751
16752 *is_anonymous = (name == NULL);
16753 if (*is_anonymous)
2b1dbab0 16754 name = CP_ANONYMOUS_NAMESPACE_STR;
38d518c9
EZ
16755
16756 return name;
d9fa45fe
DC
16757}
16758
c906108c
SS
16759/* Extract all information from a DW_TAG_pointer_type DIE and add to
16760 the user defined type vector. */
16761
f792889a 16762static struct type *
e7c27a73 16763read_tag_pointer_type (struct die_info *die, struct dwarf2_cu *cu)
c906108c 16764{
5e22e966 16765 struct gdbarch *gdbarch = cu->per_objfile->objfile->arch ();
e7c27a73 16766 struct comp_unit_head *cu_header = &cu->header;
c906108c 16767 struct type *type;
8b2dbe47
KB
16768 struct attribute *attr_byte_size;
16769 struct attribute *attr_address_class;
16770 int byte_size, addr_class;
7e314c57
JK
16771 struct type *target_type;
16772
16773 target_type = die_type (die, cu);
c906108c 16774
7e314c57
JK
16775 /* The die_type call above may have already set the type for this DIE. */
16776 type = get_die_type (die, cu);
16777 if (type)
16778 return type;
16779
16780 type = lookup_pointer_type (target_type);
8b2dbe47 16781
e142c38c 16782 attr_byte_size = dwarf2_attr (die, DW_AT_byte_size, cu);
8b2dbe47
KB
16783 if (attr_byte_size)
16784 byte_size = DW_UNSND (attr_byte_size);
c906108c 16785 else
8b2dbe47
KB
16786 byte_size = cu_header->addr_size;
16787
e142c38c 16788 attr_address_class = dwarf2_attr (die, DW_AT_address_class, cu);
8b2dbe47
KB
16789 if (attr_address_class)
16790 addr_class = DW_UNSND (attr_address_class);
16791 else
16792 addr_class = DW_ADDR_none;
16793
2b4424c3
TT
16794 ULONGEST alignment = get_alignment (cu, die);
16795
16796 /* If the pointer size, alignment, or address class is different
16797 than the default, create a type variant marked as such and set
16798 the length accordingly. */
16799 if (TYPE_LENGTH (type) != byte_size
16800 || (alignment != 0 && TYPE_RAW_ALIGN (type) != 0
16801 && alignment != TYPE_RAW_ALIGN (type))
16802 || addr_class != DW_ADDR_none)
c906108c 16803 {
5e2b427d 16804 if (gdbarch_address_class_type_flags_p (gdbarch))
8b2dbe47
KB
16805 {
16806 int type_flags;
16807
849957d9 16808 type_flags = gdbarch_address_class_type_flags
5e2b427d 16809 (gdbarch, byte_size, addr_class);
876cecd0
TT
16810 gdb_assert ((type_flags & ~TYPE_INSTANCE_FLAG_ADDRESS_CLASS_ALL)
16811 == 0);
8b2dbe47
KB
16812 type = make_type_with_address_space (type, type_flags);
16813 }
16814 else if (TYPE_LENGTH (type) != byte_size)
16815 {
b98664d3 16816 complaint (_("invalid pointer size %d"), byte_size);
8b2dbe47 16817 }
2b4424c3
TT
16818 else if (TYPE_RAW_ALIGN (type) != alignment)
16819 {
b98664d3 16820 complaint (_("Invalid DW_AT_alignment"
2b4424c3
TT
16821 " - DIE at %s [in module %s]"),
16822 sect_offset_str (die->sect_off),
5e22e966 16823 objfile_name (cu->per_objfile->objfile));
2b4424c3 16824 }
6e70227d 16825 else
9a619af0
MS
16826 {
16827 /* Should we also complain about unhandled address classes? */
16828 }
c906108c 16829 }
8b2dbe47
KB
16830
16831 TYPE_LENGTH (type) = byte_size;
2b4424c3 16832 set_type_align (type, alignment);
f792889a 16833 return set_die_type (die, type, cu);
c906108c
SS
16834}
16835
16836/* Extract all information from a DW_TAG_ptr_to_member_type DIE and add to
16837 the user defined type vector. */
16838
f792889a 16839static struct type *
e7c27a73 16840read_tag_ptr_to_member_type (struct die_info *die, struct dwarf2_cu *cu)
c906108c
SS
16841{
16842 struct type *type;
16843 struct type *to_type;
16844 struct type *domain;
16845
e7c27a73
DJ
16846 to_type = die_type (die, cu);
16847 domain = die_containing_type (die, cu);
0d5de010 16848
7e314c57
JK
16849 /* The calls above may have already set the type for this DIE. */
16850 type = get_die_type (die, cu);
16851 if (type)
16852 return type;
16853
78134374 16854 if (check_typedef (to_type)->code () == TYPE_CODE_METHOD)
0d5de010 16855 type = lookup_methodptr_type (to_type);
78134374 16856 else if (check_typedef (to_type)->code () == TYPE_CODE_FUNC)
7078baeb 16857 {
5e22e966 16858 struct type *new_type = alloc_type (cu->per_objfile->objfile);
7078baeb
TT
16859
16860 smash_to_method_type (new_type, domain, TYPE_TARGET_TYPE (to_type),
80fc5e77 16861 to_type->fields (), to_type->num_fields (),
7078baeb
TT
16862 TYPE_VARARGS (to_type));
16863 type = lookup_methodptr_type (new_type);
16864 }
0d5de010
DJ
16865 else
16866 type = lookup_memberptr_type (to_type, domain);
c906108c 16867
f792889a 16868 return set_die_type (die, type, cu);
c906108c
SS
16869}
16870
4297a3f0 16871/* Extract all information from a DW_TAG_{rvalue_,}reference_type DIE and add to
c906108c
SS
16872 the user defined type vector. */
16873
f792889a 16874static struct type *
4297a3f0
AV
16875read_tag_reference_type (struct die_info *die, struct dwarf2_cu *cu,
16876 enum type_code refcode)
c906108c 16877{
e7c27a73 16878 struct comp_unit_head *cu_header = &cu->header;
7e314c57 16879 struct type *type, *target_type;
c906108c
SS
16880 struct attribute *attr;
16881
4297a3f0
AV
16882 gdb_assert (refcode == TYPE_CODE_REF || refcode == TYPE_CODE_RVALUE_REF);
16883
7e314c57
JK
16884 target_type = die_type (die, cu);
16885
16886 /* The die_type call above may have already set the type for this DIE. */
16887 type = get_die_type (die, cu);
16888 if (type)
16889 return type;
16890
4297a3f0 16891 type = lookup_reference_type (target_type, refcode);
e142c38c 16892 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
435d3d88 16893 if (attr != nullptr)
c906108c
SS
16894 {
16895 TYPE_LENGTH (type) = DW_UNSND (attr);
16896 }
16897 else
16898 {
107d2387 16899 TYPE_LENGTH (type) = cu_header->addr_size;
c906108c 16900 }
2b4424c3 16901 maybe_set_alignment (cu, die, type);
f792889a 16902 return set_die_type (die, type, cu);
c906108c
SS
16903}
16904
cf363f18
MW
16905/* Add the given cv-qualifiers to the element type of the array. GCC
16906 outputs DWARF type qualifiers that apply to an array, not the
16907 element type. But GDB relies on the array element type to carry
16908 the cv-qualifiers. This mimics section 6.7.3 of the C99
16909 specification. */
16910
16911static struct type *
16912add_array_cv_type (struct die_info *die, struct dwarf2_cu *cu,
16913 struct type *base_type, int cnst, int voltl)
16914{
16915 struct type *el_type, *inner_array;
16916
16917 base_type = copy_type (base_type);
16918 inner_array = base_type;
16919
78134374 16920 while (TYPE_TARGET_TYPE (inner_array)->code () == TYPE_CODE_ARRAY)
cf363f18
MW
16921 {
16922 TYPE_TARGET_TYPE (inner_array) =
16923 copy_type (TYPE_TARGET_TYPE (inner_array));
16924 inner_array = TYPE_TARGET_TYPE (inner_array);
16925 }
16926
16927 el_type = TYPE_TARGET_TYPE (inner_array);
16928 cnst |= TYPE_CONST (el_type);
16929 voltl |= TYPE_VOLATILE (el_type);
16930 TYPE_TARGET_TYPE (inner_array) = make_cv_type (cnst, voltl, el_type, NULL);
16931
16932 return set_die_type (die, base_type, cu);
16933}
16934
f792889a 16935static struct type *
e7c27a73 16936read_tag_const_type (struct die_info *die, struct dwarf2_cu *cu)
c906108c 16937{
f792889a 16938 struct type *base_type, *cv_type;
c906108c 16939
e7c27a73 16940 base_type = die_type (die, cu);
7e314c57
JK
16941
16942 /* The die_type call above may have already set the type for this DIE. */
16943 cv_type = get_die_type (die, cu);
16944 if (cv_type)
16945 return cv_type;
16946
2f608a3a
KW
16947 /* In case the const qualifier is applied to an array type, the element type
16948 is so qualified, not the array type (section 6.7.3 of C99). */
78134374 16949 if (base_type->code () == TYPE_CODE_ARRAY)
cf363f18 16950 return add_array_cv_type (die, cu, base_type, 1, 0);
2f608a3a 16951
f792889a
DJ
16952 cv_type = make_cv_type (1, TYPE_VOLATILE (base_type), base_type, 0);
16953 return set_die_type (die, cv_type, cu);
c906108c
SS
16954}
16955
f792889a 16956static struct type *
e7c27a73 16957read_tag_volatile_type (struct die_info *die, struct dwarf2_cu *cu)
c906108c 16958{
f792889a 16959 struct type *base_type, *cv_type;
c906108c 16960
e7c27a73 16961 base_type = die_type (die, cu);
7e314c57
JK
16962
16963 /* The die_type call above may have already set the type for this DIE. */
16964 cv_type = get_die_type (die, cu);
16965 if (cv_type)
16966 return cv_type;
16967
cf363f18
MW
16968 /* In case the volatile qualifier is applied to an array type, the
16969 element type is so qualified, not the array type (section 6.7.3
16970 of C99). */
78134374 16971 if (base_type->code () == TYPE_CODE_ARRAY)
cf363f18
MW
16972 return add_array_cv_type (die, cu, base_type, 0, 1);
16973
f792889a
DJ
16974 cv_type = make_cv_type (TYPE_CONST (base_type), 1, base_type, 0);
16975 return set_die_type (die, cv_type, cu);
c906108c
SS
16976}
16977
06d66ee9
TT
16978/* Handle DW_TAG_restrict_type. */
16979
16980static struct type *
16981read_tag_restrict_type (struct die_info *die, struct dwarf2_cu *cu)
16982{
16983 struct type *base_type, *cv_type;
16984
16985 base_type = die_type (die, cu);
16986
16987 /* The die_type call above may have already set the type for this DIE. */
16988 cv_type = get_die_type (die, cu);
16989 if (cv_type)
16990 return cv_type;
16991
16992 cv_type = make_restrict_type (base_type);
16993 return set_die_type (die, cv_type, cu);
16994}
16995
a2c2acaf
MW
16996/* Handle DW_TAG_atomic_type. */
16997
16998static struct type *
16999read_tag_atomic_type (struct die_info *die, struct dwarf2_cu *cu)
17000{
17001 struct type *base_type, *cv_type;
17002
17003 base_type = die_type (die, cu);
17004
17005 /* The die_type call above may have already set the type for this DIE. */
17006 cv_type = get_die_type (die, cu);
17007 if (cv_type)
17008 return cv_type;
17009
17010 cv_type = make_atomic_type (base_type);
17011 return set_die_type (die, cv_type, cu);
17012}
17013
c906108c
SS
17014/* Extract all information from a DW_TAG_string_type DIE and add to
17015 the user defined type vector. It isn't really a user defined type,
17016 but it behaves like one, with other DIE's using an AT_user_def_type
17017 attribute to reference it. */
17018
f792889a 17019static struct type *
e7c27a73 17020read_tag_string_type (struct die_info *die, struct dwarf2_cu *cu)
c906108c 17021{
5e22e966 17022 struct objfile *objfile = cu->per_objfile->objfile;
08feed99 17023 struct gdbarch *gdbarch = objfile->arch ();
c906108c
SS
17024 struct type *type, *range_type, *index_type, *char_type;
17025 struct attribute *attr;
216a7e6b
AB
17026 struct dynamic_prop prop;
17027 bool length_is_constant = true;
17028 LONGEST length;
17029
17030 /* There are a couple of places where bit sizes might be made use of
17031 when parsing a DW_TAG_string_type, however, no producer that we know
17032 of make use of these. Handling bit sizes that are a multiple of the
17033 byte size is easy enough, but what about other bit sizes? Lets deal
17034 with that problem when we have to. Warn about these attributes being
17035 unsupported, then parse the type and ignore them like we always
17036 have. */
17037 if (dwarf2_attr (die, DW_AT_bit_size, cu) != nullptr
17038 || dwarf2_attr (die, DW_AT_string_length_bit_size, cu) != nullptr)
17039 {
17040 static bool warning_printed = false;
17041 if (!warning_printed)
17042 {
17043 warning (_("DW_AT_bit_size and DW_AT_string_length_bit_size not "
17044 "currently supported on DW_TAG_string_type."));
17045 warning_printed = true;
17046 }
17047 }
c906108c 17048
e142c38c 17049 attr = dwarf2_attr (die, DW_AT_string_length, cu);
cd6c91b4 17050 if (attr != nullptr && !attr->form_is_constant ())
216a7e6b
AB
17051 {
17052 /* The string length describes the location at which the length of
17053 the string can be found. The size of the length field can be
17054 specified with one of the attributes below. */
17055 struct type *prop_type;
17056 struct attribute *len
17057 = dwarf2_attr (die, DW_AT_string_length_byte_size, cu);
17058 if (len == nullptr)
17059 len = dwarf2_attr (die, DW_AT_byte_size, cu);
cd6c91b4 17060 if (len != nullptr && len->form_is_constant ())
216a7e6b
AB
17061 {
17062 /* Pass 0 as the default as we know this attribute is constant
17063 and the default value will not be returned. */
0826b30a 17064 LONGEST sz = len->constant_value (0);
293e7e51 17065 prop_type = cu->per_objfile->int_type (sz, true);
216a7e6b
AB
17066 }
17067 else
17068 {
17069 /* If the size is not specified then we assume it is the size of
17070 an address on this target. */
293e7e51 17071 prop_type = cu->addr_sized_int_type (true);
216a7e6b
AB
17072 }
17073
17074 /* Convert the attribute into a dynamic property. */
17075 if (!attr_to_dynamic_prop (attr, die, cu, &prop, prop_type))
17076 length = 1;
17077 else
17078 length_is_constant = false;
17079 }
17080 else if (attr != nullptr)
17081 {
17082 /* This DW_AT_string_length just contains the length with no
17083 indirection. There's no need to create a dynamic property in this
17084 case. Pass 0 for the default value as we know it will not be
17085 returned in this case. */
0826b30a 17086 length = attr->constant_value (0);
216a7e6b
AB
17087 }
17088 else if ((attr = dwarf2_attr (die, DW_AT_byte_size, cu)) != nullptr)
c906108c 17089 {
216a7e6b 17090 /* We don't currently support non-constant byte sizes for strings. */
0826b30a 17091 length = attr->constant_value (1);
c906108c
SS
17092 }
17093 else
17094 {
216a7e6b
AB
17095 /* Use 1 as a fallback length if we have nothing else. */
17096 length = 1;
c906108c 17097 }
6ccb9162 17098
46bf5051 17099 index_type = objfile_type (objfile)->builtin_int;
216a7e6b
AB
17100 if (length_is_constant)
17101 range_type = create_static_range_type (NULL, index_type, 1, length);
17102 else
17103 {
17104 struct dynamic_prop low_bound;
17105
17106 low_bound.kind = PROP_CONST;
17107 low_bound.data.const_val = 1;
17108 range_type = create_range_type (NULL, index_type, &low_bound, &prop, 0);
17109 }
3b7538c0
UW
17110 char_type = language_string_char_type (cu->language_defn, gdbarch);
17111 type = create_string_type (NULL, char_type, range_type);
6ccb9162 17112
f792889a 17113 return set_die_type (die, type, cu);
c906108c
SS
17114}
17115
4d804846
JB
17116/* Assuming that DIE corresponds to a function, returns nonzero
17117 if the function is prototyped. */
17118
17119static int
17120prototyped_function_p (struct die_info *die, struct dwarf2_cu *cu)
17121{
17122 struct attribute *attr;
17123
17124 attr = dwarf2_attr (die, DW_AT_prototyped, cu);
17125 if (attr && (DW_UNSND (attr) != 0))
17126 return 1;
17127
17128 /* The DWARF standard implies that the DW_AT_prototyped attribute
85102364 17129 is only meaningful for C, but the concept also extends to other
4d804846
JB
17130 languages that allow unprototyped functions (Eg: Objective C).
17131 For all other languages, assume that functions are always
17132 prototyped. */
17133 if (cu->language != language_c
17134 && cu->language != language_objc
17135 && cu->language != language_opencl)
17136 return 1;
17137
17138 /* RealView does not emit DW_AT_prototyped. We can not distinguish
17139 prototyped and unprototyped functions; default to prototyped,
17140 since that is more common in modern code (and RealView warns
17141 about unprototyped functions). */
17142 if (producer_is_realview (cu->producer))
17143 return 1;
17144
17145 return 0;
17146}
17147
c906108c
SS
17148/* Handle DIES due to C code like:
17149
17150 struct foo
c5aa993b
JM
17151 {
17152 int (*funcp)(int a, long l);
17153 int b;
17154 };
c906108c 17155
0963b4bd 17156 ('funcp' generates a DW_TAG_subroutine_type DIE). */
c906108c 17157
f792889a 17158static struct type *
e7c27a73 17159read_subroutine_type (struct die_info *die, struct dwarf2_cu *cu)
c906108c 17160{
5e22e966 17161 struct objfile *objfile = cu->per_objfile->objfile;
0963b4bd
MS
17162 struct type *type; /* Type that this function returns. */
17163 struct type *ftype; /* Function that returns above type. */
c906108c
SS
17164 struct attribute *attr;
17165
e7c27a73 17166 type = die_type (die, cu);
7e314c57
JK
17167
17168 /* The die_type call above may have already set the type for this DIE. */
17169 ftype = get_die_type (die, cu);
17170 if (ftype)
17171 return ftype;
17172
0c8b41f1 17173 ftype = lookup_function_type (type);
c906108c 17174
4d804846 17175 if (prototyped_function_p (die, cu))
a6c727b2 17176 TYPE_PROTOTYPED (ftype) = 1;
c906108c 17177
c055b101
CV
17178 /* Store the calling convention in the type if it's available in
17179 the subroutine die. Otherwise set the calling convention to
17180 the default value DW_CC_normal. */
17181 attr = dwarf2_attr (die, DW_AT_calling_convention, cu);
d0922fcf
TBA
17182 if (attr != nullptr
17183 && is_valid_DW_AT_calling_convention_for_subroutine (DW_UNSND (attr)))
17184 TYPE_CALLING_CONVENTION (ftype)
17185 = (enum dwarf_calling_convention) (DW_UNSND (attr));
54fcddd0
UW
17186 else if (cu->producer && strstr (cu->producer, "IBM XL C for OpenCL"))
17187 TYPE_CALLING_CONVENTION (ftype) = DW_CC_GDB_IBM_OpenCL;
17188 else
17189 TYPE_CALLING_CONVENTION (ftype) = DW_CC_normal;
76c10ea2 17190
743649fd
MW
17191 /* Record whether the function returns normally to its caller or not
17192 if the DWARF producer set that information. */
17193 attr = dwarf2_attr (die, DW_AT_noreturn, cu);
17194 if (attr && (DW_UNSND (attr) != 0))
17195 TYPE_NO_RETURN (ftype) = 1;
17196
76c10ea2
GM
17197 /* We need to add the subroutine type to the die immediately so
17198 we don't infinitely recurse when dealing with parameters
0963b4bd 17199 declared as the same subroutine type. */
76c10ea2 17200 set_die_type (die, ftype, cu);
6e70227d 17201
639d11d3 17202 if (die->child != NULL)
c906108c 17203 {
bb5ed363 17204 struct type *void_type = objfile_type (objfile)->builtin_void;
c906108c 17205 struct die_info *child_die;
8072405b 17206 int nparams, iparams;
c906108c
SS
17207
17208 /* Count the number of parameters.
17209 FIXME: GDB currently ignores vararg functions, but knows about
17210 vararg member functions. */
8072405b 17211 nparams = 0;
639d11d3 17212 child_die = die->child;
c906108c
SS
17213 while (child_die && child_die->tag)
17214 {
17215 if (child_die->tag == DW_TAG_formal_parameter)
17216 nparams++;
17217 else if (child_die->tag == DW_TAG_unspecified_parameters)
876cecd0 17218 TYPE_VARARGS (ftype) = 1;
436c571c 17219 child_die = child_die->sibling;
c906108c
SS
17220 }
17221
17222 /* Allocate storage for parameters and fill them in. */
5e33d5f4 17223 ftype->set_num_fields (nparams);
3cabb6b0
SM
17224 ftype->set_fields
17225 ((struct field *) TYPE_ZALLOC (ftype, nparams * sizeof (struct field)));
c906108c 17226
8072405b
JK
17227 /* TYPE_FIELD_TYPE must never be NULL. Pre-fill the array to ensure it
17228 even if we error out during the parameters reading below. */
17229 for (iparams = 0; iparams < nparams; iparams++)
17230 TYPE_FIELD_TYPE (ftype, iparams) = void_type;
17231
17232 iparams = 0;
639d11d3 17233 child_die = die->child;
c906108c
SS
17234 while (child_die && child_die->tag)
17235 {
17236 if (child_die->tag == DW_TAG_formal_parameter)
17237 {
3ce3b1ba
PA
17238 struct type *arg_type;
17239
17240 /* DWARF version 2 has no clean way to discern C++
17241 static and non-static member functions. G++ helps
17242 GDB by marking the first parameter for non-static
17243 member functions (which is the this pointer) as
17244 artificial. We pass this information to
17245 dwarf2_add_member_fn via TYPE_FIELD_ARTIFICIAL.
17246
17247 DWARF version 3 added DW_AT_object_pointer, which GCC
17248 4.5 does not yet generate. */
e142c38c 17249 attr = dwarf2_attr (child_die, DW_AT_artificial, cu);
435d3d88 17250 if (attr != nullptr)
c906108c
SS
17251 TYPE_FIELD_ARTIFICIAL (ftype, iparams) = DW_UNSND (attr);
17252 else
9c37b5ae 17253 TYPE_FIELD_ARTIFICIAL (ftype, iparams) = 0;
3ce3b1ba
PA
17254 arg_type = die_type (child_die, cu);
17255
17256 /* RealView does not mark THIS as const, which the testsuite
17257 expects. GCC marks THIS as const in method definitions,
17258 but not in the class specifications (GCC PR 43053). */
17259 if (cu->language == language_cplus && !TYPE_CONST (arg_type)
17260 && TYPE_FIELD_ARTIFICIAL (ftype, iparams))
17261 {
17262 int is_this = 0;
17263 struct dwarf2_cu *arg_cu = cu;
17264 const char *name = dwarf2_name (child_die, cu);
17265
17266 attr = dwarf2_attr (die, DW_AT_object_pointer, cu);
435d3d88 17267 if (attr != nullptr)
3ce3b1ba
PA
17268 {
17269 /* If the compiler emits this, use it. */
17270 if (follow_die_ref (die, attr, &arg_cu) == child_die)
17271 is_this = 1;
17272 }
17273 else if (name && strcmp (name, "this") == 0)
17274 /* Function definitions will have the argument names. */
17275 is_this = 1;
17276 else if (name == NULL && iparams == 0)
17277 /* Declarations may not have the names, so like
17278 elsewhere in GDB, assume an artificial first
17279 argument is "this". */
17280 is_this = 1;
17281
17282 if (is_this)
17283 arg_type = make_cv_type (1, TYPE_VOLATILE (arg_type),
17284 arg_type, 0);
17285 }
17286
17287 TYPE_FIELD_TYPE (ftype, iparams) = arg_type;
c906108c
SS
17288 iparams++;
17289 }
436c571c 17290 child_die = child_die->sibling;
c906108c
SS
17291 }
17292 }
17293
76c10ea2 17294 return ftype;
c906108c
SS
17295}
17296
f792889a 17297static struct type *
e7c27a73 17298read_typedef (struct die_info *die, struct dwarf2_cu *cu)
c906108c 17299{
5e22e966 17300 struct objfile *objfile = cu->per_objfile->objfile;
0114d602 17301 const char *name = NULL;
3c8e0968 17302 struct type *this_type, *target_type;
c906108c 17303
94af9270 17304 name = dwarf2_full_name (NULL, die, cu);
19f392bc
UW
17305 this_type = init_type (objfile, TYPE_CODE_TYPEDEF, 0, name);
17306 TYPE_TARGET_STUB (this_type) = 1;
f792889a 17307 set_die_type (die, this_type, cu);
3c8e0968
DE
17308 target_type = die_type (die, cu);
17309 if (target_type != this_type)
17310 TYPE_TARGET_TYPE (this_type) = target_type;
17311 else
17312 {
17313 /* Self-referential typedefs are, it seems, not allowed by the DWARF
17314 spec and cause infinite loops in GDB. */
b98664d3 17315 complaint (_("Self-referential DW_TAG_typedef "
9d8780f0
SM
17316 "- DIE at %s [in module %s]"),
17317 sect_offset_str (die->sect_off), objfile_name (objfile));
3c8e0968
DE
17318 TYPE_TARGET_TYPE (this_type) = NULL;
17319 }
e4003a34
TV
17320 if (name == NULL)
17321 {
17322 /* Gcc-7 and before supports -feliminate-dwarf2-dups, which generates
17323 anonymous typedefs, which is, strictly speaking, invalid DWARF.
17324 Handle these by just returning the target type, rather than
17325 constructing an anonymous typedef type and trying to handle this
17326 elsewhere. */
17327 set_die_type (die, target_type, cu);
17328 return target_type;
17329 }
f792889a 17330 return this_type;
c906108c
SS
17331}
17332
9b790ce7
UW
17333/* Allocate a floating-point type of size BITS and name NAME. Pass NAME_HINT
17334 (which may be different from NAME) to the architecture back-end to allow
17335 it to guess the correct format if necessary. */
17336
17337static struct type *
17338dwarf2_init_float_type (struct objfile *objfile, int bits, const char *name,
103a685e 17339 const char *name_hint, enum bfd_endian byte_order)
9b790ce7 17340{
08feed99 17341 struct gdbarch *gdbarch = objfile->arch ();
9b790ce7
UW
17342 const struct floatformat **format;
17343 struct type *type;
17344
17345 format = gdbarch_floatformat_for_type (gdbarch, name_hint, bits);
17346 if (format)
103a685e 17347 type = init_float_type (objfile, bits, name, format, byte_order);
9b790ce7 17348 else
77b7c781 17349 type = init_type (objfile, TYPE_CODE_ERROR, bits, name);
9b790ce7
UW
17350
17351 return type;
17352}
17353
eb77c9df
AB
17354/* Allocate an integer type of size BITS and name NAME. */
17355
17356static struct type *
17357dwarf2_init_integer_type (struct dwarf2_cu *cu, struct objfile *objfile,
17358 int bits, int unsigned_p, const char *name)
17359{
17360 struct type *type;
17361
17362 /* Versions of Intel's C Compiler generate an integer type called "void"
17363 instead of using DW_TAG_unspecified_type. This has been seen on
17364 at least versions 14, 17, and 18. */
35ee2dc2
AB
17365 if (bits == 0 && producer_is_icc (cu) && name != nullptr
17366 && strcmp (name, "void") == 0)
eb77c9df
AB
17367 type = objfile_type (objfile)->builtin_void;
17368 else
17369 type = init_integer_type (objfile, bits, unsigned_p, name);
17370
17371 return type;
17372}
17373
8bdc1658
AB
17374/* Initialise and return a floating point type of size BITS suitable for
17375 use as a component of a complex number. The NAME_HINT is passed through
17376 when initialising the floating point type and is the name of the complex
17377 type.
17378
17379 As DWARF doesn't currently provide an explicit name for the components
17380 of a complex number, but it can be helpful to have these components
17381 named, we try to select a suitable name based on the size of the
17382 component. */
17383static struct type *
17384dwarf2_init_complex_target_type (struct dwarf2_cu *cu,
17385 struct objfile *objfile,
103a685e
TT
17386 int bits, const char *name_hint,
17387 enum bfd_endian byte_order)
8bdc1658 17388{
08feed99 17389 gdbarch *gdbarch = objfile->arch ();
8bdc1658
AB
17390 struct type *tt = nullptr;
17391
35add35e
AB
17392 /* Try to find a suitable floating point builtin type of size BITS.
17393 We're going to use the name of this type as the name for the complex
17394 target type that we are about to create. */
1db455a7 17395 switch (cu->language)
8bdc1658 17396 {
1db455a7
AB
17397 case language_fortran:
17398 switch (bits)
17399 {
17400 case 32:
17401 tt = builtin_f_type (gdbarch)->builtin_real;
17402 break;
17403 case 64:
17404 tt = builtin_f_type (gdbarch)->builtin_real_s8;
17405 break;
17406 case 96: /* The x86-32 ABI specifies 96-bit long double. */
17407 case 128:
17408 tt = builtin_f_type (gdbarch)->builtin_real_s16;
17409 break;
17410 }
8bdc1658 17411 break;
1db455a7
AB
17412 default:
17413 switch (bits)
17414 {
17415 case 32:
17416 tt = builtin_type (gdbarch)->builtin_float;
17417 break;
17418 case 64:
17419 tt = builtin_type (gdbarch)->builtin_double;
17420 break;
17421 case 96: /* The x86-32 ABI specifies 96-bit long double. */
17422 case 128:
17423 tt = builtin_type (gdbarch)->builtin_long_double;
17424 break;
17425 }
8bdc1658
AB
17426 break;
17427 }
17428
35add35e
AB
17429 /* If the type we found doesn't match the size we were looking for, then
17430 pretend we didn't find a type at all, the complex target type we
17431 create will then be nameless. */
a12e5744 17432 if (tt != nullptr && TYPE_LENGTH (tt) * TARGET_CHAR_BIT != bits)
35add35e
AB
17433 tt = nullptr;
17434
7d93a1e0 17435 const char *name = (tt == nullptr) ? nullptr : tt->name ();
103a685e 17436 return dwarf2_init_float_type (objfile, bits, name, name_hint, byte_order);
8bdc1658
AB
17437}
17438
c906108c
SS
17439/* Find a representation of a given base type and install
17440 it in the TYPE field of the die. */
17441
f792889a 17442static struct type *
e7c27a73 17443read_base_type (struct die_info *die, struct dwarf2_cu *cu)
c906108c 17444{
5e22e966 17445 struct objfile *objfile = cu->per_objfile->objfile;
c906108c
SS
17446 struct type *type;
17447 struct attribute *attr;
19f392bc 17448 int encoding = 0, bits = 0;
15d034d0 17449 const char *name;
34877895 17450 gdbarch *arch;
c906108c 17451
e142c38c 17452 attr = dwarf2_attr (die, DW_AT_encoding, cu);
435d3d88 17453 if (attr != nullptr)
34877895 17454 encoding = DW_UNSND (attr);
e142c38c 17455 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
435d3d88 17456 if (attr != nullptr)
34877895 17457 bits = DW_UNSND (attr) * TARGET_CHAR_BIT;
39cbfefa 17458 name = dwarf2_name (die, cu);
6ccb9162 17459 if (!name)
34877895 17460 complaint (_("DW_AT_name missing from DW_TAG_base_type"));
103a685e 17461
08feed99 17462 arch = objfile->arch ();
103a685e
TT
17463 enum bfd_endian byte_order = gdbarch_byte_order (arch);
17464
34877895
PJ
17465 attr = dwarf2_attr (die, DW_AT_endianity, cu);
17466 if (attr)
103a685e
TT
17467 {
17468 int endianity = DW_UNSND (attr);
17469
17470 switch (endianity)
17471 {
17472 case DW_END_big:
17473 byte_order = BFD_ENDIAN_BIG;
17474 break;
17475 case DW_END_little:
17476 byte_order = BFD_ENDIAN_LITTLE;
17477 break;
17478 default:
17479 complaint (_("DW_AT_endianity has unrecognized value %d"), endianity);
17480 break;
17481 }
17482 }
6ccb9162
UW
17483
17484 switch (encoding)
c906108c 17485 {
6ccb9162
UW
17486 case DW_ATE_address:
17487 /* Turn DW_ATE_address into a void * pointer. */
77b7c781 17488 type = init_type (objfile, TYPE_CODE_VOID, TARGET_CHAR_BIT, NULL);
19f392bc 17489 type = init_pointer_type (objfile, bits, name, type);
6ccb9162
UW
17490 break;
17491 case DW_ATE_boolean:
19f392bc 17492 type = init_boolean_type (objfile, bits, 1, name);
6ccb9162
UW
17493 break;
17494 case DW_ATE_complex_float:
103a685e
TT
17495 type = dwarf2_init_complex_target_type (cu, objfile, bits / 2, name,
17496 byte_order);
78134374 17497 if (type->code () == TYPE_CODE_ERROR)
93689ce9
TT
17498 {
17499 if (name == nullptr)
17500 {
17501 struct obstack *obstack
5e22e966 17502 = &cu->per_objfile->objfile->objfile_obstack;
7d93a1e0 17503 name = obconcat (obstack, "_Complex ", type->name (),
93689ce9
TT
17504 nullptr);
17505 }
17506 type = init_type (objfile, TYPE_CODE_ERROR, bits, name);
17507 }
17508 else
17509 type = init_complex_type (name, type);
6ccb9162
UW
17510 break;
17511 case DW_ATE_decimal_float:
19f392bc 17512 type = init_decfloat_type (objfile, bits, name);
6ccb9162
UW
17513 break;
17514 case DW_ATE_float:
103a685e 17515 type = dwarf2_init_float_type (objfile, bits, name, name, byte_order);
6ccb9162
UW
17516 break;
17517 case DW_ATE_signed:
eb77c9df 17518 type = dwarf2_init_integer_type (cu, objfile, bits, 0, name);
6ccb9162
UW
17519 break;
17520 case DW_ATE_unsigned:
3b2b8fea
TT
17521 if (cu->language == language_fortran
17522 && name
61012eef 17523 && startswith (name, "character("))
19f392bc
UW
17524 type = init_character_type (objfile, bits, 1, name);
17525 else
eb77c9df 17526 type = dwarf2_init_integer_type (cu, objfile, bits, 1, name);
6ccb9162
UW
17527 break;
17528 case DW_ATE_signed_char:
6e70227d 17529 if (cu->language == language_ada || cu->language == language_m2
3b2b8fea
TT
17530 || cu->language == language_pascal
17531 || cu->language == language_fortran)
19f392bc
UW
17532 type = init_character_type (objfile, bits, 0, name);
17533 else
eb77c9df 17534 type = dwarf2_init_integer_type (cu, objfile, bits, 0, name);
6ccb9162
UW
17535 break;
17536 case DW_ATE_unsigned_char:
868a0084 17537 if (cu->language == language_ada || cu->language == language_m2
3b2b8fea 17538 || cu->language == language_pascal
c44af4eb
TT
17539 || cu->language == language_fortran
17540 || cu->language == language_rust)
19f392bc
UW
17541 type = init_character_type (objfile, bits, 1, name);
17542 else
eb77c9df 17543 type = dwarf2_init_integer_type (cu, objfile, bits, 1, name);
6ccb9162 17544 break;
75079b2b 17545 case DW_ATE_UTF:
53e710ac 17546 {
53e710ac
PA
17547 if (bits == 16)
17548 type = builtin_type (arch)->builtin_char16;
17549 else if (bits == 32)
17550 type = builtin_type (arch)->builtin_char32;
17551 else
17552 {
b98664d3 17553 complaint (_("unsupported DW_ATE_UTF bit size: '%d'"),
53e710ac 17554 bits);
eb77c9df 17555 type = dwarf2_init_integer_type (cu, objfile, bits, 1, name);
53e710ac
PA
17556 }
17557 return set_die_type (die, type, cu);
17558 }
75079b2b
TT
17559 break;
17560
6ccb9162 17561 default:
b98664d3 17562 complaint (_("unsupported DW_AT_encoding: '%s'"),
6ccb9162 17563 dwarf_type_encoding_name (encoding));
77b7c781 17564 type = init_type (objfile, TYPE_CODE_ERROR, bits, name);
6ccb9162 17565 break;
c906108c 17566 }
6ccb9162 17567
0114d602 17568 if (name && strcmp (name, "char") == 0)
876cecd0 17569 TYPE_NOSIGN (type) = 1;
0114d602 17570
2b4424c3
TT
17571 maybe_set_alignment (cu, die, type);
17572
103a685e 17573 TYPE_ENDIANITY_NOT_DEFAULT (type) = gdbarch_byte_order (arch) != byte_order;
34877895 17574
f792889a 17575 return set_die_type (die, type, cu);
c906108c
SS
17576}
17577
80180f79
SA
17578/* Parse dwarf attribute if it's a block, reference or constant and put the
17579 resulting value of the attribute into struct bound_prop.
17580 Returns 1 if ATTR could be resolved into PROP, 0 otherwise. */
17581
17582static int
17583attr_to_dynamic_prop (const struct attribute *attr, struct die_info *die,
9a49df9d
AB
17584 struct dwarf2_cu *cu, struct dynamic_prop *prop,
17585 struct type *default_type)
80180f79
SA
17586{
17587 struct dwarf2_property_baton *baton;
5e22e966 17588 dwarf2_per_objfile *per_objfile = cu->per_objfile;
a50264ba
TT
17589 struct objfile *objfile = per_objfile->objfile;
17590 struct obstack *obstack = &objfile->objfile_obstack;
80180f79 17591
9a49df9d
AB
17592 gdb_assert (default_type != NULL);
17593
80180f79
SA
17594 if (attr == NULL || prop == NULL)
17595 return 0;
17596
4fc6c0d5 17597 if (attr->form_is_block ())
80180f79 17598 {
8d749320 17599 baton = XOBNEW (obstack, struct dwarf2_property_baton);
9a49df9d 17600 baton->property_type = default_type;
80180f79 17601 baton->locexpr.per_cu = cu->per_cu;
a50264ba 17602 baton->locexpr.per_objfile = per_objfile;
80180f79
SA
17603 baton->locexpr.size = DW_BLOCK (attr)->size;
17604 baton->locexpr.data = DW_BLOCK (attr)->data;
216a7e6b
AB
17605 switch (attr->name)
17606 {
17607 case DW_AT_string_length:
17608 baton->locexpr.is_reference = true;
17609 break;
17610 default:
17611 baton->locexpr.is_reference = false;
17612 break;
17613 }
80180f79
SA
17614 prop->data.baton = baton;
17615 prop->kind = PROP_LOCEXPR;
17616 gdb_assert (prop->data.baton != NULL);
17617 }
cd6c91b4 17618 else if (attr->form_is_ref ())
80180f79
SA
17619 {
17620 struct dwarf2_cu *target_cu = cu;
17621 struct die_info *target_die;
17622 struct attribute *target_attr;
17623
17624 target_die = follow_die_ref (die, attr, &target_cu);
17625 target_attr = dwarf2_attr (target_die, DW_AT_location, target_cu);
df25ebbd
JB
17626 if (target_attr == NULL)
17627 target_attr = dwarf2_attr (target_die, DW_AT_data_member_location,
17628 target_cu);
80180f79
SA
17629 if (target_attr == NULL)
17630 return 0;
17631
df25ebbd 17632 switch (target_attr->name)
80180f79 17633 {
df25ebbd 17634 case DW_AT_location:
cd6c91b4 17635 if (target_attr->form_is_section_offset ())
df25ebbd 17636 {
8d749320 17637 baton = XOBNEW (obstack, struct dwarf2_property_baton);
9a49df9d 17638 baton->property_type = die_type (target_die, target_cu);
df25ebbd
JB
17639 fill_in_loclist_baton (cu, &baton->loclist, target_attr);
17640 prop->data.baton = baton;
17641 prop->kind = PROP_LOCLIST;
17642 gdb_assert (prop->data.baton != NULL);
17643 }
4fc6c0d5 17644 else if (target_attr->form_is_block ())
df25ebbd 17645 {
8d749320 17646 baton = XOBNEW (obstack, struct dwarf2_property_baton);
9a49df9d 17647 baton->property_type = die_type (target_die, target_cu);
df25ebbd 17648 baton->locexpr.per_cu = cu->per_cu;
a50264ba 17649 baton->locexpr.per_objfile = per_objfile;
df25ebbd
JB
17650 baton->locexpr.size = DW_BLOCK (target_attr)->size;
17651 baton->locexpr.data = DW_BLOCK (target_attr)->data;
9a49df9d 17652 baton->locexpr.is_reference = true;
df25ebbd
JB
17653 prop->data.baton = baton;
17654 prop->kind = PROP_LOCEXPR;
17655 gdb_assert (prop->data.baton != NULL);
17656 }
17657 else
17658 {
17659 dwarf2_invalid_attrib_class_complaint ("DW_AT_location",
17660 "dynamic property");
17661 return 0;
17662 }
17663 break;
17664 case DW_AT_data_member_location:
17665 {
17666 LONGEST offset;
17667
17668 if (!handle_data_member_location (target_die, target_cu,
17669 &offset))
17670 return 0;
17671
8d749320 17672 baton = XOBNEW (obstack, struct dwarf2_property_baton);
9a49df9d 17673 baton->property_type = read_type_die (target_die->parent,
6ad395a7 17674 target_cu);
df25ebbd
JB
17675 baton->offset_info.offset = offset;
17676 baton->offset_info.type = die_type (target_die, target_cu);
17677 prop->data.baton = baton;
17678 prop->kind = PROP_ADDR_OFFSET;
17679 break;
17680 }
80180f79
SA
17681 }
17682 }
cd6c91b4 17683 else if (attr->form_is_constant ())
80180f79 17684 {
0826b30a 17685 prop->data.const_val = attr->constant_value (0);
80180f79
SA
17686 prop->kind = PROP_CONST;
17687 }
17688 else
17689 {
17690 dwarf2_invalid_attrib_class_complaint (dwarf_form_name (attr->form),
17691 dwarf2_name (die, cu));
17692 return 0;
17693 }
17694
17695 return 1;
17696}
17697
09ba997f 17698/* See read.h. */
9a49df9d 17699
09ba997f 17700struct type *
293e7e51 17701dwarf2_per_objfile::int_type (int size_in_bytes, bool unsigned_p) const
9a49df9d 17702{
9a49df9d
AB
17703 struct type *int_type;
17704
17705 /* Helper macro to examine the various builtin types. */
11a8b164
AB
17706#define TRY_TYPE(F) \
17707 int_type = (unsigned_p \
17708 ? objfile_type (objfile)->builtin_unsigned_ ## F \
17709 : objfile_type (objfile)->builtin_ ## F); \
17710 if (int_type != NULL && TYPE_LENGTH (int_type) == size_in_bytes) \
9a49df9d
AB
17711 return int_type
17712
17713 TRY_TYPE (char);
17714 TRY_TYPE (short);
17715 TRY_TYPE (int);
17716 TRY_TYPE (long);
17717 TRY_TYPE (long_long);
17718
17719#undef TRY_TYPE
17720
17721 gdb_assert_not_reached ("unable to find suitable integer type");
17722}
17723
09ba997f 17724/* See read.h. */
11a8b164 17725
09ba997f 17726struct type *
293e7e51 17727dwarf2_cu::addr_sized_int_type (bool unsigned_p) const
11a8b164 17728{
293e7e51
SM
17729 int addr_size = this->per_cu->addr_size ();
17730 return this->per_objfile->int_type (addr_size, unsigned_p);
11a8b164
AB
17731}
17732
b86352cf
AB
17733/* Read the DW_AT_type attribute for a sub-range. If this attribute is not
17734 present (which is valid) then compute the default type based on the
17735 compilation units address size. */
17736
17737static struct type *
17738read_subrange_index_type (struct die_info *die, struct dwarf2_cu *cu)
17739{
17740 struct type *index_type = die_type (die, cu);
17741
17742 /* Dwarf-2 specifications explicitly allows to create subrange types
17743 without specifying a base type.
17744 In that case, the base type must be set to the type of
17745 the lower bound, upper bound or count, in that order, if any of these
17746 three attributes references an object that has a type.
17747 If no base type is found, the Dwarf-2 specifications say that
17748 a signed integer type of size equal to the size of an address should
17749 be used.
17750 For the following C code: `extern char gdb_int [];'
17751 GCC produces an empty range DIE.
17752 FIXME: muller/2010-05-28: Possible references to object for low bound,
17753 high bound or count are not yet handled by this code. */
78134374 17754 if (index_type->code () == TYPE_CODE_VOID)
293e7e51 17755 index_type = cu->addr_sized_int_type (false);
b86352cf
AB
17756
17757 return index_type;
17758}
17759
a02abb62
JB
17760/* Read the given DW_AT_subrange DIE. */
17761
f792889a 17762static struct type *
a02abb62
JB
17763read_subrange_type (struct die_info *die, struct dwarf2_cu *cu)
17764{
4c9ad8c2 17765 struct type *base_type, *orig_base_type;
a02abb62
JB
17766 struct type *range_type;
17767 struct attribute *attr;
729efb13 17768 struct dynamic_prop low, high;
4fae6e18 17769 int low_default_is_valid;
c451ebe5 17770 int high_bound_is_count = 0;
15d034d0 17771 const char *name;
d359392f 17772 ULONGEST negative_mask;
e77813c8 17773
b86352cf
AB
17774 orig_base_type = read_subrange_index_type (die, cu);
17775
4c9ad8c2
TT
17776 /* If ORIG_BASE_TYPE is a typedef, it will not be TYPE_UNSIGNED,
17777 whereas the real type might be. So, we use ORIG_BASE_TYPE when
17778 creating the range type, but we use the result of check_typedef
17779 when examining properties of the type. */
17780 base_type = check_typedef (orig_base_type);
a02abb62 17781
7e314c57
JK
17782 /* The die_type call above may have already set the type for this DIE. */
17783 range_type = get_die_type (die, cu);
17784 if (range_type)
17785 return range_type;
17786
729efb13
SA
17787 low.kind = PROP_CONST;
17788 high.kind = PROP_CONST;
17789 high.data.const_val = 0;
17790
4fae6e18
JK
17791 /* Set LOW_DEFAULT_IS_VALID if current language and DWARF version allow
17792 omitting DW_AT_lower_bound. */
17793 switch (cu->language)
6e70227d 17794 {
4fae6e18
JK
17795 case language_c:
17796 case language_cplus:
729efb13 17797 low.data.const_val = 0;
4fae6e18
JK
17798 low_default_is_valid = 1;
17799 break;
17800 case language_fortran:
729efb13 17801 low.data.const_val = 1;
4fae6e18
JK
17802 low_default_is_valid = 1;
17803 break;
17804 case language_d:
4fae6e18 17805 case language_objc:
c44af4eb 17806 case language_rust:
729efb13 17807 low.data.const_val = 0;
4fae6e18
JK
17808 low_default_is_valid = (cu->header.version >= 4);
17809 break;
17810 case language_ada:
17811 case language_m2:
17812 case language_pascal:
729efb13 17813 low.data.const_val = 1;
4fae6e18
JK
17814 low_default_is_valid = (cu->header.version >= 4);
17815 break;
17816 default:
729efb13 17817 low.data.const_val = 0;
4fae6e18
JK
17818 low_default_is_valid = 0;
17819 break;
a02abb62
JB
17820 }
17821
e142c38c 17822 attr = dwarf2_attr (die, DW_AT_lower_bound, cu);
435d3d88 17823 if (attr != nullptr)
9a49df9d 17824 attr_to_dynamic_prop (attr, die, cu, &low, base_type);
4fae6e18 17825 else if (!low_default_is_valid)
b98664d3 17826 complaint (_("Missing DW_AT_lower_bound "
9d8780f0
SM
17827 "- DIE at %s [in module %s]"),
17828 sect_offset_str (die->sect_off),
5e22e966 17829 objfile_name (cu->per_objfile->objfile));
a02abb62 17830
506f5c41
TV
17831 struct attribute *attr_ub, *attr_count;
17832 attr = attr_ub = dwarf2_attr (die, DW_AT_upper_bound, cu);
9a49df9d 17833 if (!attr_to_dynamic_prop (attr, die, cu, &high, base_type))
e77813c8 17834 {
506f5c41 17835 attr = attr_count = dwarf2_attr (die, DW_AT_count, cu);
9a49df9d 17836 if (attr_to_dynamic_prop (attr, die, cu, &high, base_type))
6b662e19 17837 {
c451ebe5
SA
17838 /* If bounds are constant do the final calculation here. */
17839 if (low.kind == PROP_CONST && high.kind == PROP_CONST)
17840 high.data.const_val = low.data.const_val + high.data.const_val - 1;
17841 else
17842 high_bound_is_count = 1;
c2ff108b 17843 }
506f5c41
TV
17844 else
17845 {
17846 if (attr_ub != NULL)
17847 complaint (_("Unresolved DW_AT_upper_bound "
17848 "- DIE at %s [in module %s]"),
17849 sect_offset_str (die->sect_off),
5e22e966 17850 objfile_name (cu->per_objfile->objfile));
506f5c41
TV
17851 if (attr_count != NULL)
17852 complaint (_("Unresolved DW_AT_count "
17853 "- DIE at %s [in module %s]"),
17854 sect_offset_str (die->sect_off),
5e22e966 17855 objfile_name (cu->per_objfile->objfile));
506f5c41 17856 }
e77813c8 17857 }
a02abb62 17858
4e962e74
TT
17859 LONGEST bias = 0;
17860 struct attribute *bias_attr = dwarf2_attr (die, DW_AT_GNU_bias, cu);
cd6c91b4 17861 if (bias_attr != nullptr && bias_attr->form_is_constant ())
0826b30a 17862 bias = bias_attr->constant_value (0);
4e962e74 17863
dbb9c2b1
JB
17864 /* Normally, the DWARF producers are expected to use a signed
17865 constant form (Eg. DW_FORM_sdata) to express negative bounds.
17866 But this is unfortunately not always the case, as witnessed
17867 with GCC, for instance, where the ambiguous DW_FORM_dataN form
17868 is used instead. To work around that ambiguity, we treat
17869 the bounds as signed, and thus sign-extend their values, when
17870 the base type is signed. */
6e70227d 17871 negative_mask =
d359392f 17872 -((ULONGEST) 1 << (TYPE_LENGTH (base_type) * TARGET_CHAR_BIT - 1));
729efb13
SA
17873 if (low.kind == PROP_CONST
17874 && !TYPE_UNSIGNED (base_type) && (low.data.const_val & negative_mask))
17875 low.data.const_val |= negative_mask;
17876 if (high.kind == PROP_CONST
17877 && !TYPE_UNSIGNED (base_type) && (high.data.const_val & negative_mask))
17878 high.data.const_val |= negative_mask;
43bbcdc2 17879
5bbd8269
AB
17880 /* Check for bit and byte strides. */
17881 struct dynamic_prop byte_stride_prop;
17882 attribute *attr_byte_stride = dwarf2_attr (die, DW_AT_byte_stride, cu);
17883 if (attr_byte_stride != nullptr)
17884 {
293e7e51 17885 struct type *prop_type = cu->addr_sized_int_type (false);
5bbd8269
AB
17886 attr_to_dynamic_prop (attr_byte_stride, die, cu, &byte_stride_prop,
17887 prop_type);
17888 }
17889
17890 struct dynamic_prop bit_stride_prop;
17891 attribute *attr_bit_stride = dwarf2_attr (die, DW_AT_bit_stride, cu);
17892 if (attr_bit_stride != nullptr)
17893 {
17894 /* It only makes sense to have either a bit or byte stride. */
17895 if (attr_byte_stride != nullptr)
17896 {
17897 complaint (_("Found DW_AT_bit_stride and DW_AT_byte_stride "
17898 "- DIE at %s [in module %s]"),
17899 sect_offset_str (die->sect_off),
5e22e966 17900 objfile_name (cu->per_objfile->objfile));
5bbd8269
AB
17901 attr_bit_stride = nullptr;
17902 }
17903 else
17904 {
293e7e51 17905 struct type *prop_type = cu->addr_sized_int_type (false);
5bbd8269
AB
17906 attr_to_dynamic_prop (attr_bit_stride, die, cu, &bit_stride_prop,
17907 prop_type);
17908 }
17909 }
17910
17911 if (attr_byte_stride != nullptr
17912 || attr_bit_stride != nullptr)
17913 {
17914 bool byte_stride_p = (attr_byte_stride != nullptr);
17915 struct dynamic_prop *stride
17916 = byte_stride_p ? &byte_stride_prop : &bit_stride_prop;
17917
17918 range_type
17919 = create_range_type_with_stride (NULL, orig_base_type, &low,
17920 &high, bias, stride, byte_stride_p);
17921 }
17922 else
17923 range_type = create_range_type (NULL, orig_base_type, &low, &high, bias);
a02abb62 17924
c451ebe5
SA
17925 if (high_bound_is_count)
17926 TYPE_RANGE_DATA (range_type)->flag_upper_bound_is_count = 1;
17927
c2ff108b
JK
17928 /* Ada expects an empty array on no boundary attributes. */
17929 if (attr == NULL && cu->language != language_ada)
729efb13 17930 TYPE_HIGH_BOUND_KIND (range_type) = PROP_UNDEFINED;
c2ff108b 17931
39cbfefa
DJ
17932 name = dwarf2_name (die, cu);
17933 if (name)
d0e39ea2 17934 range_type->set_name (name);
6e70227d 17935
e142c38c 17936 attr = dwarf2_attr (die, DW_AT_byte_size, cu);
435d3d88 17937 if (attr != nullptr)
a02abb62
JB
17938 TYPE_LENGTH (range_type) = DW_UNSND (attr);
17939
2b4424c3
TT
17940 maybe_set_alignment (cu, die, range_type);
17941
7e314c57
JK
17942 set_die_type (die, range_type, cu);
17943
17944 /* set_die_type should be already done. */
b4ba55a1
JB
17945 set_descriptive_type (range_type, die, cu);
17946
7e314c57 17947 return range_type;
a02abb62 17948}
6e70227d 17949
f792889a 17950static struct type *
81a17f79
JB
17951read_unspecified_type (struct die_info *die, struct dwarf2_cu *cu)
17952{
17953 struct type *type;
81a17f79 17954
5e22e966 17955 type = init_type (cu->per_objfile->objfile, TYPE_CODE_VOID, 0, NULL);
d0e39ea2 17956 type->set_name (dwarf2_name (die, cu));
81a17f79 17957
74a2f8ff 17958 /* In Ada, an unspecified type is typically used when the description
85102364 17959 of the type is deferred to a different unit. When encountering
74a2f8ff
JB
17960 such a type, we treat it as a stub, and try to resolve it later on,
17961 when needed. */
17962 if (cu->language == language_ada)
17963 TYPE_STUB (type) = 1;
17964
f792889a 17965 return set_die_type (die, type, cu);
81a17f79 17966}
a02abb62 17967
639d11d3
DC
17968/* Read a single die and all its descendents. Set the die's sibling
17969 field to NULL; set other fields in the die correctly, and set all
17970 of the descendents' fields correctly. Set *NEW_INFO_PTR to the
17971 location of the info_ptr after reading all of those dies. PARENT
17972 is the parent of the die in question. */
17973
17974static struct die_info *
dee91e82 17975read_die_and_children (const struct die_reader_specs *reader,
d521ce57
TT
17976 const gdb_byte *info_ptr,
17977 const gdb_byte **new_info_ptr,
dee91e82 17978 struct die_info *parent)
639d11d3
DC
17979{
17980 struct die_info *die;
d521ce57 17981 const gdb_byte *cur_ptr;
639d11d3 17982
3e225074 17983 cur_ptr = read_full_die_1 (reader, &die, info_ptr, 0);
1d325ec1
DJ
17984 if (die == NULL)
17985 {
17986 *new_info_ptr = cur_ptr;
17987 return NULL;
17988 }
93311388 17989 store_in_ref_table (die, reader->cu);
639d11d3 17990
3e225074 17991 if (die->has_children)
bf6af496 17992 die->child = read_die_and_siblings_1 (reader, cur_ptr, new_info_ptr, die);
639d11d3
DC
17993 else
17994 {
17995 die->child = NULL;
17996 *new_info_ptr = cur_ptr;
17997 }
17998
17999 die->sibling = NULL;
18000 die->parent = parent;
18001 return die;
18002}
18003
18004/* Read a die, all of its descendents, and all of its siblings; set
18005 all of the fields of all of the dies correctly. Arguments are as
18006 in read_die_and_children. */
18007
18008static struct die_info *
bf6af496 18009read_die_and_siblings_1 (const struct die_reader_specs *reader,
d521ce57
TT
18010 const gdb_byte *info_ptr,
18011 const gdb_byte **new_info_ptr,
bf6af496 18012 struct die_info *parent)
639d11d3
DC
18013{
18014 struct die_info *first_die, *last_sibling;
d521ce57 18015 const gdb_byte *cur_ptr;
639d11d3 18016
c906108c 18017 cur_ptr = info_ptr;
639d11d3
DC
18018 first_die = last_sibling = NULL;
18019
18020 while (1)
c906108c 18021 {
639d11d3 18022 struct die_info *die
dee91e82 18023 = read_die_and_children (reader, cur_ptr, &cur_ptr, parent);
639d11d3 18024
1d325ec1 18025 if (die == NULL)
c906108c 18026 {
639d11d3
DC
18027 *new_info_ptr = cur_ptr;
18028 return first_die;
c906108c 18029 }
1d325ec1
DJ
18030
18031 if (!first_die)
18032 first_die = die;
c906108c 18033 else
1d325ec1
DJ
18034 last_sibling->sibling = die;
18035
18036 last_sibling = die;
c906108c 18037 }
c906108c
SS
18038}
18039
bf6af496
DE
18040/* Read a die, all of its descendents, and all of its siblings; set
18041 all of the fields of all of the dies correctly. Arguments are as
18042 in read_die_and_children.
18043 This the main entry point for reading a DIE and all its children. */
18044
18045static struct die_info *
18046read_die_and_siblings (const struct die_reader_specs *reader,
d521ce57
TT
18047 const gdb_byte *info_ptr,
18048 const gdb_byte **new_info_ptr,
bf6af496
DE
18049 struct die_info *parent)
18050{
18051 struct die_info *die = read_die_and_siblings_1 (reader, info_ptr,
18052 new_info_ptr, parent);
18053
b4f54984 18054 if (dwarf_die_debug)
bf6af496
DE
18055 {
18056 fprintf_unfiltered (gdb_stdlog,
18057 "Read die from %s@0x%x of %s:\n",
96b79293 18058 reader->die_section->get_name (),
bf6af496
DE
18059 (unsigned) (info_ptr - reader->die_section->buffer),
18060 bfd_get_filename (reader->abfd));
b4f54984 18061 dump_die (die, dwarf_die_debug);
bf6af496
DE
18062 }
18063
18064 return die;
18065}
18066
3019eac3
DE
18067/* Read a die and all its attributes, leave space for NUM_EXTRA_ATTRS
18068 attributes.
18069 The caller is responsible for filling in the extra attributes
18070 and updating (*DIEP)->num_attrs.
18071 Set DIEP to point to a newly allocated die with its information,
3e225074 18072 except for its child, sibling, and parent fields. */
93311388 18073
d521ce57 18074static const gdb_byte *
3019eac3 18075read_full_die_1 (const struct die_reader_specs *reader,
d521ce57 18076 struct die_info **diep, const gdb_byte *info_ptr,
3e225074 18077 int num_extra_attrs)
93311388 18078{
b64f50a1 18079 unsigned int abbrev_number, bytes_read, i;
93311388
DE
18080 struct abbrev_info *abbrev;
18081 struct die_info *die;
18082 struct dwarf2_cu *cu = reader->cu;
18083 bfd *abfd = reader->abfd;
18084
9c541725 18085 sect_offset sect_off = (sect_offset) (info_ptr - reader->buffer);
93311388
DE
18086 abbrev_number = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
18087 info_ptr += bytes_read;
18088 if (!abbrev_number)
18089 {
18090 *diep = NULL;
93311388
DE
18091 return info_ptr;
18092 }
18093
685af9cd 18094 abbrev = reader->abbrev_table->lookup_abbrev (abbrev_number);
93311388 18095 if (!abbrev)
348e048f
DE
18096 error (_("Dwarf Error: could not find abbrev number %d [in module %s]"),
18097 abbrev_number,
18098 bfd_get_filename (abfd));
18099
3019eac3 18100 die = dwarf_alloc_die (cu, abbrev->num_attrs + num_extra_attrs);
9c541725 18101 die->sect_off = sect_off;
93311388
DE
18102 die->tag = abbrev->tag;
18103 die->abbrev = abbrev_number;
3e225074 18104 die->has_children = abbrev->has_children;
93311388 18105
3019eac3
DE
18106 /* Make the result usable.
18107 The caller needs to update num_attrs after adding the extra
18108 attributes. */
93311388
DE
18109 die->num_attrs = abbrev->num_attrs;
18110
18a8505e 18111 std::vector<int> indexes_that_need_reprocess;
93311388 18112 for (i = 0; i < abbrev->num_attrs; ++i)
18a8505e
AT
18113 {
18114 bool need_reprocess;
18115 info_ptr =
18116 read_attribute (reader, &die->attrs[i], &abbrev->attrs[i],
18117 info_ptr, &need_reprocess);
18118 if (need_reprocess)
18119 indexes_that_need_reprocess.push_back (i);
18120 }
18121
052c8bb8 18122 struct attribute *attr = die->attr (DW_AT_str_offsets_base);
18a8505e
AT
18123 if (attr != nullptr)
18124 cu->str_offsets_base = DW_UNSND (attr);
93311388 18125
41144253 18126 attr = die->attr (DW_AT_loclists_base);
18127 if (attr != nullptr)
18128 cu->loclist_base = DW_UNSND (attr);
18129
a39fdb41 18130 auto maybe_addr_base = die->addr_base ();
18a8505e
AT
18131 if (maybe_addr_base.has_value ())
18132 cu->addr_base = *maybe_addr_base;
18133 for (int index : indexes_that_need_reprocess)
18134 read_attribute_reprocess (reader, &die->attrs[index]);
93311388 18135 *diep = die;
93311388
DE
18136 return info_ptr;
18137}
18138
3019eac3
DE
18139/* Read a die and all its attributes.
18140 Set DIEP to point to a newly allocated die with its information,
3e225074 18141 except for its child, sibling, and parent fields. */
3019eac3 18142
d521ce57 18143static const gdb_byte *
3019eac3 18144read_full_die (const struct die_reader_specs *reader,
3e225074 18145 struct die_info **diep, const gdb_byte *info_ptr)
3019eac3 18146{
d521ce57 18147 const gdb_byte *result;
bf6af496 18148
3e225074 18149 result = read_full_die_1 (reader, diep, info_ptr, 0);
bf6af496 18150
b4f54984 18151 if (dwarf_die_debug)
bf6af496
DE
18152 {
18153 fprintf_unfiltered (gdb_stdlog,
18154 "Read die from %s@0x%x of %s:\n",
96b79293 18155 reader->die_section->get_name (),
bf6af496
DE
18156 (unsigned) (info_ptr - reader->die_section->buffer),
18157 bfd_get_filename (reader->abfd));
b4f54984 18158 dump_die (*diep, dwarf_die_debug);
bf6af496
DE
18159 }
18160
18161 return result;
3019eac3 18162}
433df2d4 18163\f
c906108c 18164
72bf9492
DJ
18165/* Returns nonzero if TAG represents a type that we might generate a partial
18166 symbol for. */
18167
18168static int
18169is_type_tag_for_partial (int tag)
18170{
18171 switch (tag)
18172 {
18173#if 0
18174 /* Some types that would be reasonable to generate partial symbols for,
18175 that we don't at present. */
18176 case DW_TAG_array_type:
18177 case DW_TAG_file_type:
18178 case DW_TAG_ptr_to_member_type:
18179 case DW_TAG_set_type:
18180 case DW_TAG_string_type:
18181 case DW_TAG_subroutine_type:
18182#endif
18183 case DW_TAG_base_type:
18184 case DW_TAG_class_type:
680b30c7 18185 case DW_TAG_interface_type:
72bf9492
DJ
18186 case DW_TAG_enumeration_type:
18187 case DW_TAG_structure_type:
18188 case DW_TAG_subrange_type:
18189 case DW_TAG_typedef:
18190 case DW_TAG_union_type:
18191 return 1;
18192 default:
18193 return 0;
18194 }
18195}
18196
18197/* Load all DIEs that are interesting for partial symbols into memory. */
18198
18199static struct partial_die_info *
dee91e82 18200load_partial_dies (const struct die_reader_specs *reader,
d521ce57 18201 const gdb_byte *info_ptr, int building_psymtab)
72bf9492 18202{
dee91e82 18203 struct dwarf2_cu *cu = reader->cu;
5e22e966 18204 struct objfile *objfile = cu->per_objfile->objfile;
72bf9492 18205 struct partial_die_info *parent_die, *last_die, *first_die = NULL;
72bf9492 18206 unsigned int bytes_read;
5afb4e99 18207 unsigned int load_all = 0;
72bf9492
DJ
18208 int nesting_level = 1;
18209
18210 parent_die = NULL;
18211 last_die = NULL;
18212
7adf1e79
DE
18213 gdb_assert (cu->per_cu != NULL);
18214 if (cu->per_cu->load_all_dies)
5afb4e99
DJ
18215 load_all = 1;
18216
72bf9492
DJ
18217 cu->partial_dies
18218 = htab_create_alloc_ex (cu->header.length / 12,
18219 partial_die_hash,
18220 partial_die_eq,
18221 NULL,
18222 &cu->comp_unit_obstack,
18223 hashtab_obstack_allocate,
18224 dummy_obstack_deallocate);
18225
72bf9492
DJ
18226 while (1)
18227 {
685af9cd 18228 abbrev_info *abbrev = peek_die_abbrev (*reader, info_ptr, &bytes_read);
72bf9492
DJ
18229
18230 /* A NULL abbrev means the end of a series of children. */
18231 if (abbrev == NULL)
18232 {
18233 if (--nesting_level == 0)
cd9983dd
YQ
18234 return first_die;
18235
72bf9492
DJ
18236 info_ptr += bytes_read;
18237 last_die = parent_die;
18238 parent_die = parent_die->die_parent;
18239 continue;
18240 }
18241
98bfdba5
PA
18242 /* Check for template arguments. We never save these; if
18243 they're seen, we just mark the parent, and go on our way. */
18244 if (parent_die != NULL
18245 && cu->language == language_cplus
18246 && (abbrev->tag == DW_TAG_template_type_param
18247 || abbrev->tag == DW_TAG_template_value_param))
18248 {
18249 parent_die->has_template_arguments = 1;
18250
18251 if (!load_all)
18252 {
18253 /* We don't need a partial DIE for the template argument. */
dee91e82 18254 info_ptr = skip_one_die (reader, info_ptr + bytes_read, abbrev);
98bfdba5
PA
18255 continue;
18256 }
18257 }
18258
0d99eb77 18259 /* We only recurse into c++ subprograms looking for template arguments.
98bfdba5
PA
18260 Skip their other children. */
18261 if (!load_all
18262 && cu->language == language_cplus
18263 && parent_die != NULL
f9b5d5ea
TV
18264 && parent_die->tag == DW_TAG_subprogram
18265 && abbrev->tag != DW_TAG_inlined_subroutine)
98bfdba5 18266 {
dee91e82 18267 info_ptr = skip_one_die (reader, info_ptr + bytes_read, abbrev);
98bfdba5
PA
18268 continue;
18269 }
18270
5afb4e99
DJ
18271 /* Check whether this DIE is interesting enough to save. Normally
18272 we would not be interested in members here, but there may be
18273 later variables referencing them via DW_AT_specification (for
18274 static members). */
18275 if (!load_all
18276 && !is_type_tag_for_partial (abbrev->tag)
72929c62 18277 && abbrev->tag != DW_TAG_constant
72bf9492
DJ
18278 && abbrev->tag != DW_TAG_enumerator
18279 && abbrev->tag != DW_TAG_subprogram
b1dc1806 18280 && abbrev->tag != DW_TAG_inlined_subroutine
bc30ff58 18281 && abbrev->tag != DW_TAG_lexical_block
72bf9492 18282 && abbrev->tag != DW_TAG_variable
5afb4e99 18283 && abbrev->tag != DW_TAG_namespace
f55ee35c 18284 && abbrev->tag != DW_TAG_module
95554aad 18285 && abbrev->tag != DW_TAG_member
74921315
KS
18286 && abbrev->tag != DW_TAG_imported_unit
18287 && abbrev->tag != DW_TAG_imported_declaration)
72bf9492
DJ
18288 {
18289 /* Otherwise we skip to the next sibling, if any. */
dee91e82 18290 info_ptr = skip_one_die (reader, info_ptr + bytes_read, abbrev);
72bf9492
DJ
18291 continue;
18292 }
18293
6f06d47b
YQ
18294 struct partial_die_info pdi ((sect_offset) (info_ptr - reader->buffer),
18295 abbrev);
cd9983dd 18296
48fbe735 18297 info_ptr = pdi.read (reader, *abbrev, info_ptr + bytes_read);
72bf9492
DJ
18298
18299 /* This two-pass algorithm for processing partial symbols has a
18300 high cost in cache pressure. Thus, handle some simple cases
18301 here which cover the majority of C partial symbols. DIEs
18302 which neither have specification tags in them, nor could have
18303 specification tags elsewhere pointing at them, can simply be
18304 processed and discarded.
18305
18306 This segment is also optional; scan_partial_symbols and
18307 add_partial_symbol will handle these DIEs if we chain
18308 them in normally. When compilers which do not emit large
18309 quantities of duplicate debug information are more common,
18310 this code can probably be removed. */
18311
18312 /* Any complete simple types at the top level (pretty much all
18313 of them, for a language without namespaces), can be processed
18314 directly. */
18315 if (parent_die == NULL
cd9983dd
YQ
18316 && pdi.has_specification == 0
18317 && pdi.is_declaration == 0
18318 && ((pdi.tag == DW_TAG_typedef && !pdi.has_children)
18319 || pdi.tag == DW_TAG_base_type
18320 || pdi.tag == DW_TAG_subrange_type))
72bf9492 18321 {
7d00ffec 18322 if (building_psymtab && pdi.raw_name != NULL)
f0fbb768
TT
18323 add_partial_symbol (&pdi, cu);
18324
cd9983dd 18325 info_ptr = locate_pdi_sibling (reader, &pdi, info_ptr);
72bf9492
DJ
18326 continue;
18327 }
18328
d8228535
JK
18329 /* The exception for DW_TAG_typedef with has_children above is
18330 a workaround of GCC PR debug/47510. In the case of this complaint
a737d952 18331 type_name_or_error will error on such types later.
d8228535
JK
18332
18333 GDB skipped children of DW_TAG_typedef by the shortcut above and then
18334 it could not find the child DIEs referenced later, this is checked
18335 above. In correct DWARF DW_TAG_typedef should have no children. */
18336
cd9983dd 18337 if (pdi.tag == DW_TAG_typedef && pdi.has_children)
b98664d3 18338 complaint (_("DW_TAG_typedef has childen - GCC PR debug/47510 bug "
9d8780f0 18339 "- DIE at %s [in module %s]"),
cd9983dd 18340 sect_offset_str (pdi.sect_off), objfile_name (objfile));
d8228535 18341
72bf9492
DJ
18342 /* If we're at the second level, and we're an enumerator, and
18343 our parent has no specification (meaning possibly lives in a
18344 namespace elsewhere), then we can add the partial symbol now
18345 instead of queueing it. */
cd9983dd 18346 if (pdi.tag == DW_TAG_enumerator
72bf9492
DJ
18347 && parent_die != NULL
18348 && parent_die->die_parent == NULL
18349 && parent_die->tag == DW_TAG_enumeration_type
18350 && parent_die->has_specification == 0)
18351 {
7d00ffec 18352 if (pdi.raw_name == NULL)
b98664d3 18353 complaint (_("malformed enumerator DIE ignored"));
72bf9492 18354 else if (building_psymtab)
f0fbb768 18355 add_partial_symbol (&pdi, cu);
72bf9492 18356
cd9983dd 18357 info_ptr = locate_pdi_sibling (reader, &pdi, info_ptr);
72bf9492
DJ
18358 continue;
18359 }
18360
cd9983dd 18361 struct partial_die_info *part_die
6f06d47b 18362 = new (&cu->comp_unit_obstack) partial_die_info (pdi);
cd9983dd 18363
72bf9492
DJ
18364 /* We'll save this DIE so link it in. */
18365 part_die->die_parent = parent_die;
18366 part_die->die_sibling = NULL;
18367 part_die->die_child = NULL;
18368
18369 if (last_die && last_die == parent_die)
18370 last_die->die_child = part_die;
18371 else if (last_die)
18372 last_die->die_sibling = part_die;
18373
18374 last_die = part_die;
18375
18376 if (first_die == NULL)
18377 first_die = part_die;
18378
18379 /* Maybe add the DIE to the hash table. Not all DIEs that we
18380 find interesting need to be in the hash table, because we
18381 also have the parent/sibling/child chains; only those that we
18382 might refer to by offset later during partial symbol reading.
18383
18384 For now this means things that might have be the target of a
18385 DW_AT_specification, DW_AT_abstract_origin, or
18386 DW_AT_extension. DW_AT_extension will refer only to
18387 namespaces; DW_AT_abstract_origin refers to functions (and
18388 many things under the function DIE, but we do not recurse
18389 into function DIEs during partial symbol reading) and
18390 possibly variables as well; DW_AT_specification refers to
18391 declarations. Declarations ought to have the DW_AT_declaration
18392 flag. It happens that GCC forgets to put it in sometimes, but
18393 only for functions, not for types.
18394
18395 Adding more things than necessary to the hash table is harmless
18396 except for the performance cost. Adding too few will result in
5afb4e99
DJ
18397 wasted time in find_partial_die, when we reread the compilation
18398 unit with load_all_dies set. */
72bf9492 18399
5afb4e99 18400 if (load_all
72929c62 18401 || abbrev->tag == DW_TAG_constant
5afb4e99 18402 || abbrev->tag == DW_TAG_subprogram
72bf9492
DJ
18403 || abbrev->tag == DW_TAG_variable
18404 || abbrev->tag == DW_TAG_namespace
18405 || part_die->is_declaration)
18406 {
18407 void **slot;
18408
18409 slot = htab_find_slot_with_hash (cu->partial_dies, part_die,
9c541725
PA
18410 to_underlying (part_die->sect_off),
18411 INSERT);
72bf9492
DJ
18412 *slot = part_die;
18413 }
18414
72bf9492 18415 /* For some DIEs we want to follow their children (if any). For C
bc30ff58 18416 we have no reason to follow the children of structures; for other
98bfdba5
PA
18417 languages we have to, so that we can get at method physnames
18418 to infer fully qualified class names, for DW_AT_specification,
18419 and for C++ template arguments. For C++, we also look one level
18420 inside functions to find template arguments (if the name of the
18421 function does not already contain the template arguments).
bc30ff58 18422
0a4b0913
AB
18423 For Ada and Fortran, we need to scan the children of subprograms
18424 and lexical blocks as well because these languages allow the
18425 definition of nested entities that could be interesting for the
18426 debugger, such as nested subprograms for instance. */
72bf9492 18427 if (last_die->has_children
5afb4e99
DJ
18428 && (load_all
18429 || last_die->tag == DW_TAG_namespace
f55ee35c 18430 || last_die->tag == DW_TAG_module
72bf9492 18431 || last_die->tag == DW_TAG_enumeration_type
98bfdba5
PA
18432 || (cu->language == language_cplus
18433 && last_die->tag == DW_TAG_subprogram
7d00ffec
TT
18434 && (last_die->raw_name == NULL
18435 || strchr (last_die->raw_name, '<') == NULL))
72bf9492
DJ
18436 || (cu->language != language_c
18437 && (last_die->tag == DW_TAG_class_type
680b30c7 18438 || last_die->tag == DW_TAG_interface_type
72bf9492 18439 || last_die->tag == DW_TAG_structure_type
bc30ff58 18440 || last_die->tag == DW_TAG_union_type))
0a4b0913
AB
18441 || ((cu->language == language_ada
18442 || cu->language == language_fortran)
bc30ff58
JB
18443 && (last_die->tag == DW_TAG_subprogram
18444 || last_die->tag == DW_TAG_lexical_block))))
72bf9492
DJ
18445 {
18446 nesting_level++;
18447 parent_die = last_die;
18448 continue;
18449 }
18450
18451 /* Otherwise we skip to the next sibling, if any. */
dee91e82 18452 info_ptr = locate_pdi_sibling (reader, last_die, info_ptr);
72bf9492
DJ
18453
18454 /* Back to the top, do it again. */
18455 }
18456}
18457
6f06d47b
YQ
18458partial_die_info::partial_die_info (sect_offset sect_off_,
18459 struct abbrev_info *abbrev)
18460 : partial_die_info (sect_off_, abbrev->tag, abbrev->has_children)
18461{
18462}
18463
7d00ffec
TT
18464/* See class definition. */
18465
18466const char *
18467partial_die_info::name (dwarf2_cu *cu)
18468{
18469 if (!canonical_name && raw_name != nullptr)
18470 {
18471 struct objfile *objfile = cu->per_objfile->objfile;
18472 raw_name = dwarf2_canonicalize_name (raw_name, cu, objfile);
18473 canonical_name = 1;
18474 }
18475
18476 return raw_name;
18477}
18478
35cc7ed7
YQ
18479/* Read a minimal amount of information into the minimal die structure.
18480 INFO_PTR should point just after the initial uleb128 of a DIE. */
c906108c 18481
48fbe735
YQ
18482const gdb_byte *
18483partial_die_info::read (const struct die_reader_specs *reader,
18484 const struct abbrev_info &abbrev, const gdb_byte *info_ptr)
c906108c 18485{
dee91e82 18486 struct dwarf2_cu *cu = reader->cu;
976ca316 18487 dwarf2_per_objfile *per_objfile = cu->per_objfile;
fa238c03 18488 unsigned int i;
c5aa993b 18489 int has_low_pc_attr = 0;
c906108c 18490 int has_high_pc_attr = 0;
91da1414 18491 int high_pc_relative = 0;
c906108c 18492
fd0a254f 18493 for (i = 0; i < abbrev.num_attrs; ++i)
c906108c 18494 {
e7da7f8f 18495 attribute attr;
18a8505e 18496 bool need_reprocess;
e7da7f8f 18497 info_ptr = read_attribute (reader, &attr, &abbrev.attrs[i],
18a8505e
AT
18498 info_ptr, &need_reprocess);
18499 /* String and address offsets that need to do the reprocessing have
18500 already been read at this point, so there is no need to wait until
18501 the loop terminates to do the reprocessing. */
18502 if (need_reprocess)
e7da7f8f 18503 read_attribute_reprocess (reader, &attr);
c906108c 18504 /* Store the data if it is of an attribute we want to keep in a
c5aa993b 18505 partial symbol table. */
c906108c
SS
18506 switch (attr.name)
18507 {
18508 case DW_AT_name:
48fbe735 18509 switch (tag)
71c25dea
TT
18510 {
18511 case DW_TAG_compile_unit:
95554aad 18512 case DW_TAG_partial_unit:
348e048f 18513 case DW_TAG_type_unit:
71c25dea
TT
18514 /* Compilation units have a DW_AT_name that is a filename, not
18515 a source language identifier. */
18516 case DW_TAG_enumeration_type:
18517 case DW_TAG_enumerator:
18518 /* These tags always have simple identifiers already; no need
18519 to canonicalize them. */
7d00ffec
TT
18520 canonical_name = 1;
18521 raw_name = DW_STRING (&attr);
71c25dea
TT
18522 break;
18523 default:
7d00ffec
TT
18524 canonical_name = 0;
18525 raw_name = DW_STRING (&attr);
71c25dea
TT
18526 break;
18527 }
c906108c 18528 break;
31ef98ae 18529 case DW_AT_linkage_name:
c906108c 18530 case DW_AT_MIPS_linkage_name:
31ef98ae
TT
18531 /* Note that both forms of linkage name might appear. We
18532 assume they will be the same, and we only store the last
18533 one we see. */
e61108c9 18534 linkage_name = attr.value_as_string ();
787de330
TT
18535 /* rustc emits invalid values for DW_AT_linkage_name. Ignore these.
18536 See https://github.com/rust-lang/rust/issues/32925. */
18537 if (cu->language == language_rust && linkage_name != NULL
18538 && strchr (linkage_name, '{') != NULL)
18539 linkage_name = NULL;
c906108c
SS
18540 break;
18541 case DW_AT_low_pc:
18542 has_low_pc_attr = 1;
cd6c91b4 18543 lowpc = attr.value_as_address ();
c906108c
SS
18544 break;
18545 case DW_AT_high_pc:
18546 has_high_pc_attr = 1;
cd6c91b4
TT
18547 highpc = attr.value_as_address ();
18548 if (cu->header.version >= 4 && attr.form_is_constant ())
31aa7e4e 18549 high_pc_relative = 1;
c906108c
SS
18550 break;
18551 case DW_AT_location:
0963b4bd 18552 /* Support the .debug_loc offsets. */
4fc6c0d5 18553 if (attr.form_is_block ())
8e19ed76 18554 {
48fbe735 18555 d.locdesc = DW_BLOCK (&attr);
8e19ed76 18556 }
cd6c91b4 18557 else if (attr.form_is_section_offset ())
8e19ed76 18558 {
4d3c2250 18559 dwarf2_complex_location_expr_complaint ();
8e19ed76
PS
18560 }
18561 else
18562 {
4d3c2250
KB
18563 dwarf2_invalid_attrib_class_complaint ("DW_AT_location",
18564 "partial symbol information");
8e19ed76 18565 }
c906108c 18566 break;
c906108c 18567 case DW_AT_external:
48fbe735 18568 is_external = DW_UNSND (&attr);
c906108c
SS
18569 break;
18570 case DW_AT_declaration:
48fbe735 18571 is_declaration = DW_UNSND (&attr);
c906108c
SS
18572 break;
18573 case DW_AT_type:
48fbe735 18574 has_type = 1;
c906108c
SS
18575 break;
18576 case DW_AT_abstract_origin:
18577 case DW_AT_specification:
72bf9492 18578 case DW_AT_extension:
48fbe735 18579 has_specification = 1;
0826b30a 18580 spec_offset = attr.get_ref_die_offset ();
48fbe735 18581 spec_is_dwz = (attr.form == DW_FORM_GNU_ref_alt
36586728 18582 || cu->per_cu->is_dwz);
c906108c
SS
18583 break;
18584 case DW_AT_sibling:
18585 /* Ignore absolute siblings, they might point outside of
18586 the current compile unit. */
18587 if (attr.form == DW_FORM_ref_addr)
b98664d3 18588 complaint (_("ignoring absolute DW_AT_sibling"));
c906108c 18589 else
b9502d3f 18590 {
48fbe735 18591 const gdb_byte *buffer = reader->buffer;
0826b30a 18592 sect_offset off = attr.get_ref_die_offset ();
9c541725 18593 const gdb_byte *sibling_ptr = buffer + to_underlying (off);
b9502d3f
WN
18594
18595 if (sibling_ptr < info_ptr)
b98664d3 18596 complaint (_("DW_AT_sibling points backwards"));
22869d73 18597 else if (sibling_ptr > reader->buffer_end)
a0194fa8 18598 reader->die_section->overflow_complaint ();
b9502d3f 18599 else
48fbe735 18600 sibling = sibling_ptr;
b9502d3f 18601 }
c906108c 18602 break;
fa4028e9 18603 case DW_AT_byte_size:
48fbe735 18604 has_byte_size = 1;
fa4028e9 18605 break;
ff908ebf 18606 case DW_AT_const_value:
48fbe735 18607 has_const_value = 1;
ff908ebf 18608 break;
68511cec
CES
18609 case DW_AT_calling_convention:
18610 /* DWARF doesn't provide a way to identify a program's source-level
18611 entry point. DW_AT_calling_convention attributes are only meant
18612 to describe functions' calling conventions.
18613
18614 However, because it's a necessary piece of information in
0c1b455e
TT
18615 Fortran, and before DWARF 4 DW_CC_program was the only
18616 piece of debugging information whose definition refers to
18617 a 'main program' at all, several compilers marked Fortran
18618 main programs with DW_CC_program --- even when those
18619 functions use the standard calling conventions.
18620
18621 Although DWARF now specifies a way to provide this
18622 information, we support this practice for backward
18623 compatibility. */
68511cec 18624 if (DW_UNSND (&attr) == DW_CC_program
0c1b455e 18625 && cu->language == language_fortran)
48fbe735 18626 main_subprogram = 1;
68511cec 18627 break;
481860b3
GB
18628 case DW_AT_inline:
18629 if (DW_UNSND (&attr) == DW_INL_inlined
18630 || DW_UNSND (&attr) == DW_INL_declared_inlined)
48fbe735 18631 may_be_inlined = 1;
481860b3 18632 break;
95554aad
TT
18633
18634 case DW_AT_import:
48fbe735 18635 if (tag == DW_TAG_imported_unit)
36586728 18636 {
0826b30a 18637 d.sect_off = attr.get_ref_die_offset ();
48fbe735 18638 is_dwz = (attr.form == DW_FORM_GNU_ref_alt
36586728
TT
18639 || cu->per_cu->is_dwz);
18640 }
95554aad
TT
18641 break;
18642
0c1b455e 18643 case DW_AT_main_subprogram:
48fbe735 18644 main_subprogram = DW_UNSND (&attr);
0c1b455e
TT
18645 break;
18646
05caa1d2
TT
18647 case DW_AT_ranges:
18648 {
18649 /* It would be nice to reuse dwarf2_get_pc_bounds here,
18650 but that requires a full DIE, so instead we just
18651 reimplement it. */
18652 int need_ranges_base = tag != DW_TAG_compile_unit;
18653 unsigned int ranges_offset = (DW_UNSND (&attr)
18654 + (need_ranges_base
18655 ? cu->ranges_base
18656 : 0));
18657
18658 /* Value of the DW_AT_ranges attribute is the offset in the
18659 .debug_ranges section. */
18660 if (dwarf2_ranges_read (ranges_offset, &lowpc, &highpc, cu,
18661 nullptr))
18662 has_pc_info = 1;
18663 }
18664 break;
18665
c906108c
SS
18666 default:
18667 break;
18668 }
18669 }
18670
10d06d82
TT
18671 /* For Ada, if both the name and the linkage name appear, we prefer
18672 the latter. This lets "catch exception" work better, regardless
18673 of the order in which the name and linkage name were emitted.
18674 Really, though, this is just a workaround for the fact that gdb
18675 doesn't store both the name and the linkage name. */
18676 if (cu->language == language_ada && linkage_name != nullptr)
7d00ffec 18677 raw_name = linkage_name;
10d06d82 18678
91da1414 18679 if (high_pc_relative)
48fbe735 18680 highpc += lowpc;
91da1414 18681
9373cf26
JK
18682 if (has_low_pc_attr && has_high_pc_attr)
18683 {
18684 /* When using the GNU linker, .gnu.linkonce. sections are used to
18685 eliminate duplicate copies of functions and vtables and such.
18686 The linker will arbitrarily choose one and discard the others.
18687 The AT_*_pc values for such functions refer to local labels in
18688 these sections. If the section from that file was discarded, the
18689 labels are not in the output, so the relocs get a value of 0.
18690 If this is a discarded function, mark the pc bounds as invalid,
18691 so that GDB will ignore it. */
976ca316 18692 if (lowpc == 0 && !per_objfile->per_bfd->has_section_at_zero)
9373cf26 18693 {
976ca316 18694 struct objfile *objfile = per_objfile->objfile;
08feed99 18695 struct gdbarch *gdbarch = objfile->arch ();
9373cf26 18696
b98664d3 18697 complaint (_("DW_AT_low_pc %s is zero "
9d8780f0 18698 "for DIE at %s [in module %s]"),
48fbe735
YQ
18699 paddress (gdbarch, lowpc),
18700 sect_offset_str (sect_off),
9d8780f0 18701 objfile_name (objfile));
9373cf26
JK
18702 }
18703 /* dwarf2_get_pc_bounds has also the strict low < high requirement. */
48fbe735 18704 else if (lowpc >= highpc)
9373cf26 18705 {
976ca316 18706 struct objfile *objfile = per_objfile->objfile;
08feed99 18707 struct gdbarch *gdbarch = objfile->arch ();
9373cf26 18708
b98664d3 18709 complaint (_("DW_AT_low_pc %s is not < DW_AT_high_pc %s "
9d8780f0 18710 "for DIE at %s [in module %s]"),
48fbe735
YQ
18711 paddress (gdbarch, lowpc),
18712 paddress (gdbarch, highpc),
18713 sect_offset_str (sect_off),
9c541725 18714 objfile_name (objfile));
9373cf26
JK
18715 }
18716 else
48fbe735 18717 has_pc_info = 1;
9373cf26 18718 }
85cbf3d3 18719
c906108c
SS
18720 return info_ptr;
18721}
18722
72bf9492
DJ
18723/* Find a cached partial DIE at OFFSET in CU. */
18724
d590ff25
YQ
18725struct partial_die_info *
18726dwarf2_cu::find_partial_die (sect_offset sect_off)
72bf9492
DJ
18727{
18728 struct partial_die_info *lookup_die = NULL;
6f06d47b 18729 struct partial_die_info part_die (sect_off);
72bf9492 18730
9a3c8263 18731 lookup_die = ((struct partial_die_info *)
d590ff25 18732 htab_find_with_hash (partial_dies, &part_die,
9c541725 18733 to_underlying (sect_off)));
72bf9492 18734
72bf9492
DJ
18735 return lookup_die;
18736}
18737
348e048f
DE
18738/* Find a partial DIE at OFFSET, which may or may not be in CU,
18739 except in the case of .debug_types DIEs which do not reference
18740 outside their CU (they do however referencing other types via
55f1336d 18741 DW_FORM_ref_sig8). */
72bf9492 18742
122cf0f2 18743static const struct cu_partial_die_info
9c541725 18744find_partial_die (sect_offset sect_off, int offset_in_dwz, struct dwarf2_cu *cu)
72bf9492 18745{
976ca316
SM
18746 dwarf2_per_objfile *per_objfile = cu->per_objfile;
18747 struct objfile *objfile = per_objfile->objfile;
5afb4e99 18748 struct partial_die_info *pd = NULL;
72bf9492 18749
36586728 18750 if (offset_in_dwz == cu->per_cu->is_dwz
4057dfde 18751 && cu->header.offset_in_cu_p (sect_off))
5afb4e99 18752 {
d590ff25 18753 pd = cu->find_partial_die (sect_off);
5afb4e99 18754 if (pd != NULL)
fb816e8b 18755 return { cu, pd };
0d99eb77
DE
18756 /* We missed recording what we needed.
18757 Load all dies and try again. */
5afb4e99 18758 }
0d99eb77
DE
18759 else
18760 {
18761 /* TUs don't reference other CUs/TUs (except via type signatures). */
3019eac3 18762 if (cu->per_cu->is_debug_types)
0d99eb77 18763 {
9d8780f0
SM
18764 error (_("Dwarf Error: Type Unit at offset %s contains"
18765 " external reference to offset %s [in module %s].\n"),
18766 sect_offset_str (cu->header.sect_off), sect_offset_str (sect_off),
0d99eb77
DE
18767 bfd_get_filename (objfile->obfd));
18768 }
7188ed02
SM
18769 dwarf2_per_cu_data *per_cu
18770 = dwarf2_find_containing_comp_unit (sect_off, offset_in_dwz,
976ca316 18771 per_objfile);
72bf9492 18772
976ca316 18773 cu = per_objfile->get_cu (per_cu);
7188ed02 18774 if (cu == NULL || cu->partial_dies == NULL)
976ca316 18775 load_partial_comp_unit (per_cu, per_objfile, nullptr);
ae038cb0 18776
976ca316 18777 cu = per_objfile->get_cu (per_cu);
7188ed02
SM
18778
18779 cu->last_used = 0;
18780 pd = cu->find_partial_die (sect_off);
0d99eb77 18781 }
5afb4e99 18782
dee91e82
DE
18783 /* If we didn't find it, and not all dies have been loaded,
18784 load them all and try again. */
18785
7188ed02 18786 if (pd == NULL && cu->per_cu->load_all_dies == 0)
5afb4e99 18787 {
7188ed02 18788 cu->per_cu->load_all_dies = 1;
fd820528
DE
18789
18790 /* This is nasty. When we reread the DIEs, somewhere up the call chain
18791 THIS_CU->cu may already be in use. So we can't just free it and
18792 replace its DIEs with the ones we read in. Instead, we leave those
18793 DIEs alone (which can still be in use, e.g. in scan_partial_symbols),
18794 and clobber THIS_CU->cu->partial_dies with the hash table for the new
18795 set. */
976ca316 18796 load_partial_comp_unit (cu->per_cu, per_objfile, cu);
5afb4e99 18797
7188ed02 18798 pd = cu->find_partial_die (sect_off);
5afb4e99
DJ
18799 }
18800
18801 if (pd == NULL)
18802 internal_error (__FILE__, __LINE__,
9d8780f0 18803 _("could not find partial DIE %s "
3e43a32a 18804 "in cache [from module %s]\n"),
9d8780f0 18805 sect_offset_str (sect_off), bfd_get_filename (objfile->obfd));
7188ed02 18806 return { cu, pd };
72bf9492
DJ
18807}
18808
abc72ce4
DE
18809/* See if we can figure out if the class lives in a namespace. We do
18810 this by looking for a member function; its demangled name will
18811 contain namespace info, if there is any. */
18812
18813static void
18814guess_partial_die_structure_name (struct partial_die_info *struct_pdi,
18815 struct dwarf2_cu *cu)
18816{
18817 /* NOTE: carlton/2003-10-07: Getting the info this way changes
18818 what template types look like, because the demangler
18819 frequently doesn't give the same name as the debug info. We
18820 could fix this by only using the demangled name to get the
18821 prefix (but see comment in read_structure_type). */
18822
18823 struct partial_die_info *real_pdi;
18824 struct partial_die_info *child_pdi;
18825
18826 /* If this DIE (this DIE's specification, if any) has a parent, then
18827 we should not do this. We'll prepend the parent's fully qualified
18828 name when we create the partial symbol. */
18829
18830 real_pdi = struct_pdi;
18831 while (real_pdi->has_specification)
fb816e8b 18832 {
122cf0f2
AB
18833 auto res = find_partial_die (real_pdi->spec_offset,
18834 real_pdi->spec_is_dwz, cu);
fb816e8b
TV
18835 real_pdi = res.pdi;
18836 cu = res.cu;
18837 }
abc72ce4
DE
18838
18839 if (real_pdi->die_parent != NULL)
18840 return;
18841
18842 for (child_pdi = struct_pdi->die_child;
18843 child_pdi != NULL;
18844 child_pdi = child_pdi->die_sibling)
18845 {
18846 if (child_pdi->tag == DW_TAG_subprogram
18847 && child_pdi->linkage_name != NULL)
18848 {
43816ebc
TT
18849 gdb::unique_xmalloc_ptr<char> actual_class_name
18850 (language_class_name_from_physname (cu->language_defn,
18851 child_pdi->linkage_name));
abc72ce4
DE
18852 if (actual_class_name != NULL)
18853 {
5e22e966 18854 struct objfile *objfile = cu->per_objfile->objfile;
7d00ffec
TT
18855 struct_pdi->raw_name = objfile->intern (actual_class_name.get ());
18856 struct_pdi->canonical_name = 1;
abc72ce4
DE
18857 }
18858 break;
18859 }
18860 }
18861}
18862
25c11aca
TV
18863/* Return true if a DIE with TAG may have the DW_AT_const_value
18864 attribute. */
18865
18866static bool
18867can_have_DW_AT_const_value_p (enum dwarf_tag tag)
18868{
18869 switch (tag)
18870 {
18871 case DW_TAG_constant:
18872 case DW_TAG_enumerator:
18873 case DW_TAG_formal_parameter:
18874 case DW_TAG_template_value_param:
18875 case DW_TAG_variable:
18876 return true;
18877 }
18878
18879 return false;
18880}
18881
52356b79
YQ
18882void
18883partial_die_info::fixup (struct dwarf2_cu *cu)
72bf9492 18884{
abc72ce4
DE
18885 /* Once we've fixed up a die, there's no point in doing so again.
18886 This also avoids a memory leak if we were to call
18887 guess_partial_die_structure_name multiple times. */
52356b79 18888 if (fixup_called)
abc72ce4
DE
18889 return;
18890
72bf9492
DJ
18891 /* If we found a reference attribute and the DIE has no name, try
18892 to find a name in the referred to DIE. */
18893
7d00ffec 18894 if (raw_name == NULL && has_specification)
72bf9492
DJ
18895 {
18896 struct partial_die_info *spec_die;
72bf9492 18897
122cf0f2 18898 auto res = find_partial_die (spec_offset, spec_is_dwz, cu);
fb816e8b
TV
18899 spec_die = res.pdi;
18900 cu = res.cu;
72bf9492 18901
52356b79 18902 spec_die->fixup (cu);
72bf9492 18903
7d00ffec 18904 if (spec_die->raw_name)
72bf9492 18905 {
7d00ffec
TT
18906 raw_name = spec_die->raw_name;
18907 canonical_name = spec_die->canonical_name;
72bf9492
DJ
18908
18909 /* Copy DW_AT_external attribute if it is set. */
18910 if (spec_die->is_external)
52356b79 18911 is_external = spec_die->is_external;
72bf9492
DJ
18912 }
18913 }
18914
25c11aca
TV
18915 if (!has_const_value && has_specification
18916 && can_have_DW_AT_const_value_p (tag))
18917 {
18918 struct partial_die_info *spec_die;
18919
18920 auto res = find_partial_die (spec_offset, spec_is_dwz, cu);
18921 spec_die = res.pdi;
18922 cu = res.cu;
18923
18924 spec_die->fixup (cu);
18925
18926 if (spec_die->has_const_value)
18927 {
18928 /* Copy DW_AT_const_value attribute if it is set. */
18929 has_const_value = spec_die->has_const_value;
18930 }
18931 }
18932
72bf9492 18933 /* Set default names for some unnamed DIEs. */
72bf9492 18934
7d00ffec
TT
18935 if (raw_name == NULL && tag == DW_TAG_namespace)
18936 {
18937 raw_name = CP_ANONYMOUS_NAMESPACE_STR;
18938 canonical_name = 1;
18939 }
72bf9492 18940
abc72ce4
DE
18941 /* If there is no parent die to provide a namespace, and there are
18942 children, see if we can determine the namespace from their linkage
122d1940 18943 name. */
abc72ce4 18944 if (cu->language == language_cplus
5e22e966 18945 && !cu->per_objfile->per_bfd->types.empty ()
52356b79
YQ
18946 && die_parent == NULL
18947 && has_children
18948 && (tag == DW_TAG_class_type
18949 || tag == DW_TAG_structure_type
18950 || tag == DW_TAG_union_type))
18951 guess_partial_die_structure_name (this, cu);
abc72ce4 18952
53832f31
TT
18953 /* GCC might emit a nameless struct or union that has a linkage
18954 name. See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47510. */
7d00ffec 18955 if (raw_name == NULL
52356b79
YQ
18956 && (tag == DW_TAG_class_type
18957 || tag == DW_TAG_interface_type
18958 || tag == DW_TAG_structure_type
18959 || tag == DW_TAG_union_type)
18960 && linkage_name != NULL)
53832f31 18961 {
43816ebc
TT
18962 gdb::unique_xmalloc_ptr<char> demangled
18963 (gdb_demangle (linkage_name, DMGL_TYPES));
18964 if (demangled != nullptr)
53832f31 18965 {
96408a79
SA
18966 const char *base;
18967
18968 /* Strip any leading namespaces/classes, keep only the base name.
18969 DW_AT_name for named DIEs does not contain the prefixes. */
43816ebc
TT
18970 base = strrchr (demangled.get (), ':');
18971 if (base && base > demangled.get () && base[-1] == ':')
96408a79
SA
18972 base++;
18973 else
43816ebc 18974 base = demangled.get ();
96408a79 18975
5e22e966 18976 struct objfile *objfile = cu->per_objfile->objfile;
7d00ffec
TT
18977 raw_name = objfile->intern (base);
18978 canonical_name = 1;
53832f31
TT
18979 }
18980 }
18981
52356b79 18982 fixup_called = 1;
72bf9492
DJ
18983}
18984
41144253 18985/* Read the .debug_loclists header contents from the given SECTION in the
18986 HEADER. */
18987static void
18988read_loclist_header (struct loclist_header *header,
18989 struct dwarf2_section_info *section)
18990{
18991 unsigned int bytes_read;
18992 bfd *abfd = section->get_bfd_owner ();
18993 const gdb_byte *info_ptr = section->buffer;
18994 header->length = read_initial_length (abfd, info_ptr, &bytes_read);
18995 info_ptr += bytes_read;
18996 header->version = read_2_bytes (abfd, info_ptr);
18997 info_ptr += 2;
18998 header->addr_size = read_1_byte (abfd, info_ptr);
18999 info_ptr += 1;
19000 header->segment_collector_size = read_1_byte (abfd, info_ptr);
19001 info_ptr += 1;
19002 header->offset_entry_count = read_4_bytes (abfd, info_ptr);
19003}
19004
19005/* Return the DW_AT_loclists_base value for the CU. */
19006static ULONGEST
19007lookup_loclist_base (struct dwarf2_cu *cu)
19008{
19009 /* For the .dwo unit, the loclist_base points to the first offset following
19010 the header. The header consists of the following entities-
19011 1. Unit Length (4 bytes for 32 bit DWARF format, and 12 bytes for the 64
19012 bit format)
19013 2. version (2 bytes)
19014 3. address size (1 byte)
19015 4. segment selector size (1 byte)
19016 5. offset entry count (4 bytes)
19017 These sizes are derived as per the DWARFv5 standard. */
19018 if (cu->dwo_unit != nullptr)
19019 {
19020 if (cu->header.initial_length_size == 4)
19021 return LOCLIST_HEADER_SIZE32;
19022 return LOCLIST_HEADER_SIZE64;
19023 }
19024 return cu->loclist_base;
19025}
19026
19027/* Given a DW_FORM_loclistx value LOCLIST_INDEX, fetch the offset from the
19028 array of offsets in the .debug_loclists section. */
19029static CORE_ADDR
19030read_loclist_index (struct dwarf2_cu *cu, ULONGEST loclist_index)
19031{
976ca316
SM
19032 dwarf2_per_objfile *per_objfile = cu->per_objfile;
19033 struct objfile *objfile = per_objfile->objfile;
41144253 19034 bfd *abfd = objfile->obfd;
19035 ULONGEST loclist_base = lookup_loclist_base (cu);
19036 struct dwarf2_section_info *section = cu_debug_loc_section (cu);
19037
19038 section->read (objfile);
19039 if (section->buffer == NULL)
19040 complaint (_("DW_FORM_loclistx used without .debug_loclists "
19041 "section [in module %s]"), objfile_name (objfile));
19042 struct loclist_header header;
19043 read_loclist_header (&header, section);
19044 if (loclist_index >= header.offset_entry_count)
19045 complaint (_("DW_FORM_loclistx pointing outside of "
19046 ".debug_loclists offset array [in module %s]"),
19047 objfile_name (objfile));
19048 if (loclist_base + loclist_index * cu->header.offset_size
19049 >= section->size)
19050 complaint (_("DW_FORM_loclistx pointing outside of "
19051 ".debug_loclists section [in module %s]"),
19052 objfile_name (objfile));
19053 const gdb_byte *info_ptr
19054 = section->buffer + loclist_base + loclist_index * cu->header.offset_size;
19055
19056 if (cu->header.offset_size == 4)
19057 return bfd_get_32 (abfd, info_ptr) + loclist_base;
19058 else
19059 return bfd_get_64 (abfd, info_ptr) + loclist_base;
19060}
19061
18a8505e
AT
19062/* Process the attributes that had to be skipped in the first round. These
19063 attributes are the ones that need str_offsets_base or addr_base attributes.
19064 They could not have been processed in the first round, because at the time
19065 the values of str_offsets_base or addr_base may not have been known. */
f1749218
TT
19066static void
19067read_attribute_reprocess (const struct die_reader_specs *reader,
19068 struct attribute *attr)
18a8505e
AT
19069{
19070 struct dwarf2_cu *cu = reader->cu;
19071 switch (attr->form)
19072 {
19073 case DW_FORM_addrx:
19074 case DW_FORM_GNU_addr_index:
19075 DW_ADDR (attr) = read_addr_index (cu, DW_UNSND (attr));
19076 break;
41144253 19077 case DW_FORM_loclistx:
19078 DW_UNSND (attr) = read_loclist_index (cu, DW_UNSND (attr));
19079 break;
18a8505e
AT
19080 case DW_FORM_strx:
19081 case DW_FORM_strx1:
19082 case DW_FORM_strx2:
19083 case DW_FORM_strx3:
19084 case DW_FORM_strx4:
19085 case DW_FORM_GNU_str_index:
19086 {
19087 unsigned int str_index = DW_UNSND (attr);
19088 if (reader->dwo_file != NULL)
19089 {
19090 DW_STRING (attr) = read_dwo_str_index (reader, str_index);
19091 DW_STRING_IS_CANONICAL (attr) = 0;
19092 }
19093 else
19094 {
19095 DW_STRING (attr) = read_stub_str_index (cu, str_index);
19096 DW_STRING_IS_CANONICAL (attr) = 0;
19097 }
19098 break;
19099 }
19100 default:
19101 gdb_assert_not_reached (_("Unexpected DWARF form."));
19102 }
19103}
19104
a8329558 19105/* Read an attribute value described by an attribute form. */
c906108c 19106
d521ce57 19107static const gdb_byte *
dee91e82
DE
19108read_attribute_value (const struct die_reader_specs *reader,
19109 struct attribute *attr, unsigned form,
18a8505e
AT
19110 LONGEST implicit_const, const gdb_byte *info_ptr,
19111 bool *need_reprocess)
c906108c 19112{
dee91e82 19113 struct dwarf2_cu *cu = reader->cu;
976ca316
SM
19114 dwarf2_per_objfile *per_objfile = cu->per_objfile;
19115 struct objfile *objfile = per_objfile->objfile;
dee91e82 19116 bfd *abfd = reader->abfd;
e7c27a73 19117 struct comp_unit_head *cu_header = &cu->header;
c906108c
SS
19118 unsigned int bytes_read;
19119 struct dwarf_block *blk;
18a8505e 19120 *need_reprocess = false;
c906108c 19121
aead7601 19122 attr->form = (enum dwarf_form) form;
a8329558 19123 switch (form)
c906108c 19124 {
c906108c 19125 case DW_FORM_ref_addr:
ae411497 19126 if (cu->header.version == 2)
c8a7a66f
TT
19127 DW_UNSND (attr) = cu->header.read_address (abfd, info_ptr,
19128 &bytes_read);
ae411497 19129 else
8266302d
TT
19130 DW_UNSND (attr) = cu->header.read_offset (abfd, info_ptr,
19131 &bytes_read);
ae411497
TT
19132 info_ptr += bytes_read;
19133 break;
36586728 19134 case DW_FORM_GNU_ref_alt:
8266302d 19135 DW_UNSND (attr) = cu->header.read_offset (abfd, info_ptr, &bytes_read);
36586728
TT
19136 info_ptr += bytes_read;
19137 break;
ae411497 19138 case DW_FORM_addr:
08feed99
TT
19139 {
19140 struct gdbarch *gdbarch = objfile->arch ();
19141 DW_ADDR (attr) = cu->header.read_address (abfd, info_ptr, &bytes_read);
19142 DW_ADDR (attr) = gdbarch_adjust_dwarf2_addr (gdbarch, DW_ADDR (attr));
19143 info_ptr += bytes_read;
19144 }
c906108c
SS
19145 break;
19146 case DW_FORM_block2:
7b5a2f43 19147 blk = dwarf_alloc_block (cu);
c906108c
SS
19148 blk->size = read_2_bytes (abfd, info_ptr);
19149 info_ptr += 2;
19150 blk->data = read_n_bytes (abfd, info_ptr, blk->size);
19151 info_ptr += blk->size;
19152 DW_BLOCK (attr) = blk;
19153 break;
19154 case DW_FORM_block4:
7b5a2f43 19155 blk = dwarf_alloc_block (cu);
c906108c
SS
19156 blk->size = read_4_bytes (abfd, info_ptr);
19157 info_ptr += 4;
19158 blk->data = read_n_bytes (abfd, info_ptr, blk->size);
19159 info_ptr += blk->size;
19160 DW_BLOCK (attr) = blk;
19161 break;
19162 case DW_FORM_data2:
19163 DW_UNSND (attr) = read_2_bytes (abfd, info_ptr);
19164 info_ptr += 2;
19165 break;
19166 case DW_FORM_data4:
19167 DW_UNSND (attr) = read_4_bytes (abfd, info_ptr);
19168 info_ptr += 4;
19169 break;
19170 case DW_FORM_data8:
19171 DW_UNSND (attr) = read_8_bytes (abfd, info_ptr);
19172 info_ptr += 8;
19173 break;
0224619f
JK
19174 case DW_FORM_data16:
19175 blk = dwarf_alloc_block (cu);
19176 blk->size = 16;
19177 blk->data = read_n_bytes (abfd, info_ptr, 16);
19178 info_ptr += 16;
19179 DW_BLOCK (attr) = blk;
19180 break;
2dc7f7b3 19181 case DW_FORM_sec_offset:
8266302d 19182 DW_UNSND (attr) = cu->header.read_offset (abfd, info_ptr, &bytes_read);
2dc7f7b3
TT
19183 info_ptr += bytes_read;
19184 break;
41144253 19185 case DW_FORM_loclistx:
19186 {
19187 *need_reprocess = true;
19188 DW_UNSND (attr) = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
19189 info_ptr += bytes_read;
19190 }
19191 break;
c906108c 19192 case DW_FORM_string:
9b1c24c8 19193 DW_STRING (attr) = read_direct_string (abfd, info_ptr, &bytes_read);
8285870a 19194 DW_STRING_IS_CANONICAL (attr) = 0;
c906108c
SS
19195 info_ptr += bytes_read;
19196 break;
4bdf3d34 19197 case DW_FORM_strp:
36586728
TT
19198 if (!cu->per_cu->is_dwz)
19199 {
976ca316 19200 DW_STRING (attr) = read_indirect_string (per_objfile,
ed2dc618 19201 abfd, info_ptr, cu_header,
36586728
TT
19202 &bytes_read);
19203 DW_STRING_IS_CANONICAL (attr) = 0;
19204 info_ptr += bytes_read;
19205 break;
19206 }
19207 /* FALLTHROUGH */
43988095
JK
19208 case DW_FORM_line_strp:
19209 if (!cu->per_cu->is_dwz)
19210 {
976ca316
SM
19211 DW_STRING (attr) = per_objfile->read_line_string (info_ptr, cu_header,
19212 &bytes_read);
43988095
JK
19213 DW_STRING_IS_CANONICAL (attr) = 0;
19214 info_ptr += bytes_read;
19215 break;
19216 }
19217 /* FALLTHROUGH */
36586728
TT
19218 case DW_FORM_GNU_strp_alt:
19219 {
976ca316 19220 dwz_file *dwz = dwarf2_get_dwz_file (per_objfile->per_bfd);
8266302d
TT
19221 LONGEST str_offset = cu_header->read_offset (abfd, info_ptr,
19222 &bytes_read);
36586728 19223
0314b390 19224 DW_STRING (attr) = dwz->read_string (objfile, str_offset);
36586728
TT
19225 DW_STRING_IS_CANONICAL (attr) = 0;
19226 info_ptr += bytes_read;
19227 }
4bdf3d34 19228 break;
2dc7f7b3 19229 case DW_FORM_exprloc:
c906108c 19230 case DW_FORM_block:
7b5a2f43 19231 blk = dwarf_alloc_block (cu);
c906108c
SS
19232 blk->size = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
19233 info_ptr += bytes_read;
19234 blk->data = read_n_bytes (abfd, info_ptr, blk->size);
19235 info_ptr += blk->size;
19236 DW_BLOCK (attr) = blk;
19237 break;
19238 case DW_FORM_block1:
7b5a2f43 19239 blk = dwarf_alloc_block (cu);
c906108c
SS
19240 blk->size = read_1_byte (abfd, info_ptr);
19241 info_ptr += 1;
19242 blk->data = read_n_bytes (abfd, info_ptr, blk->size);
19243 info_ptr += blk->size;
19244 DW_BLOCK (attr) = blk;
19245 break;
19246 case DW_FORM_data1:
19247 DW_UNSND (attr) = read_1_byte (abfd, info_ptr);
19248 info_ptr += 1;
19249 break;
19250 case DW_FORM_flag:
19251 DW_UNSND (attr) = read_1_byte (abfd, info_ptr);
19252 info_ptr += 1;
19253 break;
2dc7f7b3
TT
19254 case DW_FORM_flag_present:
19255 DW_UNSND (attr) = 1;
19256 break;
c906108c
SS
19257 case DW_FORM_sdata:
19258 DW_SND (attr) = read_signed_leb128 (abfd, info_ptr, &bytes_read);
19259 info_ptr += bytes_read;
19260 break;
19261 case DW_FORM_udata:
18a8505e 19262 case DW_FORM_rnglistx:
c906108c
SS
19263 DW_UNSND (attr) = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
19264 info_ptr += bytes_read;
19265 break;
19266 case DW_FORM_ref1:
9c541725 19267 DW_UNSND (attr) = (to_underlying (cu->header.sect_off)
4568ecf9 19268 + read_1_byte (abfd, info_ptr));
c906108c
SS
19269 info_ptr += 1;
19270 break;
19271 case DW_FORM_ref2:
9c541725 19272 DW_UNSND (attr) = (to_underlying (cu->header.sect_off)
4568ecf9 19273 + read_2_bytes (abfd, info_ptr));
c906108c
SS
19274 info_ptr += 2;
19275 break;
19276 case DW_FORM_ref4:
9c541725 19277 DW_UNSND (attr) = (to_underlying (cu->header.sect_off)
4568ecf9 19278 + read_4_bytes (abfd, info_ptr));
c906108c
SS
19279 info_ptr += 4;
19280 break;
613e1657 19281 case DW_FORM_ref8:
9c541725 19282 DW_UNSND (attr) = (to_underlying (cu->header.sect_off)
4568ecf9 19283 + read_8_bytes (abfd, info_ptr));
613e1657
KB
19284 info_ptr += 8;
19285 break;
55f1336d 19286 case DW_FORM_ref_sig8:
ac9ec31b 19287 DW_SIGNATURE (attr) = read_8_bytes (abfd, info_ptr);
348e048f
DE
19288 info_ptr += 8;
19289 break;
c906108c 19290 case DW_FORM_ref_udata:
9c541725 19291 DW_UNSND (attr) = (to_underlying (cu->header.sect_off)
4568ecf9 19292 + read_unsigned_leb128 (abfd, info_ptr, &bytes_read));
c906108c
SS
19293 info_ptr += bytes_read;
19294 break;
c906108c 19295 case DW_FORM_indirect:
a8329558
KW
19296 form = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
19297 info_ptr += bytes_read;
43988095
JK
19298 if (form == DW_FORM_implicit_const)
19299 {
19300 implicit_const = read_signed_leb128 (abfd, info_ptr, &bytes_read);
19301 info_ptr += bytes_read;
19302 }
19303 info_ptr = read_attribute_value (reader, attr, form, implicit_const,
18a8505e 19304 info_ptr, need_reprocess);
43988095
JK
19305 break;
19306 case DW_FORM_implicit_const:
19307 DW_SND (attr) = implicit_const;
a8329558 19308 break;
336d760d 19309 case DW_FORM_addrx:
3019eac3 19310 case DW_FORM_GNU_addr_index:
18a8505e
AT
19311 *need_reprocess = true;
19312 DW_UNSND (attr) = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
3019eac3
DE
19313 info_ptr += bytes_read;
19314 break;
cf532bd1 19315 case DW_FORM_strx:
15f18d14
AT
19316 case DW_FORM_strx1:
19317 case DW_FORM_strx2:
19318 case DW_FORM_strx3:
19319 case DW_FORM_strx4:
3019eac3 19320 case DW_FORM_GNU_str_index:
3019eac3 19321 {
15f18d14
AT
19322 ULONGEST str_index;
19323 if (form == DW_FORM_strx1)
19324 {
19325 str_index = read_1_byte (abfd, info_ptr);
19326 info_ptr += 1;
19327 }
19328 else if (form == DW_FORM_strx2)
19329 {
19330 str_index = read_2_bytes (abfd, info_ptr);
19331 info_ptr += 2;
19332 }
19333 else if (form == DW_FORM_strx3)
19334 {
19335 str_index = read_3_bytes (abfd, info_ptr);
19336 info_ptr += 3;
19337 }
19338 else if (form == DW_FORM_strx4)
19339 {
19340 str_index = read_4_bytes (abfd, info_ptr);
19341 info_ptr += 4;
19342 }
19343 else
19344 {
19345 str_index = read_unsigned_leb128 (abfd, info_ptr, &bytes_read);
19346 info_ptr += bytes_read;
19347 }
18a8505e
AT
19348 *need_reprocess = true;
19349 DW_UNSND (attr) = str_index;
19350 }
3019eac3 19351 break;
c906108c 19352 default:
8a3fe4f8 19353 error (_("Dwarf Error: Cannot handle %s in DWARF reader [in module %s]"),
659b0389
ML
19354 dwarf_form_name (form),
19355 bfd_get_filename (abfd));
c906108c 19356 }
28e94949 19357
36586728 19358 /* Super hack. */
cd6c91b4 19359 if (cu->per_cu->is_dwz && attr->form_is_ref ())
36586728
TT
19360 attr->form = DW_FORM_GNU_ref_alt;
19361
28e94949
JB
19362 /* We have seen instances where the compiler tried to emit a byte
19363 size attribute of -1 which ended up being encoded as an unsigned
19364 0xffffffff. Although 0xffffffff is technically a valid size value,
19365 an object of this size seems pretty unlikely so we can relatively
19366 safely treat these cases as if the size attribute was invalid and
19367 treat them as zero by default. */
19368 if (attr->name == DW_AT_byte_size
19369 && form == DW_FORM_data4
19370 && DW_UNSND (attr) >= 0xffffffff)
01c66ae6
JB
19371 {
19372 complaint
b98664d3 19373 (_("Suspicious DW_AT_byte_size value treated as zero instead of %s"),
43bbcdc2 19374 hex_string (DW_UNSND (attr)));
01c66ae6
JB
19375 DW_UNSND (attr) = 0;
19376 }
28e94949 19377
c906108c
SS
19378 return info_ptr;
19379}
19380
a8329558
KW
19381/* Read an attribute described by an abbreviated attribute. */
19382
d521ce57 19383static const gdb_byte *
dee91e82
DE
19384read_attribute (const struct die_reader_specs *reader,
19385 struct attribute *attr, struct attr_abbrev *abbrev,
18a8505e 19386 const gdb_byte *info_ptr, bool *need_reprocess)
a8329558
KW
19387{
19388 attr->name = abbrev->name;
43988095 19389 return read_attribute_value (reader, attr, abbrev->form,
18a8505e
AT
19390 abbrev->implicit_const, info_ptr,
19391 need_reprocess);
a8329558
KW
19392}
19393
43988095
JK
19394/* Return pointer to string at .debug_str offset STR_OFFSET. */
19395
19396static const char *
976ca316 19397read_indirect_string_at_offset (dwarf2_per_objfile *per_objfile,
4f44ae6c 19398 LONGEST str_offset)
43988095 19399{
976ca316
SM
19400 return per_objfile->per_bfd->str.read_string (per_objfile->objfile,
19401 str_offset, "DW_FORM_strp");
c906108c
SS
19402}
19403
43988095
JK
19404/* Return pointer to string at .debug_str offset as read from BUF.
19405 BUF is assumed to be in a compilation unit described by CU_HEADER.
19406 Return *BYTES_READ_PTR count of bytes read from BUF. */
19407
d521ce57 19408static const char *
976ca316 19409read_indirect_string (dwarf2_per_objfile *per_objfile, bfd *abfd,
ed2dc618 19410 const gdb_byte *buf,
cf2c3c16
TT
19411 const struct comp_unit_head *cu_header,
19412 unsigned int *bytes_read_ptr)
19413{
8266302d 19414 LONGEST str_offset = cu_header->read_offset (abfd, buf, bytes_read_ptr);
cf2c3c16 19415
976ca316 19416 return read_indirect_string_at_offset (per_objfile, str_offset);
cf2c3c16
TT
19417}
19418
86c0bb4c 19419/* See read.h. */
43988095 19420
86c0bb4c
TT
19421const char *
19422dwarf2_per_objfile::read_line_string (const gdb_byte *buf,
5989a64e
SM
19423 const struct comp_unit_head *cu_header,
19424 unsigned int *bytes_read_ptr)
43988095 19425{
86c0bb4c 19426 bfd *abfd = objfile->obfd;
8266302d 19427 LONGEST str_offset = cu_header->read_offset (abfd, buf, bytes_read_ptr);
43988095 19428
5989a64e 19429 return per_bfd->line_str.read_string (objfile, str_offset, "DW_FORM_line_strp");
43988095
JK
19430}
19431
3019eac3 19432/* Given index ADDR_INDEX in .debug_addr, fetch the value.
18a8505e 19433 ADDR_BASE is the DW_AT_addr_base (DW_AT_GNU_addr_base) attribute or zero.
3019eac3
DE
19434 ADDR_SIZE is the size of addresses from the CU header. */
19435
19436static CORE_ADDR
976ca316
SM
19437read_addr_index_1 (dwarf2_per_objfile *per_objfile, unsigned int addr_index,
19438 gdb::optional<ULONGEST> addr_base, int addr_size)
3019eac3 19439{
976ca316 19440 struct objfile *objfile = per_objfile->objfile;
3019eac3
DE
19441 bfd *abfd = objfile->obfd;
19442 const gdb_byte *info_ptr;
18a8505e 19443 ULONGEST addr_base_or_zero = addr_base.has_value () ? *addr_base : 0;
3019eac3 19444
976ca316
SM
19445 per_objfile->per_bfd->addr.read (objfile);
19446 if (per_objfile->per_bfd->addr.buffer == NULL)
3019eac3 19447 error (_("DW_FORM_addr_index used without .debug_addr section [in module %s]"),
4262abfb 19448 objfile_name (objfile));
18a8505e 19449 if (addr_base_or_zero + addr_index * addr_size
976ca316 19450 >= per_objfile->per_bfd->addr.size)
3019eac3
DE
19451 error (_("DW_FORM_addr_index pointing outside of "
19452 ".debug_addr section [in module %s]"),
4262abfb 19453 objfile_name (objfile));
976ca316
SM
19454 info_ptr = (per_objfile->per_bfd->addr.buffer + addr_base_or_zero
19455 + addr_index * addr_size);
3019eac3
DE
19456 if (addr_size == 4)
19457 return bfd_get_32 (abfd, info_ptr);
19458 else
19459 return bfd_get_64 (abfd, info_ptr);
19460}
19461
19462/* Given index ADDR_INDEX in .debug_addr, fetch the value. */
19463
19464static CORE_ADDR
19465read_addr_index (struct dwarf2_cu *cu, unsigned int addr_index)
19466{
5e22e966 19467 return read_addr_index_1 (cu->per_objfile, addr_index,
518817b3 19468 cu->addr_base, cu->header.addr_size);
3019eac3
DE
19469}
19470
19471/* Given a pointer to an leb128 value, fetch the value from .debug_addr. */
19472
19473static CORE_ADDR
d521ce57 19474read_addr_index_from_leb128 (struct dwarf2_cu *cu, const gdb_byte *info_ptr,
3019eac3
DE
19475 unsigned int *bytes_read)
19476{
5e22e966 19477 bfd *abfd = cu->per_objfile->objfile->obfd;
3019eac3
DE
19478 unsigned int addr_index = read_unsigned_leb128 (abfd, info_ptr, bytes_read);
19479
19480 return read_addr_index (cu, addr_index);
19481}
19482
450a1bfc 19483/* See read.h. */
3019eac3
DE
19484
19485CORE_ADDR
82ca3f51 19486dwarf2_read_addr_index (dwarf2_per_cu_data *per_cu,
976ca316 19487 dwarf2_per_objfile *per_objfile,
82ca3f51 19488 unsigned int addr_index)
3019eac3 19489{
976ca316 19490 struct dwarf2_cu *cu = per_objfile->get_cu (per_cu);
18a8505e 19491 gdb::optional<ULONGEST> addr_base;
3019eac3
DE
19492 int addr_size;
19493
3019eac3
DE
19494 /* We need addr_base and addr_size.
19495 If we don't have PER_CU->cu, we have to get it.
19496 Nasty, but the alternative is storing the needed info in PER_CU,
19497 which at this point doesn't seem justified: it's not clear how frequently
19498 it would get used and it would increase the size of every PER_CU.
19499 Entry points like dwarf2_per_cu_addr_size do a similar thing
19500 so we're not in uncharted territory here.
19501 Alas we need to be a bit more complicated as addr_base is contained
19502 in the DIE.
19503
19504 We don't need to read the entire CU(/TU).
19505 We just need the header and top level die.
a1b64ce1 19506
3019eac3 19507 IWBN to use the aging mechanism to let us lazily later discard the CU.
a1b64ce1 19508 For now we skip this optimization. */
3019eac3
DE
19509
19510 if (cu != NULL)
19511 {
19512 addr_base = cu->addr_base;
19513 addr_size = cu->header.addr_size;
19514 }
19515 else
19516 {
976ca316 19517 cutu_reader reader (per_cu, per_objfile, nullptr, nullptr, false);
c0ab21c2
TT
19518 addr_base = reader.cu->addr_base;
19519 addr_size = reader.cu->header.addr_size;
3019eac3
DE
19520 }
19521
976ca316 19522 return read_addr_index_1 (per_objfile, addr_index, addr_base, addr_size);
3019eac3
DE
19523}
19524
18a8505e
AT
19525/* Given a DW_FORM_GNU_str_index value STR_INDEX, fetch the string.
19526 STR_SECTION, STR_OFFSETS_SECTION can be from a Fission stub or a
19527 DWO file. */
3019eac3 19528
d521ce57 19529static const char *
18a8505e
AT
19530read_str_index (struct dwarf2_cu *cu,
19531 struct dwarf2_section_info *str_section,
19532 struct dwarf2_section_info *str_offsets_section,
19533 ULONGEST str_offsets_base, ULONGEST str_index)
3019eac3 19534{
976ca316
SM
19535 dwarf2_per_objfile *per_objfile = cu->per_objfile;
19536 struct objfile *objfile = per_objfile->objfile;
c5164cbc 19537 const char *objf_name = objfile_name (objfile);
3019eac3 19538 bfd *abfd = objfile->obfd;
d521ce57 19539 const gdb_byte *info_ptr;
3019eac3 19540 ULONGEST str_offset;
cf532bd1 19541 static const char form_name[] = "DW_FORM_GNU_str_index or DW_FORM_strx";
3019eac3 19542
96b79293
TT
19543 str_section->read (objfile);
19544 str_offsets_section->read (objfile);
73869dc2 19545 if (str_section->buffer == NULL)
18a8505e 19546 error (_("%s used without %s section"
9d8780f0 19547 " in CU at offset %s [in module %s]"),
96b79293 19548 form_name, str_section->get_name (),
18a8505e 19549 sect_offset_str (cu->header.sect_off), objf_name);
73869dc2 19550 if (str_offsets_section->buffer == NULL)
18a8505e 19551 error (_("%s used without %s section"
9d8780f0 19552 " in CU at offset %s [in module %s]"),
96b79293 19553 form_name, str_section->get_name (),
18a8505e 19554 sect_offset_str (cu->header.sect_off), objf_name);
73869dc2 19555 info_ptr = (str_offsets_section->buffer
18a8505e 19556 + str_offsets_base
3019eac3
DE
19557 + str_index * cu->header.offset_size);
19558 if (cu->header.offset_size == 4)
19559 str_offset = bfd_get_32 (abfd, info_ptr);
19560 else
19561 str_offset = bfd_get_64 (abfd, info_ptr);
73869dc2 19562 if (str_offset >= str_section->size)
57d63ce2 19563 error (_("Offset from %s pointing outside of"
9d8780f0
SM
19564 " .debug_str.dwo section in CU at offset %s [in module %s]"),
19565 form_name, sect_offset_str (cu->header.sect_off), objf_name);
73869dc2 19566 return (const char *) (str_section->buffer + str_offset);
3019eac3
DE
19567}
19568
18a8505e
AT
19569/* Given a DW_FORM_GNU_str_index from a DWO file, fetch the string. */
19570
19571static const char *
19572read_dwo_str_index (const struct die_reader_specs *reader, ULONGEST str_index)
19573{
19574 ULONGEST str_offsets_base = reader->cu->header.version >= 5
19575 ? reader->cu->header.addr_size : 0;
19576 return read_str_index (reader->cu,
19577 &reader->dwo_file->sections.str,
19578 &reader->dwo_file->sections.str_offsets,
19579 str_offsets_base, str_index);
19580}
19581
19582/* Given a DW_FORM_GNU_str_index from a Fission stub, fetch the string. */
19583
19584static const char *
19585read_stub_str_index (struct dwarf2_cu *cu, ULONGEST str_index)
19586{
5e22e966 19587 struct objfile *objfile = cu->per_objfile->objfile;
18a8505e
AT
19588 const char *objf_name = objfile_name (objfile);
19589 static const char form_name[] = "DW_FORM_GNU_str_index";
19590 static const char str_offsets_attr_name[] = "DW_AT_str_offsets";
19591
19592 if (!cu->str_offsets_base.has_value ())
19593 error (_("%s used in Fission stub without %s"
19594 " in CU at offset 0x%lx [in module %s]"),
19595 form_name, str_offsets_attr_name,
19596 (long) cu->header.offset_size, objf_name);
19597
19598 return read_str_index (cu,
5e22e966
SM
19599 &cu->per_objfile->per_bfd->str,
19600 &cu->per_objfile->per_bfd->str_offsets,
18a8505e
AT
19601 *cu->str_offsets_base, str_index);
19602}
19603
3019eac3
DE
19604/* Return the length of an LEB128 number in BUF. */
19605
19606static int
19607leb128_size (const gdb_byte *buf)
19608{
19609 const gdb_byte *begin = buf;
19610 gdb_byte byte;
19611
19612 while (1)
19613 {
19614 byte = *buf++;
19615 if ((byte & 128) == 0)
19616 return buf - begin;
19617 }
19618}
19619
c906108c 19620static void
e142c38c 19621set_cu_language (unsigned int lang, struct dwarf2_cu *cu)
c906108c
SS
19622{
19623 switch (lang)
19624 {
19625 case DW_LANG_C89:
76bee0cc 19626 case DW_LANG_C99:
0cfd832f 19627 case DW_LANG_C11:
c906108c 19628 case DW_LANG_C:
d1be3247 19629 case DW_LANG_UPC:
e142c38c 19630 cu->language = language_c;
c906108c 19631 break;
9c37b5ae 19632 case DW_LANG_Java:
c906108c 19633 case DW_LANG_C_plus_plus:
0cfd832f
MW
19634 case DW_LANG_C_plus_plus_11:
19635 case DW_LANG_C_plus_plus_14:
e142c38c 19636 cu->language = language_cplus;
c906108c 19637 break;
6aecb9c2
JB
19638 case DW_LANG_D:
19639 cu->language = language_d;
19640 break;
c906108c
SS
19641 case DW_LANG_Fortran77:
19642 case DW_LANG_Fortran90:
b21b22e0 19643 case DW_LANG_Fortran95:
f7de9aab
MW
19644 case DW_LANG_Fortran03:
19645 case DW_LANG_Fortran08:
e142c38c 19646 cu->language = language_fortran;
c906108c 19647 break;
a766d390
DE
19648 case DW_LANG_Go:
19649 cu->language = language_go;
19650 break;
c906108c 19651 case DW_LANG_Mips_Assembler:
e142c38c 19652 cu->language = language_asm;
c906108c
SS
19653 break;
19654 case DW_LANG_Ada83:
8aaf0b47 19655 case DW_LANG_Ada95:
bc5f45f8
JB
19656 cu->language = language_ada;
19657 break;
72019c9c
GM
19658 case DW_LANG_Modula2:
19659 cu->language = language_m2;
19660 break;
fe8e67fd
PM
19661 case DW_LANG_Pascal83:
19662 cu->language = language_pascal;
19663 break;
22566fbd
DJ
19664 case DW_LANG_ObjC:
19665 cu->language = language_objc;
19666 break;
c44af4eb
TT
19667 case DW_LANG_Rust:
19668 case DW_LANG_Rust_old:
19669 cu->language = language_rust;
19670 break;
c906108c
SS
19671 case DW_LANG_Cobol74:
19672 case DW_LANG_Cobol85:
c906108c 19673 default:
e142c38c 19674 cu->language = language_minimal;
c906108c
SS
19675 break;
19676 }
e142c38c 19677 cu->language_defn = language_def (cu->language);
c906108c
SS
19678}
19679
19680/* Return the named attribute or NULL if not there. */
19681
19682static struct attribute *
e142c38c 19683dwarf2_attr (struct die_info *die, unsigned int name, struct dwarf2_cu *cu)
c906108c 19684{
a48e046c 19685 for (;;)
c906108c 19686 {
a48e046c
TT
19687 unsigned int i;
19688 struct attribute *spec = NULL;
19689
19690 for (i = 0; i < die->num_attrs; ++i)
19691 {
19692 if (die->attrs[i].name == name)
19693 return &die->attrs[i];
19694 if (die->attrs[i].name == DW_AT_specification
19695 || die->attrs[i].name == DW_AT_abstract_origin)
19696 spec = &die->attrs[i];
19697 }
19698
19699 if (!spec)
19700 break;
c906108c 19701
f2f0e013 19702 die = follow_die_ref (die, spec, &cu);
f2f0e013 19703 }
c5aa993b 19704
c906108c
SS
19705 return NULL;
19706}
19707
7d45c7c3
KB
19708/* Return the string associated with a string-typed attribute, or NULL if it
19709 is either not found or is of an incorrect type. */
19710
19711static const char *
19712dwarf2_string_attr (struct die_info *die, unsigned int name, struct dwarf2_cu *cu)
19713{
19714 struct attribute *attr;
19715 const char *str = NULL;
19716
19717 attr = dwarf2_attr (die, name, cu);
19718
19719 if (attr != NULL)
19720 {
e61108c9
TT
19721 str = attr->value_as_string ();
19722 if (str == nullptr)
b98664d3 19723 complaint (_("string type expected for attribute %s for "
9d8780f0
SM
19724 "DIE at %s in module %s"),
19725 dwarf_attr_name (name), sect_offset_str (die->sect_off),
5e22e966 19726 objfile_name (cu->per_objfile->objfile));
7d45c7c3
KB
19727 }
19728
19729 return str;
19730}
19731
a084a2a6 19732/* Return the dwo name or NULL if not present. If present, it is in either
85102364 19733 DW_AT_GNU_dwo_name or DW_AT_dwo_name attribute. */
a084a2a6
AT
19734static const char *
19735dwarf2_dwo_name (struct die_info *die, struct dwarf2_cu *cu)
19736{
19737 const char *dwo_name = dwarf2_string_attr (die, DW_AT_GNU_dwo_name, cu);
19738 if (dwo_name == nullptr)
19739 dwo_name = dwarf2_string_attr (die, DW_AT_dwo_name, cu);
19740 return dwo_name;
19741}
19742
05cf31d1
JB
19743/* Return non-zero iff the attribute NAME is defined for the given DIE,
19744 and holds a non-zero value. This function should only be used for
2dc7f7b3 19745 DW_FORM_flag or DW_FORM_flag_present attributes. */
05cf31d1
JB
19746
19747static int
19748dwarf2_flag_true_p (struct die_info *die, unsigned name, struct dwarf2_cu *cu)
19749{
19750 struct attribute *attr = dwarf2_attr (die, name, cu);
19751
19752 return (attr && DW_UNSND (attr));
19753}
19754
3ca72b44 19755static int
e142c38c 19756die_is_declaration (struct die_info *die, struct dwarf2_cu *cu)
3ca72b44 19757{
05cf31d1
JB
19758 /* A DIE is a declaration if it has a DW_AT_declaration attribute
19759 which value is non-zero. However, we have to be careful with
19760 DIEs having a DW_AT_specification attribute, because dwarf2_attr()
19761 (via dwarf2_flag_true_p) follows this attribute. So we may
19762 end up accidently finding a declaration attribute that belongs
19763 to a different DIE referenced by the specification attribute,
19764 even though the given DIE does not have a declaration attribute. */
19765 return (dwarf2_flag_true_p (die, DW_AT_declaration, cu)
19766 && dwarf2_attr (die, DW_AT_specification, cu) == NULL);
3ca72b44
AC
19767}
19768
63d06c5c 19769/* Return the die giving the specification for DIE, if there is
f2f0e013 19770 one. *SPEC_CU is the CU containing DIE on input, and the CU
edb3359d
DJ
19771 containing the return value on output. If there is no
19772 specification, but there is an abstract origin, that is
19773 returned. */
63d06c5c
DC
19774
19775static struct die_info *
f2f0e013 19776die_specification (struct die_info *die, struct dwarf2_cu **spec_cu)
63d06c5c 19777{
f2f0e013
DJ
19778 struct attribute *spec_attr = dwarf2_attr (die, DW_AT_specification,
19779 *spec_cu);
63d06c5c 19780
edb3359d
DJ
19781 if (spec_attr == NULL)
19782 spec_attr = dwarf2_attr (die, DW_AT_abstract_origin, *spec_cu);
19783
63d06c5c
DC
19784 if (spec_attr == NULL)
19785 return NULL;
19786 else
f2f0e013 19787 return follow_die_ref (die, spec_attr, spec_cu);
63d06c5c 19788}
c906108c 19789
527f3840
JK
19790/* Stub for free_line_header to match void * callback types. */
19791
19792static void
19793free_line_header_voidp (void *arg)
19794{
9a3c8263 19795 struct line_header *lh = (struct line_header *) arg;
527f3840 19796
fff8551c 19797 delete lh;
527f3840
JK
19798}
19799
83769d0b 19800/* A convenience function to find the proper .debug_line section for a CU. */
36586728
TT
19801
19802static struct dwarf2_section_info *
19803get_debug_line_section (struct dwarf2_cu *cu)
19804{
19805 struct dwarf2_section_info *section;
976ca316 19806 dwarf2_per_objfile *per_objfile = cu->per_objfile;
36586728
TT
19807
19808 /* For TUs in DWO files, the DW_AT_stmt_list attribute lives in the
19809 DWO file. */
19810 if (cu->dwo_unit && cu->per_cu->is_debug_types)
19811 section = &cu->dwo_unit->dwo_file->sections.line;
19812 else if (cu->per_cu->is_dwz)
19813 {
976ca316 19814 dwz_file *dwz = dwarf2_get_dwz_file (per_objfile->per_bfd);
36586728
TT
19815
19816 section = &dwz->line;
19817 }
19818 else
976ca316 19819 section = &per_objfile->per_bfd->line;
36586728
TT
19820
19821 return section;
19822}
19823
debd256d 19824/* Read the statement program header starting at OFFSET in
3019eac3 19825 .debug_line, or .debug_line.dwo. Return a pointer
6502dd73 19826 to a struct line_header, allocated using xmalloc.
cd366ee8
DE
19827 Returns NULL if there is a problem reading the header, e.g., if it
19828 has a version we don't understand.
debd256d
JB
19829
19830 NOTE: the strings in the include directory and file name tables of
3019eac3
DE
19831 the returned object point into the dwarf line section buffer,
19832 and must not be freed. */
ae2de4f8 19833
fff8551c 19834static line_header_up
9c541725 19835dwarf_decode_line_header (sect_offset sect_off, struct dwarf2_cu *cu)
debd256d 19836{
3019eac3 19837 struct dwarf2_section_info *section;
976ca316 19838 dwarf2_per_objfile *per_objfile = cu->per_objfile;
3019eac3 19839
36586728 19840 section = get_debug_line_section (cu);
976ca316 19841 section->read (per_objfile->objfile);
3019eac3 19842 if (section->buffer == NULL)
debd256d 19843 {
3019eac3 19844 if (cu->dwo_unit && cu->per_cu->is_debug_types)
b98664d3 19845 complaint (_("missing .debug_line.dwo section"));
3019eac3 19846 else
b98664d3 19847 complaint (_("missing .debug_line section"));
debd256d
JB
19848 return 0;
19849 }
19850
0df7ad3a 19851 return dwarf_decode_line_header (sect_off, cu->per_cu->is_dwz,
976ca316 19852 per_objfile, section, &cu->header);
debd256d 19853}
c906108c 19854
c6da4cef 19855/* Subroutine of dwarf_decode_lines to simplify it.
7ba99d21 19856 Return the file name of the psymtab for the given file_entry.
c6da4cef 19857 COMP_DIR is the compilation directory (DW_AT_comp_dir) or NULL if unknown.
c89b44cd
TT
19858 If space for the result is malloc'd, *NAME_HOLDER will be set.
19859 Returns NULL if FILE_INDEX should be ignored, i.e., it is pst->filename. */
c6da4cef 19860
d521ce57 19861static const char *
7ba99d21 19862psymtab_include_file_name (const struct line_header *lh, const file_entry &fe,
891813be 19863 const dwarf2_psymtab *pst,
c89b44cd
TT
19864 const char *comp_dir,
19865 gdb::unique_xmalloc_ptr<char> *name_holder)
c6da4cef 19866{
d521ce57
TT
19867 const char *include_name = fe.name;
19868 const char *include_name_to_compare = include_name;
72b9f47f 19869 const char *pst_filename;
c6da4cef
DE
19870 int file_is_pst;
19871
8c43009f 19872 const char *dir_name = fe.include_dir (lh);
c6da4cef 19873
c89b44cd 19874 gdb::unique_xmalloc_ptr<char> hold_compare;
c6da4cef
DE
19875 if (!IS_ABSOLUTE_PATH (include_name)
19876 && (dir_name != NULL || comp_dir != NULL))
19877 {
19878 /* Avoid creating a duplicate psymtab for PST.
19879 We do this by comparing INCLUDE_NAME and PST_FILENAME.
19880 Before we do the comparison, however, we need to account
19881 for DIR_NAME and COMP_DIR.
19882 First prepend dir_name (if non-NULL). If we still don't
19883 have an absolute path prepend comp_dir (if non-NULL).
19884 However, the directory we record in the include-file's
19885 psymtab does not contain COMP_DIR (to match the
19886 corresponding symtab(s)).
19887
19888 Example:
19889
19890 bash$ cd /tmp
19891 bash$ gcc -g ./hello.c
19892 include_name = "hello.c"
19893 dir_name = "."
19894 DW_AT_comp_dir = comp_dir = "/tmp"
5f52445b
YQ
19895 DW_AT_name = "./hello.c"
19896
19897 */
c6da4cef
DE
19898
19899 if (dir_name != NULL)
19900 {
c89b44cd
TT
19901 name_holder->reset (concat (dir_name, SLASH_STRING,
19902 include_name, (char *) NULL));
19903 include_name = name_holder->get ();
c6da4cef 19904 include_name_to_compare = include_name;
c6da4cef
DE
19905 }
19906 if (!IS_ABSOLUTE_PATH (include_name) && comp_dir != NULL)
19907 {
c89b44cd
TT
19908 hold_compare.reset (concat (comp_dir, SLASH_STRING,
19909 include_name, (char *) NULL));
19910 include_name_to_compare = hold_compare.get ();
c6da4cef
DE
19911 }
19912 }
19913
19914 pst_filename = pst->filename;
c89b44cd 19915 gdb::unique_xmalloc_ptr<char> copied_name;
c6da4cef
DE
19916 if (!IS_ABSOLUTE_PATH (pst_filename) && pst->dirname != NULL)
19917 {
c89b44cd
TT
19918 copied_name.reset (concat (pst->dirname, SLASH_STRING,
19919 pst_filename, (char *) NULL));
19920 pst_filename = copied_name.get ();
c6da4cef
DE
19921 }
19922
1e3fad37 19923 file_is_pst = FILENAME_CMP (include_name_to_compare, pst_filename) == 0;
c6da4cef 19924
c6da4cef
DE
19925 if (file_is_pst)
19926 return NULL;
19927 return include_name;
19928}
19929
d9b3de22
DE
19930/* State machine to track the state of the line number program. */
19931
6f77053d 19932class lnp_state_machine
d9b3de22 19933{
6f77053d
PA
19934public:
19935 /* Initialize a machine state for the start of a line number
19936 program. */
804d2729
TT
19937 lnp_state_machine (struct dwarf2_cu *cu, gdbarch *arch, line_header *lh,
19938 bool record_lines_p);
6f77053d 19939
8c43009f
PA
19940 file_entry *current_file ()
19941 {
19942 /* lh->file_names is 0-based, but the file name numbers in the
19943 statement program are 1-based. */
6f77053d
PA
19944 return m_line_header->file_name_at (m_file);
19945 }
19946
19947 /* Record the line in the state machine. END_SEQUENCE is true if
19948 we're processing the end of a sequence. */
19949 void record_line (bool end_sequence);
19950
7ab6656f
OJ
19951 /* Check ADDRESS is zero and less than UNRELOCATED_LOWPC and if true
19952 nop-out rest of the lines in this sequence. */
6f77053d
PA
19953 void check_line_address (struct dwarf2_cu *cu,
19954 const gdb_byte *line_ptr,
7ab6656f 19955 CORE_ADDR unrelocated_lowpc, CORE_ADDR address);
6f77053d
PA
19956
19957 void handle_set_discriminator (unsigned int discriminator)
19958 {
19959 m_discriminator = discriminator;
19960 m_line_has_non_zero_discriminator |= discriminator != 0;
19961 }
19962
19963 /* Handle DW_LNE_set_address. */
19964 void handle_set_address (CORE_ADDR baseaddr, CORE_ADDR address)
19965 {
19966 m_op_index = 0;
19967 address += baseaddr;
19968 m_address = gdbarch_adjust_dwarf2_line (m_gdbarch, address, false);
19969 }
19970
19971 /* Handle DW_LNS_advance_pc. */
19972 void handle_advance_pc (CORE_ADDR adjust);
19973
19974 /* Handle a special opcode. */
19975 void handle_special_opcode (unsigned char op_code);
19976
19977 /* Handle DW_LNS_advance_line. */
19978 void handle_advance_line (int line_delta)
19979 {
19980 advance_line (line_delta);
19981 }
19982
19983 /* Handle DW_LNS_set_file. */
19984 void handle_set_file (file_name_index file);
19985
19986 /* Handle DW_LNS_negate_stmt. */
19987 void handle_negate_stmt ()
19988 {
19989 m_is_stmt = !m_is_stmt;
19990 }
19991
19992 /* Handle DW_LNS_const_add_pc. */
19993 void handle_const_add_pc ();
19994
19995 /* Handle DW_LNS_fixed_advance_pc. */
19996 void handle_fixed_advance_pc (CORE_ADDR addr_adj)
19997 {
19998 m_address += gdbarch_adjust_dwarf2_line (m_gdbarch, addr_adj, true);
19999 m_op_index = 0;
20000 }
20001
20002 /* Handle DW_LNS_copy. */
20003 void handle_copy ()
20004 {
20005 record_line (false);
20006 m_discriminator = 0;
20007 }
20008
20009 /* Handle DW_LNE_end_sequence. */
20010 void handle_end_sequence ()
20011 {
804d2729 20012 m_currently_recording_lines = true;
6f77053d
PA
20013 }
20014
20015private:
20016 /* Advance the line by LINE_DELTA. */
20017 void advance_line (int line_delta)
20018 {
20019 m_line += line_delta;
20020
20021 if (line_delta != 0)
20022 m_line_has_non_zero_discriminator = m_discriminator != 0;
8c43009f
PA
20023 }
20024
804d2729
TT
20025 struct dwarf2_cu *m_cu;
20026
6f77053d
PA
20027 gdbarch *m_gdbarch;
20028
20029 /* True if we're recording lines.
20030 Otherwise we're building partial symtabs and are just interested in
20031 finding include files mentioned by the line number program. */
20032 bool m_record_lines_p;
20033
8c43009f 20034 /* The line number header. */
6f77053d 20035 line_header *m_line_header;
8c43009f 20036
6f77053d
PA
20037 /* These are part of the standard DWARF line number state machine,
20038 and initialized according to the DWARF spec. */
d9b3de22 20039
6f77053d 20040 unsigned char m_op_index = 0;
7ba99d21
AT
20041 /* The line table index of the current file. */
20042 file_name_index m_file = 1;
6f77053d
PA
20043 unsigned int m_line = 1;
20044
20045 /* These are initialized in the constructor. */
20046
20047 CORE_ADDR m_address;
20048 bool m_is_stmt;
20049 unsigned int m_discriminator;
d9b3de22
DE
20050
20051 /* Additional bits of state we need to track. */
20052
20053 /* The last file that we called dwarf2_start_subfile for.
20054 This is only used for TLLs. */
6f77053d 20055 unsigned int m_last_file = 0;
d9b3de22 20056 /* The last file a line number was recorded for. */
6f77053d 20057 struct subfile *m_last_subfile = NULL;
d9b3de22 20058
1313c56e
AB
20059 /* The address of the last line entry. */
20060 CORE_ADDR m_last_address;
20061
20062 /* Set to true when a previous line at the same address (using
20063 m_last_address) had m_is_stmt true. This is reset to false when a
20064 line entry at a new address (m_address different to m_last_address) is
20065 processed. */
20066 bool m_stmt_at_address = false;
20067
804d2729
TT
20068 /* When true, record the lines we decode. */
20069 bool m_currently_recording_lines = false;
d9b3de22
DE
20070
20071 /* The last line number that was recorded, used to coalesce
20072 consecutive entries for the same line. This can happen, for
20073 example, when discriminators are present. PR 17276. */
6f77053d
PA
20074 unsigned int m_last_line = 0;
20075 bool m_line_has_non_zero_discriminator = false;
8c43009f 20076};
d9b3de22 20077
6f77053d
PA
20078void
20079lnp_state_machine::handle_advance_pc (CORE_ADDR adjust)
20080{
20081 CORE_ADDR addr_adj = (((m_op_index + adjust)
20082 / m_line_header->maximum_ops_per_instruction)
20083 * m_line_header->minimum_instruction_length);
20084 m_address += gdbarch_adjust_dwarf2_line (m_gdbarch, addr_adj, true);
20085 m_op_index = ((m_op_index + adjust)
20086 % m_line_header->maximum_ops_per_instruction);
20087}
d9b3de22 20088
6f77053d
PA
20089void
20090lnp_state_machine::handle_special_opcode (unsigned char op_code)
d9b3de22 20091{
6f77053d 20092 unsigned char adj_opcode = op_code - m_line_header->opcode_base;
258bf0ee
RB
20093 unsigned char adj_opcode_d = adj_opcode / m_line_header->line_range;
20094 unsigned char adj_opcode_r = adj_opcode % m_line_header->line_range;
20095 CORE_ADDR addr_adj = (((m_op_index + adj_opcode_d)
6f77053d
PA
20096 / m_line_header->maximum_ops_per_instruction)
20097 * m_line_header->minimum_instruction_length);
20098 m_address += gdbarch_adjust_dwarf2_line (m_gdbarch, addr_adj, true);
258bf0ee 20099 m_op_index = ((m_op_index + adj_opcode_d)
6f77053d 20100 % m_line_header->maximum_ops_per_instruction);
d9b3de22 20101
258bf0ee 20102 int line_delta = m_line_header->line_base + adj_opcode_r;
6f77053d
PA
20103 advance_line (line_delta);
20104 record_line (false);
20105 m_discriminator = 0;
20106}
d9b3de22 20107
6f77053d
PA
20108void
20109lnp_state_machine::handle_set_file (file_name_index file)
20110{
20111 m_file = file;
20112
20113 const file_entry *fe = current_file ();
20114 if (fe == NULL)
20115 dwarf2_debug_line_missing_file_complaint ();
20116 else if (m_record_lines_p)
20117 {
20118 const char *dir = fe->include_dir (m_line_header);
20119
c24bdb02 20120 m_last_subfile = m_cu->get_builder ()->get_current_subfile ();
6f77053d 20121 m_line_has_non_zero_discriminator = m_discriminator != 0;
804d2729 20122 dwarf2_start_subfile (m_cu, fe->name, dir);
6f77053d
PA
20123 }
20124}
20125
20126void
20127lnp_state_machine::handle_const_add_pc ()
20128{
20129 CORE_ADDR adjust
20130 = (255 - m_line_header->opcode_base) / m_line_header->line_range;
20131
20132 CORE_ADDR addr_adj
20133 = (((m_op_index + adjust)
20134 / m_line_header->maximum_ops_per_instruction)
20135 * m_line_header->minimum_instruction_length);
20136
20137 m_address += gdbarch_adjust_dwarf2_line (m_gdbarch, addr_adj, true);
20138 m_op_index = ((m_op_index + adjust)
20139 % m_line_header->maximum_ops_per_instruction);
20140}
d9b3de22 20141
a05a36a5
DE
20142/* Return non-zero if we should add LINE to the line number table.
20143 LINE is the line to add, LAST_LINE is the last line that was added,
20144 LAST_SUBFILE is the subfile for LAST_LINE.
20145 LINE_HAS_NON_ZERO_DISCRIMINATOR is non-zero if LINE has ever
20146 had a non-zero discriminator.
20147
20148 We have to be careful in the presence of discriminators.
20149 E.g., for this line:
20150
20151 for (i = 0; i < 100000; i++);
20152
20153 clang can emit four line number entries for that one line,
20154 each with a different discriminator.
20155 See gdb.dwarf2/dw2-single-line-discriminators.exp for an example.
20156
20157 However, we want gdb to coalesce all four entries into one.
20158 Otherwise the user could stepi into the middle of the line and
20159 gdb would get confused about whether the pc really was in the
20160 middle of the line.
20161
20162 Things are further complicated by the fact that two consecutive
20163 line number entries for the same line is a heuristic used by gcc
20164 to denote the end of the prologue. So we can't just discard duplicate
20165 entries, we have to be selective about it. The heuristic we use is
20166 that we only collapse consecutive entries for the same line if at least
20167 one of those entries has a non-zero discriminator. PR 17276.
20168
20169 Note: Addresses in the line number state machine can never go backwards
20170 within one sequence, thus this coalescing is ok. */
20171
20172static int
804d2729
TT
20173dwarf_record_line_p (struct dwarf2_cu *cu,
20174 unsigned int line, unsigned int last_line,
a05a36a5
DE
20175 int line_has_non_zero_discriminator,
20176 struct subfile *last_subfile)
20177{
c24bdb02 20178 if (cu->get_builder ()->get_current_subfile () != last_subfile)
a05a36a5
DE
20179 return 1;
20180 if (line != last_line)
20181 return 1;
20182 /* Same line for the same file that we've seen already.
20183 As a last check, for pr 17276, only record the line if the line
20184 has never had a non-zero discriminator. */
20185 if (!line_has_non_zero_discriminator)
20186 return 1;
20187 return 0;
20188}
20189
804d2729
TT
20190/* Use the CU's builder to record line number LINE beginning at
20191 address ADDRESS in the line table of subfile SUBFILE. */
252a6764
DE
20192
20193static void
d9b3de22 20194dwarf_record_line_1 (struct gdbarch *gdbarch, struct subfile *subfile,
8c95582d 20195 unsigned int line, CORE_ADDR address, bool is_stmt,
804d2729 20196 struct dwarf2_cu *cu)
252a6764
DE
20197{
20198 CORE_ADDR addr = gdbarch_addr_bits_remove (gdbarch, address);
20199
27e0867f
DE
20200 if (dwarf_line_debug)
20201 {
20202 fprintf_unfiltered (gdb_stdlog,
20203 "Recording line %u, file %s, address %s\n",
20204 line, lbasename (subfile->name),
20205 paddress (gdbarch, address));
20206 }
20207
804d2729 20208 if (cu != nullptr)
8c95582d 20209 cu->get_builder ()->record_line (subfile, line, addr, is_stmt);
252a6764
DE
20210}
20211
20212/* Subroutine of dwarf_decode_lines_1 to simplify it.
20213 Mark the end of a set of line number records.
d9b3de22 20214 The arguments are the same as for dwarf_record_line_1.
252a6764
DE
20215 If SUBFILE is NULL the request is ignored. */
20216
20217static void
20218dwarf_finish_line (struct gdbarch *gdbarch, struct subfile *subfile,
804d2729 20219 CORE_ADDR address, struct dwarf2_cu *cu)
252a6764 20220{
27e0867f
DE
20221 if (subfile == NULL)
20222 return;
20223
20224 if (dwarf_line_debug)
20225 {
20226 fprintf_unfiltered (gdb_stdlog,
20227 "Finishing current line, file %s, address %s\n",
20228 lbasename (subfile->name),
20229 paddress (gdbarch, address));
20230 }
20231
8c95582d 20232 dwarf_record_line_1 (gdbarch, subfile, 0, address, true, cu);
d9b3de22
DE
20233}
20234
6f77053d
PA
20235void
20236lnp_state_machine::record_line (bool end_sequence)
d9b3de22 20237{
d9b3de22
DE
20238 if (dwarf_line_debug)
20239 {
20240 fprintf_unfiltered (gdb_stdlog,
20241 "Processing actual line %u: file %u,"
94a72be7 20242 " address %s, is_stmt %u, discrim %u%s\n",
7ba99d21 20243 m_line, m_file,
6f77053d 20244 paddress (m_gdbarch, m_address),
94a72be7
AB
20245 m_is_stmt, m_discriminator,
20246 (end_sequence ? "\t(end sequence)" : ""));
d9b3de22
DE
20247 }
20248
6f77053d 20249 file_entry *fe = current_file ();
8c43009f
PA
20250
20251 if (fe == NULL)
d9b3de22
DE
20252 dwarf2_debug_line_missing_file_complaint ();
20253 /* For now we ignore lines not starting on an instruction boundary.
20254 But not when processing end_sequence for compatibility with the
20255 previous version of the code. */
6f77053d 20256 else if (m_op_index == 0 || end_sequence)
d9b3de22 20257 {
8c43009f 20258 fe->included_p = 1;
8c95582d 20259 if (m_record_lines_p)
d9b3de22 20260 {
1313c56e
AB
20261 /* When we switch files we insert an end maker in the first file,
20262 switch to the second file and add a new line entry. The
20263 problem is that the end marker inserted in the first file will
20264 discard any previous line entries at the same address. If the
20265 line entries in the first file are marked as is-stmt, while
20266 the new line in the second file is non-stmt, then this means
20267 the end marker will discard is-stmt lines so we can have a
20268 non-stmt line. This means that there are less addresses at
20269 which the user can insert a breakpoint.
20270
20271 To improve this we track the last address in m_last_address,
20272 and whether we have seen an is-stmt at this address. Then
20273 when switching files, if we have seen a stmt at the current
20274 address, and we are switching to create a non-stmt line, then
20275 discard the new line. */
20276 bool file_changed
20277 = m_last_subfile != m_cu->get_builder ()->get_current_subfile ();
20278 bool ignore_this_line
20279 = (file_changed && !end_sequence && m_last_address == m_address
20280 && !m_is_stmt && m_stmt_at_address);
20281
20282 if ((file_changed && !ignore_this_line) || end_sequence)
d9b3de22 20283 {
804d2729
TT
20284 dwarf_finish_line (m_gdbarch, m_last_subfile, m_address,
20285 m_currently_recording_lines ? m_cu : nullptr);
d9b3de22
DE
20286 }
20287
1313c56e 20288 if (!end_sequence && !ignore_this_line)
d9b3de22 20289 {
8c95582d
AB
20290 bool is_stmt = producer_is_codewarrior (m_cu) || m_is_stmt;
20291
804d2729 20292 if (dwarf_record_line_p (m_cu, m_line, m_last_line,
6f77053d
PA
20293 m_line_has_non_zero_discriminator,
20294 m_last_subfile))
d9b3de22 20295 {
c24bdb02 20296 buildsym_compunit *builder = m_cu->get_builder ();
804d2729 20297 dwarf_record_line_1 (m_gdbarch,
c24bdb02 20298 builder->get_current_subfile (),
8c95582d 20299 m_line, m_address, is_stmt,
804d2729 20300 m_currently_recording_lines ? m_cu : nullptr);
d9b3de22 20301 }
c24bdb02 20302 m_last_subfile = m_cu->get_builder ()->get_current_subfile ();
6f77053d 20303 m_last_line = m_line;
d9b3de22
DE
20304 }
20305 }
20306 }
1313c56e
AB
20307
20308 /* Track whether we have seen any m_is_stmt true at m_address in case we
20309 have multiple line table entries all at m_address. */
20310 if (m_last_address != m_address)
20311 {
20312 m_stmt_at_address = false;
20313 m_last_address = m_address;
20314 }
20315 m_stmt_at_address |= m_is_stmt;
d9b3de22
DE
20316}
20317
804d2729
TT
20318lnp_state_machine::lnp_state_machine (struct dwarf2_cu *cu, gdbarch *arch,
20319 line_header *lh, bool record_lines_p)
d9b3de22 20320{
804d2729 20321 m_cu = cu;
6f77053d
PA
20322 m_gdbarch = arch;
20323 m_record_lines_p = record_lines_p;
20324 m_line_header = lh;
d9b3de22 20325
804d2729 20326 m_currently_recording_lines = true;
d9b3de22 20327
d9b3de22
DE
20328 /* Call `gdbarch_adjust_dwarf2_line' on the initial 0 address as if there
20329 was a line entry for it so that the backend has a chance to adjust it
20330 and also record it in case it needs it. This is currently used by MIPS
20331 code, cf. `mips_adjust_dwarf2_line'. */
6f77053d
PA
20332 m_address = gdbarch_adjust_dwarf2_line (arch, 0, 0);
20333 m_is_stmt = lh->default_is_stmt;
20334 m_discriminator = 0;
1313c56e
AB
20335
20336 m_last_address = m_address;
20337 m_stmt_at_address = false;
252a6764
DE
20338}
20339
6f77053d
PA
20340void
20341lnp_state_machine::check_line_address (struct dwarf2_cu *cu,
20342 const gdb_byte *line_ptr,
7ab6656f 20343 CORE_ADDR unrelocated_lowpc, CORE_ADDR address)
924c2928 20344{
7ab6656f
OJ
20345 /* If ADDRESS < UNRELOCATED_LOWPC then it's not a usable value, it's outside
20346 the pc range of the CU. However, we restrict the test to only ADDRESS
20347 values of zero to preserve GDB's previous behaviour which is to handle
20348 the specific case of a function being GC'd by the linker. */
924c2928 20349
7ab6656f 20350 if (address == 0 && address < unrelocated_lowpc)
924c2928
DE
20351 {
20352 /* This line table is for a function which has been
20353 GCd by the linker. Ignore it. PR gdb/12528 */
20354
5e22e966 20355 struct objfile *objfile = cu->per_objfile->objfile;
924c2928
DE
20356 long line_offset = line_ptr - get_debug_line_section (cu)->buffer;
20357
b98664d3 20358 complaint (_(".debug_line address at offset 0x%lx is 0 [in module %s]"),
924c2928 20359 line_offset, objfile_name (objfile));
804d2729
TT
20360 m_currently_recording_lines = false;
20361 /* Note: m_currently_recording_lines is left as false until we see
20362 DW_LNE_end_sequence. */
924c2928
DE
20363 }
20364}
20365
f3f5162e 20366/* Subroutine of dwarf_decode_lines to simplify it.
d9b3de22
DE
20367 Process the line number information in LH.
20368 If DECODE_FOR_PST_P is non-zero, all we do is process the line number
20369 program in order to set included_p for every referenced header. */
debd256d 20370
c906108c 20371static void
43f3e411
DE
20372dwarf_decode_lines_1 (struct line_header *lh, struct dwarf2_cu *cu,
20373 const int decode_for_pst_p, CORE_ADDR lowpc)
c906108c 20374{
d521ce57
TT
20375 const gdb_byte *line_ptr, *extended_end;
20376 const gdb_byte *line_end;
a8c50c1f 20377 unsigned int bytes_read, extended_len;
699ca60a 20378 unsigned char op_code, extended_op;
e142c38c 20379 CORE_ADDR baseaddr;
5e22e966 20380 struct objfile *objfile = cu->per_objfile->objfile;
f3f5162e 20381 bfd *abfd = objfile->obfd;
08feed99 20382 struct gdbarch *gdbarch = objfile->arch ();
6f77053d
PA
20383 /* True if we're recording line info (as opposed to building partial
20384 symtabs and just interested in finding include files mentioned by
20385 the line number program). */
20386 bool record_lines_p = !decode_for_pst_p;
e142c38c 20387
b3b3bada 20388 baseaddr = objfile->text_section_offset ();
c906108c 20389
debd256d
JB
20390 line_ptr = lh->statement_program_start;
20391 line_end = lh->statement_program_end;
c906108c
SS
20392
20393 /* Read the statement sequences until there's nothing left. */
20394 while (line_ptr < line_end)
20395 {
6f77053d
PA
20396 /* The DWARF line number program state machine. Reset the state
20397 machine at the start of each sequence. */
804d2729 20398 lnp_state_machine state_machine (cu, gdbarch, lh, record_lines_p);
6f77053d 20399 bool end_sequence = false;
d9b3de22 20400
8c43009f 20401 if (record_lines_p)
c906108c 20402 {
8c43009f
PA
20403 /* Start a subfile for the current file of the state
20404 machine. */
20405 const file_entry *fe = state_machine.current_file ();
20406
20407 if (fe != NULL)
804d2729 20408 dwarf2_start_subfile (cu, fe->name, fe->include_dir (lh));
c906108c
SS
20409 }
20410
a738430d 20411 /* Decode the table. */
d9b3de22 20412 while (line_ptr < line_end && !end_sequence)
c906108c
SS
20413 {
20414 op_code = read_1_byte (abfd, line_ptr);
20415 line_ptr += 1;
9aa1fe7e 20416
debd256d 20417 if (op_code >= lh->opcode_base)
6e70227d 20418 {
8e07a239 20419 /* Special opcode. */
6f77053d 20420 state_machine.handle_special_opcode (op_code);
9aa1fe7e
GK
20421 }
20422 else switch (op_code)
c906108c
SS
20423 {
20424 case DW_LNS_extended_op:
3e43a32a
MS
20425 extended_len = read_unsigned_leb128 (abfd, line_ptr,
20426 &bytes_read);
473b7be6 20427 line_ptr += bytes_read;
a8c50c1f 20428 extended_end = line_ptr + extended_len;
c906108c
SS
20429 extended_op = read_1_byte (abfd, line_ptr);
20430 line_ptr += 1;
20431 switch (extended_op)
20432 {
20433 case DW_LNE_end_sequence:
6f77053d
PA
20434 state_machine.handle_end_sequence ();
20435 end_sequence = true;
c906108c
SS
20436 break;
20437 case DW_LNE_set_address:
d9b3de22
DE
20438 {
20439 CORE_ADDR address
c8a7a66f 20440 = cu->header.read_address (abfd, line_ptr, &bytes_read);
d9b3de22 20441 line_ptr += bytes_read;
6f77053d
PA
20442
20443 state_machine.check_line_address (cu, line_ptr,
7ab6656f 20444 lowpc - baseaddr, address);
6f77053d 20445 state_machine.handle_set_address (baseaddr, address);
d9b3de22 20446 }
c906108c
SS
20447 break;
20448 case DW_LNE_define_file:
debd256d 20449 {
d521ce57 20450 const char *cur_file;
ecfb656c
PA
20451 unsigned int mod_time, length;
20452 dir_index dindex;
6e70227d 20453
3e43a32a
MS
20454 cur_file = read_direct_string (abfd, line_ptr,
20455 &bytes_read);
debd256d 20456 line_ptr += bytes_read;
ecfb656c 20457 dindex = (dir_index)
debd256d
JB
20458 read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
20459 line_ptr += bytes_read;
20460 mod_time =
20461 read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
20462 line_ptr += bytes_read;
20463 length =
20464 read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
20465 line_ptr += bytes_read;
ecfb656c 20466 lh->add_file_name (cur_file, dindex, mod_time, length);
debd256d 20467 }
c906108c 20468 break;
d0c6ba3d 20469 case DW_LNE_set_discriminator:
6f77053d
PA
20470 {
20471 /* The discriminator is not interesting to the
20472 debugger; just ignore it. We still need to
20473 check its value though:
20474 if there are consecutive entries for the same
20475 (non-prologue) line we want to coalesce them.
20476 PR 17276. */
20477 unsigned int discr
20478 = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
20479 line_ptr += bytes_read;
20480
20481 state_machine.handle_set_discriminator (discr);
20482 }
d0c6ba3d 20483 break;
c906108c 20484 default:
b98664d3 20485 complaint (_("mangled .debug_line section"));
debd256d 20486 return;
c906108c 20487 }
a8c50c1f
DJ
20488 /* Make sure that we parsed the extended op correctly. If e.g.
20489 we expected a different address size than the producer used,
20490 we may have read the wrong number of bytes. */
20491 if (line_ptr != extended_end)
20492 {
b98664d3 20493 complaint (_("mangled .debug_line section"));
a8c50c1f
DJ
20494 return;
20495 }
c906108c
SS
20496 break;
20497 case DW_LNS_copy:
6f77053d 20498 state_machine.handle_copy ();
c906108c
SS
20499 break;
20500 case DW_LNS_advance_pc:
2dc7f7b3
TT
20501 {
20502 CORE_ADDR adjust
20503 = read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
2dc7f7b3 20504 line_ptr += bytes_read;
6f77053d
PA
20505
20506 state_machine.handle_advance_pc (adjust);
2dc7f7b3 20507 }
c906108c
SS
20508 break;
20509 case DW_LNS_advance_line:
a05a36a5
DE
20510 {
20511 int line_delta
20512 = read_signed_leb128 (abfd, line_ptr, &bytes_read);
a05a36a5 20513 line_ptr += bytes_read;
6f77053d
PA
20514
20515 state_machine.handle_advance_line (line_delta);
a05a36a5 20516 }
c906108c
SS
20517 break;
20518 case DW_LNS_set_file:
d9b3de22 20519 {
6f77053d 20520 file_name_index file
ecfb656c
PA
20521 = (file_name_index) read_unsigned_leb128 (abfd, line_ptr,
20522 &bytes_read);
d9b3de22 20523 line_ptr += bytes_read;
8c43009f 20524
6f77053d 20525 state_machine.handle_set_file (file);
d9b3de22 20526 }
c906108c
SS
20527 break;
20528 case DW_LNS_set_column:
0ad93d4f 20529 (void) read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
c906108c
SS
20530 line_ptr += bytes_read;
20531 break;
20532 case DW_LNS_negate_stmt:
6f77053d 20533 state_machine.handle_negate_stmt ();
c906108c
SS
20534 break;
20535 case DW_LNS_set_basic_block:
c906108c 20536 break;
c2c6d25f
JM
20537 /* Add to the address register of the state machine the
20538 address increment value corresponding to special opcode
a738430d
MK
20539 255. I.e., this value is scaled by the minimum
20540 instruction length since special opcode 255 would have
b021a221 20541 scaled the increment. */
c906108c 20542 case DW_LNS_const_add_pc:
6f77053d 20543 state_machine.handle_const_add_pc ();
c906108c
SS
20544 break;
20545 case DW_LNS_fixed_advance_pc:
3e29f34a 20546 {
6f77053d 20547 CORE_ADDR addr_adj = read_2_bytes (abfd, line_ptr);
3e29f34a 20548 line_ptr += 2;
6f77053d
PA
20549
20550 state_machine.handle_fixed_advance_pc (addr_adj);
3e29f34a 20551 }
c906108c 20552 break;
9aa1fe7e 20553 default:
a738430d
MK
20554 {
20555 /* Unknown standard opcode, ignore it. */
9aa1fe7e 20556 int i;
a738430d 20557
debd256d 20558 for (i = 0; i < lh->standard_opcode_lengths[op_code]; i++)
9aa1fe7e
GK
20559 {
20560 (void) read_unsigned_leb128 (abfd, line_ptr, &bytes_read);
20561 line_ptr += bytes_read;
20562 }
20563 }
c906108c
SS
20564 }
20565 }
d9b3de22
DE
20566
20567 if (!end_sequence)
20568 dwarf2_debug_line_missing_end_sequence_complaint ();
20569
20570 /* We got a DW_LNE_end_sequence (or we ran off the end of the buffer,
20571 in which case we still finish recording the last line). */
6f77053d 20572 state_machine.record_line (true);
c906108c 20573 }
f3f5162e
DE
20574}
20575
20576/* Decode the Line Number Program (LNP) for the given line_header
20577 structure and CU. The actual information extracted and the type
20578 of structures created from the LNP depends on the value of PST.
20579
20580 1. If PST is NULL, then this procedure uses the data from the program
20581 to create all necessary symbol tables, and their linetables.
20582
20583 2. If PST is not NULL, this procedure reads the program to determine
20584 the list of files included by the unit represented by PST, and
20585 builds all the associated partial symbol tables.
20586
20587 COMP_DIR is the compilation directory (DW_AT_comp_dir) or NULL if unknown.
20588 It is used for relative paths in the line table.
20589 NOTE: When processing partial symtabs (pst != NULL),
20590 comp_dir == pst->dirname.
20591
20592 NOTE: It is important that psymtabs have the same file name (via strcmp)
20593 as the corresponding symtab. Since COMP_DIR is not used in the name of the
20594 symtab we don't use it in the name of the psymtabs we create.
20595 E.g. expand_line_sal requires this when finding psymtabs to expand.
c3b7b696
YQ
20596 A good testcase for this is mb-inline.exp.
20597
527f3840
JK
20598 LOWPC is the lowest address in CU (or 0 if not known).
20599
20600 Boolean DECODE_MAPPING specifies we need to fully decode .debug_line
20601 for its PC<->lines mapping information. Otherwise only the filename
20602 table is read in. */
f3f5162e
DE
20603
20604static void
20605dwarf_decode_lines (struct line_header *lh, const char *comp_dir,
891813be 20606 struct dwarf2_cu *cu, dwarf2_psymtab *pst,
527f3840 20607 CORE_ADDR lowpc, int decode_mapping)
f3f5162e 20608{
5e22e966 20609 struct objfile *objfile = cu->per_objfile->objfile;
f3f5162e 20610 const int decode_for_pst_p = (pst != NULL);
f3f5162e 20611
527f3840
JK
20612 if (decode_mapping)
20613 dwarf_decode_lines_1 (lh, cu, decode_for_pst_p, lowpc);
aaa75496
JB
20614
20615 if (decode_for_pst_p)
20616 {
aaa75496
JB
20617 /* Now that we're done scanning the Line Header Program, we can
20618 create the psymtab of each included file. */
7ba99d21
AT
20619 for (auto &file_entry : lh->file_names ())
20620 if (file_entry.included_p == 1)
aaa75496 20621 {
c89b44cd 20622 gdb::unique_xmalloc_ptr<char> name_holder;
d521ce57 20623 const char *include_name =
7ba99d21
AT
20624 psymtab_include_file_name (lh, file_entry, pst,
20625 comp_dir, &name_holder);
c6da4cef 20626 if (include_name != NULL)
aaa75496
JB
20627 dwarf2_create_include_psymtab (include_name, pst, objfile);
20628 }
20629 }
cb1df416
DJ
20630 else
20631 {
20632 /* Make sure a symtab is created for every file, even files
20633 which contain only variables (i.e. no code with associated
20634 line numbers). */
c24bdb02
KS
20635 buildsym_compunit *builder = cu->get_builder ();
20636 struct compunit_symtab *cust = builder->get_compunit_symtab ();
cb1df416 20637
7ba99d21 20638 for (auto &fe : lh->file_names ())
cb1df416 20639 {
804d2729 20640 dwarf2_start_subfile (cu, fe.name, fe.include_dir (lh));
c24bdb02 20641 if (builder->get_current_subfile ()->symtab == NULL)
43f3e411 20642 {
c24bdb02 20643 builder->get_current_subfile ()->symtab
804d2729 20644 = allocate_symtab (cust,
c24bdb02 20645 builder->get_current_subfile ()->name);
43f3e411 20646 }
c24bdb02 20647 fe.symtab = builder->get_current_subfile ()->symtab;
cb1df416
DJ
20648 }
20649 }
c906108c
SS
20650}
20651
20652/* Start a subfile for DWARF. FILENAME is the name of the file and
20653 DIRNAME the name of the source directory which contains FILENAME
4d663531 20654 or NULL if not known.
c906108c
SS
20655 This routine tries to keep line numbers from identical absolute and
20656 relative file names in a common subfile.
20657
20658 Using the `list' example from the GDB testsuite, which resides in
20659 /srcdir and compiling it with Irix6.2 cc in /compdir using a filename
20660 of /srcdir/list0.c yields the following debugging information for list0.c:
20661
c5aa993b 20662 DW_AT_name: /srcdir/list0.c
4d663531 20663 DW_AT_comp_dir: /compdir
357e46e7 20664 files.files[0].name: list0.h
c5aa993b 20665 files.files[0].dir: /srcdir
357e46e7 20666 files.files[1].name: list0.c
c5aa993b 20667 files.files[1].dir: /srcdir
c906108c
SS
20668
20669 The line number information for list0.c has to end up in a single
4f1520fb
FR
20670 subfile, so that `break /srcdir/list0.c:1' works as expected.
20671 start_subfile will ensure that this happens provided that we pass the
20672 concatenation of files.files[1].dir and files.files[1].name as the
20673 subfile's name. */
c906108c
SS
20674
20675static void
804d2729
TT
20676dwarf2_start_subfile (struct dwarf2_cu *cu, const char *filename,
20677 const char *dirname)
c906108c 20678{
43816ebc 20679 gdb::unique_xmalloc_ptr<char> copy;
4f1520fb 20680
4d663531 20681 /* In order not to lose the line information directory,
4f1520fb
FR
20682 we concatenate it to the filename when it makes sense.
20683 Note that the Dwarf3 standard says (speaking of filenames in line
20684 information): ``The directory index is ignored for file names
20685 that represent full path names''. Thus ignoring dirname in the
20686 `else' branch below isn't an issue. */
c906108c 20687
d5166ae1 20688 if (!IS_ABSOLUTE_PATH (filename) && dirname != NULL)
d521ce57 20689 {
43816ebc
TT
20690 copy.reset (concat (dirname, SLASH_STRING, filename, (char *) NULL));
20691 filename = copy.get ();
d521ce57 20692 }
c906108c 20693
c24bdb02 20694 cu->get_builder ()->start_subfile (filename);
c906108c
SS
20695}
20696
804d2729
TT
20697/* Start a symtab for DWARF. NAME, COMP_DIR, LOW_PC are passed to the
20698 buildsym_compunit constructor. */
f4dc4d17 20699
c24bdb02
KS
20700struct compunit_symtab *
20701dwarf2_cu::start_symtab (const char *name, const char *comp_dir,
20702 CORE_ADDR low_pc)
f4dc4d17 20703{
c24bdb02 20704 gdb_assert (m_builder == nullptr);
43f3e411 20705
c24bdb02 20706 m_builder.reset (new struct buildsym_compunit
f6e649dd 20707 (this->per_objfile->objfile,
c24bdb02 20708 name, comp_dir, language, low_pc));
93b8bea4 20709
c24bdb02 20710 list_in_scope = get_builder ()->get_file_symbols ();
804d2729 20711
c24bdb02
KS
20712 get_builder ()->record_debugformat ("DWARF 2");
20713 get_builder ()->record_producer (producer);
f4dc4d17 20714
c24bdb02 20715 processing_has_namespace_info = false;
43f3e411 20716
c24bdb02 20717 return get_builder ()->get_compunit_symtab ();
f4dc4d17
DE
20718}
20719
4c2df51b
DJ
20720static void
20721var_decode_location (struct attribute *attr, struct symbol *sym,
e7c27a73 20722 struct dwarf2_cu *cu)
4c2df51b 20723{
5e22e966 20724 struct objfile *objfile = cu->per_objfile->objfile;
e7c27a73
DJ
20725 struct comp_unit_head *cu_header = &cu->header;
20726
4c2df51b
DJ
20727 /* NOTE drow/2003-01-30: There used to be a comment and some special
20728 code here to turn a symbol with DW_AT_external and a
20729 SYMBOL_VALUE_ADDRESS of 0 into a LOC_UNRESOLVED symbol. This was
20730 necessary for platforms (maybe Alpha, certainly PowerPC GNU/Linux
20731 with some versions of binutils) where shared libraries could have
20732 relocations against symbols in their debug information - the
20733 minimal symbol would have the right address, but the debug info
20734 would not. It's no longer necessary, because we will explicitly
20735 apply relocations when we read in the debug information now. */
20736
20737 /* A DW_AT_location attribute with no contents indicates that a
20738 variable has been optimized away. */
4fc6c0d5 20739 if (attr->form_is_block () && DW_BLOCK (attr)->size == 0)
4c2df51b 20740 {
f1e6e072 20741 SYMBOL_ACLASS_INDEX (sym) = LOC_OPTIMIZED_OUT;
4c2df51b
DJ
20742 return;
20743 }
20744
20745 /* Handle one degenerate form of location expression specially, to
20746 preserve GDB's previous behavior when section offsets are
336d760d
AT
20747 specified. If this is just a DW_OP_addr, DW_OP_addrx, or
20748 DW_OP_GNU_addr_index then mark this symbol as LOC_STATIC. */
4c2df51b 20749
4fc6c0d5 20750 if (attr->form_is_block ()
3019eac3
DE
20751 && ((DW_BLOCK (attr)->data[0] == DW_OP_addr
20752 && DW_BLOCK (attr)->size == 1 + cu_header->addr_size)
336d760d
AT
20753 || ((DW_BLOCK (attr)->data[0] == DW_OP_GNU_addr_index
20754 || DW_BLOCK (attr)->data[0] == DW_OP_addrx)
3019eac3
DE
20755 && (DW_BLOCK (attr)->size
20756 == 1 + leb128_size (&DW_BLOCK (attr)->data[1])))))
4c2df51b 20757 {
891d2f0b 20758 unsigned int dummy;
4c2df51b 20759
3019eac3 20760 if (DW_BLOCK (attr)->data[0] == DW_OP_addr)
c8a7a66f
TT
20761 SET_SYMBOL_VALUE_ADDRESS
20762 (sym, cu->header.read_address (objfile->obfd,
20763 DW_BLOCK (attr)->data + 1,
20764 &dummy));
3019eac3 20765 else
38583298
TT
20766 SET_SYMBOL_VALUE_ADDRESS
20767 (sym, read_addr_index_from_leb128 (cu, DW_BLOCK (attr)->data + 1,
20768 &dummy));
f1e6e072 20769 SYMBOL_ACLASS_INDEX (sym) = LOC_STATIC;
4c2df51b 20770 fixup_symbol_section (sym, objfile);
6a053cb1
TT
20771 SET_SYMBOL_VALUE_ADDRESS
20772 (sym,
20773 SYMBOL_VALUE_ADDRESS (sym)
20774 + objfile->section_offsets[SYMBOL_SECTION (sym)]);
4c2df51b
DJ
20775 return;
20776 }
20777
20778 /* NOTE drow/2002-01-30: It might be worthwhile to have a static
20779 expression evaluator, and use LOC_COMPUTED only when necessary
20780 (i.e. when the value of a register or memory location is
20781 referenced, or a thread-local block, etc.). Then again, it might
20782 not be worthwhile. I'm assuming that it isn't unless performance
20783 or memory numbers show me otherwise. */
20784
f1e6e072 20785 dwarf2_symbol_mark_computed (attr, sym, cu, 0);
8be455d7 20786
f1e6e072 20787 if (SYMBOL_COMPUTED_OPS (sym)->location_has_loclist)
9068261f 20788 cu->has_loclist = true;
4c2df51b
DJ
20789}
20790
c906108c
SS
20791/* Given a pointer to a DWARF information entry, figure out if we need
20792 to make a symbol table entry for it, and if so, create a new entry
20793 and return a pointer to it.
20794 If TYPE is NULL, determine symbol type from the die, otherwise
34eaf542
TT
20795 used the passed type.
20796 If SPACE is not NULL, use it to hold the new symbol. If it is
20797 NULL, allocate a new symbol on the objfile's obstack. */
c906108c
SS
20798
20799static struct symbol *
5e2db402
TT
20800new_symbol (struct die_info *die, struct type *type, struct dwarf2_cu *cu,
20801 struct symbol *space)
c906108c 20802{
976ca316
SM
20803 dwarf2_per_objfile *per_objfile = cu->per_objfile;
20804 struct objfile *objfile = per_objfile->objfile;
08feed99 20805 struct gdbarch *gdbarch = objfile->arch ();
c906108c 20806 struct symbol *sym = NULL;
15d034d0 20807 const char *name;
c906108c
SS
20808 struct attribute *attr = NULL;
20809 struct attribute *attr2 = NULL;
e142c38c 20810 CORE_ADDR baseaddr;
e37fd15a
SW
20811 struct pending **list_to_add = NULL;
20812
edb3359d 20813 int inlined_func = (die->tag == DW_TAG_inlined_subroutine);
e142c38c 20814
b3b3bada 20815 baseaddr = objfile->text_section_offset ();
c906108c 20816
94af9270 20817 name = dwarf2_name (die, cu);
c906108c
SS
20818 if (name)
20819 {
34eaf542 20820 int suppress_add = 0;
94af9270 20821
34eaf542
TT
20822 if (space)
20823 sym = space;
20824 else
8c14c3a3 20825 sym = new (&objfile->objfile_obstack) symbol;
c906108c 20826 OBJSTAT (objfile, n_syms++);
2de7ced7
DJ
20827
20828 /* Cache this symbol's name and the name's demangled form (if any). */
d3ecddab 20829 sym->set_language (cu->language, &objfile->objfile_obstack);
f55ee35c
JK
20830 /* Fortran does not have mangling standard and the mangling does differ
20831 between gfortran, iFort etc. */
bcfe6157
TT
20832 const char *physname
20833 = (cu->language == language_fortran
20834 ? dwarf2_full_name (name, die, cu)
20835 : dwarf2_physname (name, die, cu));
20836 const char *linkagename = dw2_linkage_name (die, cu);
20837
20838 if (linkagename == nullptr || cu->language == language_ada)
20839 sym->set_linkage_name (physname);
20840 else
20841 {
20842 sym->set_demangled_name (physname, &objfile->objfile_obstack);
20843 sym->set_linkage_name (linkagename);
20844 }
f55ee35c 20845
c906108c 20846 /* Default assumptions.
c5aa993b 20847 Use the passed type or decode it from the die. */
176620f1 20848 SYMBOL_DOMAIN (sym) = VAR_DOMAIN;
f1e6e072 20849 SYMBOL_ACLASS_INDEX (sym) = LOC_OPTIMIZED_OUT;
c906108c
SS
20850 if (type != NULL)
20851 SYMBOL_TYPE (sym) = type;
20852 else
e7c27a73 20853 SYMBOL_TYPE (sym) = die_type (die, cu);
edb3359d
DJ
20854 attr = dwarf2_attr (die,
20855 inlined_func ? DW_AT_call_line : DW_AT_decl_line,
20856 cu);
435d3d88 20857 if (attr != nullptr)
c906108c
SS
20858 {
20859 SYMBOL_LINE (sym) = DW_UNSND (attr);
20860 }
cb1df416 20861
edb3359d
DJ
20862 attr = dwarf2_attr (die,
20863 inlined_func ? DW_AT_call_file : DW_AT_decl_file,
20864 cu);
435d3d88 20865 if (attr != nullptr)
cb1df416 20866 {
ecfb656c 20867 file_name_index file_index = (file_name_index) DW_UNSND (attr);
8c43009f 20868 struct file_entry *fe;
9a619af0 20869
ecfb656c
PA
20870 if (cu->line_header != NULL)
20871 fe = cu->line_header->file_name_at (file_index);
8c43009f
PA
20872 else
20873 fe = NULL;
20874
20875 if (fe == NULL)
b98664d3 20876 complaint (_("file index out of range"));
8c43009f
PA
20877 else
20878 symbol_set_symtab (sym, fe->symtab);
cb1df416
DJ
20879 }
20880
c906108c
SS
20881 switch (die->tag)
20882 {
20883 case DW_TAG_label:
e142c38c 20884 attr = dwarf2_attr (die, DW_AT_low_pc, cu);
435d3d88 20885 if (attr != nullptr)
3e29f34a
MR
20886 {
20887 CORE_ADDR addr;
20888
cd6c91b4 20889 addr = attr->value_as_address ();
3e29f34a 20890 addr = gdbarch_adjust_dwarf2_addr (gdbarch, addr + baseaddr);
38583298 20891 SET_SYMBOL_VALUE_ADDRESS (sym, addr);
3e29f34a 20892 }
0f5238ed
TT
20893 SYMBOL_TYPE (sym) = objfile_type (objfile)->builtin_core_addr;
20894 SYMBOL_DOMAIN (sym) = LABEL_DOMAIN;
f1e6e072 20895 SYMBOL_ACLASS_INDEX (sym) = LOC_LABEL;
d3cb6808 20896 add_symbol_to_list (sym, cu->list_in_scope);
c906108c
SS
20897 break;
20898 case DW_TAG_subprogram:
20899 /* SYMBOL_BLOCK_VALUE (sym) will be filled in later by
20900 finish_block. */
f1e6e072 20901 SYMBOL_ACLASS_INDEX (sym) = LOC_BLOCK;
e142c38c 20902 attr2 = dwarf2_attr (die, DW_AT_external, cu);
2cfa0c8d 20903 if ((attr2 && (DW_UNSND (attr2) != 0))
0a4b0913
AB
20904 || cu->language == language_ada
20905 || cu->language == language_fortran)
c906108c 20906 {
2cfa0c8d 20907 /* Subprograms marked external are stored as a global symbol.
0a4b0913
AB
20908 Ada and Fortran subprograms, whether marked external or
20909 not, are always stored as a global symbol, because we want
20910 to be able to access them globally. For instance, we want
20911 to be able to break on a nested subprogram without having
20912 to specify the context. */
c24bdb02 20913 list_to_add = cu->get_builder ()->get_global_symbols ();
c906108c
SS
20914 }
20915 else
20916 {
e37fd15a 20917 list_to_add = cu->list_in_scope;
c906108c
SS
20918 }
20919 break;
edb3359d
DJ
20920 case DW_TAG_inlined_subroutine:
20921 /* SYMBOL_BLOCK_VALUE (sym) will be filled in later by
20922 finish_block. */
f1e6e072 20923 SYMBOL_ACLASS_INDEX (sym) = LOC_BLOCK;
edb3359d 20924 SYMBOL_INLINED (sym) = 1;
481860b3 20925 list_to_add = cu->list_in_scope;
edb3359d 20926 break;
34eaf542
TT
20927 case DW_TAG_template_value_param:
20928 suppress_add = 1;
20929 /* Fall through. */
72929c62 20930 case DW_TAG_constant:
c906108c 20931 case DW_TAG_variable:
254e6b9e 20932 case DW_TAG_member:
0963b4bd
MS
20933 /* Compilation with minimal debug info may result in
20934 variables with missing type entries. Change the
20935 misleading `void' type to something sensible. */
78134374 20936 if (SYMBOL_TYPE (sym)->code () == TYPE_CODE_VOID)
46a4882b 20937 SYMBOL_TYPE (sym) = objfile_type (objfile)->builtin_int;
64c50499 20938
e142c38c 20939 attr = dwarf2_attr (die, DW_AT_const_value, cu);
254e6b9e
DE
20940 /* In the case of DW_TAG_member, we should only be called for
20941 static const members. */
20942 if (die->tag == DW_TAG_member)
20943 {
3863f96c
DE
20944 /* dwarf2_add_field uses die_is_declaration,
20945 so we do the same. */
254e6b9e
DE
20946 gdb_assert (die_is_declaration (die, cu));
20947 gdb_assert (attr);
20948 }
435d3d88 20949 if (attr != nullptr)
c906108c 20950 {
e7c27a73 20951 dwarf2_const_value (attr, sym, cu);
e142c38c 20952 attr2 = dwarf2_attr (die, DW_AT_external, cu);
e37fd15a 20953 if (!suppress_add)
34eaf542
TT
20954 {
20955 if (attr2 && (DW_UNSND (attr2) != 0))
c24bdb02 20956 list_to_add = cu->get_builder ()->get_global_symbols ();
34eaf542 20957 else
e37fd15a 20958 list_to_add = cu->list_in_scope;
34eaf542 20959 }
c906108c
SS
20960 break;
20961 }
e142c38c 20962 attr = dwarf2_attr (die, DW_AT_location, cu);
435d3d88 20963 if (attr != nullptr)
c906108c 20964 {
e7c27a73 20965 var_decode_location (attr, sym, cu);
e142c38c 20966 attr2 = dwarf2_attr (die, DW_AT_external, cu);
4357ac6c
TT
20967
20968 /* Fortran explicitly imports any global symbols to the local
20969 scope by DW_TAG_common_block. */
20970 if (cu->language == language_fortran && die->parent
20971 && die->parent->tag == DW_TAG_common_block)
20972 attr2 = NULL;
20973
caac4577
JG
20974 if (SYMBOL_CLASS (sym) == LOC_STATIC
20975 && SYMBOL_VALUE_ADDRESS (sym) == 0
976ca316 20976 && !per_objfile->per_bfd->has_section_at_zero)
caac4577
JG
20977 {
20978 /* When a static variable is eliminated by the linker,
20979 the corresponding debug information is not stripped
20980 out, but the variable address is set to null;
20981 do not add such variables into symbol table. */
20982 }
20983 else if (attr2 && (DW_UNSND (attr2) != 0))
1c809c68 20984 {
4b610737
TT
20985 if (SYMBOL_CLASS (sym) == LOC_STATIC
20986 && (objfile->flags & OBJF_MAINLINE) == 0
976ca316 20987 && per_objfile->per_bfd->can_copy)
4b610737
TT
20988 {
20989 /* A global static variable might be subject to
20990 copy relocation. We first check for a local
20991 minsym, though, because maybe the symbol was
20992 marked hidden, in which case this would not
20993 apply. */
20994 bound_minimal_symbol found
20995 = (lookup_minimal_symbol_linkage
987012b8 20996 (sym->linkage_name (), objfile));
4b610737
TT
20997 if (found.minsym != nullptr)
20998 sym->maybe_copied = 1;
20999 }
f55ee35c 21000
1c809c68
TT
21001 /* A variable with DW_AT_external is never static,
21002 but it may be block-scoped. */
804d2729 21003 list_to_add
c24bdb02
KS
21004 = ((cu->list_in_scope
21005 == cu->get_builder ()->get_file_symbols ())
21006 ? cu->get_builder ()->get_global_symbols ()
804d2729 21007 : cu->list_in_scope);
1c809c68 21008 }
c906108c 21009 else
e37fd15a 21010 list_to_add = cu->list_in_scope;
c906108c
SS
21011 }
21012 else
21013 {
21014 /* We do not know the address of this symbol.
c5aa993b
JM
21015 If it is an external symbol and we have type information
21016 for it, enter the symbol as a LOC_UNRESOLVED symbol.
21017 The address of the variable will then be determined from
21018 the minimal symbol table whenever the variable is
21019 referenced. */
e142c38c 21020 attr2 = dwarf2_attr (die, DW_AT_external, cu);
0971de02
TT
21021
21022 /* Fortran explicitly imports any global symbols to the local
21023 scope by DW_TAG_common_block. */
21024 if (cu->language == language_fortran && die->parent
21025 && die->parent->tag == DW_TAG_common_block)
21026 {
21027 /* SYMBOL_CLASS doesn't matter here because
21028 read_common_block is going to reset it. */
21029 if (!suppress_add)
21030 list_to_add = cu->list_in_scope;
21031 }
21032 else if (attr2 && (DW_UNSND (attr2) != 0)
21033 && dwarf2_attr (die, DW_AT_type, cu) != NULL)
c906108c 21034 {
0fe7935b
DJ
21035 /* A variable with DW_AT_external is never static, but it
21036 may be block-scoped. */
804d2729 21037 list_to_add
c24bdb02
KS
21038 = ((cu->list_in_scope
21039 == cu->get_builder ()->get_file_symbols ())
21040 ? cu->get_builder ()->get_global_symbols ()
804d2729 21041 : cu->list_in_scope);
0fe7935b 21042
f1e6e072 21043 SYMBOL_ACLASS_INDEX (sym) = LOC_UNRESOLVED;
c906108c 21044 }
442ddf59
JK
21045 else if (!die_is_declaration (die, cu))
21046 {
21047 /* Use the default LOC_OPTIMIZED_OUT class. */
21048 gdb_assert (SYMBOL_CLASS (sym) == LOC_OPTIMIZED_OUT);
e37fd15a
SW
21049 if (!suppress_add)
21050 list_to_add = cu->list_in_scope;
442ddf59 21051 }
c906108c
SS
21052 }
21053 break;
21054 case DW_TAG_formal_parameter:
a60f3166
TT
21055 {
21056 /* If we are inside a function, mark this as an argument. If
21057 not, we might be looking at an argument to an inlined function
21058 when we do not have enough information to show inlined frames;
21059 pretend it's a local variable in that case so that the user can
21060 still see it. */
804d2729 21061 struct context_stack *curr
c24bdb02 21062 = cu->get_builder ()->get_current_context_stack ();
a60f3166
TT
21063 if (curr != nullptr && curr->name != nullptr)
21064 SYMBOL_IS_ARGUMENT (sym) = 1;
21065 attr = dwarf2_attr (die, DW_AT_location, cu);
435d3d88 21066 if (attr != nullptr)
a60f3166
TT
21067 {
21068 var_decode_location (attr, sym, cu);
21069 }
21070 attr = dwarf2_attr (die, DW_AT_const_value, cu);
435d3d88 21071 if (attr != nullptr)
a60f3166
TT
21072 {
21073 dwarf2_const_value (attr, sym, cu);
21074 }
f346a30d 21075
a60f3166
TT
21076 list_to_add = cu->list_in_scope;
21077 }
c906108c
SS
21078 break;
21079 case DW_TAG_unspecified_parameters:
21080 /* From varargs functions; gdb doesn't seem to have any
21081 interest in this information, so just ignore it for now.
21082 (FIXME?) */
21083 break;
34eaf542
TT
21084 case DW_TAG_template_type_param:
21085 suppress_add = 1;
21086 /* Fall through. */
c906108c 21087 case DW_TAG_class_type:
680b30c7 21088 case DW_TAG_interface_type:
c906108c
SS
21089 case DW_TAG_structure_type:
21090 case DW_TAG_union_type:
72019c9c 21091 case DW_TAG_set_type:
c906108c 21092 case DW_TAG_enumeration_type:
f1e6e072 21093 SYMBOL_ACLASS_INDEX (sym) = LOC_TYPEDEF;
176620f1 21094 SYMBOL_DOMAIN (sym) = STRUCT_DOMAIN;
c906108c 21095
63d06c5c 21096 {
9c37b5ae 21097 /* NOTE: carlton/2003-11-10: C++ class symbols shouldn't
63d06c5c
DC
21098 really ever be static objects: otherwise, if you try
21099 to, say, break of a class's method and you're in a file
21100 which doesn't mention that class, it won't work unless
21101 the check for all static symbols in lookup_symbol_aux
21102 saves you. See the OtherFileClass tests in
21103 gdb.c++/namespace.exp. */
21104
e37fd15a 21105 if (!suppress_add)
34eaf542 21106 {
c24bdb02 21107 buildsym_compunit *builder = cu->get_builder ();
804d2729 21108 list_to_add
c24bdb02 21109 = (cu->list_in_scope == builder->get_file_symbols ()
804d2729 21110 && cu->language == language_cplus
c24bdb02 21111 ? builder->get_global_symbols ()
804d2729 21112 : cu->list_in_scope);
63d06c5c 21113
64382290 21114 /* The semantics of C++ state that "struct foo {
9c37b5ae 21115 ... }" also defines a typedef for "foo". */
64382290 21116 if (cu->language == language_cplus
45280282 21117 || cu->language == language_ada
c44af4eb
TT
21118 || cu->language == language_d
21119 || cu->language == language_rust)
64382290
TT
21120 {
21121 /* The symbol's name is already allocated along
21122 with this objfile, so we don't need to
21123 duplicate it for the type. */
7d93a1e0 21124 if (SYMBOL_TYPE (sym)->name () == 0)
d0e39ea2 21125 SYMBOL_TYPE (sym)->set_name (sym->search_name ());
64382290 21126 }
63d06c5c
DC
21127 }
21128 }
c906108c
SS
21129 break;
21130 case DW_TAG_typedef:
f1e6e072 21131 SYMBOL_ACLASS_INDEX (sym) = LOC_TYPEDEF;
63d06c5c 21132 SYMBOL_DOMAIN (sym) = VAR_DOMAIN;
e37fd15a 21133 list_to_add = cu->list_in_scope;
63d06c5c 21134 break;
c906108c 21135 case DW_TAG_base_type:
a02abb62 21136 case DW_TAG_subrange_type:
f1e6e072 21137 SYMBOL_ACLASS_INDEX (sym) = LOC_TYPEDEF;
176620f1 21138 SYMBOL_DOMAIN (sym) = VAR_DOMAIN;
e37fd15a 21139 list_to_add = cu->list_in_scope;
c906108c
SS
21140 break;
21141 case DW_TAG_enumerator:
e142c38c 21142 attr = dwarf2_attr (die, DW_AT_const_value, cu);
435d3d88 21143 if (attr != nullptr)
c906108c 21144 {
e7c27a73 21145 dwarf2_const_value (attr, sym, cu);
c906108c 21146 }
63d06c5c
DC
21147 {
21148 /* NOTE: carlton/2003-11-10: See comment above in the
21149 DW_TAG_class_type, etc. block. */
21150
804d2729 21151 list_to_add
c24bdb02 21152 = (cu->list_in_scope == cu->get_builder ()->get_file_symbols ()
804d2729 21153 && cu->language == language_cplus
c24bdb02 21154 ? cu->get_builder ()->get_global_symbols ()
804d2729 21155 : cu->list_in_scope);
63d06c5c 21156 }
c906108c 21157 break;
74921315 21158 case DW_TAG_imported_declaration:
5c4e30ca 21159 case DW_TAG_namespace:
f1e6e072 21160 SYMBOL_ACLASS_INDEX (sym) = LOC_TYPEDEF;
c24bdb02 21161 list_to_add = cu->get_builder ()->get_global_symbols ();
5c4e30ca 21162 break;
530e8392
KB
21163 case DW_TAG_module:
21164 SYMBOL_ACLASS_INDEX (sym) = LOC_TYPEDEF;
21165 SYMBOL_DOMAIN (sym) = MODULE_DOMAIN;
c24bdb02 21166 list_to_add = cu->get_builder ()->get_global_symbols ();
530e8392 21167 break;
4357ac6c 21168 case DW_TAG_common_block:
f1e6e072 21169 SYMBOL_ACLASS_INDEX (sym) = LOC_COMMON_BLOCK;
4357ac6c 21170 SYMBOL_DOMAIN (sym) = COMMON_BLOCK_DOMAIN;
d3cb6808 21171 add_symbol_to_list (sym, cu->list_in_scope);
4357ac6c 21172 break;
c906108c
SS
21173 default:
21174 /* Not a tag we recognize. Hopefully we aren't processing
21175 trash data, but since we must specifically ignore things
21176 we don't recognize, there is nothing else we should do at
0963b4bd 21177 this point. */
b98664d3 21178 complaint (_("unsupported tag: '%s'"),
4d3c2250 21179 dwarf_tag_name (die->tag));
c906108c
SS
21180 break;
21181 }
df8a16a1 21182
e37fd15a
SW
21183 if (suppress_add)
21184 {
21185 sym->hash_next = objfile->template_symbols;
21186 objfile->template_symbols = sym;
21187 list_to_add = NULL;
21188 }
21189
21190 if (list_to_add != NULL)
d3cb6808 21191 add_symbol_to_list (sym, list_to_add);
e37fd15a 21192
df8a16a1
DJ
21193 /* For the benefit of old versions of GCC, check for anonymous
21194 namespaces based on the demangled name. */
4d4ec4e5 21195 if (!cu->processing_has_namespace_info
94af9270 21196 && cu->language == language_cplus)
c24bdb02 21197 cp_scan_for_anonymous_namespaces (cu->get_builder (), sym, objfile);
c906108c
SS
21198 }
21199 return (sym);
21200}
21201
98bfdba5
PA
21202/* Given an attr with a DW_FORM_dataN value in host byte order,
21203 zero-extend it as appropriate for the symbol's type. The DWARF
21204 standard (v4) is not entirely clear about the meaning of using
21205 DW_FORM_dataN for a constant with a signed type, where the type is
21206 wider than the data. The conclusion of a discussion on the DWARF
21207 list was that this is unspecified. We choose to always zero-extend
21208 because that is the interpretation long in use by GCC. */
c906108c 21209
98bfdba5 21210static gdb_byte *
ff39bb5e 21211dwarf2_const_value_data (const struct attribute *attr, struct obstack *obstack,
12df843f 21212 struct dwarf2_cu *cu, LONGEST *value, int bits)
c906108c 21213{
5e22e966 21214 struct objfile *objfile = cu->per_objfile->objfile;
e17a4113
UW
21215 enum bfd_endian byte_order = bfd_big_endian (objfile->obfd) ?
21216 BFD_ENDIAN_BIG : BFD_ENDIAN_LITTLE;
98bfdba5
PA
21217 LONGEST l = DW_UNSND (attr);
21218
21219 if (bits < sizeof (*value) * 8)
21220 {
21221 l &= ((LONGEST) 1 << bits) - 1;
21222 *value = l;
21223 }
21224 else if (bits == sizeof (*value) * 8)
21225 *value = l;
21226 else
21227 {
224c3ddb 21228 gdb_byte *bytes = (gdb_byte *) obstack_alloc (obstack, bits / 8);
98bfdba5
PA
21229 store_unsigned_integer (bytes, bits / 8, byte_order, l);
21230 return bytes;
21231 }
21232
21233 return NULL;
21234}
21235
21236/* Read a constant value from an attribute. Either set *VALUE, or if
21237 the value does not fit in *VALUE, set *BYTES - either already
21238 allocated on the objfile obstack, or newly allocated on OBSTACK,
21239 or, set *BATON, if we translated the constant to a location
21240 expression. */
21241
21242static void
ff39bb5e 21243dwarf2_const_value_attr (const struct attribute *attr, struct type *type,
98bfdba5
PA
21244 const char *name, struct obstack *obstack,
21245 struct dwarf2_cu *cu,
d521ce57 21246 LONGEST *value, const gdb_byte **bytes,
98bfdba5
PA
21247 struct dwarf2_locexpr_baton **baton)
21248{
5e22e966 21249 dwarf2_per_objfile *per_objfile = cu->per_objfile;
a50264ba 21250 struct objfile *objfile = per_objfile->objfile;
98bfdba5 21251 struct comp_unit_head *cu_header = &cu->header;
c906108c 21252 struct dwarf_block *blk;
98bfdba5
PA
21253 enum bfd_endian byte_order = (bfd_big_endian (objfile->obfd) ?
21254 BFD_ENDIAN_BIG : BFD_ENDIAN_LITTLE);
21255
21256 *value = 0;
21257 *bytes = NULL;
21258 *baton = NULL;
c906108c
SS
21259
21260 switch (attr->form)
21261 {
21262 case DW_FORM_addr:
336d760d 21263 case DW_FORM_addrx:
3019eac3 21264 case DW_FORM_GNU_addr_index:
ac56253d 21265 {
ac56253d
TT
21266 gdb_byte *data;
21267
98bfdba5
PA
21268 if (TYPE_LENGTH (type) != cu_header->addr_size)
21269 dwarf2_const_value_length_mismatch_complaint (name,
ac56253d 21270 cu_header->addr_size,
98bfdba5 21271 TYPE_LENGTH (type));
ac56253d
TT
21272 /* Symbols of this form are reasonably rare, so we just
21273 piggyback on the existing location code rather than writing
21274 a new implementation of symbol_computed_ops. */
8d749320 21275 *baton = XOBNEW (obstack, struct dwarf2_locexpr_baton);
a50264ba 21276 (*baton)->per_objfile = per_objfile;
98bfdba5
PA
21277 (*baton)->per_cu = cu->per_cu;
21278 gdb_assert ((*baton)->per_cu);
ac56253d 21279
98bfdba5 21280 (*baton)->size = 2 + cu_header->addr_size;
224c3ddb 21281 data = (gdb_byte *) obstack_alloc (obstack, (*baton)->size);
98bfdba5 21282 (*baton)->data = data;
ac56253d
TT
21283
21284 data[0] = DW_OP_addr;
21285 store_unsigned_integer (&data[1], cu_header->addr_size,
21286 byte_order, DW_ADDR (attr));
21287 data[cu_header->addr_size + 1] = DW_OP_stack_value;
ac56253d 21288 }
c906108c 21289 break;
4ac36638 21290 case DW_FORM_string:
93b5768b 21291 case DW_FORM_strp:
cf532bd1 21292 case DW_FORM_strx:
3019eac3 21293 case DW_FORM_GNU_str_index:
36586728 21294 case DW_FORM_GNU_strp_alt:
98bfdba5
PA
21295 /* DW_STRING is already allocated on the objfile obstack, point
21296 directly to it. */
d521ce57 21297 *bytes = (const gdb_byte *) DW_STRING (attr);
93b5768b 21298 break;
c906108c
SS
21299 case DW_FORM_block1:
21300 case DW_FORM_block2:
21301 case DW_FORM_block4:
21302 case DW_FORM_block:
2dc7f7b3 21303 case DW_FORM_exprloc:
0224619f 21304 case DW_FORM_data16:
c906108c 21305 blk = DW_BLOCK (attr);
98bfdba5
PA
21306 if (TYPE_LENGTH (type) != blk->size)
21307 dwarf2_const_value_length_mismatch_complaint (name, blk->size,
21308 TYPE_LENGTH (type));
21309 *bytes = blk->data;
c906108c 21310 break;
2df3850c
JM
21311
21312 /* The DW_AT_const_value attributes are supposed to carry the
21313 symbol's value "represented as it would be on the target
21314 architecture." By the time we get here, it's already been
21315 converted to host endianness, so we just need to sign- or
21316 zero-extend it as appropriate. */
21317 case DW_FORM_data1:
3aef2284 21318 *bytes = dwarf2_const_value_data (attr, obstack, cu, value, 8);
2df3850c 21319 break;
c906108c 21320 case DW_FORM_data2:
3aef2284 21321 *bytes = dwarf2_const_value_data (attr, obstack, cu, value, 16);
2df3850c 21322 break;
c906108c 21323 case DW_FORM_data4:
3aef2284 21324 *bytes = dwarf2_const_value_data (attr, obstack, cu, value, 32);
2df3850c 21325 break;
c906108c 21326 case DW_FORM_data8:
3aef2284 21327 *bytes = dwarf2_const_value_data (attr, obstack, cu, value, 64);
2df3850c
JM
21328 break;
21329
c906108c 21330 case DW_FORM_sdata:
663c44ac 21331 case DW_FORM_implicit_const:
98bfdba5 21332 *value = DW_SND (attr);
2df3850c
JM
21333 break;
21334
c906108c 21335 case DW_FORM_udata:
98bfdba5 21336 *value = DW_UNSND (attr);
c906108c 21337 break;
2df3850c 21338
c906108c 21339 default:
b98664d3 21340 complaint (_("unsupported const value attribute form: '%s'"),
4d3c2250 21341 dwarf_form_name (attr->form));
98bfdba5 21342 *value = 0;
c906108c
SS
21343 break;
21344 }
21345}
21346
2df3850c 21347
98bfdba5
PA
21348/* Copy constant value from an attribute to a symbol. */
21349
2df3850c 21350static void
ff39bb5e 21351dwarf2_const_value (const struct attribute *attr, struct symbol *sym,
98bfdba5 21352 struct dwarf2_cu *cu)
2df3850c 21353{
5e22e966 21354 struct objfile *objfile = cu->per_objfile->objfile;
12df843f 21355 LONGEST value;
d521ce57 21356 const gdb_byte *bytes;
98bfdba5 21357 struct dwarf2_locexpr_baton *baton;
2df3850c 21358
98bfdba5 21359 dwarf2_const_value_attr (attr, SYMBOL_TYPE (sym),
987012b8 21360 sym->print_name (),
98bfdba5
PA
21361 &objfile->objfile_obstack, cu,
21362 &value, &bytes, &baton);
2df3850c 21363
98bfdba5
PA
21364 if (baton != NULL)
21365 {
98bfdba5 21366 SYMBOL_LOCATION_BATON (sym) = baton;
f1e6e072 21367 SYMBOL_ACLASS_INDEX (sym) = dwarf2_locexpr_index;
98bfdba5
PA
21368 }
21369 else if (bytes != NULL)
21370 {
21371 SYMBOL_VALUE_BYTES (sym) = bytes;
f1e6e072 21372 SYMBOL_ACLASS_INDEX (sym) = LOC_CONST_BYTES;
98bfdba5
PA
21373 }
21374 else
21375 {
21376 SYMBOL_VALUE (sym) = value;
f1e6e072 21377 SYMBOL_ACLASS_INDEX (sym) = LOC_CONST;
98bfdba5 21378 }
2df3850c
JM
21379}
21380
c906108c
SS
21381/* Return the type of the die in question using its DW_AT_type attribute. */
21382
21383static struct type *
e7c27a73 21384die_type (struct die_info *die, struct dwarf2_cu *cu)
c906108c 21385{
c906108c 21386 struct attribute *type_attr;
c906108c 21387
e142c38c 21388 type_attr = dwarf2_attr (die, DW_AT_type, cu);
c906108c
SS
21389 if (!type_attr)
21390 {
5e22e966 21391 struct objfile *objfile = cu->per_objfile->objfile;
c906108c 21392 /* A missing DW_AT_type represents a void type. */
518817b3 21393 return objfile_type (objfile)->builtin_void;
c906108c 21394 }
348e048f 21395
673bfd45 21396 return lookup_die_type (die, type_attr, cu);
c906108c
SS
21397}
21398
b4ba55a1
JB
21399/* True iff CU's producer generates GNAT Ada auxiliary information
21400 that allows to find parallel types through that information instead
21401 of having to do expensive parallel lookups by type name. */
21402
21403static int
21404need_gnat_info (struct dwarf2_cu *cu)
21405{
de4cb04a
JB
21406 /* Assume that the Ada compiler was GNAT, which always produces
21407 the auxiliary information. */
21408 return (cu->language == language_ada);
b4ba55a1
JB
21409}
21410
b4ba55a1
JB
21411/* Return the auxiliary type of the die in question using its
21412 DW_AT_GNAT_descriptive_type attribute. Returns NULL if the
21413 attribute is not present. */
21414
21415static struct type *
21416die_descriptive_type (struct die_info *die, struct dwarf2_cu *cu)
21417{
b4ba55a1 21418 struct attribute *type_attr;
b4ba55a1
JB
21419
21420 type_attr = dwarf2_attr (die, DW_AT_GNAT_descriptive_type, cu);
21421 if (!type_attr)
21422 return NULL;
21423
673bfd45 21424 return lookup_die_type (die, type_attr, cu);
b4ba55a1
JB
21425}
21426
21427/* If DIE has a descriptive_type attribute, then set the TYPE's
21428 descriptive type accordingly. */
21429
21430static void
21431set_descriptive_type (struct type *type, struct die_info *die,
21432 struct dwarf2_cu *cu)
21433{
21434 struct type *descriptive_type = die_descriptive_type (die, cu);
21435
21436 if (descriptive_type)
21437 {
21438 ALLOCATE_GNAT_AUX_TYPE (type);
21439 TYPE_DESCRIPTIVE_TYPE (type) = descriptive_type;
21440 }
21441}
21442
c906108c
SS
21443/* Return the containing type of the die in question using its
21444 DW_AT_containing_type attribute. */
21445
21446static struct type *
e7c27a73 21447die_containing_type (struct die_info *die, struct dwarf2_cu *cu)
c906108c 21448{
c906108c 21449 struct attribute *type_attr;
5e22e966 21450 struct objfile *objfile = cu->per_objfile->objfile;
c906108c 21451
e142c38c 21452 type_attr = dwarf2_attr (die, DW_AT_containing_type, cu);
33ac96f0
JK
21453 if (!type_attr)
21454 error (_("Dwarf Error: Problem turning containing type into gdb type "
518817b3 21455 "[in module %s]"), objfile_name (objfile));
33ac96f0 21456
673bfd45 21457 return lookup_die_type (die, type_attr, cu);
c906108c
SS
21458}
21459
ac9ec31b
DE
21460/* Return an error marker type to use for the ill formed type in DIE/CU. */
21461
21462static struct type *
21463build_error_marker_type (struct dwarf2_cu *cu, struct die_info *die)
21464{
976ca316
SM
21465 dwarf2_per_objfile *per_objfile = cu->per_objfile;
21466 struct objfile *objfile = per_objfile->objfile;
528e1572 21467 char *saved;
ac9ec31b 21468
528e1572
SM
21469 std::string message
21470 = string_printf (_("<unknown type in %s, CU %s, DIE %s>"),
21471 objfile_name (objfile),
21472 sect_offset_str (cu->header.sect_off),
21473 sect_offset_str (die->sect_off));
efba19b0 21474 saved = obstack_strdup (&objfile->objfile_obstack, message);
ac9ec31b 21475
19f392bc 21476 return init_type (objfile, TYPE_CODE_ERROR, 0, saved);
ac9ec31b
DE
21477}
21478
673bfd45 21479/* Look up the type of DIE in CU using its type attribute ATTR.
ac9ec31b
DE
21480 ATTR must be one of: DW_AT_type, DW_AT_GNAT_descriptive_type,
21481 DW_AT_containing_type.
673bfd45
DE
21482 If there is no type substitute an error marker. */
21483
c906108c 21484static struct type *
ff39bb5e 21485lookup_die_type (struct die_info *die, const struct attribute *attr,
673bfd45 21486 struct dwarf2_cu *cu)
c906108c 21487{
976ca316
SM
21488 dwarf2_per_objfile *per_objfile = cu->per_objfile;
21489 struct objfile *objfile = per_objfile->objfile;
f792889a
DJ
21490 struct type *this_type;
21491
ac9ec31b
DE
21492 gdb_assert (attr->name == DW_AT_type
21493 || attr->name == DW_AT_GNAT_descriptive_type
21494 || attr->name == DW_AT_containing_type);
21495
673bfd45
DE
21496 /* First see if we have it cached. */
21497
36586728
TT
21498 if (attr->form == DW_FORM_GNU_ref_alt)
21499 {
21500 struct dwarf2_per_cu_data *per_cu;
0826b30a 21501 sect_offset sect_off = attr->get_ref_die_offset ();
36586728 21502
976ca316
SM
21503 per_cu = dwarf2_find_containing_comp_unit (sect_off, 1, per_objfile);
21504 this_type = get_die_type_at_offset (sect_off, per_cu, per_objfile);
36586728 21505 }
cd6c91b4 21506 else if (attr->form_is_ref ())
673bfd45 21507 {
0826b30a 21508 sect_offset sect_off = attr->get_ref_die_offset ();
673bfd45 21509
976ca316 21510 this_type = get_die_type_at_offset (sect_off, cu->per_cu, per_objfile);
673bfd45 21511 }
55f1336d 21512 else if (attr->form == DW_FORM_ref_sig8)
673bfd45 21513 {
ac9ec31b 21514 ULONGEST signature = DW_SIGNATURE (attr);
673bfd45 21515
ac9ec31b 21516 return get_signatured_type (die, signature, cu);
673bfd45
DE
21517 }
21518 else
21519 {
b98664d3 21520 complaint (_("Dwarf Error: Bad type attribute %s in DIE"
9d8780f0
SM
21521 " at %s [in module %s]"),
21522 dwarf_attr_name (attr->name), sect_offset_str (die->sect_off),
4262abfb 21523 objfile_name (objfile));
ac9ec31b 21524 return build_error_marker_type (cu, die);
673bfd45
DE
21525 }
21526
21527 /* If not cached we need to read it in. */
21528
21529 if (this_type == NULL)
21530 {
ac9ec31b 21531 struct die_info *type_die = NULL;
673bfd45
DE
21532 struct dwarf2_cu *type_cu = cu;
21533
cd6c91b4 21534 if (attr->form_is_ref ())
ac9ec31b
DE
21535 type_die = follow_die_ref (die, attr, &type_cu);
21536 if (type_die == NULL)
21537 return build_error_marker_type (cu, die);
21538 /* If we find the type now, it's probably because the type came
3019eac3
DE
21539 from an inter-CU reference and the type's CU got expanded before
21540 ours. */
ac9ec31b 21541 this_type = read_type_die (type_die, type_cu);
673bfd45
DE
21542 }
21543
21544 /* If we still don't have a type use an error marker. */
21545
21546 if (this_type == NULL)
ac9ec31b 21547 return build_error_marker_type (cu, die);
673bfd45 21548
f792889a 21549 return this_type;
c906108c
SS
21550}
21551
673bfd45
DE
21552/* Return the type in DIE, CU.
21553 Returns NULL for invalid types.
21554
02142a6c 21555 This first does a lookup in die_type_hash,
673bfd45
DE
21556 and only reads the die in if necessary.
21557
21558 NOTE: This can be called when reading in partial or full symbols. */
21559
f792889a 21560static struct type *
e7c27a73 21561read_type_die (struct die_info *die, struct dwarf2_cu *cu)
c906108c 21562{
f792889a
DJ
21563 struct type *this_type;
21564
21565 this_type = get_die_type (die, cu);
21566 if (this_type)
21567 return this_type;
21568
673bfd45
DE
21569 return read_type_die_1 (die, cu);
21570}
21571
21572/* Read the type in DIE, CU.
21573 Returns NULL for invalid types. */
21574
21575static struct type *
21576read_type_die_1 (struct die_info *die, struct dwarf2_cu *cu)
21577{
21578 struct type *this_type = NULL;
21579
c906108c
SS
21580 switch (die->tag)
21581 {
21582 case DW_TAG_class_type:
680b30c7 21583 case DW_TAG_interface_type:
c906108c
SS
21584 case DW_TAG_structure_type:
21585 case DW_TAG_union_type:
f792889a 21586 this_type = read_structure_type (die, cu);
c906108c
SS
21587 break;
21588 case DW_TAG_enumeration_type:
f792889a 21589 this_type = read_enumeration_type (die, cu);
c906108c
SS
21590 break;
21591 case DW_TAG_subprogram:
21592 case DW_TAG_subroutine_type:
edb3359d 21593 case DW_TAG_inlined_subroutine:
f792889a 21594 this_type = read_subroutine_type (die, cu);
c906108c
SS
21595 break;
21596 case DW_TAG_array_type:
f792889a 21597 this_type = read_array_type (die, cu);
c906108c 21598 break;
72019c9c 21599 case DW_TAG_set_type:
f792889a 21600 this_type = read_set_type (die, cu);
72019c9c 21601 break;
c906108c 21602 case DW_TAG_pointer_type:
f792889a 21603 this_type = read_tag_pointer_type (die, cu);
c906108c
SS
21604 break;
21605 case DW_TAG_ptr_to_member_type:
f792889a 21606 this_type = read_tag_ptr_to_member_type (die, cu);
c906108c
SS
21607 break;
21608 case DW_TAG_reference_type:
4297a3f0
AV
21609 this_type = read_tag_reference_type (die, cu, TYPE_CODE_REF);
21610 break;
21611 case DW_TAG_rvalue_reference_type:
21612 this_type = read_tag_reference_type (die, cu, TYPE_CODE_RVALUE_REF);
c906108c
SS
21613 break;
21614 case DW_TAG_const_type:
f792889a 21615 this_type = read_tag_const_type (die, cu);
c906108c
SS
21616 break;
21617 case DW_TAG_volatile_type:
f792889a 21618 this_type = read_tag_volatile_type (die, cu);
c906108c 21619 break;
06d66ee9
TT
21620 case DW_TAG_restrict_type:
21621 this_type = read_tag_restrict_type (die, cu);
21622 break;
c906108c 21623 case DW_TAG_string_type:
f792889a 21624 this_type = read_tag_string_type (die, cu);
c906108c
SS
21625 break;
21626 case DW_TAG_typedef:
f792889a 21627 this_type = read_typedef (die, cu);
c906108c 21628 break;
a02abb62 21629 case DW_TAG_subrange_type:
f792889a 21630 this_type = read_subrange_type (die, cu);
a02abb62 21631 break;
c906108c 21632 case DW_TAG_base_type:
f792889a 21633 this_type = read_base_type (die, cu);
c906108c 21634 break;
81a17f79 21635 case DW_TAG_unspecified_type:
f792889a 21636 this_type = read_unspecified_type (die, cu);
81a17f79 21637 break;
0114d602
DJ
21638 case DW_TAG_namespace:
21639 this_type = read_namespace_type (die, cu);
21640 break;
f55ee35c
JK
21641 case DW_TAG_module:
21642 this_type = read_module_type (die, cu);
21643 break;
a2c2acaf
MW
21644 case DW_TAG_atomic_type:
21645 this_type = read_tag_atomic_type (die, cu);
21646 break;
c906108c 21647 default:
b98664d3 21648 complaint (_("unexpected tag in read_type_die: '%s'"),
4d3c2250 21649 dwarf_tag_name (die->tag));
c906108c
SS
21650 break;
21651 }
63d06c5c 21652
f792889a 21653 return this_type;
63d06c5c
DC
21654}
21655
abc72ce4
DE
21656/* See if we can figure out if the class lives in a namespace. We do
21657 this by looking for a member function; its demangled name will
21658 contain namespace info, if there is any.
21659 Return the computed name or NULL.
21660 Space for the result is allocated on the objfile's obstack.
21661 This is the full-die version of guess_partial_die_structure_name.
21662 In this case we know DIE has no useful parent. */
21663
43816ebc 21664static const char *
abc72ce4
DE
21665guess_full_die_structure_name (struct die_info *die, struct dwarf2_cu *cu)
21666{
21667 struct die_info *spec_die;
21668 struct dwarf2_cu *spec_cu;
21669 struct die_info *child;
5e22e966 21670 struct objfile *objfile = cu->per_objfile->objfile;
abc72ce4
DE
21671
21672 spec_cu = cu;
21673 spec_die = die_specification (die, &spec_cu);
21674 if (spec_die != NULL)
21675 {
21676 die = spec_die;
21677 cu = spec_cu;
21678 }
21679
21680 for (child = die->child;
21681 child != NULL;
21682 child = child->sibling)
21683 {
21684 if (child->tag == DW_TAG_subprogram)
21685 {
73b9be8b 21686 const char *linkage_name = dw2_linkage_name (child, cu);
abc72ce4 21687
7d45c7c3 21688 if (linkage_name != NULL)
abc72ce4 21689 {
43816ebc
TT
21690 gdb::unique_xmalloc_ptr<char> actual_name
21691 (language_class_name_from_physname (cu->language_defn,
21692 linkage_name));
21693 const char *name = NULL;
abc72ce4
DE
21694
21695 if (actual_name != NULL)
21696 {
15d034d0 21697 const char *die_name = dwarf2_name (die, cu);
abc72ce4
DE
21698
21699 if (die_name != NULL
43816ebc 21700 && strcmp (die_name, actual_name.get ()) != 0)
abc72ce4
DE
21701 {
21702 /* Strip off the class name from the full name.
21703 We want the prefix. */
21704 int die_name_len = strlen (die_name);
43816ebc
TT
21705 int actual_name_len = strlen (actual_name.get ());
21706 const char *ptr = actual_name.get ();
abc72ce4
DE
21707
21708 /* Test for '::' as a sanity check. */
21709 if (actual_name_len > die_name_len + 2
43816ebc 21710 && ptr[actual_name_len - die_name_len - 1] == ':')
0cf9feb9 21711 name = obstack_strndup (
e3b94546 21712 &objfile->per_bfd->storage_obstack,
43816ebc 21713 ptr, actual_name_len - die_name_len - 2);
abc72ce4
DE
21714 }
21715 }
abc72ce4
DE
21716 return name;
21717 }
21718 }
21719 }
21720
21721 return NULL;
21722}
21723
96408a79
SA
21724/* GCC might emit a nameless typedef that has a linkage name. Determine the
21725 prefix part in such case. See
21726 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47510. */
21727
a121b7c1 21728static const char *
96408a79
SA
21729anonymous_struct_prefix (struct die_info *die, struct dwarf2_cu *cu)
21730{
21731 struct attribute *attr;
e6a959d6 21732 const char *base;
96408a79
SA
21733
21734 if (die->tag != DW_TAG_class_type && die->tag != DW_TAG_interface_type
21735 && die->tag != DW_TAG_structure_type && die->tag != DW_TAG_union_type)
21736 return NULL;
21737
7d45c7c3 21738 if (dwarf2_string_attr (die, DW_AT_name, cu) != NULL)
96408a79
SA
21739 return NULL;
21740
73b9be8b 21741 attr = dw2_linkage_name_attr (die, cu);
96408a79
SA
21742 if (attr == NULL || DW_STRING (attr) == NULL)
21743 return NULL;
21744
21745 /* dwarf2_name had to be already called. */
21746 gdb_assert (DW_STRING_IS_CANONICAL (attr));
21747
21748 /* Strip the base name, keep any leading namespaces/classes. */
21749 base = strrchr (DW_STRING (attr), ':');
21750 if (base == NULL || base == DW_STRING (attr) || base[-1] != ':')
21751 return "";
21752
5e22e966 21753 struct objfile *objfile = cu->per_objfile->objfile;
0cf9feb9
TT
21754 return obstack_strndup (&objfile->per_bfd->storage_obstack,
21755 DW_STRING (attr),
21756 &base[-1] - DW_STRING (attr));
96408a79
SA
21757}
21758
fdde2d81 21759/* Return the name of the namespace/class that DIE is defined within,
0114d602 21760 or "" if we can't tell. The caller should not xfree the result.
fdde2d81 21761
0114d602
DJ
21762 For example, if we're within the method foo() in the following
21763 code:
21764
21765 namespace N {
21766 class C {
21767 void foo () {
21768 }
21769 };
21770 }
21771
21772 then determine_prefix on foo's die will return "N::C". */
fdde2d81 21773
0d5cff50 21774static const char *
e142c38c 21775determine_prefix (struct die_info *die, struct dwarf2_cu *cu)
63d06c5c 21776{
976ca316 21777 dwarf2_per_objfile *per_objfile = cu->per_objfile;
0114d602
DJ
21778 struct die_info *parent, *spec_die;
21779 struct dwarf2_cu *spec_cu;
21780 struct type *parent_type;
a121b7c1 21781 const char *retval;
63d06c5c 21782
9c37b5ae 21783 if (cu->language != language_cplus
c44af4eb
TT
21784 && cu->language != language_fortran && cu->language != language_d
21785 && cu->language != language_rust)
0114d602
DJ
21786 return "";
21787
96408a79
SA
21788 retval = anonymous_struct_prefix (die, cu);
21789 if (retval)
21790 return retval;
21791
0114d602
DJ
21792 /* We have to be careful in the presence of DW_AT_specification.
21793 For example, with GCC 3.4, given the code
21794
21795 namespace N {
21796 void foo() {
21797 // Definition of N::foo.
21798 }
21799 }
21800
21801 then we'll have a tree of DIEs like this:
21802
21803 1: DW_TAG_compile_unit
21804 2: DW_TAG_namespace // N
21805 3: DW_TAG_subprogram // declaration of N::foo
21806 4: DW_TAG_subprogram // definition of N::foo
21807 DW_AT_specification // refers to die #3
21808
21809 Thus, when processing die #4, we have to pretend that we're in
21810 the context of its DW_AT_specification, namely the contex of die
21811 #3. */
21812 spec_cu = cu;
21813 spec_die = die_specification (die, &spec_cu);
21814 if (spec_die == NULL)
21815 parent = die->parent;
21816 else
63d06c5c 21817 {
0114d602
DJ
21818 parent = spec_die->parent;
21819 cu = spec_cu;
63d06c5c 21820 }
0114d602
DJ
21821
21822 if (parent == NULL)
21823 return "";
98bfdba5
PA
21824 else if (parent->building_fullname)
21825 {
21826 const char *name;
21827 const char *parent_name;
21828
21829 /* It has been seen on RealView 2.2 built binaries,
21830 DW_TAG_template_type_param types actually _defined_ as
21831 children of the parent class:
21832
21833 enum E {};
21834 template class <class Enum> Class{};
21835 Class<enum E> class_e;
21836
21837 1: DW_TAG_class_type (Class)
21838 2: DW_TAG_enumeration_type (E)
21839 3: DW_TAG_enumerator (enum1:0)
21840 3: DW_TAG_enumerator (enum2:1)
21841 ...
21842 2: DW_TAG_template_type_param
21843 DW_AT_type DW_FORM_ref_udata (E)
21844
21845 Besides being broken debug info, it can put GDB into an
21846 infinite loop. Consider:
21847
21848 When we're building the full name for Class<E>, we'll start
21849 at Class, and go look over its template type parameters,
21850 finding E. We'll then try to build the full name of E, and
21851 reach here. We're now trying to build the full name of E,
21852 and look over the parent DIE for containing scope. In the
21853 broken case, if we followed the parent DIE of E, we'd again
21854 find Class, and once again go look at its template type
21855 arguments, etc., etc. Simply don't consider such parent die
21856 as source-level parent of this die (it can't be, the language
21857 doesn't allow it), and break the loop here. */
21858 name = dwarf2_name (die, cu);
21859 parent_name = dwarf2_name (parent, cu);
b98664d3 21860 complaint (_("template param type '%s' defined within parent '%s'"),
98bfdba5
PA
21861 name ? name : "<unknown>",
21862 parent_name ? parent_name : "<unknown>");
21863 return "";
21864 }
63d06c5c 21865 else
0114d602
DJ
21866 switch (parent->tag)
21867 {
63d06c5c 21868 case DW_TAG_namespace:
0114d602 21869 parent_type = read_type_die (parent, cu);
acebe513
UW
21870 /* GCC 4.0 and 4.1 had a bug (PR c++/28460) where they generated bogus
21871 DW_TAG_namespace DIEs with a name of "::" for the global namespace.
21872 Work around this problem here. */
21873 if (cu->language == language_cplus
7d93a1e0 21874 && strcmp (parent_type->name (), "::") == 0)
acebe513 21875 return "";
0114d602 21876 /* We give a name to even anonymous namespaces. */
7d93a1e0 21877 return parent_type->name ();
63d06c5c 21878 case DW_TAG_class_type:
680b30c7 21879 case DW_TAG_interface_type:
63d06c5c 21880 case DW_TAG_structure_type:
0114d602 21881 case DW_TAG_union_type:
f55ee35c 21882 case DW_TAG_module:
0114d602 21883 parent_type = read_type_die (parent, cu);
7d93a1e0
SM
21884 if (parent_type->name () != NULL)
21885 return parent_type->name ();
0114d602
DJ
21886 else
21887 /* An anonymous structure is only allowed non-static data
21888 members; no typedefs, no member functions, et cetera.
21889 So it does not need a prefix. */
21890 return "";
abc72ce4 21891 case DW_TAG_compile_unit:
95554aad 21892 case DW_TAG_partial_unit:
abc72ce4
DE
21893 /* gcc-4.5 -gdwarf-4 can drop the enclosing namespace. Cope. */
21894 if (cu->language == language_cplus
976ca316 21895 && !per_objfile->per_bfd->types.empty ()
abc72ce4
DE
21896 && die->child != NULL
21897 && (die->tag == DW_TAG_class_type
21898 || die->tag == DW_TAG_structure_type
21899 || die->tag == DW_TAG_union_type))
21900 {
43816ebc 21901 const char *name = guess_full_die_structure_name (die, cu);
abc72ce4
DE
21902 if (name != NULL)
21903 return name;
21904 }
21905 return "";
0a4b0913
AB
21906 case DW_TAG_subprogram:
21907 /* Nested subroutines in Fortran get a prefix with the name
21908 of the parent's subroutine. */
21909 if (cu->language == language_fortran)
21910 {
21911 if ((die->tag == DW_TAG_subprogram)
21912 && (dwarf2_name (parent, cu) != NULL))
21913 return dwarf2_name (parent, cu);
21914 }
21915 return determine_prefix (parent, cu);
3d567982
TT
21916 case DW_TAG_enumeration_type:
21917 parent_type = read_type_die (parent, cu);
21918 if (TYPE_DECLARED_CLASS (parent_type))
21919 {
7d93a1e0
SM
21920 if (parent_type->name () != NULL)
21921 return parent_type->name ();
3d567982
TT
21922 return "";
21923 }
21924 /* Fall through. */
63d06c5c 21925 default:
8176b9b8 21926 return determine_prefix (parent, cu);
63d06c5c 21927 }
63d06c5c
DC
21928}
21929
3e43a32a
MS
21930/* Return a newly-allocated string formed by concatenating PREFIX and SUFFIX
21931 with appropriate separator. If PREFIX or SUFFIX is NULL or empty, then
21932 simply copy the SUFFIX or PREFIX, respectively. If OBS is non-null, perform
21933 an obconcat, otherwise allocate storage for the result. The CU argument is
21934 used to determine the language and hence, the appropriate separator. */
987504bb 21935
f55ee35c 21936#define MAX_SEP_LEN 7 /* strlen ("__") + strlen ("_MOD_") */
63d06c5c
DC
21937
21938static char *
f55ee35c
JK
21939typename_concat (struct obstack *obs, const char *prefix, const char *suffix,
21940 int physname, struct dwarf2_cu *cu)
63d06c5c 21941{
f55ee35c 21942 const char *lead = "";
5c315b68 21943 const char *sep;
63d06c5c 21944
3e43a32a
MS
21945 if (suffix == NULL || suffix[0] == '\0'
21946 || prefix == NULL || prefix[0] == '\0')
987504bb 21947 sep = "";
45280282
IB
21948 else if (cu->language == language_d)
21949 {
21950 /* For D, the 'main' function could be defined in any module, but it
21951 should never be prefixed. */
21952 if (strcmp (suffix, "D main") == 0)
21953 {
21954 prefix = "";
21955 sep = "";
21956 }
21957 else
21958 sep = ".";
21959 }
f55ee35c
JK
21960 else if (cu->language == language_fortran && physname)
21961 {
21962 /* This is gfortran specific mangling. Normally DW_AT_linkage_name or
21963 DW_AT_MIPS_linkage_name is preferred and used instead. */
21964
21965 lead = "__";
21966 sep = "_MOD_";
21967 }
987504bb
JJ
21968 else
21969 sep = "::";
63d06c5c 21970
6dd47d34
DE
21971 if (prefix == NULL)
21972 prefix = "";
21973 if (suffix == NULL)
21974 suffix = "";
21975
987504bb
JJ
21976 if (obs == NULL)
21977 {
3e43a32a 21978 char *retval
224c3ddb
SM
21979 = ((char *)
21980 xmalloc (strlen (prefix) + MAX_SEP_LEN + strlen (suffix) + 1));
9a619af0 21981
f55ee35c
JK
21982 strcpy (retval, lead);
21983 strcat (retval, prefix);
6dd47d34
DE
21984 strcat (retval, sep);
21985 strcat (retval, suffix);
63d06c5c
DC
21986 return retval;
21987 }
987504bb
JJ
21988 else
21989 {
21990 /* We have an obstack. */
f55ee35c 21991 return obconcat (obs, lead, prefix, sep, suffix, (char *) NULL);
987504bb 21992 }
63d06c5c
DC
21993}
21994
71c25dea
TT
21995/* Get name of a die, return NULL if not found. */
21996
15d034d0
TT
21997static const char *
21998dwarf2_canonicalize_name (const char *name, struct dwarf2_cu *cu,
be1e3d3e 21999 struct objfile *objfile)
71c25dea
TT
22000{
22001 if (name && cu->language == language_cplus)
22002 {
596dc4ad
TT
22003 gdb::unique_xmalloc_ptr<char> canon_name
22004 = cp_canonicalize_string (name);
71c25dea 22005
596dc4ad
TT
22006 if (canon_name != nullptr)
22007 name = objfile->intern (canon_name.get ());
71c25dea
TT
22008 }
22009
22010 return name;
c906108c
SS
22011}
22012
96553a0c
DE
22013/* Get name of a die, return NULL if not found.
22014 Anonymous namespaces are converted to their magic string. */
9219021c 22015
15d034d0 22016static const char *
e142c38c 22017dwarf2_name (struct die_info *die, struct dwarf2_cu *cu)
9219021c
DC
22018{
22019 struct attribute *attr;
5e22e966 22020 struct objfile *objfile = cu->per_objfile->objfile;
9219021c 22021
e142c38c 22022 attr = dwarf2_attr (die, DW_AT_name, cu);
53832f31 22023 if ((!attr || !DW_STRING (attr))
96553a0c 22024 && die->tag != DW_TAG_namespace
53832f31
TT
22025 && die->tag != DW_TAG_class_type
22026 && die->tag != DW_TAG_interface_type
22027 && die->tag != DW_TAG_structure_type
22028 && die->tag != DW_TAG_union_type)
71c25dea
TT
22029 return NULL;
22030
22031 switch (die->tag)
22032 {
22033 case DW_TAG_compile_unit:
95554aad 22034 case DW_TAG_partial_unit:
71c25dea
TT
22035 /* Compilation units have a DW_AT_name that is a filename, not
22036 a source language identifier. */
22037 case DW_TAG_enumeration_type:
22038 case DW_TAG_enumerator:
22039 /* These tags always have simple identifiers already; no need
22040 to canonicalize them. */
22041 return DW_STRING (attr);
907af001 22042
96553a0c
DE
22043 case DW_TAG_namespace:
22044 if (attr != NULL && DW_STRING (attr) != NULL)
22045 return DW_STRING (attr);
22046 return CP_ANONYMOUS_NAMESPACE_STR;
22047
907af001
UW
22048 case DW_TAG_class_type:
22049 case DW_TAG_interface_type:
22050 case DW_TAG_structure_type:
22051 case DW_TAG_union_type:
22052 /* Some GCC versions emit spurious DW_AT_name attributes for unnamed
22053 structures or unions. These were of the form "._%d" in GCC 4.1,
22054 or simply "<anonymous struct>" or "<anonymous union>" in GCC 4.3
22055 and GCC 4.4. We work around this problem by ignoring these. */
53832f31 22056 if (attr && DW_STRING (attr)
61012eef
GB
22057 && (startswith (DW_STRING (attr), "._")
22058 || startswith (DW_STRING (attr), "<anonymous")))
907af001 22059 return NULL;
53832f31
TT
22060
22061 /* GCC might emit a nameless typedef that has a linkage name. See
22062 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47510. */
22063 if (!attr || DW_STRING (attr) == NULL)
22064 {
73b9be8b 22065 attr = dw2_linkage_name_attr (die, cu);
53832f31
TT
22066 if (attr == NULL || DW_STRING (attr) == NULL)
22067 return NULL;
22068
df5c6c50
JK
22069 /* Avoid demangling DW_STRING (attr) the second time on a second
22070 call for the same DIE. */
22071 if (!DW_STRING_IS_CANONICAL (attr))
53832f31 22072 {
43816ebc
TT
22073 gdb::unique_xmalloc_ptr<char> demangled
22074 (gdb_demangle (DW_STRING (attr), DMGL_TYPES));
4f180d53
AT
22075 if (demangled == nullptr)
22076 return nullptr;
43816ebc 22077
be1e3d3e 22078 DW_STRING (attr) = objfile->intern (demangled.get ());
53832f31 22079 DW_STRING_IS_CANONICAL (attr) = 1;
53832f31 22080 }
67430cd0
TT
22081
22082 /* Strip any leading namespaces/classes, keep only the base name.
22083 DW_AT_name for named DIEs does not contain the prefixes. */
22084 const char *base = strrchr (DW_STRING (attr), ':');
22085 if (base && base > DW_STRING (attr) && base[-1] == ':')
22086 return &base[1];
22087 else
22088 return DW_STRING (attr);
53832f31 22089 }
907af001
UW
22090 break;
22091
71c25dea 22092 default:
907af001
UW
22093 break;
22094 }
22095
22096 if (!DW_STRING_IS_CANONICAL (attr))
22097 {
be1e3d3e
TT
22098 DW_STRING (attr) = dwarf2_canonicalize_name (DW_STRING (attr), cu,
22099 objfile);
907af001 22100 DW_STRING_IS_CANONICAL (attr) = 1;
71c25dea 22101 }
907af001 22102 return DW_STRING (attr);
9219021c
DC
22103}
22104
22105/* Return the die that this die in an extension of, or NULL if there
f2f0e013
DJ
22106 is none. *EXT_CU is the CU containing DIE on input, and the CU
22107 containing the return value on output. */
9219021c
DC
22108
22109static struct die_info *
f2f0e013 22110dwarf2_extension (struct die_info *die, struct dwarf2_cu **ext_cu)
9219021c
DC
22111{
22112 struct attribute *attr;
9219021c 22113
f2f0e013 22114 attr = dwarf2_attr (die, DW_AT_extension, *ext_cu);
9219021c
DC
22115 if (attr == NULL)
22116 return NULL;
22117
f2f0e013 22118 return follow_die_ref (die, attr, ext_cu);
9219021c
DC
22119}
22120
f9aca02d 22121static void
d97bc12b 22122dump_die_shallow (struct ui_file *f, int indent, struct die_info *die)
c906108c
SS
22123{
22124 unsigned int i;
22125
d97bc12b 22126 print_spaces (indent, f);
9d8780f0 22127 fprintf_unfiltered (f, "Die: %s (abbrev %d, offset %s)\n",
9c541725 22128 dwarf_tag_name (die->tag), die->abbrev,
9d8780f0 22129 sect_offset_str (die->sect_off));
d97bc12b
DE
22130
22131 if (die->parent != NULL)
22132 {
22133 print_spaces (indent, f);
9d8780f0
SM
22134 fprintf_unfiltered (f, " parent at offset: %s\n",
22135 sect_offset_str (die->parent->sect_off));
d97bc12b
DE
22136 }
22137
22138 print_spaces (indent, f);
22139 fprintf_unfiltered (f, " has children: %s\n",
639d11d3 22140 dwarf_bool_name (die->child != NULL));
c906108c 22141
d97bc12b
DE
22142 print_spaces (indent, f);
22143 fprintf_unfiltered (f, " attributes:\n");
22144
c906108c
SS
22145 for (i = 0; i < die->num_attrs; ++i)
22146 {
d97bc12b
DE
22147 print_spaces (indent, f);
22148 fprintf_unfiltered (f, " %s (%s) ",
c906108c
SS
22149 dwarf_attr_name (die->attrs[i].name),
22150 dwarf_form_name (die->attrs[i].form));
d97bc12b 22151
c906108c
SS
22152 switch (die->attrs[i].form)
22153 {
c906108c 22154 case DW_FORM_addr:
336d760d 22155 case DW_FORM_addrx:
3019eac3 22156 case DW_FORM_GNU_addr_index:
d97bc12b 22157 fprintf_unfiltered (f, "address: ");
5af949e3 22158 fputs_filtered (hex_string (DW_ADDR (&die->attrs[i])), f);
c906108c
SS
22159 break;
22160 case DW_FORM_block2:
22161 case DW_FORM_block4:
22162 case DW_FORM_block:
22163 case DW_FORM_block1:
56eb65bd
SP
22164 fprintf_unfiltered (f, "block: size %s",
22165 pulongest (DW_BLOCK (&die->attrs[i])->size));
c906108c 22166 break;
2dc7f7b3 22167 case DW_FORM_exprloc:
56eb65bd
SP
22168 fprintf_unfiltered (f, "expression: size %s",
22169 pulongest (DW_BLOCK (&die->attrs[i])->size));
2dc7f7b3 22170 break;
0224619f
JK
22171 case DW_FORM_data16:
22172 fprintf_unfiltered (f, "constant of 16 bytes");
22173 break;
4568ecf9
DE
22174 case DW_FORM_ref_addr:
22175 fprintf_unfiltered (f, "ref address: ");
22176 fputs_filtered (hex_string (DW_UNSND (&die->attrs[i])), f);
22177 break;
36586728
TT
22178 case DW_FORM_GNU_ref_alt:
22179 fprintf_unfiltered (f, "alt ref address: ");
22180 fputs_filtered (hex_string (DW_UNSND (&die->attrs[i])), f);
22181 break;
10b3939b
DJ
22182 case DW_FORM_ref1:
22183 case DW_FORM_ref2:
22184 case DW_FORM_ref4:
4568ecf9
DE
22185 case DW_FORM_ref8:
22186 case DW_FORM_ref_udata:
d97bc12b 22187 fprintf_unfiltered (f, "constant ref: 0x%lx (adjusted)",
4568ecf9 22188 (long) (DW_UNSND (&die->attrs[i])));
10b3939b 22189 break;
c906108c
SS
22190 case DW_FORM_data1:
22191 case DW_FORM_data2:
22192 case DW_FORM_data4:
ce5d95e1 22193 case DW_FORM_data8:
c906108c
SS
22194 case DW_FORM_udata:
22195 case DW_FORM_sdata:
43bbcdc2
PH
22196 fprintf_unfiltered (f, "constant: %s",
22197 pulongest (DW_UNSND (&die->attrs[i])));
c906108c 22198 break;
2dc7f7b3
TT
22199 case DW_FORM_sec_offset:
22200 fprintf_unfiltered (f, "section offset: %s",
22201 pulongest (DW_UNSND (&die->attrs[i])));
22202 break;
55f1336d 22203 case DW_FORM_ref_sig8:
ac9ec31b
DE
22204 fprintf_unfiltered (f, "signature: %s",
22205 hex_string (DW_SIGNATURE (&die->attrs[i])));
348e048f 22206 break;
c906108c 22207 case DW_FORM_string:
4bdf3d34 22208 case DW_FORM_strp:
43988095 22209 case DW_FORM_line_strp:
cf532bd1 22210 case DW_FORM_strx:
3019eac3 22211 case DW_FORM_GNU_str_index:
36586728 22212 case DW_FORM_GNU_strp_alt:
8285870a 22213 fprintf_unfiltered (f, "string: \"%s\" (%s canonicalized)",
c906108c 22214 DW_STRING (&die->attrs[i])
8285870a
JK
22215 ? DW_STRING (&die->attrs[i]) : "",
22216 DW_STRING_IS_CANONICAL (&die->attrs[i]) ? "is" : "not");
c906108c
SS
22217 break;
22218 case DW_FORM_flag:
22219 if (DW_UNSND (&die->attrs[i]))
d97bc12b 22220 fprintf_unfiltered (f, "flag: TRUE");
c906108c 22221 else
d97bc12b 22222 fprintf_unfiltered (f, "flag: FALSE");
c906108c 22223 break;
2dc7f7b3
TT
22224 case DW_FORM_flag_present:
22225 fprintf_unfiltered (f, "flag: TRUE");
22226 break;
a8329558 22227 case DW_FORM_indirect:
0963b4bd
MS
22228 /* The reader will have reduced the indirect form to
22229 the "base form" so this form should not occur. */
5f48f8f3 22230 fprintf_unfiltered (f,
3e43a32a 22231 "unexpected attribute form: DW_FORM_indirect");
a8329558 22232 break;
663c44ac
JK
22233 case DW_FORM_implicit_const:
22234 fprintf_unfiltered (f, "constant: %s",
22235 plongest (DW_SND (&die->attrs[i])));
22236 break;
c906108c 22237 default:
d97bc12b 22238 fprintf_unfiltered (f, "unsupported attribute form: %d.",
c5aa993b 22239 die->attrs[i].form);
d97bc12b 22240 break;
c906108c 22241 }
d97bc12b 22242 fprintf_unfiltered (f, "\n");
c906108c
SS
22243 }
22244}
22245
f9aca02d 22246static void
d97bc12b 22247dump_die_for_error (struct die_info *die)
c906108c 22248{
d97bc12b
DE
22249 dump_die_shallow (gdb_stderr, 0, die);
22250}
22251
22252static void
22253dump_die_1 (struct ui_file *f, int level, int max_level, struct die_info *die)
22254{
22255 int indent = level * 4;
22256
22257 gdb_assert (die != NULL);
22258
22259 if (level >= max_level)
22260 return;
22261
22262 dump_die_shallow (f, indent, die);
22263
22264 if (die->child != NULL)
c906108c 22265 {
d97bc12b
DE
22266 print_spaces (indent, f);
22267 fprintf_unfiltered (f, " Children:");
22268 if (level + 1 < max_level)
22269 {
22270 fprintf_unfiltered (f, "\n");
22271 dump_die_1 (f, level + 1, max_level, die->child);
22272 }
22273 else
22274 {
3e43a32a
MS
22275 fprintf_unfiltered (f,
22276 " [not printed, max nesting level reached]\n");
d97bc12b
DE
22277 }
22278 }
22279
22280 if (die->sibling != NULL && level > 0)
22281 {
22282 dump_die_1 (f, level, max_level, die->sibling);
c906108c
SS
22283 }
22284}
22285
d97bc12b
DE
22286/* This is called from the pdie macro in gdbinit.in.
22287 It's not static so gcc will keep a copy callable from gdb. */
22288
22289void
22290dump_die (struct die_info *die, int max_level)
22291{
22292 dump_die_1 (gdb_stdlog, 0, max_level, die);
22293}
22294
f9aca02d 22295static void
51545339 22296store_in_ref_table (struct die_info *die, struct dwarf2_cu *cu)
c906108c 22297{
51545339 22298 void **slot;
c906108c 22299
9c541725
PA
22300 slot = htab_find_slot_with_hash (cu->die_hash, die,
22301 to_underlying (die->sect_off),
b64f50a1 22302 INSERT);
51545339
DJ
22303
22304 *slot = die;
c906108c
SS
22305}
22306
348e048f
DE
22307/* Follow reference or signature attribute ATTR of SRC_DIE.
22308 On entry *REF_CU is the CU of SRC_DIE.
22309 On exit *REF_CU is the CU of the result. */
22310
22311static struct die_info *
ff39bb5e 22312follow_die_ref_or_sig (struct die_info *src_die, const struct attribute *attr,
348e048f
DE
22313 struct dwarf2_cu **ref_cu)
22314{
22315 struct die_info *die;
22316
cd6c91b4 22317 if (attr->form_is_ref ())
348e048f 22318 die = follow_die_ref (src_die, attr, ref_cu);
55f1336d 22319 else if (attr->form == DW_FORM_ref_sig8)
348e048f
DE
22320 die = follow_die_sig (src_die, attr, ref_cu);
22321 else
22322 {
22323 dump_die_for_error (src_die);
22324 error (_("Dwarf Error: Expected reference attribute [in module %s]"),
5e22e966 22325 objfile_name ((*ref_cu)->per_objfile->objfile));
348e048f
DE
22326 }
22327
22328 return die;
03dd20cc
DJ
22329}
22330
5c631832 22331/* Follow reference OFFSET.
673bfd45
DE
22332 On entry *REF_CU is the CU of the source die referencing OFFSET.
22333 On exit *REF_CU is the CU of the result.
22334 Returns NULL if OFFSET is invalid. */
f504f079 22335
f9aca02d 22336static struct die_info *
9c541725 22337follow_die_offset (sect_offset sect_off, int offset_in_dwz,
36586728 22338 struct dwarf2_cu **ref_cu)
c906108c 22339{
10b3939b 22340 struct die_info temp_die;
f2f0e013 22341 struct dwarf2_cu *target_cu, *cu = *ref_cu;
976ca316 22342 dwarf2_per_objfile *per_objfile = cu->per_objfile;
10b3939b 22343
348e048f
DE
22344 gdb_assert (cu->per_cu != NULL);
22345
98bfdba5
PA
22346 target_cu = cu;
22347
3019eac3 22348 if (cu->per_cu->is_debug_types)
348e048f
DE
22349 {
22350 /* .debug_types CUs cannot reference anything outside their CU.
22351 If they need to, they have to reference a signatured type via
55f1336d 22352 DW_FORM_ref_sig8. */
4057dfde 22353 if (!cu->header.offset_in_cu_p (sect_off))
5c631832 22354 return NULL;
348e048f 22355 }
36586728 22356 else if (offset_in_dwz != cu->per_cu->is_dwz
4057dfde 22357 || !cu->header.offset_in_cu_p (sect_off))
10b3939b
DJ
22358 {
22359 struct dwarf2_per_cu_data *per_cu;
9a619af0 22360
9c541725 22361 per_cu = dwarf2_find_containing_comp_unit (sect_off, offset_in_dwz,
976ca316 22362 per_objfile);
03dd20cc
DJ
22363
22364 /* If necessary, add it to the queue and load its DIEs. */
976ca316
SM
22365 if (maybe_queue_comp_unit (cu, per_cu, per_objfile, cu->language))
22366 load_full_comp_unit (per_cu, per_objfile, false, cu->language);
03dd20cc 22367
976ca316 22368 target_cu = per_objfile->get_cu (per_cu);
10b3939b 22369 }
98bfdba5
PA
22370 else if (cu->dies == NULL)
22371 {
22372 /* We're loading full DIEs during partial symbol reading. */
976ca316
SM
22373 gdb_assert (per_objfile->per_bfd->reading_partial_symbols);
22374 load_full_comp_unit (cu->per_cu, per_objfile, false, language_minimal);
98bfdba5 22375 }
c906108c 22376
f2f0e013 22377 *ref_cu = target_cu;
9c541725 22378 temp_die.sect_off = sect_off;
c24bdb02
KS
22379
22380 if (target_cu != cu)
22381 target_cu->ancestor = cu;
22382
9a3c8263 22383 return (struct die_info *) htab_find_with_hash (target_cu->die_hash,
9c541725
PA
22384 &temp_die,
22385 to_underlying (sect_off));
5c631832 22386}
10b3939b 22387
5c631832
JK
22388/* Follow reference attribute ATTR of SRC_DIE.
22389 On entry *REF_CU is the CU of SRC_DIE.
22390 On exit *REF_CU is the CU of the result. */
22391
22392static struct die_info *
ff39bb5e 22393follow_die_ref (struct die_info *src_die, const struct attribute *attr,
5c631832
JK
22394 struct dwarf2_cu **ref_cu)
22395{
0826b30a 22396 sect_offset sect_off = attr->get_ref_die_offset ();
5c631832
JK
22397 struct dwarf2_cu *cu = *ref_cu;
22398 struct die_info *die;
22399
9c541725 22400 die = follow_die_offset (sect_off,
36586728
TT
22401 (attr->form == DW_FORM_GNU_ref_alt
22402 || cu->per_cu->is_dwz),
22403 ref_cu);
5c631832 22404 if (!die)
9d8780f0
SM
22405 error (_("Dwarf Error: Cannot find DIE at %s referenced from DIE "
22406 "at %s [in module %s]"),
22407 sect_offset_str (sect_off), sect_offset_str (src_die->sect_off),
5e22e966 22408 objfile_name (cu->per_objfile->objfile));
348e048f 22409
5c631832
JK
22410 return die;
22411}
22412
d4c9a4f8 22413/* See read.h. */
5c631832
JK
22414
22415struct dwarf2_locexpr_baton
9c541725 22416dwarf2_fetch_die_loc_sect_off (sect_offset sect_off,
d4c9a4f8 22417 dwarf2_per_cu_data *per_cu,
976ca316 22418 dwarf2_per_objfile *per_objfile,
8b9737bf 22419 CORE_ADDR (*get_frame_pc) (void *baton),
e4a62c65 22420 void *baton, bool resolve_abstract_p)
5c631832 22421{
5c631832
JK
22422 struct die_info *die;
22423 struct attribute *attr;
22424 struct dwarf2_locexpr_baton retval;
976ca316 22425 struct objfile *objfile = per_objfile->objfile;
8cf6f0b1 22426
976ca316 22427 dwarf2_cu *cu = per_objfile->get_cu (per_cu);
1b555f17 22428 if (cu == nullptr)
976ca316 22429 cu = load_cu (per_cu, per_objfile, false);
1b555f17
SM
22430
22431 if (cu == nullptr)
cc12ce38
DE
22432 {
22433 /* We shouldn't get here for a dummy CU, but don't crash on the user.
22434 Instead just throw an error, not much else we can do. */
9d8780f0
SM
22435 error (_("Dwarf Error: Dummy CU at %s referenced in module %s"),
22436 sect_offset_str (sect_off), objfile_name (objfile));
cc12ce38 22437 }
918dd910 22438
9c541725 22439 die = follow_die_offset (sect_off, per_cu->is_dwz, &cu);
5c631832 22440 if (!die)
9d8780f0
SM
22441 error (_("Dwarf Error: Cannot find DIE at %s referenced in module %s"),
22442 sect_offset_str (sect_off), objfile_name (objfile));
5c631832
JK
22443
22444 attr = dwarf2_attr (die, DW_AT_location, cu);
e4a62c65 22445 if (!attr && resolve_abstract_p
976ca316
SM
22446 && (per_objfile->per_bfd->abstract_to_concrete.find (die->sect_off)
22447 != per_objfile->per_bfd->abstract_to_concrete.end ()))
e4a62c65
TV
22448 {
22449 CORE_ADDR pc = (*get_frame_pc) (baton);
b3b3bada 22450 CORE_ADDR baseaddr = objfile->text_section_offset ();
08feed99 22451 struct gdbarch *gdbarch = objfile->arch ();
e4a62c65 22452
3360b6e7 22453 for (const auto &cand_off
976ca316 22454 : per_objfile->per_bfd->abstract_to_concrete[die->sect_off])
e4a62c65 22455 {
3360b6e7
TV
22456 struct dwarf2_cu *cand_cu = cu;
22457 struct die_info *cand
22458 = follow_die_offset (cand_off, per_cu->is_dwz, &cand_cu);
22459 if (!cand
22460 || !cand->parent
e4a62c65
TV
22461 || cand->parent->tag != DW_TAG_subprogram)
22462 continue;
22463
22464 CORE_ADDR pc_low, pc_high;
22465 get_scope_pc_bounds (cand->parent, &pc_low, &pc_high, cu);
eba4caf2
TV
22466 if (pc_low == ((CORE_ADDR) -1))
22467 continue;
22468 pc_low = gdbarch_adjust_dwarf2_addr (gdbarch, pc_low + baseaddr);
22469 pc_high = gdbarch_adjust_dwarf2_addr (gdbarch, pc_high + baseaddr);
22470 if (!(pc_low <= pc && pc < pc_high))
e4a62c65
TV
22471 continue;
22472
22473 die = cand;
22474 attr = dwarf2_attr (die, DW_AT_location, cu);
22475 break;
22476 }
22477 }
22478
5c631832
JK
22479 if (!attr)
22480 {
e103e986
JK
22481 /* DWARF: "If there is no such attribute, then there is no effect.".
22482 DATA is ignored if SIZE is 0. */
5c631832 22483
e103e986 22484 retval.data = NULL;
5c631832
JK
22485 retval.size = 0;
22486 }
cd6c91b4 22487 else if (attr->form_is_section_offset ())
8cf6f0b1
TT
22488 {
22489 struct dwarf2_loclist_baton loclist_baton;
22490 CORE_ADDR pc = (*get_frame_pc) (baton);
22491 size_t size;
22492
22493 fill_in_loclist_baton (cu, &loclist_baton, attr);
22494
22495 retval.data = dwarf2_find_location_expression (&loclist_baton,
22496 &size, pc);
22497 retval.size = size;
22498 }
5c631832
JK
22499 else
22500 {
4fc6c0d5 22501 if (!attr->form_is_block ())
9d8780f0 22502 error (_("Dwarf Error: DIE at %s referenced in module %s "
5c631832 22503 "is neither DW_FORM_block* nor DW_FORM_exprloc"),
9d8780f0 22504 sect_offset_str (sect_off), objfile_name (objfile));
5c631832
JK
22505
22506 retval.data = DW_BLOCK (attr)->data;
22507 retval.size = DW_BLOCK (attr)->size;
22508 }
976ca316 22509 retval.per_objfile = per_objfile;
5c631832 22510 retval.per_cu = cu->per_cu;
918dd910 22511
976ca316 22512 per_objfile->age_comp_units ();
918dd910 22513
5c631832 22514 return retval;
348e048f
DE
22515}
22516
d4c9a4f8 22517/* See read.h. */
8b9737bf
TT
22518
22519struct dwarf2_locexpr_baton
22520dwarf2_fetch_die_loc_cu_off (cu_offset offset_in_cu,
d4c9a4f8 22521 dwarf2_per_cu_data *per_cu,
14095eb3 22522 dwarf2_per_objfile *per_objfile,
8b9737bf
TT
22523 CORE_ADDR (*get_frame_pc) (void *baton),
22524 void *baton)
22525{
9c541725 22526 sect_offset sect_off = per_cu->sect_off + to_underlying (offset_in_cu);
8b9737bf 22527
14095eb3
SM
22528 return dwarf2_fetch_die_loc_sect_off (sect_off, per_cu, per_objfile,
22529 get_frame_pc, baton);
8b9737bf
TT
22530}
22531
b6807d98
TT
22532/* Write a constant of a given type as target-ordered bytes into
22533 OBSTACK. */
22534
22535static const gdb_byte *
22536write_constant_as_bytes (struct obstack *obstack,
22537 enum bfd_endian byte_order,
22538 struct type *type,
22539 ULONGEST value,
22540 LONGEST *len)
22541{
22542 gdb_byte *result;
22543
22544 *len = TYPE_LENGTH (type);
224c3ddb 22545 result = (gdb_byte *) obstack_alloc (obstack, *len);
b6807d98
TT
22546 store_unsigned_integer (result, *len, byte_order, value);
22547
22548 return result;
22549}
22550
d4c9a4f8 22551/* See read.h. */
b6807d98
TT
22552
22553const gdb_byte *
9c541725 22554dwarf2_fetch_constant_bytes (sect_offset sect_off,
d4c9a4f8 22555 dwarf2_per_cu_data *per_cu,
14095eb3 22556 dwarf2_per_objfile *per_objfile,
d4c9a4f8 22557 obstack *obstack,
b6807d98
TT
22558 LONGEST *len)
22559{
b6807d98
TT
22560 struct die_info *die;
22561 struct attribute *attr;
22562 const gdb_byte *result = NULL;
22563 struct type *type;
22564 LONGEST value;
22565 enum bfd_endian byte_order;
14095eb3 22566 struct objfile *objfile = per_objfile->objfile;
b6807d98 22567
7188ed02 22568 dwarf2_cu *cu = per_objfile->get_cu (per_cu);
1b555f17
SM
22569 if (cu == nullptr)
22570 cu = load_cu (per_cu, per_objfile, false);
22571
22572 if (cu == nullptr)
cc12ce38
DE
22573 {
22574 /* We shouldn't get here for a dummy CU, but don't crash on the user.
22575 Instead just throw an error, not much else we can do. */
9d8780f0
SM
22576 error (_("Dwarf Error: Dummy CU at %s referenced in module %s"),
22577 sect_offset_str (sect_off), objfile_name (objfile));
cc12ce38 22578 }
b6807d98 22579
9c541725 22580 die = follow_die_offset (sect_off, per_cu->is_dwz, &cu);
b6807d98 22581 if (!die)
9d8780f0
SM
22582 error (_("Dwarf Error: Cannot find DIE at %s referenced in module %s"),
22583 sect_offset_str (sect_off), objfile_name (objfile));
b6807d98
TT
22584
22585 attr = dwarf2_attr (die, DW_AT_const_value, cu);
22586 if (attr == NULL)
22587 return NULL;
22588
e3b94546 22589 byte_order = (bfd_big_endian (objfile->obfd)
b6807d98
TT
22590 ? BFD_ENDIAN_BIG : BFD_ENDIAN_LITTLE);
22591
22592 switch (attr->form)
22593 {
22594 case DW_FORM_addr:
336d760d 22595 case DW_FORM_addrx:
b6807d98
TT
22596 case DW_FORM_GNU_addr_index:
22597 {
22598 gdb_byte *tem;
22599
22600 *len = cu->header.addr_size;
224c3ddb 22601 tem = (gdb_byte *) obstack_alloc (obstack, *len);
b6807d98
TT
22602 store_unsigned_integer (tem, *len, byte_order, DW_ADDR (attr));
22603 result = tem;
22604 }
22605 break;
22606 case DW_FORM_string:
22607 case DW_FORM_strp:
cf532bd1 22608 case DW_FORM_strx:
b6807d98
TT
22609 case DW_FORM_GNU_str_index:
22610 case DW_FORM_GNU_strp_alt:
22611 /* DW_STRING is already allocated on the objfile obstack, point
22612 directly to it. */
22613 result = (const gdb_byte *) DW_STRING (attr);
22614 *len = strlen (DW_STRING (attr));
22615 break;
22616 case DW_FORM_block1:
22617 case DW_FORM_block2:
22618 case DW_FORM_block4:
22619 case DW_FORM_block:
22620 case DW_FORM_exprloc:
0224619f 22621 case DW_FORM_data16:
b6807d98
TT
22622 result = DW_BLOCK (attr)->data;
22623 *len = DW_BLOCK (attr)->size;
22624 break;
22625
22626 /* The DW_AT_const_value attributes are supposed to carry the
22627 symbol's value "represented as it would be on the target
22628 architecture." By the time we get here, it's already been
22629 converted to host endianness, so we just need to sign- or
22630 zero-extend it as appropriate. */
22631 case DW_FORM_data1:
22632 type = die_type (die, cu);
22633 result = dwarf2_const_value_data (attr, obstack, cu, &value, 8);
22634 if (result == NULL)
22635 result = write_constant_as_bytes (obstack, byte_order,
22636 type, value, len);
22637 break;
22638 case DW_FORM_data2:
22639 type = die_type (die, cu);
22640 result = dwarf2_const_value_data (attr, obstack, cu, &value, 16);
22641 if (result == NULL)
22642 result = write_constant_as_bytes (obstack, byte_order,
22643 type, value, len);
22644 break;
22645 case DW_FORM_data4:
22646 type = die_type (die, cu);
22647 result = dwarf2_const_value_data (attr, obstack, cu, &value, 32);
22648 if (result == NULL)
22649 result = write_constant_as_bytes (obstack, byte_order,
22650 type, value, len);
22651 break;
22652 case DW_FORM_data8:
22653 type = die_type (die, cu);
22654 result = dwarf2_const_value_data (attr, obstack, cu, &value, 64);
22655 if (result == NULL)
22656 result = write_constant_as_bytes (obstack, byte_order,
22657 type, value, len);
22658 break;
22659
22660 case DW_FORM_sdata:
663c44ac 22661 case DW_FORM_implicit_const:
b6807d98
TT
22662 type = die_type (die, cu);
22663 result = write_constant_as_bytes (obstack, byte_order,
22664 type, DW_SND (attr), len);
22665 break;
22666
22667 case DW_FORM_udata:
22668 type = die_type (die, cu);
22669 result = write_constant_as_bytes (obstack, byte_order,
22670 type, DW_UNSND (attr), len);
22671 break;
22672
22673 default:
b98664d3 22674 complaint (_("unsupported const value attribute form: '%s'"),
b6807d98
TT
22675 dwarf_form_name (attr->form));
22676 break;
22677 }
22678
22679 return result;
22680}
22681
d4c9a4f8 22682/* See read.h. */
7942e96e
AA
22683
22684struct type *
9c541725 22685dwarf2_fetch_die_type_sect_off (sect_offset sect_off,
14095eb3
SM
22686 dwarf2_per_cu_data *per_cu,
22687 dwarf2_per_objfile *per_objfile)
7942e96e 22688{
7942e96e
AA
22689 struct die_info *die;
22690
7188ed02 22691 dwarf2_cu *cu = per_objfile->get_cu (per_cu);
1b555f17
SM
22692 if (cu == nullptr)
22693 cu = load_cu (per_cu, per_objfile, false);
22694
22695 if (cu == nullptr)
22696 return nullptr;
7942e96e 22697
9c541725 22698 die = follow_die_offset (sect_off, per_cu->is_dwz, &cu);
7942e96e
AA
22699 if (!die)
22700 return NULL;
22701
22702 return die_type (die, cu);
22703}
22704
8cb5117c 22705/* See read.h. */
8a9b8146
TT
22706
22707struct type *
b64f50a1 22708dwarf2_get_die_type (cu_offset die_offset,
aa66c379
SM
22709 dwarf2_per_cu_data *per_cu,
22710 dwarf2_per_objfile *per_objfile)
8a9b8146 22711{
9c541725 22712 sect_offset die_offset_sect = per_cu->sect_off + to_underlying (die_offset);
aa66c379 22713 return get_die_type_at_offset (die_offset_sect, per_cu, per_objfile);
8a9b8146
TT
22714}
22715
ac9ec31b 22716/* Follow type unit SIG_TYPE referenced by SRC_DIE.
348e048f 22717 On entry *REF_CU is the CU of SRC_DIE.
ac9ec31b
DE
22718 On exit *REF_CU is the CU of the result.
22719 Returns NULL if the referenced DIE isn't found. */
348e048f
DE
22720
22721static struct die_info *
ac9ec31b
DE
22722follow_die_sig_1 (struct die_info *src_die, struct signatured_type *sig_type,
22723 struct dwarf2_cu **ref_cu)
348e048f 22724{
348e048f 22725 struct die_info temp_die;
c24bdb02 22726 struct dwarf2_cu *sig_cu, *cu = *ref_cu;
348e048f 22727 struct die_info *die;
976ca316 22728 dwarf2_per_objfile *per_objfile = (*ref_cu)->per_objfile;
120ce1b5 22729
348e048f 22730
ac9ec31b
DE
22731 /* While it might be nice to assert sig_type->type == NULL here,
22732 we can get here for DW_AT_imported_declaration where we need
22733 the DIE not the type. */
348e048f
DE
22734
22735 /* If necessary, add it to the queue and load its DIEs. */
22736
976ca316 22737 if (maybe_queue_comp_unit (*ref_cu, &sig_type->per_cu, per_objfile,
120ce1b5 22738 language_minimal))
976ca316 22739 read_signatured_type (sig_type, per_objfile);
348e048f 22740
976ca316 22741 sig_cu = per_objfile->get_cu (&sig_type->per_cu);
69d751e3 22742 gdb_assert (sig_cu != NULL);
9c541725
PA
22743 gdb_assert (to_underlying (sig_type->type_offset_in_section) != 0);
22744 temp_die.sect_off = sig_type->type_offset_in_section;
9a3c8263 22745 die = (struct die_info *) htab_find_with_hash (sig_cu->die_hash, &temp_die,
9c541725 22746 to_underlying (temp_die.sect_off));
348e048f
DE
22747 if (die)
22748 {
796a7ff8
DE
22749 /* For .gdb_index version 7 keep track of included TUs.
22750 http://sourceware.org/bugzilla/show_bug.cgi?id=15021. */
976ca316
SM
22751 if (per_objfile->per_bfd->index_table != NULL
22752 && per_objfile->per_bfd->index_table->version <= 7)
796a7ff8 22753 {
ae640021 22754 (*ref_cu)->per_cu->imported_symtabs_push (sig_cu->per_cu);
796a7ff8
DE
22755 }
22756
348e048f 22757 *ref_cu = sig_cu;
c24bdb02
KS
22758 if (sig_cu != cu)
22759 sig_cu->ancestor = cu;
22760
348e048f
DE
22761 return die;
22762 }
22763
ac9ec31b
DE
22764 return NULL;
22765}
22766
22767/* Follow signatured type referenced by ATTR in SRC_DIE.
22768 On entry *REF_CU is the CU of SRC_DIE.
22769 On exit *REF_CU is the CU of the result.
22770 The result is the DIE of the type.
22771 If the referenced type cannot be found an error is thrown. */
22772
22773static struct die_info *
ff39bb5e 22774follow_die_sig (struct die_info *src_die, const struct attribute *attr,
ac9ec31b
DE
22775 struct dwarf2_cu **ref_cu)
22776{
22777 ULONGEST signature = DW_SIGNATURE (attr);
22778 struct signatured_type *sig_type;
22779 struct die_info *die;
22780
22781 gdb_assert (attr->form == DW_FORM_ref_sig8);
22782
a2ce51a0 22783 sig_type = lookup_signatured_type (*ref_cu, signature);
ac9ec31b
DE
22784 /* sig_type will be NULL if the signatured type is missing from
22785 the debug info. */
22786 if (sig_type == NULL)
22787 {
22788 error (_("Dwarf Error: Cannot find signatured DIE %s referenced"
9d8780f0
SM
22789 " from DIE at %s [in module %s]"),
22790 hex_string (signature), sect_offset_str (src_die->sect_off),
5e22e966 22791 objfile_name ((*ref_cu)->per_objfile->objfile));
ac9ec31b
DE
22792 }
22793
22794 die = follow_die_sig_1 (src_die, sig_type, ref_cu);
22795 if (die == NULL)
22796 {
22797 dump_die_for_error (src_die);
22798 error (_("Dwarf Error: Problem reading signatured DIE %s referenced"
9d8780f0
SM
22799 " from DIE at %s [in module %s]"),
22800 hex_string (signature), sect_offset_str (src_die->sect_off),
5e22e966 22801 objfile_name ((*ref_cu)->per_objfile->objfile));
ac9ec31b
DE
22802 }
22803
22804 return die;
22805}
22806
22807/* Get the type specified by SIGNATURE referenced in DIE/CU,
22808 reading in and processing the type unit if necessary. */
22809
22810static struct type *
22811get_signatured_type (struct die_info *die, ULONGEST signature,
22812 struct dwarf2_cu *cu)
22813{
976ca316 22814 dwarf2_per_objfile *per_objfile = cu->per_objfile;
ac9ec31b
DE
22815 struct signatured_type *sig_type;
22816 struct dwarf2_cu *type_cu;
22817 struct die_info *type_die;
22818 struct type *type;
22819
a2ce51a0 22820 sig_type = lookup_signatured_type (cu, signature);
ac9ec31b
DE
22821 /* sig_type will be NULL if the signatured type is missing from
22822 the debug info. */
22823 if (sig_type == NULL)
22824 {
b98664d3 22825 complaint (_("Dwarf Error: Cannot find signatured DIE %s referenced"
9d8780f0
SM
22826 " from DIE at %s [in module %s]"),
22827 hex_string (signature), sect_offset_str (die->sect_off),
976ca316 22828 objfile_name (per_objfile->objfile));
ac9ec31b
DE
22829 return build_error_marker_type (cu, die);
22830 }
22831
22832 /* If we already know the type we're done. */
976ca316 22833 type = per_objfile->get_type_for_signatured_type (sig_type);
e286671b
TT
22834 if (type != nullptr)
22835 return type;
ac9ec31b
DE
22836
22837 type_cu = cu;
22838 type_die = follow_die_sig_1 (die, sig_type, &type_cu);
22839 if (type_die != NULL)
22840 {
22841 /* N.B. We need to call get_die_type to ensure only one type for this DIE
22842 is created. This is important, for example, because for c++ classes
22843 we need TYPE_NAME set which is only done by new_symbol. Blech. */
22844 type = read_type_die (type_die, type_cu);
22845 if (type == NULL)
22846 {
b98664d3 22847 complaint (_("Dwarf Error: Cannot build signatured type %s"
9d8780f0
SM
22848 " referenced from DIE at %s [in module %s]"),
22849 hex_string (signature), sect_offset_str (die->sect_off),
976ca316 22850 objfile_name (per_objfile->objfile));
ac9ec31b
DE
22851 type = build_error_marker_type (cu, die);
22852 }
22853 }
22854 else
22855 {
b98664d3 22856 complaint (_("Dwarf Error: Problem reading signatured DIE %s referenced"
9d8780f0
SM
22857 " from DIE at %s [in module %s]"),
22858 hex_string (signature), sect_offset_str (die->sect_off),
976ca316 22859 objfile_name (per_objfile->objfile));
ac9ec31b
DE
22860 type = build_error_marker_type (cu, die);
22861 }
e286671b 22862
976ca316 22863 per_objfile->set_type_for_signatured_type (sig_type, type);
ac9ec31b
DE
22864
22865 return type;
22866}
22867
22868/* Get the type specified by the DW_AT_signature ATTR in DIE/CU,
22869 reading in and processing the type unit if necessary. */
22870
22871static struct type *
ff39bb5e 22872get_DW_AT_signature_type (struct die_info *die, const struct attribute *attr,
b385a60d 22873 struct dwarf2_cu *cu) /* ARI: editCase function */
ac9ec31b
DE
22874{
22875 /* Yes, DW_AT_signature can use a non-ref_sig8 reference. */
cd6c91b4 22876 if (attr->form_is_ref ())
ac9ec31b
DE
22877 {
22878 struct dwarf2_cu *type_cu = cu;
22879 struct die_info *type_die = follow_die_ref (die, attr, &type_cu);
22880
22881 return read_type_die (type_die, type_cu);
22882 }
22883 else if (attr->form == DW_FORM_ref_sig8)
22884 {
22885 return get_signatured_type (die, DW_SIGNATURE (attr), cu);
22886 }
22887 else
22888 {
976ca316 22889 dwarf2_per_objfile *per_objfile = cu->per_objfile;
ed2dc618 22890
b98664d3 22891 complaint (_("Dwarf Error: DW_AT_signature has bad form %s in DIE"
9d8780f0
SM
22892 " at %s [in module %s]"),
22893 dwarf_form_name (attr->form), sect_offset_str (die->sect_off),
976ca316 22894 objfile_name (per_objfile->objfile));
ac9ec31b
DE
22895 return build_error_marker_type (cu, die);
22896 }
348e048f
DE
22897}
22898
e5fe5e75 22899/* Load the DIEs associated with type unit PER_CU into memory. */
348e048f
DE
22900
22901static void
ab432490
SM
22902load_full_type_unit (dwarf2_per_cu_data *per_cu,
22903 dwarf2_per_objfile *per_objfile)
348e048f 22904{
52dc124a 22905 struct signatured_type *sig_type;
348e048f 22906
f4dc4d17 22907 /* Caller is responsible for ensuring type_unit_groups don't get here. */
197400e8 22908 gdb_assert (! per_cu->type_unit_group_p ());
f4dc4d17 22909
6721b2ec
DE
22910 /* We have the per_cu, but we need the signatured_type.
22911 Fortunately this is an easy translation. */
22912 gdb_assert (per_cu->is_debug_types);
22913 sig_type = (struct signatured_type *) per_cu;
348e048f 22914
7188ed02 22915 gdb_assert (per_objfile->get_cu (per_cu) == nullptr);
348e048f 22916
ab432490 22917 read_signatured_type (sig_type, per_objfile);
348e048f 22918
7188ed02 22919 gdb_assert (per_objfile->get_cu (per_cu) != nullptr);
348e048f
DE
22920}
22921
3019eac3
DE
22922/* Read in a signatured type and build its CU and DIEs.
22923 If the type is a stub for the real type in a DWO file,
22924 read in the real type from the DWO file as well. */
dee91e82
DE
22925
22926static void
ab432490
SM
22927read_signatured_type (signatured_type *sig_type,
22928 dwarf2_per_objfile *per_objfile)
dee91e82
DE
22929{
22930 struct dwarf2_per_cu_data *per_cu = &sig_type->per_cu;
348e048f 22931
3019eac3 22932 gdb_assert (per_cu->is_debug_types);
7188ed02 22933 gdb_assert (per_objfile->get_cu (per_cu) == nullptr);
348e048f 22934
2e671100 22935 cutu_reader reader (per_cu, per_objfile, nullptr, nullptr, false);
c0ab21c2
TT
22936
22937 if (!reader.dummy_p)
22938 {
22939 struct dwarf2_cu *cu = reader.cu;
22940 const gdb_byte *info_ptr = reader.info_ptr;
22941
22942 gdb_assert (cu->die_hash == NULL);
22943 cu->die_hash =
22944 htab_create_alloc_ex (cu->header.length / 12,
22945 die_hash,
22946 die_eq,
22947 NULL,
22948 &cu->comp_unit_obstack,
22949 hashtab_obstack_allocate,
22950 dummy_obstack_deallocate);
22951
3e225074 22952 if (reader.comp_unit_die->has_children)
c0ab21c2
TT
22953 reader.comp_unit_die->child
22954 = read_die_and_siblings (&reader, info_ptr, &info_ptr,
22955 reader.comp_unit_die);
22956 cu->dies = reader.comp_unit_die;
22957 /* comp_unit_die is not stored in die_hash, no need. */
22958
22959 /* We try not to read any attributes in this function, because
22960 not all CUs needed for references have been loaded yet, and
22961 symbol table processing isn't initialized. But we have to
22962 set the CU language, or we won't be able to build types
22963 correctly. Similarly, if we do not read the producer, we can
22964 not apply producer-specific interpretation. */
22965 prepare_one_comp_unit (cu, cu->dies, language_minimal);
6751ebae
TT
22966
22967 reader.keep ();
c0ab21c2
TT
22968 }
22969
7ee85ab1 22970 sig_type->per_cu.tu_read = 1;
c906108c
SS
22971}
22972
c906108c
SS
22973/* Decode simple location descriptions.
22974 Given a pointer to a dwarf block that defines a location, compute
7d79de9a
TT
22975 the location and return the value. If COMPUTED is non-null, it is
22976 set to true to indicate that decoding was successful, and false
22977 otherwise. If COMPUTED is null, then this function may emit a
22978 complaint. */
c906108c
SS
22979
22980static CORE_ADDR
7d79de9a 22981decode_locdesc (struct dwarf_block *blk, struct dwarf2_cu *cu, bool *computed)
c906108c 22982{
5e22e966 22983 struct objfile *objfile = cu->per_objfile->objfile;
56eb65bd
SP
22984 size_t i;
22985 size_t size = blk->size;
d521ce57 22986 const gdb_byte *data = blk->data;
21ae7a4d
JK
22987 CORE_ADDR stack[64];
22988 int stacki;
22989 unsigned int bytes_read, unsnd;
22990 gdb_byte op;
c906108c 22991
7d79de9a
TT
22992 if (computed != nullptr)
22993 *computed = false;
22994
21ae7a4d
JK
22995 i = 0;
22996 stacki = 0;
22997 stack[stacki] = 0;
22998 stack[++stacki] = 0;
22999
23000 while (i < size)
23001 {
23002 op = data[i++];
23003 switch (op)
23004 {
23005 case DW_OP_lit0:
23006 case DW_OP_lit1:
23007 case DW_OP_lit2:
23008 case DW_OP_lit3:
23009 case DW_OP_lit4:
23010 case DW_OP_lit5:
23011 case DW_OP_lit6:
23012 case DW_OP_lit7:
23013 case DW_OP_lit8:
23014 case DW_OP_lit9:
23015 case DW_OP_lit10:
23016 case DW_OP_lit11:
23017 case DW_OP_lit12:
23018 case DW_OP_lit13:
23019 case DW_OP_lit14:
23020 case DW_OP_lit15:
23021 case DW_OP_lit16:
23022 case DW_OP_lit17:
23023 case DW_OP_lit18:
23024 case DW_OP_lit19:
23025 case DW_OP_lit20:
23026 case DW_OP_lit21:
23027 case DW_OP_lit22:
23028 case DW_OP_lit23:
23029 case DW_OP_lit24:
23030 case DW_OP_lit25:
23031 case DW_OP_lit26:
23032 case DW_OP_lit27:
23033 case DW_OP_lit28:
23034 case DW_OP_lit29:
23035 case DW_OP_lit30:
23036 case DW_OP_lit31:
23037 stack[++stacki] = op - DW_OP_lit0;
23038 break;
f1bea926 23039
21ae7a4d
JK
23040 case DW_OP_reg0:
23041 case DW_OP_reg1:
23042 case DW_OP_reg2:
23043 case DW_OP_reg3:
23044 case DW_OP_reg4:
23045 case DW_OP_reg5:
23046 case DW_OP_reg6:
23047 case DW_OP_reg7:
23048 case DW_OP_reg8:
23049 case DW_OP_reg9:
23050 case DW_OP_reg10:
23051 case DW_OP_reg11:
23052 case DW_OP_reg12:
23053 case DW_OP_reg13:
23054 case DW_OP_reg14:
23055 case DW_OP_reg15:
23056 case DW_OP_reg16:
23057 case DW_OP_reg17:
23058 case DW_OP_reg18:
23059 case DW_OP_reg19:
23060 case DW_OP_reg20:
23061 case DW_OP_reg21:
23062 case DW_OP_reg22:
23063 case DW_OP_reg23:
23064 case DW_OP_reg24:
23065 case DW_OP_reg25:
23066 case DW_OP_reg26:
23067 case DW_OP_reg27:
23068 case DW_OP_reg28:
23069 case DW_OP_reg29:
23070 case DW_OP_reg30:
23071 case DW_OP_reg31:
23072 stack[++stacki] = op - DW_OP_reg0;
23073 if (i < size)
7d79de9a
TT
23074 {
23075 if (computed == nullptr)
23076 dwarf2_complex_location_expr_complaint ();
23077 else
23078 return 0;
23079 }
21ae7a4d 23080 break;
c906108c 23081
21ae7a4d
JK
23082 case DW_OP_regx:
23083 unsnd = read_unsigned_leb128 (NULL, (data + i), &bytes_read);
23084 i += bytes_read;
23085 stack[++stacki] = unsnd;
23086 if (i < size)
7d79de9a
TT
23087 {
23088 if (computed == nullptr)
23089 dwarf2_complex_location_expr_complaint ();
23090 else
23091 return 0;
23092 }
21ae7a4d 23093 break;
c906108c 23094
21ae7a4d 23095 case DW_OP_addr:
c8a7a66f
TT
23096 stack[++stacki] = cu->header.read_address (objfile->obfd, &data[i],
23097 &bytes_read);
21ae7a4d
JK
23098 i += bytes_read;
23099 break;
d53d4ac5 23100
21ae7a4d
JK
23101 case DW_OP_const1u:
23102 stack[++stacki] = read_1_byte (objfile->obfd, &data[i]);
23103 i += 1;
23104 break;
23105
23106 case DW_OP_const1s:
23107 stack[++stacki] = read_1_signed_byte (objfile->obfd, &data[i]);
23108 i += 1;
23109 break;
23110
23111 case DW_OP_const2u:
23112 stack[++stacki] = read_2_bytes (objfile->obfd, &data[i]);
23113 i += 2;
23114 break;
23115
23116 case DW_OP_const2s:
23117 stack[++stacki] = read_2_signed_bytes (objfile->obfd, &data[i]);
23118 i += 2;
23119 break;
d53d4ac5 23120
21ae7a4d
JK
23121 case DW_OP_const4u:
23122 stack[++stacki] = read_4_bytes (objfile->obfd, &data[i]);
23123 i += 4;
23124 break;
23125
23126 case DW_OP_const4s:
23127 stack[++stacki] = read_4_signed_bytes (objfile->obfd, &data[i]);
23128 i += 4;
23129 break;
23130
585861ea
JK
23131 case DW_OP_const8u:
23132 stack[++stacki] = read_8_bytes (objfile->obfd, &data[i]);
23133 i += 8;
23134 break;
23135
21ae7a4d
JK
23136 case DW_OP_constu:
23137 stack[++stacki] = read_unsigned_leb128 (NULL, (data + i),
23138 &bytes_read);
23139 i += bytes_read;
23140 break;
23141
23142 case DW_OP_consts:
23143 stack[++stacki] = read_signed_leb128 (NULL, (data + i), &bytes_read);
23144 i += bytes_read;
23145 break;
23146
23147 case DW_OP_dup:
23148 stack[stacki + 1] = stack[stacki];
23149 stacki++;
23150 break;
23151
23152 case DW_OP_plus:
23153 stack[stacki - 1] += stack[stacki];
23154 stacki--;
23155 break;
23156
23157 case DW_OP_plus_uconst:
23158 stack[stacki] += read_unsigned_leb128 (NULL, (data + i),
23159 &bytes_read);
23160 i += bytes_read;
23161 break;
23162
23163 case DW_OP_minus:
23164 stack[stacki - 1] -= stack[stacki];
23165 stacki--;
23166 break;
23167
23168 case DW_OP_deref:
23169 /* If we're not the last op, then we definitely can't encode
23170 this using GDB's address_class enum. This is valid for partial
23171 global symbols, although the variable's address will be bogus
23172 in the psymtab. */
23173 if (i < size)
7d79de9a
TT
23174 {
23175 if (computed == nullptr)
23176 dwarf2_complex_location_expr_complaint ();
23177 else
23178 return 0;
23179 }
21ae7a4d
JK
23180 break;
23181
23182 case DW_OP_GNU_push_tls_address:
4aa4e28b 23183 case DW_OP_form_tls_address:
21ae7a4d
JK
23184 /* The top of the stack has the offset from the beginning
23185 of the thread control block at which the variable is located. */
23186 /* Nothing should follow this operator, so the top of stack would
23187 be returned. */
23188 /* This is valid for partial global symbols, but the variable's
585861ea
JK
23189 address will be bogus in the psymtab. Make it always at least
23190 non-zero to not look as a variable garbage collected by linker
23191 which have DW_OP_addr 0. */
21ae7a4d 23192 if (i < size)
7d79de9a
TT
23193 {
23194 if (computed == nullptr)
23195 dwarf2_complex_location_expr_complaint ();
23196 else
23197 return 0;
23198 }
585861ea 23199 stack[stacki]++;
21ae7a4d
JK
23200 break;
23201
23202 case DW_OP_GNU_uninit:
7d79de9a
TT
23203 if (computed != nullptr)
23204 return 0;
21ae7a4d
JK
23205 break;
23206
336d760d 23207 case DW_OP_addrx:
3019eac3 23208 case DW_OP_GNU_addr_index:
49f6c839 23209 case DW_OP_GNU_const_index:
3019eac3
DE
23210 stack[++stacki] = read_addr_index_from_leb128 (cu, &data[i],
23211 &bytes_read);
23212 i += bytes_read;
23213 break;
23214
21ae7a4d 23215 default:
7d79de9a
TT
23216 if (computed == nullptr)
23217 {
23218 const char *name = get_DW_OP_name (op);
21ae7a4d 23219
7d79de9a
TT
23220 if (name)
23221 complaint (_("unsupported stack op: '%s'"),
23222 name);
23223 else
23224 complaint (_("unsupported stack op: '%02x'"),
23225 op);
23226 }
21ae7a4d
JK
23227
23228 return (stack[stacki]);
d53d4ac5 23229 }
3c6e0cb3 23230
21ae7a4d
JK
23231 /* Enforce maximum stack depth of SIZE-1 to avoid writing
23232 outside of the allocated space. Also enforce minimum>0. */
23233 if (stacki >= ARRAY_SIZE (stack) - 1)
23234 {
7d79de9a
TT
23235 if (computed == nullptr)
23236 complaint (_("location description stack overflow"));
21ae7a4d
JK
23237 return 0;
23238 }
23239
23240 if (stacki <= 0)
23241 {
7d79de9a
TT
23242 if (computed == nullptr)
23243 complaint (_("location description stack underflow"));
21ae7a4d
JK
23244 return 0;
23245 }
23246 }
7d79de9a
TT
23247
23248 if (computed != nullptr)
23249 *computed = true;
21ae7a4d 23250 return (stack[stacki]);
c906108c
SS
23251}
23252
23253/* memory allocation interface */
23254
c906108c 23255static struct dwarf_block *
7b5a2f43 23256dwarf_alloc_block (struct dwarf2_cu *cu)
c906108c 23257{
8d749320 23258 return XOBNEW (&cu->comp_unit_obstack, struct dwarf_block);
c906108c
SS
23259}
23260
c906108c 23261static struct die_info *
b60c80d6 23262dwarf_alloc_die (struct dwarf2_cu *cu, int num_attrs)
c906108c
SS
23263{
23264 struct die_info *die;
b60c80d6
DJ
23265 size_t size = sizeof (struct die_info);
23266
23267 if (num_attrs > 1)
23268 size += (num_attrs - 1) * sizeof (struct attribute);
c906108c 23269
b60c80d6 23270 die = (struct die_info *) obstack_alloc (&cu->comp_unit_obstack, size);
c906108c
SS
23271 memset (die, 0, sizeof (struct die_info));
23272 return (die);
23273}
2e276125
JB
23274
23275\f
a036ba48 23276
c90ec28a 23277/* Macro support. */
cf2c3c16 23278
9eac9650
TT
23279/* An overload of dwarf_decode_macros that finds the correct section
23280 and ensures it is read in before calling the other overload. */
23281
23282static void
23283dwarf_decode_macros (struct dwarf2_cu *cu, unsigned int offset,
23284 int section_is_gnu)
23285{
976ca316
SM
23286 dwarf2_per_objfile *per_objfile = cu->per_objfile;
23287 struct objfile *objfile = per_objfile->objfile;
5a0e026f 23288 const struct line_header *lh = cu->line_header;
9eac9650
TT
23289 unsigned int offset_size = cu->header.offset_size;
23290 struct dwarf2_section_info *section;
23291 const char *section_name;
23292
23293 if (cu->dwo_unit != nullptr)
23294 {
23295 if (section_is_gnu)
23296 {
23297 section = &cu->dwo_unit->dwo_file->sections.macro;
23298 section_name = ".debug_macro.dwo";
23299 }
23300 else
23301 {
23302 section = &cu->dwo_unit->dwo_file->sections.macinfo;
23303 section_name = ".debug_macinfo.dwo";
23304 }
23305 }
23306 else
23307 {
23308 if (section_is_gnu)
23309 {
976ca316 23310 section = &per_objfile->per_bfd->macro;
9eac9650
TT
23311 section_name = ".debug_macro";
23312 }
23313 else
23314 {
976ca316 23315 section = &per_objfile->per_bfd->macinfo;
9eac9650
TT
23316 section_name = ".debug_macinfo";
23317 }
23318 }
23319
23320 section->read (objfile);
23321 if (section->buffer == nullptr)
23322 {
23323 complaint (_("missing %s section"), section_name);
23324 return;
23325 }
23326
23327 buildsym_compunit *builder = cu->get_builder ();
23328
976ca316 23329 dwarf_decode_macros (per_objfile, builder, section, lh,
9eac9650
TT
23330 offset_size, offset, section_is_gnu);
23331}
23332
3019eac3
DE
23333/* Return the .debug_loc section to use for CU.
23334 For DWO files use .debug_loc.dwo. */
23335
23336static struct dwarf2_section_info *
23337cu_debug_loc_section (struct dwarf2_cu *cu)
23338{
976ca316 23339 dwarf2_per_objfile *per_objfile = cu->per_objfile;
ed2dc618 23340
3019eac3 23341 if (cu->dwo_unit)
43988095
JK
23342 {
23343 struct dwo_sections *sections = &cu->dwo_unit->dwo_file->sections;
5f48f8f3 23344
43988095
JK
23345 return cu->header.version >= 5 ? &sections->loclists : &sections->loc;
23346 }
976ca316
SM
23347 return (cu->header.version >= 5 ? &per_objfile->per_bfd->loclists
23348 : &per_objfile->per_bfd->loc);
3019eac3
DE
23349}
23350
8cf6f0b1
TT
23351/* A helper function that fills in a dwarf2_loclist_baton. */
23352
23353static void
23354fill_in_loclist_baton (struct dwarf2_cu *cu,
23355 struct dwarf2_loclist_baton *baton,
ff39bb5e 23356 const struct attribute *attr)
8cf6f0b1 23357{
976ca316 23358 dwarf2_per_objfile *per_objfile = cu->per_objfile;
3019eac3
DE
23359 struct dwarf2_section_info *section = cu_debug_loc_section (cu);
23360
976ca316 23361 section->read (per_objfile->objfile);
8cf6f0b1 23362
976ca316 23363 baton->per_objfile = per_objfile;
8cf6f0b1
TT
23364 baton->per_cu = cu->per_cu;
23365 gdb_assert (baton->per_cu);
23366 /* We don't know how long the location list is, but make sure we
23367 don't run off the edge of the section. */
3019eac3
DE
23368 baton->size = section->size - DW_UNSND (attr);
23369 baton->data = section->buffer + DW_UNSND (attr);
2b24b6e4
TT
23370 if (cu->base_address.has_value ())
23371 baton->base_address = *cu->base_address;
23372 else
23373 baton->base_address = 0;
f664829e 23374 baton->from_dwo = cu->dwo_unit != NULL;
8cf6f0b1
TT
23375}
23376
4c2df51b 23377static void
ff39bb5e 23378dwarf2_symbol_mark_computed (const struct attribute *attr, struct symbol *sym,
f1e6e072 23379 struct dwarf2_cu *cu, int is_block)
4c2df51b 23380{
976ca316
SM
23381 dwarf2_per_objfile *per_objfile = cu->per_objfile;
23382 struct objfile *objfile = per_objfile->objfile;
3019eac3 23383 struct dwarf2_section_info *section = cu_debug_loc_section (cu);
bb5ed363 23384
cd6c91b4 23385 if (attr->form_is_section_offset ()
3019eac3 23386 /* .debug_loc{,.dwo} may not exist at all, or the offset may be outside
99bcc461
DJ
23387 the section. If so, fall through to the complaint in the
23388 other branch. */
2c7d5afc 23389 && DW_UNSND (attr) < section->get_size (objfile))
4c2df51b 23390 {
0d53c4c4 23391 struct dwarf2_loclist_baton *baton;
4c2df51b 23392
8d749320 23393 baton = XOBNEW (&objfile->objfile_obstack, struct dwarf2_loclist_baton);
4c2df51b 23394
8cf6f0b1 23395 fill_in_loclist_baton (cu, baton, attr);
be391dca 23396
2b24b6e4 23397 if (!cu->base_address.has_value ())
b98664d3 23398 complaint (_("Location list used without "
3e43a32a 23399 "specifying the CU base address."));
4c2df51b 23400
f1e6e072
TT
23401 SYMBOL_ACLASS_INDEX (sym) = (is_block
23402 ? dwarf2_loclist_block_index
23403 : dwarf2_loclist_index);
0d53c4c4
DJ
23404 SYMBOL_LOCATION_BATON (sym) = baton;
23405 }
23406 else
23407 {
23408 struct dwarf2_locexpr_baton *baton;
23409
8d749320 23410 baton = XOBNEW (&objfile->objfile_obstack, struct dwarf2_locexpr_baton);
976ca316 23411 baton->per_objfile = per_objfile;
ae0d2f24
UW
23412 baton->per_cu = cu->per_cu;
23413 gdb_assert (baton->per_cu);
0d53c4c4 23414
4fc6c0d5 23415 if (attr->form_is_block ())
0d53c4c4
DJ
23416 {
23417 /* Note that we're just copying the block's data pointer
23418 here, not the actual data. We're still pointing into the
6502dd73
DJ
23419 info_buffer for SYM's objfile; right now we never release
23420 that buffer, but when we do clean up properly this may
23421 need to change. */
0d53c4c4
DJ
23422 baton->size = DW_BLOCK (attr)->size;
23423 baton->data = DW_BLOCK (attr)->data;
23424 }
23425 else
23426 {
23427 dwarf2_invalid_attrib_class_complaint ("location description",
987012b8 23428 sym->natural_name ());
0d53c4c4 23429 baton->size = 0;
0d53c4c4 23430 }
6e70227d 23431
f1e6e072
TT
23432 SYMBOL_ACLASS_INDEX (sym) = (is_block
23433 ? dwarf2_locexpr_block_index
23434 : dwarf2_locexpr_index);
0d53c4c4
DJ
23435 SYMBOL_LOCATION_BATON (sym) = baton;
23436 }
4c2df51b 23437}
6502dd73 23438
2e6a9f79 23439/* See read.h. */
96408a79 23440
2e6a9f79
SM
23441const comp_unit_head *
23442dwarf2_per_cu_data::get_header () const
96408a79 23443{
2e6a9f79
SM
23444 if (!m_header_read_in)
23445 {
23446 const gdb_byte *info_ptr
23447 = this->section->buffer + to_underlying (this->sect_off);
96408a79 23448
2e6a9f79 23449 memset (&m_header, 0, sizeof (m_header));
96408a79 23450
2e6a9f79
SM
23451 read_comp_unit_head (&m_header, info_ptr, this->section,
23452 rcuh_kind::COMPILE);
23453 }
96408a79 23454
2e6a9f79 23455 return &m_header;
96408a79
SA
23456}
23457
09ba997f 23458/* See read.h. */
ae0d2f24 23459
98714339 23460int
09ba997f 23461dwarf2_per_cu_data::addr_size () const
ae0d2f24 23462{
2e6a9f79 23463 return this->get_header ()->addr_size;
ae0d2f24
UW
23464}
23465
09ba997f 23466/* See read.h. */
9eae7c52
TT
23467
23468int
09ba997f 23469dwarf2_per_cu_data::offset_size () const
9eae7c52 23470{
2e6a9f79 23471 return this->get_header ()->offset_size;
96408a79
SA
23472}
23473
09ba997f 23474/* See read.h. */
96408a79
SA
23475
23476int
09ba997f 23477dwarf2_per_cu_data::ref_addr_size () const
96408a79 23478{
2e6a9f79 23479 const comp_unit_head *header = this->get_header ();
96408a79 23480
2e6a9f79
SM
23481 if (header->version == 2)
23482 return header->addr_size;
96408a79 23483 else
2e6a9f79 23484 return header->offset_size;
181cebd4
JK
23485}
23486
09ba997f 23487/* See read.h. */
9aa1f1e3 23488
09ba997f 23489struct type *
293e7e51 23490dwarf2_cu::addr_type () const
9a49df9d 23491{
293e7e51 23492 struct objfile *objfile = this->per_objfile->objfile;
9a49df9d
AB
23493 struct type *void_type = objfile_type (objfile)->builtin_void;
23494 struct type *addr_type = lookup_pointer_type (void_type);
293e7e51 23495 int addr_size = this->per_cu->addr_size ();
9a49df9d
AB
23496
23497 if (TYPE_LENGTH (addr_type) == addr_size)
23498 return addr_type;
23499
09ba997f 23500 addr_type = addr_sized_int_type (TYPE_UNSIGNED (addr_type));
9a49df9d
AB
23501 return addr_type;
23502}
23503
22b6cd70
TT
23504/* A helper function for dwarf2_find_containing_comp_unit that returns
23505 the index of the result, and that searches a vector. It will
23506 return a result even if the offset in question does not actually
23507 occur in any CU. This is separate so that it can be unit
23508 tested. */
ae038cb0 23509
22b6cd70
TT
23510static int
23511dwarf2_find_containing_comp_unit
23512 (sect_offset sect_off,
23513 unsigned int offset_in_dwz,
23514 const std::vector<dwarf2_per_cu_data *> &all_comp_units)
ae038cb0 23515{
ae038cb0
DJ
23516 int low, high;
23517
ae038cb0 23518 low = 0;
22b6cd70 23519 high = all_comp_units.size () - 1;
ae038cb0
DJ
23520 while (high > low)
23521 {
36586728 23522 struct dwarf2_per_cu_data *mid_cu;
ae038cb0 23523 int mid = low + (high - low) / 2;
9a619af0 23524
22b6cd70 23525 mid_cu = all_comp_units[mid];
36586728 23526 if (mid_cu->is_dwz > offset_in_dwz
81fbbaf9 23527 || (mid_cu->is_dwz == offset_in_dwz
22b6cd70 23528 && mid_cu->sect_off + mid_cu->length > sect_off))
ae038cb0
DJ
23529 high = mid;
23530 else
23531 low = mid + 1;
23532 }
23533 gdb_assert (low == high);
22b6cd70
TT
23534 return low;
23535}
23536
23537/* Locate the .debug_info compilation unit from CU's objfile which contains
23538 the DIE at OFFSET. Raises an error on failure. */
23539
23540static struct dwarf2_per_cu_data *
23541dwarf2_find_containing_comp_unit (sect_offset sect_off,
23542 unsigned int offset_in_dwz,
976ca316 23543 dwarf2_per_objfile *per_objfile)
22b6cd70 23544{
976ca316
SM
23545 int low = dwarf2_find_containing_comp_unit
23546 (sect_off, offset_in_dwz, per_objfile->per_bfd->all_comp_units);
23547 dwarf2_per_cu_data *this_cu = per_objfile->per_bfd->all_comp_units[low];
22b6cd70 23548
45b8ae0c 23549 if (this_cu->is_dwz != offset_in_dwz || this_cu->sect_off > sect_off)
ae038cb0 23550 {
36586728 23551 if (low == 0 || this_cu->is_dwz != offset_in_dwz)
8a3fe4f8 23552 error (_("Dwarf Error: could not find partial DIE containing "
9d8780f0
SM
23553 "offset %s [in module %s]"),
23554 sect_offset_str (sect_off),
976ca316 23555 bfd_get_filename (per_objfile->objfile->obfd));
10b3939b 23556
976ca316 23557 gdb_assert (per_objfile->per_bfd->all_comp_units[low-1]->sect_off
9c541725 23558 <= sect_off);
976ca316 23559 return per_objfile->per_bfd->all_comp_units[low-1];
ae038cb0
DJ
23560 }
23561 else
23562 {
976ca316 23563 if (low == per_objfile->per_bfd->all_comp_units.size () - 1
9c541725 23564 && sect_off >= this_cu->sect_off + this_cu->length)
9d8780f0 23565 error (_("invalid dwarf2 offset %s"), sect_offset_str (sect_off));
9c541725 23566 gdb_assert (sect_off < this_cu->sect_off + this_cu->length);
ae038cb0
DJ
23567 return this_cu;
23568 }
23569}
23570
22b6cd70
TT
23571#if GDB_SELF_TEST
23572
23573namespace selftests {
23574namespace find_containing_comp_unit {
23575
23576static void
23577run_test ()
23578{
23579 struct dwarf2_per_cu_data one {};
23580 struct dwarf2_per_cu_data two {};
23581 struct dwarf2_per_cu_data three {};
23582 struct dwarf2_per_cu_data four {};
23583
23584 one.length = 5;
23585 two.sect_off = sect_offset (one.length);
23586 two.length = 7;
23587
23588 three.length = 5;
23589 three.is_dwz = 1;
23590 four.sect_off = sect_offset (three.length);
23591 four.length = 7;
23592 four.is_dwz = 1;
23593
23594 std::vector<dwarf2_per_cu_data *> units;
23595 units.push_back (&one);
23596 units.push_back (&two);
23597 units.push_back (&three);
23598 units.push_back (&four);
23599
23600 int result;
23601
23602 result = dwarf2_find_containing_comp_unit (sect_offset (0), 0, units);
23603 SELF_CHECK (units[result] == &one);
23604 result = dwarf2_find_containing_comp_unit (sect_offset (3), 0, units);
23605 SELF_CHECK (units[result] == &one);
23606 result = dwarf2_find_containing_comp_unit (sect_offset (5), 0, units);
23607 SELF_CHECK (units[result] == &two);
23608
23609 result = dwarf2_find_containing_comp_unit (sect_offset (0), 1, units);
23610 SELF_CHECK (units[result] == &three);
23611 result = dwarf2_find_containing_comp_unit (sect_offset (3), 1, units);
23612 SELF_CHECK (units[result] == &three);
23613 result = dwarf2_find_containing_comp_unit (sect_offset (5), 1, units);
23614 SELF_CHECK (units[result] == &four);
23615}
23616
23617}
23618}
23619
23620#endif /* GDB_SELF_TEST */
23621
9e021579 23622/* Initialize dwarf2_cu to read PER_CU, in the context of PER_OBJFILE. */
93311388 23623
9e021579
SM
23624dwarf2_cu::dwarf2_cu (dwarf2_per_cu_data *per_cu,
23625 dwarf2_per_objfile *per_objfile)
23626 : per_cu (per_cu),
23627 per_objfile (per_objfile),
9068261f
AB
23628 mark (false),
23629 has_loclist (false),
23630 checked_producer (false),
23631 producer_is_gxx_lt_4_6 (false),
23632 producer_is_gcc_lt_4_3 (false),
eb77c9df 23633 producer_is_icc (false),
9068261f 23634 producer_is_icc_lt_14 (false),
c258c396 23635 producer_is_codewarrior (false),
9068261f 23636 processing_has_namespace_info (false)
93311388 23637{
9816fde3
JK
23638}
23639
23640/* Initialize basic fields of dwarf_cu CU according to DIE COMP_UNIT_DIE. */
23641
23642static void
95554aad
TT
23643prepare_one_comp_unit (struct dwarf2_cu *cu, struct die_info *comp_unit_die,
23644 enum language pretend_language)
9816fde3
JK
23645{
23646 struct attribute *attr;
23647
23648 /* Set the language we're debugging. */
23649 attr = dwarf2_attr (comp_unit_die, DW_AT_language, cu);
435d3d88 23650 if (attr != nullptr)
9816fde3
JK
23651 set_cu_language (DW_UNSND (attr), cu);
23652 else
9cded63f 23653 {
95554aad 23654 cu->language = pretend_language;
9cded63f
TT
23655 cu->language_defn = language_def (cu->language);
23656 }
dee91e82 23657
7d45c7c3 23658 cu->producer = dwarf2_string_attr (comp_unit_die, DW_AT_producer, cu);
93311388
DE
23659}
23660
7188ed02 23661/* See read.h. */
ae038cb0 23662
7188ed02
SM
23663dwarf2_cu *
23664dwarf2_per_objfile::get_cu (dwarf2_per_cu_data *per_cu)
ae038cb0 23665{
7188ed02
SM
23666 auto it = m_dwarf2_cus.find (per_cu);
23667 if (it == m_dwarf2_cus.end ())
23668 return nullptr;
ae038cb0 23669
7188ed02
SM
23670 return it->second;
23671}
23672
23673/* See read.h. */
23674
23675void
23676dwarf2_per_objfile::set_cu (dwarf2_per_cu_data *per_cu, dwarf2_cu *cu)
23677{
23678 gdb_assert (this->get_cu (per_cu) == nullptr);
23679
23680 m_dwarf2_cus[per_cu] = cu;
23681}
23682
23683/* See read.h. */
23684
23685void
23686dwarf2_per_objfile::age_comp_units ()
23687{
23688 /* Start by clearing all marks. */
23689 for (auto pair : m_dwarf2_cus)
23690 pair.second->mark = false;
23691
23692 /* Traverse all CUs, mark them and their dependencies if used recently
23693 enough. */
23694 for (auto pair : m_dwarf2_cus)
ae038cb0 23695 {
7188ed02
SM
23696 dwarf2_cu *cu = pair.second;
23697
23698 cu->last_used++;
23699 if (cu->last_used <= dwarf_max_cache_age)
23700 dwarf2_mark (cu);
ae038cb0
DJ
23701 }
23702
7188ed02
SM
23703 /* Delete all CUs still not marked. */
23704 for (auto it = m_dwarf2_cus.begin (); it != m_dwarf2_cus.end ();)
ae038cb0 23705 {
7188ed02 23706 dwarf2_cu *cu = it->second;
ae038cb0 23707
7188ed02 23708 if (!cu->mark)
ae038cb0 23709 {
7188ed02
SM
23710 delete cu;
23711 it = m_dwarf2_cus.erase (it);
ae038cb0
DJ
23712 }
23713 else
7188ed02 23714 it++;
ae038cb0
DJ
23715 }
23716}
23717
7188ed02 23718/* See read.h. */
ae038cb0 23719
7188ed02
SM
23720void
23721dwarf2_per_objfile::remove_cu (dwarf2_per_cu_data *per_cu)
ae038cb0 23722{
7188ed02
SM
23723 auto it = m_dwarf2_cus.find (per_cu);
23724 if (it == m_dwarf2_cus.end ())
23725 return;
ae038cb0 23726
7188ed02 23727 delete it->second;
ae038cb0 23728
7188ed02
SM
23729 m_dwarf2_cus.erase (it);
23730}
ae038cb0 23731
7188ed02
SM
23732dwarf2_per_objfile::~dwarf2_per_objfile ()
23733{
23734 remove_all_cus ();
ae038cb0
DJ
23735}
23736
dee91e82
DE
23737/* A set of CU "per_cu" pointer, DIE offset, and GDB type pointer.
23738 We store these in a hash table separate from the DIEs, and preserve them
23739 when the DIEs are flushed out of cache.
23740
23741 The CU "per_cu" pointer is needed because offset alone is not enough to
3019eac3 23742 uniquely identify the type. A file may have multiple .debug_types sections,
c88ee1f0
DE
23743 or the type may come from a DWO file. Furthermore, while it's more logical
23744 to use per_cu->section+offset, with Fission the section with the data is in
23745 the DWO file but we don't know that section at the point we need it.
23746 We have to use something in dwarf2_per_cu_data (or the pointer to it)
23747 because we can enter the lookup routine, get_die_type_at_offset, from
23748 outside this file, and thus won't necessarily have PER_CU->cu.
23749 Fortunately, PER_CU is stable for the life of the objfile. */
1c379e20 23750
dee91e82 23751struct dwarf2_per_cu_offset_and_type
1c379e20 23752{
dee91e82 23753 const struct dwarf2_per_cu_data *per_cu;
9c541725 23754 sect_offset sect_off;
1c379e20
DJ
23755 struct type *type;
23756};
23757
dee91e82 23758/* Hash function for a dwarf2_per_cu_offset_and_type. */
1c379e20
DJ
23759
23760static hashval_t
dee91e82 23761per_cu_offset_and_type_hash (const void *item)
1c379e20 23762{
9a3c8263
SM
23763 const struct dwarf2_per_cu_offset_and_type *ofs
23764 = (const struct dwarf2_per_cu_offset_and_type *) item;
9a619af0 23765
9c541725 23766 return (uintptr_t) ofs->per_cu + to_underlying (ofs->sect_off);
1c379e20
DJ
23767}
23768
dee91e82 23769/* Equality function for a dwarf2_per_cu_offset_and_type. */
1c379e20
DJ
23770
23771static int
dee91e82 23772per_cu_offset_and_type_eq (const void *item_lhs, const void *item_rhs)
1c379e20 23773{
9a3c8263
SM
23774 const struct dwarf2_per_cu_offset_and_type *ofs_lhs
23775 = (const struct dwarf2_per_cu_offset_and_type *) item_lhs;
23776 const struct dwarf2_per_cu_offset_and_type *ofs_rhs
23777 = (const struct dwarf2_per_cu_offset_and_type *) item_rhs;
9a619af0 23778
dee91e82 23779 return (ofs_lhs->per_cu == ofs_rhs->per_cu
9c541725 23780 && ofs_lhs->sect_off == ofs_rhs->sect_off);
1c379e20
DJ
23781}
23782
23783/* Set the type associated with DIE to TYPE. Save it in CU's hash
7e314c57
JK
23784 table if necessary. For convenience, return TYPE.
23785
23786 The DIEs reading must have careful ordering to:
85102364 23787 * Not cause infinite loops trying to read in DIEs as a prerequisite for
7e314c57
JK
23788 reading current DIE.
23789 * Not trying to dereference contents of still incompletely read in types
23790 while reading in other DIEs.
23791 * Enable referencing still incompletely read in types just by a pointer to
23792 the type without accessing its fields.
23793
23794 Therefore caller should follow these rules:
23795 * Try to fetch any prerequisite types we may need to build this DIE type
23796 before building the type and calling set_die_type.
e71ec853 23797 * After building type call set_die_type for current DIE as soon as
7e314c57
JK
23798 possible before fetching more types to complete the current type.
23799 * Make the type as complete as possible before fetching more types. */
1c379e20 23800
f792889a 23801static struct type *
1c379e20
DJ
23802set_die_type (struct die_info *die, struct type *type, struct dwarf2_cu *cu)
23803{
976ca316 23804 dwarf2_per_objfile *per_objfile = cu->per_objfile;
dee91e82 23805 struct dwarf2_per_cu_offset_and_type **slot, ofs;
976ca316 23806 struct objfile *objfile = per_objfile->objfile;
3cdcd0ce
JB
23807 struct attribute *attr;
23808 struct dynamic_prop prop;
1c379e20 23809
b4ba55a1
JB
23810 /* For Ada types, make sure that the gnat-specific data is always
23811 initialized (if not already set). There are a few types where
23812 we should not be doing so, because the type-specific area is
23813 already used to hold some other piece of info (eg: TYPE_CODE_FLT
23814 where the type-specific area is used to store the floatformat).
23815 But this is not a problem, because the gnat-specific information
23816 is actually not needed for these types. */
23817 if (need_gnat_info (cu)
78134374
SM
23818 && type->code () != TYPE_CODE_FUNC
23819 && type->code () != TYPE_CODE_FLT
23820 && type->code () != TYPE_CODE_METHODPTR
23821 && type->code () != TYPE_CODE_MEMBERPTR
23822 && type->code () != TYPE_CODE_METHOD
b4ba55a1
JB
23823 && !HAVE_GNAT_AUX_INFO (type))
23824 INIT_GNAT_SPECIFIC (type);
23825
3f2f83dd
KB
23826 /* Read DW_AT_allocated and set in type. */
23827 attr = dwarf2_attr (die, DW_AT_allocated, cu);
4fc6c0d5 23828 if (attr != NULL && attr->form_is_block ())
3f2f83dd 23829 {
293e7e51 23830 struct type *prop_type = cu->addr_sized_int_type (false);
9a49df9d 23831 if (attr_to_dynamic_prop (attr, die, cu, &prop, prop_type))
5c54719c 23832 type->add_dyn_prop (DYN_PROP_ALLOCATED, prop);
3f2f83dd
KB
23833 }
23834 else if (attr != NULL)
23835 {
b98664d3 23836 complaint (_("DW_AT_allocated has the wrong form (%s) at DIE %s"),
9c541725 23837 (attr != NULL ? dwarf_form_name (attr->form) : "n/a"),
9d8780f0 23838 sect_offset_str (die->sect_off));
3f2f83dd
KB
23839 }
23840
23841 /* Read DW_AT_associated and set in type. */
23842 attr = dwarf2_attr (die, DW_AT_associated, cu);
4fc6c0d5 23843 if (attr != NULL && attr->form_is_block ())
3f2f83dd 23844 {
293e7e51 23845 struct type *prop_type = cu->addr_sized_int_type (false);
9a49df9d 23846 if (attr_to_dynamic_prop (attr, die, cu, &prop, prop_type))
5c54719c 23847 type->add_dyn_prop (DYN_PROP_ASSOCIATED, prop);
3f2f83dd
KB
23848 }
23849 else if (attr != NULL)
23850 {
b98664d3 23851 complaint (_("DW_AT_associated has the wrong form (%s) at DIE %s"),
9c541725 23852 (attr != NULL ? dwarf_form_name (attr->form) : "n/a"),
9d8780f0 23853 sect_offset_str (die->sect_off));
3f2f83dd
KB
23854 }
23855
3cdcd0ce
JB
23856 /* Read DW_AT_data_location and set in type. */
23857 attr = dwarf2_attr (die, DW_AT_data_location, cu);
293e7e51 23858 if (attr_to_dynamic_prop (attr, die, cu, &prop, cu->addr_type ()))
5c54719c 23859 type->add_dyn_prop (DYN_PROP_DATA_LOCATION, prop);
3cdcd0ce 23860
976ca316
SM
23861 if (per_objfile->die_type_hash == NULL)
23862 per_objfile->die_type_hash
0335378b
TT
23863 = htab_up (htab_create_alloc (127,
23864 per_cu_offset_and_type_hash,
23865 per_cu_offset_and_type_eq,
23866 NULL, xcalloc, xfree));
1c379e20 23867
dee91e82 23868 ofs.per_cu = cu->per_cu;
9c541725 23869 ofs.sect_off = die->sect_off;
1c379e20 23870 ofs.type = type;
dee91e82 23871 slot = (struct dwarf2_per_cu_offset_and_type **)
976ca316 23872 htab_find_slot (per_objfile->die_type_hash.get (), &ofs, INSERT);
7e314c57 23873 if (*slot)
b98664d3 23874 complaint (_("A problem internal to GDB: DIE %s has type already set"),
9d8780f0 23875 sect_offset_str (die->sect_off));
8d749320
SM
23876 *slot = XOBNEW (&objfile->objfile_obstack,
23877 struct dwarf2_per_cu_offset_and_type);
1c379e20 23878 **slot = ofs;
f792889a 23879 return type;
1c379e20
DJ
23880}
23881
9c541725 23882/* Look up the type for the die at SECT_OFF in PER_CU in die_type_hash,
02142a6c 23883 or return NULL if the die does not have a saved type. */
1c379e20
DJ
23884
23885static struct type *
9c541725 23886get_die_type_at_offset (sect_offset sect_off,
aa66c379 23887 dwarf2_per_cu_data *per_cu,
976ca316 23888 dwarf2_per_objfile *per_objfile)
1c379e20 23889{
dee91e82 23890 struct dwarf2_per_cu_offset_and_type *slot, ofs;
f792889a 23891
976ca316 23892 if (per_objfile->die_type_hash == NULL)
f792889a 23893 return NULL;
1c379e20 23894
dee91e82 23895 ofs.per_cu = per_cu;
9c541725 23896 ofs.sect_off = sect_off;
9a3c8263 23897 slot = ((struct dwarf2_per_cu_offset_and_type *)
976ca316 23898 htab_find (per_objfile->die_type_hash.get (), &ofs));
1c379e20
DJ
23899 if (slot)
23900 return slot->type;
23901 else
23902 return NULL;
23903}
23904
02142a6c 23905/* Look up the type for DIE in CU in die_type_hash,
673bfd45
DE
23906 or return NULL if DIE does not have a saved type. */
23907
23908static struct type *
23909get_die_type (struct die_info *die, struct dwarf2_cu *cu)
23910{
aa66c379 23911 return get_die_type_at_offset (die->sect_off, cu->per_cu, cu->per_objfile);
673bfd45
DE
23912}
23913
10b3939b
DJ
23914/* Add a dependence relationship from CU to REF_PER_CU. */
23915
23916static void
23917dwarf2_add_dependence (struct dwarf2_cu *cu,
23918 struct dwarf2_per_cu_data *ref_per_cu)
23919{
23920 void **slot;
23921
23922 if (cu->dependencies == NULL)
23923 cu->dependencies
23924 = htab_create_alloc_ex (5, htab_hash_pointer, htab_eq_pointer,
23925 NULL, &cu->comp_unit_obstack,
23926 hashtab_obstack_allocate,
23927 dummy_obstack_deallocate);
23928
23929 slot = htab_find_slot (cu->dependencies, ref_per_cu, INSERT);
23930 if (*slot == NULL)
23931 *slot = ref_per_cu;
23932}
1c379e20 23933
f504f079
DE
23934/* Subroutine of dwarf2_mark to pass to htab_traverse.
23935 Set the mark field in every compilation unit in the
7188ed02
SM
23936 cache that we must keep because we are keeping CU.
23937
23938 DATA is the dwarf2_per_objfile object in which to look up CUs. */
ae038cb0 23939
10b3939b
DJ
23940static int
23941dwarf2_mark_helper (void **slot, void *data)
23942{
7188ed02
SM
23943 dwarf2_per_cu_data *per_cu = (dwarf2_per_cu_data *) *slot;
23944 dwarf2_per_objfile *per_objfile = (dwarf2_per_objfile *) data;
23945 dwarf2_cu *cu = per_objfile->get_cu (per_cu);
d07ed419
JK
23946
23947 /* cu->dependencies references may not yet have been ever read if QUIT aborts
23948 reading of the chain. As such dependencies remain valid it is not much
23949 useful to track and undo them during QUIT cleanups. */
7188ed02 23950 if (cu == nullptr)
d07ed419
JK
23951 return 1;
23952
7188ed02 23953 if (cu->mark)
10b3939b 23954 return 1;
10b3939b 23955
7188ed02
SM
23956 cu->mark = true;
23957
23958 if (cu->dependencies != nullptr)
23959 htab_traverse (cu->dependencies, dwarf2_mark_helper, per_objfile);
10b3939b
DJ
23960
23961 return 1;
23962}
23963
f504f079
DE
23964/* Set the mark field in CU and in every other compilation unit in the
23965 cache that we must keep because we are keeping CU. */
23966
ae038cb0
DJ
23967static void
23968dwarf2_mark (struct dwarf2_cu *cu)
23969{
23970 if (cu->mark)
23971 return;
7188ed02 23972
9068261f 23973 cu->mark = true;
ae038cb0 23974
7188ed02
SM
23975 if (cu->dependencies != nullptr)
23976 htab_traverse (cu->dependencies, dwarf2_mark_helper, cu->per_objfile);
72bf9492
DJ
23977}
23978
72bf9492
DJ
23979/* Trivial hash function for partial_die_info: the hash value of a DIE
23980 is its offset in .debug_info for this objfile. */
23981
23982static hashval_t
23983partial_die_hash (const void *item)
23984{
9a3c8263
SM
23985 const struct partial_die_info *part_die
23986 = (const struct partial_die_info *) item;
9a619af0 23987
9c541725 23988 return to_underlying (part_die->sect_off);
72bf9492
DJ
23989}
23990
23991/* Trivial comparison function for partial_die_info structures: two DIEs
23992 are equal if they have the same offset. */
23993
23994static int
23995partial_die_eq (const void *item_lhs, const void *item_rhs)
23996{
9a3c8263
SM
23997 const struct partial_die_info *part_die_lhs
23998 = (const struct partial_die_info *) item_lhs;
23999 const struct partial_die_info *part_die_rhs
24000 = (const struct partial_die_info *) item_rhs;
9a619af0 24001
9c541725 24002 return part_die_lhs->sect_off == part_die_rhs->sect_off;
72bf9492
DJ
24003}
24004
3c3bb058
AB
24005struct cmd_list_element *set_dwarf_cmdlist;
24006struct cmd_list_element *show_dwarf_cmdlist;
ae038cb0 24007
9291a0cd 24008static void
cd4fb1b2
SM
24009show_check_physname (struct ui_file *file, int from_tty,
24010 struct cmd_list_element *c, const char *value)
9291a0cd 24011{
cd4fb1b2
SM
24012 fprintf_filtered (file,
24013 _("Whether to check \"physname\" is %s.\n"),
24014 value);
9291a0cd
TT
24015}
24016
6c265988 24017void _initialize_dwarf2_read ();
cd4fb1b2 24018void
6c265988 24019_initialize_dwarf2_read ()
9291a0cd 24020{
0743fc83 24021 add_basic_prefix_cmd ("dwarf", class_maintenance, _("\
cd4fb1b2 24022Set DWARF specific variables.\n\
590042fc 24023Configure DWARF variables such as the cache size."),
0743fc83
TT
24024 &set_dwarf_cmdlist, "maintenance set dwarf ",
24025 0/*allow-unknown*/, &maintenance_set_cmdlist);
156942c7 24026
0743fc83 24027 add_show_prefix_cmd ("dwarf", class_maintenance, _("\
590042fc
PW
24028Show DWARF specific variables.\n\
24029Show DWARF variables such as the cache size."),
0743fc83
TT
24030 &show_dwarf_cmdlist, "maintenance show dwarf ",
24031 0/*allow-unknown*/, &maintenance_show_cmdlist);
156942c7 24032
cd4fb1b2
SM
24033 add_setshow_zinteger_cmd ("max-cache-age", class_obscure,
24034 &dwarf_max_cache_age, _("\
24035Set the upper bound on the age of cached DWARF compilation units."), _("\
24036Show the upper bound on the age of cached DWARF compilation units."), _("\
24037A higher limit means that cached compilation units will be stored\n\
24038in memory longer, and more total memory will be used. Zero disables\n\
24039caching, which can slow down startup."),
24040 NULL,
24041 show_dwarf_max_cache_age,
24042 &set_dwarf_cmdlist,
24043 &show_dwarf_cmdlist);
156942c7 24044
cd4fb1b2
SM
24045 add_setshow_zuinteger_cmd ("dwarf-read", no_class, &dwarf_read_debug, _("\
24046Set debugging of the DWARF reader."), _("\
24047Show debugging of the DWARF reader."), _("\
24048When enabled (non-zero), debugging messages are printed during DWARF\n\
24049reading and symtab expansion. A value of 1 (one) provides basic\n\
24050information. A value greater than 1 provides more verbose information."),
24051 NULL,
24052 NULL,
24053 &setdebuglist, &showdebuglist);
9291a0cd 24054
cd4fb1b2
SM
24055 add_setshow_zuinteger_cmd ("dwarf-die", no_class, &dwarf_die_debug, _("\
24056Set debugging of the DWARF DIE reader."), _("\
24057Show debugging of the DWARF DIE reader."), _("\
24058When enabled (non-zero), DIEs are dumped after they are read in.\n\
24059The value is the maximum depth to print."),
24060 NULL,
24061 NULL,
24062 &setdebuglist, &showdebuglist);
9291a0cd 24063
cd4fb1b2
SM
24064 add_setshow_zuinteger_cmd ("dwarf-line", no_class, &dwarf_line_debug, _("\
24065Set debugging of the dwarf line reader."), _("\
24066Show debugging of the dwarf line reader."), _("\
24067When enabled (non-zero), line number entries are dumped as they are read in.\n\
24068A value of 1 (one) provides basic information.\n\
24069A value greater than 1 provides more verbose information."),
24070 NULL,
24071 NULL,
24072 &setdebuglist, &showdebuglist);
437afbb8 24073
cd4fb1b2
SM
24074 add_setshow_boolean_cmd ("check-physname", no_class, &check_physname, _("\
24075Set cross-checking of \"physname\" code against demangler."), _("\
24076Show cross-checking of \"physname\" code against demangler."), _("\
24077When enabled, GDB's internal \"physname\" code is checked against\n\
24078the demangler."),
24079 NULL, show_check_physname,
24080 &setdebuglist, &showdebuglist);
900e11f9 24081
e615022a
DE
24082 add_setshow_boolean_cmd ("use-deprecated-index-sections",
24083 no_class, &use_deprecated_index_sections, _("\
24084Set whether to use deprecated gdb_index sections."), _("\
24085Show whether to use deprecated gdb_index sections."), _("\
24086When enabled, deprecated .gdb_index sections are used anyway.\n\
24087Normally they are ignored either because of a missing feature or\n\
24088performance issue.\n\
24089Warning: This option must be enabled before gdb reads the file."),
24090 NULL,
24091 NULL,
24092 &setlist, &showlist);
24093
f1e6e072
TT
24094 dwarf2_locexpr_index = register_symbol_computed_impl (LOC_COMPUTED,
24095 &dwarf2_locexpr_funcs);
24096 dwarf2_loclist_index = register_symbol_computed_impl (LOC_COMPUTED,
24097 &dwarf2_loclist_funcs);
24098
24099 dwarf2_locexpr_block_index = register_symbol_block_impl (LOC_BLOCK,
24100 &dwarf2_block_frame_base_locexpr_funcs);
24101 dwarf2_loclist_block_index = register_symbol_block_impl (LOC_BLOCK,
24102 &dwarf2_block_frame_base_loclist_funcs);
c62446b1
PA
24103
24104#if GDB_SELF_TEST
24105 selftests::register_test ("dw2_expand_symtabs_matching",
24106 selftests::dw2_expand_symtabs_matching::run_test);
22b6cd70
TT
24107 selftests::register_test ("dwarf2_find_containing_comp_unit",
24108 selftests::find_containing_comp_unit::run_test);
c62446b1 24109#endif
6502dd73 24110}
This page took 5.725763 seconds and 4 git commands to generate.